@font-face {
  font-family: 'Montserrat';
  src: url(../font/Montserrat-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: 'Montserrat';
  src: url(../font/Montserrat-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: 'Montserrat';
  src: url(../font/Montserrat-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: 'Montserrat';
  src: url(../font/Montserrat-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: 'Montserrat';
  src: url(../font/Montserrat-Black.ttf);
  font-weight: 900;
}

section .container {
  max-width: 83.333vw;
  padding: 0 2vw;
  margin: auto;
}

section * {
  font-family: "Montserrat", Sans-serif;
}

section .sub__title {
  font-size: clamp(12px, 1.25vw, 18px);
  line-height: 1.2;
  font-weight: 600;
  margin: 0px;
  color: #FF6100;
  margin-bottom: 8px;
}

section .title {
  font-size: clamp(24px, 2.778vw, 40px);
  line-height: 1.2;
  font-weight: 700;
  margin: 0px 0px 2.222vw;
  color: #101A3B;
}

section .description {
  font-size: clamp(12px, 1.25vw, 18px);
  line-height: 1.4;
  font-weight: 400;
  color: #101A3B;
}

section .sub__title.center,
section .title.center,
section .description.center {
  text-align: center;
}

section .button {
  font-size: clamp(14px, 1.389vw, 20px);
  line-height: 1.2;
  font-weight: 700;
  display: block;
  width: fit-content;
  border-radius: 1.389vw;
  padding: 0.833vw 1.667vw;
  margin-top: 20px;
  background-color: #101A3B;
  color: white;
  box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.2);
}

section .button.light {
  background-color: #FF6100;
}

section .button:hover {
  background-color: #FF6100;
}

section .button.light:hover {
  background-color: #101A3B;
}

section .button.center {
  margin: 36px auto 0px;
}

section .light {
  color: white;
}

section .slick-track {
  display: flex;
}

section .slick-gap .slick-track {
  gap: 20px;
}

section .slick-track::before,
section .slick-track::after {
  display: none;
}

section .slick-track .slick-slide {
  height: 100%;
  display: flex;
  float: none !important;
}

section .slick-dotted .slick-dots {
  position: unset;
  margin-top: 1.667vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

section .slick-dotted .slick-dots li {
  background-color: transparent;
  width: auto;
  height: auto;
  margin: 0px;
  border-radius: 99px;
  opacity: 1;
}

section .slick-dotted .slick-dots li button {
  content: '';
  opacity: 0.5;
  height: 12px;
  width: 12px;
  border-radius: 99px;
  background-color: #101A3B;
  box-shadow: 0 0 4px 0px rgba(255, 255, 255, 0.2);
}

section .light.slick-dotted .slick-dots li button {
  background-color: #ff6100;
}

section .slick-dotted .slick-dots li.slick-active button,
section .slick-dotted .slick-dots li button:hover {
  opacity: 1;
}

section .slick-dotted .slick-dots li.slick-active button {
  width: 36px;
}

section .slick-dotted .slick-dots li button:before {
  display: none;
}

section .slick-arrow {
  width: fit-content;
  height: fit-content;
  padding: 8px 12px;
  background-color: rgba(16, 27, 59, 0.7);
  box-shadow: 0 0 4px 0px rgba(255, 255, 255, 0.2);
  z-index: 1;
}

section .slick-arrow:hover,
section .slick-arrow:focus {
  background-color: rgba(16, 27, 59, 1);
}

section .slick-arrow:before {
  display: none;
}

section .slick-arrow svg path {
  stroke: white;
}

section .slick-arrow.slick-prev {
  left: 0px;
  border-radius: 0 32px 32px 0;
}

section .slick-arrow.slick-next {
  right: 0px;
  border-radius: 32px 0 0 32px;
}

#header.sticky {
  background-color: white;
  background-image: none;
  box-shadow: 0 0 4px 0 #101A3BCC;
}

#header.sticky .logo img {
  width: 72px;
}

#header.sticky .elementor-nav-menu--layout-horizontal .elementor-nav-menu a {
  color: #101A3B;
}

#header.sticky .elementor-nav-menu--layout-horizontal .elementor-nav-menu a svg {
  fill: #101A3B;
}

#header.sticky .elementor-nav-menu--layout-horizontal .elementor-nav-menu .menu-item.current_page_item a {
  color: #FF6100;
}

/* trustindex */
.trustindex-tabs {
  margin-top: 32px;
}

.trustindex-tabs .tab-buttons {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.trustindex-tabs .tab-buttons button {
  padding: 12px 24px;
  background-color: #D9D9D9;
  color: #101A3B;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  font-size: 1.111vw;
  line-height: 1.2;
  font-weight: 700;
}

.trustindex-tabs .tab-buttons button:hover,
.trustindex-tabs .tab-buttons button.active {
  background-color: #101A3B;
  color: white;
}

.trustindex-tabs .tab-content {
  display: none;
}

.trustindex-tabs .tab-content.active {
  display: block;
}

/*  1024px */
@media (max-width: 1024px) {
  section .container {
    max-width: 100vw;
    padding: 0 16px;
    margin: auto;
  }

  section .slick-dotted.slick-slider {
    margin-bottom: 0px;
  }

  section .button,
  section .button.center {
    border-radius: 32px;
    padding: 10px 16px;
    margin-top: 24px;
    font-size: 14px;
  }

  section .slick-dotted .slick-dots {
    margin-top: 16px;
  }

  .trustindex-tabs .tab-buttons button {
    font-size: 14px;
  }

  .trustindex-tabs .tab-buttons {
    margin-bottom: 12px;
    gap: 8px;
  }

  .trustindex-tabs .ti-footer {
    margin-bottom: 8px !important;
  }
  .trustindex-tabs .ti-reviews-container,
  .trustindex-tabs .ti-widget-container,
  .trustindex-tabs .ti-controls-line{
    margin-bottom: 0px !important;
  }

  .trustindex-tabs .tab-buttons button {
    padding: 8px 16px;
  }

  .trustindex-tabs .ti-review-content {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
}

/* 576px */
@media (max-width: 576px) {
  section .container {
    padding: 0 12px;
  }

  section .title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  section .button,
  section .button.center {
    margin-top: 20px;
    font-size: 12px;
  }

  section .slick-track {
    gap: 12px;
  }

  section .slick-dotted .slick-dots {
    gap: 8px;
  }

  section .slick-dotted .slick-dots li button {
    height: 8px;
    width: 8px;
  }

  section .slick-dotted .slick-dots li.slick-active button {
    width: 24px;
  }

  #header.sticky .logo img {
    width: 60px;
  }
}