:root {
  --thm-font: "Teko", sans-serif;
  --thm-b-font: "Rubik", sans-serif;
  --thm-black: #1A1825;
  --thm-black-rgb: 26, 24, 37;
  --thm-base: #FF613C;
  --thm-base-rgb: 255, 97, 60;
  --thm-text: #757482;
}

body {
  font-family: var(--thm-b-font);
  overflow-x: hidden;
}

p {
  font-family: var(--thm-font);
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
}

header {
  background: var(--thm-base);
  position: relative;
  transition: all .3s ease;
  z-index: 999;
}

.sticky-header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  animation: slideDown 0.3s ease-in-out forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.sticky-header .topbar-nav {
  display: none;
}

.topbar-nav {
  position: relative;
  z-index: 2;
}

.topbar-nav::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 85%;
  height: 100%;
  max-width: 1632px;
  background-color: var(--thm-black);
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1632 52" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H1632V52H46.5963C39.2604 52 32.4071 48.3435 28.3223 42.25L0 0Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: left bottom;
  mask-size: cover;
  z-index: -1;
}

.topbar-nav-wrap {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-info .email::before {
  content: "\f0e0";
  font-family: 'fontAwesome';
  position: absolute;
  top: -2px;
  left: -4px;
  color: var(--thm-base);
  font-size: 14px;
}

.topbar-info .location::before {
  content: "\f3c5";
  font-family: 'fontAwesome';
  position: absolute;
  top: 0;
  left: 8px;
  color: var(--thm-base);
  font-size: 14px;
}

.topbar-info li {
  font-size: 14px;
}

.top-social-icon {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.top-social-icon i {
  font-size: 14px;
}

.main-header {
  padding: 20px 30px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  transition: all 200ms ease;
}

.main-header .logo-box {
  position: relative;
  margin-top: -53px;
  min-width: 16%;
}

.main-header .logo-box a {
  font-size: 50px;
  line-height: 50px;
  color: #fff;
}

.sticky-header .logo-box {
  margin-top: 0;
}

.main-header .nav-outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 50px;
}

.main-header .header-right {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.main-header::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 39.1%;
  height: 100%;
  max-width: 752px;
  background-color: #FDF5F3;
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 752 92" xmlns="http://www.w3.org/2000/svg"><path d="M66.2657 11.0036C71.9635 4.03908 80.4867 0 89.485 0H752V92H0L66.2657 11.0036Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: left top;
  mask-size: cover;
  z-index: -1;
}
.main-menu ul {
  display: flex;
  align-items: center;
  gap: 0 30px;
}

.main-menu ul li a {
  font-size: 18px;
  color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.header-right .calling-num {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.header-right .calling-num span:first-child {
  font-size: 14px;
  color: #777;
}

.header-right .calling-num span:last-child {
  font-size: 15px;
  font-weight: 600;
  color: #5b5b5b;
}

.header-right .calling-num i {
  height: 45px;
  width: 45px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--thm-base);
  transition: all .3s;
}

.header-right .calling-num:hover i {
  background-color: var(--thm-base);
  color: #fff;
}

.header-right .calling-num:hover span:last-child {
  color: var(--thm-base);
}

.orderBtn {
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--thm-base);
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.mobile-nav-toggle {
  font-size: 36px;
  color: var(--thm-base);
}

.overlay {
  width: 100vw;
  height: 100vh;
  background-color: var(--thm-black);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: -webkit-transform 0.7s ease;
        transition: -webkit-transform 0.7s ease;
        transition: transform 0.7s ease;
        transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

/* ======================
Banner
====================== */
.banner {
  position: relative;
  padding-top: 80px;
}

.banner .hero-section-img {
  background: url(../img/hero-bg.webp) no-repeat center center / cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.banner .hero-section-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.9;
}

.hero-title {
  font-family: var(--thm-font);
  color: #dfdfe0;
  font-size: 40px;
  font-weight: 700;
}

.features-grid {
  max-width: 800px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f9f9f924;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.features-list .icon {
  color: green;
  font-size: 1.2rem;
}

.features-list .text {
  color: #dfdfe0;
  font-size: 0.95rem;
  font-weight: 500;
}

.banner-img .bg-img {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.banner-shape {
  position: absolute;
  bottom: 13%;
  left: 30%;
  transform: rotate(5deg);
  animation: wave infinite 4s;
}

@keyframes wave {
  0% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(15deg);
  }
}

/* =============================
features
============================= */
.features {
  position: relative;
  z-index: 1;
  padding: 120px 0 90px;
}

.features::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 244px;
  content: "";
  background-color: #FDF5F3;
  z-index: -1;
}

.feature-item {
  position: relative;
  background-color: #FDF5F3;
  padding: 0 24px 24px;
  border-radius: 6px;
  margin: 0 0 30px;
}

.feature-item .feature-item_wrap {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 6px;
  text-align: center;
  padding: 29px 25px 30px;
  transition: 0.3s ease-in-out;
}

.feature-item .feature-item_wrap::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  content: "";
  background-color: var(--thm-base);
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
  border-radius: 6px;
  z-index: -1;
}

.feature-item .feature-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  position: absolute;
  left: -12px;
  top: 8px;
  z-index: 1;
  transition: 0.3s ease-in-out;
}

.feature-item .feature-icon::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--thm-base);
  border-radius: 4px;
  transform: rotate(45deg);
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.feature-icon::after {
  position: absolute;
  left: -3px;
  top: 6px;
  width: calc(100% + 18px);
  height: 100%;
  content: "";
  background-color: rgba(220, 220, 220, 0.26);
  border-radius: 4px;
  transform: rotate(-45deg);
  z-index: -2;
  transition: 0.3s ease-in-out;
}

.feature-item .feature-title {
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 11px;
  transition: 0.3s ease-in-out;
}

.feature-item .feature-text {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  margin: 0 0 19px;
}

.feature-item .devider {
  width: calc(100% - 38px);
  height: 1px;
  transition: 0.3s ease-in-out;
  background-color: var(--thm-base);
  display: block;
  margin: 0 auto 30px;
}

.feature-item .cta-btn {
  display: inline-block;
  position: relative;
  background-color: rgba(var(--thm-base-rgb), 0.1);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--thm-base);
  padding: 7px 15px;
  transition: 0.3s ease-in-out;
}

.feature-item .cta-btn i {
  height: 22px;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: 10px;
  position: relative;
  top: 4px;
  transform: rotate(-25deg);
  transition: 0.3s ease-in-out;
}

.feature-item:hover .feature-item_wrap::after {
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.feature-item:hover .feature-icon {
  color: #1A1825;
}

.feature-item:hover .feature-icon::before,
.feature-item:hover .devider,
.feature-item:hover .cta-btn {
  background-color: #fff;
}

.feature-item:hover .feature-title,
.feature-item:hover .feature-text {
  color: #fff;
}

.feature-item:hover .cta-btn i {
  background: var(--thm-base);
  transform: rotate(0deg);
  color: #fff;
}

/* ===========================
about us
============================== */
.aboutus-image-wrap {
  position: relative;
  padding-left: 37px;
  padding-bottom: 63px;
  max-width: 700px;
}

.aboutus-image-wrap .image-border {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 17px;
  height: 53%;
  border-radius: 4px;
  background-image: linear-gradient(180deg, rgb(255, 97, 60) 0%, rgba(255, 97, 60, 0) 100%);
}

.aboutus-image-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.aboutus-image-wrap .about-experience {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 30px;
  max-width: 352px;
  background-color: var(--thm-base);
  border-radius: 4px 0 4px 4px;
  font-size: 40px;
  line-height: 60px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 55px 40px 59px;
}

.aboutus-image-wrap .about-experience::after {
  position: absolute;
  right: -36px;
  top: 0;
  width: 36px;
  height: 41px;
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--thm-black);
}

.aboutus-image-wrap .about-img-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.title-wrap {
  padding-bottom: 21px;
}

.tagline {
  text-transform: capitalize;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-text);
  line-height: 1em;
  margin: 0px 0px 8px;
}

.tagline .tagline-bar {
  width: 19px;
  height: 13px;
  display: inline-block;
  position: relative;
  top: 1px;
  margin-right: 8px;
  background-color: var(--thm-base);
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 19 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 11.5723L3.84701 1.57255" stroke="currentColor" stroke-width="2" stroke-linecap="round"/><path d="M7.84668 11.5723L10.6937 1.57255" stroke="currentColor" stroke-width="2" stroke-linecap="round"/><path d="M14.6934 11.5723L17.5404 1.57255" stroke="currentColor" stroke-width="2" stroke-linecap="round"/></svg>') left bottom / cover no-repeat;
  mask-position: left bottom;
}

.sec-title {
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

.about-us .about-text {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  margin: 0 0 40px;
  padding: 0 0 29px;
  border-bottom: 1px solid var(--thm-base);
}

.about-info {
  position: relative;
  min-height: 136px;
  margin-left: 56px;
  background-color: #FDF5F3;
  border-radius: 6px;
  padding: 22px 40px 22px 92px;
  margin-bottom: 26px;
}

.about-info .about-info-image {
  width: 132px;
  height: 132px;
  border: 10px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: -66px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}

.about-info .about-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.info-title {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.info-text {
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.about-list {
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 4px;
  color: #333;
}

.about-list li i {
  font-size: 18px;
  color: var(--thm-base);
}

.services {
  position: relative;
  z-index: 1;
  padding: 120px 0 220px;
  counter-reset: count;
}

.services .service-image-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 434px;
  background: url('../img/service-bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.services .service-image-bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--thm-black-rgb), 0.9);
}

.service-slider-wrap {
  position: relative;
  background-color: #FDF5F3;
  border-radius: 6px;
  padding: 30px;
}

.service-item {
  position: relative;
  z-index: 1;
  padding: 31px 30px 0;
  background-color: #fff;
  counter-increment: count;
}

.service-item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  content: "";
  background-color: var(--thm-base);
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.service-item .service-title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 200px;
  margin: 0 0 29px;
}

.service-item .service-text {
  border-top: 1px solid var(--thm-base);
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  padding-top: 20px;
  margin: 0 0 21px;
  transition: all 300ms ease;
}

.service-item .service-item-num {
  position: absolute;
  right: 54px;
  top: 52px;
  line-height: 1;
  font-family: var(--thm-font);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--thm-text);
  font-size: 40px;
  transition: all 300ms ease;
}

.service-item .service-item-num::before {
  content: counters(count, ".", decimal-leading-zero);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-image img {
  width: 100%;
  height: auto;
  border-radius: 6px 6px 0 0;
}

.service-item .service-item-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  background-color: var(--thm-black);
  border-radius: 0 6px 0 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  transition: all 300ms ease;
}

.service-item:hover::before {
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.service-item:hover .service-title,
.service-item:hover .service-item-num,
.service-item:hover .service-item-icon {
  color: #fff;
}

.service-item:hover .service-text {
  border-color: #fff;
  color: #fff;
}

.service-item:hover .service-item-icon {
  background: var(--thm-base);
}

.services .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin: 0;
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
}

.services .owl-nav::before {
  position: absolute;
  left: 0;
  top: 20px;
  width: calc(50% - 85px);
  height: 1px;
  background-color: #fff;
  opacity: 0.2;
  content: "";
  z-index: -1;
}

.services .owl-nav::after {
  position: absolute;
  right: 0;
  top: 20px;
  width: calc(50% - 85px);
  height: 1px;
  background-color: #fff;
  opacity: 0.2;
  content: "";
  z-index: -1;
}

.services .owl-nav button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--thm-base) !important;
  border-radius: 4px;
  font-size: 14px;
  color: #fff !important;
  z-index: 1;
  transition: all 300ms ease;
}

.services .owl-nav button:hover {
  background-color: #fff !important;
  color: var(--thm-base) !important;
}

.services .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0;
  position: absolute;
  bottom: -86px;
  left: 0;
  right: 0;
  margin: auto;
}

.services .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff !important;
  border-radius: 50%;
  transition: all 400ms ease;
  position: relative;
  z-index: 1;
}

.services .owl-dot.active {
  background-color: var(--thm-base) !important;
}

.services .owl-dot::before {
  position: absolute;
  content: "";
  left: -10px;
  top: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  z-index: -1;
  background-color: rgba(104, 106, 111, 0.23);
  border-radius: 50%;
  transition: all 400ms ease;
  opacity: 0;
  transform: scale(0.3);
}

.services .owl-dot.active::before {
  transform: scale(1);
  opacity: 1;
}

.services .owl-nav button.disabled {
  background: #fb6948 !important;
  /* opacity: .5; */
  cursor: default;
  pointer-events: none;
}

/* ==========================
reviews
========================== */
.reviews {
  position: relative;
  padding: 60px 0;
}

.testimonial-main-slider-unique .testimonial-item {
  height: 350px !important;
  padding-top: 100px;
  position: relative;
  transition: all 0.5s ease;
}

.testimonial-info {
  background: #fff4f3;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.testimonial-main-slider-unique .testimonial-item .profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--thm-base);
  margin: -90px auto 20px;
  position: relative;
  z-index: 2;
  object-fit: cover;
  animation: pulseBorder 1s infinite;
}

.testimonial-main-slider-unique .testimonial-item h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

.testimonial-main-slider-unique .testimonial-item span {
  font-size: 14px;
  color: #666;
}

.testimonial-main-slider-unique .testimonial-item p {
  font-size: 18px;
  color: #111;
  font-weight: 600;
  margin-top: 20px;
}

.testimonial-thumbnail-slider-unique {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.testimonial-thumbnail-slider-unique .thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.testimonial-thumbnail-slider-unique .slick-current .thumb,
.testimonial-thumbnail-slider-unique .thumb.active {
  border-color: #ff5821;
  animation: pulseBorder 1s infinite;
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 88, 33, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(255, 88, 33, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 88, 33, 0);
  }
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-controls-unique {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-controls-unique button {
  padding: 8px 12px;
  background-color: #ff5821;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.slider-controls-unique button:hover {
  background-color: #e04e1b;
}

/* ==========================
why-choose
========================== */
.why-choose {
  position: relative;
  background-color: var(--thm-black);
}

.why-content {
  padding: 120px 0;
}

.why-choose-shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 73%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: overlay;
  opacity: 0.2;
}

.why-choose-shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 39.4%;
  height: 780px;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.why-choose-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  background-color: #312F3B;
  border-radius: 6px;
  overflow: hidden;
  padding: 25px 0;
  margin-top: 20px;
}

.why-choose-box::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 221px;
  content: "";
  z-index: -1;
  background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.why-choose-box::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 205px;
  content: "";
  background-color: var(--thm-base);
  z-index: -1;
}

.box-reverse.why-choose-box {
  flex-direction: row-reverse;
}

.box-reverse.why-choose-box::before,
.box-reverse.why-choose-box::after {
  left: auto;
  right: 0;
}

.why-choose-box .box-icon {
  position: relative;
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  width: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-box .box-icon::after {
  position: absolute;
  width: 1px;
  height: 100vh;
  top: -50%;
  right: 0;
  content: "";
  background-color: #fff;
  opacity: 0.2;
}

.why-choose-box .box-title {
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  padding: 0 21px;
}

.why-choose-box.box-reverse .box-title {
  width: 120px;
}

.why-choose-box .box-text {
  margin: 0;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  padding-left: 46px;
  color: #fff;
}

.why-choose-section-image {
  position: relative;
  z-index: 1;
  margin: -63px 0 -23px 60px;
  display: inline-block;
}

.why-choose-section-image .image-award {
  width: 552px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 62px;
  bottom: 46px;
  z-index: 1
}

.image-award-content {
  max-width: 276px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 92px 0 75px;
  margin: auto;
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--thm-font);
}

.image-award-icon {
  font-size: 60px;
  color: var(--thm-base);
  line-height: 60px;
}

/* ================cta================ */
.cta {
  z-index: 1;
  padding: 0 0 120px;
  margin-top: 200px;
}

.cta .cta-bg {
  position: absolute;
  left: 0;
  z-index: -1;
  top: 100px;
  width: 100%;
  height: 475px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta .cta-bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--thm-base-rgb), 0.9);
}

.cta .cta-wrap {
  position: relative;
  z-index: 2;
  border-radius: 6px;
  padding: 0 93px 80px;
  text-align: center;
}

.cta .cta-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 6px;
  width: 100%;
  height: calc(100% + 68px);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--thm-black);
  background-blend-mode: overlay;
  clip-path: polygon(100% 0, 100% 100%, 62% 100%, 51% 92%, 39% 100%, 0 100%, 0 0);
}

.cta .cta-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
  margin: 47px 0 51px;
}

.cta-descrition {
  position: relative;
  z-index: 3;
}

/* ==================faq=================== */
.faq {
  padding: 100px 0;
  padding-top: 50px;
}

.faq .faq-container .faq-item {
  background-color: #fff;
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid var(--thm-black);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  color: var(--thm-black);
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--thm-black);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--thm-base);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--thm-base);
}

.faq .faq-container .faq-active {
  border-color: var(--thm-base);
}

.faq .faq-container .faq-active h3 {
  color: var(--thm-base);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--thm-base);
}


/* ================fact================== */

.fact-item {
  position: relative;
  z-index: 2;
  background-color: #FDF5F3;
  border-radius: 6px;
  text-align: center;
  transition: all 400ms ease;
  padding: 22px 25px 49px;
  margin: 0 0 30px;
}

.fact-item::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  margin: auto;
  content: "";
  z-index: -1;
  background-color: #fff;
  border-radius: 2px;
  width: calc(100% - 50px);
  height: calc(100% - 70px);
  clip-path: polygon(0 19%, 100% 0, 100% 100%, 0 100%);
  transition: all 400ms ease;
}

.fact-icon {
  width: 80px;
  height: 80px;
  background-color: var(--thm-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  position: relative;
  margin: auto;
  transition: all 300ms ease;
}

.fact-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 17px 0 5px;
  font-size: 40px;
  font-weight: 700;
  transition: all 300ms ease;
}

.fact-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
  transition: all 300ms ease;
}

.fact-item:hover {
  background-color: var(--thm-black);
}

.fact-item:hover::after {
  background-color: var(--thm-base);
}

.fact-item:hover .fact-icon {
  background-color: #fff;
  color: var(--thm-black);
}

.fact-item:hover .fact-title,
.fact-item:hover .fact-text {
  color: #fff;
}

/* ===============footer================ */
footer {
  position: relative;
  background-color: var(--thm-black);
  padding: 120px 0 0;
  color: #9D9EA4;
}

footer a {
  color: #9D9EA4;
  transition: all .4s;
}

footer a:hover {
  text-decoration: underline;
  color: var(--thm-base);
}

.footer-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: overlay;
  opacity: 0.2;
}

footer .social-links {
  padding-top: 30px;
  border-top: 1px solid var(--thm-base);
}

footer .social-links a {
  position: relative;
  color: #9D9EA4;
  font-size: 16px;
  width: 36px;
  height: 36px;
  background: rgba(142, 143, 155, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 300ms ease;
  margin-right: 14px;
}

footer .social-links a:hover {
  color: #fff;
  background: var(--thm-base);
}

.copy-right {
  position: relative;
  text-align: center;
  background-color: #100F15;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #9D9EA4;
  padding: 23px 0;
  margin-top: 75px;
}