/* Fonts */

/* ///////////
Outfit
////////// */

@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/Outfit-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

/* ///////////
Inter
////////// */

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.5s;
}

.loader_img {
  width: 200px;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.nav-open {
  overflow: hidden;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.5s;
}

.loader_img {
  width: 200px;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

img {
  display: flex;
  width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--black-color);
}

body {
  font-family: "Outfit";
  background: var(--body-color);
}

:root {
  --black-color: #000;
  --theme-red: #af9866;
  --theme-blue: #244065;
  --grawish-blue: #3a4c61;
  --text-gray: #414141;
  --body-color: #ffffff;
  --white: #fff;
  --heading-gray: #141414;
}

/* ///////////
Heading
////////// */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  text-transform: capitalize;
  font-style: normal;
}

h1 {
  color: var(--white);
  font-size: 72px;
  font-weight: 600;
  line-height: 82px;
  text-transform: capitalize;
}

h2 {
  color: var(--heading-gray);
  font-size: 44px;
  font-weight: 600;
  line-height: 54px;
  text-transform: capitalize;
}

p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background: #f5f0e8;
  padding: 12px 0;
}

.header_wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.logo {
  width: 210px;
  display: flex;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1420px;
  padding: 0 50px;
  width: 100%;
  margin: 0 auto;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: flex-end;
  flex: 1;
}

.nav_menu .menu_list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav_link {
  color: var(--theme-blue);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 28px 0;
  cursor: pointer;
}

.drop_down_menu {
  position: relative;
}

.drop_menu {
  position: absolute;
  left: -20px;
  width: 300px;
  top: 68px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  max-height: 0;
  overflow: hidden;
  /* transition: all ease 1s; */
}

.drop_menu li a {
  width: 100%;
  display: flex;
  padding: 13px 24px;
  font-size: 16px;
  color: #222222;
  font-weight: 400;
  transition: all ease 0.3s;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
}

.drop_menu li a.active {
  background: var(--theme-blue);
  color: var(--white);
}

.drop_menu li a:hover {
  background: var(--theme-blue);
  color: var(--white);
}

.drop_head {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.drop_arrow {
  width: 11px;
  transition: all ease 0.3s;
  filter: brightness(0) saturate(100%) invert(19%) sepia(42%) saturate(601%)
    hue-rotate(179deg) brightness(92%) contrast(89%);
}

.hero--sec {
  min-height: 882px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: url('../images/hero-bg.jpg');
    background-position: center center;
    background-size: cover; */
  z-index: 3;
  position: relative;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  transform: scale(1);
  will-change: transform;
}

.hero_left {
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  display: flex;
  width: max-content;
  padding: 10px 16px 10px 11px;
  background: linear-gradient(
    270deg,
    rgba(175, 152, 102, 0) 0%,
    rgb(175 152 102 / 20%) 100%
  );
  margin-bottom: 20px;
}

.hero-title p {
  color: var(--theme-red);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.4px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reveal-text span {
  display: inline;
  filter: blur(12px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.reveal-text span.show {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.hero-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: max-content;
  z-index: -1;
  mix-blend-mode: luminosity;
  /* opacity: .5; */
}

.hero_left h1 {
  margin-bottom: 30px;
}

.hero_left .cta_btn {
  margin-bottom: 25px;
}

.trust-pilot {
  width: 125px;
}

.cta_btn {
  color: var(--white);
  text-align: center;
  font-family: "Outfit";
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-transform: capitalize;
  border-radius: 2px;
  background: var(--theme-red);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all ease 0.6s !important;
}
.cta_btn:hover {
  background: #8c7650;

  .cta_btn_arrow {
    rotate: 360deg;
  }
}
.cta_btn_arrow {
  width: 8px;
  transition: all ease 0.6s;
}

/* Rights */
.rights_wrapper {
  display: flex;
}

.right_icon {
  width: 56px;
  flex-shrink: 0;
}

.rights_card {
  width: 33.33%;
  padding: 55px 36px;
  background: var(--theme-blue);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all ease 0.4s;
}

.rights_card:nth-child(1) {
  background: #ede6de;
}

.rights_card:nth-child(1) .right_info h3,
.rights_card:nth-child(1) .right_info p {
  color: var(--theme-blue);
}

.rights_card:nth-child(1) .right_icon img,
.rights_card:nth-child(2) .right_icon img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(33%) saturate(404%)
    hue-rotate(3deg) brightness(92%) contrast(94%);
}

.rights_card:nth-child(2) {
  background: var(--theme-blue);
}

.rights_card:nth-child(3) {
  background: #af9866;
}

.right_info h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 4px;
}

.right_info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 22px;
  text-transform: capitalize;
  width: 96%;
}

/* About */
.about--sec {
  padding: 100px 0;
}

.about_wrapper {
  display: flex;
  gap: 42px;
}

.about_left::before {
  content: "";
  position: absolute;
  top: 0;
  right: 46px;
  width: 15px;
  height: 100%;
  max-height: 152px;
  background: var(--theme-blue);
  /* animation: heighter 10s ease-in 2s infinite; */
}

@keyframes heighter {
  0% {
    height: 100%;
  }

  50% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

.about_left::after {
  content: "";
  position: absolute;
  top: 165px;
  right: 46px;
  width: 15px;
  height: 75px;
  background: var(--theme-red);
}

.about_left {
  width: 50%;
  position: relative;
}

.about_desc {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 296px;
}

.about_img {
  padding-right: 75px;
}

.about_head {
  margin-bottom: 30px;
}

.about_head .sec-title {
  margin-bottom: 11px;
}

.about_info h2 {
  margin-bottom: 11px;
}

.about_info p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 30px;
}

.about_right {
  width: 50%;
}

.about_list {
  display: flex;
  gap: 80px;
  margin-bottom: 70px;
}

.about_card {
  padding-right: 80px;
  border-right: solid 1px #d4d4d4;
}

.about_card:last-child {
  padding: 0;
  border: none;
}

.about_item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.about_item:last-child {
  margin-bottom: 0;
}

.about_icon {
  width: 31px;
}

.about_item p {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.about_btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about_btn {
  display: flex;
  align-items: center;
  gap: 13px;
}

/* .about_btn:hover .about_btn_ico::before {
    animation-play-state: running;
} */

.about_btn_ico {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  z-index: 3;
}

.about_btn_ico::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-blue);
  z-index: -1;
  animation: blinking-dot 2.5s ease-in 1s infinite;
}

@keyframes blinking-dot {
  0% {
    -moz-box-shadow: 0 0 0 0 var(--theme-blue);
    box-shadow: 0 0 0 0 var(--theme-blue);
  }

  70% {
    -moz-box-shadow: 0 0 0 7px rgba(171, 117, 0, 0);
    box-shadow: 0 0 0 7px rgba(171, 117, 0, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(171, 117, 0, 0);
    box-shadow: 0 0 0 0 rgba(171, 117, 0, 0);
  }
}

@keyframes rotater {
  from {
    rotate: 0deg;
  }

  to {
    rotate: 500deg;
  }
}

.about_btn_ico img {
  width: 30px;
}

.about_btn_info p {
  color: var(--black-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
}

.about_btn_info p span {
  color: #2e4666;
}

/* CTA */

.cta--sec {
  padding: 102px 0;
  background: url("../images/cta-bg.jpg");
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 3;
}

.cta_content {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.cta_content h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta_content p {
  color: var(--white);
  font-size: 18px;
  line-height: 30px;
  max-width: 790px;
}

.cta-eagle {
  position: absolute;
  top: 0;
  width: 428px;
  right: 0;
  mix-blend-mode: luminosity;
  z-index: -1;
}

/* Choose Section */
.choose--sec {
  padding: 100px 0;
}

.choose_head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
  text-align: center;
}

.choose_wrapper {
  display: flex;
  gap: 24px;
}

.choose_card {
  padding: 30px 36px 35px 30px;
  background: var(--white);
  box-shadow: 0 6px 18.4px 0 rgba(0, 0, 0, 0.15);
  width: 25%;
}

.choose_icon {
  width: 68px;
  margin-bottom: 12px;
}

.choose_card h3 {
  color: var(--black-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 3px;
}

.choose_card p {
  color: var(--black-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

/* Laws */
.laws--sec {
  padding: 148px 0 177px;
  background: url("../images/laws-bg.jpg");
  background-position: center center;
  background-size: cover;
}

.laws_top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 65px;
}

.laws_btn {
  width: 112px;
  cursor: pointer;
  margin-bottom: 23px;
  animation: blinking-dot-law 2.5s ease-in 1s infinite;
  border-radius: 200px;
  display: none;
}

@keyframes blinking-dot-law {
  0% {
    -moz-box-shadow: 0 0 0 0 var(--theme-red);
    box-shadow: 0 0 0 0 var(--theme-red);
  }

  70% {
    -moz-box-shadow: 0 0 0 7px rgba(171, 117, 0, 0);
    box-shadow: 0 0 0 7px rgba(171, 117, 0, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(171, 117, 0, 0);
    box-shadow: 0 0 0 0 rgba(171, 117, 0, 0);
  }
}

.laws_top h2 {
  color: var(--white);
  font-size: 60px;
  line-height: 70px;
}

.laws_popup {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  background: #000000b8;
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.laws_popup.active {
  opacity: 1;
  pointer-events: auto;
}

.cross-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  cursor: pointer;
}

.laws-video {
  width: 900px;
  height: 530px;
}

/* Counter */

.counter--sec {
  margin-top: -105px;
}

.counter_bar {
  background: var(--theme-blue);
  position: relative;
}

.counter_bar::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-top: 2px solid #af9866;
  border-left: 2px solid #af9866;
}

.counter_bar::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 18px;
  height: 18px;
  border-right: 2px solid #af9866;
  border-bottom: 2px solid #af9866;
}

.counter_wrap {
  display: flex;
}

.counter_card {
  text-align: center;
  padding: 50px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  width: 25%;
}

.counter_card h2 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.5);
  font-size: 72px;
  line-height: 72px;
  color: transparent;
  margin-bottom: 20px;
  filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  font-family: "Inter";
}

.counter_card h2.active {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.counter_card p {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  position: relative;
}

.counter_card p::after {
  content: "";
  width: 63px;
  height: 63px;
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  margin: 0 auto;
  border-radius: 31.5px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

/* Services */

.services--sec {
  padding: 100px 0;
}

.services_main .package_head {
  margin-bottom: 30px;
}

.services_slider .swiper.RegSwiper .swiper-wrapper {
  padding: 20px 0 30px;
}

.services_head .sec-title {
  margin-bottom: 10px;
}

.service_card {
  /* width: 648px; */
  display: flex;
  align-items: flex-end;
  gap: 25px;
  background: rgba(252, 251, 251, 0.3);
  box-shadow: 0 4px 13.7px 0 rgba(0, 0, 0, 0.25);
}

.service_info h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
}

.service_info p {
  color: #5e5e5e;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 15px;
}

.service_img {
  width: 45%;
}

.service_info {
  padding-right: 37px;
  width: 55%;
  padding-bottom: 24px;
}

.service_btn {
  width: 39px;
  height: 39px;
  background: var(--theme-red);
  display: flex;
  justify-content: center;
  align-items: center;
}

.service_info_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service_btn img {
  width: 14px;
}

.service-ico {
  width: 72px;
  padding-top: 7px;
  filter: brightness(0) saturate(100%) invert(62%) sepia(33%) saturate(404%)
    hue-rotate(3deg) brightness(92%) contrast(94%);
}

.services_nav {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-end;
}

.services_nav .swiper-pagination {
  position: static;
  margin: 0;
  transform: none !important;
}

.services_nav .swiper-button-next,
.services_nav .swiper-button-prev {
  img {
    width: 14px;
  }
}

/* .services_nav .swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    background: #E5E6FF;
} */

.services_nav .swiper-button-prev img {
  rotate: 180deg;
}

/* .services_nav .swiper-button-next:hover,
.services_nav .swiper-button-prev:hover {
    background: #E5E6FF;
} */

.services_nav .swiper-button-next,
.services_nav .swiper-button-prev {
  display: flex;
  margin: 0;
  position: static;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--theme-blue);
}

.services_nav .swiper-button-next::after,
.services_nav .swiper-button-prev::after {
  content: normal;
}

.offer-heading-cls {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 6px;
}

.margin-top-custom {
  margin-top: 20px;
}

/* Packages */

.package_list {
  max-height: 250px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #af9866 transparent;
}

.package_list::-webkit-scrollbar {
  width: 4px;
}

.package_list::-webkit-scrollbar-track {
  background: transparent;
}

.package_list::-webkit-scrollbar-thumb {
  background-color: #af9866;
  border-radius: 4px;
}

.packages--sec {
  padding: 100px 0 120px;
  background: #f5f5f5;
}

.package_head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.package_wrapper {
  /* max-width: 995px;
    width: 100%; */
  margin: 0 auto;
  display: flex;
  gap: 37px;
}

.package_card {
  width: 33%;
  border: 1px solid #d7d7d7;
  background: #fff;
  box-shadow: 0 3px 19px 0 rgba(0, 0, 0, 0.15);
  padding: 56px 0 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.package_card:hover {
  .package_bg {
    opacity: 1;
  }
}

.package_card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 101px;
  height: 104px;
  background: url("../images/package-shadow.png");
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.package_info {
  padding: 0 20px;
}

.package_in_head {
  margin-bottom: 10px;
}

.pack_badge {
  background: var(--theme-red);
  padding: 5px 6px 5px 24px;
  width: max-content;
  margin-bottom: 13px;
  margin-left: -15px;
  position: relative;
}

.pack_badge::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 15px;
  height: 15px;
  background: url(../icons/badge-vec.svg);
  background-position: center center;
  background-size: 100%;
  filter: brightness(0) saturate(100%) invert(62%) sepia(33%) saturate(404%)
    hue-rotate(3deg) brightness(92%) contrast(94%);
}

.package_in_head p {
  color: #5d5d5d;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 10px;
}

.pack_badge h4 {
  font-size: 24px;
  line-height: 27px;
  color: var(--white);
  font-weight: 500;
}

.package_in_head h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.package_in_head h3 {
  font-size: 55px;
  /* font-style: italic; */
  font-weight: 800;
  line-height: 65px;
}

.package_list ul li {
  list-style: none;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}

.package_list ul li:last-child {
  margin-bottom: 0;
}

.package_list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  background: url(../icons/pack-icon.svg);
  background-position: center center;
  background-size: 100%;
  width: 14px;
  height: 14px;
}

.package_list ul li p {
  color: var(--black-color);
  line-height: 30px;
}

.pack_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pack_btn .cta_btn {
  padding: 12px 30px;
  margin-bottom: -22px;
  background: var(--theme-blue);
}

.package_bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  opacity: 0;
  transition: all ease 0.5s;
}

/* Testimonial */
.testimonial--sec {
  padding: 100px 0;
}

.testi_head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 35px;
}

.sec-title {
  padding: 6px 20px 6px 15px;
  width: max-content;
  background: linear-gradient(
    270deg,
    rgba(175, 152, 102, 0) 0%,
    rgb(175 152 102 / 20%) 49.04%,
    rgba(175, 152, 102, 0) 100%
  );
  margin-bottom: 20px;
}

.sec-title p {
  color: var(--theme-red);
  text-align: center;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.testi_main .swiper-wrapper {
  margin-bottom: 35px;
}

.testi_main .swiper-slide {
  max-width: 420px !important;
  height: auto;
  display: flex;
}

.testi_main .swiper-slide-active .testi_card {
  scale: 1;
}

.testi_card {
  padding: 41px 30px 43px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  transition: all ease 0.4s;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.08);
  z-index: 2;
  scale: 0.95;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi_card * {
  transition: all ease 0.4s;
}

.testi_main .swiper-slide-active .testi_card::after {
  opacity: 0.1;
}

.testi_main .swiper-slide-active .testi_card {
  /* background: #0D1057; */

  .testi_qoute {
    opacity: 1;
    filter: grayscale(1) brightness(5);
  }

  .testi_stars {
    filter: grayscale(1) brightness(5);
  }

  .testi_info h4 {
    color: var(--white);
  }

  .client-review p {
    color: #b8b8b8;
  }
}

.testi_nav .swiper-pagination-bullet {
  background: transparent;
  height: 12px;
  width: 12px;
  border-radius: 50px;
  border: 2px solid #141414;
}

.testi_nav .swiper-pagination-bullet-active {
  background: var(--theme-red);
  border-color: var(--theme-red);
}

.testi_card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 112px;
  height: 112px;
  border-radius: 150px;
  border: 20px solid #e4d9c4;
  opacity: 0;
}

.testi_card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--theme-blue);
  width: 100%;
  z-index: -1;
  transition: all ease 0.02s;
  transform: translateX(-100%);
}

.testi_top {
  display: flex;
  flex-direction: column;
  gap: 33px;
  margin-bottom: 34px;
}

.testi_qoute {
  width: 70px;
  position: absolute;
  top: 24px;
  right: 24px;
  opacity: 0.1;
  transition-delay: 0.5s;
  filter: brightness(0) saturate(100%) invert(62%) sepia(33%) saturate(404%)
    hue-rotate(3deg) brightness(92%) contrast(94%);
}

.testi_img {
  width: 66px;
  border: solid 2px var(--white);
  border-radius: 200px;
}

.testi_top_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi_info h4 {
  color: var(--heading-gray);
  font-size: 24px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 5px;
}

.testi_info p {
  color: #828282;
}

.client-review p {
  color: #4f4f4f;
  font-size: 18px;
  line-height: 28px;
}

.testi_stars {
  width: 106px;
  filter: brightness(0) saturate(100%) invert(62%) sepia(33%) saturate(404%)
    hue-rotate(3deg) brightness(92%) contrast(94%);
  /* transition-delay: .s; */
}

.testi_nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.testi_nav .swiper-pagination {
  position: static;
  margin: 0;
  transform: none !important;
}

.testi_nav .swiper-button-next,
.testi_nav .swiper-button-prev {
  img {
    width: 8px;
  }
}

.testi_nav .swiper-button-next img {
  rotate: 180deg;
}

.testi_nav .swiper-button-next,
.testi_nav .swiper-button-prev {
  display: flex;
  margin: 0;
  position: static;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}

.testi_nav .swiper-button-next::after,
.testi_nav .swiper-button-prev::after {
  content: normal;
}

/* Faqs */
.faq--sec {
  padding-bottom: 100px;
}

.faq_wrapper {
  display: flex;
  gap: 48px;
}

.faq_img {
  width: 54%;
  position: relative;
}

.faq_right {
  width: 46%;
}

.faq_img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 151px;
  width: 15px;
  height: 152px;
  background: var(--theme-blue);
}

.faq_img::after {
  content: "";
  position: absolute;
  top: 165px;
  right: 151px;
  width: 15px;
  height: 75px;
  background: var(--theme-red);
}

.faq_head {
  margin-bottom: 25px;
}

.faq_item {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--white);
  margin-bottom: 20px;
}

.faq_item:last-child {
  margin-bottom: 0;
}

.faq_item_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 21px 30px;
  border-bottom: 1px solid transparent;
  transition: all ease 0.4s;
}

.faq_item_head:hover {
  background: rgb(219 219 219 / 35%);
}

.faq_item.active .faq_item_head {
  border-color: rgba(128, 128, 128, 0.353);
}

.faq_item_head h3 {
  color: #1d1d1d;
  font-size: 20px;
  font-weight: 600;
  line-height: 22.4px;
}

.faq-arrow {
  width: 12px;
  margin-top: 3px;
}

.faq_answer {
  padding: 0 30px;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq_answer p {
  margin: 24px 0 29px;
  color: #4f4f4f;
  font-size: 18px;
  line-height: 28px;
}

.faq_item.active .faq-arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* Contact */
.contact--sec {
  padding-bottom: 100px;
}

.contact_main {
  background: url("../images/contact-bg.png");
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 79px 0 0;
  border-radius: 10px;
}

.contact_right {
  width: 43%;
  margin-bottom: -20px;
}

.contact_head {
  margin-bottom: 30px;
}

.contact_head h3 {
  font-size: 40px;
  line-height: 51px;
  margin-bottom: 6px;
  color: var(--white);
}

.form_block_wrap {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.form_block_wrap.tel {
  position: relative;
  z-index: 3;
}

.form_block {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.form_block textarea,
.form_block select,
.form_block input {
  height: 49px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  background: #f6f6f6;
  width: 100%;
  color: var(--black-color);
  font-family: "Outfit";
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  outline: none;
  padding: 10px 15px;
}

.form_block textarea {
  height: 135px;
  resize: none;
}

.form_block ::placeholder {
  font-size: 13px;
}

.form_block label {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 5px;
}

.contact_head p {
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 1%;
  color: var(--white);
}

.contact_head p span {
  font-weight: 700;
  color: var(--theme-red);
}

.form_block_wrap.full .form_block {
  width: 100%;
}

.phone-format {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}

.form_btn button {
  border: none;
  outline: none;
  cursor: pointer;
}

.form_block_wrap.msg {
  margin-bottom: 40px;
}

/* Cta With Image */

.roof--sec {
  margin-bottom: -50px;
  z-index: 9;
  position: relative;
}

.roof_main {
  padding: 60px 0;
  background: url("../images/cta-img-bg.jpg");
  background-position: center center;
  background-size: cover;
  position: relative;
  box-shadow: 0 4px 21.4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.roof_content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.roof_content .cta_btn {
  background: var(--theme-blue);
}

.roof_build {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 208px;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
  /* smooth movement */
}

.roof_build.two {
  bottom: 0;
  right: 0;
  left: auto;
  width: 180px;
  transition: transform 0.7s ease-out;
  /* slightly slower */
}

/* Footer */

footer {
  background: #0b1522;
  padding: 112px 0 0;
  position: relative;
  z-index: 2;
}

.scale-logo {
  position: absolute;
  width: 56px;
  height: 49px;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(0, 0);
  margin: 0;
}

.footer_wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 33px;
}

.footer_navigation {
  margin-bottom: 16px;
}

.footer-logo {
  width: 240px;
  display: flex;
  margin-bottom: 32px;
}

.ft_block_head {
  margin-bottom: 22px;
}

.ft_block_head h3 {
  position: relative;
}

.ft_block_head h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 24px;
  height: 5px;
  background: url(../icons/ft-vec.svg);
  background-position: center center;
  background-size: 92%;
  background-repeat: no-repeat;
}

.footer_logo_part p {
  color: var(--white);
  font-size: 18px;
  width: 338px;
  line-height: 28px;
}

.ft_social_ico {
  width: 12px;
  margin-top: 7px;
}

.footer_logo_part {
  margin-bottom: 31px;
}

.footer_social h3 {
  margin-bottom: 15px;
}

.footer_social ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  list-style: none;
}

.footer_block h3 {
  color: var(--white);
  font-family: "Outfit";
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

#logoSVG {
  width: 220px;
}

.logo-path {
  opacity: 0;
  transform: translateY(15px);
}

.footer_social ul li p {
  color: var(--white);
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -0.17px;
  text-transform: math-auto;
}

.ft_list li a {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.16px;
  position: relative;
}

.ft_list li a:hover::after {
  width: 100%;
}

.ft_list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  background: var(--white);
  height: 1px;
  width: 0%;
  transition: all ease 0.4s;
}

.ft_list li {
  list-style: none;
  display: flex;
  padding-left: 18px;
  position: relative;
}

.ft_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  background: #cbd8e8;
  border: solid 1px var(--theme-red);
  border-radius: 100px;
  animation: blinking-dot-ft 2.5s ease-in-out 1s infinite;
}

@keyframes blinking-dot-ft {
  0% {
    -moz-box-shadow: 0 0 0 0 var(--theme-red);
    box-shadow: 0 0 0 0 var(--theme-red);
  }

  70% {
    -moz-box-shadow: 0 0 0 7px rgba(1, 85, 221, 0);
    box-shadow: 0 0 0 7px rgba(1, 85, 221, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(1, 85, 221, 0);
    box-shadow: 0 0 0 0 rgba(1, 85, 221, 0);
  }
}

.footer_copyright {
  text-align: center;
  padding: 16px 0;
  border-top: solid 1px rgb(39 139 255 / 10%);
}

.footer_copyright p {
  color: var(--white);
  line-height: 29px;
  letter-spacing: -0.16px;
  opacity: 0.5;
}

/* @about page */

.about--banner {
  padding: 235px 0 205px;
  background: url("../images/about-banner-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 481px;
}

.about-banner-content h1 {
  font-size: 60px;
  line-height: 65px;
  margin-bottom: 8px;
}

.about-content-head {
  margin-bottom: 30px;
}

.about-content-head p {
  color: var(--white);
  font-size: 20px;
  font-weight: 300;
  line-height: 31px;
  text-transform: capitalize;
}

/* Brands */
.brands--sec {
  padding: 50px 0 100px;
}

.brands--sec .container {
  max-width: 1888px;
}

.brands_main {
  overflow: hidden;
}

.brands_wrapper {
  display: flex;
  gap: 94px;
  align-items: center;
  animation: brand-loop 50s linear 2s infinite;
}

@keyframes brand-loop {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-130%);
  }
}

.brand_img {
  width: 100%;
  max-width: 200px;
  min-width: 220px;
}

/* Protection */
.protect--sec {
  padding-bottom: 100px;
}

.protect_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 81px;
}

.protect_head {
  margin-bottom: 94px;
}

.protect_head h2 {
  margin-bottom: 15px;
}

.protect_info p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 20px;
}

.protect_info p:last-child {
  margin-bottom: 0;
}

.protect_right .protect_img {
  margin-bottom: 37px;
}

.protect_left {
  width: 55%;
}

.protect_right {
  width: 48%;
}

/* Grow */

.grow--sec {
  background: #1a2e45;
  padding: 100px 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.grow_wrapper {
  display: flex;
  gap: 43px;
}

.grow_left {
  width: 33%;
}

.grow_left h2 {
  color: var(--white);
}

.grow_right {
  width: 67%;
}

.grow_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.grow_icon {
  width: 72px;
}

.grow_info {
  width: 80%;
}

.grow_info h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 7px;
}

.grow_info p {
  color: var(--white);
  line-height: 26px;
}

.grow_columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 55px;
}

.grow-vec {
  position: absolute;
  left: -200px;
  top: 0;
  width: 800px;
  transform: rotateY(180deg);
  mix-blend-mode: luminosity;
  z-index: -1;
}

/* Industry */

.industry--sec {
  padding: 100px 0;
}

.industry_wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.industry_content {
  width: 42%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.indus_head {
  margin-bottom: 47px;
}

.indus_head h2 {
  margin-bottom: 15px;
}

.indus_head p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 30px;
  width: 91%;
}

.industry_img {
  width: 52%;
}

/* @Filling */
.about--banner.tm .about-banner-content {
  max-width: 550px;
}

.about--banner.tm h1 {
  font-size: 50px;
  line-height: 59px;
}

.banner_bullets li {
  list-style: none;
  padding-left: 28px;
  margin-bottom: 16px;
  position: relative;
}

.banner_bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  background: url(../icons/bullet-arrow.svg);
  background-position: center center;
  background-size: 16px;
  filter: brightness(0) saturate(100%) invert(62%) sepia(33%) saturate(404%)
    hue-rotate(3deg) brightness(92%) contrast(94%);
}

.banner_bullets li:last-child {
  margin-bottom: 0;
}

.banner_bullets li p {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
}

.banner_bullets {
  margin-bottom: 24px;
}

/* Indus2 */
.industry--sec.tm {
  padding-bottom: 0;
}

.industry--sec.tm .industry_content {
  width: 46%;
}

.industry--sec.tm .indus_head {
  margin-bottom: 0;
}

.industry--sec.tm .indus_head p {
  margin-bottom: 20px;
  width: 100%;
}

.industry--sec.tm .industry_wrapper {
  gap: 60px;
}

.industry--sec.tm.indus_head p:last-child {
  margin-bottom: 0;
}

.contact--sec.tm {
  padding: 100px 0 0;
}

.about--banner.tm {
  padding: 196px 0 115px;
}

.about--banner.tm.filling {
  background-image: url("../images/filling-bg.jpg");
}

.about--banner.tm.copyright {
  background-image: url("../images/copyright-bg.jpg");
}

.about--banner.tm .about-content-head {
  margin-bottom: 18px;
}

/* blog */

.blog--sec {
  padding-bottom: 100px;
}

.blog_head {
  margin-bottom: 35px;
}

.blog-title {
  padding: 9px 32px;
  border: 1px dashed var(--theme-red);
  width: max-content;
  margin-bottom: 14px;
}

.blog-title p {
  color: var(--theme-red);
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog_column {
  position: relative;
}

.blog_head_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.blog_head_wrap p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 28px;
}

.blog_column:hover .blog_info {
  opacity: 1;
  pointer-events: all;
}

.blog_wrapper {
  margin-bottom: 50px;
}

.blog_btm {
  display: flex;
  justify-content: center;
}

.blog_wrap {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}

.blog_wrap:last-child {
  margin-bottom: 0;
}

.blog_img {
  height: 100%;
}

.blog_img img {
  height: 100%;
  object-fit: cover;
}

.blog_info {
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  width: 100%;
  padding: 25px 25px 25px 29px;
  opacity: 0;
  pointer-events: none;
  transition: all ease 0.4s;
}

.blog_info h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 5px;
}

.blog_info p {
  color: var(--white);
}

.blog-btn {
  color: var(--theme-red);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  text-decoration: underline;
  margin-left: auto;
}

.choose--sec.tm .cta_btn {
  width: max-content;
  margin: 0 auto;
}

.choose--sec.tm .choose_wrapper {
  margin-bottom: 50px;
}

.choose--sec.tm .choose_card {
  width: 33%;
}

.choose--sec.tm .choose_card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 11px;
  background: #af9866;
}

.about--banner.tm h1 span {
  color: var(--theme-red);
}

.works--sec {
  padding-top: 100px;
}

.work_content {
  text-align: center;
  max-width: 1020px;
  margin: 0 auto;
}

.work_content h2 {
  margin-bottom: 15px;
}

.work_content p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

/* @FIle */

.about--banner.international {
  background-image: url("../images/international-bg.jpg");
}

.about--banner.copy .about-banner-content {
  max-width: 648px;
}

.industry--sec.tm.inter {
  padding-bottom: 100px;
}

.cta--sec.tm {
  background-image: url("../images/inter-cta-bg.jpg");
}

.cta--sec.tm p {
  margin-bottom: 20px;
}

.choose--sec.inter .choose_wrapper {
  margin-bottom: 0;
}

.eu_head {
  margin-bottom: 50px;
  text-align: center;
}

.eu_content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.eu_item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.eu_in_head h3 {
  color: var(--heading-gray);
  font-size: 35px;
  font-weight: 500;
  line-height: 54px;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.eu_in_head p,
.eu_info p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 28px;
}

.eu_info {
  background: var(--white);
  box-shadow: 0 6px 18.4px 0 rgba(0, 0, 0, 0.15);
  padding: 22px 84px 22px 34px;
  border-left: solid 9px var(--theme-red);
  min-height: 127px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.eu_in_head li p {
  color: var(--black);
  font-size: 16px;
}

.eu_in_head .banner_bullets {
  margin: 0;
  margin-top: 15px;
}

.about--banner.comprehensive {
  background-image: url("../images/comprehansive-bg.jpg");
}

.choose--sec.comp {
  padding: 0;
}

.choose--sec.comp h2 {
  margin-bottom: 15px;
}

.choose--sec.comp .choose_head p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 28px;
  max-width: 1210px;
  margin: 0 auto;
}

.choose--sec.comp .choose_card {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.about--banner.tm.monitoring {
  background-image: url("../images/monitoring-bg.png");
}

.eu--sec.monitor {
  padding-top: 100px;
}

.eu--sec.monitor .eu_head h2 {
  margin-bottom: 17px;
}

.eu_btm p span,
.eu--sec.monitor .eu_info h4 span,
.eu--sec.monitor .eu_head h4 span,
.eu--sec.monitor .eu_head h2 span {
  color: var(--theme-red);
}

.eu_btm p span {
  font-weight: 600;
}

.eu--sec.monitor .eu_head p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

.eu--sec.monitor .eu_head h4 {
  color: var(--text-gray);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.eu--sec.monitor .eu_in_head p {
  margin-bottom: 20px;
}

.eu--sec.monitor .eu_info h4:last-child,
.eu--sec.monitor .eu_in_head p:last-child {
  margin-bottom: 0;
}

.eu--sec.monitor .eu_info p {
  margin-bottom: 10px;
}

.eu--sec.monitor .eu_info h4 {
  color: var(--text-gray);
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 7px;
}

.eu_btm p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
}

.eu--sec.monitor .eu_content {
  gap: 30px;
}

.roof_content p {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 3px;
}

.contact--sec.contact {
  padding: 100px 0;
}

.about--banner.tm.contact {
  background-image: url(../images/contact-banner-bg.jpg);
  padding: 250px 0 120px;
}

.about--banner.contact.copy .about-banner-content {
  max-width: 770px;
}

.mov--sec {
  padding-bottom: 100px;
}

.mov_main {
  position: relative;
}

.mov_video {
  position: absolute;
  top: 5px;
  width: 468px;
  height: 590px;
  right: 137px;
}

.mov_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drop_head.enable_clicking {
  display: none;
}

.custom-hamburger {
  display: none;
}

.cta_btn.mob_only,
.logo.mob_only {
  display: none;
}

.testi_main .swiper-slide-active .testi_card::before {
  transform: translateX(0%);
}

/* @attorney Page */

.about--banner.attorney {
  background-image: url("../images/attorney-banner-bg.jpg");
}

section.about--banner.tm.attorney.terms_conditions--banner {
  background-image: url("../images/terms-banner-bg.jpg");
}

section.about--banner.tm.attorney.privacy_policy--banner {
  background-image: url("../images/policy-banner-bg.jpg");
}

.attorney_head {
  text-align: center;
  margin-bottom: 50px;
}

.attorney_head h2 {
  margin-bottom: 10px;
}

.attorney_head p {
  color: var(--text-gray);
  font-size: 20px;
  line-height: 28px;
}

/* .attorney_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
} */

.attorney_wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

section.attorney--sec:not(.paralegal) .attorney_wrapper .attorney_card {
  max-width: 648px;
}

.attorney_in_top {
  padding-bottom: 20px;
  border-bottom: solid 1px #b5b5b5;
  margin-bottom: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.attorney_card {
  padding: 56px 48px 49px 35px;
  border: 1px solid #b5b5b5;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.attorney--sec.paralegal .attorney_combo.nala {
  margin-bottom: 0;
}
.attorney--sec {
  padding: 100px 0;
}

.attorney_icon {
  width: 56px;
  margin-bottom: 9px;
}

.attorney_in_top h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 9px;
}

.attorney_in_top h4 {
  color: var(--text-gray);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 7px;
}

.att-desc {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 21px;
  max-width: 537px;
}

.att-prt {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 300;
  margin-top: auto;
  line-height: 23px;
}

.att-prt span {
  color: var(--theme-red);
  font-weight: 600;
}

.attorney_item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
}

.attorney_item:last-child {
  margin-bottom: 0;
}

.attorney_item p {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
  line-height: 27px;
}

.attorney_item_icon {
  width: 22px;
  margin-top: 3px;
  filter: brightness(0) saturate(100%) invert(62%) sepia(33%) saturate(404%)
    hue-rotate(3deg) brightness(92%) contrast(94%);
}

.attorney_combo_item {
  padding: 8px 11px;
  background: #f0e9dc;
  border-radius: 2.171px;
}

.attorney_combo_item p {
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
}

.attorney--sec.paralegal .attorney_combo {
  width: 100%;
  margin-bottom: 25px;
}

.attorney--sec.paralegal .attorney_card {
  background: var(--white);
  box-shadow: 0 6px 18.4px 0 rgba(0, 0, 0, 0.15);
  border: none;
  padding: 56px 44px 49px 35px;
  width: 32%;
}

.attorney_combo {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  column-gap: 6px;
  row-gap: 8px;
}

.attorney--sec.paralegal .attorney_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.attorney--sec.paralegal {
  padding-top: 0;
}

.attorney--sec.paralegal .attorney_in_top h4 {
  text-transform: math-auto;
}

.attorney--sec.paralegal .att-desc {
  margin-bottom: 0;
  max-width: 91%;
}

.attorney--sec.paralegal .att-prt {
  margin-bottom: 15px;
}

.attorney_combo_item.nala {
  border: 1px solid #c5c5c5;
  background: transparent;
  width: max-content;
}

/* PRO PAGE */

.industry_head {
  text-align: center;
  margin-bottom: 50px;
}

.applicant_wrapper {
  display: flex;
  align-items: flex-start;
}

.applicant_img {
  width: 57%;
}

.applicant_right {
  width: 43%;
}

.appli_in_head {
  padding-left: 44px;
  margin-bottom: 24px;
}

.appli_column {
  margin-left: -38px;
}

.appli_item {
  background: #fff;
  box-shadow: 0 4px 13.5px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 19px 25px;
  border-left: solid 3px var(--theme-red);
  margin-bottom: 20px;
  min-height: 192px;
}

.appli_item:last-child {
  margin-bottom: 0;
}

.appli_info {
  padding-left: 18px;
  position: relative;
}

.appli_info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  margin: auto;
  height: 108px;
  background: #ededed;
}

.appli_icon {
  width: 83px;
}

.appli_info h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 6px;
}

.appli_info ul li {
  list-style: none;
  position: relative;
  padding-left: 13px;
  margin-bottom: 2px;
}

.appli_info ul li:last-child {
  margin-bottom: 0;
}

.appli_info ul li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--theme-red);
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 11px;
}

.appli_info ul li p {
  color: rgb(0 0 0 / 73%);
  font-size: 18px;
  line-height: 30px;
}

.basic--sec {
  padding-top: 100px;
}

.basic_wrapper {
  display: flex;
  gap: 24px;
}

.basic_column {
  width: 50%;
}

.basic_col_info {
  padding: 40px 38px;
  border: 1px solid #b7b7b7;
}

.basic_col_head h3 {
  color: #141414;
  font-size: 35px;
  font-weight: 500;
  line-height: 44px;
  margin-bottom: 20px;
}

.basic_col_head h3 span {
  color: var(--theme-red);
}

.basic_col_info ul li {
  margin-bottom: 18px;
  padding-left: 17px;
  position: relative;
  list-style: none;
}

.basic_col_info ul li::before {
  width: 10px;
  height: 10px;
  content: "";
  background: url("../icons/basic-ico.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 7px;
}

.basic_column.n-include .basic_col_info ul li::before {
  background-image: url("../icons/basic-ico-cross.svg");
}

.basic_col_info ul li:last-child {
  margin-bottom: 0;
}

.basic_col_info ul li p {
  color: rgb(0 0 0 / 73%);
  font-size: 20px;
  opacity: 0.73;
}

.clarification--sec.rev {
  padding-top: 0;
}

.clarification--sec {
  padding: 100px 0;
}

.clarify_wrapper {
  display: flex;
  align-items: center;
  gap: 44px;
}

.clarify_img {
  width: 57%;
}

.clarify_content {
  width: 43%;
}

.clarify_info h3 {
  color: #141414;
  font-size: 35px;
  font-weight: 500;
  line-height: 44px;
  margin-bottom: 5px;
}

.clarify_info h4 {
  color: var(--black-color);
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  opacity: 0.73;
  margin-bottom: 10px;
}

.clarify_info ul {
  margin-bottom: 30px;
}

.clarification--sec.rev .clarify_wrapper {
  flex-direction: row-reverse;
}

.clarify_info ul li {
  list-style: none;
  position: relative;
  padding-left: 13px;
  margin-bottom: 10px;
}

.clarify_info ul li:last-child {
  margin-bottom: 0;
}

.clarify_info ul li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--theme-red);
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 11px;
}

.clarify-text p,
.clarify_info ul li p {
  color: rgb(0 0 0 / 73%);
  font-size: 18px;
  line-height: 30px;
}

.grow--sec.bono .grow_left {
  visibility: hidden;
}

.grow_item h2 {
  color: var(--white);
  font-size: 55px;
  margin-top: 5px;
}

.about--banner.pro-bono {
  background-image: url(../images/bono-bg.jpg);
}

/* PRO END  */

@media screen and (min-width: 992px) {
  .drop_down_menu:hover {
    .drop_menu {
      max-height: 500px;
    }

    .drop_arrow {
      rotate: 180deg;
    }
  }

  .drop_menu {
    transition: all ease 1s;
  }

  .testi_main .swiper-slide-active .testi_card::before {
    transition: all linear 0.65s;
  }
}

@media screen and (max-width: 1800px) {
  .service-ico {
    width: 45px;
  }

  .services_slider .swiper-slide {
    height: auto;
  }

  .service_card {
    height: 100%;
    align-items: stretch;
  }

  .service_info {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 24px 20px 0;
  }

  .service_info p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (max-width: 1440px) {
  .hero-logo {
    width: 50%;
  }

  body {
    overflow-x: hidden;
  }

  .service_img img {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 1100px) {
  .hero-bg img {
    height: 100%;
  }

  .hero--sec {
    min-height: auto;
    padding: 240px 0 130px;
  }

  .rights_card {
    padding: 34px 26px;
  }

  .right_icon {
    width: 44px;
  }

  .about_wrapper {
    flex-wrap: wrap;
  }

  .about_left {
    width: 100%;
  }

  .about_right {
    width: 100%;
  }

  .about_img {
    height: 830px;
  }

  .about_img img {
    height: 100%;
    object-fit: cover;
  }

  .choose_wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .choose_card {
    width: 48%;
  }

  .about_btns {
    justify-content: flex-start;
    gap: 40px;
  }

  .mov--sec {
    display: none;
  }

  .counter_card h2 {
    -webkit-text-stroke-width: 0.5px;
    font-size: 52px;
    line-height: 52px;
  }

  .counter_card p {
    font-size: 16px;
    line-height: 20px;
  }

  .faq_head {
    flex-direction: column;
    display: flex;
    align-items: center;
    text-align: center;
  }

  .faq_wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq_img {
    width: 70%;
  }

  .faq_right {
    width: 100%;
  }

  .contact_right {
    width: 100%;
  }

  .contact_head {
    text-align: center;
  }

  .contact_main {
    padding: 40px 30px 0 30px;
  }

  .footer_wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer_logo_part {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_logo_part p {
    width: 100%;
  }

  ul.ft_list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ft_block_head {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer_social ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_block {
    text-align: center;
  }

  .grow_right {
    width: 100%;
  }

  .protect_wrapper {
    gap: 40px;
  }

  .grow_wrapper {
    gap: 40px;
    flex-direction: column;
  }

  .grow_left {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .industry_wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }

  .industry_content {
    width: 100%;
  }

  .industry_img {
    width: 100%;
  }

  .about--banner.tm h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .about-content-head p {
    font-size: 18px;
    line-height: 29px;
  }

  .industry--sec.tm .industry_content {
    width: 100%;
  }

  .industry--sec.tm .industry_wrapper {
    gap: 40px;
  }

  .blog_head_wrap p br,
  .blog_head_wrap h2 br {
    display: none;
  }

  .blog_head_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    width: 62%;
    gap: 10px;
  }

  .indus_head {
    margin-bottom: 30px;
  }

  .about--banner.tm {
    padding: 212px 0 90px;
  }

  .indus_head p {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
  }

  .choose--sec.tm .choose_card,
  .choose--sec.tm .choose_card {
    width: 47%;
  }

  .att-desc {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .attorney--sec.paralegal .attorney_card {
    width: 48%;
  }

  /* BONO */

  .appli_item {
    min-height: auto;
  }

  .appli_column {
    margin-left: -110px;
  }

  .appli_in_head h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .clarify_info h3,
  .basic_col_head h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .grow--sec.bono .grow_left {
    display: none;
  }

  /* END */
}

@media screen and (max-width: 992px) {
  .container {
    padding: 0 30px;
  }

  .header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: 175px;
    z-index: 9999;
    position: relative;
  }

  .hero-logo {
    width: 50%;
    bottom: 0;
    top: auto;
  }

  .hero_left h1 {
    font-size: 54px;
    line-height: 60px;
  }

  .cta_btn.mob_only,
  .logo.mob_only {
    display: flex;
  }

  .navigation.open {
    transform: translateX(0);
  }

  .ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .hamRotate.active {
    transform: rotate(45deg);
  }

  .hamRotate180.active {
    transform: rotate(180deg);
  }

  .line {
    fill: none;
    transition:
      stroke-dasharray 400ms,
      stroke-dashoffset 400ms;
    stroke: #244065;
    stroke-width: 5.5;
    stroke-linecap: round;
  }

  .ham2 .top {
    stroke-dasharray: 40 121;
  }

  .ham2 .bottom {
    stroke-dasharray: 40 121;
  }

  .ham2.active .top {
    stroke-dashoffset: -102px;
  }

  .ham2.active .bottom {
    stroke-dashoffset: -102px;
  }

  .custom-hamburger {
    display: flex;
    width: 60px;
    position: relative;
    z-index: 999;
  }

  .navigation {
    position: fixed;
    left: 0;
    height: 100vh;
    top: 0;
    flex-direction: column;
    background: #ffffff;
    z-index: 999;
    gap: 30px;
    width: 100%;
    align-items: flex-start;
    padding: 20px 40px;
    transform: translateX(-100%);
    transition: all ease 0.6s;
  }

  .nav_menu .menu_list {
    align-items: flex-start;
    gap: 30px;
    flex-direction: column;
  }

  .cta_btn.desk_only,
  .logo.desk_only {
    display: none;
  }

  .nav_link {
    padding: 0;
    font-size: 34px;
  }

  .nav_menu {
    width: 100%;
  }

  .nav_menu .menu_list li {
    width: 100%;
  }

  .drop_menu {
    position: static;
    width: 100%;
  }

  .drop_head.only_desk {
    display: none;
  }

  .drop_head.enable_clicking {
    display: flex;
    justify-content: space-between;
  }

  .drop_menu {
    transition: all ease 1.3s;
  }

  .drop_menu.open {
    max-height: 5000px;
  }

  .rights_wrapper {
    flex-wrap: wrap;
  }

  .rights_card {
    width: 100%;
    padding: 22px 24px;
  }

  .cta--sec {
    padding: 70px 0;
  }

  .choose_head h2 br {
    display: none;
  }

  .laws_top h2 {
    font-size: 50px;
    line-height: 50px;
  }

  .counter_wrap {
    flex-wrap: wrap;
  }

  .counter_card {
    width: 50%;
  }

  .package_wrapper {
    flex-wrap: wrap;
    gap: 60px;
  }

  .package_card {
    width: 100%;
  }

  .package_bg {
    width: 45%;
  }

  .faq_img {
    width: 100%;
  }

  .roof_build {
    width: 110px;
  }

  .roof_build.two {
    width: 110px;
  }

  h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .brand_img {
    max-width: 180px;
    min-width: 150px;
  }

  .about-banner-content h1 {
    font-size: 50px;
    line-height: 55px;
  }

  .grow_columns {
    grid-template-columns: repeat(1, 1fr);
  }

  .grow-vec {
    opacity: 0.4;
  }

  .brands_wrapper {
    gap: 30px;
  }

  .banner_bullets li {
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }

  .industry--sec.tm.inter {
    padding: 50px 0;
  }

  .eu_in_head h3 {
    font-size: 28px;
    line-height: 40px;
  }

  .eu_info {
    padding: 22px 18px 22px 20px;
  }

  .eu_in_head .banner_bullets li {
    justify-content: flex-start;
  }

  .eu_in_head .banner_bullets li::before {
    content: normal;
  }

  .attorney_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .attorney_item p {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    max-width: 88%;
  }

  .attorney_combo_item p {
    max-width: 100%;
  }

  .attorney_combo {
    width: 90%;
  }

  .attorney--sec.paralegal .attorney_card {
    width: 100%;
  }

  /* BONO */

  .applicant_wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .applicant_img {
    width: 100%;
  }

  .appli_column {
    margin: 0;
  }

  .appli_in_head {
    padding: 0;
    text-align: center;
  }

  .appli_in_head h2 br {
    display: none;
  }

  .applicant_right {
    width: 100%;
  }

  .clarify_wrapper,
  .basic_wrapper {
    flex-wrap: wrap;
  }

  .clarify_content,
  .clarify_img {
    width: 100%;
  }

  .basic_column {
    width: 100%;
  }

  /* END */
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .navigation {
    padding: 20px 20px;
  }

  header {
    top: 0;
    position: fixed;
    backdrop-filter: none;
    padding: 10px 0;
    background: #f5f0e8;
  }

  .hero_left h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .hero-title {
    margin-bottom: 10px;
  }

  .hero-title p {
    font-size: 14px;
    line-height: 20.4px;
  }

  .cta_btn {
    font-size: 15px;
    line-height: 20.4px;
    padding: 13px 18px;
    gap: 8px;
  }

  .hero_left {
    align-items: center;
    text-align: center;
  }

  .logo {
    width: 155px;
  }

  .about_img {
    padding-right: 15px;
    height: auto;
  }

  .about_desc {
    bottom: 50px;
    width: 206px;
  }

  .about_left::before {
    width: 10px;
    max-height: 100px;
    right: 0;
  }

  .about_left::after {
    top: 110px;
    width: 10px;
    right: 0;
    height: 75px;
  }

  .faq_img::before,
  .faq_img::after {
    content: normal;
  }

  .sec-title {
    margin-bottom: 10px;
  }

  h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .about_list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .about_card {
    padding: 0;
    border-right: 0;
    padding-bottom: 20px;
    border-bottom: solid 1px #d4d4d4;
  }

  .about_icon {
    width: 22px;
  }

  .nav_link {
    font-size: 25px;
  }

  .about_btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .choose_card {
    width: 100%;
  }

  .about_btn_ico {
    width: 48px;
    height: 48px;
  }

  .about_btn_ico img {
    width: 25px;
  }

  .choose--sec,
  .testimonial--sec,
  .about--sec {
    padding: 50px 0;
  }

  .laws_btn {
    width: 92px;
    margin-bottom: 10px;
  }

  .testi_main .swiper-slide {
    max-width: 400px !important;
  }

  .testi_qoute {
    width: 38px;
  }

  /* .testi_main .swiper-slide-active .testi_card::before {
        transform: translateX(0%);
        transition: all linear .65s;
        } */
  .testi_card::before {
    transition: all ease 1.02s;
  }

  .laws_top h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .laws_top h2 br {
    display: none;
  }

  .service_card {
    flex-wrap: wrap;
    gap: 0;
  }

  .service_info,
  .service_img {
    width: 100%;
  }

  .service_info {
    padding: 30px 20px 30px;
  }

  .services--sec {
    padding: 50px 0;
  }

  .service_img {
    height: 250px;
  }

  .packages--sec {
    padding: 50px 0 70px;
  }

  .package_head h2 br {
    display: none;
  }

  .laws-video {
    width: 95%;
    height: 270px;
  }

  .faq_item_head h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .faq_answer {
    padding: 0 20px;
  }

  .faq_item_head {
    padding: 16px 20px;
  }

  .form_block_wrap {
    flex-direction: column;
  }

  .form_block {
    width: 100%;
  }

  .contact_main {
    padding: 40px 20px 0 20px;
  }

  .contact_head h3 {
    font-size: 32px;
    line-height: 38px;
  }

  .contact_head p {
    font-size: 16px;
    line-height: 20px;
  }

  .form_btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .roof_content h2 {
    font-size: 26px;
    line-height: 30px;
  }

  .roof_build.two {
    width: 50px;
  }

  .roof_build {
    width: 50px;
  }

  .about-banner-content h1 {
    font-size: 37px;
    line-height: 43px;
  }

  .about-content-head p {
    font-size: 18px;
    line-height: 26px;
  }

  .about-content-head {
    margin-bottom: 20px;
  }

  .about-banner-content {
    align-items: center;
    text-align: center;
  }

  .protect_wrapper {
    flex-wrap: wrap;
  }

  .protect_right,
  .protect_left {
    width: 100%;
  }

  .protect_head {
    margin-bottom: 20px;
  }

  .brands--sec {
    padding: 20px 0 70px;
  }

  .blog_head,
  .protect_head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .protect--sec {
    padding-bottom: 50px;
  }

  .grow_icon {
    width: 40px;
  }

  .grow_item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .grow--sec {
    padding: 50px 0;
  }

  .grow_info h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 4px;
  }

  .industry--sec {
    padding: 50px 0;
  }

  .brands_wrapper {
    animation: brand-loop 20s linear 2s infinite;
  }

  .blog--sec {
    padding-bottom: 50px;
  }

  .blog_head_wrap {
    width: 100%;
  }

  .blog_wrap {
    flex-wrap: wrap;
  }

  .blog_img {
    min-height: 420px;
  }

  .banner_bullets li::before {
    content: normal;
  }

  .blog-title {
    padding: 7px 23px;
  }

  .blog-title p {
    line-height: 18px;
    font-size: 14px;
  }

  .blog_head_wrap p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 26px;
  }

  .choose--sec.tm .choose_card {
    width: 100%;
  }

  .works--sec {
    padding-top: 50px;
  }

  .eu_in_head h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .eu_in_head p,
  .eu_info p {
    font-size: 16px;
    line-height: 24px;
  }

  .eu_content {
    gap: 30px;
  }

  .choose--sec.comp .choose_card {
    width: 100%;
  }

  .attorney--sec {
    padding: 50px 0;
  }

  .attorney_head p {
    font-size: 16px;
    line-height: 24px;
  }

  /* Bono */

  .appli_in_head h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .appli_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .clarify_info h3,
  .basic_col_head h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .basic_col_info {
    padding: 30px 24px;
    border: 1px solid #b7b7b7;
  }

  .basic_col_info ul li p {
    font-size: 16px;
  }

  .basic_col_info ul li {
    margin-bottom: 10px;
  }

  .appli_icon {
    width: 60px;
  }

  .appli_info {
    padding: 0;
  }

  .appli_info::before {
    content: normal;
  }

  .basic--sec {
    padding-top: 50px;
  }

  .industry_head {
    margin-bottom: 30px;
  }

  .grow_item h2 {
    font-size: 36px;
    margin-top: 10px;
  }

  .clarification--sec {
    padding: 50px 0;
  }

  /* End  */
}

@media screen and (max-width: 390px) {
  .testi_main .swiper-slide {
    max-width: 360px !important;
  }

  .nav_link {
    font-size: 16px;
  }

  .navigation.open {
    transform: translateX(0);
    padding: 20px 20px;
  }

  .nav_menu .menu_list {
    gap: 12px;
  }

  .drop_menu li a {
    font-size: 12px;
  }
}

/* Popup / Modal Styles
================================================== */

div#overlay {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.55) !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 99999 !important;
}

div#overlay.open {
  display: flex !important;
}

div#modal {
  background: #ffffff;
  border-radius: 14px;
  width: 90%;
  max-width: 32rem;
  padding: 36px;
  position: relative;
  border-top: 3px solid #c49a4a;
  max-height: 90vh;
  overflow-y: auto;
  top: auto;
  left: auto;
  margin: 0;
  float: none;
  box-sizing: border-box;
  text-align: left !important;
}

div#modal h2,
div#modal p,
div#modal label {
  text-align: left !important;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #666;
}

#successView {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.success-circle {
  width: 60px;
  height: 60px;
  background: #f5e9d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-circle svg {
  width: 28px;
  height: 28px;
  stroke: #c49a4a;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.close-success {
  background: transparent;
  color: #c49a4a;
  border: 1.5px solid #c49a4a;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 12px;
}
.phone-field-container .country-select-container .choices__inner {
  padding-block: 10px !important;
  border-radius: 5px !important;
}
