/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 10 version
*/

:root {
  --primary-color: #F68F27;   
  --secondary-color: #454545;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;  
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
  color: #31302F;
}

section {
  position: relative;
  margin-bottom: 60px;
}

ul.no-style {
  padding-left: 0;
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
}

:focus-visible {
  outline: 2px solid #ffbf47;
  outline-offset: 2px;
}

a,
a:visited {
  color: inherit;
}


.container {
  max-width: 1187px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; 
  -ms-flex-wrap: wrap; 
      flex-wrap: wrap;
  gap: 16px;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.col {
  -webkit-box-flex:1;
      -ms-flex:1 1 auto;
          flex:1 1 auto;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(8.333333% - 8px);
          flex: 0 0 calc(8.333333% - 8px);
  max-width: calc(8.333333% - 8px);
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(16.666667% - 8px);
          flex: 0 0 calc(16.666667% - 8px);
  max-width: calc(16.666667% - 8px);
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 8px);
          flex: 0 0 calc(25% - 8px);
  max-width: calc(25% - 8px);
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333333% - 10.6667px);
          flex: 0 0 calc(33.333333% - 10.6667px);
  max-width: calc(33.333333% - 10.6667px);
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(41.666667% - 8px);
          flex: 0 0 calc(41.666667% - 8px);
  max-width: calc(41.666667% - 8px);
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 8px);
          flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(58.333333% - 8px);
          flex: 0 0 calc(58.333333% - 8px);
  max-width: calc(58.333333% - 8px);
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(66.666667% - 10.6667px);
          flex: 0 0 calc(66.666667% - 10.6667px);
  max-width: calc(66.666667% - 10.6667px);
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(75% - 8px);
          flex: 0 0 calc(75% - 8px);
  max-width: calc(75% - 8px);
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(83.333333% - 8px);
          flex: 0 0 calc(83.333333% - 8px);
  max-width: calc(83.333333% - 8px);
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(91.666667% - 8px);
          flex: 0 0 calc(91.666667% - 8px);
  max-width: calc(91.666667% - 8px);
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 8px);
          flex: 0 0 calc(100% - 8px);
  max-width: calc(100% - 8px);
}


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

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

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

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

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

.mt-0  { 
  margin-top: 0 !important;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-100 {
  margin-top: 100px;
}

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

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

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

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

 .d-block {
  display: block;
 }



h1 {
  visibility: hidden;
  width: 0;
  height: 0;
}

h2 {
  font-size: clamp(24px,5vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
}

h3 {
  font-size: 27.7px;
  line-height: 33.6px;
  letter-spacing: -0.28px;
  margin-bottom: 20px;
}

.text-xs {
  font-size: 12px;
  line-height: 19.2;
  letter-spacing: 0.16px;
}

.text-l {
  font-size: 21.5px;
  line-height: 30.2px;
  letter-spacing: -1px;
}

.f-normal {
  font-weight: normal;
}

.f-bold {
  font-weight: bold;
}

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

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

.text-white {
  color: #fff;
}

p:not(:last-child) {
  margin-bottom: 20px;
}


.color-primary {
  color: var(--primary-color);
}

.color-secondary {
  color: var(--secondary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}


a.btn {  
  color: var(--secondary-color);
  font-size: 17.5px;
  line-height: 30.2px;
  letter-spacing: -1px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

a.btn-alt {
  background-color: var(--primary-color);
  display: inline-block;
  margin-inline: auto;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  max-width: 242px;
  padding: 10px 50px ;  
}

a.btn:not(.btn-alt):after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 3px;
  bottom: -3px;
  background-color: var(--secondary-color);
}

a.btn:hover {
  opacity: .8;
}


.top-header {
  background-color: var(--secondary-color);
  font-weight: 500;
  padding-top: 13px;
  padding-bottom: 13px;
}

.bottom-header {
  padding-top: 13px;
  padding-bottom: 13px;
}

.bottom-header.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 10px rgba(0,0,0,.08);
          box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

#logo {
  width: auto;
  height: 36px;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}



nav ul {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  text-decoration: none;
}

nav ul a {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(0, 0, 0, 1);
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  position: relative;
}

nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 3px;
  left: 0;
  width: 0;
  background-color: var(--secondary-color);
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

nav ul li.active a:after,
nav ul li:hover a:after {
  width: 100%;
}

nav ul a.btn-menu {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 16px;
}



#hero {
  position: relative;
  overflow: hidden;
  height: 480px;  
  margin-bottom: 0;
}

.home #hero {
  height: 631px;  
}
.overlay-wrapper {
  background-color: #000;
}
.overlay-wrapper .hero-overlay{
  position: relative;
}

#hero img.video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

#hero:not(.home){
  background-color: var(--secondary-color);
  background-image: var(--hero-bg);
  background-repeat: no-repeat;  
  background-size: cover;
  background-position: center bottom;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;  
  height: 120px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.hero-overlay .left,
.hero-overlay .right {
  background: #fff;
}

.hero-overlay .left {
  border-top-right-radius: 120px;
}

.hero-overlay .right {
  border-top-left-radius: 120px;
}

.home #intro {
  margin-top: -100px;  
  z-index: 2;
}


#hero .video-wrapper{
    width:100%;
    height:100%;
    background-color: #fff;
}

#hero  .video-wrapper video{
    width:100%;
    height:100%;
    -o-object-fit:cover;
       object-fit:cover;
}



.video-wrapper{
position:relative;
}

.video-wrapper{
position:relative;
width:100%;
height:100%;
}

/* .video-wrapper video{
width:100%;
height:100%;
-o-object-fit:cover;
   object-fit:cover;
}
 */

#hero .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero .video-wrapper video.contain {
  object-fit: contain;
}


.play-btn{
position:absolute;
top:50%;
left:50%;
width: 70px;
height: 70px;
-webkit-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
        transform:translate(-50%,-50%);
border: none;  
padding: 8px 12px;
border-radius: 6px;
background:rgba(0,0,0,0.6);
border-radius: 50%;
cursor: pointer;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}

.play-btn img {
  width: 40px;
  height: 40px;
  -webkit-filter: invert(1) brightness(100);
          filter: invert(1) brightness(100);
}


.video-controls{
position:absolute;
top:15px;
right:15px;
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-orient:vertical;
-webkit-box-direction:normal;
    -ms-flex-direction:column;
        flex-direction:column;
gap:10px;
}

.mute-btn{
background:rgba(0,0,0,0.6);
border:none;
color:white;

border-radius:50%;
display:none;
cursor:pointer;
width: 30px;
height: 30px;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}

.pause-btn{
background:rgba(0,0,0,0.6);
border:none;
color:white;

border-radius:50%;
display:none;
cursor:pointer;
width: 30px;
height: 30px;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}



.video__icon{
width:20px;
height:20px;
display:block;
}


.banner {
  background-color: var(--secondary-color);  
  border-radius: 24px;
  border: 1px solid #F1F1F1;
  padding: 25px 70px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: auto 50px 1fr;
  grid-template-columns: auto 1fr;
  gap: 50px;
}

.banner.column {
  padding: 50px clamp(20px,10vw,220px);
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;      
}

.banner.gap-10 {
  gap: 10px;
}

.banner__year {
  font-size: 64px;
  font-weight: 700;
  color: var(--primary-color);
}

.banner__content {
  max-width: 740px;
  font-size: 24px;
  line-height: 31px;
  font-weight: 500;
  color: #fff;
}

.banner__content strong {
  font-weight: 700;
}


.card {
  padding: 50px 25px;
  height: 100%;
  background-color: rgba(241, 241, 241, 0.5);
  border: 1px solid rgba(241, 241, 241, 1);
  display: -ms-grid;
  display: grid;  
  gap: 50px;
  border-radius: 16px;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.card:hover {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

.card h3 {
  font-weight: 500;
}
.card h3 {
  display: -ms-grid;
  display: grid;
  letter-spacing: -.28px;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
}

.card__content p {
  font-size: 17.7px;
  line-height: 24.3px;
}


.card__icon {
  padding-left: 20px;
  display: inline-block;
  width: auto;
  height: 80px;
}


#accordions {
  max-width: 900px;
  width: 100%;
}

.accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.accordion-header .accordion-item-icon {
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer;
}

.accordion-trigger[aria-expanded="false"] + .accordion-item-icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

#accordions h2 {
  margin-bottom: 0;
}

#accordions button {
  cursor: pointer;
  text-align: left;
  background-color: transparent;  
  border-color: transparent;
  font-size: 18px;
  padding: 16px 0;
  display: block;
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}

.accordion-body {
  padding-bottom: 16px;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 300ms ease-in-out;
  -o-transition: max-height 300ms ease-in-out;
  transition: max-height 300ms ease-in-out;
}



.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  height: 280px;
}

.swiper-pagination-bullet {
  width: 38px;
  height: 3px;
  padding-top: 3px;
  padding-bottom: 3px;
  border-radius: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(228, 129, 29, 1); 
}

.swiper-pagination {
  position: relative;
  margin-top: 20px;
}


.anim-fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
          transform: translateY(40px);
}


.line {
  height: 3px;
  background-color: var(--primary-color);
  width: 87px;
}



#other-sections-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}

#other-sections-list img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/2.1;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

#other-sections h4 {
  font-size: 42px;
  line-height: 47px;
  font-weight: 400;
  margin-bottom: 20px;
}



.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font: inherit;
  line-height: 1;
}

.scroll-top:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}



footer {
  background-color: #E2E2E180;
  font-size: 12px;
}

.footer small {
  font-size: 12px;
}

.prefooter {     
  font-size: 12px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 17px;
  color: rgba(95, 94, 90, 1);
}

.prefooter h4 {
  color: rgba(49, 48, 47, 1);
  font-size: clamp(20px, 5vw, 39px);
  margin-bottom: 20px;
  font-weight: 500;
}

.prefooter ol,
.prefooter ul {
  list-style: none;
  padding-left: 0;
  font-size: 17px;
  line-height: 26px;
}

.prefooter li {
  overflow-wrap: break-word;
}

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
  padding-bottom: 40px;
  color: #474747;
}

.footer ul {
  margin-top: 5px;
  padding-left: 0;
  list-style: none;
}

.footer ul li:not(:last-child) {
  margin-bottom: 5px;
}



#mobileMenuToggle {
  display: none;
}

.show-mobile-menu {
  overflow-y: hidden;
}

.mobile-menu-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  color: inherit;
}

.mobile-menu-toggle img {
  height: 30px;
}

.img-fluid {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/2.1;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

 .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }


  #under-the-auspices {
    padding-block: 40px;
    background-color: #F8F8F8;
  }

  #under-the-auspices .container {
    flex-direction: column;
  }

   #under-the-auspices  h2 {     
    font-weight: 500;
    margin-bottom: 0;
   }

   footer #under-the-auspices {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
   }
      footer #under-the-auspices p {
        font-size: 16px !important;
      }

@media (max-width: 767px) {
 .card:hover {
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
    }
  
  .top-header {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 15px;
    text-align: center;
  }  
  .bottom-header.fixed #logo {    
    height: 25px;
  }

  .gap-m-5 {
    gap: 5px;
  }

  .prefooter ul {
    font-size: 16px;
  }


  .prefooter ol {
    font-size: 15px;
  }

  .pr-60 {
    padding-right: unset !important;
  }
  .footer {
    text-align: center;
  }

  .prefooter,
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  
  #main-menu {  
    display: -webkit-box;  
    display: -ms-flexbox;  
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;  
    pointer-events: none;
    position: fixed;
    left: 0;
    top: var(--header-height);
    width: 100%;
    height: 100%;  
    background-color: rgba(241, 241, 241, 1);
    z-index: 50;
    opacity: 0;
    -webkit-transition: .35s ease-in-out;
    -o-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }

  .order-m-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  #main-menu.is-open {
    opacity: 1;
    pointer-events: all;
  }

  #main-menu ul {
    padding-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  #mobileMenuToggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  a.btn {
    font-size: 16px;
    line-height: 28px;
  }

  
  .card {
    padding: 20px;
    
  }
  .card h3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .card h3 img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding-left: 0;
    height: 65px;
  }


  #hero {
  height: 220px;    
}

  
  #other-sections-list {
    gap: 30px;
  }
  #other-sections h4 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  

  .banner {
    text-align: center;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 20px 40px;
    gap: 10px;
  }

  
  .home #hero {
    height: 400px;
  }
  .hero-overlay {
    height: 40px;
  }

  .hero-overlay .left {
    border-top-right-radius: 40px;
  }

  .hero-overlay .right {
    border-top-left-radius: 40px;
  }

  
  .home #intro  {
    /* padding-top: 20px; */
    margin-top: 0;
  }

  

  .col-4,
  .col-6,
  .col-7,
  .col-8{    
    -webkit-box-flex: 0;    
        -ms-flex: 0 0 100%;    
            flex: 0 0 100%;
    max-width: 100%;
  }

  

  p:not(:last-child) {
    margin-bottom: 12px;
  }

  .text-l {
    font-size: 17px;
    line-height: 25px;
  }

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




  .justify-m-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .pl-60 {
    padding-left: unset !important;
  }
  .pr-60 {
    padding-right: unset !important;
  }

  section {
    margin-bottom: 30px;
  }
  .pt-m-20 {
    padding-top: 20px !important;
  }
  .mt-m-30 {
    margin-top: 30px !important;
  }
  .mb-m-0 {
    margin-bottom: 0px !important;
  }
  .mb-m-10 {
    margin-bottom: 10px !important;
  }
  .mb-m-20 {
    margin-bottom: 20px !important;
  }
  .mb-m-30 {
    margin-bottom: 30px !important;
  }

  .banner.column {
   padding: 25px !important;
  }

}
