@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proxima-nova/ProximaNova-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proxima-nova/ProximaNova-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proxima-nova/ProximaNova-Semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proxima-nova/ProximaNovaT-Thin.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

*:focus,
*:focus-visible {
    outline: none;
}

:root {
    --transition-05s: all ease-in-out 0.5s;

    --font-instrument-serif: "Instrument Serif";

    --main-color: #002366;
    --second-color: #d4af37;
    --black-color: #000;
    --white-color: #fff;
}

body {
    font-family: "Proxima Nova", sans-serif;
    font-weight: 400;
}

ul,
ol {
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

.row {
    gap: 24px 0px;
}

/*<======================= Common Css ===============>*/
.common-section {
    padding: 60px 0px;
}

.common-head span {
    color: var(--second-color);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 2px;
}

.common-head h3 {
    font-family: var(--font-instrument-serif);
    color: var(--main-color);
    font-size: 64px;
    line-height: 66px;
    font-weight: 400;
    text-transform: capitalize;
}

.common-btn {
    background: var(--second-color);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    transition: var(--transition-05s);
    color: var(--white-color);
    text-transform: uppercase;
    border-radius: 50px;
    transform: translateY(0px);
    display: inline-block;
}

.common-btn:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0px 0px 14px -4px rgba(255, 255, 255, 0.5);
}

.common-btn:visited,
.buyNow-btn:visited {
    color: #fff !important;
}

/************************************ Header Section **************************************/
header {
    width: 100%;
    height: max-content;
    /* position: absolute; */
    z-index: 10;
    background: rgba(var(--white-color), 1);
}

a:visited {
    color: var(--main-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 9999;
    width: 100%;
    /* padding: 15px 0px; */
    /* box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.75); */
}

/* .wp-singular.product-template-default.single.single-product .navbar.header-fixed {
    z-index: 1 !important;
} */

.navbar.header-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.95);
    /* background: rgba(14, 13, 14, 0.8); */
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(5px);
    animation: slideDown 0.35s ease-out;
    z-index: 9999;
}

.top-header {
    background: rgba(var(--main-color), 1);
    padding: 10px 0px;
}

.top-nav p {
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: rgba(var(--white-color), 1);
}

.top-nav p>a {
    color: rgba(var(--white-color), 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.head-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar .navbar-brand {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: -80px;
    position: relative;
    z-index: 2;
}

.navbar.header-fixed .navbar-brand {
    margin-bottom: 0px;
    width: 120px;
    height: 120px;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #f6f6f6;
    padding: 5px 10px;
    border-radius: 60px;
}

.navbar-nav .nav-item a {
    font-weight: 400;
    font-size: 18px;
    color: var(--main-color);
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: var(--transition-05s);
    letter-spacing: 2px;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item .active {
    padding: 5px 20px;
    border: 1px solid #002366;
    border-radius: 60px;
    font-weight: 700;
    background: var(--white-color);
}

.navbar-toggler-icon {
    filter: invert(0);
    border-color: #fff;
}

/******************************************* Banner Section ***********************************/
.banner-section {
    position: relative;
    /* min-height: 780px; */
    /* background: var(--main-color); */
    width: 98%;
    margin: auto;
}

.banner-box {
    position: relative;
    min-height: 780px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
}

.banner-box h1 {
    font-family: "Instrument Serif";
    font-size: 80px;
    line-height: 82px;
    font-weight: 400;
    color: var(--white-color);
    width: 35%;
}

.banner-slider.owl-carousel .item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.bnr-one-img {
    position: absolute;
    bottom: 50px;
    right: 25%;
    height: 410px;
}

.bnr-one-img img {
    height: 100%;
    object-fit: cover;
}

.bnr-two-img {
    position: absolute;
    bottom: 90px;
    right: 10%;
    height: 450px;
}

.bnr-two-img img {
    height: 100%;
    object-fit: cover;
}

.bnr-two-img-tag {
    position: absolute;
    bottom: 400px;
    right: 23%;
    height: 220px;
}

.bnr-two-img-tag img {
    height: 100%;
    object-fit: cover;
}

.bnr-three-img {
    position: absolute;
    bottom: 20px;
    right: 6%;
    height: 475px;
    z-index: 1;
}

.bnr-three-img img {
    height: 100%;
    object-fit: cover;
}

.bnr-three-img-tag {
    position: absolute;
    bottom: 420px;
    right: 16%;
    height: 160px;
}

.bnr-three-img-tag img {
    height: 100%;
    object-fit: cover;
}

.inrBanner-section {
    position: relative;
    /* height: 400px; */
    background: var(--main-color);
    width: 98%;
    margin: auto;
    border-radius: 40px;
    overflow: hidden;
}

.inrBanner-box {
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: auto;
    text-align: center;
}

.inrBanner-box h1 {
    font-family: var(--font-marcellus);
    font-size: 38px;
    color: #fff;
    font-weight: 400;
}

.banner-slider.owl-carousel {
    position: relative;
}

.banner-slider.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    left: 140px;
    top: 75%;
}

.banner-slider.owl-carousel .owl-dots .owl-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.banner-slider.owl-carousel .owl-dots .owl-dot.active {
    outline: 2px solid #fff;
    outline-offset: 5px;
}

/********************************** About Us Section ***********************************/
.abt-section .common-head {
    margin-bottom: 30px;
}

.abt-left-img {
    width: 100%;
    height: 425px;
    border-radius: 20px;
    overflow: hidden;
}

.abt-right-logo {
    width: 160px;
    height: 160px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
}

.abt-right-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-right-img {
    width: 100%;
    height: 285px;
    border-radius: 20px;
    overflow: hidden;
}

.abt-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-right {
    padding-left: 40px;
}

.abt-right-top p,
.abt-right-btm p {
    font-size: 18px;
    font-weight: 400;
    color: var(--main-color);
    line-height: 28px;
    margin-bottom: 20px;
}

.abt-right-btm .common-btn {
    margin-top: 10px;
}

/**************************** BookShel Section **********************************/
.bookShel-section {
    position: relative;
    width: 98%;
    margin: auto;
    border-radius: 40px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bookShel-section .common-head {
    margin-bottom: 40px;
}

.bookShel-section .common-head h3 {
    color: var(--white-color);
}

.bookShel-btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.bookShel-box {
    height: 100%;
    position: relative;
    padding-bottom: 55px;
    display: inline-block;
    width: 100%;
}

.bookShel-img {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 40px;
}

.bookShel-img img {
    width: 250px;
    height: 330px;
    margin: auto;
    object-fit: contain;
}

/* .bookShel-text h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    line-height: 26px;
    margin-top: 20px;
} */
.bookShel-text h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    line-height: 26px;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.bookShel-review {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bookShel-review>span {
    color: #a7a7a7;
    font-size: 14px;
    font-weight: 400;
}

.bookShel-review i {
    color: #ff9c05;
    font-size: 16px;
}

.bookShel-text p {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    margin-top: 10px;
}

.bookShel-text p>del {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.48);
}

.buyNow-btn {
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-radius: 50px;
    border: 1px solid #d4af37;
    padding: 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white-color);
    font-weight: 700;
    transition: var(--transition-05s);
}

.buyNow-btn:hover {
    background: var(--second-color);
    color: var(--main-color) !important;
}

.bookShel-text {
    padding-bottom: 20px;
}

.bookShel-inr-section .bookShel-box {
    /* background: var(--main-color); */
    padding: 20px;
    height: 100%;
    border-radius: 20px;
    /* box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.5); */
    background: #f4f4f4;
}

.bookShel-inr-section .bookShel-box .bookShel-text h5,
.bookShel-inr-section .bookShel-box .bookShel-text p,
.bookShel-inr-section .bookShel-box .bookShel-text p>del {
    color: var(--black-color);
}

.bookShel-inr-section .bookShel-box .bookShel-text .buyNow-btn {
    color: var(--black-color);
}

.bookShel-slider.owl-carousel {
    position: relative;
}

.bookShel-slider.owl-carousel .owl-nav .owl-prev,
.bookShel-slider.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.bookShel-slider.owl-carousel .owl-nav .owl-prev,
.bookShel-slider.owl-carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bookShel-slider.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -20px;
}

.bookShel-slider.owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -20px;
}

/***************************** Speaking & Consulting Section *****************************/
.speakConsult-accordion-wrapper {
    margin: 40px 0px;
    width: 90%;
}

.speakConsult-right-img {
    width: 100%;
    height: 100%;
}

.speakConsult-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speakConsult-btm {
    border-right: 1px solid #bdb7b7;
    width: 100%;
    height: 100%;
    padding-right: 40px;
}

.speakConsult-left .common-head h3 {
    width: 70%;
}

.speakConsult-accordion-wrapper .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 20px;
    border-radius: 20px !important;
    overflow: hidden;
}

.custom-accordion .accordion-body {
    background: var(--second-color) !important;
}

.custom-accordion .accordion-body p {
    font-size: 18px;
    color: var(--white-color);
    line-height: 28px;
}

.custom-accordion .accordion-button {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f0f0f0;
    padding: 25px;
    box-shadow: none;
}

.custom-accordion.active .accordion-button,
.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--second-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    display: none;
}

/* icon box */

.accordion-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-icon img {
    width: 38px;
}

/* title */

.accordion-title h5 {
    font-size: 30px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--main-color);
}

.accordion-title p {
    font-size: 15px;
    line-height: 24px;
    margin: 0;
    max-width: 700px;
}

/* arrow */

.accordion-arrow {
    margin-left: auto;
    font-size: 26px;
    font-weight: 600;
    color: var(--main-color);
}

/* second card style */

.custom-accordion .accordion-button.collapsed {
    background: #f0f0f0;
    color: var(--main-color);
}

/* .page-content,
.entry-content,
.entry-summary {
    margin: 0em 0 0 !important;
} */

.speakConsult-accordion-wrapper .accordion-button:not(.collapsed) .accordion-title h5 {
    color: #ffffff;
}

.speakConsult-accordion-wrapper .accordion-button:not(.collapsed) .accordion-arrow {
    color: #ffffff;
}

.speakConsult-right {
    padding-left: 50px;
}

.speakConsult-right p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 32px;
    color: #101f3c;
}

.faq-section .common-head {
    text-align: center;
}

.faq-section .common-head h3 {
    width: 100%;
    text-align: center;
}

/* .speakConsult-btm {
    border-right: none;
} */

.speakConsult-accordion-wrapper {
    width: 100%;
}

/************************************ News Section ************************************/
.news-section {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.news-section .common-head {
    margin-bottom: 30px;
}

.news-main-box {
    position: relative;
    display: inline-block;
}

.news-main-box img {
    height: 360px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden;
}

.news-main-text {
    position: absolute;
    bottom: 20px;
    left: 30px;
}

.news-main-text span {
    font-weight: 600;
    font-size: 16px;
    color: var(--white-color);
    letter-spacing: 2px;
}

.news-main-text h5 {
    font-weight: 600;
    font-size: 34px;
    color: var(--white-color);
    line-height: 48px;
}

.news-small-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    /* display: inline-block; */
    width: 100%;
}

.news-small-box img {
    width: 50%;
    height: 260px;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden;
}

.news-small-text {
    width: 50%;
}

.news-small-text .news-link {
    text-decoration: underline;
    color: var(--main-color);
}

.news-small-text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
}

.news-small-text h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--main-color);
    line-height: 48px;
    text-transform: capitalize;
}

.news-small-text p {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--main-color);
}

.news-small-text a {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: var(--main-color);
    text-decoration: underline;
    transition: all ease-in-out 0.3s;
    transform: translateX(0px);
}

.news-small-text a:hover {
    transform: translateX(6px);
}

.news-inr-section .news-small-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-inr-section .news-small-box img,
.news-inr-section .news-small-box .news-small-text {
    width: 100%;
}

.news-detls-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

.news-detls-text {
    margin: 20px 0px;
}

.news-detls-text span {
    font-weight: 600;
    font-size: 30px;
    color: var(--black-color);
    letter-spacing: 1px;
}

.news-detls-text h2 {
    font-family: var(--font-instrument-serif);
    color: var(--main-color);
    font-size: 40px;
    line-height: 66px;
    font-weight: 400;
    text-transform: capitalize;
}

.news-detls-text p {
    font-size: 18px;
    font-weight: 400;
    color: var(--main-color);
    line-height: 28px;
    margin-bottom: 20px;
}

.news-detls-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/************************************** Contact Us Section ******************************/
.contact-video-box {
    width: 100%;
    position: relative;
}

.common-section>*>.row {
    gap: 50px 0px;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.23);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    font-size: 20px;
    color: #fff;
}

.video-play-btn:hover {
    color: #fff;
}

.contact-video-box img {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
}

.contact-video-box p {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 24px;
    margin-top: 15px;
}

.video-modal .modal-dialog {
    transform: scale(0.8);
    transition: all 0.35s ease;
}

.video-modal.show .modal-dialog {
    transform: scale(1);
}

.video-modal .modal-content {
    background: #000;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.video-close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 10;
    filter: invert(1);
}

.contact-left-img {
    width: 100%;
    height: 600px;
}

.contact-left-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inr-contact-section .contact-left-img {
    border: 1px solid #d4af37;
    border-radius: 20px;
    overflow: hidden;
    padding: 5px;
}

.inr-contact-section .contact-left-img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.contact-right-box {
    border-radius: 30px;
    overflow: hidden;
    padding: 30px;
    background: var(--second-color);
}

.contact-right-box .common-head {
    margin-bottom: 30px;
}

.contact-right-box .common-head span,
.contact-right-box .common-head h3 {
    color: var(--white-color);
}

.contact-input-box input,
.contact-input-box textarea {
    width: 100%;
    border: none;
    padding: 20px;
}

.contact-input-box input::placeholder,
.contact-input-box textarea::placeholder {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.contact-input-box input {
    border-radius: 50px;
}

.contact-input-box textarea {
    border-radius: 25px;
}

.contact-right-box form button.common-btn {
    margin-top: 20px;
    padding: 10px 30px;
    border: none;
    background: var(--main-color);
}

.contact-right-box form button.common-btn:hover {
    background: var(--second-color);
    box-shadow: 0px 0px 18px rgba(255, 255, 255, 0.75);
}

/************************************* FAQ Section **************************************/
.faq-section {
    position: relative;
}

.faq-section::after {
    /* content: ""; */
    position: absolute;
    top: 0%;
    left: 0%;
    width: 40%;
    height: 100%;
    display: inline-block;
    background: #8ad459;
    z-index: -1;
}

.faq-img {
    height: 600px;
    margin-left: 120px;
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-heading {
    padding: 20px 0px;
    text-align: center;
}

.faq-heading h3 {
    font-family: var(--font-marcellus);
    font-size: 48px;
    font-weight: 400;
    text-transform: capitalize;
}

.faq-heading span {
    color: rgba(var(--main-color), 1);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}

.faq-accordion-box {
    margin-top: 20px;
}

.accordion-header {
    font-family: "integral_cfbold";
}

.faq-accordion-box .accordion-header button {
    font-weight: 700;
    font-size: 20px;
    text-transform: capitalize;
    box-shadow: none;
    padding-top: 0px;
    padding-bottom: 20px;
}

.faq-accordion-box .accordion-body {
    font-size: 15px;
    font-weight: 400;
    color: #747474;
}

.faq-accordion-box .accordion-body p:last-child {
    margin-bottom: 0px;
}

.faq-accordion-box .accordion-item {
    border: none;
    /* box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.3); */
    margin-bottom: 20px;
    border-radius: 0px;
    overflow: hidden;
    border-bottom: 1px solid #d9d9d9;
}

.faq-section .faq-accordion-box .accordion-item {
    border: none;
    margin-bottom: -3px;
}

.faq-section .faq-accordion-box .accordion-header {
    /* box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.3); */
    margin: 6px;
    border-radius: 10px !important;
}

.faq-section .faq-accordion-box .accordion-header button {
    font-weight: 600;
    font-size: 17px;
    border-radius: 10px !important;
    padding: 20px;
    border: 1px solid #d9d9d9;
}

.faq-section .faq-accordion-box .accordion-header button:not(.collapsed) {
    border-color: rgba(var(--main-color), 1);
}

.faq-section .faq-accordion-box .accordion-collapse {
    margin: 6px;
    border: 1px solid #d9d9d9;
    /* box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.3); */
    border-radius: 10px;
}

.faq-accordion-box .accordion-button:not(.collapsed) {
    color: rgba(var(--black-color), 1);
    background: rgba(var(--main-color), 0);
}

.faq-accordion-box .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

.faq-accordion-box .accordion-button::after {
    content: "\2b";
    font-weight: 600;
    font-family: "font awesome 6 free";
    background-image: none;
    transform: none;
}

/***************************************** Contact Us Page *******************************/

.iframe-box {
    width: 100%;
    height: 480px;
    border: 1px solid rgba(var(--second-color), 1);
    padding: 5px;
    border-radius: 36px;
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

/******************************** Footer Section *********************************************/
.footer-section {
    width: 98%;
    margin: auto;
    border-radius: 40px;
    margin-bottom: 20px;
    padding: 40px 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.footer-box h5,
.footer-subscb-head h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: var(--white-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-contact-links li {
    margin-bottom: 10px;
}

.footer-contact-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-links li a i {
    color: var(--second-color);
    font-size: 18px;
}

.footer-contact-links li a>span {
    color: #d3dacf;
    font-size: 18px;
    line-height: 26px;
    transition: var(--transition-05s);
}

.footer-contact-links li a:hover>span {
    color: var(--second-color);
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-social-links li a i {
    color: var(--second-color);
    transition: all ease-in-out 0.3s;
    font-size: 18px;
    transform: translateY(0px);
}

.footer-social-links li a:hover i {
    transform: translateY(-3px);
}

.footer-links li a {
    display: inline-block;
    color: #d3dacf;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    transition: all ease-in-out 0.3s;
    transform: translateX(0px);
}

.footer-links li a:hover {
    color: var(--second-color);
    transform: translateX(6px);
}

.footer-subscb-box .footer-subscb-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-subscb-box .footer-subscb-head p {
    color: #d3dacf;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.footer-subscb-box form {
    border-radius: 40px;
    border: 1px solid #d4af37;
    padding: 5px;
    width: 100%;
    overflow: hidden;
}

.footer-subscb-box form input {
    width: 68%;
    padding: 10px;
    background: transparent;
    border: none;
}

.footer-subscb-box form input::placeholder {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
}

.footer-subscb-box form button.common-btn {
    padding: 6px 18px;
    font-size: 14px;
    border: none;
}

.footer-subscb-box form button.common-btn:hover {
    transform: translateY(0px);
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px 0px;
    margin-top: 20px;
}

.footer-copyright p {
    color: #bebebe;
    font-size: 16px;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 0;
}

/* .bookShel-text > .buyNow-btn {
  color: var(--main-color) !important;
} */

/********************************************** Media query ***********************************/

/********************* Min width Section *****************************/

/* @media (min-width: 992px) {
    .dropdown-menu {
      display: grid;
      opacity: 0;
      visibility: hidden;
    }
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown .dropdown-menu.show {
      opacity: 1;
      visibility: visible;
    }
}
@media (min-width: 1200px){
	.nav-item.dropdown .dropdown-menu[data-bs-popper] {
		top: 100%;
	}
} */

@media (min-width: 1400px) and (max-width: 1599px) {
    .banner-box h1 {
        width: 40%;
    }

    .navbar-nav {
        gap: 10px;
    }

    .banner-box {
        min-height: 600px;
    }

    .bnr-one-img {
        height: 300px;
    }

    .bnr-two-img {
        height: 300px;
    }

    .bnr-two-img-tag {
        bottom: 330px;
        right: 22%;
        height: 120px;
    }

    .bnr-three-img {
        height: 325px;
    }

    .bnr-three-img-tag {
        bottom: 300px;
        right: 16%;
        height: 100px;
    }

    .abt-right {
        padding-left: 20px;
    }

    .abt-right-logo {
        width: 120px;
        height: 120px;
    }

    .common-head h3 {
        font-size: 54px;
        line-height: 66px;
    }

    .abt-right-btm .common-btn {
        margin-top: 0px;
    }

    .contact-video-box img {
        height: 280px;
    }

    .footer-box h5,
    .footer-subscb-head h5 {
        font-size: 18px;
        line-height: 24px;
    }

    .footer-subscb-box form input {
        width: 60%;
    }

    .bookShel-inr-section .bookShel-img {
        padding: 0px;
    }

    .banner-slider.owl-carousel .owl-dots {
        left: 90px;
        top: 80%;
    }

    .bookShel-img img {
        width: 250px;
        height: 250px;
    }

    .buyNow-btn {
        padding: 6px 14px;
        font-size: 14px;
    }

    .custom-accordion .accordion-button {
        padding: 14px;
    }

    .speakConsult-right {
        padding-left: 40px;
    }

    .speakConsult-btm {
        padding-right: 60px;
    }

    .news-detls-text h2 {
        font-size: 48px;
        line-height: 60px;
    }

    .contact-input-box input,
    .contact-input-box textarea {
        padding: 10px 20px;
    }
}

@media (min-width: 1500px) and (max-width: 1599px) {}

/* @media (min-width: 1500px) {
    
} */
@media (min-width: 1540px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 1600px) and (max-width: 1700) {
    .banner-slider.owl-carousel .owl-dots {
        left: 60px;
    }
}

@media (min-width: 1640px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 1740px) {
    .container {
        max-width: 1690px;
    }
}

/************************************* Max Width Section ******************************/

@media (max-width: 1399px) {
    .navbar-nav .nav-item a {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .navbar-nav {
        gap: 10px;
    }

    .head-contact {
        gap: 10px;
    }

    .banner-box h1 {
        width: 50%;
        font-size: 70px;
        line-height: 72px;
    }

    .banner-box {
        min-height: 500px;
    }

    .bnr-one-img {
        bottom: 20px;
        right: 22%;
        height: 280px;
    }

    .bnr-two-img {
        bottom: 60px;
        right: 10%;
        height: 280px;
    }

    .bnr-two-img-tag {
        bottom: 280px;
        right: 24%;
        height: 100px;
    }

    .bnr-three-img {
        bottom: 20px;
        right: 6%;
        height: 280px;
    }

    .bnr-three-img-tag {
        bottom: 255px;
        right: 15%;
        height: 100px;
    }

    .common-btn {
        padding: 10px 30px;
    }

    .common-head h3 {
        font-size: 48px;
        line-height: 54px;
    }

    .common-head span {
        font-size: 16px;
    }

    .abt-right {
        padding-left: 20px;
    }

    .bookShel-img {
        padding: 20px;
    }

    .bookShel-text h5 {
        font-size: 18px;
    }

    .bookShel-text p {
        font-size: 20px;
    }

    .bookShel-text p>del {
        font-size: 16px;
    }

    .accordion-title h5 {
        font-size: 24px;
        line-height: 24px;
    }

    .accordion-icon {
        width: 55px;
        height: 55px;
    }

    .contact-video-box img {
        height: 250px;
    }

    .footer-box h5,
    .footer-subscb-head h5 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .footer-subscb-box .footer-subscb-head {
        flex-wrap: wrap;
    }

    .footer-links li a {
        font-size: 15px;
        line-height: 30px;
    }

    .footer-subscb-box form input {
        width: 53%;
    }

    .footer-contact-links li a>span {
        font-size: 15px;
        line-height: 22px;
    }

    .footer-copyright p {
        font-size: 14px;
        line-height: 28px;
    }

    .contact-left-img {
        width: 100%;
        height: 550px;
    }

    .news-detls-text h2 {
        font-size: 44px;
        line-height: 60px;
    }
}

@media (max-width: 1199px) {
    .inrBanner-box h1 {
        font-size: 34px;
    }

    .navbar-nav .nav-item a:hover,
    .navbar-nav .nav-item .active {
        padding: 5px 10px;
    }

    .abt-left-img {
        height: auto;
    }

    .abt-section .common-head {
        text-align: center;
    }

    .common-section {
        padding: 30px 0px;
    }

    .navbar-nav {
        gap: 0px;
    }

    .navbar-nav .nav-item a {
        font-size: 14px;
        letter-spacing: 0px;
    }

    .bnr-three-img-tag {
        right: 17%;
    }

    .speakConsult-left .common-head h3 {
        width: 80%;
    }

    .custom-accordion .accordion-button {
        padding: 15px;
    }

    .custom-accordion .accordion-body p {
        font-size: 18px;
        line-height: 24px;
    }

    .accordion-title h5 {
        font-size: 20px;
        line-height: 20px;
    }

    .speakConsult-right {
        padding-left: 20px;
    }

    .news-main-box img {
        height: auto;
    }

    .news-small-box img {
        width: 50%;
        height: auto;
    }

    .contact-video-box img {
        height: auto;
    }

    .footer-subscb-box form input {
        width: 73%;
    }

    .abt-right-img {
        height: auto;
    }

    .news-detls-text h2 {
        font-size: 40px;
        line-height: 52px;
    }

    .news-detls-text p {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        background: rgba(255, 255, 255, 1);
        width: 100%;
        left: 0;
        top: 100%;
        padding: 5px;
        border-top: 1px solid #f4f4f4;
        /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.23); */
    }

    .navbar .navbar-brand {
        width: 90px;
        height: 90px;
        margin-bottom: 0px;
    }

    .head-contact {
        gap: 10px;
    }

    .banner-right-box {
        min-height: 450px;
    }

    .navbar-toggler-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .head-contact>.navbar-toggler,
    .head-contact>.navbar-toggler.collapsed {
        padding: 2px;
        border: 1px solid #74747470;
        background: rgba(var(--white-color), 1);
        border-radius: 0px;
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.23) !important;
    }

    .banner-slider.owl-carousel .owl-dots {
        left: 40px;
        top: 85%;
    }

    .banner-box h1 {
        width: 60%;
        font-size: 52px;
        line-height: 52px;
    }

    .banner-box {
        min-height: 340px;
    }

    .head-contact {
        gap: 20px;
    }

    .accordion-body {
        padding: 10px 12px;
    }

    .accordion-arrow {
        font-size: 18px;
    }

    .custom-accordion .accordion-button {
        padding: 10px;
    }

    .bnr-one-img {
        bottom: 10px;
        right: 16%;
        height: 200px;
    }

    .banner-slider.owl-carousel .item {
        border-radius: 20px;
    }

    .bnr-two-img {
        bottom: 45px;
        right: 10%;
        height: 190px;
    }

    .bnr-two-img-tag {
        bottom: 190px;
        right: 23%;
        height: 90px;
    }

    .bnr-three-img {
        height: 180px;
    }

    .bnr-three-img-tag {
        bottom: 165px;
        right: 13%;
        height: 100px;
    }

    .common-btn {
        padding: 8px 24px;
        font-size: 15px;
    }

    .common-section {
        padding: 20px 0px;
    }

    .bookShel-img {
        padding: 10px;
        width: 280px;
        margin: auto;
    }

    .bookShel-text h5 {
        font-size: 15px;
        line-height: 22px;
    }

    .speakConsult-section .common-head {
        text-align: center;
    }

    .speakConsult-left .common-head h3 {
        margin: auto;
    }

    .speakConsult-btm {
        border-right: none;
    }

    .speakConsult-accordion-wrapper {
        width: 100%;
    }

    .footer-subscb-box form {
        border-radius: 20px;
        padding: 10px;
    }

    .footer-subscb-box form input {
        width: 100%;
    }

    .footer-subscb-box form button.common-btn {
        width: 100%;
    }

    .footer-section {
        border-radius: 20px;
    }

    .abt-right {
        padding-left: 0px;
    }

    .speakConsult-right {
        padding-left: 0px;
    }

    .contact-left-img {
        width: 100%;
        height: auto;
    }

    .navbar.header-fixed .navbar-brand {
        width: 80px;
        height: 80px;
    }

    .navbar-nav {
        background: transparent;
    }

    .news-detls-text h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .news-detls-left img {
        height: auto;
    }
}

@media (max-width: 767px) {
    .banner-box h1 {
        width: 80%;
    }

    .bnr-two-img {
        right: 3%;
    }

    .bnr-two-img-tag {
        right: 20%;
    }

    .common-head h3 {
        font-size: 38px;
        line-height: 44px;
    }

    .common-section>*>.row {
        gap: 24px 0px;
    }

    .news-main-text h5 {
        font-size: 24px;
        line-height: 32px;
    }

    .news-small-text h5 {
        font-size: 20px;
        line-height: 24px;
    }

    .news-small-text span {
        font-size: 13px;
    }

    .news-small-text p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 14px;
    }

    .news-small-text a {
        font-size: 16px;
    }

    .contact-right-box {
        border-radius: 20px;
        padding: 20px;
    }

    .contact-input-box input {
        border-radius: 10px;
    }

    .contact-input-box textarea {
        border-radius: 10px;
    }

    .footer-subscb-box .footer-subscb-head {
        flex-direction: column;
    }

    .head-contact {
        gap: 16px;
    }

    .footer-section {
        margin-bottom: 6px;
    }

    .bookShel-section {
        border-radius: 20px;
    }

    .news-small-box {
        flex-wrap: wrap;
    }

    .news-main-box img,
    .news-small-box img {
        border-radius: 15px;
    }

    .contact-input-box input,
    .contact-input-box textarea {
        width: 100%;
        border: none;
        padding: 10px;
    }

    .contact-input-box input::placeholder,
    .contact-input-box textarea::placeholder {
        font-size: 14px;
    }

    .inrBanner-box {
        height: 200px;
    }

    .inrBanner-section {
        border-radius: 20px;
    }

    .inrBanner-box h1 {
        font-size: 24px;
    }

    .bookShel-slider.owl-carousel .owl-nav .owl-prev {
        position: absolute;
        left: 0px;
    }

    .bookShel-slider.owl-carousel .owl-nav .owl-next {
        position: absolute;
        right: 0px;
    }

    .news-detls-text h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .news-detls-text p {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 575px) {
    .navbar.header-fixed .navbar-brand {
        width: 55px;
        height: 55px;
    }

    .common-head h3 {
        font-size: 28px;
        line-height: 34px;
    }

    .common-head span {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .news-small-box img {
        width: 100%;
        height: auto;
    }

    .news-small-text {
        width: 100%;
    }

    .banner-box h1 {
        width: 100%;
    }

    .bnr-one-img {
        bottom: 10px;
        right: 0%;
        height: 155px;
    }

    .bnr-three-img {
        height: 130px;
    }

    .bnr-three-img-tag {
        bottom: 104px;
        right: 12%;
        height: 80px;
    }

    .bnr-two-img {
        bottom: 45px;
        right: 10%;
        height: 110px;
    }

    .bnr-two-img-tag {
        bottom: 130px;
        right: 24%;
        height: 60px;
    }

    .abt-right-top p,
    .abt-right-btm p {
        font-size: 15px;
        line-height: 22px;
    }

    .abt-right-logo {
        width: 120px;
        height: 120px;
    }

    .inrBanner-box h1 {
        font-size: 20px;
    }

    .footer-copyright p {
        font-size: 12px;
        line-height: 18px;
    }
}

/* 404 Page css start */

.common-section404 {
    padding: 40px 0px;
    position: relative;
    overflow: hidden;
}

.section-404 {
    text-align: center;
}

.section-404 .error {
    font-size: 150px;
    color: #002366;
    text-shadow:
        1px 1px 1px #002366,
        2px 2px 1px #002366,
        3px 3px 1px #002366,
        4px 4px 1px #002366,
        5px 5px 1px #002366,
        6px 6px 1px #002366,
        7px 7px 1px #002366,
        8px 8px 1px #002366,
        25px 25px 8px rgba(0, 0, 0, 0.1);
}

.section-404 .page {
    margin: 2rem 0;
    font-size: 20px;
    font-weight: 600;
    color: #444;
}

/* 404 Page css end */

.woocommerce span.onsale {
    min-height: 40px !important;
    min-width: 40px !important;
    padding: 0px !important;
    border-radius: 50% !important;
    background-color: var(--second-color);
    font-size: 12px !important;
    display: flex;
    align-content: center;
    justify-content: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #001f5c;
    color: #fff;
    z-index: 2;
    border-bottom-color: transparent !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0 0 0 0em !important;
}

.woocommerce-Reviews .comments h2 {
    font-size: 20px !important;
    font-family: var(--font-instrument-serif) !important;
    font-weight: 600 !important;
    color: var(--second-color) !important;
}

#commentform .form-submit input {
    background: var(--main-color) !important;
    color: #fff !important;
}

#commentform .comment-form-author,
#commentform .comment-form-email {
    display: flex;
    gap: 15px;
}

.comment-form-rating #comment-form-rating-label {
    color: var(--main-color);
    font-weight: 600 !important;
    margin-bottom: 15px;
}

.woocommerce div.product div.images img {
    max-height: 400px !important;
    height: auto !important;
    object-fit: contain !important;
}

.summary.entry-summary .product_title.entry-title {
    font-size: 30px;
    font-weight: 600;
}

.summary.entry-summary .cart {
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary.entry-summary .cart .quantity .qty {
    padding: 4px;
}

.summary.entry-summary .cart .single_add_to_cart_button {
    background: var(--second-color);
}

.summary.entry-summary .cart .single_add_to_cart_button:hover {
    background: var(--main-color);
}

.summary.entry-summary .product_meta span {
    font-size: 18px;
    font-weight: 600;
}

.summary.entry-summary .product_meta span>a {
    font-weight: 400;
    font-size: 15px;
    padding: 8px 12px;
    background: var(--main-color);
    border-radius: 12px;
    color: var(--white-color);
}

.footer-subscb-box form input {
    color: #fff !important;
}

.wp-block-woocommerce-cart .wc-block-components-sidebar .wc-block-cart__submit-container .wc-block-components-button {
    background: var(--main-color);
    color: #fff;
    border-radius: 10px;
}

.wc-block-cart-item__quantity .wc-block-cart-item__remove-link svg {
    color: #ff0044;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    font-size: 14px !important;
}

.wc-block-components-totals-coupon__form .wc-block-components-button {
    background-color: var(--second-color);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
}

.modal-body form {
    width: 100%;
}

.modal-body form input {
    width: 90%;
    padding: 10px;
}

.modal-body form button {
    width: 9%;
    background-color: var(--second-color);
    padding: 10px;
    color: #fff;
    border-radius: 6px;
}

.no-results.not-found {
    padding: 80px 20px;
    width: 40%;
    margin: auto;
    text-align: center;
}

.no-results.not-found .search-form {
    width: 100%;
    display: flex;
    gap: 5px;
}

.no-results.not-found .search-form label {
    width: 80%;
}

.no-results.not-found .search-form label input {
    width: 100%;
    padding: 10px;
}

.no-results.not-found .search-form input[type="submit"] {
    padding: 10px !important;
    width: 20%;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.search.search-no-results .widget-area {
    width: 85%;
    margin: auto;
}

.wp-block-search__inside-wrapper .wp-block-search__button {
    background: var(--main-color);
    color: #fff;
}

.news-btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

#reply-title {
    color: var(--second-color);
    font-size: 24px;
    font-weight: 600;
}

.woocommerce-form.woocommerce-form-login.login .form-row .woocommerce-button.button.woocommerce-form-login__submit {
    background: var(--main-color);
    color: #fff;
}

.woocommerce-form.woocommerce-form-login.login .woocommerce-LostPassword.lost_password a,
.woocommerce-form.woocommerce-form-login.login .woocommerce-LostPassword.lost_password a:visited {
    color: var(--second-color);
}

.woocommerce-form-row.form-row .woocommerce-Button {
    background: var(--main-color);
    color: #fff;
}

.wp-block-button.wc-block-grid__product-add-to-cart .wp-block-button__link.add_to_cart_button.ajax_add_to_cart {
    background: var(--main-color);
}

.wc-block-grid__product-title {
    font-size: 20px;
    color: #101f3c;
}

.wc-block-grid .wc-block-grid__product-onsale,
.wc-block-grid__product-image .wc-block-grid__product-onsale {
    color: var(--second-color);
    border: 1px solid #d4af37;
}

.wc-block-components-checkout-return-to-cart-button,
.wc-block-components-checkout-return-to-cart-button:visited {
    color: var(--second-color) !important;
}

.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    background: var(--main-color);
    color: #fff;
}

.wc-block-components-checkout-step__heading-content a,
.wc-block-components-checkout-step__heading-content a:visited {
    color: var(--second-color);
}

.menu-item.current_page_item.active {
    border: 1px solid #002366;
    border-radius: 60px;
    font-weight: 700;
    background: var(--white-color);
    font-weight: 700;
}

.footer-box .menu-item.current_page_item.active {
    border-radius: 0px;
    font-weight: 700;
    background: transparent;
    padding-left: 5px;
}

.footer-box .menu-item.current_page_item.active a span {
    color: var(--second-color) !important;
}

.wc-block-grid .wc-block-grid__products {
    margin-top: 40px;
}

.wp-block-button__link:hover {
    color: #fff;
}

.wc-block-components-product-name:visited {
    color: var(--main-color);
}

.comment-form-author input,
.comment-form-email input {
    width: 90%;
}

@media (max-width: 767px) {
    .wc-block-cart-item__wrap {
        width: 90%;
    }

    .wc-block-grid .wc-block-grid__products {
        margin-top: 20px;
    }

    .no-results.not-found {
        width: 100%;
    }

    .search.search-no-results .widget-area {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }

    .summary.entry-summary .product_title.entry-title {
        font-size: 18px;
    }

    .summary.entry-summary .price del {
        font-size: 14px;
    }

    .summary.entry-summary .price ins .woocommerce-Price-amount.amount bdi {
        font-size: 16px;
    }

    .inrBanner-box {
        width: 100%;
        height: auto;
        padding: 50px 0px;
    }

    #reply-title {
        font-size: 16px;
    }

    .summary.entry-summary .product_meta span {
        font-size: 16px;
    }

    .speakConsult-btm {
        padding-right: 0px;
    }

    .bookShel-slider.owl-carousel .owl-nav .owl-prev,
    .bookShel-slider.owl-carousel .owl-nav .owl-next {
        top: 35%;
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .contact-video-box p {
        font-size: 16px;
        line-height: 18px;
    }

    .comment-form-cookies-consent {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .comment-form-cookies-consent input[type="checkbox"] {
        margin-top: 6px;
    }
}

@media (max-width: 580px) {
    .modal-body form button {
        width: 100%;
        margin-top: 10px;
    }

    .modal-body form input {
        width: 100%;
    }
}

.home .abt-right-top {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-height: 464px;
    -webkit-line-clamp: 14;
    -webkit-box-orient: vertical;
}

