/* http://meyerweb.com/eric/tools/css/reset/
   v4.0 | 20180602
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=Oswald");
@import url("https://fonts.googleapis.com/css?family=Raleway");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.button {
  position: relative;
  color: #fff;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  font-family: 'BebasNeue Bold';
  font-size: 60px;
  position: relative;
  display: block;
  text-align: center;
  border-radius: 10px;
  box-shadow: 4px 4px 1px #0006;
}

@media (max-width: 568px) {
  .button {
    font-size: 30px;
    height: 50px;
  }
  .button.no-height {
    height: auto !important;
  }
}

.button span {
  position: relative;
}

.button span::after {
  content: url(../img/arrow-right.png);
  position: absolute;
  right: -49px;
  top: -17px;
  border-radius: 10px;
}

@media (max-width: 568px) {
  .button span::after {
    top: -4px;
  }
}

@media (max-width: 568px) {
  .button span.span-none::after {
    display: none;
  }
}

.button span.arrow-right-white::after {
  content: url(../img/arrow-right-2.png);
}

.button:hover {
  text-decoration: none;
}

.button-large {
  max-width: 665px;
  width: 100%;
}

.button-medium {
  max-width: 540px;
  width: 100%;
}

.button-sm {
  max-width: 360px;
  width: 100%;
}

.button-blue {
  background: #4f8ded;
  background: -moz-linear-gradient(180deg, #4f8ded 0%, #184ea2 100%);
  background: -webkit-linear-gradient(180deg, #4f8ded 0%, #184ea2 100%);
  background: linear-gradient(180deg, #4f8ded 0%, #184ea2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4f8ded",endColorstr="#184ea2",GradientType=1);
}

.button-yellow {
  background: #fee040;
  background: -moz-linear-gradient(180deg, #fee040 0%, #e3aa23 100%);
  background: -webkit-linear-gradient(180deg, #fee040 0%, #e3aa23 100%);
  background: linear-gradient(180deg, #fee040 0%, #e3aa23 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fee040",endColorstr="#e3aa23",GradientType=1);
}

.button-brown {
  background-image: linear-gradient(to bottom, #521d1d, #451819, #381315, #2b0e0f, #210606);
}

.button-maroon {
  background-image: linear-gradient(to bottom, #d92656, #d42148, #ce1d3a, #c81c2d, #c01c1e);
}

.button-size-sm {
  font-size: 40px;
}

.button-arrow-sm {
  padding-right: 60px;
}

.button-arrow-sm::after {
  content: url(../img/arrow-white-2.png) !important;
  position: absolute;
  right: 0px !important;
  top: -10px !important;
}

html {
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0 auto;
  padding: 0;
}

body {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.6em;
  margin: 0;
  padding: 0;
  position: relative;
  color: #000;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.62em;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

a {
  transition: all ease-in .1s;
  color: #000;
  text-decoration: none;
  position: relative;
}

a:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
  -moz-filter: brightness(110%);
  -o-filter: brightness(110%);
  -ms-filter: brightness(110%);
  text-decoration: none;
  color: #000;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a:hover {
    opacity: .8;
  }
}

figure {
  margin: 0;
}

h3 {
  font-weight: normal;
}

h4 {
  font-weight: normal !important;
}

header {
  position: fixed;
  width: 100%;
  z-index: 4;
}

header .header-nav-account {
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid #3C3C3C;
  box-sizing: border-box;
  line-height: 1;
}

header .header-nav-account.black-bg {
  background: #000;
}

header .header-nav-account ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header .header-nav-account ul li {
  padding: 10px 10px;
  display: flex;
  align-items: center;
}

header .header-nav-account ul li:first-of-type {
  border-left: 1px solid #3C3C3C;
}

header .header-nav-account ul li:not(:last-child) {
  border-right: 1px solid #3C3C3C;
}

header .header-nav-account ul li a {
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
}

header .fuild-bg {
  transition: all ease-in 300ms;
  margin-top: -15px;
}

@media (max-width: 768px) {
  header .fuild-bg {
    background: #000;
    padding: 5px 0;
    margin-top: 0;
  }
}

header .fuild-bg-item {
  background: #000;
  padding: 5px 0;
  margin-top: 0;
  height: auto;
}

header .item-contact {
  background: #000;
  padding: 5px 0;
  margin-top: 0;
  height: 128px;
}

@media (max-width: 768px) {
  header .item-contact {
    height: auto;
  }
}

header .container-flex {
  display: flex;
  align-items: center;
}

header .container-flex .main-head {
  flex: 1;
}

@media (max-width: 768px) {
  header .container-flex .main-head img {
    width: 80px;
    height: 100%;
  }
}

header .container-flex .main-menu ul {
  display: flex;
}

header .container-flex .main-menu ul li:not(:last-child) a {
  margin-right: 40px;
}

@media (max-width: 1000px) {
  header .container-flex .main-menu ul li:not(:last-child) a {
    margin-right: 19px;
  }
}

header .container-flex .main-menu ul li a {
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  text-decoration: none;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: normal;
  padding-left: 10px;
  border-left: 7px solid transparent;
  transition: all ease-in-out .5s;
}

header .container-flex .main-menu ul li a:hover {
  border-left: 7px solid #ED2328;
}

@media (max-width: 768px) {
  header .container-flex .main-menu {
    display: none;
  }
}

.const {
  background: #d1d9dd;
  height: 100%;
  padding-top: 100px;
}

.const h3 {
  margin-top: 30px;
  text-align: center;
  font-weight: 700;
}

.global-img-full {
  width: 100%;
}

.current_page_item a {
  padding-left: 10px;
  border-left: 7px solid #ED2328 !important;
}

@media (max-width: 768px) {
  .current_page_item a {
    padding-left: 0 !important;
    border: none !important;
    color: #ED2328;
  }
}

.hamburger {
  display: block;
}

@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

.main-menu-sp {
  position: fixed;
  top: 12%;
  background: #fff;
  width: 100%;
  padding: 24px 30px 30px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: rgba(195, 194, 194, 0.31) 3px 2px 1px 0px;
  display: none;
  border-bottom: 4px solid #ed2328;
  z-index: 2;
}

.main-menu-sp ul li a {
  padding: 0;
  border: 0;
}

.main-menu-sp ul li {
  margin-bottom: 30px;
  position: relative;
}


.banner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.global-img-full {
  width: 100%;
}

.global-flex-bottom {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /*min-height: 880px*/;
  height: 880px;
  padding-bottom: 15px;
}

@media all and (-ms-high-contrast:none) {
  #banner-misc.global-flex-bottom {
    min-height: 880px;
    height: 880px;
  }
}
@media (max-width: 768px) {
  .global-flex-bottom {
    height: 600px;
  }
}

.global-flex-bottom ul {
  display: flex;
}

@media (max-width: 768px) {
  .global-flex-bottom ul {
    flex-direction: column;
  }
  .global-flex-bottom ul li {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.global-flex-bottom ul li:not(:last-child) {
  margin-right: 10px;
}

.global-flex-bottom .snippet-panel {
  background: #ED2328;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all ease-in-out 300ms;
  border: 1px solid transparent;
}

.global-flex-bottom .snippet-panel:hover {
  background: #000;
  border: 1px solid #ED2328;
}

.global-flex-bottom .snippet-panel p {
  font-size: 18px;
  color: #fff;
  padding-left: 20px;
}

.global-flex-bottom .snippet-panel p a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .global-flex-bottom .snippet-panel p {
    font-size: 14px;
  }
}

.home-content {
  padding-top: 50px;
}

.home-content .content p {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 31px;
  text-align: center;
  color: #111111;
}

@media (max-width: 768px) {
  .home-content .content p {
    font-size: 15px;
  }
  #menu-header-menu-1 {
    padding-top: 58px;
  }
}

@media (max-width: 768px) and (max-height: 600px)  {
  #menu-header-menu-1 {
      padding-top: 48px;
  }
  .main-menu-sp ul li {
    margin-bottom: 12px;
  }

}
@media (max-height: 480px) {
  #menu-header-menu-1 {
      padding-top: 78px;
  }
  .main-menu-sp ul li {
    margin-bottom: 10px;
  }
}

@media (max-width: 420px) { 
  #menu-header-menu-1 {
    padding-top: 48px;
  }
}
@media (max-width: 320px) { 
  #menu-header-menu-1 {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .section-two-content {
    margin-bottom: 30px;
  }
}

.section-two-content h3 {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 25px;
}

.section-two-content h3::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: #ED2328;
  bottom: 0;
  left: 0;
}

.section-two-content h3 span {
  font-weight: bold;
  display: block;
}

.section-two-content a {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #ED2328;
}

.section-two-content p {
  margin-bottom: 20px;
}

.content-element p {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.block-element-list {
  text-align: center;
}

.block-element-list a {
  text-decoration: none;
}

.block-element-list a img {
  width: 100%;
  height: 100%;
}

.block-element-list h3 {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: rgba(17, 17, 17, 0.9);
  margin-top: 10px;
}

.block-element-list span {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #ED2328;
}

.fluid-gray {
  background: #E5E5E5;
}

.image-item {
  min-height: 180px;
  height: 100%;
  display: flex;
  align-items: center;
}

.image-item img {
  width: auto !important;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .image-item {
    min-height: 190px;
  }

}

@media (max-width: 567px) {
  .image-item {
    min-height: 130px;
    /*padding: 10px;*/
  }
}

.awards-content h3 {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.9);
}

.new-list h3 {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.9);
  margin-top: 10px;
}

.new-list h4 {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 21px;
  text-transform: capitalize;
  color: rgba(17, 17, 17, 0.9);
  font-style: italic;
}

.new-list a {
  font-family: Raleway;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #ED2328;
}

.lower-background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 500px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .lower-background {
    font-size: 37px;
    line-height: 54px;
    min-height: 300px;
  }
}

.lower-background::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.4);
}

.lower-background .container h1 {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 85px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .lower-background .container h1 {
    font-size: 37px;
    line-height: 54px;
  }
}

.image-list {
  min-height: 250px;
  height: 100%;
}

@media (max-width: 768px) {
  .image-list {
    min-height: 154px;
  }
}

.hover_menu {
  display: block !important;
  transition: all ease-in-out 300ms;
}

#carousel {
  position: relative;
  transition: all ease-in-out 1s;
}

#carousel .owl-nav {
  display: none;
  position: absolute;
  top: -54px;
  left: 0px;
  transform: translate(0%, 300%);
  transition: all ease-in-out 300ms;
  width: 100%;
}

#carousel .owl-nav .owl-prev {
  background: rgba(17, 17, 17, 0.4);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 56px;
  height: 51px;
  color: rgba(17, 17, 17, 0.4);
  outline: none;
}

#carousel .owl-nav .owl-prev span {
  position: relative;
}

#carousel .owl-nav .owl-prev span::before {
  content: url(../img/arrow.png);
  position: absolute;
  top: -11px;
  left: -10px;
  transform: rotate(180deg);
}

#carousel .owl-nav .owl-next {
  position: absolute;
  right: 0;
  background: rgba(17, 17, 17, 0.4);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 56px;
  height: 51px;
  color: rgba(17, 17, 17, 0.4);
  outline: none;
}

#carousel .owl-nav .owl-next span {
  position: relative;
}

#carousel .owl-nav .owl-next span::before {
  content: url(../img/arrow.png);
  position: absolute;
  top: -5px;
  left: -9px;
}

#carousel-news {
  position: relative;
}

#carousel-news .owl-nav {
  display: none;
  position: absolute;
  top: -5px;
  left: 0px;
  transform: translate(0%, 212%);
  width: 100%;
}

#carousel-news .owl-nav .owl-prev {
  background: rgba(17, 17, 17, 0.4);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 56px;
  height: 51px;
  color: rgba(17, 17, 17, 0.4);
  outline: none;
}

#carousel-news .owl-nav .owl-prev span {
  position: relative;
}

#carousel-news .owl-nav .owl-prev span::before {
  content: url(../img/arrow.png);
  position: absolute;
  top: -11px;
  left: -10px;
  transform: rotate(180deg);
}

#carousel-news .owl-nav .owl-next {
  position: absolute;
  right: 0px;
  background: rgba(17, 17, 17, 0.4);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 56px;
  height: 51px;
  color: rgba(17, 17, 17, 0.4);
  outline: none;
}

#carousel-news .owl-nav .owl-next span {
  position: relative;
}

#carousel-news .owl-nav .owl-next span::before {
  content: url(../img/arrow.png);
  position: absolute;
  top: -5px;
  left: -9px;
}
#carousel-news .owl-item #home-news-1 .new-list a, #carousel-news .owl-item #home-news-15 .new-list a {
  display: none;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /*min-height: 300px;*/
  height: 300px;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.5);
}

.contact-section h3 {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: normal;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  letter-spacing: 2px;
  padding-bottom: 15px;
}

.contact-section h3:before {
  content: '';
  position: absolute;
  width: 75px;
  height: 4px;
  bottom: 0;
  left: 0;
  background: #ED2328;
}

.container-xs {
  width: 100%;
}

@media (max-width: 768px) {
  .container-xs {
    margin-bottom: 30px;
  }
}

.container-xs dl {
  margin-bottom: 18px;
}

.container-xs dl dt {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #111111;
  padding-bottom: 5px;
}

.container-xs dl dt span:first-of-type {
  padding-right: 20px;
}

.container-xs dl dd input {
  display: block;
  background: #FBFBFB;
  border: 1px solid #3C3C3C;
  box-sizing: border-box;
  width: 100%;
  height: 37px;
  padding: 10px;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #000;
}

.container-xs dl dd input.size {
  max-width: 265px;
  width: 100%;
}

.container-xs dl dd textarea {
  padding: 5px;
  display: block;
  background: #FBFBFB;
  border: 1px solid #3C3C3C;
  box-sizing: border-box;
  height: 151px;
  width: 100%;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #000;
}

.pad-contact {
  padding-top: 139px !important;
}

@media (max-width: 768px) {
  .pad-contact {
    padding-top: 100px !important;
  }
}

@media (max-width: 567px) {
  .pad-contact {
    padding-top: 60px !important;
  }
}

.submit-btn {
  margin-top: 30px;
  background: #ED2328;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  border-style: none;
  width: 100%;
  display: block;
  padding: 10px 0;
  letter-spacing: 1px;
  max-width: 265px;
  width: 100%;
}

#video-item video {
  width: 100%;
  height: auto;
}

.contact-heading span {
  color: #ED2328;
}

.content-address ul {
  display: flex;
}

@media (max-width: 768px) {
  .content-address ul {
    flex-direction: column;
  }
}

.content-address ul li:first-of-type {
  padding-right: 60px;
}

@media (max-width: 768px) {
  .content-address ul li:first-of-type {
    padding-right: 0px;
    margin-bottom: 20px;
  }
}

.content-address ul li p {
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.content-panel-title {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 80px;
}

@media (max-width: 768px) {
  .content-panel-title {
    padding: 30px 2%;
    flex-direction: column;
  }
}

.content-panel-title h3 {
  display: flex;
  max-width: 600px;
  width: 100%;
  justify-content: space-around;
  align-items: center; 
}

.content-panel-title h3 span:first-of-type {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  color: #111111;
}

.content-panel-title h3 span:last-of-type {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: right;
  color: #3C3C3C;
}

.content-panel-title a {
  background: #ED2328;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.content-panel-title a img {
  padding-right: 10px;
}

.content-details-contact h3 {
  display: flex;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  color: #ED2328;
  margin-bottom: 20px;
}

.content-details-contact h3 img {
  padding-right: 14px;
}

.content-details-contact p {
  padding-left: 29px;
}

.content-details-contact.p-margin p {
  margin-bottom: 30px;
}

.content-padding-left {
  padding-left: 60px;
}

@media (max-width: 768px) {
  .content-padding-left {
    padding-left: 0;
  }
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#play-pause-button {
  position: relative;
}

.play-logo {
  transition: all ease-in-out .5s;
  position: absolute;
  width: 100%;
  height: 85%;
  top: 0;
  left: 0;
  display: flex;
  background: #000;
  z-index: 1;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 60px;
}

.play-logo img {
  width: 15vw;
}

@media (max-width: 1024px) {
  .play-logo {
    align-items: center;
    height: 100%;
  }
}

@media (max-width: 768px) {
  /*.play-logo {
    height: 66%;
    padding-bottom: 30px;
  }*/
}

@media (max-width: 567px) {
  /*.play-logo {
    height: 61%;
  }*/
}

.red-text {
  color: #ED2328;
}
.faded-out-text {
  display: none;
}
.section-content-leadership .content {
  padding: 60px 0 150px;
}

@media (max-width: 768px) {
  .section-content-leadership .content {
    padding: 60px 4% 60px;
  }
}

.section-content-leadership .second-content p {
  display: flex;
  margin-top: 37px;
}
.section-content-leadership .second-content p a {
  padding-right: 20px;
}
.section-content-leadership .second-content p span {
  padding-left: 20px;
}

.section-content-leadership .content-details p {
  margin-bottom: 30px;
}

.section-content-leadership .content-details ul {
  display: flex;
  flex-direction: column !important;
  cursor: auto !important;
}

.section-content-leadership .content-details ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.section-content-leadership .content-details ul li p {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #3C3C3C;
  margin-top: 20px;
}

.section-content-leadership .content-details ul li::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  background: #ED2328;
  border-radius: 20px;
  top: 7px;
  left: 0;
}

.section-content-leadership .tab-content {
  display: none;
}

.section-content-leadership .tab-content.current {
  display: inherit;
}

.section-content-leadership ul {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .section-content-leadership ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.section-content-leadership ul .tab-link {
  transition: all ease-in-out .5s;
  font-style: normal;
  font-size: 16px;
  cursor: pointer;
  line-height: 21px;
  color: #111111;
}

@media (max-width: 992px) {
  .section-content-leadership ul .tab-link {
    width: 50%;
    margin-bottom: 30px;
  }
}

.section-content-leadership ul .tab-link.current {
  color: #ED2328;
}

.section-content-leadership ul .tab-link span {
  display: block;
  text-transform: uppercase;
}

.section-content-leadership ul .tab-link span:first-of-type {
  font-weight: bold;
  margin-bottom: 5px;
  font-family: 'Oswald';
}

.section-content-leadership ul .tab-link span:last-of-type {
  font-family: 'Raleway';
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.section-content-leadership ul .tab-link:hover {
  color: #ED2328;
}

.banner-heading {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300 !important;
  font-size: 32px;
  line-height: normal;
  color: rgba(255, 255, 255, 0.9);
}

.banner-heading span {
  font-weight: bold !important;
  display: block;
  color: rgba(255, 255, 255, 0.9) !important;
}

.global-font-size p {
  font-size: 16px;
  font-weight: 300;
}

.global-tabs .tab-content {
  display: none;
}

.global-tabs .tab-content.current {
  display: inherit;
}

.global-tabs ul {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.global-tabs ul.tab-size {
  max-width: 300px;
  margin: 0 auto;
}

.global-tabs ul.tab-size li span {
  font-family: "Oswald" !important;
  font-style: normal;
  font-weight: bold !important;
  font-size: 16px !important;
  line-height: 21px;
  text-align: center;
}

.global-tabs ul .tab-link {
  transition: all ease-in-out .5s;
  font-style: normal;
  font-size: 16px;
  cursor: pointer;
  line-height: 21px;
  color: #111111;
}

.global-tabs ul .tab-link.current {
  color: #ED2328;
}

.global-tabs ul .tab-link span {
  display: block;
  text-transform: uppercase;
}

.global-tabs ul .tab-link span:first-of-type {
  font-weight: bold;
  margin-bottom: 5px;
  font-family: 'Oswald';
}

.global-tabs ul .tab-link span:last-of-type {
  font-family: 'Raleway';
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.global-tabs ul .tab-link:hover {
  color: #ED2328;
}

.tab-margin {
  margin-top: 100px;
  margin-bottom: 100px;
}

.awards-container {
  margin-top: 30px;
}

.awards-container .list-item .post-item-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.awards-container .list-item .post-item-details .award-image {
  min-height: 160px;
  height: 100%;
  display: flex;
  align-items: center;
}

.awards-container .list-item .post-item-details h3 {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #ED2328;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.awards-container .list-item .post-item-details h4 p {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #3C3C3C;
}

.awards-container .list-item .post-item-details h4 p span {
  font-weight: normal !important;
  display: block;
}

.list-of-services {
  display: flex;
  flex-direction: column;
  margin-top: 0 !important;
  max-width: 280px;
  transition: all ease-in-out 1s;
}

.list-of-services.list_fixed {
  position: fixed;
  top: 25%;
}

.list-of-services li {
  margin-bottom: 5px;
}

.list-of-services li a {
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .list-of-services {
    display: none !important;
  }
  .awards-container .list-item .post-item-details .award-image img {
    width: 100%;
    height: auto;
  }
}

.tab-title {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .tab-title {
    flex-direction: column;
  }
}

.tab-title li span {
  font-family: "Oswald" !important;
  font-style: normal;
  font-weight: 700 !important;
  font-size: 16px !important;
  line-height: 21px;
}

.tab-margin-md {
  margin-top: 100px;
}

.tab-margin-md .services-content {
  margin-bottom: 40px;
}
.tab-margin-md #item-353.services-content .col-lg-5 img {
    width: 233px;
    height: auto;
}
.tab-margin-md .services-content h3 {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 31px;
  color: #ED2328;
  margin-bottom: 40px;
}

.tab-margin-md .services-content p:not(:last-child) {
  margin-bottom: 30px;
}

.tab-margin-md .services-content ul {
  display: flex;
  flex-direction: column;
  margin-top: 0 !important;
}

.tab-margin-md .services-content ul li {
  position: relative;
  padding-left: 15px;
}

.tab-margin-md .services-content ul li::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  background: #ED2328;
  border-radius: 20px;
  top: 8px;
  left: 0;
}

.services-position {
  transition: all ease-in .5s;
  position: relative;
}

@media (max-width: 768px) {
  .flex-reverse-sp {
    flex-direction: column-reverse;
  }
  .tab-margin-md .services-content .ta-center {
    padding-bottom: 15px;
  }
}

.active a {
  color: #ED2328;
}

footer {
  background: #111111;
  padding: 50px 0;
}

footer .content-title {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: normal;
  color: #ED2328;
  text-transform: uppercase;
  letter-spacing: 2px;
}

footer .footer-content p {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #C4C4C4;
  margin-top: 10px;
}

footer .footer-content img {
  margin-top: 10px;
}

@media (max-width: 768px) {
  footer .footer-content {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  footer .ta-sp-center {
    text-align: center;
  }
}

footer .footer-contact h3 {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: normal;
  color: #ED2328;
  text-transform: uppercase;
  letter-spacing: 2px;
}

footer .footer-contact p {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #C4C4C4;
  margin-top: 10px;
}

footer .footer-contact p a {
  color: #C4C4C4;
}

footer .footer-contact .red {
  color: red;
}

footer .footer-services h3 {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: normal;
  color: #ED2328;
  text-transform: uppercase;
  letter-spacing: 2px;
}

footer .footer-services ul {
  margin-top: 10px;
}

footer .footer-services ul li a {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #C4C4C4;
  text-transform: capitalize !important;
}

@media (max-width: 768px) {
  footer .footer-services {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  footer {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.footer-right-content {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 567px) {
  .footer-right-content {
    flex-direction: column;
  }
}

.m-t-0 {
  margin-top: 0px !important;
}

.p-t-0 {
  padding-top: 0px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.m-l-0 {
  margin-left: 0px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.m-t-60 {
  margin-top: 60px !important;
}

.p-t-60 {
  padding-top: 60px !important;
}

.m-b-60 {
  margin-bottom: 60px !important;
}

.p-b-60 {
  padding-bottom: 60px !important;
}

.m-l-60 {
  margin-left: 60px !important;
}

.p-l-60 {
  padding-left: 60px !important;
}

.m-r-60 {
  margin-right: 60px !important;
}

.p-r-60 {
  padding-right: 60px !important;
}

.m-t-70 {
  margin-top: 70px !important;
}

.p-t-70 {
  padding-top: 70px !important;
}

.m-b-70 {
  margin-bottom: 70px !important;
}

.p-b-70 {
  padding-bottom: 70px !important;
}

.m-l-70 {
  margin-left: 70px !important;
}

.p-l-70 {
  padding-left: 70px !important;
}

.m-r-70 {
  margin-right: 70px !important;
}

.p-r-70 {
  padding-right: 70px !important;
}

.m-t-75 {
  margin-top: 75px !important;
}

.p-t-75 {
  padding-top: 75px !important;
}

.m-b-75 {
  margin-bottom: 75px !important;
}

.p-b-75 {
  padding-bottom: 75px !important;
}

.m-l-75 {
  margin-left: 75px !important;
}

.p-l-75 {
  padding-left: 75px !important;
}

.m-r-75 {
  margin-right: 75px !important;
}

.p-r-75 {
  padding-right: 75px !important;
}

.m-t-80 {
  margin-top: 80px !important;
}

.p-t-80 {
  padding-top: 80px !important;
}

.m-b-80 {
  margin-bottom: 80px !important;
}

.p-b-80 {
  padding-bottom: 80px !important;
}

.m-l-80 {
  margin-left: 80px !important;
}

.p-l-80 {
  padding-left: 80px !important;
}

.m-r-80 {
  margin-right: 80px !important;
}

.p-r-80 {
  padding-right: 80px !important;
}

.m-t-90 {
  margin-top: 90px !important;
}

.p-t-90 {
  padding-top: 90px !important;
}

.m-b-90 {
  margin-bottom: 90px !important;
}

.p-b-90 {
  padding-bottom: 90px !important;
}

.m-l-90 {
  margin-left: 90px !important;
}

.p-l-90 {
  padding-left: 90px !important;
}

.m-r-90 {
  margin-right: 90px !important;
}

.p-r-90 {
  padding-right: 90px !important;
}

.m-t-100 {
  margin-top: 100px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

.m-b-100 {
  margin-bottom: 100px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.m-l-100 {
  margin-left: 100px !important;
}

.p-l-100 {
  padding-left: 100px !important;
}

.m-r-100 {
  margin-right: 100px !important;
}

.p-r-100 {
  padding-right: 100px !important;
}

.m-t-120 {
  margin-top: 120px !important;
}

.p-t-120 {
  padding-top: 120px !important;
}

.m-b-120 {
  margin-bottom: 120px !important;
}

.p-b-120 {
  padding-bottom: 120px !important;
}

.m-l-120 {
  margin-left: 120px !important;
}

.p-l-120 {
  padding-left: 120px !important;
}

.m-r-120 {
  margin-right: 120px !important;
}

.p-r-120 {
  padding-right: 120px !important;
}

.m-t-140 {
  margin-top: 140px !important;
}

.p-t-140 {
  padding-top: 140px !important;
}

.m-b-140 {
  margin-bottom: 140px !important;
}

.p-b-140 {
  padding-bottom: 140px !important;
}

.m-l-140 {
  margin-left: 140px !important;
}

.p-l-140 {
  padding-left: 140px !important;
}

.m-r-140 {
  margin-right: 140px !important;
}

.p-r-140 {
  padding-right: 140px !important;
}

.m-t-150 {
  margin-top: 150px !important;
}

.p-t-150 {
  padding-top: 150px !important;
}

.m-b-150 {
  margin-bottom: 150px !important;
}

.p-b-150 {
  padding-bottom: 150px !important;
}

.m-l-150 {
  margin-left: 150px !important;
}

.p-l-150 {
  padding-left: 150px !important;
}

.m-r-150 {
  margin-right: 150px !important;
}

.p-r-150 {
  padding-right: 150px !important;
}

.m-t-160 {
  margin-top: 160px !important;
}

.p-t-160 {
  padding-top: 160px !important;
}

.m-b-160 {
  margin-bottom: 160px !important;
}

.p-b-160 {
  padding-bottom: 160px !important;
}

.m-l-160 {
  margin-left: 160px !important;
}

.p-l-160 {
  padding-left: 160px !important;
}

.m-r-160 {
  margin-right: 160px !important;
}

.p-r-160 {
  padding-right: 160px !important;
}

.m-t-200 {
  margin-top: 200px !important;
}

.p-t-200 {
  padding-top: 200px !important;
}

.m-b-200 {
  margin-bottom: 200px !important;
}

.p-b-200 {
  padding-bottom: 200px !important;
}

.m-l-200 {
  margin-left: 200px !important;
}

.p-l-200 {
  padding-left: 200px !important;
}

.m-r-200 {
  margin-right: 200px !important;
}

.p-r-200 {
  padding-right: 200px !important;
}

@media (min-width: 769px) {
  .m-md-t-0 {
    margin-top: 0px !important;
  }
  .p-md-t-0 {
    padding-top: 0px;
  }
  .m-md-b-0 {
    margin-bottom: 0px !important;
  }
  .p-md-b-0 {
    padding-bottom: 0px;
  }
  .m-md-l-0 {
    margin-left: 0px !important;
  }
  .p-md-l-0 {
    padding-left: 0px;
  }
  .m-md-r-0 {
    margin-right: 0px !important;
  }
  .p-md-r-0 {
    padding-right: 0px;
  }
  .m-md-t-5 {
    margin-top: 5px !important;
  }
  .p-md-t-5 {
    padding-top: 5px;
  }
  .m-md-b-5 {
    margin-bottom: 5px !important;
  }
  .p-md-b-5 {
    padding-bottom: 5px;
  }
  .m-md-l-5 {
    margin-left: 5px !important;
  }
  .p-md-l-5 {
    padding-left: 5px;
  }
  .m-md-r-5 {
    margin-right: 5px !important;
  }
  .p-md-r-5 {
    padding-right: 5px;
  }
  .m-md-t-10 {
    margin-top: 10px !important;
  }
  .p-md-t-10 {
    padding-top: 10px;
  }
  .m-md-b-10 {
    margin-bottom: 10px !important;
  }
  .p-md-b-10 {
    padding-bottom: 10px;
  }
  .m-md-l-10 {
    margin-left: 10px !important;
  }
  .p-md-l-10 {
    padding-left: 10px;
  }
  .m-md-r-10 {
    margin-right: 10px !important;
  }
  .p-md-r-10 {
    padding-right: 10px;
  }
  .m-md-t-15 {
    margin-top: 15px !important;
  }
  .p-md-t-15 {
    padding-top: 15px;
  }
  .m-md-b-15 {
    margin-bottom: 15px !important;
  }
  .p-md-b-15 {
    padding-bottom: 15px;
  }
  .m-md-l-15 {
    margin-left: 15px !important;
  }
  .p-md-l-15 {
    padding-left: 15px;
  }
  .m-md-r-15 {
    margin-right: 15px !important;
  }
  .p-md-r-15 {
    padding-right: 15px;
  }
  .m-md-t-20 {
    margin-top: 20px !important;
  }
  .p-md-t-20 {
    padding-top: 20px;
  }
  .m-md-b-20 {
    margin-bottom: 20px !important;
  }
  .p-md-b-20 {
    padding-bottom: 20px;
  }
  .m-md-l-20 {
    margin-left: 20px !important;
  }
  .p-md-l-20 {
    padding-left: 20px;
  }
  .m-md-r-20 {
    margin-right: 20px !important;
  }
  .p-md-r-20 {
    padding-right: 20px;
  }
  .m-md-t-25 {
    margin-top: 25px !important;
  }
  .p-md-t-25 {
    padding-top: 25px;
  }
  .m-md-b-25 {
    margin-bottom: 25px !important;
  }
  .p-md-b-25 {
    padding-bottom: 25px;
  }
  .m-md-l-25 {
    margin-left: 25px !important;
  }
  .p-md-l-25 {
    padding-left: 25px;
  }
  .m-md-r-25 {
    margin-right: 25px !important;
  }
  .p-md-r-25 {
    padding-right: 25px;
  }
  .m-md-t-30 {
    margin-top: 30px !important;
  }
  .p-md-t-30 {
    padding-top: 30px;
  }
  .m-md-b-30 {
    margin-bottom: 30px !important;
  }
  .p-md-b-30 {
    padding-bottom: 30px;
  }
  .m-md-l-30 {
    margin-left: 30px !important;
  }
  .p-md-l-30 {
    padding-left: 30px;
  }
  .m-md-r-30 {
    margin-right: 30px !important;
  }
  .p-md-r-30 {
    padding-right: 30px;
  }
  .m-md-t-35 {
    margin-top: 35px !important;
  }
  .p-md-t-35 {
    padding-top: 35px;
  }
  .m-md-b-35 {
    margin-bottom: 35px !important;
  }
  .p-md-b-35 {
    padding-bottom: 35px;
  }
  .m-md-l-35 {
    margin-left: 35px !important;
  }
  .p-md-l-35 {
    padding-left: 35px;
  }
  .m-md-r-35 {
    margin-right: 35px !important;
  }
  .p-md-r-35 {
    padding-right: 35px;
  }
  .m-md-t-40 {
    margin-top: 40px !important;
  }
  .p-md-t-40 {
    padding-top: 40px;
  }
  .m-md-b-40 {
    margin-bottom: 40px !important;
  }
  .p-md-b-40 {
    padding-bottom: 40px;
  }
  .m-md-l-40 {
    margin-left: 40px !important;
  }
  .p-md-l-40 {
    padding-left: 40px;
  }
  .m-md-r-40 {
    margin-right: 40px !important;
  }
  .p-md-r-40 {
    padding-right: 40px;
  }
  .m-md-t-45 {
    margin-top: 45px !important;
  }
  .p-md-t-45 {
    padding-top: 45px;
  }
  .m-md-b-45 {
    margin-bottom: 45px !important;
  }
  .p-md-b-45 {
    padding-bottom: 45px;
  }
  .m-md-l-45 {
    margin-left: 45px !important;
  }
  .p-md-l-45 {
    padding-left: 45px;
  }
  .m-md-r-45 {
    margin-right: 45px !important;
  }
  .p-md-r-45 {
    padding-right: 45px;
  }
  .m-md-t-50 {
    margin-top: 50px !important;
  }
  .p-md-t-50 {
    padding-top: 50px;
  }
  .m-md-b-50 {
    margin-bottom: 50px !important;
  }
  .p-md-b-50 {
    padding-bottom: 50px;
  }
  .m-md-l-50 {
    margin-left: 50px !important;
  }
  .p-md-l-50 {
    padding-left: 50px;
  }
  .m-md-r-50 {
    margin-right: 50px !important;
  }
  .p-md-r-50 {
    padding-right: 50px;
  }
  .m-md-t-60 {
    margin-top: 60px !important;
  }
  .p-md-t-60 {
    padding-top: 60px;
  }
  .m-md-b-60 {
    margin-bottom: 60px !important;
  }
  .p-md-b-60 {
    padding-bottom: 60px;
  }
  .m-md-l-60 {
    margin-left: 60px !important;
  }
  .p-md-l-60 {
    padding-left: 60px;
  }
  .m-md-r-60 {
    margin-right: 60px !important;
  }
  .p-md-r-60 {
    padding-right: 60px;
  }
  .m-md-t-70 {
    margin-top: 70px !important;
  }
  .p-md-t-70 {
    padding-top: 70px;
  }
  .m-md-b-70 {
    margin-bottom: 70px !important;
  }
  .p-md-b-70 {
    padding-bottom: 70px;
  }
  .m-md-l-70 {
    margin-left: 70px !important;
  }
  .p-md-l-70 {
    padding-left: 70px;
  }
  .m-md-r-70 {
    margin-right: 70px !important;
  }
  .p-md-r-70 {
    padding-right: 70px;
  }
  .m-md-t-75 {
    margin-top: 75px !important;
  }
  .p-md-t-75 {
    padding-top: 75px;
  }
  .m-md-b-75 {
    margin-bottom: 75px !important;
  }
  .p-md-b-75 {
    padding-bottom: 75px;
  }
  .m-md-l-75 {
    margin-left: 75px !important;
  }
  .p-md-l-75 {
    padding-left: 75px;
  }
  .m-md-r-75 {
    margin-right: 75px !important;
  }
  .p-md-r-75 {
    padding-right: 75px;
  }
  .m-md-t-80 {
    margin-top: 80px !important;
  }
  .p-md-t-80 {
    padding-top: 80px;
  }
  .m-md-b-80 {
    margin-bottom: 80px !important;
  }
  .p-md-b-80 {
    padding-bottom: 80px;
  }
  .m-md-l-80 {
    margin-left: 80px !important;
  }
  .p-md-l-80 {
    padding-left: 80px;
  }
  .m-md-r-80 {
    margin-right: 80px !important;
  }
  .p-md-r-80 {
    padding-right: 80px;
  }
  .m-md-t-90 {
    margin-top: 90px !important;
  }
  .p-md-t-90 {
    padding-top: 90px;
  }
  .m-md-b-90 {
    margin-bottom: 90px !important;
  }
  .p-md-b-90 {
    padding-bottom: 90px;
  }
  .m-md-l-90 {
    margin-left: 90px !important;
  }
  .p-md-l-90 {
    padding-left: 90px;
  }
  .m-md-r-90 {
    margin-right: 90px !important;
  }
  .p-md-r-90 {
    padding-right: 90px;
  }
  .m-md-t-100 {
    margin-top: 100px !important;
  }
  .p-md-t-100 {
    padding-top: 100px;
  }
  .m-md-b-100 {
    margin-bottom: 100px !important;
  }
  .p-md-b-100 {
    padding-bottom: 100px;
  }
  .m-md-l-100 {
    margin-left: 100px !important;
  }
  .p-md-l-100 {
    padding-left: 100px;
  }
  .m-md-r-100 {
    margin-right: 100px !important;
  }
  .p-md-r-100 {
    padding-right: 100px;
  }
  .m-md-t-120 {
    margin-top: 120px !important;
  }
  .p-md-t-120 {
    padding-top: 120px;
  }
  .m-md-b-120 {
    margin-bottom: 120px !important;
  }
  .p-md-b-120 {
    padding-bottom: 120px;
  }
  .m-md-l-120 {
    margin-left: 120px !important;
  }
  .p-md-l-120 {
    padding-left: 120px;
  }
  .m-md-r-120 {
    margin-right: 120px !important;
  }
  .p-md-r-120 {
    padding-right: 120px;
  }
  .m-md-t-140 {
    margin-top: 140px !important;
  }
  .p-md-t-140 {
    padding-top: 140px;
  }
  .m-md-b-140 {
    margin-bottom: 140px !important;
  }
  .p-md-b-140 {
    padding-bottom: 140px;
  }
  .m-md-l-140 {
    margin-left: 140px !important;
  }
  .p-md-l-140 {
    padding-left: 140px;
  }
  .m-md-r-140 {
    margin-right: 140px !important;
  }
  .p-md-r-140 {
    padding-right: 140px;
  }
  .m-md-t-150 {
    margin-top: 150px !important;
  }
  .p-md-t-150 {
    padding-top: 150px;
  }
  .m-md-b-150 {
    margin-bottom: 150px !important;
  }
  .p-md-b-150 {
    padding-bottom: 150px;
  }
  .m-md-l-150 {
    margin-left: 150px !important;
  }
  .p-md-l-150 {
    padding-left: 150px;
  }
  .m-md-r-150 {
    margin-right: 150px !important;
  }
  .p-md-r-150 {
    padding-right: 150px;
  }
  .m-md-t-160 {
    margin-top: 160px !important;
  }
  .p-md-t-160 {
    padding-top: 160px;
  }
  .m-md-b-160 {
    margin-bottom: 160px !important;
  }
  .p-md-b-160 {
    padding-bottom: 160px;
  }
  .m-md-l-160 {
    margin-left: 160px !important;
  }
  .p-md-l-160 {
    padding-left: 160px;
  }
  .m-md-r-160 {
    margin-right: 160px !important;
  }
  .p-md-r-160 {
    padding-right: 160px;
  }
  .m-md-t-200 {
    margin-top: 200px !important;
  }
  .p-md-t-200 {
    padding-top: 200px;
  }
  .m-md-b-200 {
    margin-bottom: 200px !important;
  }
  .p-md-b-200 {
    padding-bottom: 200px;
  }
  .m-md-l-200 {
    margin-left: 200px !important;
  }
  .p-md-l-200 {
    padding-left: 200px;
  }
  .m-md-r-200 {
    margin-right: 200px !important;
  }
  .p-md-r-200 {
    padding-right: 200px;
  }
}

.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

.hamburger {
  z-index: 9999;
  align-items: center;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.5s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  justify-content: flex-end;
  padding-left: 6px;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-height {
  height: calc(100vh);
}
.border-red {
  border-left: 7px solid #ED2328;
}


.error404 header .fuild-bg {
    background: #000;
    padding-bottom: 2px;
}
body.error404 .content-panel-title.error404-content {
  padding: 80px 0 80px 0;
}
body.error404 .content-panel-title.error404-content h4 a {
    background: none;
    color: #ED2328;
    display: inline;
    font-size: 22px;
    padding: 0;
}
body.error404 .content-panel-title.error404-content h4 {
    text-align: center;
    font-size: 22px;
}

@media (max-width: 992px) {
  .owl-carousel.owl-drag .owl-item {
      padding: 0 20px 0 20px;
  }
  .owl-carousel.owl-drag .owl-item .image-item img {
       width: 100% !important;
       height: auto;
  }
}

.services-content#item-356, .services-content#item-358, #nav-item-356, #nav-item-358 {
  display: none;
}
section.container-banner-misc{
	display: block;
    text-align:center;
	position: relative;
    z-index: 3;
    margin-top: -118px;
   	
}
section.container-banner-misc .global-flex-bottom{
	height:auto;
	align-items:center !important;
	padding-top:15px;
	
}
.lower-background {

  min-height: 780px;

}
.new-list .image-list{
	min-height:195px !important;
}
.lower-background .container h1 {
	
	margin-top:159px;
}
@media (max-width:1024px) and (min-width:768px){
	section.container-banner-misc {
     margin-top: -149px;
}

}
@media (max-width:992px) and (min-width:768px){
	.attach-video-here .container{
		margin-top:25px !important;
	}
	.play-logo {
		height:85% !important;
		}
	.section-two-content h3{
	margin-top:0px;
}
.section-two-content.latest-news h3{
	margin-top:0px;
}
}
@media (max-width: 768px) {
  .lower-background {
    font-size: 37px;
    line-height: 54px;
    min-height: 500px;
  }
      .global-flex-bottom ul li {
        margin-right: 0 !important;
	}
  .new-list .image-list {
    min-height: 134px !important;
}
	.attach-video-here .container{
		margin-top:20px !important;
	}
		.play-logo {
		height:85% !important;
		}
	section.container-banner-misc{
		margin-top:unset !important;
		z-index:unset !important;
	}
  .lower-background .container h1 {
	
	margin-top:10px;
}
		.section-two-content h3{
	margin-top:0px;
}
.section-two-content.latest-news h3{
	margin-top:0px;
}
}
@media (max-width:1200px) {
	
	.global-flex-bottom .snippet-panel {
        padding: 12px 10px;
	}
}

@media (max-width:1024px) {
	
	.section-content-leadership ul .tab-link{
		padding-right:4px;
	}
	.global-flex-bottom .snippet-panel {
        padding: 12px 10px;
	}
.list-of-services {
     max-width: 190px !important;
 }
}

@media (max-width:430px) {
	
	.section-content-leadership ul .tab-link{
		padding-right:6px;
	}
	
}
header .header-nav-account{
	display:none !important;
}
.play-logo img {
    width: 105px !important;
}
body.page-id-19 .container-fuild.fuild-bg .container, body.page-id-19 .container-fuild.fuild-bg, body.page-id-396 .container-fuild.fuild-bg .container, body.page-id-396 .container-fuild.fuild-bg, body.page-id-23 .container-fuild.fuild-bg .container, body.page-id-23 .container-fuild.fuild-bg, body.page-id-25 .container-fuild.fuild-bg .container, body.page-id-25 .container-fuild.fuild-bg {
  background:#000;
}
.section-two-content h3{
	margin-top:36px;
}
.section-two-content.latest-news h3{
	margin-top:70px;
}

.main-menu li a {
      text-shadow: 
        -1px -1px 0 black,  
         1px -1px 0 black,  
        -1px  1px 0 black,  
         1px  1px 0 black; /* Text outline effect */
    -webkit-text-stroke: 0px black;
    

}

.fuild-bg-item .container{
    height: 92px !important;
    transition: transform 0.3s ease-in-out;
}

.fluid-big-item .container.container-flex img.custom-logo {
    height: 92px !important;
    width: 92px !important;
    transition: transform 0.3s ease-in-out;
}

.fuild-bg .container.container-flex {
    transition: all 0.3s ease-in-out;
}
@media (max-width:1200px) and (min-width:1024px) {
	 .list-of-services {
     max-width: 190px !important;
 }
	
}