/* --------------------------------
   FONTES
----------------------------------*/
@font-face {
  font-family: 'GT-Walsheim';
  src: url('../fonts/gt-walsheim-pro/GTWalsheimProRegular.woff') format('woff');
  font-weight: 100; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: 'GT-Walsheim';
  src: url('../fonts//gt-walsheim-pro/GTWalsheimProBlack.woff') format('woff');
  font-weight: 800; /* Bold */
}
@font-face {
  font-family: 'GT-Walsheim';
  src: url('../fonts//gt-walsheim-pro/GTWalsheimProUltraBold.woff') format('woff');
  font-weight: 900; /* Bold */
}
@font-face {
  font-family: 'GT-Walsheim';
  src: url('../fonts/gt-walsheim/GTWalsheim-Regular.woff') format('woff');
  font-weight: 400; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: 'GT-Walsheim';
  src: url('../fonts/gt-walsheim/GTWalsheim-Regular-Oblique.woff') format('woff');
  font-weight: 400; /* Regular */
  font-style: italic;
}
@font-face {
  font-family: 'GT-Walsheim';
  src: url('../fonts/gt-walsheim/GTWalsheim-Bold.woff') format('woff');
  font-weight: 700; /* Bold */
  font-style: normal;
}
@font-face {
  font-family: 'GT-Walsheim';
  src: url('../fonts/gt-walsheim/GTWalsheim-Bold-Oblique.woff') format('woff');
  font-weight: 700; /* Bold */
  font-style: italic;
}


@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-book-italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-medium-italic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-semibold-italic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-bold-italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-extrabold-italic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Copernicus';
  src: url('../fonts/copernicus/copernicus-heavy-italic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

/* --------------------------------
   RESET & BASE
----------------------------------*/
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: 'GT-Walsheim';
  color: white;
  zoom: unset !important;
}

h2 {
  margin: 0;
}

figure {
  margin: 0;
  padding: 0;
}

p {
  font-size: 22px;
  line-height: 150%;
  font-weight: 500;
}

.c-grid {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  gap: 40px;
}
a {
  color: #A79053;
  text-decoration: none;
  transition: text-shadow 0.3s ease; 
}
a:hover,
button:hover {
  cursor: pointer;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

section{
  background-size: cover;
}

.c-grid-col {
  max-width: 530px;
}

/**/
.first-section {
  height: 990px;
  background-image: url('./images/bg-sec-1-desktop.webp');
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 100px;
}
.first-section-content {
  padding-top: 230px;
  padding-bottom: 160px;
  justify-content: center;
}
.first-section-content-logo {
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 150px;
}
.first-section-logo {
  width:145px;
  height:160px;
}
.first-section-content-text {
  transform: rotate(-5deg);
}

.first-section-title {
  font-family: 'GT-Walsheim';
  font-weight: 700;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: 0%;
}
.first-section-title.golden, .first-section-title .golden {
  background-color: #A89157;
  border-radius: 20px;
  padding: 5px 15px;
  display: inline-block;
  margin-bottom: 10px;
}
.first-section-title.red, .first-section-title .red {
  background-color: #FC4D40;
  border-radius: 20px;
  padding: 5px 15px;
  display: inline-block;
  margin-bottom: 10px;
}
.first-section-text {
  font-family: 'Copernicus';
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: 0%;
  margin-bottom: 10px;
}

.second-section {
  background-color: #005EFF;
  background-image: url('./images/bg-sec-2-desktop.png');
  background-position: top;
  background-size: cover;
  position: relative;
  padding-top: 30px;
  padding-bottom: 110px;
}
.second-section-flags {
  width: 100%;
  height: 35px;
  background-image: url('./images/bandeiras.png');
  background-position:top center;
  background-repeat: repeat-x;
  margin-bottom: 90px;
}
.second-section-text, .second-section-text p, .second-section-text div {
  font-family: 'Copernicus';
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
}
.second-section-title {
  font-family: 'GT-Walsheim';
  font-weight: 700;
  font-size: 40px;
  line-height: 105%;
  letter-spacing: 0%;
}
.second-section-subtitle, .second-section-subtitle p, .second-section-subtitle div {
  font-family: 'Copernicus';
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-top: 15px;
}
.second-section-bottom {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.second-section-bottom-text {
  font-family: 'Copernicus';
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
}
.second-section-bottom-button {
  font-family: 'Copernicus';
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #F7F7F2;
  background: linear-gradient(180deg, #BFA563 0%, #665835 100%);
  border-radius: 10px;
  padding: 5px 15px;
  cursor: pointer;
  transition: all 0.25s;
}
.second-section-bottom-button:hover {
  opacity: 0.9;
}
.second-section-video {
  margin-top: 60px;
  margin-bottom: 50px;
}

.third-section {
  background-image: url('./images/bg-sec-3-desktop.webp');
  background-position: top;
  background-size: cover;
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
}
.third-section-title {
  font-family: 'GT-Walsheim';
  font-weight: 700;
  font-size: 48px;
  line-height: 140%;
  letter-spacing: 0%;
}
.third-section-subtitle {
  font-family: 'Copernicus';
  font-weight: 700;
  font-style: italic;
  font-size: 30px;
  line-height: 140%;
  letter-spacing: 0%;
  margin-top: 10px;
}
.third-section-text, .third-section-text p {
  font-family: 'Copernicus';
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-top: 30px;
}
.third-section-box-text, .third-section-box-text p {
  font-family: 'Copernicus';
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #181A1F;
}
.third-section-bottom, .third-section-bottom p {
  font-family: 'Copernicus';
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
}
.third-section-bottom div, .third-section-bottom p {
  margin-top: 20px;
}
.third-section-content-left {
  flex: 0.8;
}
.third-section-box {
  border-radius: 20px;
  padding: 30px 50px;
  background-color: #F7F7F2;
}

.fourth-section {
  background-image: url('./images/bg-sec-4-desktop.webp');
  background-position: top;
  background-size: cover;
  position: relative;
  padding-top: 0px;
  padding-bottom: 140px;
}
.fourth-section .c-grid {
  gap: 30px;
}
.fourth-section-content {
  margin-bottom: 30px;
  gap: 25px;
}
.fourth-section-title {
  font-family: 'GT-Walsheim';
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #FC4D40;
}
.fourth-section-text {
  font-family: 'GT-Walsheim';
  font-weight: 500;
  font-size: 25px;
  line-height: 130%;
  letter-spacing: 0%;
  margin-top: 20px;
  color: #181A1F;
}
.fourth-section-text-two, .fourth-section-text-two p {
  font-family: 'Copernicus';
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-top: 10px;
  color: #181A1F;
}
.fourth-section-text-two div, .fourth-section-text-two p {
  margin-bottom: 20px;
}
.fourth-section-text-two.first {
  margin-top: 50px;
}
.fourth-section-box-title {
  font-family: 'Copernicus';
  font-weight: 800;
  font-size: 26px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #F7F7F2;
}
.fourth-section-box-text, .fourth-section-box-text p {
  font-family: 'Copernicus';
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #F7F7F2;
  margin-top: 10px;
}
.fourth-section-box {
  border-radius: 20px;
  padding: 30px 50px;
  background-color: #FC4D40;
}
.fourth-section-content-left {
  padding-top: 80px;
}
.fourth-section-content-right {
  position: relative;
}
.fourth-section-content-right img {
  position: absolute;
  max-width: unset;
}


.fifth-section {
  background-color: #A89157;
  background-image: url('./images/bg-sec-5-desktop.png');
  background-position: top;
  background-size: cover;
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}
.fifth-section-title {
  font-family: 'GT-Walsheim';
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
}
.fifth-section-text, .fifth-section-text p {
  font-family: 'Copernicus';
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 30px;
}
.fifth-section-subtext, .fifth-section-subtext p {
  font-family: 'Copernicus';
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 15px;
}
.fifth-section-carousel {
  margin-top: 60px;
  max-width: 100%;
  padding: 50px;
  position: relative;
}
.swiper-slide {
  width: 100% !important;
  max-width: 100% !important;
}
.sixth-section {
  background-color: #FFFFFF;
  position: relative;
  padding-top: 20px;
  padding-bottom: 30px;
}
.sixth-section-flags, .seventh-section-flags {
  width: 100%;
  height: 35px;
  background-image: url('./images/bandeiras-2.png');
  background-position:top center;
  background-repeat: repeat-x;
  margin-bottom: 50px;
}
.sixth-section-content {
  max-width: 850px;
  margin: 0 auto;
}
.sixth-section-title {
  font-family: 'GT-Walsheim';
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #A89157;
}
.sixth-section-subtitle {
  font-family: 'Copernicus';
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #181A1F;
  margin-top: 10px;
}
.sixth-section-step-text {
  font-family: 'Copernicus';
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #181A1F;
}
.sixth-section-text-form {
  font-family: 'GT-Walsheim';
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #181A1F;
  margin-top: 30px;
}
.sixth-section-text-form-bottom {
  font-family: 'Copernicus';
  font-weight: 800;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #005EFF;
  margin-top: 30px;
}
.sixth-section-divider {
  height: 3px;
  width: 100%;
  background-color: #A89157;
  margin-top: 60px;
  margin-bottom: 40px;
}
.sixth-section-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 35px;
}
.sixth-section-step {
  
}
.sixth-section-step-indicator {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F7F7F2;
  font-family: 'Copernicus';
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0%;
  background-color: #005EFF;
  border-radius: 50%;
  float: left;
  margin-right: 30px;
}
  
.seventh-section {
  background-color: #FFFFFF;
  position: relative;
  padding-top: 20px;
  padding-bottom: 0px;
}
.seventh-section-title {
  font-family: 'GT-Walsheim';
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #A89157;
  margin-bottom: 30px;
}
.seventh-section-text {
  font-family: Copernicus;
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #181A1F;
}
.seventh-section-subtext {
  font-family: 'Copernicus';
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #181A1F;
  margin-bottom: 30px;
  margin-top: 15px;
}
.seventh-section-footer {
  width: 100%;
  height: 80px;
  background-image: url('./images/rodape-sec-7.png');
  background-position:bottom center;
  background-repeat: repeat-x;
}
.seventh-section-video {
  margin-bottom: 50px;
}

.eighth-section {
  background-color: #181A1F;
  background-image: url('./images/bg-sec-8-desktop.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.eighth-section-content {
  max-width: 820px;
  margin: 0 auto;
}
.eighth-section-title {
  font-family: 'GT-Walsheim';
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #A89157;
}
.eighth-section-text {
  font-family: 'Copernicus';
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-top: 70px;
  margin-bottom: 70px;
}
.eighth-section-flag-block-title {
  font-family: 'GT-Walsheim';
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #FFFFFF;
}
.eighth-section-flag-block-text {
  font-family: 'Copernicus';
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #FFFFFF;
}
.eighth-section-bottom-title {
  font-family: 'Copernicus';
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #A89157;
  margin-top: 145px;
}
.eighth-section-bottom-text {
  font-family: 'Copernicus';
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-top: 20px;
}
.eighth-section-flag-block {
  border-top: 5px solid;
  padding-top: 40px;
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
}
.eighth-section-flag-block.red {
  border-color: #FC4D40;
}
.eighth-section-flag-block.blue {
  border-color: #005EFF;
}
.eighth-section-flag {
  width: 105px;
  height: 105px;
}

.nineth-section {
  background: #665835;
  padding-bottom: 125px;
  padding-top: 80px;
}
.nineth-section-content {
  max-width: 820px;
  margin: 0 auto;
}
.nineth-section-title {
  font-family: 'GT-Walsheim';
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
}
.nineth-section-text {
  font-family: 'Copernicus';
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 70px;
}
.nineth-section-faq {
  counter-reset: faq-counter;
}
.nineth-section-footer {
  margin-top: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nineth-section-logo {
  width: 180px;
  height: 170px;
}

.faq-item {
  color: white;
  margin-bottom: 40px;
  border-bottom: 2px solid white;
  padding-bottom: 15px;
}
.faq-question {
  cursor: pointer;
  position: relative;
  font-family: 'Copernicus';
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0%;
}
.faq-question:before {
  counter-increment: faq-counter;
  content: counter(faq-counter) ".";
  position: absolute;
  left: -30px;
  top: 0px;
}
.faq-question:after {
  content: '';
  position: absolute;
  right: 0px;
  top: 10px;
  width: 0; 
  height: 0; 
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;      
  border-left: 20px solid white;
  transition: all 0.25s;

}
.faq-item.active-faq .faq-question:after {
  transform: rotate(90deg);
  top: 10px;
}
.faq-answer {
  margin-top: 20px;
  font-family: 'Copernicus';
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #FFFFFF;
}
.social {
  display: flex;
  gap: 15px;
}
.social li {
  background: #000000;
  padding: 10px;
  border-radius: 50%;
}
.social li svg {
  font-size: 20px;
  color: #FFFFFF;
}

/* FORM */

.contact-form-success {
  display: none;
  font-size: 18px;
  color: #000000;
  font-family: 'Copernicus';
  font-weight: 600;
  margin-top: 15px;
  margin-bottom:15px;
}
.contact-form-step {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
.contact-form-step .form-control {
  display: flex;
  flex-direction: column;
  width: 48%;
  margin-bottom: 20px;
}
.contact-form-step .form-control label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #000000;
}
.contact-form-step .form-control input {
  border-radius: 5px;
  border: 1px solid #AFAFAF;
  background: white;
  height: 56px;
}
.contact-form-step .button-submit {
  border-radius: 20px;
  background: #FC4D40;
  color: white;
  height: 70px;
  font-size: 26px;
  font-weight: bold;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* HTML: <div class="loader"></div> */
.loader {
  display: none;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#FFFFFF 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#FFFFFF);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}

.plyr.plyr--full-ui.plyr--video.plyr--html5 {
  border-radius: 5px;
}

@media screen and (max-width: 968px) {
  .c-grid {
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
    flex-direction: column;
    gap: 20px;
  }
  .c-grid-col {
    max-width: 100%;
  }
  
  .first-section {
    height: 700px;
    background-image: url('./images/bg-sec-1-mobile.webp');
    background-position: top;
    background-size: cover;
    padding-bottom: 30px;
  }
  .first-section-content {
    padding: 0px;
    flex-direction: column;
  }
  .first-section-content-logo {
    order: 1;
  }
  .first-section-content-text {
    order: 2;
  }
  .first-section-logo {
    width: 80px;
    height: 70px;
  }
  .first-section-title {
    font-size: 25px;
  }
  .first-section-text {
    font-size: 22px;
  }

  .second-section {
    padding-bottom: 70px;
  }
  .second-section-flags {
    margin-bottom: 45px;
  }
  .second-section-text, .second-section-text p, .second-section-text div {
    font-size: 16px;
  }
  .second-section-video {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .second-section-title {
    font-size: 24px;
  }
  .second-section-subtitle, .second-section-subtitle p, .second-section-subtitle div {
    font-size: 16px;
  }
  .second-section-bottom-text {
    font-size: 16px;
  }
  .second-section-bottom-button {
    font-size: 15px;
  }
  .second-section-bottom {
    flex-direction: column;
    margin-top: 30px;
  }

  .third-section {
    padding-top: 0px;
    padding-bottom: 60px;
    margin-top: -20px;
  }
  .third-section-content {
    flex-direction: column;
  }
  .third-section-content-left {
    order: 2;
  }
  .third-section-content-right {
    order: 1;
  }
  .third-section-title {
    font-size: 24px;
  }
  .third-section-subtitle {
    font-size: 22px;
  }
  .third-section-text, .third-section-text p {
    font-size: 16px;
  }
  .third-section-box-text, .third-section-box-text p {
    font-size: 15px;
  }
  .third-section-bottom, .third-section-bottom p{
    font-size: 15px;
  }
  .third-section-box {
    padding: 20px 25px;
  }

  .fourth-section {
    padding-top: 30px;
    background-image: url(./images/bg-sec-4-mobile.webp);
  }
  .fourth-section-content {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .fourth-section-content-right {
    order: 1;
  }
  .fourth-section-content-left {
    order: 2;
    padding-top: 0px;
  }
  .fourth-section-title {
    text-align: center;
    font-size: 24px;
  }
  .fourth-section-text {
    font-size: 16px;
  }
  .fourth-section-text-two, .fourth-section-text-two p {
    font-size: 16px;
  }
  .fourth-section-text-two, .fourth-section-text-two p {
    margin-bottom: 10px;
  }
  .fourth-section-box-title {
    font-size: 16px;
  }
  .fourth-section-box-text, .fourth-section-box-text p {
    font-size: 15px;
  }
  .fourth-section-box {
    padding: 20px 25px;
  }
  .fourth-section-text-two.first{
    margin-top: 0px;
  }
  .fourth-section-content-right img {
    max-width: 100%;
    position: relative;
  }

  .fifth-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .fifth-section-title {
    font-size: 24px;
  }
  .fifth-section-text, .fifth-section-text p {
    font-size: 16px;
  }
  .fifth-section-subtext, .fifth-section-subtext p {
    font-size: 16px;
  }
  .fifth-section-carousel {
    margin-top: 40px;
  }

  .sixth-section {
    
  }
  .sixth-section-title {
    font-size: 24px;
  }
  .sixth-section-subtitle {
    font-size: 16px;
  }
  .sixth-section-steps {
    gap: 20px;
  }
  .sixth-section-step {
    display: flex;
  }
  .sixth-section-step-indicator {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .sixth-section-step-text {
    font-size: 14px;
    flex: 1;
  }
  .sixth-section-text-form {
    font-size: 22px;
    margin-top: 15px;
  }
  .sixth-section-text-form-bottom {
    font-size: 16px;
  }

  .seventh-section {
    
  }
  .seventh-section-title {
    font-size: 24px;
  }
  .seventh-section-text {
    font-size: 16px;
  }
  .seventh-section-subtext {
    font-size: 16px;
  }
  .seventh-section-video {
    margin-bottom: 25px;
  }

  .eighth-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(./images/bg-sec-5-desktop.png);
    background-position: top;
    background-size: 350%;
    background-repeat: repeat-y;
  }
  .eighth-section-title {
    font-size: 24px;
  }
  .eighth-section-text {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .eighth-section-flag-block-title {
    font-size: 16px;
  }
  .eighth-section-flag-block-text {
    font-size: 16px;
    margin-top: 10px;
  }
  .eighth-section-flag {
    width: 60px;
    height: 60px;
  }
  .eighth-section-flag-block {
    flex-direction: column;
    padding-top: 20px;
  }
  .eighth-section-bottom-title{
    margin-top: 0px;
    font-size: 20px;
  }
  .eighth-section-bottom-text {
    font-size: 20px;
  }

  .nineth-section {
    padding-bottom: 100px;
    padding-top: 40px;
  }
  .nineth-section-title {
    font-size: 24px;
    text-align: center;
  }
  .nineth-section-text {
    font-size: 18px;
    text-align: center;
  }
  .nineth-section-faq {
    padding-left: 30px;
    padding-right: 0px;
  }
  .faq-question {
    font-size: 18px;
    padding-right: 15px;
  }
  .faq-answer {
    font-size: 16px;
  }
  .faq-question:after {
    right: -10px;
  }
  .nineth-section-footer {
    margin-top: 30px;
    flex-direction: column;
    gap: 40px;
  }
  .nineth-section-logo {
    width: 110px;
    height: 105px;
  }

  .contact-form-step {
    margin-top: 30px;
    flex-direction: column;
  }
  .contact-form-step .form-control {
    width: 100%;
  }
  .button-submit label {
    font-size: 22px;
  }
 
}