  @media(min-width: 1280px) {
    .video-section {
     min-height: 122vh;
    }
  }

  .navbar-custom {
    background-color: #d4f1f0;
  }

  .news_wrapper {
    margin-top: -1px;
  }

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

  .margin-top-1rem {
    margin-top: 1rem;
  }

  .margin-top-26px {
    margin-top: 26px;
  }

  .margin-bottom-40px {
    margin-bottom: 40px;
  }

  .margin-bottom-30px {
    margin-bottom: 30px;
  }

  .margin-bottom-8rem {
    margin-bottom: 8rem !important;
  }

  .padding-top-0 {
    padding-top: 0 !important;
  }

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

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

  .padding-right-0point8rem {
    padding-right: 0.8rem !important;
  }

  .padding-left-0point8rem {
    padding-left: 0.8rem !important;
  }

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

  .bg-lighblue {
    background-color: #d4f1f0; /* corrisponde ora al video bg */
  }

  .bg-white {
    background-color: #ffffff;
  }

  .border-top-radius-42px {
    border-top-left-radius: 42px;
    border-top-right-radius: 42px;
  }

  @media (min-width: 992px) {
    .mt-lg-3rem {
      margin-top: 3rem !important;
    }

    .mb-lg-3rem {
      margin-bottom: 3rem !important;
    }

    .mt-lg-2rem {
      margin-top: 2rem !important;
    }

    .mb-lg-2rem {
      margin-bottom: 2rem !important;
    }

    .mb-lg-0 {
      margin-bottom: 0 !important;
    }

    .pb-lg-0 {
      padding-bottom: 0 !important;
    }
  }

  @media (max-width: 991px) {
    .mt-l_lg-2rem {
      margin-top: 2rem !important;
    }

    .mb-l_lg-3rem {
      margin-bottom: 3rem !important;
    }

    .mb-l_lg-2rem {
      margin-bottom: 2rem !important;
    }

    .mb-l_lg-0 {
      margin-bottom: 0 !important;
    }

    .pt-l_lg-0 {
      padding-top: 0 !important;
    }
  }

  @media (max-width: 767px) {
    .mb-l_md-6rem { /* margin bottom less than md 6rem */
      margin-bottom: 6rem !important;
    }

    .mb-l_md-4rem {
      margin-bottom: 4rem !important;
    }

    .mb-l_md-3rem {
      margin-bottom: 3rem !important;
    }

    .mb-l_md-2rem {
      margin-bottom: 2rem !important;
    }

    .mb-l_md-1rem {
      margin-bottom: 1rem !important;
    }

    .mb-l_md-0 {
      margin-bottom: 0 !important;
    }

    .pt-l_md-0 {
      padding-top: 0 !important;
    }

    .pb-l_md-2rem {
      padding-bottom: 2rem !important;
    }
  }


  .border-radius-40px {
    border-radius: 40px;
  }

  .font-size-15point7vw {
    font-size: 15.7vw !important;
  }

  .font-size-24point6vw {
    font-size: 24.6vw !important;
  }

  .font-size-39vw {
    font-size: 39vw !important;
  }

  .font-size-40px {
    font-size: 40px !important;
  }

  .font-size-50px {
    font-size: 50px !important;
  }

  .line-height-1em {
    line-height: 1em !important;
  }

  .light-blue {
    background-color: #D9F4F5;
  }
  
  .middle-light-blue-color {
    color: #49ccd0 !important;
  }

  b.b-fixed {
    font-weight: bold !important;
  }

  @media (max-width: 991px) {
    .section-title span, .section-title2 span {
      color: #49ccd0;
    }
  }

  @media (max-width: 667px) {
    .news_wrapper .container {
      padding: 0rem 1.7rem !important;
    }

    .finance-container {
      padding: 30px 16px !important; 
    }

    .section-title.font-size-50px {
      font-size: 50px !important;
    }
  }

  @media (min-width: 668px) {
    .finance-container {
      padding: 30px 35px !important; 
    }

    .finance-sub-title {
      color: #49ccd0 !important;
    }
  }

  @media (min-width: 768px) {
    .finance-container {
      padding: 0px 35px !important; 
    }
  }

  @media (min-width: 992px) {
    .finance-container {
      padding: 0px 10px !important; 
    }
  }


.video-holder {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-holder video {
  width: 100%;
  height: auto;
  display: none;
}

.video-holder video.active {
  display: block;
}

.overlay-text {
  z-index: 2;
}

/* Allineamento overlay - classi base */
.overlay-text .container {
  display: flex;
}

/* Overlay allineato a sinistra (default) */
.overlay-left .container {
  justify-content: flex-start;
}

/* Overlay allineato a destra */
.overlay-right .container {
  justify-content: flex-end;
}

/* Overlay centrato */
.overlay-center .container {
  justify-content: center;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
  display: none;
  cursor: pointer;
}

@media (min-width: 992px) {
  .overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
    background: transparent;
    color: white;
  }

  .overlay-text .container > h2 {
    max-width: 500px;  
  }
}

@media (max-width: 991.98px) {
  .overlay-text {
    position: static;
    width: 100%;
    padding: 0;
    background-color: #d4f1f0;
    color: inherit;
  }

  .overlay-text .container {
    padding-top: 1rem; 
    padding-bottom: 1rem;
  }

  .overlay-text .container > h2 {
    max-width: 400px;  
  }
  
  .overlay-left .container,
  .overlay-right .container,
  .overlay-center .container {
    justify-content: flex-start; 
  }
}





/* PAGES */






/* ABOUT page */
/* Video section */
.about_us .video-text-reverse-mobile .video-holder {
  /* padding-top: 4rem !important;*/
  padding-top: 0 !important;
  border-top: 4rem solid #d4f1f0;
}

.about_us .video-text-reverse-mobile .video-holder .overlay-text {
  padding-top: 1rem !important;
}

.about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content {
  max-width: 450px;
}

.about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
  font-size: 4.4rem;
  line-height: 1.3;
}
/* Video section */

.video-wrapper.box-wrapper {
  padding-top: 0;
}

/* Video section */
@media (min-width: 992px) {
  .about_us #video-desktop {
    display: block;
    min-height: 10vh;
    background-color: #f0f0f0;
  }
  
  .about_us #video-mobile {
    display: none;
  }
}
/* Video section */

@media (min-width: 768px) {
  .video-text-container {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
  }
}

@media (max-width: 767px) {
  .video-wrapper .inner_container {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .video-wrapper.box-wrapper {
    padding-bottom: 2px;
  }
}

.about_us .content-wrapper .sec-content .sub-title,
.about_us .about_deve-loop .sec-content .sub-title,
.about_us .box-wrapper .finance .sec-content .sub-title {
  font-size: 20px;
}

.about_us .content-wrapper .sec-content .section-title {
  font-size: 45px;
  line-height: 62px;
}

.about_us .content-wrapper .sec-content .lead {
  font-size: 20px;
  line-height: 35px;
  font-weight: 200;
}

.about_us .about_deve-loop {
  padding-top: 5rem !important;
}

.about_us .about_deve-loop .sec-content .section-title {
  font-size: 70px;
  line-height: 90px;
}

.about_us .about_deve-loop .sec-content .lead {
  font-size: 20px;
  line-height: 35px;
}

.about_us .video-wrapper.box-wrapper {
  padding-bottom: 84px;
}

.about_us .video-wrapper.box-wrapper .inner_container .h3 {
  font-size: 50px;
  line-height: 1.1em;
}

.about_us .video-wrapper.box-wrapper .inner_container .btn.btn-light {
  width: 240px;
  height: 88px;
  border-radius: 50px;
  font-size: 20px;
}

.about_us .box-wrapper .finance .sec-content .h3 {
  font-size: 52px;
  line-height: 60px;
}

.about_us .box-wrapper .finance .sec-content .lead {
  font-size: 20px;
  line-height: 38px;
}

.about_us .box-wrapper .finance .sec-content .entry_list {
  list-style-type: square;
}

.about_us .box-wrapper .finance .sec-content .entry_list li {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 1700px) {
  /* Video section */
  .about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 4.3rem;
  }
  /* Video section */
}

@media (max-width: 1600px) {
  /* Video section */
  .about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 4.2rem;
  }
  /* Video section */
}

@media (max-width: 1500px) {
  /* Video section */
  .about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 4.1rem;
  }
  /* Video section */
}

@media (max-width: 1400px) {
  /* Video section */
  .about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.9rem;
    line-height: 1.2;
  }
  /* Video section */
}

@media (max-width: 1300px) {
  /* Video section */
  .about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.8rem;
  }
  /* Video section */
}

@media (max-width: 1200px) {
  /* Video section */
  .about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.7rem;
  }
  /* Video section */
}

@media (max-width: 1100px) {
  /* Video section */
  .about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.5rem;
    line-height: 1.1;
  }
  /* Video section */
}

@media (max-width: 991px) {
  /* Video section */
  .about_us .video-text-reverse-mobile .video-holder {
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  .about_us .video-text-reverse-mobile .video-holder .overlay-text {
    padding-top: 3rem !important;
  }

  .about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content {
    max-width: 100%;
  }

  .about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.5rem;
  }

  .about_us #video-mobile {
    display: block;
    min-height: 10vh;
    background-color: #f0f0f0;
  }
  
  .about_us #video-desktop {
    display: none;
  }
  /* Video section */

  .about_us .content-wrapper .sec-content .sub-title, .about_us .about_deve-loop .sec-content .sub-title, 
  .about_us .box-wrapper .finance .sec-content .sub-title {
    font-size: 20px;
  }

  .about_us .content-wrapper .sec-content .section-title {
    font-size: 38px;
    line-height: 46px;
  }

  .about_us .content-wrapper .sec-content .lead {
    font-size: 20px;
    line-height: 34px;
  }

  .about_us .video-wrapper.box-wrapper .inner_container .h3 {
    font-size: 36px;
  }

  .about_us .video-wrapper.box-wrapper .inner_container .btn.btn-light {
    width: 140px;
    height: 52px;
    border-radius: 33px;
    font-size: 13px;
  }
 
  .about_us .about_deve-loop .sec-content .sub-title, 
  .about_us .box-wrapper .finance .sec-content .sub-title {
    color: #49ccd0;
  }

  .about_us .about_deve-loop .sec-content .section-title {
    font-size: 42px;
    line-height: 48px;
  }

  .about_us .about_deve-loop .sec-content .lead {
    font-size: 20px;
    line-height: 30px;
  }

  .about_us .box-wrapper .finance {
    margin-bottom: 6rem !important;
  }

  .about_us .box-wrapper .finance .sec-content .h3 {
    font-size: 38px;
    line-height: 38px;
  }

  .about_us .box-wrapper .finance .sec-content .lead {
    font-size: 20px;
    line-height: 30px;
  }

  .about_us .box-wrapper .finance .sec-content .entry_list li {
    font-size: 20px;
    line-height: 23px;
  }

  .about_us .box-wrapper .finance.last-finance {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  .about_us .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 2.8rem;
  }

  .about_us .content-wrapper .sec-content .sub-title, 
  .about_us .about_deve-loop .sec-content .sub-title, 
  .about_us .box-wrapper .finance .sec-content .sub-title {
    font-size: 21px;
  }

  .about_us .content-wrapper .sec-content .sub-title {
    line-height: 18px;
  }

  .about_us .content-wrapper .sec-content .lead {
    font-size: 23px;
    line-height: 32px;
  }

  .about_us .about_deve-loop .sec-content .lead {
    font-size: 23px;
    line-height: 30px;
  }

  .about_us .box-wrapper .finance .sec-content .lead {
    font-size: 23px;
  }

  .about_us .video-wrapper.box-wrapper {
    padding-bottom: 1px;
  }

  .about_us .video-wrapper.box-wrapper .inner_container {
    margin-bottom: 80px; 
  }

  .about_us .video-wrapper.box-wrapper .inner_container .h3 {
    font-size: 52px;
  }

  .about_us .video-wrapper.box-wrapper .inner_container .btn.btn-light {
    width: 220px;
    height: 80px;
    border-radius: 50px;
    font-size: 19px;
  }

  .about_us .box-wrapper .finance .sec-content .entry_list li {
    font-size: 23px;
    line-height: 26px;
  }
}

@media (max-width: 575px) {
  .about_us .video-wrapper.box-wrapper .inner_container .h3 {
    font-size: 40px;
  }
}
/* ABOUT page */




/* HOME page */
.video-text-reverse-mobile .flex-column-wrapper { 
  display: flex;
  flex-direction: column;
}

.video-text-reverse-mobile .section-title span {
  font-weight: 600; 
}

/* Layout desktop */
@media (min-width: 992px) {
  .video-text-reverse-mobile .overlay-text .container > .flex-column-wrapper {
    max-width: 420px;  
  }
  
  .video-text-reverse-mobile .flex-column-wrapper .lead {
    margin-top: 1rem;
  }
}

/* Layout mobile/tablet */
@media (max-width: 991.98px) {
  .video-text-reverse-mobile .video-holder { 
    display: flex;
    flex-direction: column;
  }
  
  .video-text-reverse-mobile .video-holder .overlay-text { 
    order: 2;
    background-color: #00faf9;
    padding-bottom: 70px;
  }

  .last-video-section .video-holder .overlay-text { 
    padding-bottom: 10px;
  }

  .scrolling-text {
    margin-bottom: 100px !important;
  }
  
  .video-text-reverse-mobile .video-holder video#video-mobile,
  .video-text-reverse-mobile .video-holder video#video-desktop { 
    order: 1;
  }
  
  .video-text-reverse-mobile .video-holder .play-button { 
    order: 1;
  }

  .video-text-reverse-mobile .overlay-text .container > .flex-column-wrapper {
    max-width: 100%; 
    width: 100%;     
  }
  
  .video-text-reverse-mobile .flex-column-wrapper .lead {
    margin-top: 0.5rem;
    font-weight: 300; 
    font-size: 21px;
  }

  .video-text-reverse-mobile .section-title {
    font-size: 60px;
  }

  .video-text-reverse-mobile .section-title span {
    color: white; 
  }

  .video-text-reverse-mobile .btn.btn-blue {
    background-color: white;
  }
}

@media (max-width: 667px) {
  .video-text-reverse-mobile .section-title { 
    font-size: 40px;
    font-weight: 250;
    line-height: 41px;
    letter-spacing: 0px;
  }

  .video-text-reverse-mobile .flex-column-wrapper .lead { 
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .video-text-reverse-mobile .video-holder {
    /* padding-top: 150px; */
    padding-top: 0 !important;
    border-top: 150px solid #d4f1f0;
    padding-bottom: 0;
    position: relative;
    overflow: visible;
  }
  
  .video-text-reverse-mobile .video-holder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    background-color: #d4f1f0;
  }
  
  .video-text-reverse-mobile .overlay-text {
    z-index: 2;
    align-items: flex-start;
    padding-top: 3%;
  }
  
  .video-text-reverse-mobile .video-holder video {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 1200px) {
    .video-text-reverse-mobile .overlay-text {
     padding-top: 6%;
    }
}

@media (min-width: 1400px) {
    .video-text-reverse-mobile .overlay-text {
      padding-top: 9%;
    }
}
/* HOME page */

@media (max-width: 991.98px) {
  .video-text-reverse-mobile.no-reverse .video-holder .overlay-text { 
    order: 0;
    background-color: #d4f1f0;
    padding-bottom: 0;
  }

  .video-text-reverse-mobile.no-reverse .section-title span {
    color: #49ccd0;
  }
}

@media (min-width: 668px) and (max-width: 991px) {
  .site-footer {
    padding: 60px 0 30px;
  }
}





/* new HOME page */
/* Video section */
.home .video-text-reverse-mobile .video-holder {
  /* padding-top: 4rem !important; */
  padding-top: 0 !important;
  border-top: 4rem solid #d4f1f0;
}

.home .video-text-reverse-mobile .video-holder .overlay-text {
  padding-top: 1rem !important;
}

.home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content {
  max-width: 450px;
}

.home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
  font-size: 4.4rem;
  line-height: 1.1;
}
/* Video section */

.video-wrapper.box-wrapper {
  padding-top: 0;
}

/* Video section */
@media (min-width: 992px) {
  .home #video-desktop {
    display: block;
    min-height: 10vh;
    background-color: #f0f0f0;
  }
  
  .home #video-mobile {
    display: none;
  }

  .home #video-desktop2 {
    display: block;
    min-height: 10vh;
    background-color: #f0f0f0;
  }
  
  .home #video-mobile2 {
    display: none;
  }
}
/* Video section */

@media (min-width: 768px) {
  .video-text-container {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
  }
}

@media (max-width: 767px) {
  .video-wrapper .inner_container {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .video-wrapper.box-wrapper {
    padding-bottom: 2px;
  }
}

.home .overlay-text .sec-content .sub-title {
  font-size: 20px;
  line-height: 0;
}

.home .overlay-text .sec-content .lead {
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
}

.home .overlay-text .sec-content .btn.btn-blue {
  font-size: 20px;
  font-weight: 400;
  width: 200px;
  height: 70px;
  border-radius: 50px;
  margin-top: 20px;
}

.home .news_wrapper.news_slider .scrolling-content p {
  font-size: 90px;
}

@media (max-width: 1800px) {
  /* Video section */
  .home .overlay-text .sec-content .sub-title {
    font-size: 20px;
  }

  .home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 4.2rem;
  }

  .home .overlay-text .sec-content .lead {
    font-size: 21px;
    line-height: 30px;
  }

  .home .overlay-text .sec-content .btn.btn-blue {
    font-size: 19px;
    width: 180px;
    height: 60px;
    border-radius: 50px;
  }
  /* Video section */
}

@media (max-width: 1700px) {
  /* Video section */
  .home .overlay-text .sec-content .sub-title {
    font-size: 19px;
  }

  .home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 4.1rem;
  }

  .home .overlay-text .sec-content .lead {
    font-size: 20px;
    line-height: 24px;
  }

  .home .overlay-text .sec-content .btn.btn-blue {
    font-size: 18px;
    width: 180px;
    height: 56px;
    border-radius: 50px;
  }
  /* Video section */
}

@media (max-width: 1600px) {
  /* Video section */
  .home .overlay-text .sec-content .sub-title {
    font-size: 18px;
  }

  .home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.9rem;
  }

  .home .overlay-text .sec-content .lead {
    font-size: 19px;
    line-height: 21px;
  }

  .home .overlay-text .sec-content .btn.btn-blue {
    font-size: 17px;
    width: 170px;
    height: 52px;
    border-radius: 50px;
  }
  /* Video section */
}

@media (max-width: 1500px) {
  /* Video section */
  /*.home .video-text-reverse-mobile .video-holder .overlay-text {
    padding-top: 3rem !important;
  }*/

  /*.home .overlay-text .sec-content .sub-title {
    font-size: 23px;
  }*/

  .home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.7rem;
    line-height: 1;
  }

  /*.home .overlay-text .sec-content .lead {
    font-size: 25px;
    line-height: 37px;
  }

  .home .overlay-text .sec-content .btn.btn-blue {
    font-size: 18px;
    width: 180px;
    height: 64px;
    border-radius: 50px;
    margin-top: 10px;
  }*/
  /* Video section */
}

@media (max-width: 1400px) {
  /* Video section */
  .home .overlay-text .sec-content .sub-title {
    font-size: 17px;
  }

  .home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.6rem;
  }

  .home .overlay-text .sec-content .lead {
    font-size: 18px;
  }

  /*.home .overlay-text .sec-content .btn.btn-blue {
    font-size: 17px;
    width: 170px;
    height: 55px;
    border-radius: 50px;
    margin-top: 8px;
  }*/
  /* Video section */
}

@media (max-width: 1300px) {
  /* Video section */
  /*.home .video-text-reverse-mobile .video-holder .overlay-text {
    padding-top: 2rem !important;
  }*/

  .home .overlay-text .sec-content .sub-title {
    font-size: 16px;
  }

  .home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.4rem;
  }

  .home .overlay-text .sec-content .lead {
    font-size: 17px;
    /*line-height: 32px;*/
  }

  .home .overlay-text .sec-content .btn.btn-blue {
    font-size: 17px;
    width: 140px;
    height: 48px;
    border-radius: 50px;
    margin-top: 12px;
  }
  /* Video section */
}

@media (max-width: 1200px) {
  /* Video section */
  /*.home .video-text-reverse-mobile .video-holder .overlay-text {
    padding-top: 1rem !important;
  }*/

  .home .overlay-text .sec-content .sub-title {
    font-size: 15px;
  }

  .home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.1rem;
  }

  .home .overlay-text .sec-content .lead {
    font-size: 16px;
    line-height: 19px;
  }

  .home .overlay-text .sec-content .btn.btn-blue {
    font-size: 16px;
    width: 130px;
    height: 40px;
    border-radius: 50px;
    margin-top: 7px;
  }
  /* Video section */
}

@media (max-width: 1100px) {
  /* Video section */
  .home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 2.96rem;
  }
  /* Video section */
}

@media (max-width: 991px) {
  /* Video section */
  .home .video-text-reverse-mobile .video-holder {
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  .home .video-text-reverse-mobile .video-holder .overlay-text {
    padding-top: 3rem !important;
  }

  .home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content {
    max-width: 100%;
  }

  .home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.5rem;
  }

  .home #video-mobile {
    display: block;
    min-height: 10vh;
    background-color: #f0f0f0;
  }
  
  .home #video-desktop {
    display: none;
  }

  .home #video-mobile2 {
    display: block;
    min-height: 10vh;
    background-color: #f0f0f0;
  }
  
  .home #video-desktop2 {
    display: none;
  }
  /* Video section */

  .home .overlay-text .sec-content .sub-title {
    font-size: 20px;
  }

  .home .overlay-text .sec-content .lead {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
  }

  .home .overlay-text .sec-content .btn.btn-blue {
    font-size: 16px;
    font-weight: 500;
    height: 64px;
  }

  .home .news_wrapper.news_slider .scrolling-content p {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .home .overlay-text .sec-content .sub-title {
    font-size: 27px;
    line-height: 1;
  }

  .home .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 2.8rem; /*4.2rem;*/
  }

  .home .overlay-text .sec-content .lead {
    font-size: 28px;
  }

  .home .overlay-text .sec-content .btn.btn-blue {
    font-size: 26px;
    width: 280px;
    height: 110px;
    margin-top: 40px;
  }

  .home .news_wrapper.news_slider .scrolling-content p {
    font-size: 100px;
    margin-bottom: 40px;
  }
}
/* new HOME page */




/* SERVICE page */
/* Video section */
.service .video-text-reverse-mobile .video-holder {
  /* padding-top: 4rem !important; */
  padding-top: 0 !important;
  border-top: 4rem solid #d4f1f0;
}

.service .video-text-reverse-mobile .video-holder .overlay-text {
  padding-top: 1rem !important;
}

.service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content {
  max-width: 450px;
}

.service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
  font-size: 4.4rem;
  line-height: 1.3;
}
/* Video section */

.service .content-wrapper .sec-content .sub-title,
.service .box-wrapper .sec-content .sub-title {
  font-size: 20px;
  line-height: 20px;
}

.service .content-wrapper .sec-content .section-title {
  font-size: 45px;
  line-height: 62px;
  padding-bottom: 50px;
}

.service .content-wrapper .sec-content .lead,
.service .box-wrapper .card .sec-content .lead,
.service .box-wrapper .service_block .sec-content .lead {
  font-size: 20px;
  line-height: 38px;
  padding-bottom: 10px;
}

.service .content-wrapper .sec-content .entry_list,
.service .box-wrapper .card .sec-content .entry_list,
.service .box-wrapper .service_block .sec-content .entry_list {
  list-style-type: square;
}

.service .content-wrapper .sec-content .entry_list li,
.service .box-wrapper .card .sec-content .entry_list li,
.service .box-wrapper .service_block .sec-content .entry_list li {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}

.service .box-wrapper .card {
  margin-top: 3rem !important;
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.service .box-wrapper .card .sec-content .section-title {
  font-size: 70px;
  line-height: 90px;
  padding-bottom: 20px;
}

.service .box-wrapper .service_block {
  margin-bottom: 6rem;
}

.service .box-wrapper .service_block .sec-content .h3 {
  font-size: 52px;
  line-height: 60px;
}

.service .box-wrapper .service_block .sec-content .btn.btn-light {
  font-size: 20px;
  width: 230px;
  height: 90px;
  border-radius: 50px;
}

/* Video section */
@media (min-width: 992px) {
  .service #video-desktop {
    display: block;
    min-height: 10vh;
    background-color: #f0f0f0;
  }
  
  .service #video-mobile {
    display: none;
  }
}
/* Video section */

@media (max-width: 1700px) {
  /* Video section */
  .service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 4.3rem;
  }
  /* Video section */
}

@media (max-width: 1600px) {
  /* Video section */
  .service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 4.2rem;
  }
  /* Video section */
}

@media (max-width: 1500px) {
  /* Video section */
  .service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 4.1rem;
  }
  /* Video section */
}

@media (max-width: 1400px) {
  /* Video section */
  .service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.9rem;
    line-height: 1.2;
  }
  /* Video section */
}

@media (max-width: 1300px) {
  /* Video section */
  .service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.8rem;
  }
  /* Video section */
}

@media (max-width: 1200px) {
  /* Video section */
  .service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.7rem;
  }
  /* Video section */
}

@media (max-width: 1100px) {
  /* Video section */
  .service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.5rem;
    line-height: 1.1;
  }
  /* Video section */
}

@media (max-width: 991px) {
  /* Video section */
  .service .video-text-reverse-mobile .video-holder {
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  .service .video-text-reverse-mobile .video-holder .overlay-text {
    padding-top: 3rem !important;
  }

  .service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content {
    max-width: 100%;
  }

  .service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 3.5rem;
  }

  .service #video-mobile {
    display: block;
    min-height: 10vh;
    background-color: #f0f0f0;
  }
  
  .service #video-desktop {
    display: none;
  }
  /* Video section */

  .service .content-wrapper .sec-content .sub-title,
  .service .box-wrapper .sec-content .sub-title {
    font-size: 20px;
    line-height: 20px;
  }

  .service .content-wrapper .sec-content .section-title {
    font-size: 38px;
    line-height: 44px;
    padding-bottom: 0;
  }

  .service .content-wrapper .sec-content .lead,
  .service .box-wrapper .card .sec-content .lead,
  .service .box-wrapper .service_block .sec-content .lead {
    font-size: 21px;
    line-height: 34px;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .service .content-wrapper .sec-content .entry_list,
  .service .box-wrapper .card .sec-content .entry_list,
  .service .box-wrapper .service_block .sec-content .entry_list {
    margin-bottom: 2rem;
  }

  .service .content-wrapper .sec-content .entry_list li,
  .service .box-wrapper .card .sec-content .entry_list li,
  .service .box-wrapper .service_block .sec-content .entry_list li {
    font-size: 20px;
    margin-bottom: 0;
  }

  .service .box-wrapper .card {
    /*margin-top: 3rem !important;*/
    padding-top: 4.3rem !important;
    padding-bottom: 1.8rem !important;
  }

  .service .box-wrapper .card .sec-content .section-title {
    font-size: 40px;
    line-height: 50px;
    padding-bottom: 6px;
  }

  .service .box-wrapper .service_block {
    margin-bottom: 3rem;
  }

  .service .content-wrapper .sec-content .lead.compact,
  .service .box-wrapper .card .sec-content .lead.compact,
  .service .box-wrapper .service_block .sec-content .lead.compact {
    line-height: 25px;
    margin-bottom: 18px;
  }

  .service .content-wrapper .sec-content .entry_list.compact li,
  .service .box-wrapper .card .sec-content .entry_list.compact li,
  .service .box-wrapper .service_block .sec-content .entry_list.compact li {
    line-height: inherit;
  }

  .service .box-wrapper .service_block .sec-content .h3 {
    line-height: 50px;
    margin-bottom: 1rem !important;
  }

  .service .box-wrapper .service_block .sec-content .btn.btn-light {
    font-size: 19px;
    width: 180px;
    height: 66px;
  }
}

@media (max-width: 767px) {
  .service .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 2.8rem;
  }

  .service .content-wrapper {
    padding-bottom: 5.8rem !important;
  }

  .service .content-wrapper .sec-content .sub-title {
    line-height: 18px;
  }

  .service .content-wrapper .sec-content .section-title {
    padding-bottom: 6px;
  }

  .service .box-wrapper .service_block .sec-content .h3 {
    font-size: 40px;
  }

  .service .content-wrapper .sec-content .lead,
  .service .box-wrapper .card .sec-content .lead,
  .service .box-wrapper .service_block .sec-content .lead {
    font-size: 23px;
    line-height: 30px;
  }

  .service .content-wrapper .sec-content .entry_list li,
  .service .box-wrapper .card .sec-content .entry_list li,
  .service .box-wrapper .service_block .sec-content .entry_list li {
    font-size: 22px;
  }

  .service .box-wrapper.card-section {
    padding-top: 50px !important;
    padding-bottom: 80px !important;
  }

  .service .content-wrapper .sec-content .lead.compact,
  .service .box-wrapper .card .sec-content .lead.compact,
  .service .box-wrapper .service_block .sec-content .lead.compact {
    line-height: 30px;
    margin-bottom: 28px;
  }

  .service .content-wrapper .sec-content .entry_list.compact li,
  .service .box-wrapper .card .sec-content .entry_list.compact li,
  .service .box-wrapper .service_block .sec-content .entry_list.compact li {
    line-height: 32px;
  }

  .service .box-wrapper .service_block .sec-content .btn.btn-light {
    font-size: 36px;
    width: 300px;
    height: 120px;
    border-radius: 70px;
    margin-top: 5rem;
  }
}
/* SERVICE page */




/* CONTACT page */
  .contacts .application_content .page-title {
      font-size: 25vw;
      margin-left: -3.6vw;
      line-height: 1em;
      letter-spacing: 14px;
      overflow: hidden;
  }

  .contacts .application_content .sec-content .sub-title {
    font-size: 20px;
    line-height: 20px;
  }

  .contacts .application_content .sec-content .h3 {
    font-size: 4.4rem;
    font-weight: 400;
    line-height: 1.3;
  }

  .contacts .application_content .footer-info h5 {
    font-size: 29px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
  }

  .contacts .application_content .footer-info p,
  .contacts .application_content .footer-info a {
    font-size: 20px;
  }

  .contacts .application_content .mapbox iframe {
    border-radius: 40px;
    width: 100%;
    height: 800px;
  }

  .contacts .form_wrapper .form-control, 
  .contacts .form_wrapper .custom-file-upload,
  .contacts .form_wrapper button[type="submit"] {
    font-size: 30px;
    font-family: "Sora", sans-serif;
    min-height: 110px;
    border-radius: 50px;
  }

  @media (max-width: 1700px) {
    .contacts .application_content .page-title {
      letter-spacing: 12px;
    }
  }

  @media (max-width: 1600px) {
    .contacts .application_content .page-title {
      letter-spacing: 11px;
    }
  }

  @media (max-width: 1400px) {
    .contacts .application_content .page-title {
      letter-spacing: 9px;
    }
  }

  @media (max-width: 1200px) {
    .contacts .application_content .page-title {
      letter-spacing: 7px;
    }
  }

  @media (max-width: 991px) {
    .contacts .application_content .page-title {
      letter-spacing: 6px;
    }

    .contacts .application_content .sec-content .h3 {
      font-size: 3.5rem;
    }

    .contacts .application_content .footer-info h5 {
      font-size: 27px;
      font-weight: 700;
    }

    .contacts .application_content .footer-info p,
    .contacts .application_content .footer-info a {
      font-size: 23px;
    }

    .contacts .form_wrapper .button-container {
      justify-content: start !important;
    }

    .contacts .form_wrapper .button-container button[type="submit"] {
      width: 100%;
      max-width: 991px;
    }
  }

  @media (max-width: 767px) {
    .contacts .application_content .page-title {
      letter-spacing: 4px;
    }

    .contacts .application_content .sec-content .h3 {
      font-size: 2.8rem; 
    }

    .contacts .application_content .footer-info h5 {
      font-size: 21px; 
    }

    .contacts .application_content .footer-info p,
    .contacts .application_content .footer-info a {
      font-size: 18px; 
    }

    .contacts .form_wrapper .form-control, .contacts .form_wrapper .custom-file-upload, 
    .contacts .form_wrapper button[type="submit"] { 
      min-height: 86px; 
      font-size: 22px;
      font-weight: 400;
    }
  }

  @media (max-width: 575px) {
    .contacts .application_content .page-title {
      letter-spacing: 2px;
    }
  }
/* CONTACT page */








/* NEWS page */
  .news_listing .page-title {
    font-size: 41vw;
    margin-left: -5.4vw;
    line-height: 0.96em;
    letter-spacing: 16px;
    overflow: hidden;
  }

  .news_listing .entry_list .entry_single p {
    font-size: 20px;
    line-height: 35px;
  }

  .news_listing .entry_list .entry_single .entry_content .btn.btn-light {
    font-size: 20px;
  }

  @media (max-width: 1700px) {
     .news_listing .page-title {
      letter-spacing: 12px;
    }
  }

  @media (max-width: 1600px) {
     .news_listing .page-title {
      letter-spacing: 11px;
    }
  }

  @media (max-width: 1400px) {
     .news_listing .page-title {
      letter-spacing: 9px;
    }
  }

  @media (max-width: 1200px) {
     .news_listing .page-title {
      letter-spacing: 6px;
    }
  }

  @media (max-width: 991px) {
    .news_listing .page-title {
      letter-spacing: 3px;
    }

    .news_listing .entry_list .entry_single .title {
      font-size: 36px;
    }
  }

  @media (max-width: 767px) {
    .news_listing .page-title {
      letter-spacing: 3px;
    }

    .news_archive .entry_list {
      grid-template-columns: 100%;
      margin-top: 50px;
    }
  }

  @media (max-width: 575px) {
    .news_listing .page-title {
      letter-spacing: 1px;
    }
  }
/* NEWS page */


/* ARTICLE page */
  .article_detail .single_post .entry_header .entry_thumbnail img {
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
  }

  .article_detail .single_post .entry_header .entry_thumbnail .date {
    bottom: 22px;
    left: 24px;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    background-color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: "Sora", sans-serif;
  }

  .article_detail .single_post .entry_content .date {
    font-size: 14px;
    font-weight: 500;
    background-color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: "Sora", sans-serif;
  }

  .article_detail .single_post .entry_content p {
    font-size: 20px;
    line-height: 35px;
  }

  .article_detail .single_post .social_wrapper {
    margin: 0 10px 10px;
  }

  .article_detail .single_post .social_wrapper .author {
    text-transform: none;
  }

  .article_detail .sidebar_wrapper .entry_widget .related_post .entry_single .title {
    font-size: 20px;
    line-height: 32px;
    font-weight: 300;
  }

  .article_detail .sidebar_wrapper .tag_list li a {
    font-size: 20px;
    font-weight: 400;
  }

  @media (min-width: 992px) {
    .article_detail {
      padding-bottom: 6rem !important;
    }

    .article_detail .sidebar_wrapper .entry_widget.recent_article {
      margin-bottom: 60px;
    }
  }

  @media (max-width: 991px) {
    .article_detail .single_post {
      margin-bottom: 30px;
    }

    .article_detail .single_post .entry_content p {
      font-size: 21px;
    }

    .article_detail .single_post .social_wrapper .entry_list li .fa-brands, 
    .article_detail .single_post .social_wrapper .entry_list li .fab {
      font-size: 17px;
    }

    .article_detail .sidebar_wrapper .entry_widget .widget_title {
      font-size: 37px;
    }

    .article_detail .sidebar_wrapper .entry_widget .related_post .entry_single .title {
      font-size: 21px;
      font-weight: 400;
      line-height: 25px;
    }

    .article_detail .sidebar_wrapper .tag_list li a {
      font-size: 17px;
      font-weight: 500;
    }

  }

  @media (max-width: 767px) {
    .article_detail .single_post .entry_header .entry_thumbnail .date {
      padding: 19px 36px;
    }

    .article_detail .single_post .entry_header .entry_thumbnail .date {
      font-size: 16px;
    }

    .article_detail .single_post .entry_content p {
      font-size: 23px;
    }

    .article_detail .single_post .social_wrapper .author {
      font-size: 26px;
      font-weight: 600;
    }

    .article_detail .single_post .social_wrapper .entry_list li .fa-brands, 
    .article_detail .single_post .social_wrapper .entry_list li .fab {
      font-size: 23px;
    }

    .article_detail .sidebar_wrapper .entry_widget.recent_article {
      margin-bottom: 60px;
    }

    .article_detail .sidebar_wrapper .entry_widget .related_post .entry_single a {
      max-width: none;
    }

    .article_detail .sidebar_wrapper .entry_widget .widget_title {
      font-size: 43px;
      margin-bottom: 34px;
    }
    /*
    .article_detail .sidebar_wrapper .entry_widget .related_post .entry_single img {
      width: 180px;
      height: 160px;
    }*/

    .article_detail .sidebar_wrapper .entry_widget .related_post .entry_single .title {
      font-size: 25px;
      line-height: 30px;
    }

    .sidebar_wrapper .tag_list li a {
      padding: 22px 40px;
      border-radius: 30px;
    }

    .article_detail .sidebar_wrapper .tag_list li a {
      font-size: 20px;
    }
  }

  @media (max-width: 667px) {
    .article_detail .single_post .entry_content .title,
    .article_detail .sidebar_wrapper .entry_widget .widget_title {
      font-size: 32px;
    }
  }

  @media (max-width: 575px) {
    .article_detail .single_post .social_wrapper {
      display: block !important;
      border-radius: 50px;
    }

    .article_detail .single_post .social_wrapper .author {
      padding-bottom: 14px;
    }

    .single_post .social_wrapper .entry_list li {
      padding-left: 20px;
    }

    .single_post .social_wrapper .entry_list li:first-of-type {
      padding-left: 0;
    }
  }
/* ARTICLE page */




/* JOB LISTING page */
  /* Video section */
  .job_listing .video-text-reverse-mobile .video-holder {
    /* padding-top: 4rem !important; */
    padding-top: 0 !important;
    border-top: 4rem solid #d4f1f0;
  }

  .job_listing .video-text-reverse-mobile .video-holder .overlay-text {
    padding-top: 1rem !important;
  }

  .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content {
    max-width: 450px;
  }

  .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
    font-size: 4.4rem;
    line-height: 1.3;
  }
  /* Video section */

  .job_listing .content-wrapper .sec-content .sub-title,
  .job_listing .news_archive .sec-content .sub-title {
    font-size: 20px;
    line-height: 20px;
  }

  .job_listing .content-wrapper .sec-content .section-title {
    font-size: 45px;
    line-height: 62px;
  }

  .job_listing .team_wrapper .entry_header .title {
    font-size: 52px;
    font-weight: 300;
  }

  .job_listing .news_archive .entry_list .entry_single .title {
    font-size: 52px;
    font-weight: 600;
    padding-bottom: 34px;
    line-height: 60px;
  }

  .job_listing .news_archive .entry_list .entry_single p {
    font-size: 24px;
    font-weight: 200;
    line-height: 42px;
  }

  .job_listing .news_archive .entry_list .entry_single .btn {
    font-size: 20px;
    width: 230px;
    height: 100px;
    border-radius: 50px;
  }

  /* Video section */
  @media (min-width: 992px) {
    .job_listing #video-desktop {
      display: block;
      min-height: 10vh;
      background-color: #f0f0f0;
    }
    
    .job_listing #video-mobile {
      display: none;
    }
  }
  /* Video section */

  @media (max-width: 1700px) {
    /* Video section */
    .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
      font-size: 4.3rem;
    }
    /* Video section */
  }

  @media (max-width: 1600px) {
    /* Video section */
    .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
      font-size: 4.2rem;
    }
    /* Video section */
  }

  @media (max-width: 1500px) {
    /* Video section */
    .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
      font-size: 4.1rem;
    }
    /* Video section */
  }

  @media (max-width: 1400px) {
    /* Video section */
    .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
      font-size: 3.9rem;
      line-height: 1.2;
    }
    /* Video section */
  }

  @media (max-width: 1300px) {
    /* Video section */
    .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
      font-size: 3.8rem;
    }
    /* Video section */
  }

  @media (max-width: 1200px) {
    /* Video section */
    .job_listing .video-text-reverse-mobile {
      margin-bottom: -1px;
    }
    
    .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
      font-size: 3.7rem;
    }
    /* Video section */
  }

  @media (max-width: 1100px) {
    /* Video section */
    .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
      font-size: 3.5rem;
      line-height: 1.1;
    }
    /* Video section */
  }

  @media (max-width: 991px) {
    /* Video section */
    .job_listing .video-text-reverse-mobile .video-holder {
      padding-top: 0 !important;
      border-top: 0 !important;
    }

    .job_listing .video-text-reverse-mobile .video-holder .overlay-text {
      padding-top: 3rem !important;
    }

    .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content {
      max-width: 100%;
    }

    .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
      font-size: 3.5rem;
    }

    .job_listing #video-mobile {
      display: block;
      min-height: 10vh;
      background-color: #f0f0f0;
    }
    
    .job_listing #video-desktop {
      display: none;
    }
    /* Video section */

    .job_listing .team_wrapper .sec-content .sub-title {
        color: #49ccd0;
    }

    .job_listing .news_archive .entry_list {
        grid-template-columns: 100%;
        margin-top: 50px;
    }

    .job_listing .content-wrapper .sec-content .section-title {
      font-size: 38px;
      font-weight: 300;
      line-height: 48px;
    }

    .job_listing .content-wrapper .sec-content .section-title b.b-fixed {
      font-weight: 600 !important;
    }

    .job_listing .team_wrapper .entry_header .title {
      font-size: 39px;
    }

    .news_archive .entry_list .entry_single {
      margin-bottom: 80px;
    }

    .news_archive .entry_list .entry_single:last-of-type {
      margin-bottom: inherit;
    }

    .job_listing .news_archive .entry_list .entry_single .title {
      font-size: 48px;
    }

    .job_listing .news_archive .entry_list .entry_single p {
      font-size: 26px;
      line-height: 46px;
    }
  }

  @media (max-width: 767px) {
    .job_listing .video-text-reverse-mobile .video-holder .overlay-text .flex-column-wrapper.sec-content .section-title {
      font-size: 2.8rem;
    }

    .job_listing .content-wrapper .sec-content .sub-title,
    .job_listing .news_archive .sec-content .sub-title {
        font-size: 21px;
    }

    .job_listing .content-wrapper .sec-content .section-title {
      font-size: 40px;
      line-height: 42px;
    }

    .job_listing .news_archive .entry_list .entry_single .title {
      font-size: 37px;
      line-height: 44px;
    }

    .job_listing .news_archive .entry_list .entry_single p {
      font-size: 20px;
      line-height: 34px;
    }

    .job_listing .news_archive .entry_list .entry_single .btn {
      font-size: 22px;
      width: 200px;
      height: 86px;
    }
  }

  @media (max-width: 575px) {
    .job_listing .news_archive .entry_list .entry_single .title {
      font-size: 33px;
    }
  }
/* JOB LISTING page */




/* JOB APPLICATION page */
.job_application .application_content .page-title {
  font-size: 15.7vw;
  margin-left: -1.8vw;
  letter-spacing: 4.6px;
  line-height: 1.1em;
  overflow: hidden;
}

.job_application .application_content .entry_header.sec-content .sub-title {
  font-size: 20px;
  line-height: 20px;
}

.job_application .application_content .entry_header.sec-content .title {
  font-size: 52px;
  line-height: 60px;
}

.job_application .entry_single .entry_content {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 300;
  width: unset; /* 50% */
}

.job_application .application_content .entry_single .entry_content .title {
  font-size: 3.3rem;
  font-weight: 600;
}

.job_application .form_wrapper .form-control, 
.job_application .form_wrapper .custom-file-upload,
.job_application .form_wrapper button[type="submit"] {
  font-size: 30px;
  font-family: "Sora", sans-serif;
  min-height: 110px;
  border-radius: 50px;
}

.job_application .form_wrapper .custom-file-upload {
  padding-top: 35px;
}

.job_application .form_wrapper .custom-file-upload i {
  font-size: 60px;
}

@media (max-width: 1700px) {
  .job_application .application_content .page-title {
    letter-spacing: 4.1px;
  }
}

@media (max-width: 1600px) {
  .job_application .application_content .page-title {
    letter-spacing: 3.8px;
  }
}

@media (max-width: 1400px) {
  .job_application .application_content .page-title {
    letter-spacing: 3.1px;
  }
}

@media (max-width: 1200px) {
  .job_application .application_content .page-title {
    letter-spacing: 2.5px;
  }
}

@media (max-width: 991px) {
  .job_application .application_content .page-title {
    letter-spacing: 1.9px; 
  }

  .job_application .application_content .entry_header.sec-content .sub-title {
    color: #49ccd0; 
  }

  .job_application .application_content .entry_header.sec-content .title {
    font-size: 39px; 
  }

  .job_application .form_wrapper .button-container {
    justify-content: start !important; 
  }

  .job_application .form_wrapper .button-container button[type="submit"] { 
    width: 100%;
    max-width: 991px;
  }
}

@media (max-width: 767px) {
  .job_application .application_content .page-title {
    letter-spacing: 1.3px;
    line-height: 0.9em; 
  }

  .job_application .application_content .entry_header.sec-content .sub-title {
    font-size: 23px;
  }

  .job_application .application_content .entry_header.sec-content .title {
    font-size: 42px;
    line-height: 1.1em;
  }

  .job_application .application_content .entry_single .entry_content .title {
    font-size: 43px;
  }

  .job_application .entry_single .entry_content {
    font-size: 24px;
  }

  .job_application .form_wrapper .form-control, 
  .job_application .form_wrapper .custom-file-upload, 
  .job_application .form_wrapper button[type="submit"] {
    min-height: 90px;
    font-size: 24px;
  }

  .job_application .form_wrapper .custom-file-upload {
    padding-top: 30px;
  }

  .job_application .form_wrapper .custom-file-upload i {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .job_application .application_content .page-title {
    letter-spacing: 0.7px;
  }
}
/* JOB APPLICATION page */





/* NEWS SLIDER (shared) */
@media (max-width: 991px) {
  .news_wrapper.news_slider {
    padding-top: 4em !important;
  }

  .news_wrapper.news_slider .slick-section .slick-prev:before, 
  .news_wrapper.news_slider .slick-section .slick-next:before {
    font-size: 70px;
    font-weight: 600;
  }

  .news_wrapper.news_slider .slick-section .slick-prev, 
  .news_wrapper.news_slider .slick-section .slick-next {
    top: -40px;
    height: 52px;
    width: 52px;
  }

  .news_wrapper.news_slider .slick-section .slick-prev {
    left: 0;
  }

  .news_wrapper.news_slider .slick-section .slick-next {
    left: 40px !important;
  }

  .news_wrapper.news_slider .slick-section .slide-content p {
    font-size: 27px;
  }

  .news_wrapper.news_slider .slick-section .slide-content .btn {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .news_wrapper.news_slider {
    padding-top: 4em !important;
  }

  .news_wrapper.news_slider .slick-section .slick-prev:before, 
  .news_wrapper.news_slider .slick-section .slick-next:before {
    font-size: 100px;
    font-weight: 900;
  }

  .news_wrapper.news_slider .slick-section .slick-prev, 
  .news_wrapper.news_slider .slick-section .slick-next {
    top: -50px;
    height: 72px;
    width: 51px;
  }

  .news_wrapper.news_slider .slick-section .slick-next {
    left: 56px !important;
  }

  .news_wrapper.news_slider .slick-section .slide-content p {
    font-size: 40px; /* grafiche 44px */
  }

  .news_wrapper.news_slider .slick-section .slide-content .btn { 
    width: 244px; /* grafiche 270px */
    height: 102px;
    border-radius: 50px;
    font-size: 26px; 
  }
}
/* NEWS SLIDER (shared) */





/* HEADER (shared) */
.search-overlay .search-box .close-btn {
  right: -4px;
  top: -40px;
  font-size: 50px;
}

.search-overlay .search-box input {
  padding: 10px 12px 8px 0;
}

.navbar .navbar-brand img {
  width: 444px;
  height: auto;
}

.navbar .navbar-nav .nav-item .main_menu,
.navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item,
.navbar .navbar-nav .contattaci_btn .btn.btn-light {
  font-size: 1.32rem;
  font-family: "Sora";
  font-weight: 500;
}

.navbar .navbar-nav .contattaci_btn .btn.btn-light {
  width: 140px;
}


@media (max-width: 1399px) {
  .navbar .navbar-brand img {
    width: 340px;
  }

  .navbar .navbar-nav .nav-item .main_menu,
  .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item,
  .navbar .navbar-nav .contattaci_btn .btn.btn-light {
    font-size: 1.1rem;
  }

  .navbar .navbar-nav .contattaci_btn .btn.btn-light {
    width: 134px;
  }
}

@media (max-width: 1199px) {
  .navbar .navbar-brand img {
    width: 250px;
  }

  .navbar .navbar-nav .nav-item .main_menu,
  .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item,
  .navbar .navbar-nav .contattaci_btn .btn.btn-light {
    font-size: 0.88rem;
  }

  .navbar .navbar-nav .contattaci_btn .btn.btn-light {
    width: 110px;
  }
}

@media (max-width: 991px) {
  .navbar .navbar-brand img {
    width: 320px;
  }

  .navbar .navbar-toggler {
    padding: 14px 16px;
  }

  .navbar .navbar-nav .nav-item .main_menu,
  .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item,
  .navbar .navbar-nav .contattaci_btn .btn.btn-light {
    font-size: 1.6rem;
  }

  .navbar .navbar-nav .contattaci_btn .btn.btn-light,
  .navbar .navbar-nav .contattaci_btn .btn.btn-light:hover {
    border: none;
  }

  .navbar .navbar-nav .nav-item .dropdown-menu.language-dropdown .dropdown-item {
    font-size: 1.2rem;
    font-weight: 400;
  }

  .navbar .navbar-nav .nav-item:first-child {
    margin-top: 25px;
  }

  .navbar .navbar-nav .nav-item .search-container {
    position: static;
    width: 60px;
    height: 48px;
    border-radius: 24px;
    margin-top: 20px;
  }

  button#openSearch {
    margin-left: 11px;
    margin-top: 8px;
  }

  /* permit menu scrolling */
  .navbar .navbar-collapse {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    max-height: 100vh !important;
  }
}

@media (max-width: 767px) {
  .navbar .navbar-brand img {
    width: 320px;
  }
}

@media (max-width: 575px) {
  .navbar .navbar-brand img {
    width: 220px;
  }

  .navbar .navbar-collapse {
    padding: 100px 32px 50px;
  }

  .navbar .navbar-toggler {
    padding: 10px 12px;
    border-radius: 20px;
  }

  .navbar .navbar-nav .nav-item .main_menu,
  .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item,
  .navbar .navbar-nav .contattaci_btn .btn.btn-light {
    font-size: 1.2rem;
  }

  .navbar .navbar-nav .nav-item:first-child {
    margin-top: 15px;
  }
}
/* HEADER (shared) */





/* FOOTER (shared) */
.site-footer .footer-top .breadcrumb {
  font-size: 18px;
}

.site-footer .footer-top h2 {
  font-size: 68px;
}

.site-footer .footer-info h5 {
  font-size: 29px;
  font-weight: 300;
  color: #09b2b7;
}

.site-footer .footer-info p,
.site-footer .footer-info a {
  font-size: 20px;
  color: #09b2b7;
}

.site-footer .footer-bottom .footer-logo {
  margin-left: 0;
  margin-bottom: 30px;
}

.site-footer .footer-bottom .footer-logo img {
  height: 70px;
}

.site-footer .footer-bottom .footer-legal {
  font-size: 16px;
  color: #09b2b7;
}

.site-footer .footer-bottom .footer-legal a {
  color: #09b2b7;
}

@media (max-width: 991px) {
  .site-footer .footer-top .breadcrumb {
  font-size: 23px;
  }

  .site-footer .footer-top h2 {
    font-size: 3.5rem;
    line-height: 1.2em;
  }

  .site-footer .footer-info h5 {
    font-size: 24px;
  }

  .site-footer .footer-info p,
  .site-footer .footer-info a {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .site-footer .footer-top .breadcrumb {
  font-size: 22px; 
  }

  .site-footer .footer-top h2 { 
    font-size: 2.8rem; 
    line-height: 1.2em;
  }

  .site-footer .footer-info h5 {
    font-size: 23px;
  }

  .site-footer .footer-info p,
  .site-footer .footer-info a {
    font-size: 21px;
  }

  .site-footer .footer-bottom .footer-logo img {
    height: 50px;
  }

  .site-footer .footer-bottom .footer-legal {
    font-size: 13px;
  }
}
/* FOOTER (shared) */




/* FOOTER test for mobile device: no corrispondence */
/*
@media (max-width: 767px) {
  .footer-top .breadcrumb {
    font-size: 22px;
  }

  .site-footer .footer-top h2 {
    font-size: 70px;
    line-height: 1em;
  }

  .footer-info h5 {
    font-size: 23px;
  }

  .footer-info p, .footer-info a {
    font-size: 21px;
  }

  .application_wrapper.contact_wrapper .footer-info p, .footer-info a {
    font-size: 23px;
  }

  .fa-brands, .fab {
    font-size: 21px;
  }

  .footer-logo img {
    height: auto;
  }
}
*/
/* FOOTER test for mobile device */




/* CMS Version fix */
.navbar .navbar-nav .nav-item .main_menu, 
.navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item, 
.navbar .navbar-nav .contattaci_btn .btn.btn-light {
  font-size: 1.2rem;
}

.navbar .navbar-nav .contattaci_btn .btn.btn-light {
  color: #000000;
}

.navbar .navbar-nav .nav-item .main_menu:hover, 
.navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover, 
.navbar .navbar-nav .contattaci_btn .btn.btn-light:hover {
  color: #04babc;
}

@media (max-width: 1399px) {
  .navbar .navbar-nav .nav-item .main_menu, 
  .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item, 
  .navbar .navbar-nav .contattaci_btn .btn.btn-light {
    font-size: 1rem;
  }
}

@media (max-width: 1199px) {
  .navbar .navbar-nav .nav-item .main_menu, 
  .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item, 
  .navbar .navbar-nav .contattaci_btn .btn.btn-light {
    font-size: 0.81rem;
  }
}

@media (max-width: 991px) {
  .navbar .navbar-nav .contattaci_btn .btn.btn-light, 
  .navbar .navbar-nav .contattaci_btn .btn.btn-light:hover {
    border: none;
  }
  
  .navbar .navbar-nav .nav-item .main_menu, 
  .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item, 
  .navbar .navbar-nav .contattaci_btn .btn.btn-light {
    font-size: 1.6rem;
  }
}

.nav-link.main_menu.current-link,
.dropdown-item.current-link,
.btn.btn-light.current-link {
  color: #04babc !important;
}

.pagination li.page-item.active a {
  background-color: #49ccd0;
  color: #ffffff;
}

.pagination li.page-item.disabled span.page-link span {
  color: #808080;
}

.form_wrapper .file_upload {
  align-items: normal;
}

.form_wrapper .custom-file-upload {
  margin-bottom: 0;
}

.sanity {
  display: none;
}

.invalid-feedback {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  margin: 1rem 0 2.5rem;
}

.file-name,
.file_upload .invalid-feedback,
.form-message.alert {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.file_upload .invalid-feedback {
  margin: 0 0 2.5rem;
}

.file-name {
  margin-bottom: 17px;
}

.site-footer .footer-bottom .footer-legal {
  font-size: 15px;
}

.news_wrapper.news_slider .scrolling-content p {
  font-size: 90px;
}

@media (min-width: 992px) {
  .taxonomy_page .sec-content .sub-title,
  .search_results_page .sec-content .sub-title {
    font-size: 20px;
    line-height: 20px;
  }

  .taxonomy_page .section-title,
  .search_results_page .section-title {
    font-size: 70px;
  }

  .taxonomy_page .entry_single .entry_content .text-muted {
    font-size: 20px;
  }

  .search_results_page .sec-content .lead {
    font-size: 24px;
    line-height: 42px;
  }
}


/* CHECKBOX STYLING per form contatti e lavora con noi */
.form_wrapper .form-check {
  display: flex;
  flex-direction: column; /* Permette al contenuto di andare in colonna */
  margin-bottom: 1.5rem !important;
}

.form_wrapper .form-check .checkbox-wrapper {
  display: flex;
  align-items: center; /* Centra verticalmente checkbox e testo */
  gap: 15px;
}

.form_wrapper .form-check .invalid-feedback {
  margin-top: 0.5rem;
  margin-left: -25px; /* Compensa il padding del container per allinearlo agli altri errori */
  align-self: flex-start; /* Allinea a sinistra completamente */
  width: calc(100% + 25px); /* Estende la larghezza per compensare il margin negativo */
}

.form_wrapper .form-check-input {
  width: 24px;
  height: 24px;
  margin-top: 0; /* Rimuovi margin-top per centratura perfetta */
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: white;
  flex-shrink: 0; /* Impedisce al checkbox di rimpicciolirsi */
}

.form_wrapper .form-check-input:checked {
  background-color: #00faf9;
  border-color: #00faf9;
}

.form_wrapper .form-check-input:focus {
  border-color: #00faf9;
  box-shadow: 0 0 0 0.2rem rgba(0, 250, 249, 0.25);
}

/* Stili per le label dei checkbox */
.form_wrapper .form-check-label {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  cursor: pointer;
  margin-left: 0;
}

.form_wrapper .form-check-label a {
  color: #04babc;
  text-decoration: underline;
}

.form_wrapper .form-check-label a:hover {
  color: #00faf9;
}

@media (max-width: 991px) {
  .form_wrapper .form-check {
    gap: 12px;
  }
  
  .form_wrapper .form-check-input {
    width: 22px;
    height: 22px;
  }
  
  .form_wrapper .form-check-label {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .form_wrapper .form-check {
    gap: 10px;
    margin-bottom: 1.2rem !important;
  }
  
  .form_wrapper .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0; /* Mantieni centratura anche su mobile */
  }
  
  .form_wrapper .form-check-label {
    font-size: 16px;
    line-height: 1.3;
  }
}

/* Stili specifici per pagine contatti e job application */
.contacts .form_wrapper .form-check-input,
.job_application .form_wrapper .form-check-input {
  width: 26px;
  height: 26px;
}

.contacts .form_wrapper .form-check-label,
.job_application .form_wrapper .form-check-label {
  font-size: 20px;
}

@media (max-width: 767px) {
  .contacts .form_wrapper .form-check-input,
  .job_application .form_wrapper .form-check-input {
    width: 22px;
    height: 22px;
  }
  
  .contacts .form_wrapper .form-check-label,
  .job_application .form_wrapper .form-check-label {
    font-size: 18px;
  }
}
/* END CHECKBOX STYLING per form contatti e lavora con noi */
/* CMS Version fix */