@import url("https://fonts.googleapis.com/css2?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: #92826c;
  --ct2: #273b4e;
  --ct3: #2d3d38;
  --ct4: #fdf7eb;
  --wt: #fff;
  --bk: #000;
  --mbk: #6b7280;
  --shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
  overflow-x: hidden;
}

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

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;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  width: 60%;
  margin: 0 auto 30px auto;
}

/***** 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;
}

@font-face {
  font-family: "TrajanPro";
  src: url("../fonts/TrajanPro-Regular.ttf");
}

/***** 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;
}

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  padding: 0 40px;
  background-color: var(--ct1);
  border-radius: 100px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

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

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

.theme1 span.theme1-txt {
  position: relative;
  font-size: 14px;
  line-height: 1;
  color: var(--wt);
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

/* 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: "TrajanPro";
  font-size: 67px;
  line-height: 73px;
  color: var(--wt);
  font-weight: 500;
  margin: 0;
}

h2 {
  font-family: "TrajanPro";
  font-size: 50px;
  line-height: 55px;
  color: var(--ct2);
  font-weight: 500;
  margin: 0;
}

h3 {
  font-family: "TrajanPro";
  font-size: 45px;
  line-height: 50px;
  color: var(--bk);
  font-weight: 400;
  margin: 0;
}

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

h5 {
  font-family: "TrajanPro";
  font-size: 20px;
  line-height: 25px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

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

p {
  color: var(--ct3);
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0;
  opacity: 0.7;
}

select {
  background: var(--wt) 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;
}
.header-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  margin: 0 auto;
}
.header-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40%;
  border-top: 1px solid #00000021;
}

.header-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 40%;
  border-top: 1px solid #00000021;
}

/* .menuSec {
  padding: 0px 0;
}

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

.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 10px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  font-family: "Poppins";
  color: var(--bk);
  font-weight: 400;
}

.menu-box ul li a:hover,
.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: var(--bk)000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: var(--wt) !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: var(--wt);
  color: var(--bk)000 !important;
}

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

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

/*Header Css Ends */

/*Banner Sec Css Starts */

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

section.banner-sec .container-fluid {
  position: relative;
  z-index: 0;
}

section.banner-sec .container-fluid,
section.banner-sec .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

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

.banner_slider .slick-slide {
  opacity: 1;
}

.banner_slider .draggable {
  padding: 0 100px !important;
}

.banner_slider .slick-slide {
  margin: 0 5px;
}

.banner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-img-main {
  /* width: 30%; */
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  height: 300px;
}

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

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

.banner-txt-main {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin: 0 auto;
  width: 75%;
}

.banner-heading {
  width: 100%;
  position: relative;
}

.banner-heading h1 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  width: 100%;
  text-transform: uppercase;
}

.banner-heading h1 span {
  position: relative;
  color: var(--ct2);
  width: 100%;
  z-index: 1;
  padding: 15px 0 0 0;
}

.banner-heading h1 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--ct4);
  z-index: -1;
}

.banner-txt {
  width: 94%;
}

.banner-txt p {
  font-family: "TrajanPro";
  text-transform: uppercase;
  color: var(--wt);
  opacity: 1;
}

/*Banner Sec Css Ends */

/*About Us Sec Css Starts */

section.about-sec {
  padding: 0 0 80px 0;
}

.about-img-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 700px;
  width: 100%;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  width: 100%;
  margin: -230px 0 0 0;
}

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

.about-con-main {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
  background-color: var(--ct1);
  padding: 20px;
  width: 40%;
}

.about-con-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid var(--wt);
}

.about-con-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.about-con-icon a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--ct3);
  height: 0;
  width: 0;
  border-radius: 100px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.about-con-icon a:hover::before {
  height: 100%;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.about-con-icon a i {
  color: var(--wt);
  font-size: 25px;
  position: relative;
}

.about-con-txt h5 {
  font-size: 15px;
  line-height: 20px;
  color: var(--wt);
  text-transform: uppercase;
}

.about-con-txt p {
  color: var(--wt);
}

.about-txt-main {
  position: relative;
  padding: 80px 0 0 40px;
  height: 100%;
  z-index: 2;
}

.about-txt-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--wt);
  z-index: -1;
}

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

.about-txt ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 80px;
}

.about-txt ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.about-txt ul li img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.about-txt ul li p {
  text-transform: uppercase;
  font-weight: 600;
  opacity: 1;
}

.about-counter-wrap {
  margin: 100px 0 0 0;
}

.about-counter-wrap ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-counter-txt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  gap: 10px;
}

.about-counter-txt:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-right: 1px solid var(--bk);
  opacity: 0.2;
}

.about-counter-txt:after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 10px;
  border-radius: 100px;
  background-color: var(--ct1);
}

.about-counter-wrap ul li:last-child .about-counter-txt:before,
.about-counter-wrap ul li:last-child .about-counter-txt:after {
  display: none;
}

.about-counter-txt h3 {
  color: var(--ct2);
}

.about-counter-txt h6 {
  color: var(--ct2);
  font-family: "Montserrat";
  text-transform: uppercase;
}

/*About Us Sec Css Ends */

/*Products Sec Css Starts */

.products_slider .draggable {
  padding: 0 350px !important;
}

.slick-slide {
  opacity: 1;
}

.products-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  height: 580px;
  width: 100%;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.products-card-txt-main {
  position: absolute;
  bottom: 4%;
  left: 4%;
  padding: 0 30px;
  background-color: var(--wt);
  height: 0;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 15px;
  overflow: hidden;
  transition: ease-out;
  transition-duration: 0.5s;
}

.products_slider .slick-current .products-card-txt-main {
  height: auto;
  padding: 30px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.products-card-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.products-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

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

.products-card-heading {
  position: relative;
  display: inline-flex;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.products-card-heading h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #0000003b;
}

.products-card-heading h3 {
  position: relative;
  font-size: 27px;
  line-height: 32px;
  color: var(--ct2);
  padding: 0 0 20px 0;
  margin: 0 0 10px 0;
}

.products-card-features-wrap ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
}

.products-card-features-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
}

.products-card-features-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.products-card-features-txt h6 {
  font-size: 18px;
  line-height: 23px;
  color: var(--ct2);
}

/*Products Sec Css Ends */

/*Trust Sec Css Starts */

.trust-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  width: 95%;
}

.trust-list ul {
  column-count: 2;
  gap: 40px;
}

.trust-list ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 30px;
  margin: 0 0 20px 0;
}

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

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

.trust-bototm-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 375px;
  width: 100%;
}

.trust-bototm-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

/*Trust Sec Css Ends */

/*Experiences Sec Css Starts */

.a-track-slider .slick-slide {
  margin: 0;
}

.experiences-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 70%;
  margin: 0 auto;
  padding: 0 0 0 30px;
  border-left: 1px solid #0000001f;
}

.experiences-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 335px;
  width: 100%;
}

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

.experiences-card-txt-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 10px; */
  width: 100%;
}

.experiences-card-txt {
  width: 70%;
}

.experiences-card-txt h5 {
  font-size: 16px;
  line-height: 25px;
  color: var(--ct2);
}

.experiences-card-number {
  width: 30%;
}

.experiences-card-number h5 {
  font-size: 44px;
  line-height: 50px;
  color: var(--ct1);
  opacity: 0.5;
}

/*Experiences Sec Css Ends */

/*Gallery Sec Css Starts */

.gallery-heading {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  margin: 0 0 30px 0;
}

.gallery-heading h2 {
  width: 60%;
}

.gallery-heading p {
  width: 40%;
}

.gallery-card-wrpa {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.gallery-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 145px;
  width: 100%;
  overflow: hidden;
  padding: 5px;
}

.gallery-right-img {
  height: 580px;
}

.gallery-card-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

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

.gallery-card-img a img.g1 {
  object-position: 0 -50px;
}

.gallery-card-img a img.g2 {
  object-position: 0 -180px;
}

.gallery-card-img a img.g3 {
  object-position: 0 -125px;
}

.gallery-card-img a img.g4 {
  object-position: 0 -95px;
}

/*Gallery Sec Css Ends */

/*Quote Sec Css Ends */

section.quote-sec {
  position: relative;
  background-image: url("../images/quote-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 80%;
  margin: 0 auto;
}

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

section.quote-sec .container {
  position: relative;
}

.quote-txt-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  width: 80%;
  margin: 0 auto;
}

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

.quote-txt * {
  color: var(--wt);
}

/*Quote Sec Css Ends */

/*Testimonial Sec Starts*/

section.testimonial-sec {
  background-color: var(--ct4);
  padding-bottom: 90px;
}

.testimonial-heading {
  margin-bottom: 45px;
}

.testimonial-heading h2 {
  text-transform: uppercase;
}

.testimonial-heading p {
  width: 82%;
  margin: 0 auto;
  text-align: center;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card-main {
  background-color: var(--wt);
  padding: 28px 22px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  margin-bottom: 18px;
}

.testimonial-rating ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 2px;
}

.testimonial-rating ul li i {
  color: #f4a623;
  font-size: 11px;
}

.testimonial-rating span {
  font-size: 12px;
  line-height: 1;
  color: var(--ct2);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.testimonial-rating img {
  height: 14px;
  width: 14px;
  object-fit: contain;
}

.testimonial-txt {
  margin-bottom: 26px;
}

.testimonial-txt p {
  font-size: 13px;
  line-height: 24px;
  color: var(--ct2);
  opacity: 0.75;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
}

.testimonial-user-img {
  height: 42px;
  width: 42px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.testimonial-user-name h6 {
  font-size: 15px;
  line-height: 20px;
  color: var(--ct2);
  text-transform: uppercase;
}

/*Testimonial Sec Ends*/

/*Contact Sec Starts*/

section.contact-sec {
  background-color: var(--ct2);
  padding: 80px 0 20px;
  overflow: hidden;
}

.contact-row {
  row-gap: 40px;
}

.contact-left-main {
  width: 72%;
  padding-left: 30px;
}

.contact-left-heading {
  margin-bottom: 40px;
}

.contact-left-heading h2 {
  color: var(--wt);
  text-transform: uppercase;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  background-color: #f6f3ef;
  border: 1px solid #c9bda8;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 14px;
  padding: 18px 16px;
  width: 300px;
  border-left: 5px solid var(--ct1);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--ct1);
  font-size: 18px;
}

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

.contact-info-txt span {
  color: var(--ct1);
  font-size: 11px;
  line-height: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-info-txt a {
  color: var(--ct2);
  font-size: 13px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

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

.contact-form-main {
  /* padding: 25px 20px 0 20px; */
}

.contact-field {
  margin-bottom: 26px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 0 14px 0;
  color: var(--wt);
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
}

.contact-field textarea {
  height: 110px;
  resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-btn {
  margin-top: 10px;
}

.contact-btn .theme1 {
  border: none;
  cursor: pointer;
  height: 62px;
  padding: 0 34px;
  background-color: var(--ct1);
}

.contact-footer-main {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 55px;
  padding: 30px 0 16px;
}

.contact-footer-main::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-footer-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-footer-logo img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

.contact-footer-social ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.contact-footer-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 34px;
  border-radius: 100px;
  background-color: var(--ct1);
  color: var(--wt);
  transition: 0.5s ease;
}

.contact-footer-social ul li a:hover {
  background-color: var(--wt);
  color: var(--ct2);
}

.contact-footer-social ul li a i {
  font-size: 13px;
}

.contact-copyright {
  text-align: center;
  padding-top: 18px;
}

.contact-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 18px;
}

/*Contact Sec Ends*/
