@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  --c1: linear-gradient(
    90deg,
    rgba(113, 142, 224, 1) 0%,
    rgba(3, 3, 40, 1) 76%
  );
  --c2: linear-gradient(
    90deg,
    rgba(218, 145, 130, 1) 0%,
    rgba(204, 1, 2, 1) 76%
  );
  --c3: linear-gradient(180deg, #ddbe8a29 0%, #ddbe8acc 70%);
  --c4: #ff5d41;
  --c5: #007846;
  --f1: "Inter", sans-serif;
  --f2: "Archivo", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.img__contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: clip;
}

.banner__img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  inset: 0;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  /* list-style-type: none; */
  font-family: var(--f1);
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}

img {
  width: 100%;
}

/* header  */

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

ul {
  padding: 0 !important;
  margin: 0 !important;
}

.header_right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header_right li span {
  display: block;
  font-size: 13px;
  color: var(--c4);
}

.header_right li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: #fff;
}

.header_right li a i {
  font-size: 21px;
  color: var(--c4);
}

.themebtn {
  color: #fff;
  padding: 16px 30px;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 6px;
  position: relative;
  background: #ff5d41;
  text-transform: none;
  align-items: center;
  display: inline-flex;
  transition: 0.5s all;
  border-radius: 6px;
  overflow: hidden;
  border: none;
  text-transform: uppercase;
  border: 1px solid #007846;
  font-family: "Inter", sans-serif;
}

.header {
  position: absolute;
  height: 158px;
  width: 100%;
}

.logo {
}

.nav_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 84%;
  margin: 0 auto !important;
  background: linear-gradient(180deg, #3c342d 0%, #b29972 70%);
  padding: 10px !important;
  border-radius: 50px;
  border-bottom: 2px solid var(--c4);
  position: relative;
}

.nav_menu li a {
  color: #fff;
  font-family: var(--f1);
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav_menuMain {
  position: absolute;
  z-index: 999;
  width: 100%;
  bottom: -10px;
}

.header_main {
  position: absolute;
  z-index: 999;
  width: 100%;
  padding: 11px 0 40px;
  border-bottom: 3px solid #ffffff69;
}

.nav_menu:before {
  position: absolute;
  /* content: ""; */
  width: 260%;
  height: 1px;
  background: aliceblue;
  transform: translatey(-50%);
  top: 50%;
  left: 100%;
}

.nav_menu:after {
  position: absolute;
  /* content: ""; */
  width: 260%;
  height: 1px;
  background: aliceblue;
  transform: translatey(-50%);
  top: 50%;
  right: 100%;
}

/* banner */

.sub_head {
  font-size: 25px;
  font-family: var(--f2);
  font-style: italic;
  color: #fff;
  text-transform: capitalize;
}

.banner__con .heading {
  font-size: 45px;
  font-family: var(--f2);
  color: #fff;
  line-height: 55px;
  text-transform: capitalize;
}

.banner__con .heading span {
  font-family: var(--f2);
  color: var(--c4);
  text-transform: capitalize;
}

.banner__con p {
  font-size: 16px;
  width: 610px;
  color: #fff;
  margin: 20px 0;
}

.themebtn--alt {
  background: var(--c5);
}

.input_feild :is(input, textarea) {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background: #fff;
  border: none;
  outline: none !important;
  border-radius: 5px;
  margin: 5px 0;
  border: 1px solid #44444430;
  resize: none;
}

.banner_formHead {
  font-size: 29px;
  font-family: var(--f2);
  color: #000;
  text-align: center;
  width: 300px;
  margin: 10px auto;
}

.banner_formBox {
  padding: 40px 30px;
  width: 75%;
  margin: 0px auto 0px;
  background: #f3f7fa;
  border-radius: 30px;
  border-top: 5px solid var(--c4);
  position: relative;
  box-shadow: 0 0 15px 1px #0004;
}

.input_feild button {
  margin: 20px 0 0;
}

.banner_formBox:before {
  position: absolute;
  width: 430px;
  height: 430px;
  content: "";
  background: linear-gradient(45deg, #ff5d41, transparent);
  border-radius: 100%;
  z-index: -1;
  top: 50%;
  transform: translatey(-50%);
  right: -90px;
  animation: newSpin 3s linear infinite;
}

.banner_formBox:after {
  position: absolute;
  width: 100px;
  height: 100px;
  content: "";
  background: linear-gradient(45deg, #007846, transparent);
  right: -100px;
  top: 50px;
  border-radius: 100%;
  animation: spin 3s linear infinite;
}

@keyframes newSpin {
  0% {
    transform: translatey(-50%) rotate(0);
  }

  100% {
    transform: translatey(-50%) rotate(360deg);
  }
}

.banner_btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

@keyframes movement {
  0% {
    margin-top: 0;
  }

  25% {
    margin-top: -10px;
  }

  50% {
    margin-top: 0px;
  }

  75% {
    margin-top: -10px;
  }

  100% {
    margin-top: 0px;
  }
}

/* about */

.about_imgMain {
  position: relative;
}

.dots_img {
  position: absolute;
  z-index: -1;
}

.about_img {
}

.about_img img {
  border-radius: 100px 20px 20px 20px;
  border: 8px solid #fff;
}

.dots_img {
  width: 82%;
  height: 100px;
  right: 0;
  top: 30px;
}

.about {
  padding: 70px 0 120px;
  position: relative;
  overflow: hidden;
}

.about_hand {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(50%);
  width: 9%;
  height: 28%;
}

.heading {
  font-size: 35px;
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 600;
}

.para {
  margin: 20px 0;
  font-size: 14px;
  font-family: var(--f1);
  line-height: 21px;
}

.about_listsMain {
  display: flex;
  align-items: center;
  gap: 70px;
}

.aboutList li {
  font-size: 14px;
  margin: 0 0 8px 0;
  font-weight: 700;
  position: relative;
  padding-left: 25px;
}

.aboutList li:before {
  position: absolute;
  width: 18px;
  height: 85%;
  content: "";
  background: url(../images/check.webp);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
}

/* services */

.heading--white {
  color: #fff;
}

.services {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0 0;
  margin: -14vh 0 70px;
  z-index: 1;
  overflow: hidden;
}

.service_banner {
  position: absolute;
  width: 100%;
  height: 83vh;
  z-index: -1;
  inset: 0;
}

.service_img {
  width: 50px;
  height: 50px;
}

.service_boxMain {
  padding: 70px 0;
  background: #fff;
  border-radius: 30px;
  margin: 20px 0;
  box-shadow: 0 2px 4px 1px #4444;
  position: relative;
}

.serv_head {
  margin: 10px 0 0;
  font-family: var(--f2);
  font-size: 19px;
  font-weight: 600;
}

.serv_con p {
  margin: 7px 0;
  height: 110px;
  overflow-y: auto;
  overflow-x: hidden;
}

.service_box {
  padding: 20px;
  position: relative;
}

.line {
  width: 1px;
  position: absolute;
  height: 75%;
  background: #4444;
  right: 0;
}

.line:before {
  position: absolute;
  width: 4px;
  height: 20%;
  content: "";
  background: #224175;
  left: 50%;
  transform: translatex(-50%);
  animation: move1 7s linear infinite;
}

.line--alt {
  width: 75%;
  height: 1px;
  bottom: 0;
  left: 0;
}

.line--alt:before {
  height: 4px;
  width: 19%;
  left: 0;
  transform: translate(0, -50%);
  top: 50%;
  animation: move2 7s linear infinite;
}

@keyframes move1 {
  0% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 400%);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

@keyframes move2 {
  0% {
    transform: translate(0, -50%);
  }

  50% {
    transform: translate(400%, -50%);
  }

  100% {
    transform: translate(0, -50%);
  }
}

.service_boxMain:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/before.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -10px;
  left: -55px;
  z-index: -1;
}

.service_boxMain:after {
  position: absolute;
  width: 100%;
  height: 90%;
  content: "";
  background: url(../images/after.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  top: 20px;
  right: -103px;
}

.service__btns .themebtn:nth-child(2) {
  border-color: #000;
  color: #000;
}

.service__btns {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 30px 0 0;
}

.service__btns a {
  width: 20%;
  text-align: center;
}

/* portfolio */

.port__con {
  text-align: center;
}

.port_top {
  padding: 40px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.port__con .para {
  width: 70%;
  margin: 10px auto;
}

.port_img {
  width: 100%;
  height: 31vh;
  box-shadow: -3px 4px 15px 1px #444;
}

.port_item {
  text-align: center;
  margin: 0 10px;
}

.port_main {
  position: relative;
  padding-bottom: 30px;
}

.port_main:before {
  position: absolute;
  width: 50%;
  height: 140px;
  background: #ff5d41;
  content: "";
  bottom: 0;
  border-radius: 0px 15px 15px 0px;
}

.port_slider .slick-list.draggable {
  padding: 10px 0;
}

.portfolio {
  padding: 40px 0 80px;
  background: #f0f8ef;
  margin-bottom: -5vh;
}

/* footer */

.footer {
  background: #262626;
  padding: 70px 0 0;
}

.footer_mian h5 {
  font-size: 24px;
  color: #fff;
  margin: 20px 0;
}

.footer_logo {
  width: 20%;
  height: 110px;
}

.footer_menu li a {
  font-family: var(--f1);
  color: #fff;
  font-size: 14px;
}

.footer_menu li {
  position: relative;
  margin: 5px 0;
  padding-left: 15px;
}

.footer_menu li:before {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  background: transparent;
  border: 1px solid #fff;
  border-radius: 100%;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
}

.pay_img {
  width: 100%;
  height: 60px;
  margin: 20px 0 10px;
}

.copy_right {
  background: #2d2b29;
  padding: 20px 0;
}

.footer_cont li a {
  color: #fff;
  font-family: var(--f1);
  margin: 0;
  font-size: 14px;
}

.copy_con p {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-family: var(--f1);
}

.privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  padding: 70px 0;
}

.privacy li a {
  color: #fff;
  font-size: 14px;
  font-family: var(--f1);
}

/* testimonial */

.test_head {
  text-align: center;
  margin: 0 0 50px;
}

.test_top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 10px;
  justify-content: center;
}

.test_img {
  width: 70px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
}

.tets_topCon p {
  margin: 0;
  font-size: 20px;
  font-family: var(--f2);
  font-weight: 600;
}

.tets_topCon p span {
  display: block;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--f2);
}

.test_main {
  background: linear-gradient(177deg, #007846, #47855d);
  padding: 30px;
  height: 280px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
}

.collen_img {
  width: 40px;
  aspect-ratio: 1/1;
  margin: 0 0 30px;
}

.test_main p {
  font-size: 14px;
  color: #fff;
  font-family: var(--f1);
  margin-bottom: 1px;
}

.test_item {
  margin: 0 10px;
}

.test_top--alt {
  margin: 20px 0 0;
}

.testimonial {
  padding: 120px 0 50px;
}

/* menuscript */

.menuscript {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 53vh;
  position: relative;
  margin: 0px 0 0;
}

.menu_banner {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.menuscript_cont {
  text-align: center;
  color: #fff;
}

.menu__btns {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.menuscript_cont p {
  margin: 10px auto 20px;
  width: 80%;
}

.menu__btns a {
  text-align: center;
}

.menu_banner:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  inset: 0;
  background: rgb(3 3 40 / 76%);
}

/* setisfy */

.book_img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
}

.stisfy_section {
  position: relative;
  padding: 30px 0 20px;
}

.setisfy_img {
  width: 60px;
  aspect-ratio: 1/1;
}

.setisfy_num {
  position: absolute;
  right: 30px;
  top: 16px;
  font-family: var(--f2);
  font-size: 60px;
  font-weight: 800;
  color: #f7f4ef;
  text-shadow: -1px 2px #a80f0f;
}

.setisfy_box {
  position: relative;
  background: #f7f4ef;
  padding: 30px;
  overflow: hidden;
  border-radius: 10px;
  margin: 10px;
}

.setisfy_box:before {
  position: absolute;
  width: 90px;
  height: 90px;
  background: linear-gradient(
    90deg,
    rgb(113 142 224 / 70%) 0%,
    rgb(3 3 40 / 80%) 76%
  );
  content: "";
  border-radius: 100%;
  right: -30px;
  top: -39px;
}

.setisfy_box h5 {
  font-family: var(--f2);
  margin: 10px 0 0;
}

.setisfy_box p {
  font-size: 14px;
  margin: 5px 0 0;
}

.satisfy__boxes {
  display: flex;
  flex-wrap: wrap;
}

.setisfy_box:nth-child(1) {
  width: 227px;
}

.setisfy_box:nth-child(2) {
  width: 290px;
  height: 200px;
}

.setisfy_box:nth-child(3) {
  width: 293px;
}

.setisfy_box:nth-child(4) {
  width: 260px;
  margin-top: -40px;
}

.setisfy_box:nth-child(5) {
  width: 74%;
}

.satisfy_img {
  width: 60%;
  height: 550px;
  margin: auto;
}

.satisfy_img img {
  border-radius: 120px !important;
  object-position: 68% 99%;
}

.getintouch_main {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 77vh;
  position: relative;
  padding-left: 60px;
  margin: vh 0 70px;
}

.get_banner {
  position: absolute;
  width: 100%;
  height: 67vh;
  z-index: -1;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
}

.getInBtns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.getin_head {
  font-size: 30px;
  line-height: 39px;
  color: #fff;
  font-family: var(--f2);
  margin: 30px 0;
  width: 59%;
  text-transform: capitalize;
}

.getin_head span {
  font-family: var(--f2);
  font-weight: 800;
}

.themebtn:hover:before {
  transform: scale(1.6);
}

.themebtn--alt:hover {
  color: #fff !important;
}

.themebtn:hover {
  color: #fff;
}

.service__btns .themebtn--alt:hover {
  background: transparent;
  color: #000 !important;
  border-color: #000;
}

.service__btns .themebtn:nth-child(2):hover {
  background: var(--c5);
  color: #fff;
  border-color: #fff;
}

.nav_menu li a:before {
  position: absolute;
}

.banner_formBox button:hover {
  border-color: #000;
  color: #000 !important;
}

.nav_menu > li > a:before {
  position: absolute;
  height: 1px;
  bottom: 0;
  background: #fff;
  content: "";
  transition: 500ms all;
  width: 0;
}

.nav_menu li a:hover:before {
  width: 100%;
}

.footer_menu li a:hover {
  transform: translateX(5px);
}

.about_imgMain--alt {
}

.banner--alt {
  padding: 120px 0px;
}

.banner__list li {
  color: #fff;
  padding-left: 24px;
}

.banner__list {
  margin: 0 0 20px !important;
}

.sub_heading {
  font-size: 17px;
  text-transform: uppercase;
  font-family: var(--f1);
  font-weight: 600;
  background: var(--c1);
  color: transparent;
  -webkit-background-clip: text;
}

.get_book {
  position: absolute;
  right: 0;
  height: 86vh;
  top: 50%;
  transform: translate(-15%, -50%);
  width: 35%;
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 0 15px 1px #0000008f; */
}

/* width */

.serv_con p::-webkit-scrollbar {
  width: 2px;
}

/* Track */

.serv_con p::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(223, 222, 222);
  border-radius: 10px;
}

/* Handle */

.serv_con p::-webkit-scrollbar-thumb {
  background: #bcc1ff;
  border-radius: 10px;
}

/* Handle on hover */

.reviews_scroller::-webkit-scrollbar-thumb:hover {
  background: #bcc1ff;
}

.reviews_scroller::-webkit-scrollbar {
  width: 2px;
}

/* Track */

.reviews_scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(223, 222, 222);
  border-radius: 10px;
}

/* Handle */

.reviews_scroller::-webkit-scrollbar-thumb {
  background: var(--c1);
  border-radius: 10px;
}

/* Handle on hover */

.reviews_scroller::-webkit-scrollbar-thumb:hover {
  background: var(--c1);
}

/* faqs */

.aside_faqs .heading {
  margin: 0 0 30px;
}

.accordion-item {
  border: none !important;
  border-radius: 10px !important;
  overflow: hidden;
  margin: 20px 0 0;
}

.accordion-button:not(.collapsed) {
  background: #ff5d41 !important;
  color: #fff !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button {
  color: #ffffff !important;
  font-family: var(--f1);
  font-weight: 600;
  font-size: 16px;
  padding: 20px !important;
  line-height: 23px;
  background: #007846 !important;
}

.accordion-body p {
  font-family: var(--f1);
  font-size: 15px;
  margin: 0;
  text-align: left;
}

.accordion-body {
  padding: 20px 40px 20px 0px;
}

.aside {
  padding: 100px 0 30px;
}

.faqs {
  padding: 70px 0;
  background: #f0f8ef;
}

.banner__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__img:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #000000b5;
}

.copy_con p:nth-child(1) {
  width: 260px;
  margin: 0 auto;
}

.about--alt {
  margin: 70px 0;
  padding: 70px 0 100px;
  background: #f0f8ef;
  position: relative;
  /*z-index: -1;*/
  overflow: hidden;
}

.banner--inner {
  min-height: 70vh;
}

.about--inner {
  padding: 110px 0 70px;
}

.about--Maininner {
  padding: 70px 0 120px;
}

.heading--alt {
  font-size: 80px !important;
}

.banner--Maininner {
  min-height: 90vh;
}

/* contact */

.contact_hme {
  background: var(--white);
  background-size: cover;
  background-repeat: no-repeat;
}

.con_detail_hme ul li {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  line-height: 25px;
  padding: 0 50px 20px 0;
}

.con_detail_hme ul li a {
  color: var(--heaing_color);
  font-weight: 900;
}

.con_detail_hme ul li span {
  font-weight: 400;
  padding-right: 10px;
  display: block;
  margin: 0 auto;
  color: var(--primary_color);
}

.contact_form_Tab input:not([type="checkbox"]),
.contact_form_Tab select {
  height: 55px !important;
  margin-bottom: 20px;
  border-radius: 0;
  width: 100%;
  font-size: 15px;
  border: 1px solid #ccc;
}

.contact_form_Tab select {
  height: 55px !important;
}

.contact_form_Tab textarea {
  height: 190px;
  border-radius: 0;
  resize: none;
  font-size: 15px;
  padding: 15px;
  margin-bottom: 20px;
}

.map_sec iframe {
  width: 100%;
  border: 0;
  height: 420px;
}

.con_detail_hme ul li span img {
  display: block;
}

.btn_form input {
  background: var(--secondary_color);
  color: var(--white);
  padding: 15px 40px;
  display: inline-block;
  border-radius: 5px;
  font-size: 17px;
  transition: 0.5s ease-in-out;
  font-weight: 600;
  width: auto;
  cursor: pointer;
  border: 0;
}

.intl-tel-input {
  width: 100%;
  margin-bottom: 10px;
}

.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
  width: 68px;
  height: 53px;
}

#contactForm :is(input, textarea) {
  padding: 10px;
}

.padding__70 {
  padding: 70px 0;
}

.per-check {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 20px 0;
}

.per-check label {
  font-size: 14px;
  font-family: var(--f1);
}

.per-check label a {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

.btn_form input:hover {
  background: var(--c5);
  color: #fff;
  border-color: transparent;
}

.con_detail_hme ul li span img {
  width: 50px;
  aspect-ratio: 1/1;
  margin: 0 0 10px;
}

.policy_content h4 {
  font-size: 30px;
  font-family: var(--f2);
  font-weight: 600;
}

.policy_content p {
  font-size: 16px;
  margin: 10px 0;
  font-family: var(--f1);
  line-height: 25px;
}

.policy_content ul {
  padding-left: 20px !important;
}

.policy_content ul li {
  font-family: var(--f1);
  font-size: 16px;
  list-style: disc;
  margin: 0;
}

.policy_content h5 {
  font-size: 23px;
  margin: 15px 0;
  font-weight: 700;
  text-transform: capitalize;
}

/* dropdown css start */

ul.dropdown_menu {
  background: linear-gradient(180deg, #5e5348 0%, #b49a70 70%);
  position: absolute;
  z-index: 99999;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
}

ul.dropdown_menu li a {
  border-bottom: 1px solid #fff !important;
  font-family: var(--f1);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 300;
  padding: 10px 13px;
  color: #ffff !important;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dropdown-submenu > .dropdown_menu,
li.dropdown-submenu ul.dropdown_menu ul.dropdown_menu {
  top: 0;
  left: 100%;
  margin-top: 0;
}

.dropdown_menu {
  padding: 0;
  margin: 0;
}

.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown_menu {
  position: static;
  float: none;
}

li:hover > ul.dropdown_menu {
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 9%);
  min-width: 12rem;
  visibility: visible;
  opacity: 1;
}

/* dropdown css end */

.nav_menu > li {
  position: relative;
}

.dropdown-item span {
  height: 15px;
  transition: 500ms all;
}

ul.dropdown_menu > li:nth-last-child(1) a {
  border-bottom: none !important;
}

ul.dropdown_menu li a:hover span {
  transform: rotate(-90deg);
}

.nav_menu li a i {
  font-size: 8px;
}

.about--altnew {
  margin: 0 !important;
  z-index: 0;
}

.banner--inner-in .banner__img::before {
  display: none;
}

.about_img.alt_img img {
  transform: scaleX(-1);
}

.about_img.alt_img {
  width: 96%;
  height: 389px;
}

.about_img.alt_img_brand {
  height: 420px;
}

.about_img.new_koko img {
  object-fit: cover;
}

.about_img.about_3 img {
  height: 83%;
}

.book_newsection {
  background: #fff;
  position: relative;
  z-index: 99;
}

.about_con ul li {
  font-size: 16px;
  color: #000;
  font-family: var(--f1);
  font-weight: 400;
  margin-bottom: 9px;
  line-height: 23px;
  list-style-type: disc;
}

.about_con ul {
  padding-left: 20px !important;
}

.alt_section {
  padding-top: 20px;
}

.about_img.about_img--alt .img__cover {
}

/* responsive */

.responsive_header {
  display: none;
}

.responsive_menu {
  position: fixed;
  background: var(--c4);
  z-index: 99;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}

.res_menu li a {
  width: 100%;
  font-size: 13px;
  padding: 7px 10px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 25px;
  border-bottom: 1px solid #4444;
}

.cross_btn {
  position: absolute;
  top: 10px;
  background: var(--c1);
  color: #fff;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 10px;
}

.responsive_menu {
  transform: translatex(-100%);
  transition: 500ms all;
}

.responsive_menu.show {
  transform: translatex(0);
}

.res_menu li a i {
  font-size: 7px;
}

ul.serv_menu {
  background: #fff;
  height: 0;
  overflow: auto;
  transition: height 500ms;
}

ul.serv_menu.show {
  height: 170px;
}

.con_detail_hme ul {
  width: 100%;
  margin: 0 auto;
}

.con_detail_hme {
  display: flex;
  align-items: center;
  justify-content: center;
}

.res_menu {
  padding: 40px 0 0 !important;
}

.res_subMenu {
  background: #fff;
  transition: 500ms all;
  height: 0;
  overflow: hidden;
}

.drop_btn {
  width: 70%;
  text-align: end;
  font-size: 11px;
  padding-right: 20px;
}

.res_subMenu.active {
  height: 173px;
}

.serv_mainList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #4444;
}

.serv_mainList a {
  border: none !important;
}

.slick-dots {
  display: none !important;
}

.about--altnew .about_img img {
  object-position: 59% 97%;
}

.get_started .banner_formBox {
  width: 380px;
}

.get_started {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  display: none;
}

.main_getStarted {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -75%);
  width: fit-content;
}

.overLay {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #000000c9;
  backdrop-filter: blur(4px);
  display: none;
}

.getcross_btn {
  position: absolute;
  top: 0px;
  right: 20px;
  color: #fff;
  font-size: 60px;
  cursor: pointer;
}

.overLay.active {
  display: block;
}

.get_started.active {
  display: block;
}

.trust {
  position: fixed;
  bottom: 0;
  left: 40px;
  background: #fff;
  padding: 14px 33px 14px 14px;
  border-radius: 10px 10px 0 0;
  z-index: 999;
  box-shadow: 0 0 15px 1px #4444;
}

.trust span {
  position: absolute;
  font-size: 12px;
  top: 37px;
  right: 19px;
  color: #444;
}

.trust img {
  width: 96px;
}

.about_list {
  margin: 20px 0 !important;
}

.about_list li {
  font-size: 14px !important;
  color: #212529 !important;
}

.inner_authorVideo {
  width: 100%;
  height: 400px;
}

.inner_authorVideo video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border-radius: 20px;
}

.inner_author {
  padding: 70px 0;
  background: #b39d6152;
}

.inner_author--alt {
  background: transparent;
}

.inner_authorContent h3 {
  font-family: var(--f1);
  text-transform: capitalize;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin: 0 0 10px;
}

.inner_authorContent h5 {
  font-family: "Playfair Display";
  text-transform: capitalize;
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 20px;
}

.inner_authorContent p {
  margin: 0;
  font-size: 14px;
  line-height: 26px;
  font-family: "DM Sans";
  color: #000;
}

.videos_sechead h4 {
  text-align: center;
  font-size: 40px;
  font-family: var(--f2);
}

.videos_sechead {
  margin: 0 0 40px;
}

.videos_sec {
  padding: 70px 0;
  background: #f0e2cc;
}

.innerAuthorVideo {
  height: 320px;
}

.innerAuthorVideo video {
  background: #000;
  border-radius: 10px;
}

.slick-arrow {
  top: 50% !important;
  transform: translatey(-50%) !important;
  background: #4444 !important;
  width: 50px !important;
  height: 50px !important;
}

.slick-next {
  right: -55px !important;
}

.slick-prev {
  left: -55px !important;
}

.innerAuthor_item {
  margin: 0 10px !important;
}

.slick-arrow:before {
  font-family: "boxicons" !important;
  font-size: 30px !important;
  color: #fff !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.slick-next:before {
  content: "\ea50" !important;
}

.slick-arrow:hover {
  background: #444 !important;
}

.slick-arrow {
  transition: 500ms all;
}

.slick-prev:before {
  content: "\ea4d" !important;
}

.author_name {
  font-family: var(--f2);
  font-size: 20px;
  margin: 10px 0 0;
}
.author_name {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.author_name--first {
  background: var(--c1);
  width: 40px;
  height: 40px;
  font-family: var(--f1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-weight: 600;
  color: #fff;
}

.book_btn {
  margin-top: 16px;
}

.book_btn:hover {
  border-color: #000;
  color: #000 !important;
}

.test_main a {
  color: #0b0a2c;
  font-size: 13px;
  letter-spacing: 1px;
}

.reviews_scroller {
  height: 170px;
  overflow-y: auto;
  overflow-x: hidden;
}

.test_main a:hover {
  color: var(--c5);
  letter-spacing: 2px;
}

.author_name .themebtn {
  padding: 6px 25px;
  font-size: 16px;
}

.author_name div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copy_con siv {
  display: flex;
}

.copy_con div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
}

.copy_con div p {
  width: 100%;
}

.review_button {
  position: fixed;
  width: fit-content;
  height: fit-content;
  z-index: 99999;
  top: 50%;
  transform: translatey(-50%);
}

.review_btn {
  width: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  gap: 20px;
  background: #fff;
  margin: 10px 0;
  border-radius: 0 50px 50px 0;
  color: #000;
  font-size: 18px;
  font-family: "Work Sans";
  font-weight: 500;
  transform: translatex(-139px);
  transition: 400ms all;
  box-shadow: 0 0 15px 1px #4444;
  padding-right: 19px;
}

.review_img {
  width: 30px;
  height: 30px;
  margin-right: 0;
}

.review_btn:hover {
  transform: translate(0);
}

.review_btn span {
  width: 150px;
  text-align: center;
}

.review_btn:nth-child(4) img {
}

.review_img img {
}

.copy_con div small {
  text-align: center;
}

.copy_con div small span {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--f1);
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
}

.about_img.amazon__book img {
  transform: scaleX(-1);
}

.about_banner_cont h3 {
  font-size: 35px;
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 600;
  color: #fff;
}

.about_banner_cont p {
  color: #fff;
  margin: 16px 0px;
}
.about_banner {
  align-items: end;
  padding-bottom: 90px;
  height: 113vh;
}

.mb-4rem {
  margin-bottom: 4rem;
}

.about__banner__img {
  width: 80%;
  height: 440px;
  overflow: hidden;
  border: 7px solid #fff6f6;
  border-radius: 110px 16px 16px 16px;
}

.about_banne__main {
  position: relative;
}

.dots__img {
  width: 114px;
  height: 85px;
  right: 10px;
  top: 30px;
  position: absolute;
  z-index: -1;
}

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

.about_banne__main::before {
  position: absolute;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    0deg,
    rgba(113, 142, 224, 1) 0%,
    rgba(3, 3, 40, 1) 76%
  );
  content: "";
  z-index: -01;
  border-radius: 200px;
  transform: translate(-10%, -17%) rotate(33deg);
  top: 50%;
}
/*.innerMainReviews--top {*/
/*    padding: 240px 0 70px !important;*/
/*}*/

.reviewHead {
  background: #000;
  padding: 20px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.revLogo {
  width: 200px;
}

.revBtn a {
  padding: 10px 20px;
  background: var(--c3);
  border-radius: 50px;
  color: #fff;
  border: 1px solid #000000;
}

.revBtn a:hover {
  background: transparent;
  border-color: var(--c4);
}

.reviewBox {
  padding: 30px 30px 90px;
  background: rgba(18, 18, 18, 0.85);
  border-radius: 30px;
}
.revSliderMain {
  padding: 70px 0 0;
}

.rvBox {
  padding: 20px;
  background: #000;
  border-radius: 20px;
}

.rvBox p {
  color: #ffffffad;
  font-size: 14px;
  line-height: 24px;
}

.RevSlid h4 {
  font-size: 27px;
  padding: 10px 20px 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

ul.ratingStars {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px !important;
}

.ratingStars li {
  color: gold;
  font-size: 30px;
}

.revSliderMain .slick-arrow {
  position: absolute;
  top: 115% !important;
  width: 50px !important;
  height: 30px !important;
  border-radius: 30px;
  background: #000000 !important;
}

.revSliderMain .slick-prev {
  left: 360px !important;
}

.slick-disabled {
  opacity: 0.3;
}

.revSliderMain .slick-next {
  right: 360px !important;
}
.revSliderMain .slick-dots {
  position: absolute;
  display: flex !important;
  bottom: -55px;
  left: 50%;
  transform: translatex(-50%);
  width: fit-content;
  gap: 0 !important;
}

.revSliderMain .slick-dots li {
  width: 180px;
  height: 2px;
  margin: 0 !important;
}

.revSliderMain .slick-dots li button:before {
  font-size: 0;
  width: 0%;
  height: 100%;
  content: "";
  line-height: 0;
  background: #000;
  opacity: 1;
  transition: 500ms all;
}

.revSliderMain .slick-dots li button {
  background: #8f8f8f4f;
  width: 100%;
  height: 100%;
  padding: 0;
}

.revSliderMain .slick-dots li:nth-child(1) button {
  background: #000 !important;
}

.revSliderMain .slick-dots li.slick-active button {
  background: #000;
}

.revSliderMain .slick-dots li.slick-active button:before {
  width: 100%;
  transition: 500ms all !important;
}
.revLogo--alt {
  padding: 10px;
  background: #fff;
  border-radius: 10px;
}
/* width */
.rvBox p::-webkit-scrollbar {
  width: 2px;
}

/* Track */
.rvBox p::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #000;
  border-radius: 10px;
}

/* Handle */
.rvBox p::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 10px;
}

/* Handle on hover */
.rvBox p::-webkit-scrollbar-thumb:hover {
  background: grey;
}
.rvBox p {
  height: 140px;
  overflow: auto;
}
.innerMainReviews {
  padding: 70px 0;
}

.innerMainReviews--alt {
  background: #4444;
}

.banner--alt .col-sm-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_con .themebtn.themebtn--alt {
  background: #007846;
  color: #fff;
  border: 1px solid #007846;
}

.about_con .themebtn {
  background: #ff5d41;
  border: 1px solid #ff5d41;
  color: #ff5d41;
}

.about_con .themebtn.themebtn--alt:hover {
  background: #000 !important;
  color: #fff;
  border: 1px solid #000;
}

.about_con .themebtn:hover {
  background: #000 !important;
  color: #fff;
}

.portfolio .banner_btns {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.portfolio .themebtn.themebtn--alt {
  background: #007846;
  color: #fff;
  border: 1px solid #007846;
}

.portfolio .themebtn {
  background: #ff5d41;
  border: 1px solid #ff5d41;
  color: #ff5d41;
}

.portfolio .themebtn.themebtn--alt:hover {
  background: #000 !important;
  color: #fff;
  border: 1px solid #000;
}

.portfolio .themebtn:hover {
  background: #000 !important;
  color: #fff;
}

.hero-section {
  padding: 100px 0 100px;
  background:
    linear-gradient(45deg, black, #00000047), url(../images/banner.jpg);
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-copy p {
  max-width: 560px;
  margin-top: 20px;
  font-size: 17px;
  color: #fff;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  max-width: 520px;
}

.hero-stats div {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.hero-stats strong {
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  display: block;
  font-family: "Playfair Display", "Times New Roman", serif;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-book-stage {
  position: relative;
  height: 590px;
  max-width: 610px;
  margin-left: auto;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
  transform: rotateX(var(--hero-tilt-y, 0deg)) rotateY(var(--hero-tilt-x, 0deg));
  transition: transform 0.2s ease-out;
}

.hero-book-track {
  position: absolute;
  left: 7%;
  right: 3%;
  top: 0;
  display: grid;
  gap: 22px;
  animation: verticalBooks 16s linear infinite;
  will-change: transform;
}

.hero-book-stage:hover .hero-book-track {
  animation-play-state: paused;
}

.hero-book-row {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 270px;
}

.hero-book-row:nth-child(even) {
  transform: translateX(45px);
}

.hero-section .contact-form {
  height: 100%;
  background: #00000080;
  border-radius: 8px;
  padding: 28px;
}

.hero-section h1 {
  font-size: 58px;
  line-height: 1.04;
  max-width: 650px;
  color: #fff;
}

.hero-section .hero-copy p {
  max-width: 560px;
  margin-top: 20px;
  font-size: 17px;
  color: #fff;
}

.hero-section .btn-gold {
  background: #007846;
  border-color: #007846;
  color: #fff;
  box-shadow: 0 10px 24px rgba(235, 169, 31, 0.28);
}

a.btn.btn-outline-green.btn-lg {
  background: #ff5d41;
  color: #fff;
}

.hero-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff5d41;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-section .eyebrow::before,
.hero-section .eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: #ff5d41;
  display: inline-block;
}

.hero-section .btn-gold:hover,
.hero-section .btn-gold:focus {
  color: #17302b;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(235, 169, 31, 0.34);
  background: #ff5d41;
}

.hero-section h2 {
  font-size: 37px;
  line-height: 1.16;
  color: #fff;
  margin: 0px;
}

.hero-section .contact-form label {
  font-weight: 800;
  color: #fff;
  margin-bottom: 7px;
}

.hero-section .form-control,
.hero-section .form-select {
  border-radius: 8px;
  border: 1px solid rgba(7, 88, 76, 0.18);
  background: #fff;
  min-height: 48px;
  color: #000;
}

.hero-section textarea.form-control {
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}

.hero-section .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

footer.our-footer {
  width: 100%;
  z-index: 1;
  background: url(../images/footer-bg.jpg) no-repeat scroll center top #0c2529;
  margin: 0;
  position: relative;
  background-size: cover;
}

.footer-up {
  padding: 60px 0;
  width: 100%;
  position: relative;
  color: #bfd0bd;
}

.footer-up p {
  color: #bfd0bd;
  max-width: none;
  margin: 0;
  font-size: 1rem;
}

img.ftr-sticker {
  margin-bottom: 20px;
}

.footer-up p {
  color: #bfd0bd;
  max-width: none;
  margin: 0;
  font-size: 1rem;
  position: relative;
  letter-spacing: -0.3px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.footer-up .col-md-7 {
  padding-left: 80px;
  margin-top: 30px;
}

.footer-up h5 {
  color: #0d955d;
  font-size: 1.125rem;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 5px solid #007846;
  font-family: "Inter", sans-serif;
}

.footer-up ul {
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.footer-up ul li {
  margin-bottom: 10px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.footer-up ul li a {
  color: #d1e3cf;
  transition: all ease-in-out 0.2s;
}

.footer-up ul li a:hover,
.footer-up ul li a:active,
.footer-up ul li a:focus {
  transition: all ease-in-out 0.2s;
  color: #00a35f;
}

.copyright {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 30px 0;
  border-top: 1px solid #225e63;
}

.copyright .row {
  align-items: center;
}

.copyright * {
  font-size: 15px;
  color: #d1e3cf;
  font-family: "Inter", sans-serif;
}

.copyright p {
  margin: 0;
}

.copyright ul {
  display: flex;
  justify-content: end;
  list-style: none;
}

.copyright ul li {
  margin-left: 11px;
}

.copyright ul li.sep {
  top: 2px;
  position: relative;
}

.popupform {
  width: 880px;
  padding: 30px 31px 110px;
  overflow: visible;
  background: url("../images/popupbg2.png") no-repeat scroll center top !important;
  transform: scale(0.9);
}

.popupinn {
  max-width: 370px;
  position: relative;
  right: 40px;
  top: 0;
  float: right;
}

.ppp-head {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  margin: 10px 0;
  background: #fe5d41;
  text-align: center;
  border-radius: 3px;
  overflow: hidden;
}

.ppp-head b {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.125rem;
  width: 50%;
  display: block;
  font-weight: 500;
  line-height: 1.2rem;
  font-family: "Inter", sans-serif;
}

.ppp-head h4 {
  width: 50%;
  margin: 0;
  color: #fe5d41;
  position: relative;
  z-index: 1;
  padding-left: 10px;
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  text-align: left;
}

.ppp-head:after {
  content: "";
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  background: #0c1651;
}

.popupinn h5 {
  text-align: center;
  color: #fff;
  font-weight: 500;
}

.popupform h2 {
  font-size: 21px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 35px;
  margin-top: 0;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.popupform h2 b {
  display: block;
  background: #e22f07;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1rem;
  color: #fff;
  line-height: normal;
  margin-top: 5px;
  font-family: "Inter", sans-serif;
}

.popupform .fancybox-close-small {
  border: none;
  background: #fe5d41;
  border-radius: 72px;
  text-align: center;
  box-shadow: #000 0 0 10px;
  right: 0;
  top: 0;
  padding: 5px;
  opacity: 1;
  width: 34px;
  height: 34px;
}

.popupform .fancybox-close-small svg {
  color: #fff;
}

.popupform .fancybox-close-small:after {
  color: #01876e;
  font-size: 25px;
  right: 4px;
  background: transparent;
  padding-top: 0;
  font-size: 20px;
}

.popupform ul li {
  text-align: left;
  position: relative;
  width: 100%;
  margin: 8px 0 0;
  display: inline-block;
}

.popupform ul li input[type="text"],
.popupform ul li input[type="email"],
.popupform ul li input[type="number"],
.popupform ul li textarea {
  /* background: #fafafa; */
  border: #dcdcdc 1px solid;
  padding: 10px 15px;
  width: 100%;
  border-radius: 7px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #000;
  box-shadow: none !important;
  outline: none 0px !important;
  height: 48px;
}

.popupform ul li i {
  position: absolute;
  top: 12px;
  left: 10px;
}

.popupform ul li textarea {
  height: 90px;
}

.popupform ul li.last {
  text-align: center;
  width: 100%;
}

.popupform ul li input[type="submit"] {
  background: #fe5d41;
  color: #fff;
  font-size: 18px;
  border: #ff5d41 1px solid;
  text-transform: uppercase;
  font-weight: 600;
  padding: 13px 50px;
  letter-spacing: 1px;
  font-family: "Inter", sans-serif;
  border-radius: 7px;
  outline: 0px none;
  width: 100%;
  display: block;
  line-height: normal;
}

.popupform ul li input[type="submit"]:hover {
  background: #e9482c;
  border-color: #e9482c;
}

.popupform ul li input[type="text"]:focus,
.popupform ul li input[type="email"]:focus,
.popupform ul li textarea:focus {
  border: #01876e 1px solid !important;
}

.pricing-tab-main .col-md-12 {
  padding: 40px 36px 40px;
  background: #007846;
  border-radius: 40px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.second-tab-leftbullets,
.second-tab-rightbullets {
  width: 48%;
  background: #fff;
  padding: 40px 40px 60px;
  border-radius: 10px;
  box-shadow: 0 10px 10px #00000014;
  position: relative;
}

.content-main-tab {
  display: flex;
  justify-content: space-between;
}

.content-main-tab h3 {
  font-size: 1.5rem;
}

.content-main-tab li {
  clear: both;
  margin-top: 20px;
  color: #5e6d5c;
  padding-left: 8px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  position: relative;
  font-size: 1rem;
  list-style-type: disc;
}

.content-main-tab li svg,
.content-main-tab li i.fas {
  position: absolute;
  left: 0;
  top: 5px;
  color: #fd5e42;
  font-size: 16px;
}

.content-main-tab ul {
  margin-bottom: 0 !important;
  list-style: disc;
  margin-left: 20px !important;
}

.pricing-tab-main .col-md-8.main-div {
  background: #f3f2ea;
  /* margin-left: -30px; */
  position: relative;
  z-index: 22;
  border-radius: 15px 15px 15px 0px;
  /* box-shadow: 0 0 15px #d0d0d0; */
}

.pricing-nav-container {
  padding: 0;
  background: #007846;
  border-radius: 15px 0px 0px 15px;
  margin-top: 40px;
}

.pricing-tab h2 {
  /* font-size: 32px; */
  color: #000;
  font-weight: 800;
  margin: 0;
  padding: 34px 54px 34px 34px;
  background: #eefaff;
  border-radius: 30px 0px 0px 0px;
  padding-bottom: 0;
}

.pricing-tab .nav-tabs {
  width: 100%;
  display: inline-block;
  /* padding-left: 10px; */
  padding-top: 30px;
  padding-bottom: 30px;
  border: 0;
}
.pricing-tab .nav-tabs li.active a {
  background: #fb6106;
  color: #fff !important;
}

.tab-price {
  font-weight: 600;
  font-size: 30px;
  color: #091a07;
  margin-bottom: 20px;
  display: none;
}

.second-tab-amount {
  position: absolute;
  bottom: -30px;
  margin-left: 0px;
}

.second-tab-amount .btn {
  background: #ff5d41;
  border-color: #ff5d41;
  padding: 17px 38px;
  color: #fff;
}

.content-main-tab-single .second-tab-leftbullets {
  width: 100%;
  margin-top: 20px;
}

.content-main-tab-single .second-tab-amount {
  margin-left: 0;
}
.content-main-tab-single .second-tab-leftbullets ul {
  margin-bottom: 30px;
}

.content-main-tab p {
  font-size: 1rem;
}

.pricing-tab .nav-tabs li a.active {
  background: #005a34;
  color: #00ff95;
  border-top: none;
  border-bottom: none;
}

.pricing-tab .nav-tabs li {
  position: relative;
}

.pricing-tab .nav-tabs li:before,
.pricing-tab .nav-tabs li:after {
  content: "";
  position: absolute;
  width: 88%;
  border-bottom: 1px dashed #04462b;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 0;
}

.pricing-tab .nav-tabs li:after {
  border-color: #0d925b;
  bottom: -1px;
}

.pricing-tab .nav-tabs li a.active:before {
  content: url("../images/tab-ico.png");
  position: absolute;
  left: 25px;
  top: 16px;
}

.pricing-tab .nav-tabs li a.active:after {
  content: "";
  position: absolute;
  left: -10px;
  width: 10px;
  height: 100%;
  background: #fd5e42;
  border-radius: 4px 0px 0px 4px;
  top: 0;
}

.second-tab-leftbullets:before,
.second-tab-rightbullets:before {
  content: "";
  position: absolute;
  left: -10px;
  width: 10px;
  height: 48px;
  background: #fd5e42;
  border-radius: 4px 0px 0px 4px;
}

.second-tab-heading h2 {
  font-size: 50px;
  letter-spacing: -0.4px;
  margin: 0 0 20px;
  text-align: center;
  font-weight: 600;
  color: #fff;
}

.second-tab-heading p.txtgrey {
  text-align: center;
  color: #fff;
  width: 70%;
  margin: 0px auto 30px;
}

section.price-design {
  margin-top: 40px;
  background: #f3f2ea;
  padding: 70px 0 70px;
}

.info-faq {
  text-align: center;
  margin-bottom: 20px;
}

section.price-design p {
  margin-bottom: 30px;
  color: #000;
  font-size: 17px;
  font-weight: 400;
}

.heading.text-center h2 {
  margin-bottom: 20px;
  font-size: 44px;
  font-weight: 600;
}

section.section.faq-section {
  background: #fff;
}

.footer-up img.ftr-sticker {
  width: 35%;
}
header {
  left: 0;
  width: 100%;
  top: 0;
  z-index: 2;
  padding: 15px 40px;
  /* overflow: hidden; */
  /* border-bottom: 1px solid #1b3a13; */
}

.topbar {
    background: #007846;
    padding: 15px 40px;
}

.col-md-2.col-1 {
  /* width: 12.666667%; */
}

.col-md-2.col-3 {
  /* width: 14.666667%; */
}

.col-md-8.col-2 {
  /* width: 72.666667%; */
}

nav.main-menu {
  padding: 0 20px;
  border-radius: 6px;
  /* width: 100%; */
  margin-top: 0;
  /* overflow: hidden; */
  /* display: table; */
  /* margin-right: auto; */
  /* margin-left: auto; */
}

nav.main-menu ul.menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  background: #007039;
  width: 14rem;
  display: none;
  list-style: none;
  padding: 0;
}

nav.main-menu ul.menu li:hover ul.sub-menu,
nav.main-menu ul.menu li:active ul.sub-menu,
nav.main-menu ul.menu li:focus ul.sub-menu {
  display: block;
}

nav.main-menu ul.menu li i.fa-angle-down,
nav.main-menu ul.menu li svg.fa-angle-down {
  position: absolute;
  right: 0;
  color: #007846;
  top: 5px;
  margin-left: 0;
}

nav.main-menu ul.menu li ul.sub-menu li a {
  padding: 15px 20px;
  color: #fff;
}

nav.main-menu ul.menu li ul.sub-menu li {
  clear: both;
  border-bottom: 1px solid #09542a;
}

nav.main-menu ul.menu li ul.sub-menu li a:hover {
  background: #0d9b4b;
}

ul.cinfo {
  display: flex;
  justify-content: end;
  list-style: none;
}

ul.cinfo li.info {
  margin-left: 20px;
}

ul.cinfo li.info a {
  color: #ddf1da;
  font-family: "Inter", sans-serif;
}

ul.cinfo li.info svg {
  color: #ff5d41;
  position: relative;
  top: 3px;
}

nav.main-menu ul.menu {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

nav.main-menu ul.menu li {
  position: relative;
}

nav.main-menu ul.menu li a {
  color: #000;
  padding: 0px 21px;
  display: block;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  transition: all ease-in-out 0.2s;
}

nav.main-menu ul.menu li a:hover {
  /*background: #0c5a34;   */
  transition: all ease-in-out 0.2s;
  color: #0c5a34;
}

header .btn {
  margin-top: 0;
  float: right;
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-right: 0;
  padding: 15px 10px !important;
}

header .row {
  justify-content: center;
}

.btn.btn-dor {
  background: #ff5d41;
  border-color: #ff5d41;
  color: #fff;
}

.btn:hover,
.btn:active,
.btn:focus,
.themebtn {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  color: #fff !important;
}

.btn.btn-dor:hover {
  background: #ff5d41;
}

section.our-faq {
    padding: 100px 0 40px;
}

section.our-faq h2 {
    font-size: 50px;
    margin-bottom: 15px;
}

.second-tab-amount .btn:hover, .second-tab-amount .btn:focus {
  background: #ff5d41;

}

.accordion-item .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(155deg) brightness(104%) contrast(101%);
}

.topbar ul.cinfo {
    justify-content: space-between;
}

header .row {
    justify-content: center;
}

.row {
    margin: 0 -10px;
    align-items: center;
}

.footer-up .coninfo li b svg {
    width: 17px;
    height: 17px;
    background: #ff5d41;
    padding: 10px 10px;
    border-radius: 100px;
    color: #fff;
}

.footer-up .coninfo li a b {
    color: #fff;
    font-size: 14px;
}

.footer-up ul li b {
    display: block;
    font-weight: normal;
}

.footer-up .coninfo li {
    display: flex;
    gap: 15px;
}

.footer-up ul {
    margin-top: 30px !important;
}

.footer-up ul li a svg {
    width: 10px;
    height: 10px;
    vertical-align: baseline;
}

.row.no-align {
    align-items: unset;
}


img.pymnt {
    width: 80%;
    margin-top: 15px;
}

.btn{
    
    padding: 16px 30px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    margin-right: 6px !important;
    position: relative !important;
    
    
    align-items: center !important;
    display: inline-flex !important;
    transition: 0.5s all !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    
    text-transform: uppercase !important;
    border: 1px solid #007846 !important;
    font-family: "Inter", sans-serif !important;
    gap: 5px !important;
}