/* FONT IMPORT */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #67E0E1;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Josefin Sans", sans-serif;
}

section {
    position: relative;
    padding: 4rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
    font-family: "Roboto", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: var(--font-heading);
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

/* Cursor */
.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--secondary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary);
    opacity: 0.3;
}


/* Preloader */
body.loading {
    overflow: hidden;
}

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: start;
    justify-content: start;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11113;
}

.preLoader .counter {
    color: var(--white);
    font-size: 16rem;
    font-weight: 600;
    letter-spacing: 8px;
    position: absolute;
    bottom: 2rem;
    right: 5rem;
}

.preLoader .counter span {
    font-family: var(--font-fredoka);
}

.preLoader .line {
    position: absolute;
    top: 80%;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--white);
    opacity: 0.75;
}

.preLoader .bar {
    width: 20%;
    height: 100vh;
    background-color: var(--primary);
}


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 7px;
    line-height: normal;
    overflow: hidden;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}


/* NAV HEADER CSS */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 37px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: #2F1718;
    text-transform: capitalize;
    font-weight: 600;
    padding: 0 0;
    display: inline-block;
}

.form-inline .themeBtn {
    border-radius: 30px;
    background: #000;
    font-size: 15px;
    text-transform: capitalize;
}

.form-inline {
    gap: 19.5px;
}

a.lock1 {
    color: #000;
    font-size: 15px;
}

a.lock1 i {
    margin-right: 10px;
}

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down>a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 5px;
    color: var(--black);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 6px 17px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
    text-transform: uppercase;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: #fff;
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 900px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: #2B2835;
    font-size: 112px;
    line-height: 1;
    font-weight: bold;
    text-transform: capitalize;
}

.main-slider p {
    color: #000;
    font-weight: 400;
    line-height: 1.5;
    margin: 2rem 0;
    font-size: 1rem;
    width: 65%;
}

figure.bnrimg1 {
    margin-bottom: -8rem;
    margin-left: -1rem;
}

.newsletter {
    position: relative;
    z-index: 4;
}

.newsletter input {
    border: unset;
    background: unset;
    outline: unset;
    box-shadow: unset;
    padding-left: 1rem;
    width: 100%;
}

.newsletter {
    background-color: #fff;
    border: 1px solid #757575;
    border-radius: 50px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 324px;
}

.newsletter button {
    color: var(--white);
    background-color: var(--secondary);
    height: 64px;
    display: grid;
    place-items: center;
    width: 64px;
    border: none;
    outline: unset;
    border-radius: 50%;
}

footer .form-group input::placeholder {
    font-size: 0.875rem;
    color: rgb(255 255 255 / 50%);
}

.bnr-book {
    display: flex;
    gap: 40px;
    align-items: center;
}

.formhead h3 {
    font-size: 24px;
    font-weight: 600;
}


/* !MAIN HERO SLIDER CSS */

.mainHead {
    font-size: 56px;
    font-weight: bold;
    text-transform: capitalize;
    color: #202020;
    line-height: 1;
    overflow: hidden;
}

.subHead {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #67E0E1;
    overflow: hidden;
}

.mainHead .char {
    display: inline !important;
}

/* about-section */

.about-section {
    background: var(--black);
    padding: 5rem 0;
}

.about-cntnt p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
    margin-top: 3rem;
}

span.squre-color {
    position: relative;
}

span.squre-color::before {
    position: absolute;
    content: "";
    background: #67E0E1;
    width: 15px;
    height: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}

span.squre-color::after {
    position: absolute;
    content: "";
    background: rgb(255 255 255 / 30%);
    width: 0;
    height: 1px;
    top: 0;
    bottom: 0;
    animation: squareAnim 3s linear infinite alternate;
}

@keyframes squareAnim {
    0% {
        width: 0;
    }

    50% {
        width: 135px;
    }

    100% {
        width: 0;
    }
}

.about-cntnt .mainHead {
    padding-bottom: 2rem;
}

.aboutbottom h2 {
    font-size: 44px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 17px;
}

.aboutbottom p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
    margin: 0;
    width: 91%;
}

.about-section .row+.row {
    margin-top: 4rem;
}

.about-img {
    overflow: hidden;
}

/* about-section */


/* seven-fire */

.fire-cntnt {
    text-align: end;
}

.fire-cntnt p {
    font-size: 1rem;
    color: #7A7A7A;
    line-height: 1.6;
    margin-top: 2rem;
}

.fire-cntnt .mainHead {
    padding-bottom: 1rem;
}

.fire-cntnt span.squre-color::after {
    background: #202020;
    right: 0;
}

.seven-fireImg {
    overflow: hidden;
}


/* seven-fire */


/* .relase-section  */

.release-section {
    background: #2B2835;
    padding: 0;
}

.release-cntnt {
    text-align: end;
}

.seven-fire {
    padding-bottom: 6rem;
}

section.seven-fire {
    padding-bottom: 6rem;
}

.release-cntnt p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
}

.release-cntnt h5 {
    font-weight: bold;
}

figure.release-figure {
    margin: -2rem 0;
}

.story-cntnt h3 {
    font-size: 20px;
    color: #00C3C6;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.story-cntnt {
    margin-top: 40px;
    text-align: center;
}

.story-cntnt h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: capitalize;
}

.story-cntnt.storycntnt1 h2 {
    text-align: start;
}

.story-cntnt.storycntnt1 {
    text-align: start;
    margin-top: 0;
}

.story-cntnt.storycntnt1 p {
    font-size: 1rem;
    color: #7A7A7A;
    line-height: 1.6;
}

.story-cntnt.storycntnt1 ul li {
    color: #7A7A7A;
    margin-top: 10px;
}

.story-cntnt.storycntnt1 ul {
    margin-bottom: 20px;
}

.story-cntnt.storycntnt1 a {
    font-size: 20px;
    text-transform: capitalize;
    color: #00C3C6;
    font-weight: bold;
}

.story-right {
    margin-top: -4rem;
}

section.story-section {
    padding: 7rem 0 3rem 0;
}


/* .relase-section  */


/* blog-section */

.blog-section {
    background: #000;
}

.blogtop-cntnt .mainHead {
    color: #fff;
}

.blogtop-cntnt span.squre-color::after {
    background: #fff;
}

.blogtop-cntnt p {
    color: #fff;
}

.blog-cntnt h3 {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

.blog-cntnt p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
}

.blog-cntnt a {
    color: #67E0E1;
    font-size: 20px;
    font-weight: bold;
    font-family: "Josefin Sans", serif;
}

.blog-cntnt {
    margin-top: 2rem;
    padding: 0 40px 40px 40px;
}

.blogwrap {
    background: #202020;
    padding: 20px 0 0 0;
    transition: 0.5s ease;
}

section.blog-section .row+.row {
    margin-top: 2rem;
}

.blogwrap:hover {
    background: #2B2835;
}


/* blog-section */


/* review  */

section.testimonial-section {
    background: #F0F0F0;
}

.testimonial-img {
    overflow: hidden;
}

.testy-content .mainHead {
    text-transform: inherit;
    padding-bottom: 1rem;
}

ul.stars {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 2rem;
}

ul.stars li a {
    color: #00C3C6;
}

.testy-content span.squre-color::after {
    background: #202020;
}

.testy-content p {
    font-size: 1rem;
    color: #202020;
    line-height: 1.5;
    margin: 1rem 0;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-user h3 {
    font-size: 1.125rem;
    color: #202020;
    font-weight: bold;
}

.review-user h3 span {
    color: #7A7A7A;
    display: block;
    font-weight: 400;
}

.review-content h2 {
    font-size: 2rem;
    color: #333333;
    font-weight: bold;
}

.review-content p {
    font-size: 1rem;
    color: #7A7A7A;
    line-height: 1.6;
}

.review-content {
    text-align: end;
    margin-top: 20px;
}

.testimonial-section figure img {
    width: 100%;
    border-radius: 50%;
}


/* review  */


/* counter */

ul.counter-list li {
    font-size: 80px;
    font-weight: bold;
    color: #00C3C6;
    line-height: 1;
}

ul.counter-list li span {
    display: block;
    font-size: 1.125rem;
    color: #7A7A7A;
}

ul.counter-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

ul.counter-list li {
    border-right: 1px solid #7A7A7A;
    padding-right: 4rem;
}

ul.counter-list li:nth-child(4) {
    border: unset;
}


/* counter */


/* / contact-section /  */

.contact-section {
    background: url(../images/contactbg.webp)center/cover no-repeat;
    padding: 5rem 0;
}

.contact__social {
    display: flex;
    gap: 3rem;
    margin-bottom: 3.125rem;
}

.contact__img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
}

.contact__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact__social li a {
    font-size: 17px;
    font-weight: bold;
    color: #4C4C4C;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.contact__form :is(input,
    textarea) {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgb(34, 34, 34, 20%);
    font-size: 1.125rem;
    font-weight: 400;
    color: #2b2b2b;
    padding: 0.75em 0 0 0;
    margin-bottom: 1.25rem;
    outline: none;
    resize: none;
    border-top: unset;
    border-right: unset;
    border-left: unset;
    background: unset;
}

.contact__form :is(input,
    textarea)::placeholder {
    color: #2B2B2B;
    font-size: 17px;
}

.contact__form .themeBtn {
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    background: #2B2835;
    border-radius: unset;
    font-size: 14px;
    font-weight: bold;
}

.contact__right {
    position: relative;
}


/* Inner Pages Start */

#mainSlider.main-slider--inner {
    height: 629px;
}

.about-para-content p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
    margin-top: 1.479375rem;
}

.inner-media {
    background: var(--black);
    padding: 4.8125rem 0;
}


/* Books Section Start */

.story-inner--mt {
    margin-top: 4rem;
}

.story-inner::before {
    content: '';
    width: 915px;
    height: 100%;
    background: #F0F0F0;
    position: absolute;
    top: 0;
    left: 0;
}

.story-inner--right::before {
    left: auto;
    right: 0;
}

.story-inner .story-wrap {
    text-align: center;
}

.story-inner .story-wrap-content {
    text-align: center;
    margin: 0;
}

.story-inner .story-wrap-content h3 {
    font-size: 30px;
    color: #AEAEAE;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-left: 17rem;
    margin: 0.4375rem 0 15px 17rem;
}

.story-inner .story-wrap-content h2 {
    font-size: 3.125rem;
    font-weight: bold;
    text-transform: capitalize;
    margin: -2rem 0 0 1.5rem;
}

.story-inner .story-wrap-content a {
    width: 263px;
    height: 57px;
    font-size: 1.625rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #00C3C6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    margin: 1rem 0 1rem 13rem;
}

.story-inner .story-wrap-content h4 {
    margin: 1.9375rem 0 0 3rem;
}

.story-inner .storycntnt1 {
    text-align: start;
    margin: 0;
}

.story-inner .storycntnt1 h2 {
    font-size: 2rem;
    margin: 0 0 0.75rem;
}

.story-inner .storycntnt1 a {
    font-size: 20px;
    text-transform: capitalize;
    color: #00C3C6;
    font-weight: bold;
    margin-right: 0.679375rem;
}


/* Books Section Start */

.blog-inner {
    background: var(--black);
}

.blog-inner-content {
    margin-bottom: 3.1525rem;
}

section.testimonial {
    background: var(--white);
}

section.testimonial--bg {
    background: #F0F0F0;
}

section.testimonial .testy-content {
    margin-bottom: 4rem;
}

.love-of-dogs--bg {
    background: #F0F0F0;
}

.love-dogs-content h2 {
    font-size: 2rem;
    font-weight: bold;
}

.love-dogs-content a {
    font-size: 20px;
    text-transform: capitalize;
    color: #00C3C6;
    font-weight: bold;
    margin-right: 0.679375rem;
}


/* Inner Pages End */


/* .footer */

footer {
    background: url(../images/foterbg.webp)center/cover no-repeat;
    padding-top: 2rem;
}

.fotterwrap {
    text-align: center;
}

.fotterwrap p {
    font-size: 1rem;
    color: #fff;
    margin-top: 3rem;
}

.fotterwrap .mainHead {
    padding-bottom: 2rem;
}

.fotterwrap span.squre-color::before {
    right: 6rem;
}

.fotterwrap span.squre-color::after {
    width: 220px;
    left: -6rem;
}

ul.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 25px;
}

ul.social-link li {
    background: #fff;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    transition: 0.5s ease;
}

ul.social-link li i {
    color: #000;
}

.row.copyRight p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    text-align: center;
}

.row.copyRight p strong {
    color: #00C3C6;
    font-weight: 400;
}

.copyRight {
    background: #000;
    padding: 27px 0;
    margin-top: 3rem;
}

footForm {
    border-bottom: 1px solid var(--black);
    display: flex;
    justify-content: space-between;
}

.footForm input {
    background: #fff;
    border: unset;
    box-shadow: unset;
    outline: unset;
    font-size: 1.125rem;
    color: var(--black);
    height: 46px;
    padding-left: 1rem;
    width: 430px;
}

.footForm input::placeholder {
    color: #808080;
    font-size: 15px
}

.footForm button {
    background: #000;
    border: 1px solid #67E0E1;
    outline: unset;
    font-size: 20px;
    font-weight: bold;
    padding: 7px 15px;
    position: absolute;
    right: 3rem;
    color: #67E0E1;
}


/* .footer */

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.form-inline .themeBtn:hover {
    background: var(--primary);
    color: #000;
}

.story-cntnt.storycntnt1 a:hover {
    color: #000;
}

.contact__form .themeBtn:hover {
    background: var(--primary);
    color: #fff;
}

.footForm button:hover {
    background: var(--primary);
    color: #000;
}

ul.social-link li:hover {
    background: var(--primary);
}

canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    mix-blend-mode: difference;
    user-select: none;    
}