@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/***** General CSS *****/

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 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

/* 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;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 70%;
  margin: 0 auto 20px auto;
  gap: 20px;
}

/***** Font Files *****/

@font-face {
  font-family: "ClashDisplay";
  src: url(../fonts/ClashDisplay-Bold.otf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Medium";
  src: url(../fonts/ClashDisplay-Medium.otf);
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.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: "ClashDisplay";
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: "ClashDisplay";
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0;
}

h3 {
  font-family: "ClashDisplay";
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: "ClashDisplay";
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: "ClashDisplay";
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

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 start */

.menuSec {
  /* padding: 15px 20px; */
  /* background-color: #fff; */
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menuSec img {
  margin: 0;
  filter: brightness(0) saturate(100%) invert(99%) sepia(73%) saturate(2%)
    hue-rotate(282deg) brightness(110%) contrast(100%);
}

header {
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 9999;
  width: 100%;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  justify-content: space-between;
  display: flex;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  padding: 10px 23px;
  text-decoration: none;
  color: #1e1e1e;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

/* Bottom Border */
.menuSec ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 0;
  height: 2px;
  background-color: #43ae23;
  transition: width 0.3s ease;
  display: none;
}

/* Background with inner spacing */
.menuSec ul li a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 5px;
  height: 0;
  background-color: #ea7235;
  transition: height 0.3s ease;
  z-index: -1;
  border-radius: 3px;
}

.menuSec ul li a:hover::before {
  width: calc(100% - 20px);
}

.menuSec ul li a:hover::after {
  height: calc(100% - 10px);
}

.menuSec ul li a:hover {
  color: #fff;
}

.menuSec ul li a:hover {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec a.btn-1 {
  margin: 0 0 0 auto;
}

.menuSec .row {
  align-items: center;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.add-padding {
  width: 100%;
  margin: 0px auto;
  max-width: 1700px;
  padding: 0 3%;
}

/*banner css start */

section.banner {
  z-index: 1;
  display: flex;
  overflow: hidden;
  min-height: 750px;
  position: relative;
  padding-top: 150px;
  padding-bottom: 40px;
  align-items: flex-end;
  justify-content: center;
  background-image: url(../images/banner.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

img.banner-route-img {
  width: 30%;
  height: 50%;
  right: -13%;
  bottom: -3%;
  position: absolute;
  object-fit: contain;
  animation: route 12s ease-in-out infinite;
}
img.banner-route-img-2 {
  width: 25%;
  height: 27%;
  left: -12%;
  top: -11%;
  position: absolute;
  object-fit: contain;
  animation: route 12s ease-in-out infinite;
}
.bot-abt {
  width: 10%;
  height: 14%;
  position: absolute;
  top: -41px;
  left: -39px;
  animation: route 12s ease-in-out infinite;
  object-fit: contain;
}
/* Route animation */
@keyframes route {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* section.banner:before {
  top: 0;
  left: 0;
  z-index: -1;
  width: 143%;
  content: "";
  height: 120%;
  position: absolute;
  background-image: url("../images/banner-before.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
} */

a.btn-1 {
  color: #fff;
  display: block;
  font-size: 15px;
  width: fit-content;
  padding: 13px 25px;
  border-radius: 100px;
  text-transform: uppercase;
  background-color: #ea7235;
  font-family: "Roboto", sans-serif;
  text-decoration: none;

  /* Animation */
  transition: all 0.3s ease;
}

/* Hover Effect */
a.btn-1:hover {
  background-color: #d95f25;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(234, 114, 53, 0.5);
}

.banner-txt {
  padding: 80px 0px 120px;
}

.banner-txt h1 {
  font-size: 65px;
  line-height: 1;
  color: #fff;
}

.banner-txt h1 span {
  display: block;
}

.banner-txt p {
  font-size: 14px;
  color: #fff;
  width: 71%;
  margin-bottom: 30px;
}

.ban-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 79%;
}

.ban-bot ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: unset;
}

.ban-bot ul li a i {
  font-size: 15px;
  color: #fff;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in;
  transition-duration: 0.5s;
}

.ban-bot h6 {
  font-size: 15px;
  margin: unset;
  color: #fff;
}

.ban-bot::before {
  position: absolute;
  top: 20px;
  left: -120px;
  width: 56%;
  margin: 0 auto;
  right: 0;
  content: "";
  height: 1px;
  background-color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.ban-bot ul li a i:hover {
  background-color: #e2712b;
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

/*banner css end*/

/*Inner Banner Css Starts*/

section.inner-banner {
  min-height: 600px;
  align-items: center;
  overflow: hidden;
}

section.inner-banner .banner-txt {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section.inner-banner:before {
  height: 100%;
  width: 100%;
  background: #01362fd4;
  z-index: -9;
}

/*Inner Banner Css Ends*/

/* let talk sec */

.let-talk-sec {
  position: relative;
  padding: 0;
}

.let-talk-sec::before {
  left: 0;
  width: 100%;
  z-index: -1;
  content: "";
  bottom: 100%;
  height: 150px;
  position: absolute;
  background-color: var(--bodyColor);
}

.let-talk-box {
  padding: 60px 5%;
  border-radius: 20px;
  background-color: #f6f5f4;
}

.let-talk-box label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
  text-transform: capitalize;
}

.let-talk-box input {
  width: 100%;
  height: 80px;
  font-weight: 600;
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 10px;
  color: #000;
  border: 1px solid #00000029;
  background-color: #0000;
}

.let-talk-box input::placeholder {
  color: #93a59c;
  font-weight: 400;
  text-transform: uppercase;
}

.let-talk-box-btn {
  display: flex;
  margin-top: 25px;
  align-items: center;
  justify-content: center;
}

.let-talk-box .checkbox {
  gap: 10px;
  margin: 0px;
  display: flex;
  align-items: center;
  color: var(--themeColor);
  font-family: "nexa-regular";
}

.let-talk-box .checkbox input {
  display: none;
}

.let-talk-box .checkbox .checkmark {
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: relative;
  border-radius: 50px;
  background-color: transparent;
  border: 2px solid var(--themeColor2);
}

.let-talk-box .checkbox .checkmark::after {
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  content: "";
  position: absolute;
  border-radius: 5px;
  background-color: var(--white);
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease-in-out;
}

.let-talk-box .checkbox input:checked + .checkmark {
  background-color: var(--bodyColor);
}

.let-talk-box .checkbox input:checked + .checkmark::after {
  background-color: var(--themeColor2);
}

.let-talk-box .checkbox .label {
  cursor: pointer;
  font-weight: 700;
  user-select: none;
  margin-right: 10px;
}

.let-talk-box-btn a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lets Talk Css Ends */

/*Testimonl Start*/

.client_name h4 {
  font-size: 20px;
  color: #000;
  margin: 10px 0 0;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  font-family: "ClashDisplay-Medium";
}

.client_name ul {
  margin-bottom: 0;
}

.client_name p {
  font-size: 14px;
  font-style: italic;
  color: #7c7c7c;
  margin-bottom: 0;
  line-height: 15px;
}

.client_name ul li {
  display: inline-block;
  font-size: 14px;
  color: #ffc400;
}

.testimonial_content ul {
  gap: 10px;
  display: flex;
  align-items: center;
  margin: 0;
}

.testimonial_content ul li i {
  display: inline-block;
  font-size: 14px;
  color: #fd8f00;
}

.client_description {
  display: flex;
  align-items: end;
  margin-top: 0;
  padding: 0 15px;
  justify-content: space-between;
}

.client_iamge img {
  height: 100px;
  width: 100px;
  /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); */
  object-fit: cover;
  margin-top: -30px;
  border-radius: 100px;
  overflow: hidden;
}

.testimonial_content {
  gap: 30px;
  display: flex;
  padding: 50px;
  border-radius: 0;
  text-align: right;
  align-items: start;
  margin: 20px 0 0px 0px;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 54px 0px rgba(0, 0, 0, 0.08);
}

.testimonial-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  height: 100%;
}

.testimonial_content p {
  text-align: left;
  opacity: 1;
}

.testimonial_content img {
  width: initial;
}

.testimonial_slider .slick-slide {
  margin: 0px 10px;
  opacity: 1;
}

.testimonial_sec {
  padding: 100px 0 80px 0;
  position: relative;
}

.client_name h5 {
  font-size: 12px;
  color: #ccc;
  text-transform: capitalize;
  color: #000000b5;
  margin: 0;
  font-family: "ClashDisplay-Medium";
}

.property-head {
  margin: 0;
}

/* .testimonial_slider {
  width: 90%;
  margin: 0 auto;
} */

.testimonial_slider .draggable {
  padding: 0 150px !important;
}

/*Testi End*/

/*work-it start*/
section.how-it-works {
  padding-bottom: 100px;
}

.text-center h3 {
  font-size: 55px;
  line-height: 1;
  color: #212121;
  margin-bottom: 10px;
}

.text-center p {
  color: #131314;
  font-size: 14px;
  margin: 0 auto;
  width: 55%;
}

.shap-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.shap-img {
  margin-bottom: 50px;
}

.work-min-bx {
  width: 95%;
  padding: 25px;
  margin: 40px auto;
  border-radius: 10px;
  background-color: #f6f5f4;
}

.work-min-bx.work-min-bx-float-top {
  animation: floatTop 6s ease-in-out infinite;
}

@keyframes floatTop {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(40px);
  }

  100% {
    transform: translateY(0);
  }
}

.work-min-bx.work-min-bx-float-bottom {
  animation: floatBottom 6s ease-in-out infinite;
}

@keyframes floatBottom {
  0% {
    transform: translateY(40px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(40px);
  }
}

.work-min-bx h5 {
  font-size: 18px;
  color: #242424;
  margin-bottom: 10px;
}

.work-min-bx p {
  font-size: 13px;
  color: #0e0d0d;
  margin: unset;
}

.text-center {
  margin-bottom: 40px;
}

/*works end*/

/*testimonials start*/
.img-test-txt img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

section.real-stories {
  padding-bottom: 100px;
}

.main-test-bx {
  display: flex;
  align-items: baseline;
  gap: 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 54px 0px rgba(0, 0, 0, 0.06);
  padding: 40px 15px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.para ul {
  display: flex;
  gap: 10px;
}

.para ul li h6 {
  font-size: 14px;
  color: #0e0e0e;
  margin-bottom: 0;
}

.para ul li i {
  color: #fd8f00;
}

.slid-sto .slick-active {
  opacity: 1;
}

.coma i {
  font-size: 40px;
  color: #ea7235;
}

.para p {
  font-size: 14px;
  color: #a3a3a3;
}

.slid-sto .slick-list {
  overflow: unset;
}

.slid-sto .slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 1;
}

.img-test-txt {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: -21px;
}

.img-test-txt h5 {
  font-size: 19px;
  color: #0e0e0e;
  margin: unset;
  line-height: 19px;
}

.img-test-txt h5 span {
  display: block;
  font-size: 12px;
  color: #000;
  font-weight: 300;
}

/*testimonaials end*/

/*Faqs Sec css Ends*/

section.faqs-main {
  padding: 80px 0;
}

.faq-heading h3 {
  width: 100%;
}

.faq-txt-main {
  padding: 0 40px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  /* width: 80%; */
  /* margin: 100px 0 0 0; */
}

/* .faq-txt-main::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -100px;
    height: 680px;
    width: 100%;
    background-color: #262261;
    z-index: -1;
    border-radius: 30px;
} */

.accordion-button::after {
  content: "\f067";
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none !important;
  font-size: 15px;
  border-radius: 100px;
  color: #000;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}

.accordion-button:not(.collapsed)::after {
  content: "\f068";
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none !important;
  font-size: 15px;
  border-radius: 100px;
  color: #000;
  /* padding: 0 0 7px 0; */
  transform: rotate(-180deg);
}

.accordion-button {
  font-size: 13px;
  line-height: 1;
  color: #000;
  font-family: "Montserrat";
  font-weight: 500;
  padding: 10px 20px;
}

.accordion-item {
  margin: 20px 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #6c757d5e !important;
  border-radius: 0 !important;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.2s;
}

.accordion-button:focus {
  border-color: #0000;
  box-shadow: none;
  outline: none;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #fff;
}

.accordion-body p {
  display: block;
  font-size: 14px;
  line-height: 28px;
  color: #000;
  font-family: "Roboto";
  margin: 0;
}

.accordion-header {
  margin: 0 !important;
  background-color: #0000 !important;
  color: #000;
}

.accordion-body {
  padding: 10px 0;
}

.accordion-item h2 button {
  font-size: 20px;
  line-height: 25px;
  margin: 0;
  text-transform: capitalize;
  font-family: "ClashDisplay-Medium";
}

.accordion-item h2 button.accordion-button.collapsed {
  color: #000;
  background-color: #0000;
  font-size: 18px;
  line-height: 25px;
  font-family: "ClashDisplay-Medium";
  padding: 10px 0;
}

.accordion-item h2 button.accordion-button {
  color: #000;
  background-color: #0000 !important;
  padding: 10px 0;
  font-size: 18px;
}

.faqs-img img {
  height: 625px;
  width: 100%;
  object-fit: cover;
  object-position: 20%;
  border-radius: 5px;
}

.faqs-bottom-video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 665px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 150px 0 0;
  overflow: hidden;
}

.faqs-bottom-video img {
  height: 100%;
  width: 100%;
}

.faqs-bottom-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.faq-box {
  padding: 20px 30px;
  background-color: #f6f5f4;
  border-radius: 20px;
  overflow: hidden;
}

.accordion-item {
  background-color: #0000;
  margin: 0;
}

.faqs-btn {
  margin: 70px 0 0 0;
}

/*Faqs Sec css Ends*/

/* Footer Css Starts */

footer {
  padding: 70px 0 0 0;
  position: relative;
  z-index: 0;
  background-color: #01362f;
  overflow: hidden;
}

.foot-bottom-txt {
  margin-top: 40px;
  padding: 20px 0px;
  /* text-align: center; */
  border-top: 1px solid #ffffff2b;
}

footer h5 {
  position: relative;
  font-size: 22px;
  color: white;
  padding-left: 0px;
  text-transform: capitalize;
  line-height: 25px;
  margin-bottom: 50px;
}

footer h5:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 1px;
  background: #fff;
  top: 50px;
  left: 0;
}

p.ftr_leftp {
  font-size: 14px;
  color: #767676;
  line-height: 24px;
  width: 85%;
  margin-bottom: 50px;
  margin-top: 35px;
  position: relative;
}

p.ftr_leftp::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 1px;
  background: #fff;
  top: -14px;
  left: 0;
}

.quick-links a:hover {
  color: #add0c5;
}

img.img-fluid {
  width: 100%;
}

.quick-links a {
  font-size: 14px;
  color: #ffffffc9;
  line-height: 36px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

footer:before {
  /* content: ''; */
  position: absolute;
  left: 0;
  top: -17%;
  height: 110%;
  width: 100%;
  background-color: #0a0a0a;
  z-index: -1;
  border-radius: 50px 50px 0 0;
}

.news-letter .container {
  padding: 40px 40px;
  position: relative;
  z-index: 2;
  background-color: #ab492e;
  box-shadow: 0px 3px 46px 0px rgba(93, 93, 93, 0.1);
  width: 70%;
  border-radius: 20px;
}

.ftr_top_btn a {
  background-color: #244065;
  color: #fff;
  padding: 15px 60px;
  font-family: "Trajan";
  font-size: 17px;
}

.ftr_top_btn a:hover {
  border: 1px solid #244065;
  background-color: #fff;
  color: #244065;
}

.ftr_top_btn {
  text-align: end;
}

footer .container-fluid {
  margin: 0 3%;
  padding-bottom: 20px;
}

ul.contList li a {
  color: #ffffffc7;
}

ul.contList li a i {
  color: #fff;
  font-size: 16px;
  margin-right: 20px;
}

ul.contList {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column-reverse;
  gap: 15px;
}

li.contListli a {
  display: flex;
  align-items: center;
  justify-content: start;
  font-family: "Roboto";
}

li.contListli i {
  color: #fff;
}

/* p.extrap {

    font-size: 14px;

    width: 70%;

    color: #767676;

} */

.box-text ul li i {
  font-size: 20px;
}

li.contListli {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
}

.ftr_top_text h2 {
  color: #fff;
  font-size: 65px;
}

.ftr_top_text {
  text-align: center;
}

.ftr_top_text p {
  color: #d7a89b;
  width: 60%;
  margin: 10px auto;
}

button.themebtn.ftr_btn {
  width: 370px;
}

span.themebtn_txt.ftr_btn {
  width: 200px;
}

.ftr_top_text form input {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #c48270;
  border-radius: 30px;
  background-color: transparent;
  color: #fff;
}

.ftr_top_text form input::placeholder {
  color: #fff;
}

.ftr_top_text form {
  width: 70%;
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
  gap: 15px;
}

.foot-bottom {
  /* border-top: 1px solid #404040; */
  position: relative;
}

.foot-bottom p {
  color: #fff;
  /* text-align: center; */
  font-size: 14px;
  margin: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.foot-bottom .container-fluid {
  margin: 0 3%;
  padding-bottom: 0;
}

.footer-priv-link-main {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: end;
}

.footer-priv-link ul {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 20px; */
  margin: 0;
}

.footer-priv-link ul li:nth-child(2) {
  padding: 0 40px;
  margin: 0 40px;
  border: 3px solid #ffffff57;
  border-top: unset;
  border-bottom: unset;
}

.footer-priv-link ul li p {
  font-size: 15px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

img.ft-2 {
  position: absolute;
  bottom: -40%;
  right: 0;
  width: 400px;
  height: 400px;
  z-index: 0;
  animation: route 12s ease-in-out infinite;
  object-fit: cover;
}

img.ft-1 {
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 10%;
  height: 22%;
  z-index: 0;
  object-fit: contain;
  animation: route 12s ease-in-out infinite;
}
/* Footer Css Ends */

/* Thank You Page Css Start */

.thank-you-sec {
  display: flex;
  min-height: 100dvh;
  align-items: center;
  padding: 150px 0px 80px;
  justify-content: center;
  background-image: url("../images/thank-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.thank-you-sec::before {
  left: 0;
  bottom: 0;
  height: 30%;
  width: 100%;
  content: "";
  position: absolute;
  background-color: var(--bodyColor);
}

.thank-you-box {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  padding: 100px 0;
  width: 85%;
  margin: 0 auto;
}

.thank-txt {
  gap: 20px;
  z-index: 1;
  display: flex;
  /* min-height: 550px; */
  text-align: center;
  position: relative;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 100px;
}

.thank-txt h2 {
  text-transform: capitalize;
  font-size: 100px;
  line-height: 1;
  color: #000;
}

.thank-txt h4 {
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
  color: #000;
  border-bottom: 1px solid #00000030;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
}

.thank-txt p {
  max-width: 810px;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
  margin: 0;
}

.landing-page-banner .banner_img {
  height: 550px;
}

section.thank-you-sec img.banner-route-img {
  width: 20%;
  height: 40%;
  right: -10%;
  bottom: -3%;
}

/* Thank You Page Css Ends */
