@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/***** General CSS *****/

:root {
  --ct1: #111343;
  --ct2: #f42451;
  --wt: #fff;
  --bk: #000;
  --mbk: #6b7280;
  --g1: linear-gradient(
    0deg,
    rgba(19, 21, 69, 1) 0%,
    rgba(56, 59, 118, 1) 100%
  );
}

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;
  font:
    15px/25px "Poppins",
    sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src:
    url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

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

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

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.sec {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.heading h5 {
  letter-spacing: 3px;
  color: var(--ct1);
}

.heading p {
  width: 70%;
}

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 30px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--g1);
  border: none;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  /* border: 2px solid var(--wt); */
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: var(--ct2);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1:hover::before {
  top: 0;
  height: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat";
  font-weight: 500;
  color: var(--wt);
  position: relative;
  z-index: 1;
}

.theme2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 54px;
  padding: 0 24px;
  border-radius: 5px;
  border: 2px solid var(--ct1);
  background-color: transparent;
  transition: all 0.5s ease;
}

.theme2:hover {
  background-color: var(--ct1);
}

.theme2-txt {
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat";
  font-weight: 500;
  color: #1d1d1d;
  transition: all 0.5s ease;
}

.theme2:hover .theme2-txt {
  color: var(--wt);
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Archivo", sans-serif;
  font-size: 103px;
  line-height: 110px;
  color: var(--bk);
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
}

h2 {
  font-family: "Archivo", sans-serif;
  font-size: 70px;
  line-height: 75px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

h3 {
  font-family: "Archivo", sans-serif;
  font-size: 55px;
  line-height: 60px;
  color: var(--bk);
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "Archivo", sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
  text-transform: capitalize;
}

h6 {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

p {
  color: var(--bk);
  font-size: 14px;
  line-height: 25px;
  font-family: "Poppins", serif;
  font-weight: 500;
  margin: 0;
  opacity: 0.7;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*Header Css Starts */
header {
  padding: 20px 0;
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  width: 100%;
  /* z-index: 1; */
}
.header-btn {
  display: flex;
  align-items: center;
  justify-content: end;
}
.menuSec {
  padding: 0px 0;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.menu-box ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 25px;
  font-family: "Poppins";
  color: var(--bk);
  font-weight: 500;
  overflow: hidden;
  border-radius: 5px;
  transition: ease-in;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}

.menu-box ul li a:hover {
  color: var(--wt);
}

.menu-box ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 0;
  border-bottom: 1px solid var(--ct1);
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 0;
  background-color: var(--ct1);
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::after {
  height: 100%;
  transition: ease-out;
  transition-delay: 0.5s;
  transition-duration: 0.5s;
}

.menu-box ul li a.active::after {
  height: 100%;
}

.menu-box ul li a.active::before {
  width: 100%;
}

.menu-box li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menu-box li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: block;
  margin: 0;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  float: none;
}

.menu-box li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menu-box ul ul ul {
  left: 100%;
  top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

/*Header Css Ends */

/*Banner Sec Css Starts */

section.banner-sec {
  background-image: url("../images/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
}

section.banner-sec .container,
section.banner-sec .row {
  display: flex;
  align-items: end;
  justify-content: start;
  height: 100%;
  width: 100%;
}

.banner-cont-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.banner-cont-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.banner-tag {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  height: 50px;
  padding: 0 20px;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid #00000038;
}

.banner-tag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 10px;
  background-color: var(--ct1);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  animation: pulseDot 1.8s infinite ease-in-out;
}

.banner-tag-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ct1);
  animation: pulseRing 1.8s infinite ease-out;
  z-index: -1;
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.banner-tag-txt h6 {
  font-size: 20px;
  line-height: 25px;
}

.banner-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.banner-txt p {
  width: 80%;
}

.banner-cont-trust-heading-user {
  width: 63%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 #00000038;
  background-color: var(--wt);
}

.banner-cont-trust-heading-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.banner-cont-trust-user-main {
  display: flex;
  align-items: center;
  justify-content: end;
}

.banner-cont-trust-user {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 0 20px 0 #00000024;
}

.banner-cont-trust-user img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.banner-cont-trust-heading h5 {
  font-size: 42px;
  line-height: 47px;
  font-weight: 600;
}

.user-ex {
  margin: 0 0 0 -20px;
}

.banner-img-con {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 650px;
  width: 100%;
}

.banner-grow-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
  position: absolute;
  top: 10%;
  right: -11%;
  background-color: var(--wt);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 #0000002e;
  padding: 20px;
}

.banner-served-main {
  position: absolute;
  bottom: -11%;
  left: -20%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 40px;
  padding: 20px;
  background-color: var(--ct2);
  border-radius: 10px;
  width: 50%;
}

.banner-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 660px;
  width: 100%;
}

.banner-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.banner-served-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.banner-served-heading h5 {
  font-size: 60px;
  line-height: 65px;
  color: var(--wt);
}

.banner-served-heading h6 {
  font-size: 14px;
  line-height: 1;
  color: var(--wt);
}

.banner-served-txt p {
  color: var(--wt);
  opacity: 1;
  font-weight: 300;
}

/*Banner Sec Css Ends */

/* About Sec Css Starts */

.about-sec {
  background-color: #f5f5f5;
  padding: 150px 0 0 0;
}

.about-heading {
  gap: 14px;
  margin: 0 auto 55px;
}

.about-heading h5 {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 5px;
  font-weight: 600;
  color: var(--ct1);
}

.about-heading h3 {
  font-size: 38px;
  line-height: 46px;
  font-weight: 700;
  color: var(--bk);
}

.about-heading p {
  width: 68%;
  margin: 0 auto;
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  color: #7b7b7b;
  opacity: 1;
}

.about-stats-row {
  row-gap: 30px;
}

.about-stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}

.about-stat-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.about-stat-dot {
  height: 7px;
  width: 7px;
  min-width: 7px;
  border-radius: 100px;
  background-color: var(--ct1);
}

.about-stat-label h6 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #7b7b7b;
  margin: 0;
}

.about-stat-card h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  color: var(--bk);
}

.about-stat-line {
  width: 100%;
  height: 1px;
  background-color: #d8d8d8;
}

.about-stat-card p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #8a8a8a;
  opacity: 1;
  width: 92%;
}

/* About Sec Css Ends */

/* Services Sec Css Starts */

.services-sec {
  background-color: #f5f5f5;
  overflow: hidden;
}

.services-top-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.services-arrows-main {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.services-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 46px;
  min-width: 46px;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid #cfcfcf;
  color: #cfcfcf;
  padding: 0;
  transition: all 0.5s ease;
}

.services-arrow i {
  font-size: 20px;
  line-height: 1;
}

.services-arrow:hover {
  background-color: var(--ct1);
  border-color: var(--ct1);
  color: var(--wt);
}

.services-next {
  background-color: var(--ct1);
  border-color: var(--ct1);
  color: var(--wt);
}

.services-line {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin-bottom: 24px;
}

/* important */
.services_slider {
  margin: 0 -12px;
}

.services-slide {
  /* padding: 0 12px; */
  /* box-sizing: border-box; */
}

.services-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.services-card-img {
  height: 570px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.services-card-img img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.services-card-content {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  width: 97%;
  background-color: #f5f5f5;
  border-radius: 14px;
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.services-card-txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-card-txt h4 {
  font-size: 21px;
  line-height: 26px;
  font-weight: 500;
  color: #1d1d1d;
}

.services-card-txt p {
  font-size: 14px;
  line-height: 32px;
  font-weight: 400;
  color: #8a8a8a;
  opacity: 1;
}

.services_slider .slick-list {
  overflow: hidden;
}

.services_slider .slick-track {
  display: flex;
}

.services_slider .slick-slide {
  height: inherit;
}

.services_slider .slick-slide > div {
  height: 100%;
}

.services_slider .slick-active {
  opacity: 1;
  margin: 0 10px;
}

/* Services Sec Css Ends */

/* Helps Sec Css Starts */
.helps-sec {
  position: relative;
  overflow: hidden;
}

.helps-sec .container {
  position: relative;
  z-index: 1;
}

.helps-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/helps-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.helps-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.helps-img {
  height: 540px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.helps-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.helps-txt-main {
  padding-left: 10px;
}

.helps-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.helps-heading h3 {
  font-size: 58px;
  line-height: 54px;
  font-weight: 700;
  color: var(--wt);
  max-width: 520px;
}

.helps-heading p {
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
  max-width: 490px;
}

.helps-list-main {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
}

.helps-list-main::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 2px;
  width: 1px;
  height: calc(100% - 22px);
  background-color: rgba(255, 255, 255, 0.18);
}

.helps-list-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  /* padding-left: 2px; */
  cursor: pointer;
  opacity: 0.42;
  transition: all 0.5s ease;
  z-index: 1;
}

.helps-list-item.active,
.helps-list-item:hover {
  opacity: 1;
}

.helps-list-dot {
  position: relative;
  top: 9px;
  height: 6px;
  width: 6px;
  min-width: 6px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.55);
  transition: all 0.5s ease;
  z-index: 2;
}

.helps-list-item.active .helps-list-dot,
.helps-list-item:hover .helps-list-dot {
  background-color: var(--wt);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.helps-list-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.helps-list-txt h4 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  color: var(--wt);
  transition: all 0.5s ease;
}

.helps-list-txt p {
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
  max-width: 470px;
  transition: all 0.5s ease;
}

.helps-list-item:hover .helps-list-txt h4 {
  transform: translateX(4px);
}

.helps-list-item:hover .helps-list-txt p {
  transform: translateX(4px);
}

/* Helps Sec Css Ends */

/* Choose Sec Css Starts */

.choose-sec {
  background-color: #f5f5f5;
  padding: 80px 0 0 0;
}

.choose-row {
  align-items: stretch;
}

.choose-left-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  /* padding-right: 20px; */
  gap: 0;
}

.choose-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  margin-bottom: 55px;
}

.choose-heading h3 {
  font-size: 76px;
  line-height: 0.95;
  font-weight: 600;
  color: #111111;
  text-transform: capitalize;
}

.choose-heading p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  color: #8e8e8e;
  opacity: 1;
  max-width: 760px;
}

.choose-img-main {
  width: 100%;
}

.choose-img {
  width: 100%;
  height: 375px;
  border-radius: 10px;
  overflow: hidden;
}

.choose-img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-card-main {
  height: 100%;
  background-color: #f0f0f0;
  border-radius: 14px;
  padding: 70px 50px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.choose-card-top-txt {
  margin-bottom: 34px;
}

.choose-card-top-txt p {
  font-size: 14px;
  line-height: 27px;
  font-weight: 400;
  color: #8e8e8e;
  opacity: 1;
}

.choose-list-main {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-bottom: 34px;
}

.choose-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}

.choose-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
  /* min-width: 28px; */
  /* border-radius: 100px; */
  /* border: 2px solid #ff3b63; */
  /* margin-top: 2px; */
}

.choose-list-icon i {
  font-size: 14px;
  line-height: 1;
  color: #ff3b63;
}

.choose-list-txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.choose-list-txt h4 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: #1b1b1b;
}

.choose-list-txt p {
  font-size: 14px;
  line-height: 27px;
  font-weight: 400;
  color: #8e8e8e;
  opacity: 1;
  max-width: 420px;
}

.choose-btn .theme1 {
  min-width: 208px;
}

/* Choose Sec Css Ends */
/* Testimonial Sec Css Starts */

.testimonial-sec {
  background-color: #f5f5f5;
  overflow: hidden;
}

.testimonial-top-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.testimonial-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
}

.testimonial-heading h5 {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 6px;
  color: var(--ct1);
  font-weight: 600;
}

.testimonial-arrows-main {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.testimonial-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  width: 58px;
  min-width: 58px;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid #d6d6d6;
  color: #d6d6d6;
  padding: 0;
  transition: all 0.4s ease;
}

.testimonial-arrow i {
  font-size: 24px;
  line-height: 1;
}

.testimonial-arrow:hover {
  background-color: var(--ct1);
  border-color: var(--ct1);
  color: var(--wt);
}

.testimonial-next {
  background-color: var(--ct1);
  border-color: var(--ct1);
  color: var(--wt);
}

/* slider */
/* .testimonial_slider {
  margin: 0 -12px;
} */

.testimonial_slider .slick-list {
  padding: 0 150px !important;
  overflow: hidden;
}

.testimonial_slider .slick-track {
  /* display: flex !important; */
  /* align-items: center; */
}

.testimonial_slider .slick-slide {
  /* height: auto; */
  opacity: 1 !important;
  /* transition: all 0.4s ease; */
  margin: 0 10px;
}

.testimonial-slide {
  width: 213px;
  /* padding: 0 12px; */
  /* box-sizing: border-box; */
}

.testimonial-box {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-main-img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.testimonial-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-main-content {
  display: none;
}

/* center active slide */
.testimonial-slide.slick-center {
  width: 500px !important;
  /* padding: 0; */
}

.testimonial-slide.slick-center .testimonial-box {
  background: linear-gradient(180deg, #ff2e61 0%, #ff0f55 100%);
  padding: 20px;
  display: flex;
  /* grid-template-columns: 250px 1fr; */
  gap: 20px;
  align-items: center;
  justify-content: start;
}

.testimonial-slide.slick-center .testimonial-main-img {
  height: 100%;
  min-height: 300px;
  border-radius: 14px;
  width: 50%;
}

.testimonial-slide.slick-center .testimonial-main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  width: 50%;
}

.testimonial-rating-qoute {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-rating i {
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.testimonial-qoute i {
  font-size: 78px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.28);
}

.testimonial-name {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-name h4 {
  font-size: 25px;
  line-height: 34px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.testimonial-name span {
  font-size: 12px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-text p {
  font-size: 12px;
  line-height: 25px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* non active slides = only image */
.testimonial-slide:not(.slick-center) .testimonial-box {
  background: transparent;
  padding: 0;
  display: block;
}

.testimonial-slide:not(.slick-center) .testimonial-main-img {
  height: 100%;
}

.testimonial-slide:not(.slick-center) .testimonial-main-content {
  display: none !important;
}

/* Testimonial Sec Css Ends */

/* Footer Sec Css Starts */

.footer-sec {
  position: relative;
  background-color: #f5f5f5;
}

.footer-top-sec {
  position: relative;
  padding: 60px 0 0;
  z-index: 2;
}

.footer-contact-main {
  /* padding: 10px 0 0; */
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.footer-contact-heading {
  /* margin-bottom: 36px; */
}

.footer-contact-heading h3 {
  font-size: 58px;
  line-height: 1;
  font-weight: 600;
  color: #000;
}

.footer-contact-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 52px;
  min-width: 52px;
  border-radius: 100px;
  background: var(--g1);
}

.footer-contact-icon i {
  font-size: 20px;
  line-height: 1;
  color: var(--wt);
}

.footer-contact-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-txt span {
  font-size: 15px;
  line-height: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #8a8a8a;
}

.footer-contact-txt a {
  font-size: 18px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #1a1a1a;
}

.footer-contact-txt a:hover {
  color: var(--ct1);
}

.footer-form-card {
  background-color: #fff;
  /* border-radius: 5px; */
  padding: 42px 36px 34px;
  box-shadow: 0 0 20px 0 #00000017;
  position: relative;
  z-index: 3;
  /* margin-bottom: -60px; */
}

.footer-form-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-form-heading p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  color: #8a8a8a;
  opacity: 1;
  max-width: 520px;
}

.footer-form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-field input,
.footer-field textarea {
  width: 100%;
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  background-color: transparent;
  padding: 0 22px;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
}

.footer-field input {
  height: 62px;
}

.footer-field textarea {
  height: 140px;
  padding-top: 18px;
  resize: none;
}

.footer-field input::placeholder,
.footer-field textarea::placeholder {
  color: #8a8a8a;
  opacity: 1;
}

.footer-form-btn {
  margin-top: 6px;
}

.footer-form-btn .theme1 {
  width: 100%;
}

.footer-main-sec {
  background: linear-gradient(90deg, #241f1f 0%, #2a2323 100%);
  margin-top: -340px;
  padding: 48px 0 0;
  position: relative;
}

.footer-main-wrap {
  width: 55%;
  display: flex;
  align-items: stretch;
  justify-content: start;
  gap: 40px;
  position: relative;
  z-index: 9;
  padding-bottom: 30px;
}

.footer-brand-main {
  width: 52%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-logo h3 {
  font-size: 62px;
  line-height: 0.9;
  font-weight: 700;
  color: var(--wt);
}

.footer-logo h4 {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: var(--wt);
}

.footer-brand-txt p {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
  opacity: 1;
  max-width: 320px;
}

.footer-social-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-social-main h4 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--wt);
}

.footer-social-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.5s ease;
}

.footer-social-icon i {
  font-size: 18px;
  line-height: 1;
}

.footer-social-icon:hover {
  background: var(--g1);
  border-color: transparent;
  color: var(--wt);
}

.footer-main-divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.18);
}

.footer-links-main {
  width: 28%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-links-main h4 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--wt);
}

.footer-links-main ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links-main ul li a {
  font-size: 15px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
  transition: all 0.5s ease;
}

.footer-links-main ul li a:hover {
  color: var(--wt);
  padding-left: 4px;
}

.footer-bottom-sec {
  width: 100%;
  position: relative;
}

.footer-bottom-sec::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 49%;
  background-color: #272121;
}

.footer-bottom-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 55%;
  padding: 36px 0 30px;
  /* background-color: #ffffff; */
  position: relative;
}

.footer-bottom-main p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #2b2b2b;
  opacity: 1;
}

/* Footer Sec Css Ends */


@media only screen and (min-width: 1601px) and (max-width: 1920px) {
    section.banner-sec {
    height: 85vh;
}
}
