@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Yeseva+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Babylonica&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

/* Boxicons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}

@font-face {
  font-family: Bostroom;
  src: url("../fonts/bostroom/Bostroom-free.otf");
}

/* Root Styling */
:root {
  --c1: #547792;
  --c2: #94B4C1;
  --c3: #FFDAB3;
  --f1: 'poppins';
  --f2: 'yeseva';
  --f3: 'Bostroom';
  --f4: 'Babylonica';
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

/* General Styling */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
}

::selection {
  background-color: var(--c1);
  color: #fff;
}

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

a:hover {
  color: #000;
}

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


p,
li,
a,
span,
input,
input::placeholder,
button {
  font-family: var(--f1);
}


.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
  outline: 0;
}

i.bx {
  font-family: boxicons;
  vertical-align: middle;
}

/* button style */

.themebtn {
  padding: 5px 6px 5px 35px;
  background: var(--c1);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 99;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 12px;
}

.themebtn:hover {
  background: var(--c1);
  color: #fff;
}

.themebtn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine .75s;
  animation: shine 2s linear infinite;
}

.themebtn::after {
  position: absolute;
  content: '';
  width: 55px;
  height: 55px;
  background-color: var(--c2);
  bottom: -14px;
  transition: 400ms ease;
  z-index: -1;
  border-radius: 100%;
  left: -22px;
}

.themebtn:hover::after {
  width: 100%;
  left: 0;
  border-radius: 0;
  bottom: 0;
  height: 100%;
}

.themebtn:hover span {
  animation: tada 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* button style */


/* header css start */

.header-main {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 8px 0px;
  position: relative;
}

a.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

ul.header-main__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

ul.header-main__nav li a {
  font-size: 15px;
  font-family: var(--f1);
  position: relative;
  text-transform: capitalize;
  font-family: var(--f1);
  font-weight: 500;
}

ul.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--c1);
  transition: all 500ms;
}

ul.header-main__nav li a.active::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover {
  color: var(--c1);
}

ul.header-main__nav li a.active {
  color: var(--c1);
}


/* header css end */

/* baner css start */

.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 89vh;
  z-index: 1;
}

.banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

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

.banner_cont {
  position: relative;
  color: #fff;
}

.banner_cont h6 {
  font-size: 28px;
  text-transform: capitalize;
  font-family: var(--f2);
  font-weight: 500;
  background: #1f7a508c;
  width: fit-content;
  padding: 8px;
  border-radius: 8px;
}

.banner_cont h3 {
  font-size: 70px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 10px 0px;
  line-height: 72px;
  font-weight: 700;
}

.banner_cont p {
  font-size: 15px;
  font-family: var(--f1);
  font-weight: 400;
  width: 570px;
}

/* baner css end */

/* new css start */

.footer_links h3 {
  font-weight: 600;
  font-family: var(--f2);
  font-size: 22px;
  margin: 0 0 18px;
}

.footer {
  background: #201E1F;
  padding: 50px 0px 0;
  color: #fff;
  position: relative;
}

.footer_links ul li a {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  font-family: var(--f1);
  margin-bottom: 26px;
}

.footer_links ul li {
  line-height: 1;
  list-style-type: disc;
}

.footer_links ul {
  padding-left: 25px;
}

.copyright_para p {
  font-size: 12px;
  font-family: var(--f1);
  margin: 0;
}

.footer_form input,
.footer_form textarea {
  width: 100%;
  padding: 10px;
  margin: 0 0 15px;
  border-radius: 7px;
  border: none;
  outline: none;
  background: #605f60;
  color: #fff;
}

.footer_form textarea::placeholder {
  color: #ffffffdb;
  font-size: 13px;
  font-family: var(--f1);
  font-weight: 500;
}

.footer_form input::placeholder {
  color: #ffffffdb;
  font-size: 13px;
  font-family: var(--f1);
  font-weight: 500;
}

.footer_form textarea {
  height: 130px;
}

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

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

.footer_icons li {
  list-style-type: none !important;
}

ul.footer_icons li a {
  font-size: 22px;
}

ul.footer_icons li {
  background: var(--c1);
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

section.powerhouse {
  background: #332f31;
  padding: 45px 0px;
  position: relative;
  overflow: hidden;
}

.power_cont {
  color: #fff;
}

.power_cont h3 {
  font-family: var(--f2);
  font-weight: 700;
  font-size: 48px;
  margin: 0;
}

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

.power_cont p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 14px;
}

section.powerhouse::before {
  position: absolute;
  content: '';
  width: 290px;
  height: 290px;
  background: var(--c1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -110px;
  left: -110px;
  border-radius: 100%;
  opacity: 0.5;
  animation: scale 6s ease-in-out infinite;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

section.powerhouse::after {
  position: absolute;
  content: '';
  width: 290px;
  height: 290px;
  background: var(--c2);
  bottom: -101px;
  right: -100px;
  border-radius: 100%;
  opacity: 0.9;
  animation: scale 6s ease-in-out infinite;
}

.themebtn.light::after {
  background: var(--c1);
}

a.themebtn.light {
  background: var(--c2);
}

.consultation_sect {
  padding: 70px 0px;
  background: url(../images/consult-back.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.consultation_cont h3 {
  color: #fff;
  font-family: var(--f2);
  font-weight: 600;
  font-size: 44px;
  margin: 0;
}

.consultation_cont h5 {
  color: #fff;
  font-family: var(--f2);
  font-weight: 600;
  font-size: 32px;
}

.consultation_cont p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 14px;
  color: #Fff;
}

.sect_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.consultation_cont {
  width: 91%;
  margin: 0 auto;
}

.test_img {
  width: 100%;
  height: 500px;
  text-align: center;
}

.test_img img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-radius: 80px 0px 80px 80px;
  box-shadow: 20px 20px 0px 0px var(--c2);
}

section.test_time {
  padding: 70px 0px;
  background: #f8f0e9;
}

.test_cont h3 {
  font-family: var(--f2);
  font-weight: 600;
  font-size: 44px;
  margin: 0 0 28px;
  position: relative;
  line-height: 1.0;
}

.test_cont p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 14px;
  margin: 0 0 8px;
}

.test_cont h3::before {
  position: absolute;
  content: '';
  background: url(../images/title-bef.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 155px;
  height: 15px;
  right: 35px;
  bottom: 28px;
  filter: hue-rotate(45deg);
}

.footer_links ul li a:hover {
  color: var(--c2);
}

.footer_links ul li a:hover::marker {
  color: var(--c2);
}

.section_title h3 {
  font-size: 36px;
  font-family: var(--f2);
  font-weight: 600;
  line-height: 1.0;
  position: relative;
  text-transform: capitalize;
}

.step_icon {
  width: 35px;
  height: 35px;
  overflow: hidden;
  margin: 0 0 20px;
}

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

.step_cont h3 {
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 600;
  font-size: 26px;
}

.step_cont p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 14px;
}

.step_cont span {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 42px;
  line-height: 0.9;
  color: #c8c4c0;
  font-family: var(--f2);
  position: relative;
}

.step_cont span::before {
  position: absolute;
  content: '';
  background: var(--c1);
  width: 9px;
  height: 55px;
  top: 0;
  left: 0;
}

.step_card {
  overflow: hidden;
}

.step_process {
  background: #faf4ef;
  padding: 70px 0px 0px;
}

.footer_logo {
  width: 49%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
}

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

.footer::before {
  position: absolute;
  content: '';
  background: #ffffff45;
  height: 1px;
  width: 100%;
  top: 25%;
  left: 0;
}

.section_title h3::before {
  position: absolute;
  content: '';
  background: url(../images/title-bef.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 140px;
  height: 15px;
  filter: hue-rotate(45deg);
  bottom: -15px;
  left: 10px;
}

.creator_img {
  width: 100%;
  height: 520px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

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

section.creater_sect {
  padding: 70px 0;
}

.creator_img::before {}

.time_book_img {
  width: 72%;
  height: 295px;
  overflow: hidden;
}

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

.time_cont {
  background: #ffff;
  position: relative;
  top: 0;
  left: -80px;
  width: 100%;
  padding: 80px 70px;
  box-shadow: 0 0 8px 0 gray;
}

.time_cont h3 {
  font-size: 52px;
  font-weight: 600;
  font-family: var(--f2);
  width: 105%;
  line-height: 1.1;
  margin: 0 0 27px;
  color: #000;
}

.time_cont::before {
  position: absolute;
  background: var(--c3);
  width: 100%;
  height: 290px;
  bottom: -40px;
  right: 0;
  background-repeat: no-repeat;
  content:
    '';
  clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 92%);
  z-index: -1;
}

.agency_list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 2px;
  flex-wrap: wrap;
}

.agency_list ul {
  line-height: 2.5;
}

.agency_list ul li {
  font-size: 15px;
  font-family: var(--f1);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.leading_Agency {
  padding: 70px 0px;
  position: relative;
}

.agency_cont h3 {
  font-family: var(--f2);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 39px;
  position: relative;
}

.agency_cont p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 10px;
}

.agency_list ul li img {
  width: 28px;
  height: auto;
  object-fit: contain;
}

.agency_list ul li img {
  width: 28px;
  height: auto;
  object-fit: contain;
  filter: hue-rotate(45deg);
}


.agency_cont h3::before {
  position: absolute;
  content: '';
  width: 160px;
  height: 15px;
  background: url(../images/title-bef.webp);
  background-position: center;
  background-repeat: no-repeat;
  bottom: 35px;
  right: 0;
  background-size: contain;
  filter: hue-rotate(45deg);
}

.leading_Agency::before {}

.leading_Agency::after {}

.themebtn i {
  font-size: 20px;
  background: var(--c2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 12px;
  transform: rotate(45deg);
  transition: 250ms;
}

.themebtn:hover i {
  background: var(--c1);
  transform: rotate(90deg);
}

.themebtn .light:hover i {
  background: var(--c2);
  transform: rotate(90deg);
}

a.themebtn.light i {
  background: var(--c1);
}

a.themebtn.light:hover i {
  background: var(--c2);
}

.ideas_img_div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

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

.idea_img.\31 {
  width: 13%;
  height: 275px;
  overflow: hidden;
  position: relative;
  z-index: -1;
  top: 55px;
}

.idea_img.\32 {
  width: 13%;
  height: 275px;
  overflow: hidden;
  position: relative;
  top: 55px;
  z-index: -1;
}

.idea_img.\34 {
  width: 13%;
  height: 326px;
  overflow: hidden;
  position: relative;
  top: 12px;
  z-index: -1;
}

.idea_img.\35 {
  width: 13%;
  height: 275px;
  overflow: hidden;
  position: relative;
  top: 55px;
  z-index: -1;
}

.idea_img.\33 {
  width: 50%;
  height: 340px;
  overflow: hidden;
  position: relative;
  top: 48px;
  z-index: -1;
}

.idea_para {
  background: #fff;
  padding: 20px;
  box-shadow: 0px 0px 5px 0px #a3a1a1;
  position: relative;
}

.wisdom_idea {
  padding: 70px 0px 100px;
}

.idea_para p {
  font-family: var(--f2);
  font-size: 50px;
  text-align: center;
  margin: 0;
  font-weight: 700;
  color: #000;
}

.wisdom_idea .section_title h3 {
  font-size: 60px;
  text-transform: capitalize;
}

.wisdom_idea .section_title h3::before {
  top: 60px;
  left: 69%;
  width: 165px;
  height: 20px;
}

.idea_para::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 300px;
  background: var(--c3);
  left: 0;
  bottom: -40px;
  clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 92%);
}

.book_img {
  width: 100%;
  height: 462px;
  overflow: hidden;
  box-shadow: 0px 0px 8px 1px grey;
  border-radius: 18px;
}

.book_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 6px solid #fff;
}

.writing_agency {
  padding: 70px 0px;
  position: relative;
}

.writing_agency .section_title h3 {
  font-size: 55px;
}

.writing_agency .section_title h3::before {
  left: 70%;
  top: 55px;
  width: 195px;
  height: 16px;
}

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

.testimonials .section_title h3 {
  font-size: 55px;
}

.testimonials .section_title h3::before {
  top: 56px;
  left: 61%;
}

.testi_card {
  background: var(--c1);
  padding: 38px 20px;
  border-radius: 12px;
}

.testimonials {
  padding: 70px 0px;
  background: #01683936;
}

.testi_cont h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  font-family: var(--f2);
}

.testi_cont p {
  color: #fff;
  font-family: var(--f1);
  font-weight: 400;
  font-size: 15px;
}

.writing_agency::before {
  position: absolute;
  content: '';
  width: 75%;
  background: var(--c3);
  height: 400px;
  bottom: 40px;
  left: 0;
  border-radius: 130px 0px 130px 0px;
}

.power_cont .sect_btn {
  justify-content: center;
}

.dream_img {
  position: relative;
}

.dream_img_cont {
  position: absolute;
  bottom: 0;
  padding: 0px 75px 128px;
  color: #fff;
}

.dream_img img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(45deg) brightness(0.5);
}

.dream_img {
  width: 32%;
  overflow: hidden;
  height: 1260px;
}

.main_dream {
  display: flex;
}

.dream_img2 {
  position: relative;
  right: 0px;
  width: 14%;
  height: 1260px;
  overflow: hidden;
}

.dream_img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.dream_img_cont p {
  font-family: var(--f2);
  font-size: 24px;
  line-height: 1.2;
}

.dream_img_cont h4 {
  font-family: var(--f2);
  font-weight: 700;
  font-size: 32px;
}

.dream_img::before {
  position: absolute;
  content: '';
  border: 4px solid #fff;
  width: 84%;
  height: 91%;
  bottom: 40px;
  left: 40px;
}

.dream_img::after {
  position: absolute;
  content: '';
  background: var(--c1);
  width: 5px;
  bottom: 100px;
  left: 40px;
  height: 200px;
  z-index: 111;
}

.main_dream_cards {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
}

.dream_card {
  width: 50%;
  padding: 40px 40px 26px;
  position: relative;
}

.dream_card.green {
  background: #547792bf;
}

.dream_card.d-green {
  background: var(--c1);
}

.dream_card.black {
  background: #2a3c4b;
}

.dream_card.g-black {
  background: #121f29;
}

.dream_card.l-green {
  background: #638e9f;
}

.dream_card.k-green {
  background: var(--c2);
}

.dream_card h4 {
  font-size: 35px;
  font-family: var(--f3);
  font-weight: 600;
  color: gainsboro;
  margin: 20px 0 65px;
  position: relative;
}

.dream_card h3 {
  font-family: var(--f2);
  font-weight: 600;
  color: #fff;
  font-size: 32px;
}

.dream_card p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  margin: 0 !important;
}

.dream_card.green::before {
  position: absolute;
  content: '';
  background: url(../images/dbook-1.webp);
  top: -2px;
  right: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 160px;
}

.dream_card.d-green::before {
  position: absolute;
  content: '';
  background: url(../images/dbook-2.webp);
  top: -2px;
  right: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 160px;
}

.dream_card.black::before {
  position: absolute;
  content: '';
  background: url(../images/dbook-3.webp);
  top: -2px;
  right: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 160px;
}

.dream_card.g-black::before {
  position: absolute;
  content: '';
  background: url(../images/dbook-4.webp);
  top: -2px;
  right: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 160px;
}

.dream_card.l-green::before {
  position: absolute;
  content: '';
  background: url(../images/dbook-5.webp);
  top: -2px;
  right: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 160px;
}

.dream_card.k-green::before {
  position: absolute;
  content: '';
  background: url(../images/dbook-6.webp);
  top: -2px;
  right: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 160px;
}

.dream_card h4::before {
  position: absolute;
  content: '';
  background: gainsboro;
  width: 20%;
  height: 4px;
  bottom: -4px;
  left: 0;
}

.banner_cont h3 span {
  color: var(--c2);
  font-family: var(--f4);
  font-weight: 500;
  font-size: 80px;
}

.banner_cont h5 {
  font-family: var(--f1);
  font-size: 21px;
  text-transform: capitalize;
  font-weight: 400;
}

.main_ban_form {
  border: 1px solid #fff;
  backdrop-filter: blur(12px);
  position: relative;
  background: #ffffff4a;
  width: 65%;
  margin-left: auto;
  padding: 22px 25px;
  border-radius: 20px;
  z-index: 1;
}

.banner_form input {
  width: 100%;
  padding: 10px;
  background: #fff;
  outline: none;
  border: none;
  margin: 0 0 20px;
  box-shadow: 0 0 1px 1px #fff;
  border-radius: 50px;
  font-family: var(--f1);
  font-size: 14px;
}

.banner_form textarea {
  width: 100%;
  padding: 10px;
  background: #fff;
  outline: none;
  border: none;
  margin: 0 0 20px;
  box-shadow: 0 0 1px 1px #fff;
  border-radius: 10px;
  height: 90px;
}

.banner_form input::placeholder {
  font-family: var(--f1);
  font-size: 12px;
  text-transform: capitalize;
  color: #808080ad;
  font-weight: 500;
}

.banner_form textarea::placeholder {
  font-family: var(--f1);
  font-size: 12px;
  text-transform: capitalize;
}

.main_ban_form h4 {
  font-family: var(--f1);
  font-weight: 300;
  font-size: 21px;
  text-transform: uppercase;
  margin: 0 0 4px 0px;
  color: #fff;
}

.main_ban_form h3 {
  font-family: var(--f2);
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 111;
  color: #fff;
}

.main_ban_form h5 {
  width: 100%;
  font-size: 15px;
  padding: 6px 0px;
  color: #fff;
  font-family: var(--f1);
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
}

.main_ban_form h5::before {
  position: absolute;
  content: '';
  background: var(--c1);
  width: 128%;
  height: 25px;
  left: -45px;
  top: 2px;
  z-index: -1;
}

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

.home_banner::before {
  position: absolute;
  content: '';
  background: url(../images/man.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 320px;
  height: 420px;
  bottom: 0;
  left: 54%;
  z-index: -1;
  transform: translatex(-50%);
}

.top_header {
  background: #201E1F;
  padding: 10px 0px;
}

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

.top_head a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-family: var(--f1);
}

.top_head a i {
  background: var(--c1);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
}

a.header__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 103px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  padding: 19px;
  z-index: 99;
}

a.header__logo::before {}

.nav_div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 160px;
}

/* responsive  css start */

.menu_logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
  box-shadow: 0px 0px 10px 0px #cfcfcf;
}


.side_menu {
  width: 90%;
  background: #fff;
  height: 100vh;
  position: fixed;
  top: 0;
  padding: 10px 16px;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 200ms all;
}

.responsive_menu {
  display: none;
}

.show {
  transform: translateX(0%);
}

.responsive_logo img {
  width: 130px;
}

.open_menu {
  font-size: 30px;
  color: var(--c2);
}

.side_menu li a {
  padding: 12px 12px;
  width: 100%;
  color: #373737;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
}

.close_menu {
  width: 50px;
  text-align: end;
  padding: 8px 12px !important;
  float: inline-end;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu_sticky {
  position: fixed;
}

.responsive_overly {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #000000a3;
  transition: 200ms;
  left: -100%;
  top: 0;
  z-index: 9999;
}

.responsive_overly.show {
  left: 0;
}

.side_menu li.accordion-button {
  background: transparent;
  padding: 0;
}

.side_menu .accordion-item {
  background: transparent;
  border: none;
}

.side_menu .accordion-button::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: boxicons !important;
  background-image: none;
  content: "\ebc0";
  color: #000;
  font-size: 19px;
}

.side_menu .accordion-body {
  padding: 0;
  overflow-x: auto;
}

.side_menu .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  background-image: none;
  content: "\eb8b";
  color: var(--c1);
}

.side_menu .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  outline: 0;
  border-color: transparent;
}

.side_menu .accordion-button:not(.collapsed) a {
  color: var(--c1);
}

.close_menu i {
  font-size: 23px;
}



.side_form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 5px 12px;
  gap: 10px;
  box-shadow: 0px 1px 0px 0px #ebebeb;
  margin-bottom: 14px;
  margin-top: 0px;
}

.side_form input {
  background: transparent;
  border: none;
  outline: 0;
  color: gray;
  font-size: 13px;
  width: 100%;
}

.side_form button {
  background: transparent;
  border: none;
  font-size: 17px;
  color: gray;
  outline: 0;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.social a {
  font-size: 24px;
  color: var(--c2);
}

.link_row {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0px;
  justify-content: space-between;
  padding-left: 14px;
}

.link_colom {
  width: 100%;
}


.sidenav {
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0px 10px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: 200ms all;
  width: 500px;
  border-left: 1px solid;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-image: initial;
  padding: 20px 17px;
}


.custom-select {
  position: relative;
  width: 180px;
  cursor: pointer;
}

.custom-select .selected {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f1);
  font-size: 13px;
}

.custom-select img {
  width: 20px;
  height: 14px;
}

.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: #fff;
  display: none;
  z-index: 99;
}

.custom-select .options li {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.custom-select.open .options {
  display: block;
}

.side_menu ul {
  height: 84vh;
  overflow-y: auto;
}

/* responsive  css end */

/* dropdown css start */

ul.dropdown_menu {
  background: #fff;
  position: absolute;
  z-index: 99999;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
}

ul.dropdown_menu li a {
  padding: 12px 10px;
  color: #000000;
  font-size: 13px;
  align-items: center;
}

.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;
  margin: .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, .15);
  border-radius: .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: 14rem;
  visibility: visible;
  opacity: 1;
}

.header-main__nav li {
  position: relative;
}

ul.dropdown_menu li a::after {
  display: none;
}

.dropdown-toggle {
  font-size: 17px;
  transition: 500ms;
}

ul.header_nav li a i {
  font-size: 15px;
  transition: 300ms;
}

ul.header_nav li:hover i {
  transform: rotate(180deg);
}

.dropdown-submenu:hover .dropdown-toggle {
  transform: rotate(-90deg);
}

.top-radious {
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}

.bottom-radious {
  border-bottom-left-radius: 19px;
  border-bottom-right-radius: 19px;
}

ul.dropdown_menu li a:hover {
  background: var(--c1);
  color: #fff;
}

ul.header_nav li {
  position: relative;
}

/* dropdown css end */

/* popup form css start */

.form_close {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #fff;
  top: 6px;
  right: 6px;
  z-index: 999;
  background: var(--c1);
  border-radius: 8px;
}

.popup_form {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #59362982;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.popup_form .banner_form {}

.popup_form .form_arrow {
  display: none;
}

.popup_form.active {
  display: flex;
}

.popup_form .form_close {
  display: flex;
}

.form_close:hover {
  color: #fff;
  background: var(--c2);
}

.popup_form .chat_form {
  width: 30%;
}

.popup_form .main_ban_form {
  width: 52%;
  margin: 0 auto;
}


/* popup form css end */


/* inner banner css */

.inner_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 94vh;
}

.inner_banner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: grayscale(0.3);
  z-index: -1;
}

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

.inner_cont {
  position: relative;
  z-index: 9;
  color: #fff;
}

.inner_cont h6 {
  font-size: 22px;
  text-transform: uppercase;
  font-family: var(--f1);
  font-weight: 400;
}

.inner_cont h3 {
  font-size: 48px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 14px 0px;
  font-weight: 700;
  line-height: 1.1;
}

.inner_cont p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
}

.inner_sub_img {
  width: 80%;
  height: 580px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

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

.inner_sub_banners {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 107vh;
  backdrop-filter: blur(5px);
  padding: 52px 0px;
  background: #ffffff69;
}

.inner_sub_cont h3 {
  font-size: 38px;
  font-family: var(--f2);
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.inner_sub_cont p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
}

.inner_sub_banners_overly {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.inner_sub_cont {
  position: relative;
  z-index: 9;
}

.inner_cont.text-center h3 {
  font-size: 80px;
  letter-spacing: 2px;
}

.inner_cont h3 span {
  font-family: var(--f2);
  background: var(--c2);
  padding: 0px 0px;
  font-style: italic;
  display: inline-block;
  font-weight: 500;
  line-height: 0.9;
}

.inner_sub_cont ul li {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
  position: relative;
}

.inner_sub_cont ul {
  padding-left: 18px;
}

.inner_sub_cont ul li::before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background: var(--c2);
  top: 50%;
  left: -21px;
  transform: translateY(-50%);
}

/* inner banner css end */

/* contact us page css start */


.contact_img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  transform: scale(1.1);
  margin-left: -30px;
}

.contact_img img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: contain;
}

.contact_us {
  padding: 70px 0px 100px;
  /* background: url(../images/contact-back.webp); */
  /* background-position: center; */
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  background: #ffffff36;
}

.contact_img::before {
  position: absolute;
  content: '';
  border: 50px solid;
  border-radius: 100%;
  background: transparent;
  height: 395px;
  width: 395px;
  right: 110px;
  top: 30px;
}

.contact_form textarea {
  height: 103px;
}

.contact_us_cont h5 {
  font-family: var(--f1);
  font-size: 22px;
  text-transform: uppercase;
  color: #333;
  word-spacing: -4px;
}

.contact_us_cont h3 {
  font-family: var(--f2);
  text-transform: uppercase;
  font-size: 44px;
  line-height: 1.1;
  color: #000;
  font-weight: 800;
}

.contact_us_cont h3 span {
  font-family: var(--f3);
  text-transform: uppercase;
  font-weight: 900;
}

.contact_form {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.contact_form input::placeholder {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  text-transform: capitalize;
}

.contact_form textarea::placeholder {
  font-size: 14px;
  color: #333;
  text-transform: capitalize;
  font-weight: 400;
}

.contact_us::before {
  position: absolute;
  content: '';
  background: url(../images/splatter.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 220px;
  height: 208px;
  top: 8px;
  left: -74px;
  z-index: 9;
  transform: scaleX(-1) rotate(75deg);
}

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

.per-check input {
  width: fit-content;
}

.per-check label {
  font-size: 12px;
}

.per-check label a {
  color: #000;
  font-weight: 800;
  text-decoration: underline !important;
  font-size: 11px;
}

.contBox a {
  width: 100%;
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.contBox a i {
  font-size: 20px;
}

.contBox a span {
  font-weight: 600;
}

.contact_form_fields input,
.contact_form_fields textarea {
  width: 100%;
  border: honeydew;
  padding: 10px 10px;
  font-size: 14px;
  box-shadow: 0px 0px 8px 0px #b9b9b9;
  border-radius: 5px;
  outline: 0;
}

form.contact_page_form .col-md-4,
form.contact_page_form .col-md-12 {
  padding: 0px 7px;
}

.contact_form_fields textarea {
  height: 120px;
}

.contact_form_fields {
  margin-bottom: 10px;
}

.contact_form_fields input::placeholder,
.contact_form_fields textarea::placeholder {
  text-transform: capitalize;
}

form.contact_page_form {
  margin: 30px 0px;
}

/* contact us page css end */

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

.copy_right a {
  text-transform: capitalize;
  color: #fff;
  font-size: 14px;
}

.copy_right a:hover {
  color: var(--c1);
}

/* privacy page css start */

.privacy {
  padding: 80px 0;
  background: #f9fafc;
}

.policy_content {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Section Headings */
.policy_content h4 {
  font-size: 26px;
  font-family: var(--f2);
  font-weight: 600;
  margin: 13px 0;
  color: #111827;
  position: relative;
  padding-left: 18px;
  text-transform: capitalize;
}

.policy_content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 70%;
  width: 4px;
  background: var(--c2);
  border-radius: 4px;
}

/* Paragraph Styling */
.policy_content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #374151;
  text-align: justify;
  margin-bottom: 14px;
}

/* Bold text highlight */
.policy_content p b {
  color: var(--c2);
  font-weight: 600;
}

/* Links */
.policy_content a {
  color: var(--c2);
  text-decoration: none;
  font-weight: 500;
}

.policy_content a:hover {
  color: var(--c1);
}

/* Contact Section Highlight */

.policy_content h1 {
  font-size: 50px;
  font-family: var(--f1);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  text-decoration: underline !important;
  text-decoration-color: var(--c2) !important;
}

.policy_content ul,
.terms_content ul {
  padding-left: 22px;
  margin: 15px 0;
}

.policy_content ul li,
.terms_content ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

/* Custom bullet */
.policy_content ul li::before,
.terms_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--c2);
  font-size: 21px;
  line-height: 1.9;
  width: 7px;
  height: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c2);
  border-radius: 50px;
}

.policy_content h5 {
  font-size: 22px;
  font-family: var(--f1);
  font-weight: 500;
}

/* privacy page css end */

.copyright_para {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}

.copyright_para ul {
  display: flex;
  align-items: center;
  gap: 21px;
}

.copyright_para ul li a {
  color: #fff;
  font-size: 12px;
  text-transform: capitalize;
}

.copyright_para ul li a:hover {
  color: var(--c2);
}

.white_btn {
  text-align: -webkit-center;
}

.testo_page {
  padding: 70px 0px;
}

.testo_page .col-md-4:nth-child(odd) .testi_card {
  background: var(--c2);
}

/*===================================== faqs page css start ================================*/

.faqs_section {
  padding: 70px 0px;
}

.faqs_mian .accordion-button {
  padding: 26px 20px;
  font-family: var(--f1);
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  border-radius: 0 !important;
  background: #fff;
}

.faqs_mian .accordion-item {
  margin-bottom: 17px;
  border: 1px solid #c7c7c7 !important;
  overflow: hidden;
  border-radius: 8px !important;
  box-shadow: 0px 0px 10px 0px #00000026;
}

.faqs_mian .accordion-button:not(.collapsed) {
  color: #000;
  background: #fff;
  box-shadow: none;
}

.faqs_mian .accordion-body {
  background: var(--c2);
  padding: 24px 24px;
}

.faqs_mian .accordion-body p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
}

.faqs_mian .accordion-button::after {
  background-image: none;
  content: "\ee90";
  font-size: 14px;
  width: 23px;
  height: 23px;
  font-family: boxicons !important;
  border: 2px solid;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faqs_mian .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(90deg) scale(1.3);
  color: var(--c1);
}

.faqs_mian .accordion-button:hover {
  color: var(--c1);
}

.faqs_img {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: sticky;
  top: 20px;
  transform: translateX(30px);
}

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

.logo_main {
  position: relative;
  width: 100%;
  height: 510px;
}

/* ====================================== faqs page css end ================================ */

.section_title h5 {
  font-size: 30px;
  margin-top: 21px;
  font-family: var(--f1);
  text-transform: capitalize;
}

.white-bg {
  background: #fff !important;
}

.test_cont h4 {
  font-size: 23px;
  font-family: var(--f1);
  font-weight: 600;
}

.test_cont ul li {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
}

.test_cont ul li::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  background: var(--c1);
  top: 7px;
  border-radius: 50px;
  left: 6px;
}

.test_cont ul {
  margin-bottom: 20px;
}

.form_btn button {
  width: 57%;
  justify-content: space-evenly;
}

.agency_img {
  overflow: hidden;
  position: absolute;
  width: 50%;
  height: 100%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  overflow: hidden;
}

.agency_list ul li {
  width: 50%;
  line-height: 1.3;
  margin-bottom: 17px;
}

.dream_card::before {
  display: none;
}

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

.agency_img::before {
  position: absolute;
  content: '';
  width: 450px;
  height: 450px;
  background: var(--c2);
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.9;
  transition: 500ms;
}

.agency_img::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  background: var(--c2);
  top: 0;
  left: 0;
  opacity: 0.4;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
  transition: 500ms;
}

.agency_img:hover::after {
  bottom: -10%;
  right: -10%;
}

.agency_img:hover::after {
  width: 450px;
  height: 450px;
}

.agency_img:hover::before {
  width: 300px;
  height: 300px;
}

.inner_cont ul li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 10px;
  font-size: 14px;
  font-family: var(--f1);
}

.inner_cont ul li::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  background: var(--c1);
  top: 7px;
  left: -4px;
  border-radius: 50px;
}

.inner_cont ul {
  margin: 15px 0px;
}

.banner_img:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(180deg, #54779287, #94b4c187);
}

.inner_banner_img:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #54779287, #94b4c187);
  content: '';
}



.mainFrom {
  position: relative;
}

.flower {
  position: absolute;
  right: -120px;
  top: -40px;
  width: 250px;
  aspect-ratio: 1/1;
}

.flower img {
  object-fit: contain;
  width: 100%;
  filter: hue-rotate(125deg) brightness(0.5);
  height: 100%;
}

.CopyPara p {
  font-size: 14px;
}

.footerContact ul {
  display: block;
}

.footerContact ul li a {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 10px;
}

.policy_sec {
  padding: 70px 0;
}

.sub-heading {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 10px;
  font-family: 'Poppins';
}

.desclaimer {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
}


/* pricing css */

.pricing-section {
  padding: 80px 20px;
  background: var(--c1);
  font-family: 'Arial', sans-serif;
}

.pricing-section .pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: center;
  width: 90%;
}

.pricing-section .pricing-card h3 {
  font-size: 33px;
  margin: 15px 0;
  font-family: var(--f1);
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-section .desc {
  font-size: 18px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: var(--f1);
}

.pricing-section ul {
  list-style: none;
  padding: 0px 50px;
  margin: 20px 0;
  height: 300px;
  overflow-y: auto;
}

.pricing-section ul li {
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  text-align: left;
  padding-left: 16px;
}

.pricing-section .price {
  font-size: 34px;
  font-weight: bold;
  margin: 25px 0;
  color: var(--c1);
}

.pricing-section .price.highlight {
  color: #4285f4;
}

/* Buttons */
.pricing-section .btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.pricing-section .basic-btn {
  background: var(--c1);
  color: #fff;
}

.pricing-section .premium-btn {
  background: var(--c2);
  color: #fff;
}

.pricing-section .elite-btn {
  background: #4285f4;
  color: #fff;
}

.pricing-section .btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Badges */
.pricing-section .badge {
  display: inline-block;
  padding: 10px 13px;
  border-radius: 20px;
  font-size: 15px;
  color: #fff;
}

.pricing-section .badge.basic {
  background: var(--c1);
}

.pricing-section .badge.premium {
  background: var(--c2);
}

.pricing-section .badge.elite {
  background: #e3f0ff;
  color: #4285f4;
}

/* Ribbon */
.pricing-section .ribbon {
  position: absolute;
  top: 15px;
  right: -35px;
  background: #ff4d00;
  color: #fff;
  padding: 6px 40px;
  transform: rotate(45deg);
  font-size: 12px;
}

.pricing-section ul li::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 15px;
}

.pricing-section .section_title h3 {
  color: #fff;
  font-family: var(--f1);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
}

.pricing-section .section_title p {
  color: #fff;
  font-weight: 400;
  font-family: var(--f1);
  font-size: 16px;
}

.pricing-section .section_title h3::before {
  left: 7%;
  bottom: 46px;
}

ul.price_drop {
  padding: 0;
  height: fit-content;
  margin: 0;
}

ul.price_drop li {
  padding: 6px 0px;
  padding-left: 16px;
}


/* pricing css */