* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/Cinzel-Medium.woff2') format('woff2'),
        url('../fonts/Cinzel-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/Cinzel-Bold.woff2') format('woff2'),
        url('../fonts/Cinzel-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



dl,
ol,
ul {
    padding: 0px;
    margin: 0px;
}

li {
    list-style: none;
}

p,
li {
    font-family: 'Poppins';
    font-size: 15px;
    color: #454545;
    line-height: 1.6;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel';
    color: var(--first-clr);
    line-height: 1.4;
    font-weight: 600;
}

a {
    font-family: 'Poppins';
    font-size: 15px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease 0s;
}

.container {
    max-width: 1230px;
}

:root {
    --first-clr: #002c42;
    --second-clr: #c2eec7;
}

.bg-color {
    background-color: #eaf8ff;
}

img {
    width: auto;
    max-width: 100%;
    transition: all 0.4s ease 0s;
}

.padd {
    padding: 60px 0px;
}

.header {
    padding: 10px 0;
    position: absolute;
    background: url(../img/nav-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 9;
    width: 100%;
    height: 110px;
}

/* .header::before{
    position: absolute;
    content: "";
    background: url(../img/nav-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
} */

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

.nav-bar ul {
    display: flex;
    align-items: center;
}

.logo img {
    width: 130px;
    height: auto;
    border-radius: 100%;
}

.nav-bar ul li {
    position: relative;
    transition: .4s ease;
}

.nav-bar ul li a {
    display: inline-block;
    padding: 20px;
    color: #fff;
    font-size: 16px;
}

.nav-btn a {
    padding: 8px 15px;
    color: #000;
    border-radius: 4px;
    background-color: var(--second-clr);
    cursor: pointer;
    transition: .4s ease;
}

ul.dropdown {
    display: none;
    position: absolute;
    flex-direction: column;
    width: 300px;
    align-items: flex-start;
    background: var(--first-clr);
    padding: 10px;
    /* transition: .4s ease; */
}

ul.dropdown li {
    margin: 0 !important;
    width: 100%;
}

ul.dropdown li a {
    padding: 5px 10px;
    font-size: 15px;
    width: 100%;
    border-bottom: 1px solid #eeeeee4d;
}

.clk_btn {
    position: absolute;
    color: #fff;
    top: 17px;
    right: 0;
}

.nav-bar ul li:hover ul.dropdown {
    display: block;
}

/* .sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    animation: slidetop 1s ease-in-out backwards;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    bottom: inherit;
    background: #fff;
    background-image: inherit;
} */

@keyframes slidetop {
    from {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(0)
    }
}

.slider,
.slide {
    height: 690px;
    width: 100%;
    object-fit: cover;
}

.slide {
    position: relative;
}


.slide__img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.slide__img img {
    width: 100%;
    height: 100%;
    opacity: 1 !important;
    animation-duration: 3s;
    transition: all 1s ease;
    object-fit: cover;
}

.slide__content {
    position: absolute;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #FFF;
    width: 80%;
}

.slide__content--headings h2 {
    font-size: 46px;
    margin: 10px 0 20px;
    color: #fff;
    width: 60%;
}

.slide__content--headings h2 span {
    color: var(--first-clr);
    font-weight: bold;
}

.slide__content--headings p {
    color: #fff;
    margin-bottom: 20px;
    width: 60%;
}

.banner-btn a {
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid var(--first-clr);
}

.slide__content--headings .animated {
    transition: all 0.5s ease;
}

/* Change animation presets */
.slider [data-animation-in] {
    opacity: 0;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
}

@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.zoomInImage {
    animation-name: zoomInImage;
}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.zoomOutImage {
    animation-name: zoomOutImage;
}

.span-title p {
    font-weight: 500;
    color: #000;
    margin: 0 0 5px;
    font-size: 18px;
}

.title h2 {
    color: var(--first-clr);
    font-size: 36px;
}

.ab-1 img {
    width: 450px;
    height: 450px;
    border-radius: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    object-fit: cover;
    position: relative;
}

.ab-2 img {
    width: 250px;
    height: 250px;
    border-radius: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    object-fit: cover;
}


.ab-2 {
    position: absolute;
    bottom: -45px;
    z-index: 9;
    right: 45px;
}

.ab-main {
    position: relative;
}

.ab-1:hover img {
    transform: scale(1.08);
}

.ab-2:hover img {
    transform: scale(1.08);
}

section {
    position: relative;
}

.wb {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 210px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

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

.service-sec {
    background-image: url(../img/ser-bg.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #eaf8ff;
    padding: 200px 0 20px;
}

.service-box {
    position: relative;
    width: 100%;
    border: 4px solid #fff;
    border-radius: 25px;
    overflow: hidden;
    min-height: 460px;
    margin-bottom: 25px;
}

.ser-img {
    width: 100%;
    height: 460px;
    overflow: hidden;
}

.ser-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ser-txt {
    position: absolute;
    z-index: 99;
    bottom: 0;
    background: linear-gradient(to top, #022d43, #29495a42);
    height: 135px;
    padding: 20px 15px 0;
    transition: .4s ease;
    left: 0;
    width: 100%;
}

.ser-txt h3 {
    font-size:22px;
    color: #fff;
    margin: 0;
    transition: .4s ease;
}

.ser-txt p {
    margin: 0;
    color: #fff;
    transition: .4s ease;
}

.service-box:hover .ser-txt {
    background: linear-gradient(to top, #c2eec7, #c0dfc029);
    height: 145px;
}

.service-box:hover .ser-txt h3,
.service-box:hover .ser-txt p {
    color: #000;
}

.service-box:hover img {
    transform: scale(1.1);
}

.why-box {
    text-align: center;
    margin-bottom: 50px;
}

.why-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 100%;
    margin-bottom: 10px;
}

.why-box h4 {
    font-size: 22px;
}

.wb2.wb {
    right: inherit;
    left: 0;
    width: 90px;
}

.bottom-sec {
    background: url(../img/footer-top.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 70px 0 30px;
    display: none;
}

.bottom-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0 0;
}

.bottom-foot h3 {
    color: #fff;
    font-size: 34px;
}

.bottom-foot input[type="email"] {
    border: 0;
    padding: 12px 50px;
    border-radius: 5px;
    margin-right: 30px;
    font-size: 16px;
}

.bottom-foot input[type="submit"] {
    padding: 10px 30px;
    border: 0;
    border-radius: 5px;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    background: var(--second-clr);
}

.footer {
    background: url(../img/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 40px;
}

.footer p,
.footer a {
    color: #fff;
}

.footer-box img {
    width: 115px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 100%;
}

h.f-title {
    font-size: 24px;
    color: #fff;
    font-family: 'Cinzel';
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
}

ul.foot-nav li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 7px;
}

ul.foot-nav li::before {
    position: absolute;
    content: "";
    background: url(../img/list.png);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    left: 0;
    top: 8px;
}

.f-cont {
    display: flex;
    align-items: center;
    margin-bottom: 19px;
}

.f-cont i {
    width: 30px;
    height: 30px;
    background: beige;
    display: grid;
    place-content: center;
    border-radius: 100%;
    color: #000;
    margin-right: 15px;
}

.f-cont a {
    width: 80%;
}

.copyrights {
    padding: 10px 0;
    background-color: #c2eec7;
}

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

.bottom-social ul {
    display: flex;
}

.bottom-social ul li a {
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    background: var(--first-clr);
    margin: 0 5px;
    border-radius: 100%;
    color: #fff;
    transition: .4s ease;
}

.copyrights p {
    margin: 0;
    color: #000;
    font-weight: 500;
}

.bottom-social ul li a:hover {
    background: #fff;
    color: var(--first-clr);
}

.foot-padding {
    padding-left: 50px;
}

.logo {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-bar ul li {
    margin-left: 3.5rem;
}

.nav-bar ul li:nth-child(4) {
    margin-left: 12rem;
}

.inner-banner img {
       width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top;
}

.inner-banner {
    position: relative;
}

.inner-banner:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000000c2;
}

.inner-content {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
}

.inner-content h2 {
    text-transform: capitalize;
    color: #fff;
    font-size: 46px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

ol.breadcrumb.text-uppercase.mb-0 li {
    font-size: 15px;
    color: #fff;
}

li.breadcrumb-item a {
    font-size: 15px;
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.default-accordion-box {
    position: relative
}

.default-accordion-box .block {
    position: relative;
    margin-bottom: 20px;
}

.default-accordion-box .block:last-child {
    margin-bottom: 0
}

.default-accordion-box .block .acc-btn {
    position: relative;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    padding: 16px 40px;
    background-color: #e9f8ff;
    padding-right: 100px;
    /*text-transform: capitalize;*/
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 10px;
    /* box-shadow: rgb(0 0 0 / 9%) 0 3px 8px; */
    border: 1px solid #002c42;
}

.default-accordion-box .block .acc-btn:before {
    position: absolute;
    right: 40px;
    top: 20px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    line-height: 22px;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.default-accordion-box .block .acc-btn.active {
    position: relative;
    background-color: var(--first-clr);
    color: #fff
}

.default-accordion-box .block .acc-btn.active:before {
    content: "\f068";
    color: #fff;
}

.default-accordion-box .block .acc-content {
    position: relative;
    display: none
}

.default-accordion-box .block .content {
    position: relative;
    padding: 35px 40px 25px;
    background: #e9f8ff;
}

.default-accordion-box .block .acc-content.current {
    display: block
}

.testiominal-sec {
    background: url(../img/footer-bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /* padding: 100px 0; */
    position: relative;
    background: #e9f8ff;
}

.testimonial-box {
    position: relative;
    width: 100%;
    margin: 15px;
}

.test-img {
    display: flex;
    /* align-items: center; */
    gap: 30px;
}

.test-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 100px;
}

.test-cont {
    padding: 25px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    width: 90%;
    margin-left: auto;
    top: 10px;
    min-height: 145px;
}

.test-cont:before {
    content: "";
    position: absolute;
    top: -34px;
    left: 0;
    width: 0px;
    height: 0px;
    /* border-left: 15px solid transparent; */
    border-right: 30px solid transparent;
    border-bottom: 35px solid #ffffff;
}

.test-icon {
    position: absolute;
    right: 25px;
    top: -20px;
}


.test-head h4 {
    font-size: 22px;
    /* color: #fff; */
}

.test-head {
    padding-top: 25px;
}

.bg-text p {
    /* color: #fff; */
}

.bg-text h3 {
    /* color: var(--second-clr); */
    font-size: 32px;
}

.test-head span {
    /* color: #fff; */
}

.block-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.block-img {
    position: relative;
    overflow: hidden;
    transition: .4s ease;
}

.block-in{
    position: relative;
}

.block-in:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background: #ffffff6e;
    transform: scale(0);
    transition: .4s ease;
}

.block-img h3 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .4s ease;
    width: 90%;
    text-align: center;
}

.block-img:hover h3 {
    opacity: 1;
    top: 50%;
}

.block-img:hover .block-in:before {
    transform: scale(1);
}


.cont-flex {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 49%;
    margin: 25px 0;
}

.cont-flex i {
    font-size: 36px;
    color: var(--first-clr);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
}

.cont-flex h4 {
    font-size: 20px;
}

.map iframe {
    width: 100%;
    height: 400px;
}

.form-banner input,
.form-banner select,
.form-banner textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 8px 10px;
    border: 1px solid #002c42;
    background: transparent;
    border-radius: 5px;
    color: #000;
    font-size: 14px;
    font-family: "Poppins";
}

.form-banner input::placeholder,
.form-banner textarea::placeholder {
    color: #000;
}

.form-banner textarea {
    height: 120px;
}

input[type="submit"] {
    background: var(--first-clr);
    color: rgb(255, 255, 255);
    width: max-content;
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 16px;
    border-radius: 4px;
    outline: none;
    border: none;
}

.block-section {
    padding: 80px 0;
}

.book-information-inner {
    width: 50%;
    padding: 0 80px;
}

.book-read {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.gradient-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.55);
}

.book-read-inner {
    position: relative;
    margin-top: 40px;
    background-color: #fff;
    width: 70%;
    padding: 40px;
    z-index: 1;
}

.story-box img {
    transition: .3s;
    opacity: 0.5;
    position: absolute;
    top: -54px;
    left: -23px;
    width: 80px;
    display: none;
}

.story-box {
    position: relative;
    /* margin-top: 50px; */
    text-align: center;
}

.story-box:hover img {
    transform: scale(1.4);
    top: 40px;
    bottom: auto;
    left: 30px;
    margin-top: -39px;
    opacity: 0.1;
}

.book-main img {
    width: 350px;
    height: 350px;
}


.detail-text h2,
.detail-text h3,
.detail-text h4,
.detail-text h1,
.detail-text h5,
.detail-text h6 {
    font-size: 24px;
    /* font-family: 'Ubuntu'; */
    margin: 30px 0 0;
}

.detail-text h2 span,
.detail-text h3 span,
.detail-text h4 span,
.detail-text h1 span,
.detail-text h5 span,
.detail-text h6 span {
    color: var(--secondary-color);
}

.detail-image {
    overflow: hidden;
}

.detail-image img:hover {
    transform: scale(1.1);
}

.detail-image {
    width: 90%;
    height: auto;
    margin: 20px auto 0;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

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

.detail-text p {
    margin: 20px 0 0 0;
}


.detail-text ul {
    padding-left: 3%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.detail-text li {
    font-size: 16px;
    width: 48%;
    margin: 20px 0 0 0;
    font-style: italic;
    position: relative;
    padding-left: 2%;
}

.detail-text li:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background: url(../imgs/list-ar.png);
    left: 0;
    top: 7px;
    background-repeat: no-repeat;
}


.detail-text ul li b {
    margin-right: 10px;
    color: var(--primary-color);
}

.service-sidebar .home-form {
    width: 100%;
}

.service-sidebar .home-form:before {
    display: none;
}

.service-sidebar .home-form h4 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Euclid Circular A';
}

.service-list h2 {
    font-size: 22px;
}

.la-event {
    width: 100%;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    padding: 30px;
    border-radius: 5px;
    border: 2px solid var(--first-clr);
}

.la-event ul li {
    display: flex;
    /* align-items: center; */
    gap: 15px;
    margin: 10px 0px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.la-event ul li img {
    width: 70px;
    height: 70px;
    max-width: inherit;
    border-radius: 100%;
    object-fit: cover;
    border: 2px solid #ddd;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.evrnt-text p {
    font-size: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
}

.evrnt-text h5 {
    font-size: 13px;
    margin: 10px 0px;
    /* background: #000; */
    color: var(--first-clr);
    /* padding: 8px 10px; */
    display: inline-block;
    border-radius: 30px;
}

.service-formbox {
    width: 100%;
    padding: 30px;
    background-color: var(--first-clr);
    /* background-image: url(../imgs/new-bg.png); */
    background-position: center center;
    background-size: cover;
    margin: 40px 0 0 0;
    position: sticky;
    top: 40px;
    border-radius: 5px;
}

.service-formbox h3 {
    font-size: 22px;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #ffffff;
    color: #fff;
}

.service-formbox p {
    margin: 0;
    color: #fff;
}

.service-formbox form {
    margin: 20px 0 0 0;
}

.service-input {
    padding: 10px;
    height: 40px;
    width: 100%;
    font-size: 17px;
    color: #fff;
    outline: none;
    border: none;
    background: white;
    /* border-bottom: 2px solid #000; */
    border-radius: 5px;
}

input.service-submit {
    width: 100%;
    padding: 10px 0;
    background-color: #c2eec7;
    color: #000;
    font-size: 17px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
    margin: 20px 0 0 0;
    border-radius: 5px;
}

.service-submit:hover {
    color: #fff;
    background-color: #000;
}


.wb.bl-1 {
    top: 0;
    bottom: inherit;
}

.nav-btn a:hover {
    background: var(--first-clr);
    color: #fff;
}

.header .nav-btn a:hover {
    background: #fff;
}

.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    animation: slidetop 1s ease-in-out backwards;
    bottom: inherit;
}

.sticky .logo img {
    width: 100px;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

/*===*/
.inner-box {
    position: relative;
    text-align: center;
    margin-bottom: 5px;
    padding: 30px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
    /* border: 1px solid #ddd; */
    border-radius: 10px;
    transition: 0.4s ease;
    margin: 40px 0 0 0;
    /* width: 23%; */
    border: 2px solid #002c42;
    min-height: 435px;
}

.inner-box .icon-box {
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    background: var(--first-clr);
    margin: 0 auto 10px;
    padding: 10px;
    border-radius: 100%;
}

.inner-box .icon-box img {
    filter: invert(1);
    width: 70%;
}

.inner-box h3 {
    position: relative;
}

.inner-box h3 a {
    position: relative;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    font-size: 22px;
    font-family: 'Cinzel';
    color: var(--first-clr);
    font-weight: bold;
}


.inner-box:hover {
    background-color: var(--first-clr);
    transform: translateY(-10px);
}

.inner-box:hover h3 a,
.inner-box:hover .text {
    color: #fff;
}

.special-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.inner-box:hover .icon-box {
    background: var(--second-clr);
}

.inner-box:hover .icon-box img {
    filter: inherit;
}

.modal-header .btn-close {
    opacity: 1;
    background: var(--first-clr);
    color: #fff;
    line-height: 0;
}

.modal-body {
    padding: 25px;
}


.blog-box {
    width: 95%;
    margin: auto;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.date {
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

.blog-txt h3 {
    font-size: 20px;
    margin: 10px 0;
}

a.blog-arr {
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
    background: var(--first-clr);
    color: #fff;
    font-size: 20px;
    border-radius: 100%;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(320deg);
}

.blog-read a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.blog-read a i {
    width: 22px;
    height: 22px;
    background: var(--first-clr);
    display: grid;
    place-content: center;
    color: #fff;
    border-radius: 100%;
    font-size: 13px;
    transition: .4s ease
}

.blog-read a:hover i {
    transform: translateX(10px);
}

.blog-box:hover img {
    transform: scale(1.1);
}

.blog-img {
    overflow: hidden;
}


.blog-box:hover a.blog-arr {
    background: var(--second-clr);
    color: var(--first-clr);
}


.parent-detail {
    width: 90%;
    margin: auto;
}

.parent-img {
    width: 80%;
    height: auto;
}

.parent-img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

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

.bubble {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 40px;
    background: #c2eec7;
    border-radius: 50%;
    opacity: 0.5;
    animation: floating 10s infinite ease-in;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 8s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 80px;
    height: 80px;
    left: 50%;
    animation-duration: 7s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 65%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.bubble:nth-child(7) {
    width: 25px;
    height: 25px;
    left: 75%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble:nth-child(8) {
    width: 80px;
    height: 80px;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble:nth-child(9) {
    width: 15px;
    height: 15px;
    left: 70%;
    animation-duration: 9s;
    animation-delay: 0s;
}

.bubble:nth-child(10) {
    width: 50px;
    height: 50px;
    left: 85%;
    animation-duration: 5s;
    animation-delay: 3s;
}

@keyframes floating {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }

    50% {
        transform: translateX(100px);
    }

    100% {
        bottom: 1080px;
        transform: translateX(-200px);
    }
}

.book-detail-sec {
    position: relative;
}

.bokk-img img {
    width: 70%;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
}


.parent-buuble .bubble {
    background: #002c4261;
}

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

.related-links a {
    font-size: 21px;
    text-transform: capitalize;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 20px;
}

.related-links a i {
    color: var(--first-clr);
    font-size: 30px;
}

section.padd.parent-sec {
    z-index: 9;
}

a.btn.toggle {
    display: none;
}

main.main {
    overflow-x: clip;
}

form p {
    margin: 0;
}

.book-detail-sec a , .detail-text a {
    color: var(--first-clr);
    font-weight: 600;
}

.inner-content ol.breadcrumb {
    display: none !important;
}

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

.auth-box {
    display: flex;
    align-items: center;
    margin: 10px 15px 10px 0;
}

.auth-box i {
    color: var(--first-clr);
    font-size: 17px;
}

.auth-box p {
    margin: 0;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    padding-left: 15px;
}

.news-form input[type=email] {
    width: 100%;
    border: 0;
    padding: 10px;
    border-radius: 8px;
    margin: 14px 0;
}

.news-form input[type=submit] {
    width: auto;
    border: 0;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--second-clr);
    color: var(--first-clr);
    font-weight: 500;
}

.footer-box a {
    color: var(--first-clr);
}

.nav-bar ul li.active a, .nav-bar ul li:hover a {
    color: var(--second-clr);
}

.contact-sec .form-banner .wpcf7-not-valid-tip {
    margin-bottom: 8px !important;
}

/*RESPONSIVE QUERY______*/


@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1199px) {

    .nav-bar ul li {
        margin-left: 3rem;
    }

}

@media only screen and (max-width: 1140px) {
	    .nav-bar ul li {
        margin-left: 2rem;
    }
}

@media only screen and (max-width: 1024px) {
    .nav-bar ul li {
        margin-left: .6rem;
    }

    .slider,
    .slide {
        height: 600px;
    }

    .slide__content--headings h2 {
        width: 80%;
    }

}

@media only screen and (max-width: 991px) {

    .nav-bar.nav-1 {
        display: none;
    }

    .logo {
        position: revert;
        transform: inherit;
    }

    a.btn.toggle {
        display: inline-block;
        background: var(--second-clr);
        font-size: 16px;
        padding: 3px 8px;
    }

    .offcanvas.offcanvas-start {
        background: var(--first-clr);
    }

    .offcanvas-header img {
        width: 70px;
        height: auto;
    }

    .offcanvas-header .btn-close {
        opacity: 1;
        background: var(--second-clr);
        line-height: 1;
        font-size: 18px;
    }

    .offcanvas-header {
        border-bottom: 2px solid #fff;
    }

    .nav-bar.nav-2 ul {
        flex-direction: column;
        align-items: self-start;
    }

    .nav-bar.nav-2 ul li {
        margin-left: 0;
        width: 100%;
		border-bottom: 1px solid #f9f9f95e;
    }
	
	.nav-bar.nav-2 ul li:last-child {
	    border: none;
	}

    .nav-bar.nav-2 ul li a {
        width: 90%;
        padding: 9px 10px;
    }

    ul.dropdown {
        width: 100%;
        padding-left: 30px;
        position: revert;
        padding-top: 0;
    }

    .nav-bar.nav-2 ul.dropdown li a {
        font-size: 14px;
    }


    .clk_btn {
        background: var(--second-clr);
        width: 18px;
        height: 17px;
        display: grid;
        place-content: center;
        color: #002c42;
        border-radius: 4px;
        cursor: pointer;
        padding-bottom: 3px;
    }
    
    .nav-bar ul li:hover ul.dropdown {
      display: none;
    }

    .ab-2 {
        right: auto;
        bottom: 0;
        margin-left: 200px;
    }

    .foot-padding {
        padding-right: calc(var(--bs-gutter-x)* .5);
        padding-left: calc(var(--bs-gutter-x)* .5);
    }

    .logo img {
        width: 100px;
    }

    .block-img img {
        height: 300px;
    }

    .inner-content h2 {
        font-size: 30px;
    }


    .story-sec .w-75 {
        width: 90% !important;
    }

    .inner-banner img {
        height: 300px;
    }

    .detail-text h2, .detail-text h3, .detail-text h4, .detail-text h1, .detail-text h5, .detail-text h6 {
        font-size: 20px;
        margin: 20px 0 0;
    }
    
    .la-event {
     margin-top: 25px;
     padding: 20px;
    }
    
    .wb2.wb {
    width: 60px;
    }


}


@media only screen and (max-width: 980px) {

    .service-sec {
        padding: 100px 0 20px;
    }

}

@media only screen and (max-width: 840px) {}


@media only screen and (max-width: 800px) {}


@media only screen and (max-width: 767px) {


    h.f-title {
        font-size: 20px;
        margin-top: 10px;
    }

    .footer-box img {
        width: 90px;
    }

    .blog-txt h3 {
        font-size: 18px;
    }

    .ser-txt h3,
    .why-box h4 {
        font-size: 18px;
    }

    .blog-img img {
        height: 230px;
    }

    .slide__content--headings h2 {
        font-size: 35px;
    }

    .slide__content {
        width: 90%;
        left: 50%;
    }

    .slide__content--headings h2 {
        width: 100%;
    }

    .slide__content--headings p {
        width: 100%;
    }

    .header {
        height: 80px;
        background-size: cover;
    }

    .logo img {
        width: 90px;
    }

    .nav-btn a {
        font-size: 14px;
        padding: 6px 15px;
    }

    .slider,
    .slide {
        height: 525px;
    }

    .ab-1 img {
        width: 350px;
        height: 350px;
    }

    .ab-2 img {
        width: 200px;
        height: 200px;
    }

    .ser-img {
        height: 390px;
    }

    .service-box {
        min-height: 390px;
    }

    .mt-5 {
        margin-top: 1.5rem !important;
    }

    .padd {
        padding: 40px 0;
    }


    .service-sec {
        background-image: url(../img/book-bg-mob.jpg);
        background-size: cover;
        padding: 40px 0;
    }

    .title h2 {
        font-size: 30px;
    }

    .book-information-inner {
        width: 100%;
        padding: 0 15px;
    }

    .book-read {
        position: relative;
        width: 100%;

    }

    .book-read-inner {
        background-color: transparent;
        width: 100%;
    }

    .book-read-inner h2 {
        color: #Fff;
    }

    .block-section {
        padding: 40px 0;
    }

    section.padd.special-sec.mt-5 {
        margin-top: 0 !important;
    }

    .default-accordion-box .block:last-child {
        margin-bottom: 20px;
    }


    .sticky .logo img {
        width: 75px;
    }
    

.book-main img {
    width: 250px;
    height: 250px;
}



}

@media only screen and (max-width: 667px) {}

@media only screen and (max-width: 575px) {

    .ab-1 img {
        width: 280px;
        height: 280px;
    }

    .ab-2 img {
        width: 160px;
        height: 160px;
    }

    .ab-2 {
        margin-left: 200px;
    }

    p,
    li,
    a {
        font-size: 14px;
    }

    .title h2 {
        font-size: 26px;
    }

    .service-box {
        margin-bottom: 20px;
    }

    a.blog-arr {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .bottom-social ul li a {
        width: 30px;
        height: 30px;
    }

    .slide__content--headings h2 {
        font-size: 30px;
    }

    .modal-dialog {
        width: 90%;
        margin: 3.5rem auto;
    }
    
    .ser-txt {
     height: 95px;
    }
    
    .service-box:hover .ser-txt {
        height: 100px;
    }

    .cont-flex {
        width: 100%;
        margin: 10px 0;
    }

    .cont-flex i {
        font-size: 22px;
    }

    .cont-flex h4 {
        font-size: 17px;
        margin: 0;
    }

    .form-banner {
        margin-top: 20px;
    }

    .inner-box {
        min-height: auto;
        margin-top: 20px;
        padding: 20px;
    }

    .inner-box .icon-box {
        width: 70px;
        height: 70px;
    }

    .inner-box h3 a {
        font-size: 18px;
    }


    section#read {
        padding-bottom: 0;
    }
    
    .default-accordion-box .block .acc-btn {
        padding: 10px 20px;
        padding-right: 59px;
        font-size: 14px;
    }
    
    .bokk-img img {
    width: 100%;
    height: 250px;
    }
    
    .inner-content {
    bottom: 0;
    }

    .detail-image {
    width: 100%;
    height: auto;
    }

    .ab-main.book-main.text-center {
    text-align: left !important;
    margin: 20px 0;
    }

    .block-img {
    margin-bottom: 25px;
    }
    
    .service-box {
    min-height: 300px;
}

.ser-img {
    height: 300px;
}

.slide__img img {
    object-position: 75%;
}

.bottom-social ul {
    display: none;
}

.copyrights .container {
    justify-content: center;
}

.copyrights p {
    text-align: center;
    font-size: 13px;
}

.slide__img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, black, transparent);
    top: 0;
    left: 0;
    z-index: 9;
}

.slide__content {
    z-index: 9;
}

.inner-banner img {
    height: 255px;
}

.contact-sec .form-banner {
    padding: 0 20px;
    margin: 0;
}

.default-accordion-box .block .acc-btn:before {
    right: 25px;
    top: 13px;
    font-size: 13px;
}

.default-accordion-box .block {
    margin-bottom: 15px;
}



.parent-img {
    width: 100%;
    height: auto;
}

.auther-flex {
    flex-direction: column;
    align-items: self-start;
}

.auth-box {
    margin: 0 0 10px;
}

.auth-box p , .auth-box i {
    font-size: 14px;
}

.related-links a {
    font-size: 14px;
}

.related-links a i {
    font-size: 16px;
}

.default-accordion-box .block .acc-btn.active {
    border-radius: 0;
}

.default-accordion-box .block .content p {
    margin: 0;
}

.default-accordion-box .block .content {
    padding: 30px;
}	

.parent-detail {
    width: 100%;
}	
	
.blog-img img {
        height: auto;
    }	
	


}


@media only screen and (max-width: 460px) {

    .logo img {
        width: 80px;
    }

    .sticky .logo img {
        width: 70px;
    }

    .title h2 {
        font-size: 22px;
    }

    .ab-1 img {
        width: 220px;
        height: 220px;
    }

    .ab-2 img {
        width: 120px;
        height: 120px;
    }

    .ab-2 {
        margin-left: 135px;
    }

    .footer-box img {
        width: 70px;
    }

    .wb {
        width: 140px;
    }

    .nav-bar ul li a {
        font-size: 14px;
    }

    .block-img img {
        height: 230px;
    }

    .bg-text h3 {
        font-size: 24px;
    }

    .pb-5 {
        padding-bottom: 1rem !important;
    }


    input[type="submit"] {
        padding: 6px 25px;
        font-size: 14px;
        margin: 0;
    }

    .inner-content h2 {
        font-size: 24px;
    }
    
    .modal-body {
    padding: 10px;
    }
    
    .related-links {
    flex-direction: column;
}

.previous-link {
    margin-bottom: 14px;
    text-align: center;
}


}

@media only screen and (max-width: 400px) {}

@media only screen and (max-width: 375px) {}

@media only screen and (max-width: 360px) {}


@media only screen and (max-width: 320px) {}
.footer-box p {
    display: none;
}