@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;
}

/***** Font Files *****/

@font-face {
  font-family: "ClashDisplay";
  src: url(../fonts/ClashDisplay-Bold.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 0 30px;
}

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;
}

.menuSec img {
  margin: 0;
}

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.png);
  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: radial-gradient(
    circle,
    rgb(1 54 47 / 36%) 0%,
    rgb(1 54 47 / 47%) 20%,
    rgba(1, 54, 47, 0.78) 39%,
    rgba(1, 54, 47, 0.81) 55%,
    rgba(1, 54, 47, 0.92) 71%,
    rgba(1, 54, 47, 0.98) 100%
  );
}

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*/

/*about start*/
section.about {
  padding: 100px 0px;
  position: relative;
  z-index: 1;
}

.abt-txt h3 {
  font-size: 55px;
  line-height: 1;
  color: #212121;
  margin-bottom: 0px;
}

.abt-txt h5 {
  font-size: 15px;
  color: #3c3c3c;
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: 3px;
}

.abt-txt p {
  font-size: 15px;
  color: #858586;
  margin-bottom: 30px;
}

.abt-txt-2 h3 {
  font-size: 40px;
  line-height: 1;
  color: #212121;
  margin-bottom: 0px;
}

.abt-txt-2 p {
  font-size: 14px;
  color: #858586;
  margin-bottom: 30px;
}

.abt-img {
  text-align: center;
  width: 95%;
  margin: 0 0 0 auto;
}
.abt-top {
  position: absolute;
  top: 0px;
  left: 0;
  width: 6%;
  height: 15%;
  animation: floatTop 6s ease-in-out infinite;
}
.abt-txt-2 {
  padding: 100px 0px 0px;
  padding-left: 30px;
}

.abt-img img {
  width: 100%;
}

section.about::before {
  position: absolute;
  bottom: 200px;
  height: 470px;
  width: 88%;
  z-index: -1;
  content: "";
  background-color: #f6f5f4;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 10px;
}

.abt-txt-2 h3 span {
  display: block;
}

.abt-img-2 {
  position: relative;
  right: 19px;
}

.abt-img-2 img {
  width: 100%;
}

/*about 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*/
/* footer sec start  */

footer {
  padding: 70px 0 0 0;
  position: relative;
  z-index: 0;
  background-color: #01362f;
}

.foot-bottom {
  background: #01362f;
  margin-top: 40px;
  padding: 20px 0px;
  /* text-align: center; */
}

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;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  /* background: #79826d; */
  border-radius: 50%;
  font-size: 15px;
  margin-right: 10px;
  border: 1px solid #fff;
  animation: tada 1.5s ease infinite;
}

.quick-links a:hover {
  color: #add0c5;
}

img.img-fluid {
  width: 100%;
}

.social-links a:hover {
  /* background-color: #c48270; */
  color: #fff;
  border: 1px solid #fefefe;
}

.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;
}

.foot-bottom .container-fluid {
  margin: 0 3%;
  padding-bottom: 0;
}

/* footer sec 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*/
/*our-focus start*/
section.our-focus {
  padding-bottom: 100px;
}

.our-focus-txt h3 {
  font-size: 55px;
  line-height: 1;
  color: #212121;
  margin-bottom: 10px;
}

.our-focus-txt h3 span {
  display: block;
}

.our-focus-txt p {
  color: #131314;
  font-size: 14px;
  line-height: 22px;
  width: 90%;
  margin-bottom: 25px;
}

.our-focus-txt h5 {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
  color: #3c3c3c;
  font-weight: 600;
  letter-spacing: 2px;
}

.our-focus-txt ul {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}

.our-focus-txt ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cecece;
  width: 42%;
}

.our-focus-txt ul li h5 {
  margin: unset;
}

.our-focus-txt.tw {
  padding-top: 40px;
  padding-left: 6%;
}

/*section.Insight  start*/
section.Insight {
  padding-bottom: 90px;
  position: relative;
}

.blog-txt h4 {
  font-size: 18px;
  line-height: 1.5;
  color: #242424;
}

.blog-txt h4 span {
  display: block;
}

.blog-txt p {
  font-size: 14px;
}

.blog-txt {
  background-color: rgb(255, 255, 255);
  box-shadow: 19.799px 19.799px 51px 0px rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  margin-top: -10px;
  padding-top: 30px;
  margin-bottom: 37px;
}

.insight-txt h4 {
  font-size: 55px;
  line-height: 1;
  color: #212121;
  margin: unset;
}

.insight-txt h4 span {
  display: block;
}

.insight-txt {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #cecece;
}

.blog-slid .slick-active {
  opacity: 1;
}

.blog-txt ul {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 20px;
}

.blog-txt ul h5 {
  font-size: 10px;
  color: #0f0e0e;
  font-family: "Roboto";
  margin: unset;
  text-transform: uppercase;
}

.blog-txt ul h6 {
  font-size: 10px;
  color: #0f0e0e;
  font-family: "Roboto";
  position: relative;
  margin: unset;
}

.blog-txt ul h6::before {
  position: absolute;
  content: "";
  background-color: #ea7235;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  margin: auto;
  left: -10px;
  top: 7px;
}

.blog-slid .slick-prev,
.blog-slid .slick-next {
  position: absolute;
  top: -60px;
  right: 8px;
  left: auto;
}

.blog-slid .slick-prev {
  right: 60px;
}

.blog-slid .slick-prev:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../images/arrow-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 40px;
  width: 54px;
}
.ft-bot {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 6%;
  height: 15%;
  animation: floatBottom 6s ease-in-out infinite;
}
.blog-slid .slick-next:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../images/arrow-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 40px;
  width: 54px;
}

.blog-slid .slick-prev.slick-disabled:before,
.blog-slid .slick-next.slick-disabled:before {
  opacity: 1;
}
.work-min-bx:hover {
  background-color: #ea7235;
  transition: 1s;
}

.work-min-bx:hover h5 {
  color: #fff;
}

.work-min-bx:hover p {
  color: #fff;
}

img.ft-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: 0;
  animation: route 12s ease-in-out infinite;
}

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;
}
a.top-navigator {
  bottom: 0px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 66px;
  font-size: 25px;
  color: white;
  background: #ea7235;
  position: absolute;
  z-index: 999;
}

a.top-navigator i {
  font-family: "FontAwesome";
}
.main-test-bx:hover {
  background-color: #f58e00;
  transition: ease-out;
  transition-duration: 0.5s;
}

.main-test-bx:hover i {
  color: #fff;
}

.main-test-bx:hover p {
  color: #fff;
}

.main-test-bx:hover ul li h6 {
  color: #fff;
}
.foc-img {
  position: relative;
}
.bot-abt.tw {
  right: -33px;
  left: auto;
}

/* Solutions Page Css Starts */

section.inner-how-it-works {
  padding: 80px 0;
}

/* Solutions Page Css Ends */

/* Stories Page Css Starts */

section.inner-real-stories {
  padding: 100px 0;
}

section.inner-real-stories .testi-box {
  width: 95%;
  margin: 0 auto 40px auto;
}

/* Stories Page Css Ends */

/* Stories Page Css Ends */

section.resources-sec {
  padding: 100px 0;
}

.resources-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.resources-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.resources-bottom-main {
  margin: 40px 0 0 0;
}

/* Stories Page Css Ends */

/* Contact Us Page Css Starts */

section.contact-us {
  padding: 100px 0;
}

.contact-input {
  position: relative;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
}

.contact-input input {
  width: 100%;
  height: 55px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  font-family: "Roboto", sans-serif;
  border-radius: 7px;
}

.contact-input textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 12px 20px 12px 21px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  resize: none;
  background: transparent;
  border-radius: 11px;
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
  color: #7e7e7e;
}

.contact-input i {
  position: absolute;
  top: 15px;
  left: 18px;
  color: #008077;
  /* padding: 12px 16px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.send-btn {
  background-color: var(--golden);
  padding: 15px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  background: #0288d1;
  font-family: "Roboto", sans-serif;
  border: none;
}

button.send-btn:hover {
  background: transparent;
  color: var(--golden);
  border: 1px solid var(--golden);
  transition: 0.5s all ease-in-out;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px 30px;
  border: 1px solid #c1c1c1;
  margin: 15px 0;
  transition: 0.8s all ease-in-out;
  background: #008077;
  border-radius: 6px;
}

.cntct-info-icon {
  width: 55px;
  height: 55px;
  border: 1px solid var(--golden);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.8s all ease-in-out;
}

.cntct-info-icon i {
  font-size: 28px;
  transition: 0.8s all ease-in-out;
  border: 1px solid;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0px 0px 20px 0px #8d88883b;
  color: #008077;
}

.contact-info-item:hover i {
  transform: rotate(360deg);
  transition: 0.8s all ease-in-out;
}

.contact-info-item-details h5 {
  margin: 0;
  font-size: 24px;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: 1px;
  line-height: 35px;
}

.contact-info-item-details a,
.contact-info-item-details p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  font-family: "Roboto", sans-serif;
}

.contact-input.selectbox select {
  width: 100%;
  height: 55px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 80px 0 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  font-family: "Roboto", sans-serif;
  border-radius: 7px;
  z-index: 1;
  position: relative;
  cursor: pointer;
}

section.contact-us .rates button.theme1 {
  border: 0px;
}

.contact-input.selectbox:before {
  left: unset !important;
  right: 60px;
  transform: rotateY(156deg);
}

.contact-input.selectbox i.fa-solid.fa-angle-down {
  position: absolute;
  right: 20px;
  left: unset !important;
  top: 19px;
  color: #000;
  opacity: 40%;
  cursor: pointer;
}

.contact-input.textaryea:before {
  display: none;
}

.contact-input.textaryea textarea::placeholder {
  position: absolute;
  bottom: 20px;
}

section.contact-us .formWraper {
  width: 88%;
  margin: 0px auto;
}

section.contact-us .heading {
  margin-bottom: 50px;
}

section.contact-us .heading p {
  font-weight: 500;
  opacity: 100%;
  line-height: 26px;
  width: 60%;
  margin: 0px auto;
}

section.contact-map {
  position: relative;
  overflow: hidden;
}

section.contact-map iframe {
  width: 100%;
  margin-bottom: -7px;
}

.contact-heading {
  margin: 0 0 30px 0;
}

.cntct-head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 700px;
  width: 100%;
  border-radius: 10px;
  object-position: 0 0;
  overflow: hidden;
}

.cntct-head img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

button.btn-1 {
  color: #fff;
  display: block;
  font-size: 15px;
  width: fit-content;
  padding: 13px 25px;
  border-radius: 100px;
  text-transform: uppercase;
  background-color: #ea7235;
  border: none;
  font-family: "Roboto", sans-serif;
  text-decoration: none;

  /* Animation */
  transition: all 0.3s ease;
}

/* Hover Effect */
button.btn-1:hover {
  background-color: #d95f25;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(234, 114, 53, 0.5);
}

/* Contact Us Page Css Ends */

/* Quote Page Css Starts */

section.quote {
  padding: 100px 0;
}

.quote-head h4 {
  font-size: 50px;
  line-height: normal;
  font-weight: 700;
  margin: 0 0 30px;
  color: #000;
}

.quote-input {
  position: relative;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
}

.quote-input input {
  width: 100%;
  height: 55px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  font-family: "Roboto", sans-serif;
  border-radius: 7px;
  outline: none;
}

.quote-input textarea {
  width: 100%;
  height: 220px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #3d3d3d;
  resize: none;
  background: transparent;
  border-radius: 11px;
}

.quote-input input::placeholder,
.quote-input textarea::placeholder {
  color: #7e7e7e;
}

.quote-input i {
  position: absolute;
  top: 15px;
  left: 18px;
  color: #42603e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.send-btn {
  background-color: var(--golden);
  padding: 15px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  background: #0288d1;
  font-family: "Roboto", sans-serif;
  border: none;
}

button.send-btn:hover {
  background: transparent;
  color: var(--golden);
  border: 1px solid var(--golden);
  transition: 0.5s all ease-in-out;
}

.quote-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px 30px;
  border: 1px solid #c1c1c1;
  margin: 15px 0;
  transition: 0.8s all ease-in-out;
  background: #42603e;
  border-radius: 6px;
}

.quote-info-icon {
  width: 55px;
  height: 55px;
  border: 1px solid var(--golden);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.8s all ease-in-out;
}

.quote-info-icon i {
  font-size: 28px;
  transition: 0.8s all ease-in-out;
  border: 1px solid;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0px 0px 20px 0px #8d88883b;
  color: #42603e;
}

.quote-info-item:hover i {
  transform: rotate(360deg);
  transition: 0.8s all ease-in-out;
}

.quote-info-item-details h5 {
  margin: 0;
  font-size: 24px;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: 1px;
  line-height: 35px;
}

.quote-info-item-details a,
.quote-info-item-details p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  font-family: "Roboto", sans-serif;
}

.quote-input.selectbox select {
  width: 100%;
  height: 55px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 80px 0 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  font-family: "Roboto", sans-serif;
  border-radius: 7px;
  z-index: 1;
  position: relative;
  cursor: pointer;
}

section.quote .rates button.theme1 {
  border: 0px;
}

section.quote .get-in-touch.quote-head {
  padding-right: 30px;
}

.quote-input.selectbox i.fa-solid.fa-sort-down {
  position: absolute;
  right: 20px;
  left: unset !important;
  top: 20%;
  color: #000;
  opacity: 40%;
  cursor: pointer;
}

.quote-input.textaryea:before {
  display: none;
}

.quote-input.textaryea textarea::placeholder {
  position: absolute;
  bottom: 20px;
}

section.quote .formWraper {
  width: 88%;
  margin: 0px auto;
}

section.quote .heading {
  margin-bottom: 50px;
}

section.quote .heading p {
  font-weight: 500;
  opacity: 100%;
  line-height: 26px;
  width: 60%;
  margin: 0px auto;
}

section.quote-map {
  position: relative;
  overflow: hidden;
}

section.quote-map iframe {
  width: 100%;
  margin-bottom: -7px;
}

.quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 0;
}

/* Quote Page Css Ends */

/*Membership Sec Css Starts */

section.membership-sec {
  position: relative;
  padding: 100px 0;
}

section.membership-sec::before {
  content: "";
  position: absolute;
  bottom: 25%;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 90%;
  height: 150px;
  background-color: #01362f;
  border-radius: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.membership-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
}

.membership-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 #00000026;
  margin: 60px 0;
  background-color: #fff;
}

.membership-card-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 90px;
  width: 100%;
  background-color: #01362f;
}

.membership-card-heading h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 35px;
  line-height: 40px;
  margin: 0;
}

.membership-card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  width: 100%;
}

.membership-card-price h4 {
  font-family: "Poppins";
  font-size: 50px;
  line-height: 55px;
  font-weight: 200;
  margin: 0;
}

.membership-card-price h6 {
  font-family: "Poppins";
  font-size: 12px;
  line-height: 1;
  font-weight: 200;
  margin: 0;
}

.membership-card-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  padding: 0 30px;
}

.membership-card-list {
  width: 100%;
}

.membership-card-list ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  margin: 0;
}

.membership-card-list ul li {
  width: 100%;
}

.membership-card-list ul li .membership-card-list-item {
  position: relative;
  height: 50px;
  background-color: #f1f1f1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 0 0 90px;
}

.membership-card-list ul li .check::before,
.membership-card-list ul li .no-check::before {
  font-family: "FontAwesome";
  font-size: 25px;
  position: absolute;
  top: 10%;
  left: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}

.membership-card-list ul li .check::before {
  content: "\f00c";
  color: #44af23;
}

.membership-card-list ul li .no-check::before {
  content: "\f00d";
  color: rgb(255, 0, 0);
}

.membership-card-list ul li .membership-card-list-item p {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.membership-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 10px 20px 20px 20px;
}

.membership_slider .slick-slide {
  scale: 0.9;
  opacity: 1;
  outline: none;
}

.membership_slider .slick-current {
  scale: 1.1;
}

.membership-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  background-color: #01362f;
  border-radius: 100px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.membership-btn:hover {
  background-color: #ea7235;
  transition: ease-out;
  transition-duration: 0.5s;
}

.membership-btn span.membership-btn-txt,
.membership-btn span.membership-btn-txt-ex {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.membership-btn span.membership-btn-txt-ex {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 100px;
  overflow: hidden;
  background-color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.membership-btn:focus span.membership-btn-txt-ex {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

/*Membership Sec Css Ends */

/*BLog Sec Css Starts */

section.inner-insight {
  padding: 100px 0;
}

/*BLog Sec Css Ends */

/*BLog Sec Css Ends */

section.inner-insight-details .blog-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

section.inner-insight-details .blog-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

section.inner-insight-details .blog-head-link-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

/*BLog Sec Css Ends */

/*Terms Sec Css Starts */

section.terms-sec {
  padding: 100px 0;
}

.terms-txt ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  list-style-type: disc;
  padding: 0 0 0 30px;
}

/*Terms Sec Css Ends */

/*Policy Sec Css Starts */

section.policy-sec {
  padding: 100px 0;
}

.policy-txt ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  list-style-type: disc;
  padding: 0 0 0 30px;
}

/*Policy Sec Css Ends */
