@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=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&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: rustic-roadway;
  src: url("../fonts/rustic-roadway-personal-use/RusticRoadway.otf");
}

@font-face {
  font-family: Kimberley;
  src: url("../fonts/kimberley/Kimberley\ Bl.otf");
}

/* Root Styling */
:root {
  --c1: #CC1215;
  --c2: #111761;
  --c3: linear-gradient(0deg, #CC1215, #510102);
  --c4: linear-gradient(90deg, #111761, #232FC7);
  --c5: linear-gradient(90deg, #111761, #CC1215);
  --f1: 'poppins';
  --f2: 'Manrope';
  --f3: 'rustic-roadway';
  --f4: 'Kimberley';
}

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: 12px 35px;
  background: var(--c3);
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--f1);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c1);
  z-index: 99;
}

.themebtn:hover {
  background: var(--c2);
  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: 0;
  right: 0;
  height: 100%;
  background-color: var(--c1);
  top: 0;
  transition: 400ms ease;
  z-index: -1;
  border-radius: 50px;
}

.themebtn:hover::after {
  width: 100%;
  left: 0;
}

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

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

/* button style */


/* header css start */

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

a.header__logo img {
  width: 150px;
  height: auto;
  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;
}

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;
  background: #000;
  min-height: 78vh;
}

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

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

.banner_cont {
  position: relative;
  color: #fff;
  width: 100%;
  background: url(../images/banner-con.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 535px;
  padding: 25px 28px;
}

.banner_cont h6 {
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--f1);
  width: fit-content;
  position: relative;
}

.banner_cont h1 {
  font-size: 45px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 12px 0px;
  line-height: 56px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

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

/* baner css end */



/* new css start */

a.themebtn.trans {
  display: flex;
  align-items: center;
  padding: 4px 10px;
  background: transparent;
  color: #000;
  gap: 10px;
  justify-content: center;
  border: 1px solid var(--c2);
}

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

a.themebtn.trans span small {
  display: block;
  font-weight: 600;
  color: var(--c2);
  font-size: 14px;
  margin: 0 0 -3px;
}

a.themebtn.trans::after {
  display: none;
}

a.themebtn.trans i {
  background: var(--c3);
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: #fff;
  border-radius: 100%;
}

a.themebtn.trans span {
  font-size: 14px;
}

.footer {
  padding: 70px 0px 0;
}

.footer_logo {
  position: relative;
}

a.footer_logo::before {
  position: absolute;
  content: '';
  width: 450px;
  background: var(--c5);
  height: 3px;
  top: 50%;
  left: -100%;
  transform: translate(-75%, -50%);
}

a.footer_logo::after {
  position: absolute;
  content: '';
  width: 450px;
  background: var(--c5);
  height: 3px;
  top: 50%;
  right: -100%;
  transform: translate(75%, -50%);
}

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

.footer_logos ul li a {
  font-size: 24px;
  background: var(--c3);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid var(--c1);
  transition: 500ms;
}

.footer_logos ul li a:hover {
  box-shadow: 0px 0px 6px 3px var(--c1);
  transform: scale(1.2);
}

h3.foot_head {
  font-family: var(--f2);
  font-weight: 700;
  font-size: 22px;
  margin: 0px 0 25px;
  position: relative;
  text-transform: capitalize;
  text-align: center;
}

h3.foot_head::before {
  position: absolute;
  content: '';
  background: var(--c1);
  width: 15%;
  height: 3px;
  bottom: -12px;
  left: 50%;
  transform: translatex(-50%);
}

.footer_about p {
  font-family: var(--f1);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 35px;
}

.main_footer {
  width: 65%;
  margin: 0 auto;
}

.main_footer .foot_head::before {
  width: 45px;
}

.footer_links {
  line-height: 2.3;
  padding-left: 18px;
}

.footer_links li a {
  font-size: 15px;
  font-family: var(--f1);
  text-transform: capitalize;
  font-weight: 500;
}

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

.end_footer {
  background: var(--c2);
  color: #fff;
  margin: 70px 0 0 0;
}

.end_cont p {
  margin: 0;
  padding: 16px;
  font-family: var(--v2);
  font-weight: 500;
  font-size: 15px;
}

.remember_sect {
  padding: 80px 0px;
  background: url(../images/remember-back.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.remember_img {
  width: 100%;
  height: 265px;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid #fff;
  transition: 250ms;
  position: relative;
}

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

.remember_img:hover {
  border: 5px solid var(--c1);
}

.remember_img span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 40px;
  background: #dcdcdcc4;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: translate(-50%, -51%);
  display: none;
}

.section_title h3 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  font-family: var(--f2);
  margin: 0 0 35px;
  position: relative;
}

.section_title h3::before {
  position: absolute;
  content: '';
  background: var(--c1);
  width: 7%;
  height: 10px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

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

.center_btn {
  text-align: center;
}




/* counter */
.count {
  font-family: var(--f1);
  font-size: 48px;
  font-weight: bold;
}

.counter-wrapper {
  background: #333;
  background-image: url('https://images.unsplash.com/photo-1568563643102-37d43956d1d3?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
  background: cover;
  background-position: center center;
  position: relative;
}

.counter-wrapper:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
}

.counter-inner {
  position: relative;
  z-index: 2;
}

.count-icon {
  font-size: 48px;
}

/* counter end  */

section.counter_sect {
  background: url(../images/counter-back.png);
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  top: -35px;
  position: relative;
  padding: 100px 0px 0px;
}

.text-white {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-right: 1px solid #fff !important;
    height: 90px;
    position: relative;
}

.count span {
    font-family: var(--f2);
    font-weight: 600;
    font-size: 48px;
}

.count p {
    font-size: 16px;
    font-family: var(--f1);
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    padding-left: 10px;
}

.text-white img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.themebtn.transparent {
    display: flex;
    align-items: center;
    padding: 11px 12px;
    background: transparent;
    color: var(--c2);
    gap: 10px;
    justify-content: center;
    border: 1px solid var(
    --c2);
    width: fit-content;
    font-family: var(--f1);
    font-size: 16px;
}

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

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

.section_title.alt h3 {
    position: relative;
    color: #000;
    margin: 0;
}

.section_title.alt h3::before {
    position: absolute;
    content: '';
    background: var(--c2);
    width: 10px;
    height: 55px;
    left: -14px;
    top: -6px;
}

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

.themebtn.transparent::after {
    background: var(--c2);
}

.discover_cont {
    width: 50%;
}

.dicover_card {
    color: #fff;
    padding: 24px 20px;
    border-radius: 15px;
    width: 88%;
    height: 244px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 50px;
}

.discover_img {
    width: 300px;
    height: 300px;
    overflow: hidden;
    position: relative;
    right: -60px;
    top: 20px;
}

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

.discover_cont h3 {
    font-size: 22px;
    font-family: var(--f2);
    font-weight: 600;
}

.discover_cont p {
    font-size: 14px;
    font-family: var(--f1);
    font-weight: 400;
    height: 101px;
    overflow-y: scroll;
}

.dicover_card.blue {
    background: var(--c2);
}

.dicover_card.red {
    background: var(--c1);
}

.adventures_sect {
    padding: 70px 0px;
    background: url(../images/adventure-back.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.adventure_img {
    width: 100%;
    height: 385px;
    overflow: hidden;
    position: relative;
}

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

.adventures_sect::before {
    position: absolute;
    content: '';
    background: var(--c3);
    width: 29%;
    height: 220px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    clip-path: polygon(100% 0%, 85% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
}

.adventures_sect::after {
    position: absolute;
    content: '';
    background: #57040596;
    width: 30%;
    height: 220px;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    clip-path: polygon(100% 0%, 85% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
    z-index: -1;
}

.adventure_cont .title_btn {
    justify-content: end;
}

.adventure_cont h4 {
    font-size: 64px;
    font-weight: 600;
    font-family: var(--f2);
    color: #Fff;
}

.adventure_cont .themebtn.transparent {
    border: 1px solid #fff;
    color: #fff;
}

.adventure_cont h3 {
    font-size: 68px;
    color: #fff;
    font-family: var(--f4);
    text-shadow: 5px 2px #a70a0d;
    margin: 0 0 28px;
    padding-right: 16px;
    position: relative;
}

.adventure_cont h3::before {
    position: absolute;
    content: '';
    background: var(--c4);
    width: 76%;
    height: 78px;
    right: -10px;
    top: 5px;
    z-index: -1;
    transform: rotate(180deg);
}

.portfolio {
    background: url(../images/portfolio-back.png);
    background-position: center;
    background-size: cover;
    padding: 100px 0px;
    background-repeat: no-repeat;
}

.portfolio .section_title h3 {
    font-size: 45px;
    font-weight: 700;
    font-family: var(--f2);
}

.portfolio .section_title h3 span {
 font-size: 45px;
 color: #fff;
 font-family: var(--f4);
 text-shadow: 5px 2px #a70a0d;
}

.slider-container {position: relative;overflow: hidden;width: 100%;display: flex;justify-content: center;align-items: center;}


.slider {display: flex;gap: 10px;transition: transform 0.4s ease;transform: translateX(0px) !important;}


.slide {width: 200px;height: 340px;background-size: cover;background-position: center;border-radius: 15px;transition: transform 0.3s ease;}


.slide.active {transform: scale(1.3);}


.arrow {position: absolute;top: 50%;transform: translateY(-50%);font-size: 40px;color: #fff;cursor: pointer;user-select: none;}


.arrow.left {left: 0%;}
.arrow.right {right: 0%;color: var(--c1);}

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

.portfolio .themebtn.transparent {
    border: 1px solid #fff;
    color: #fff;
}

.contact_img {
    width: 65%;
    height: 590px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.contact_img::before {
    position: absolute;
    content: '';
    background: var(--c1);
    width: 100%;
    height: 250px;
    top: -25px;
    left: 0;
    z-index: -1;
    border-radius: 180px 180px 0px 0px;
}

.contact_sect {
    padding: 80px 0px;
    background: var(--c4);
    width: 100%;
    height: auto;
    position: relative;
}

.contact_img::after {
    position: absolute;
    content: '';
    background: url(../images/contact-img-back.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 350px;
    height: 400px;
    top: -16px;
    right: -170px;
    z-index: -11;
}

.contact_main {
    background: #fff;
    width: 95%;
    padding: 55px 35px;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
}

.contact_form input, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
    box-shadow: 0px 0px 1px 1px #515050;
    margin: 0 0 25px;
    font-family: var(--f1);
    border-radius: 6px;
    font-size: 15px;
}

.contact_form textarea::placeholder {
    font-family: var(--f1);
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    color: #b5adad;
}

.contact_form input::placeholder {
    font-family: var(--f1);
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    color: #b5adad;
}

.contact_main h3 {
    font-family: var(--f2);
    font-size: 28px;
    font-weight: 700;
}

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

.contact_form .themebtn {
    width: 100%;
}

.contact_form {
    margin: 28px 0px 0px;
}

.our_mission {
    padding: 70px 0px;
}

.mission_img {
    width: 69%;
    height: 538px;
    margin: 0 auto;
    position: relative;
}

.mission_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #d5d6df;
    border-radius: 250px 250px 0px 0px;
    padding: 40px;
}

.mission_img::before {
    position: absolute;
    content: '';
    background: var(--c2);
    width: 100%;
    height: 97%;
    z-index: -1;
    top: 0px;
    border-radius: 250px 250px 0px 0px;
    right: -18px;
}

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

.mission_content::before {
    position: absolute;
    width: 132%;
    height: 104%;
    background: url(../images/mission-back.png);
    content: '';
    z-index: -11;
    left: -161px;
    top: 32px;
    border-radius: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.mission_content h3 {
    font-family: var(--f2);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 40px;
    position: relative;
}

.mission_content p {
    font-family: var(--f1);
    font-size: 15px;
    font-weight: 500;
    width: 92%;
    margin: 0px 0px 15px;
}

.monthly_section {
    background: url(../images/monthly-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    padding: 100px 0px;
    overflow: hidden;
}

.monthly_cont h3{
    font-size: 50px;
    font-weight: 600;
    font-family: var(--f2);
    color: #Fff;
}

.monthly_cont h4{
    font-size: 56px;
    color: #fff;
    font-family: var(--f4);
    text-shadow: 5px 2px #a70a0d;
    margin: 0 0 12px;
    padding-right: 16px;
    position: relative;
}

.monthly_cont p {
    font-family: var(--f1);
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.monthly_section::before {
    position: absolute;
    content: '';
    background: url(../images/monthly-before.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 280px;
    height: 520px;
    left: -120px;
    top: -40px;
}

.monthly_section::after{
    position: absolute;
    content: '';
    background: url(../images/monthly-after.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 385px;
    height: 590px;
    right: -118px;
    top: -95px;
}

.month_form {
    display: grid;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.month_form input {
    padding: 14px;
    border-radius: 50px;
    border: none;
    outline: none;
    margin: 0 0 20px;
    background: #ffffff80;
    font-family: var(--f1);
    font-size: 15px;
    color: #fff;
}

.month_form input::placeholder {
    color: #fff;
    text-transform: capitalize;
    font-family: var(--f1);
    font-size: 15px;
    font-weight: 400;
}

.month_form .themebtn {
    width: fit-content;
}


.monthly_form {
    padding: 40px 0px;
    border-left: 2px solid #fff;
    position: relative;
}

.monthly_form::before {
    position: absolute;
    content: '';
    background: #fff;
    height: 2px;
    width: 90%;
    top: 0;
    left: 0;
}

.monthly_form::after {
    position: absolute;
    content: '';
    background: #fff;
    height: 2px;
    width: 60%;
    bottom: 0;
    left: 0;
}

.mission_content h3::before {
    position: absolute;
    content: '';
    background: var(--c2);
    width: 9%;
    height: 12px;
    bottom: -25px;
    left: 0;
    border-radius: 20px;
}

.contact_sect::before {
    position: absolute;
    content: '';
    background: url(../images/contact-bef.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 155px;
    height: 315px;
    bottom: -17px;
    left: 0;
}

.testimonials .section_title h3 {
    color: #000;
    font-weight: 700;
    font-size: 35px;
}

.testimonials {
    padding: 70px 0px;
}

.testimonials .section_title h3::before {
    background: var(--c2);
    width: 9%;
    bottom: -18px;
}

.testi_card {
    background: var(--c1);
    padding: 35px 35px;
    color: #fff;
    height: 285px;
    position: relative;
}

.testi_card p {
    font-family: var(--f2);
    font-weight: 400;
    font-size: 17px;
    width: 90%;
}

.client_info {
}

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

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

.client_img {
    position: relative;
    bottom: -13px;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

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

.testi_card::before {
    position: absolute;
    content: '';
    background: url(../images/testi-bef.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    bottom: 20px;
    right: 20px;
}

.client_name {
    padding-left: 60px;
    position: relative;
}

.client_name::before {
    position: absolute;
    content: '';
    background: url(../images/testi-aft.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 48px;
    height: 45px;
    left: 0;
    top: 5px;
}

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

.testimonials {
  padding: 70px 0 ;
}

.testi_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -4%;
    background: transparent;
}

.testi_slider .slick-prev {
    left: -5%;
}

.testi_slider .slick-prev:before {
    position: absolute;
    content: "\e9b4";
    font-family: 'boxicons';
    color: #000;
}

.testi_slider .slick-prev:hover:before {
    color: #000;
}

.testi_slider .slick-next:before {
    position: absolute;
    content: "\e9b4";
    font-family: 'boxicons';
    color: var(--c1);
    transform: rotate(180deg);
}

.testi_slider .slick-next:hover:before {
    color: #000;
}

.library_img {
    width: 100%;
    height: 610px;
    position: relative;
    z-index: 1;
}

.library_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 58px;
    position: relative;
    top: -45px;
}

.library_img::before {
    position: absolute;
    content: '';
    background: url(../images/library-bef.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 525px;
    height: 800px;
    top: 0;
    left: 0;
}

.library_img p {
    color: #fff;
    position: absolute;
    bottom: -100px;
    width: 52%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f3);
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
}

.library_img::after {
    position: absolute;
    content: '';
    top: 62%;
    background: url(../images/library-img-bef.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 285px;
    height: 90px;
    left: 22%;
    z-index: 1;
}

section.library_sect {
    padding: 70px 0px;
}

.nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 13px;
    margin: 0 0 35px !important;
}

.nav-item button {
    font-size: 16px;
    padding: 9px 12px;
    font-family: var(--f2);
    text-transform: capitalize;
    font-weight: 500;
}

.nav-item .nav-link.active {border-radius: 50px;background: var(--c2);}

.nav-item .nav-link {
    background: gainsboro;
    border-radius: 50px;
    color: #000;
}

.library_book_img {
    width: 100%;
    height: 302px;
    overflow: hidden;
    margin: 0 0 30px;
    padding: 12px;
    background: #f5d0d0;
    border-radius: 10px;
}

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

.story_img {
    width: 73%;
    height: 460px;
    border: 2px solid #000;
    padding: 10px;
    border-radius: 220px;
    position: relative;
}

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

.story_sect {
    padding: 80px 0px;
    position: relative;
}

.story_cont h3 {
    font-family: var(--f2);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.0;
    width: 65%;
    margin: 0 0 20px;
}

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

.story_cont {
    width: 90%;
    position: relative;
    margin: 0 auto;
}

.story_img span {
    background: var(--c2);
    top: 10px;
    right: 5px;
    width: 105px;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 80px;
    font-size: 60px;
    font-family: var(--f4);
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px var(--c1);
}

.story_cont::before {
    position: absolute;
    content: '';
    background: #000;
    height: 350px;
    width: 1px;
    top: -38px;
    left: -98px;
}

.story_img .red {
    background: var(--c1);
}

.story_cont_alt::before {
    position: absolute;
    content: '';
    background: #000;
    height: 350px;
    width: 1px;
    top: -15px;
    right: -60px;
}

.story_cont_alt h3 {
    font-family: var(--f2);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.0;
    width: 65%;
    margin: 0 0 20px;
}

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

.story_cont_alt {
    width: 93%;
    position: relative;
    margin: 0 auto;
}

.story_img.alt {
    margin: 0px 0px 0px 150px;
}

.story_sect::before {
    position: absolute;
    content: '';
    background: url(../images/about-line.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 973px;
    height: 1600px;
    top: 19%;
    left: 12%;
    z-index: -1;
}

.story_sect::after {
    position: absolute;
    content: '';
    width: 180px;
    height: 200px;
    background: url(../images/story-bef.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -20px;
    right: 0;
}

.story_img::before {
    background: var(--c1);
    position: absolute;
    content: '';
    width: 400px;
    height: 400PX;
    left: -170px;
    top: -80px;
    border-radius: 50%;
    z-index: -1;
}

.story_img.\31::before {
   background: #fae7e8;
}

.story_img.\32::before {
    left: 230px;
    width: 480px;
    height: 480px;
    background: #e7e8ef;
}

.story_img.\33::before {
    background: #e7e8ef;
    width: 480px;
    height: 480px;
}

.story_img.alt.\34::before {
    background: #fae7e8;
    left: 250px;
    width: 480px;
    height: 480px;
    top: 0;
}

.story_img.\35::before {
    background: #e7e8ef;
    width: 540px;
    height: 540px;
    top: 40px;
    left: -270px;
}

.banner_cont .themebtn.transparent {
    border: 1px solid #fff;
    color: #fff;
}

.banner_cont h6::before {
    position: absolute;
    content: '';
    width: 80px;
    height: 2px;
    background: var(--c1);
    right: -100px;
    bottom: 10px;
}

.banner_cont h1 span {
    font-family: var(--f4);
    text-shadow: 3px 3px var(--c1);
}

.banner_form {
    background: url(../images/banner-form.png);
    position: relative;
    padding: 40px;
    width: 66%;
    border-radius: 50px;
    margin: 0 0 0 35%;
    text-align: center;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.banner_form h5 {
    font-family: var(--f1);
    font-size: 15px;
    font-weight: 500;
    color: var(--c1);
    background: #fff;
    width: fit-content;
    margin: 0 auto 10px;
    padding: 5px 10px;
    border-radius: 30px;
}

.banner_form h3 {
    color: #fff;
    font-family: var(--c1);
    font-size: 28px;
    margin: 0 0 15px;
}

.banner_main_form input, textarea {
    width: 100%;
    padding: 12px 28px;
    background: transparent;
    border: 2px dashed #fff;
    margin: 0 0 14px;
    border-radius: 24px;
    font-size: 15px;
    font-family: var(--f1);
    color: #fff;
    outline: none;
}

.banner_cont h1::before {
    position: absolute;
    content: '';
    background: linear-gradient(45deg, #1117612b, var(--c2));
    width: 65%;
    height: 48px;
    z-index: -1;
    right: -10px;
    top: 6px;
}

.banner_cont h1::after {
    position: absolute;
    content: '';
    background: var(--c1);
    width: 59%;
    height: 60px;
    left: -12px;
    bottom: 5px;
    z-index: -1;
    border-radius: 40px;
}

.banner_cont h1 img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.banner_main_form textarea::placeholder {
    font-family: var(--f1);
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
}

.banner_main_form input::placeholder {
    font-family: var(--f1);
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
}

.banner_main_form .themebtn {
    width: 100%;
}

.text-white.alt {
    border-right: none !important;
}

.text-white::before {
    position: absolute;
    content: '';
    top: -2px;
    right: -3px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #fff;
}

.text-white::after {
    position: absolute;
    content: '';
    bottom: -2px;
    right: -4px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #fff;
}

.text-white.alt::before {
  display: none;
}

.text-white.alt::after {
  display: none;
}

.banner_form::before {
    position: absolute;
    content: '';
    width: 258px;
    height: 328px;
    background: url(../images/banner-form-bef.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    bottom: -68px;
    left: -200px;
}
.footer_logo {
    width: 200px;
}

.footer_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.PopUpForm {
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: 300ms all;
}

.overLay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000087;
    backdrop-filter: blur(4px);
}

.crossBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 50px;
    z-index: 1;
    cursor: pointer;
    background: #000;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 100%;
}

.PopUpForm .row {
    height: 100% !important;
    align-items: center !important;
}
.PopUpForm.active {
    opacity: 1;
    visibility: visible;
}