@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Chilanka&family=Jost:ital,wght@0,100..900;1,100..900&family=Marcellus+SC&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

@font-face {
  font-family: Faktum;
  src: url("../fonts/Faktum/Rene\ Bieder\ -\ Faktum\ Test\ Regular.otf");
}

@font-face {
  font-family: Horsham;
  src: url("../fonts/Horsham-Serial-Medium\ Regular.ttf");
}

/* Root Styling */
:root {
  --c1: #468D5A;
  --c2: #FFF5AD;
  --c3: #92E3A9;
  --f1: 'poppins';
  --f2: 'Faktum';
  --f3: "Abhaya Libre", serif;
  --f4: "Chilanka";
  --f5: "Marcellus SC";
  --f6: "Jost";
  --f7: "Horsham";
}

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 {
  display: inline-block;
  background: url(../images/btn_bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  font-weight: 500;
  padding: 16px 30px;
  position: relative;
  font-size: 13px;
  text-transform: capitalize;
  outline: 0;
  border: none;
}

.themebtn:hover {
  transform: translateY(-4px) scale(1.05);
  background: url(../images/btn_hover.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}


/* button style */


/* header css start */

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0px;
}

a.header__logo img {
  width: 232px;
  height: auto;
  object-fit: contain;
}

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

ul.header-main__nav li a {
  font-size: 13px;
  font-family: var(--f1);
  position: relative;
  text-transform: capitalize;
  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%;
  background: #fff;
  min-height: 86vh;
}

.banner_img {
  width: 100%;
  height: 560px;
  overflow: hidden;
  transform: scale(1.2) translate(30px, 20px);
  position: relative;
  text-align: center;
}

.banner_img img {
  width: 47%;
  height: 100%;
  object-fit: cover;
  animation: rocketLift 4s ease-in-out infinite;
}

@keyframes rocketLift {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  5% {
    transform: translateY(-3px) rotate(-1deg);
  }

  10% {
    transform: translateY(2px) rotate(1deg);
    opacity: 1;
  }

  15% {
    transform: translateY(-2px) rotate(-1deg);
    opacity: 1;
  }

  20% {
    transform: translateY(1px) rotate(1deg);
    opacity: 1;
  }

  25% {
    transform: translateY(0px) rotate(0deg);
    opacity: 1;
  }

  40% {
    transform: translateY(-100%) rotate(0deg);
    opacity: 0;
  }

  60% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}


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

.banner_cont h6 {
  font-size: 28px;
  text-transform: capitalize;
  font-family: var(--f4);
  font-weight: 500;
}

.banner_cont h3 {
  font-size: 69px;
  font-family: var(--f3);
  margin: 10px 0px;
  font-weight: 800;
}

.banner_cont p {
  font-size: 13px;
  width: 94%;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}

/* baner css end */
/* new css start */

.banner_cont h3 span {
  background: url(../images/text_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  font-size: 57px;
  font-family: var(--f3);
  font-weight: 900;
  padding: 5px 10px;
  color: #fff;
}

.banner_tree {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: normal;
  pointer-events: none;
}

.banner_tree img {
  width: 200px;
  height: 220px;
  object-fit: contain;
  position: relative;
}

img.tree1 {
  bottom: -90px;
  animation: windBlow 4s ease-in-out infinite, fadeIn 1.5s ease-out forwards;
}

img.tree2 {
  bottom: 20px;
  right: -50px;
  animation: windBlow 4s ease-in-out infinite, fadeIn 1.5s ease-out forwards;
}

.banner_books {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  width: 90%;
  position: absolute;
  top: -283px;
  left: 116px;
}

.banner_book_item {
  width: 190px;
  height: 280px;
  overflow: hidden;
  box-shadow: -8px 5px 13px 0px #e5e5e5;
}

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

.about_author {}

.over_books {
  position: relative;
}

.banner_books .banner_book_item:nth-child(1) {
  width: 210px;
  height: 310px;
  transform: rotate(-20deg) translateY(-10px);
}

.banner_books .banner_book_item:nth-child(2) {
  transform: rotate(8deg) translate(20px, 1px);
}

.banner_books .banner_book_item:nth-child(3) {
  transform: rotate(-10deg) translate(29px, -20px);
}

.banner_books .banner_book_item:nth-child(4) {
  transform: rotate(10deg) translate(25px, -50px);
}

.banner_books .banner_book_item:nth-child(5) {
  width: 300px;
  height: 360px;
  transform: rotate(20deg) translate(10px, -10px);
}

.header_btn {
  display: flex;
  align-items: center;
  gap: 13px;
}

body::before {
  position: absolute;
  content: '';
  width: 57px;
  height: 213vh;
  background: url(../images/page_clipper.png);
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 9;
}

.home_banner::before {
  position: absolute;
  content: '';
  width: 207px;
  height: 104px;
  background: url(../images/banner_star1.png);
  left: 8%;
  top: 4%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 9;
  animation: shine 1.5s infinite ease-in-out;
}

.home_banner::after {
  position: absolute;
  content: '';
  width: 117px;
  height: 74px;
  background: url(../images/banner_star2.png);
  left: 51%;
  top: 18%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 9;
  animation: shine 1.5s infinite ease-in-out;
  animation-delay: 0.3s;
}


@keyframes shine {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px #fff);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px #fff3);
    opacity: 1;
  }
}

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

.section_title h6 {
  font-size: 18px;
  font-family: var(--f4);
  margin: 0;
  padding: 8px 20px 2px 8px;
  background: var(--c3);
  line-height: 1;
  width: max-content;
  clip-path: polygon(100% 0, 91% 50%, 100% 100%, 0 100%, 0 0);
  margin-bottom: 6px;
  font-weight: 700;
}

.section_title h3 {
  font-size: 56px;
  font-family: var(--f3);
  font-weight: 800;
  color: #000;
  margin: 0;
  line-height: 1;
}

.section_title p {
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

.port_img {
  height: 230px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.port_img img {
  width: 300px;
  height: 200px;
  object-fit: contain;
  transition: 500ms;
}

.port_img::before {
  position: absolute;
  content: '';
  width: 332px;
  height: 332px;
  background: transparent;
  border-radius: 100%;
  border: 39px solid #DEF7E5;
  bottom: -187px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.port_cont {
  text-align: center;
  padding: 6px 29px;
}

.port_cont h4 {
  font-size: 26px;
  font-family: var(--f3);
  font-weight: 900;
  color: #000;
  line-height: 1;
  margin-bottom: 10px;
}

.port_cont p {
  font-size: 13px;
}

.port_item {
  margin-bottom: 30px;
}


.faqs {
  padding: 70px 0;
}


.faqs_main .accordion-item {
  border: 1px solid #92E3A9 !important;
  margin-bottom: 20px;
  border-radius: 15px !important;
}

.faqs_main .accordion-button {
  box-shadow: 0 0px 15px 0 #e6d9f5 !important;
  border: 0 !important;
}

.faqs_main .accordion-button:not(.collapsed) {
  background: transparent;
  border: 0 !important;
  color: #000;
  box-shadow: none !important;
}

.faqs_main button:focus:not(:focus-visible) {
  outline: 0;
}

.faqs_main button.accordion-button {
  font-size: 15px;
  font-family: var(--f1);
  color: #000;
  font-weight: 600;
  border-radius: 13px;
  border: 0 !important;
  padding: 26px 30px;
  text-transform: capitalize;
}

.faqs_main .accordion-body {
  font-size: 14px;
  font-family: var(--f1);
  width: 70%;
  padding-top: 0;
}


.faqs_main .accordion-button::after {
  display: none;
}


.faqs_main .accordion-button:not(.collapsed)::after {
  display: none;
}


.faqs_main .accordion-button::before {
  content: "\ea4a";
  font-family: boxicons;
  transition: transform .2s ease-in-out;
  right: 20px;
  top: 50%;
  position: absolute;
  font-size: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
}

.faqs_main .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(-180deg);
  color: #9B22F3;
}

.faqs_main .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 15px !important;
}

.faqs_main .accordion-item:first-of-type .accordion-button {
  border-radius: 15px !important;
} 



.testimonial {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 131vh;
  position: relative;
}

.testimonial:before {
  position: absolute;
  content: '';
  background-image: url(../images/testi_before.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 170px;
  height: 190px;
  right: 13%;
  top: 130px;
  z-index: 2;
  animation: tada 2s linear infinite;
}

.testimonial:after {
  position: absolute;
  content: '';
  background-image: url(../images/testi_after.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20%;
  height: 57vh;
  right: 0;
  bottom: -90px;
  z-index: 2;
}

.testi__main {
  position: relative;
}

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

.testi_text {
  text-align: center;
  font-size: 13px;
  font-family: var(--f1);
  line-height: 32px;
  width: 73%;
}

.testi_img {
  width: 100%;
  height: 320px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi_user {
  font-size: 20px;
  font-family: var(--f1);
  font-weight: 700;
  text-transform: capitalize;
}

.testi_ranking {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FF9800;
}

.testi_crd {
  position: relative;
}

.testi_cont {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 24%;
  bottom: -50px;
}

.testimonial .slick-list.draggable {
  padding: 20px 0;
}

.testi_items {
  margin: 0 10px;
}


.testimonial .slick-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  bottom: -100px;
}

.testimonial .slick-dots li {
  width: auto;
  height: auto;
}


.testimonial .slick-dots li button {
  background: #000;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  transition: 300ms all;
}

.testimonial .slick-dots li.slick-active button {
  background: var(--c1);
  border-radius: 100%;

}

.testimonial .slick-dots li button:before {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testimonial .slick-dots li.slick-active button:before {
  border: 1px solid var(--c1);
  font-size: 0;
}



.our_work {
  background: url(../images/work-back.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  align-items: center;
  height: 100%;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  position: relative;
}

.our_work_main {
  position: relative;
}

.work_child {
  position: absolute;
  left: 32%;
  bottom: -176px;
  height: 300px;
  width: 23%;
  overflow: hidden;
}

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

.work_cont h3 {
  font-size: 68px;
  font-family: var(--f7);
  text-transform: uppercase;
  color: #000;
  line-height: 0.9;
}

.work_cont h5 {
  font-size: 23px;
  font-family: var(--f2);
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}

.work_cont p {
  font-size: 13px;
  font-family: var(--f2);
  line-height: 2.0;
  font-weight: 500;
  color: #000;
}

.cream {
  background: url(../images/btn_hover.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: #000;
}

.cream:hover {
  background: url(../images/btn_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  background-size: 100% 100%;
}

.work_main_slider {
  position: absolute;
  top: -190px;
  right: 21%;
  width: 300px;
  transform: rotate(-26deg);
}

.work_main_slider.alt {
  right: 0 !important;
  transform: rotate(153.70deg);
}

.work-book-img {
  width: 100%;
  height: 430px;
  overflow: hidden;
}

.work_main_slider.alt .work-book-img {
  transform: rotate(180deg);
}

.about_author {
  width: 100%;
  height: 100%;
  min-height: 115vh;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  padding: 20px 0px;
}

.author_cont h5 {
  font-family: var(--f4);
  font-size: 20px;
  font-weight: 500;
  clip-path: polygon(76% 0%, 72% 45%, 76% 88%, 0 88%, 0% 50%, 0 0);
  background: #478d5b;
  width: 38%;
  color: #fff;
  margin: 0;
  padding: 5px 6px;
}

.author_cont h3 {
  font-family: var(--f7);
  font-size: 50px;
  color: #000;
}

.author_cont p {
  font-size: 13px;
  line-height: 2.1;
  font-family: var(--f2);
  width: 94%;
  font-weight: 500;
  color: #00000091;
}

p {}

.author_figures {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 44px;
  margin-top: 25px;
}

.author_figures li span {
  align-items: center;
  display: grid;
  text-align: center;
  font-size: 50px;
  font-family: var(--f7);
  line-height: 1;
}

.author_figures li {
  display: block;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f2);
}

.author_img {
  width: 100%;
  height: 705px;
  position: relative;
  bottom: -80px;
}

.author_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  bottom: 45px;
  left: -80px;
}

.newsletter_img {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

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

.footer {
  width: 100%;
  height: 100%;
  min-height: 119vh;
  position: relative;
  padding: 105px 0px 115px;
  display: flex;
  justify-content: center;
  align-items: end;
}

.alternate {
  margin-top: 45px;
  position: relative;
}

.foot_newsletter h5 {
  clip-path: polygon(82% 0%, 80% 50%, 82% 100%, 0 100%, 0% 50%, 0 0);
  background: #70cc8b;
  width: 48%;
  padding: 4px 8px 0px;
  font-family: var(--f4);
  font-weight: 500;
  font-size: 21px;
}

.foot_newsletter h3 {
  font-size: 50px;
  color: #000;
  font-weight: 500;
  font-family: var(--f7);
}

.foot_newsletter p {
  font-family: var(--f2);
  font-size: 17px;
}

.main_form form {
  background: #fff;
  padding: 12px 13px;
  border-radius: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

form button {}

form input {
  width: 100%;
  outline: none;
  border: none;
}

form input::placeholder {
  font-size: 14px;
  text-transform: capitalize;
  font-family: var(--f2);
  color: #0000005c;
}

.footer_logo {
  width: 81%;
  height: auto;
  overflow: hidden;
  margin-bottom: 14px;
}

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

.foot_para {
  font-size: 13px;
  font-family: var(--f2);
  font-weight: 500;
}

.foot_head {
  font-size: 26px;
  font-family: var(--f7);
  font-weight: 500;
  margin-bottom: 14px;
  text-transform: capitalize;
}

.footer_links {
  line-height: 1.6;
}

.footer_links li a {
  font-size: 13px;
  font-family: var(--f2);
  font-weight: 400;
  text-transform: capitalize;
}

.alter {
  position: relative;
  right: 0;
  padding: 0px 10px;
}


.foot_cont_links {
  line-height: 1.4;
  margin-bottom: 14px;
}

.foot_cont_links li a {
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}

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

.footer_icons li a {
  font-size: 22px;
  border: 1px solid;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}

.end_footer {
  background: #8cce9e;
  padding: 15px 0px;
  text-align: center;
  bottom: 0;
  position: absolute;
  width: 100%;
}

.end_foot_para {
  margin: 0;
  font-size: 14px;
  font-family: var(--f2);
  font-weight: 500;
}

.foot_newsletter::before {
  position: absolute;
  content: '';
  background: url(../images/arrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 220px;
  height: 225px;
  left: -145px;
  bottom: -112px;
}

.foot_newsletter {
  position: relative;
}

.alternate::before {
  position: absolute;
  content: '';
  background: url(../images/pencil.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 115px;
  left: -110px;
  bottom: -65px;
  animation: danceMove 2s ease-in-out infinite;
  transform-origin: bottom center;
}

.ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: -1;
}

.wave {
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg) repeat-x;
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 146px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite,
    swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }

  100% {
    margin-left: -1600px;
  }
}

@keyframes swell {

  0%,
  100% {
    transform: translate3d(0, -25px, 0);
  }

  50% {
    transform: translate3d(0, 5px, 0);
  }
}


.services_img {
  width: 100%;
  height: 635px;
  position: relative;
}

.services_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.1);
}

.service_card {
  border: 1px solid var(--c3);
  margin-bottom: 35px;
  padding: 18px;
  position: relative;
  width: 100%;
  border-radius: 14px 0px 0px 14px;
  transition: 500ms;
}

.service_card h3 {
  font-size: 21px;
  width: 80%;
  font-weight: 600;
  font-family: 'Faktum';
}

.service_card p {
  font-size: 12px;
  font-family: var(--f1);
  color: #000;
}

.service_card span {
  position: absolute;
  right: -51px;
  font-size: 35px;
  top: -22px;
  color: #fff;
  background: var(--c3);
  border-radius: 0px 15px;
  display: flex;
  width: 65px;
  font-family: var(--f5);
  height: 90px;
  justify-content: center;
  align-items: center;
}

.service_card::before {
  position: absolute;
  content: '';
  background: #7ac990;
  width: 28px;
  height: 22px;
  top: -22px;
  right: 4px;
  border-radius: 12px 0px 0px;
}

.main_services {
  width: 80%;
  margin: 0 auto;
}

.service_card.alt {
  margin-left: 54px;
}

.service_card span small {
  font-family: var(--f3);
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  top: -5px;
}

.main_services.alt .service_card {
  padding-left: 30px;
  border-radius: 00px 14px 14px 0px;
}

.main_services.alt .service_card span {
  border-radius: 15px 0px;
  left: -50px;
}

.main_services.alt .service_card::before {
  left: 5px;
  border-radius: 0px 12px 0px 0px;
}

.main_services.alt .service_card.alt {
  margin-left: -64px;
}

.services_img::before {
  content: '';
  background: #b9cddb;
  width: 400px;
  height: 400px;
  position: absolute;
  border-radius: 100%;
  top: 39%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.about_layout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.author_cont {
  position: relative;
  z-index: 99;
}

.author_figures li b {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-family: var(--f7);
  gap: 6px;
}

.portfolio::before {
  position: absolute;
  content: '';
  width: 449px;
  height: 400px;
  background: url(../images/portfolio_before.png );
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 160px;
  left: -97px;
}

.portfolio::after {
  position: absolute;
  content: '';
  width: 461px;
  height: 534px;
  background: url(../images/portfolio_after.png );
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 20px;
  right: -208px;
}

.services {
  padding: 70px 0px;
}

.service_card:hover {
  background: var(--c2);
}

.m_3b {
  margin-bottom: 10px !important;
}

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

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

.footer_icons li a i {
  font-size: 18px;
}

.footer_icons li a:hover {
  transform: translateY(-6px) scale(1.2);
  background: var(--c2);
}

.port_item:hover .port_img img {
  animation: tada 1s;
}


/* dropdown css start */

ul.dropdown_menu {
  background: var(--c3);
  position: absolute;
  z-index: 99999;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
}

ul.dropdown_menu li a {
  border-bottom: 1px solid #00000029 !important;
  padding: 10px 13px;
  color: #000000;
  display: flex;
  font-size: 13px;
  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;
  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-main__nav li a i {
  font-size: 10px;
  transition: 500ms;
}

ul.header-main__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(--c2);
  color: #000;
}

/* dropdown css end */

/* form css start */


.main_form {
  padding: 40px 30px;
  width: 70%;
  margin: 8px auto 0;
  background: var(--c1);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 0 15px 1px #0004;
  z-index: 999;
  border: 4px solid var(--c5);
}

.form_top_title {
  font-size: 35px;
  font-family: var(--f3);
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 31px;
  text-align: center;
}

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

.form_close {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  color: var(--c1);
  top: 4px;
  right: 4px;
  z-index: 999;
  background: var(--c2);
  border-radius: 100%;
}

.popup_form {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #19272be6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
}


.popup_form .form_close {
  display: flex;
}

.popup_form.active {
  display: flex;
}

.popup_form .main_form {
  width: 30%;
}

.popup_form .main_form form {
  width: 100%;
}

/* form css end */

.foot_newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 10px;
  width: 70%;
}

.foot_newsletter form input {
  height: 40px;
  font-size: 14px;
}



/* inner pages css start */



.inner_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60vh;
  background: var(--c3);
  position: relative;
  overflow: hidden;
}

.inner_cont h4 {
  font-size: 60px;
  margin: 0;
  text-transform: capitalize;
  font-family: var(--f3);
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.inner_sub_banner {
  padding: 70px 0px;
}

.sub_banner_cont h3 {
  font-size: 33px;
  font-family: var(--f2);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 14px;
}

.sub_banner_cont p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 11px;
  overflow-y: auto;
}

.sub_banner_cont {
  padding-right: 28px;
}

.sub_banner_cont p::-webkit-scrollbar-track {
  background-color: rgb(245, 245, 245);
}

.sub_banner_cont p::-webkit-scrollbar {
  width: 2px;
  background-color: rgb(245, 245, 245);
}

.sub_banner_cont p::-webkit-scrollbar-thumb {
  background-color: var(--c1);
}


/* inner pages css end */

button.themebtn:hover {
  color: #000;
}

.form_top_title span {
  font-family: var(--f3);
  font-weight: 900;
}


/* contact us css start*/

.conatct {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 70px 0px 0;
}

.contact_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

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

.contact_form {
  position: relative;
  box-shadow: 0px 0px 10px 0px #d7d7d7;
  padding: 65px 50px;
}

.contact_icon {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
  padding: 21px;
  background: var(--c2);
  transition: 600ms ease-in-out;
}

.contact_cont {
  position: relative;
}

.contact_item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 43px;
}

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

.contact_info h5 {
  font-size: 28px;
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact_info p {
  font-size: 15px;
  margin: 0;
}

.fomt_fields input,
.fomt_fields textarea {
  width: 100%;
  height: 40px;
  padding: 12px;
  background: transparent;
  border: none;
  box-shadow: 0px 2px 0px 0px #cacaca;
  color: #cacaca;
  outline: 0;
  margin-bottom: 25px;
  font-size: 14px;
  transition: 500ms;
}

.fomt_fields input::placeholder,
.fomt_fields textarea::placeholder {
  color: #cacaca;
  text-transform: capitalize;
}

.fomt_fields textarea {
  height: 120px;
}

.contact_item:hover .contact_icon {
  background: var(--c2);
  box-shadow: 0px 0px 10px 0px var(--c1);
}

.contact_item:hover .contact_icon img {
  filter: none;
  animation: tada 800ms;
}

.contact_cont a:nth-last-child(1) {
  margin: 0;
}

.contact_form h3 {
  font-size: 52px;
  text-transform: capitalize;
  font-family: var(--f3);
  font-weight: 700;
  margin-bottom: 10px;
}

.fomt_fields input:focus,
.fomt_fields textarea:focus {
  transform: translateY(-6px);
}

/* contact us css end  */



/* Fade in on page load */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Wind-like swaying motion */
@keyframes windBlow {
  0% {
    transform: rotate(0deg) translateX(0);
  }

  25% {
    transform: rotate(1.5deg) translateX(1px);
  }

  50% {
    transform: rotate(-2deg) translateX(-2px);
  }

  75% {
    transform: rotate(1deg) translateX(1px);
  }

  100% {
    transform: rotate(0deg) translateX(0);
  }
}

/* .banner_img::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 100px;
    background: url(../images/Rocket-fire.gif);
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
} */

.rocket_main {
  position: relative;
}

.cloude_items {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.cloude_items img {
  position: absolute;
}

img.cloude1 {
  left: 4%;
  top: 17%;
  animation: float1 3s ease-in-out infinite;
}

img.cloude3 {
  right: 0;
  top: 0;
  animation: float1 3s ease-in-out infinite;

}

img.cloude2 {
  bottom: 16%;
  left: 8%;
  animation: float2 4s ease-in-out infinite;
}

img.cloude4 {
  right: 0;
  bottom: 28%;
  animation: float2 4s ease-in-out infinite;
}

@keyframes float1 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes float2 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.about_main {
  position: relative;
}

.about_icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about_icon_img {
  width: 140px;
  height: 180px;
  overflow: hidden;
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

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


.about_icon_img:nth-child(1) {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.about_icon_img:nth-child(2) {
  top: 35%;
  left: -6%;
  animation-delay: 1s;
}

.about_icon_img:nth-child(3) {
  top: 13%;
  left: 50%;
  animation-delay: 2s;
}

.about_icon_img:nth-child(4) {
  top: 37%;
  left: 58%;
  animation-delay: 3s;
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) translateX(5px) rotate(2deg);
  }

  50% {
    transform: translateY(5px) translateX(-5px) rotate(-2deg);
  }

  75% {
    transform: translateY(-7px) translateX(3px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}


.portfolio_book_rotate {
  position: absolute;
  bottom: 5%;
  left: -20px;
  width: 370px;
  height: 410px;
}

.portfolio_book_rotate img {
  position: absolute;
}

img.book_rotate1 {
  width: 183px;
  height: 280px;
  top: 125px;
  left: -7px;
  transform-origin: bottom right;
  animation: swingCard1 2s infinite alternate ease-in-out;
  object-fit: contain;
}

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

img.book_rotate2 {
  width: 240px;
  height: 349px;
  top: 13%;
  left: 30%;
  transform-origin: bottom left;
  animation: swingCard2 2s infinite alternate ease-in-out;
  object-fit: contain;
}

@keyframes swingCard1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(10deg);
  }
}


@keyframes swingCard2 {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-7deg);
  }
}

 
@keyframes danceMove {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(10deg) translateY(-3px);
  }
  50% {
    transform: rotate(-10deg) translateY(0);
  }
  75% {
    transform: rotate(10deg) translateY(-3px);
  }
  100% {
    transform: rotate(0deg) translateY(0);
  }
}

.footer_links li a:hover {
    transform: translateX(7px);
    color: var(--c1);
}

.iframcloser {
    height: 80px !important;
    width: 130px !important;
}



.testi_text::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.testi_text::-webkit-scrollbar
{
	width: 3px;
	background-color: #F5F5F5;
}

.testi_text::-webkit-scrollbar-thumb
{
	background-color: var(--c3);
}

.testi_text {
    margin: 0;
    position: relative;
    top: -28px;
    overflow: auto;
    height: 149px;
}

.ms_title {
    font-size: 40px;
    font-family: var(--f9);
    font-weight: 600;
    line-height: 48px;
}

    .ms_text {
    font-size: 14px;
    font-family: var(--f1);
    color: #626262;
    line-height: 27px;
}
.ms_text a {
    font-weight: 500;
    color: var(--c1);
}

.ms__bt {
    display: flex
;
    align-items: center;
    gap: 14px;
}

.ms_image {
    width: 100%;
    height: auto;
}

.marketing_services {
    background: #fff;
    padding: 70px 0;
}


.sub_banner_cont ul li {
    font-size: 14px;
    margin-bottom: 10px;
    list-style-type: disc;
}

.sub_banner_cont ul {
    padding-left: 22px;
}

.ms_image img {
    border-radius: 30px;
}

.thankyou_btn {
    text-align: center;
    margin-top: 20px;
}


/* responsive  css start */

.menu_logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  background: var(--c1);
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
}


.side_menu {
  width: 60%;
  background: var(--c1);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 500ms all;
}

.responsive_menu {
  display: none;
}

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

.responsive_logo img {
  width: 100px;
}

.open_menu {
  font-size: 30px;
  color: #fff;
}

.side_menu li a {
  padding: 10px 12px;
  width: 100%;
  border-bottom: 1px solid #ffffff69;
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
}

.close_menu {
  text-align: end; 
  padding: 8px 12px !important; 
}

.menu_sticky {
  position: fixed;
}

.responsive_overly {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #000000a3;
  transition: 1s;
  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;
}

.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: "\ea4a";
  color: #fff;
  font-size: 23px;
}


.side_menu .accordion-body {
  padding: 0;
  height: 120px;
  overflow-x: auto;
  background: var(--c3);
}

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

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

.side_menu .accordion-button:not(.collapsed) a {
  background: var(--c3);
}

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

/* responsive  css end */

ul.terms {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    gap: 17px;
}

.copy_right {
    position: relative;
}

.terms li a {
    font-size: 14px;
}

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

.privacy {
    gap: 10px;
    justify-content: end;
    padding: 70px 0
}

.policy_content h4 {
    font-size: 30px;
    font-family: var(--f3);
    font-weight: 900;
    margin: 8px 0px;
}

.policy_content p {
    font-size: 15px;
    margin: 10px 0;
    line-height: 25px;
}

.policy_content h2 {
    font-size: 30px;
    font-family: var(--f3);
    font-weight: 900;
    margin: 11px 0px;
}