/**
* MEDIA QUERY MANAGER
**/
@import url("https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");

*, *::before, *::after {
    box-sizing: border-box;
}

@keyframes preLoader {
    100% {
        top: 100%;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}

@-webkit-keyframes movecircles {
    0% {
        margin-left: 1000px;
    }

    100% {
        margin-left: -1000px;
    }
}

@-moz-keyframes movecircles {
    0% {
        margin-left: 1000px;
    }

    100% {
        margin-left: -1000px;
    }
}

@-o-keyframes movecircles {
    0% {
        margin-left: 1000px;
    }

    100% {
        margin-left: -1000px;
    }
}

@keyframes upDown {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes footerHeart {
    0% {
        transform: scale(0);
    }

    25% {
        transform: scale(0.5);
        color: red;
    }

    50% {
        transform: scale(1);
        color: red;
    }
}
/*
* Colors
*/
body {
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    color: #676768;
}

p {
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Philosopher", sans-serif;
    color: #302dda;
    font-weight: 700;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 700;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: inherit;
    }
}

::selection {
    color: #ffffff;
    background: #302dda;
}

a {
    text-decoration: none;
    color: #676768;
    transition: 0.3s;
}

    a:hover {
        color: #302dda;
    }

body {
    box-sizing: border-box;
}

.section-wrapper {
    overflow-x: hidden;
}

.bg-one {
    background-color: #edecfd;
}

.section-padding {
    padding: 40px 0;
}

.section-padding-t {
    padding-top: 80px;
}

.section-padding-b {
    padding-bottom: 80px;
}

.badge-text {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #0f0bd4;
    font-weight: 600;
    display: inline-block;
}

[class*=section-title-] {
    margin-bottom: 50px;
}

    [class*=section-title-] span {
        text-transform: uppercase;
        letter-spacing: 4px;
        color: #0f0bd4;
        font-weight: 600;
        display: inline-block;
    }

    [class*=section-title-] h2 {
        margin-top: 0px;
    }

.section-title-left p {
    margin-left: 0;
}

.section-title-center p {
    margin: 0 auto;
}

.section-divider {
    margin-top: 20px;
}

/* Traingle divider */
.divider-traingle {
    width: 200px;
    border-width: 1px;
    border-style: solid;
    border-color: #ff4a83;
    opacity: 0.4;
    position: relative;
    display: inline-block;
}

    .divider-traingle:before {
        position: absolute;
        content: "";
        width: 18px;
        height: 18px;
        background-color: #ff4a83;
        top: -9px;
        opacity: 0.4;
        right: 50%;
        transform: rotate(45deg);
    }

    .divider-traingle:after {
        position: absolute;
        content: "";
        width: 18px;
        height: 18px;
        background: #ff4a83;
        top: -9px;
        left: 45%;
        opacity: 0.4;
        transform: rotate(45deg);
    }

.button {
    pointer-events: auto;
    cursor: pointer;
    background: #ff4a83;
    color: #ffffff;
    border: none;
    text-align: center;
    padding: 10px 30px;
    line-height: 30px;
    margin: 0;
    position: relative;
    display: inline-block;
}

    .button:hover {
        color: #ffffff;
    }

    .button::before, .button::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.button-primary {
    border-radius: 3px;
    overflow: hidden;
    color: #ffffff;
    background: #ff4a83;
}

    .button-primary::before {
        content: "";
        background: #ff4a83;
        width: 125%;
        left: -12%;
        transform: skew(30deg);
        transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    }

    .button-primary span {
        position: relative;
    }

    .button-primary:hover::before {
        transform: translate3d(100%, 0, 0);
        background: #ffedf6;
    }

.btn__secondary {
    position: relative;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    padding: 10px 30px;
    border-radius: 3px;
    overflow: hidden;
    text-decoration: none;
    background-color: transparent;
    color: #ff4a83;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn__secondary i {
        font-size: 20px;
        margin-right: 5px;
    }

    .btn__secondary::before, .btn__secondary::after {
        content: "";
        position: absolute;
        width: 15px;
        height: 100%;
        border-width: 1px;
        border-style: solid;
        border-color: #ff4a83;
        transition: all 0.5s ease;
    }

    .btn__secondary::before {
        top: 0px;
        left: 0px;
        border-right: none;
    }

    .btn__secondary::after {
        top: 0px;
        right: 0px;
        border-left: none;
    }

    .btn__secondary:hover::before, .btn__secondary:hover::after {
        width: 100%;
    }

    .btn__secondary:hover {
        text-decoration: none;
        background: #ff4a83;
        color: #ffffff;
        transition-delay: 0.35s;
    }

    .btn__secondary.btn-small {
        padding: 4px 20px;
    }

.link {
    font-weight: 500;
    position: relative;
    color: #ff4a83;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
}

    .link i {
        position: relative;
        margin-left: 4px;
        font-size: 20px;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .link:hover {
        color: #876585;
    }

        .link:hover i {
            margin-left: 6px;
        }

.social-icon {
    padding-left: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .social-icon li {
        list-style: none;
    }

        .social-icon li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            padding: 5px;
            background-color: #ff4a83;
            color: #ffffff;
            transition: all 0.5s;
            box-shadow: 3px 3px #ff4a83;
        }

            .social-icon li a:hover {
                background-color: #ff4a83;
                box-shadow: none;
            }

@media screen and (max-width: 320px) {
    .social-icon li a {
        width: 30px;
        height: 30px;
    }
}

.social-icon li a i {
    font-size: 20px;
}

@media screen and (max-width: 320px) {
    .social-icon li a i {
        font-size: 15px;
    }
}

#preLoader {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    animation: preLoader 1s 1s linear forwards;
    background-color: #ffffff;
}

.circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: absolute;
    overflow: hidden;
    opacity: 0.3;
    border-width: 5px;
    border-style: solid;
    border-color: #fcb0b4;
}

.x1 {
    animation: movecircles 25s linear infinite;
    top: 150px;
}

.x2 {
    left: 200px;
    top: 200px;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-animation: movecircles 35s linear infinite;
    -moz-animation: movecircles 35s linear infinite;
    -o-animation: movecircles 35s linear infinite;
}

.x3 {
    left: -250px;
    bottom: 250px;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-animation: movecircles 40s linear infinite;
    -moz-animation: movecircles 40s linear infinite;
    -o-animation: movecircles 40s linear infinite;
}

.x4 {
    left: 470px;
    bottom: 300px;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    transform: scale(0.75);
    animation: movecircles 45s linear infinite;
}

.x5 {
    left: -150px;
    bottom: 100px;
    transform: scale(0.8);
    animation: movecircles 50s linear infinite;
}

.video-btn {
    height: 70px;
    width: 70px;
    line-height: 80px;
    text-align: center;
    color: #876585;
    background-color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    z-index: 99;
    padding-left: 5px;
    box-shadow: 0 0 30px rgba(1, 6, 33, 0.06);
}

.video-btn:hover {
    color: #c27b7f;
}

.waves-block .waves {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #ffffff;
    opacity: 0;
    border-radius: 100%;
    animation: waves 4s ease-in-out infinite;
    left: 50%;
    top: 50%;
    margin-left: -65px;
    margin-top: -65px;
    z-index: 3;
}

.waves-block .wave-1 {
    animation-delay: 0s;
}

.waves-block .wave-2 {
    animation-delay: 1s;
}

.waves-block .wave-3 {
    animation-delay: 2s;
}

.translateEffect1 {
    transition: all 0.3s;
}

.translateEffect1:hover {
    transform: translateY(-10px);
}

.translateEffect2 {
    transition: all 0.3s;
}

.translateEffect2:hover {
    transform: translateY(-5px);
}

.not-found h1 {
    font-size: 150px;
    color: #c27b7f;
}

blockquote {
    padding: 10px 30px;
    background-color: #f5ebe6;
    font-style: italic;
    border-left: 5px solid #c27b7f;
    font-size: 18px;
}

blockquote p {
    margin-bottom: 0;
}

.header {
    position: absolute;
    width: 100%;
    transition: border-radius 0.2s, width 350ms ease;
}

.header.navbar_fixed {
    position: fixed;
    width: 100%;
    background: #ffffff;
    z-index: 100;
    box-shadow: 0 2px 28px 0 rgba(1, 6, 33, 0.06);
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

    .header.navbar_fixed .navbar {
        margin-top: 0px;
    }

.header .navbar {
    border: 0px;
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s;
    transition: all 0.4s ease-in-out;
}

.header .navbar img {
    max-width: 220px;
    height: 50px;
}

.header .navbar .navbar-brand {
    padding: 0px;
}

    .header .navbar .navbar-nav li a:hover:after,
    .header .navbar .navbar-nav li.active a:after,
    .header .navbar .navbar-nav li.current_page_item a:after {
        opacity: 1;
        bottom: -6px;
    }

    .header .navbar .nav-item .sub-menu-toggle.dropdown-toggle::after {
        content: inherit;
    }

    .header .navbar .nav-item .nav-link.dropdown-toggle::after {
        border-top: inherit;
    }

    .header .navbar .nav-item .nav-link {
        color: inherit;
    }

    .header .navbar .nav-item:hover .nav-link,
    .header .navbar .nav-item:hover i {
        color: #302dda;
    }

    .header .navbar .nav-item:hover .dropdown-menu .nav-item .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item i {
        color: #2f4858;
        background-color: inherit;
    }

    .header .navbar .nav-item:hover .dropdown-menu .nav-item:hover .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item:hover i {
        color: #c27b7f;
    }

    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item i {
        color: #2f4858;
        background-color: inherit;
    }

    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item:hover i {
        color: #c27b7f;
    }

    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item.current-menu-item .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item.current-menu-item i, .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item.active i {
        color: #c27b7f;
    }

    .header .navbar .nav-item:hover .dropdown-menu .nav-item.current-menu-item .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item.current-menu-item i, .header .navbar .nav-item:hover .dropdown-menu .nav-item.active .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item.active i {
        color: #c27b7f;
    }

    .header .navbar .nav-item.current-menu-item .nav-link,
    .header .navbar .nav-item.current-menu-item i, .header .navbar .nav-item.active .nav-link,
    .header .navbar .nav-item.active i {
        color: #302dda;
    }

.header .navbar-expand-lg {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s;
}

.header .navbar-toggler {
    position: relative;
    width: 30px;
    height: 20px;
    border-radius: 0px;
    padding: 0px;
    border: 0px;
}

.header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.header .navbar-toggler span {
    background-color: #2f4858;
    display: block;
    position: absolute;
    height: 1px;
    width: 50%;
    opacity: 1;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.header .navbar-toggler span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
}

.header .navbar-toggler span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
}

.header .navbar-toggler span:nth-child(1), .header .navbar-toggler span:nth-child(6) {
    transform: rotate(45deg);
}

.header .navbar-toggler span:nth-child(2), .header .navbar-toggler span:nth-child(5) {
    transform: rotate(-45deg);
}

.header .navbar-toggler span:nth-child(1) {
    left: 0px;
    top: 4px;
}

.header .navbar-toggler span:nth-child(2) {
    left: calc(50% - 4px);
    top: 4px;
}

.header .navbar-toggler span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

.header .navbar-toggler span:nth-child(4) {
    left: 86%;
    opacity: 0;
}

.header .navbar-toggler span:nth-child(5) {
    left: 0px;
    top: 14px;
}

.header .navbar-toggler span:nth-child(6) {
    left: calc(50% - 4px);
    top: 14px;
}

.header .navbar-toggler.collapsed span:nth-child(1), .header .navbar-toggler.collapsed span:nth-child(2) {
    top: 2px;
}

.header .navbar-toggler.collapsed span:nth-child(3), .header .navbar-toggler.collapsed span:nth-child(4) {
    top: 9px;
}

.header .navbar-toggler.collapsed span:nth-child(5), .header .navbar-toggler.collapsed span:nth-child(6) {
    top: 16px;
}

.header .navbar-toggler.collapsed span:nth-child(2), .header .navbar-toggler.collapsed span:nth-child(5), .header .navbar-toggler.collapsed span:nth-child(1), .header .navbar-toggler.collapsed span:nth-child(6) {
    transform: rotate(0deg);
}

.header .navbar-toggler.collapsed span:nth-child(3) {
    opacity: 1;
    left: 0;
}

.header .navbar-toggler.collapsed span:nth-child(4) {
    opacity: 1;
    left: calc(50% - 4px);
}

.dropdown-toggle.active.show span {
    transform: rotate(180deg);
}

.menu > .nav-item {
    position: relative;
    transition: all 0.2s linear;
    border-bottom: 1px solid transparent;
    margin-left: 45px;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
}
.required-label {
    position: relative;
    display: inline-block;
}

.required-star {
    color: red;
    font-size: 8px;
    position: absolute;
    top: 2px;
}
.login-btn {
    background-color: #0f0bd4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    background-size: 200% auto;
}
.sign-register a{
    color: #ff4a83;
    text-decoration: none;
}
.login-btn:hover {
    background-image: linear-gradient(to right, #0f0bd4, #302dda);
    background-position: right center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
input:focus-visible {
    outline: none;
    box-shadow: none;
}
#password:focus-visible {
    outline: none;
    box-shadow: none;
}
/* ===== terms and condition page ====*/
.terms-container {
    padding: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    border-radius: 8px;
    color: #333;
    line-height: 1.8;
    max-width: 900px;
    margin: 102px auto;
}

.terms-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.terms-intro {
    font-size: 16px;
    margin-bottom: 20px;
}

.terms-list {
    list-style: decimal;
    padding-left: 20px;
    font-size: 16px;
}

.terms-list li {
    margin-bottom: 15px;
}

.terms-list strong {
    color: #000;
}

.terms-footer {
    font-size: 16px;
    font-weight: 600;
    margin-top: 25px;
    color: #444;
}
/* === privacy policies ====*/
.privacy-policy {
    max-width: 900px;
    margin: 102px auto;
    padding: 30px;
    background-color: #fdfdfd;
    border-radius: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .privacy-policy h1 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #1a1a1a;
    }

    .privacy-policy h2 {
        font-size: 20px;
        margin-top: 30px;
        color: #444;
        border-bottom: 1px solid #ddd;
        padding-bottom: 5px;
    }

    .privacy-policy h3 {
        font-size: 17px;
        margin-top: 20px;
        color: #555;
    }

    .privacy-policy ul {
        padding-left: 20px;
        margin-top: 10px;
    }

    .privacy-policy li {
        margin-bottom: 8px;
    }

    .privacy-policy p {
        margin: 12px 0;
    }

    .privacy-policy em {
        color: #666;
        font-style: italic;
    }

@media only screen and (max-width: 1199px) {
    .menu > .nav-item {
        margin-left: 0;
    }
}

.menu > .nav-item > a {
    padding-top: 8px;
    padding-bottom: 8px;
    display: block;
}

    .menu > .nav-item > a::after {
        transition: all 0.4s cubic-bezier(0.3, 0.1, 0.58, 1);
        opacity: 0;
        content: "";
        width: 100%;
        width: 30px;
        left: 50%;
        transform: translate(-50%, 0);
        height: 2px;
        background: #302dda;
        position: absolute;
        bottom: -20px;
    }

@media only screen and (max-width: 991px) {
    .menu > .nav-item > a::after {
        left: 10px;
        background: inherit;
    }
}

.menu > .nav-item.submenu .dropdown-menu {
    margin: 0px;
    border: 0px;
    border-radius: 0px;
    left: -100px;
    max-width: 195px;
    min-width: 195px;
    padding: 15px;
    background: #ffffff;
    top: 100%;
    box-shadow: 0px 6px 20px 0px rgba(1, 6, 33, 0.06);
}

@media (min-width: 992px) {
    .menu > .nav-item.submenu .dropdown-menu {
        transform: translateY(20px);
        transition: all 0.3s ease-in;
        opacity: 0;
        visibility: hidden;
        display: block;
    }
}

.menu > .nav-item.submenu .dropdown-menu .nav-item {
    display: block;
    width: 100%;
    position: relative;
}

.menu > .nav-item.submenu .dropdown-menu .nav-item:not(:first-child) {
    margin-top: 14px;
}

.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link {
    padding: 0px;
    text-wrap: inherit;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s linear;
}

.menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu {
    transition: transform 0.3s ease-in;
}

.menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu:before {
    display: none;
}
    

@media (min-width: 992px) {
    .menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu {
        position: absolute;
        left: 100%;
        top: -15px;
        opacity: 0;
        display: block;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease-in;
    }
}

.menu > .nav-item.submenu .dropdown-menu .dropdown-menu-end {
    left: 0;
    box-shadow: none;
    display: flex;
    padding: 0;
    min-width: 100%;
}

@media only screen and (max-width: 991px) {
    .menu > .nav-item.submenu .dropdown-menu .dropdown-menu-end {
        display: block;
    }

        .menu > .nav-item.submenu .dropdown-menu .dropdown-menu-end .dropdown-menu {
            display: block;
        }
}

@media (min-width: 992px) {
    .menu > .nav-item:hover .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

@media (min-width: 992px) and (min-width: 992px) {
    .menu > .nav-item:hover .dropdown-menu > .nav-item:hover .dropdown-menu {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
    }
}

.menu > .nav-item.dropdown.submenu {
    display: flex;
    align-items: center;
}

    .menu > .nav-item.dropdown.submenu .dropdown-menu .nav-item .nav-link {
        padding: 0;
        color: inherit;
    }

@media (max-width: 991px) {
    .navbar-nav > li .sub-menu-toggle {
        position: absolute;
        top: 0;
        right: 0;
        background: #2f4858;
        width: 100%;
        height: 38px;
        width: 38px;
        line-height: 38px;
        margin-right: 0px;
        cursor: pointer;
        text-align: center;
        z-index: 1;
        border: 3px solid #ffffff;
    }

    .header .navbar .nav-item i {
        color: #ffffff !important;
    }

    .menu .nav-item.dropdown.submenu {
        display: block;
    }

    .menu > .nav-item.submenu .dropdown-menu {
        max-width: 100%;
    }
}

@media only screen and (max-width: 991px) {
.navbar .navbar-collapse {
    position: absolute;
    left: 0;
    top: 100%;
    background: #ffffff;
    box-shadow: 4px 6px 10px rgba(1, 6, 33, 0.06);
    z-index: 8;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    max-height: 300px;
    /*overflow-y: scroll;*/
}

.navbar .navbar-collapse.collapse.show .nav-item .nav-link::after {
    bottom: 0;
    left: 15px;
}

.menu > .nav-item {
    margin: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0;
    padding-right: 0;
}

.menu > .nav-item.submenu .dropdown-menu {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
}

.menu > .nav-item.submenu .dropdown-menu .nav-item {
    padding-left: 0;
    padding-right: 0;
}
}

#menu-primary-menu .current-menu-parent {
    color: #c27b7f;
}

    #menu-primary-menu .current-menu-parent a::after {
        opacity: 1;
        bottom: -12px;
    }

.hero__padding {
    /* padding-top: 150px;
    padding-bottom: 100px;*/
    padding-top: 152px;
    padding-bottom: 59px;
}

.hero__content {
    z-index: 9;
}

@media (min-width: 768px) {
    .m-25px-b {
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        position: absolute;
        height: 100vh;
        z-index: 1050;
    }

    .sidebar.show-mobile {
        transform: translateX(0);
    }

    .main-area {
        margin-left: 0!important;
        width: 100%;
    }
/*.layout {
        flex-direction: column;
    }*/
    .mb-none{
        display:none;
    }
    .custom-gap > *:last-child {
        margin-right: 39px!important;
    }
   /* .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        z-index: 1000;
    }

    .sidebar.active {
        position: relative;
        transform: translateX(0);
        margin-left: 270px;
    }*/
/*    .sidebar {
        position: fixed;
        left: 0;
        top: 60px; 
        height: calc(100vh - 60px);
        transform: translateX(-100%);
        z-index: 5;
    }*/

/*    .sidebar.active {
        transform: translateX(0);
    }*/

  /*  .main-area.shifted {
        margin-left: 250px;
    }*/
    .sidebar-toggle {
        display: block!important;
    }
    .sidebar-toggle {
        display: inline-block;
        font-size: 24px;
        background: none;
        border: none;
        color: #302dda;
        cursor: pointer;
    }

  /*  .main-area {
        margin-left: 0!important;
    }*/

    .sidebar-toggle {
        background: none;
        border: none;
        font-size: 24px;
        color: #302dda;
        cursor: pointer;
    }

    .header-dashboard {
        justify-content: space-between;
    }
  /*  .main-area {
        margin-left: 0 !important;
    }*/
    .close-sidebar {
        display: none;
    }
    .search-wrapper{
        display:none;
    }
    .section .left, .section .right {
        width: 100%;
    }

    .tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab {
        padding: 10px;
    }
    .content-dashboard {
        padding: 12px!important;
        overflow-y: auto;
        height: calc(100vh - 60px);
        /* overflow-y: scroll!important;*/
    }
}
/* Desktop View */
@media (min-width: 769px) {
    .sidebar-toggle {
        display: none;
    }
    .close-sidebar {
        display: none;
    }
    .sidebar {
        position: relative;
        transform: translateX(0);
    }

  /*  .main-area {
        margin-left: 267px;
    }*/
}

@media only screen and (max-width: 767px) {
    .hero__content {
        text-align: center;
    }

    .achivev2__item-4 {
        margin-top: 25px !important;
    }

    .mt-top {
        margin-top: 40px;
    }

    .modal-content {
        padding: 20px;
        max-width: 80%;
    }

    .m-25px-b {
        margin-bottom: 0px;
    }

    .layout {
        flex-direction: column;
    }

    .sidebar {
        position: absolute;
        left: -270px;
        top: 0;
        height: 100%;
        z-index: 1000;
        transition: left 0.3s ease;
    }

        .sidebar.active {
            left: 0;
        }

    .main-area {
        width: 100%;
    }

    .sidebar-toggle {
        background: none;
        border: none;
        font-size: 24px;
        color: #302dda;
        cursor: pointer;
    }

    .header-dashboard {
        justify-content: space-between;
    }
}

@media only screen and (max-width: 767px) {
    .hero__content form .input-group {
        display: flex;
        justify-content: center;
    }

    .manuscript-container {
        display: block !important;
    }

    .manuscript-faq {
        width: 100% !important;
    }

    .manuscript-form {
        width: 90% !important;
    }

    .manuscript-form {
        width: 90%;
        margin: 35px auto 0 auto;
    }

    .mt-top {
        margin-top: 40px;
    }

    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        background: #edecfd;
        padding: 20px;
        max-width: 80%;
        transform: translate(-50%, -50%);
    }
}

.hero__content form input {
    border: 0;
    border-radius: 5px;
    box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
    padding: 15px 15px;
    width: 300px;
}

.hero__content form input:focus {
    outline: none;
}

@media only screen and (max-width: 991px) {
    .hero__content form input {
        width: 250px;
    }
}

@media only screen and (max-width: 575px) {
    .custom-gap > * {
        margin-right: 14px!important;
    }
    .hero__content form input {
        width: auto;
    }

    .achivev2__item-4 {
        margin-top: 25px;
    }

    .modal-content {
        max-width: 80% !important;
        height: 75vh;
    }

    .card {
        background-color: #edecfd;
        padding: 20px;
        border-radius: 12px;
        width: 100%;
        border: 1px solid #3a3a3a;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .swiper-slide {
        width: 100%!;
        /* flex-shrink: 0; */
        display: flex;
        justify-content: center;
    }

    .swiper-wrapper {
        width:100%;
    }

    .testi-row .clients-slider {
        padding: 0 0 50px 281px;
    }
}

.hero__content form button {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

@media screen and (max-width: 380px) {
    .swiper-wrapper {
        width: 382%;
    }

    .testi-row .clients-slider {
        padding: 0 0 50px 281px;
    }

    .hero__content form input {
        width: 100%;
        border-top-right-radius: 5px !important;
        border-bottom-right-radius: 5px !important;
    }

    .hero__content form button {
        border-top-left-radius: 5px !important;
        border-bottom-left-radius: 5px !important;
        width: 100%;
        margin-top: 20px;
    }

    .top-padding {
        margin-top: 40px;
    }

    .trusted-box {
        margin-top: 28px;
    }

    .achivev2__item-4 {
        margin-top: 25px;
    }

    .achivev2__item-4 {
        margin-top: 25px;
    }

    .mt-top {
        margin-top: 40px;
    }
}

.hero__images {
    position: relative;
    margin-left: 60px;
}

@media only screen and (max-width: 991px) {
    .hero__images {
        margin-left: 0;
    }
}

.hero__images--badge {
    position: absolute;
    width: 100px;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 10px;
    background-color: #c27b7f;
    color: #ffffff;
    top: 69.5%;
    right: 71.5%;
    text-align: center;
    box-shadow: 0px 30px 40px 0px rgba(1, 6, 33, 0.06);
    line-height: 22px;
    animation: upDown 3s linear infinite alternate;
}

    .hero__images--badge span {
        font-family: "Philosopher", sans-serif;
    }

.hero__images--badge--text1 {
    display: block;
    font-size: 26px;
    font-weight: 700;
}

.hero__images3 {
    padding-right: 30px;
    position: relative;
    border-radius: 10px;
    margin-bottom: 30px;
    display: inline-block;
    animation: upDown 3s linear infinite alternate;
}

@media only screen and (max-width: 991px) {
    .hero__images3 {
        padding-right: 25px;
    }
}

.hero__images3::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50px;
    z-index: 1;
    border: 3px dotted #fcb0b4;
    border-radius: 10px;
    height: 100%;
    animation: upDown 3s linear infinite alternate;
    width: 80%;
}

.hero__images3 img {
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.hero__images4 {
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

@media only screen and (max-width: 991px) {
    .hero__images4 {
        padding-left: 25px;
    }
}

.hero__images4:after {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 1;
    background: #fcb0b4;
    border-radius: inherit;
    height: 100%;
    width: 80%;
    border-radius: 10px 0px 10px 10px;
}

@media only screen and (max-width: 991px) {
    .hero__images4:after {
        top: 25px;
    }
}

.hero__images4 img {
    position: relative;
    z-index: 2;
    border-radius: 10px 30px 10px 30px;
}

.hero__author--inner {
    position: relative;
    width: 26vw;
    height: 32vw;
    -webkit-transform: rotateY(5deg);
    transform: rotateY(5deg);
    margin-left: auto;
    border-radius: 5px;
}

@media only screen and (max-width: 991px) {
    .hero__author--inner {
        width: 30vw;
        height: 60vh;
    }
}

@media only screen and (max-width: 767px) {
    .hero__author--inner {
        width: 67vw;
        height: 100vh;
    }

    .mt-top {
        margin-top: 40px;
    }

    .search-btn {
        margin-bottom: 33px;
    }
}

@media only screen and (max-width: 575px) {
    .hero__author--inner {
        width: 93vw;
        height: 100vh;
    }

    .hero__padding {
        padding-top: 150px;
        padding-bottom: 40px;
        height: 1000px;
    }

    .mt-top {
        margin-top: 40px;
    }

    .top-padding {
        margin-top: 40px;
    }

    .register-div {
        flex-direction: column;
        border-top-right-radius: 35px !important;
        border-bottom-right-radius: 0% !important;
        border-top-left-radius: 35px !important;
        border-bottom-left-radius: 12px !important;
    }

    .register-welcome {
        width: 100% !important;
        order: -1;
        padding: 20px 0;
        /*  border-bottom: 1px solid #ccc;*/
    }

    .register-box {
        width: 100% !important;
    }
}

.hero__author--inner--pic {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.hero__author--inner .frame {
    border-radius: 5px;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    border: 1px solid #2f4858;
}

    .hero__author--inner .frame.frame-1 {
        opacity: 0.25;
        -webkit-transform: translate(-1rem, 1rem);
        -ms-transform: translate(-1rem, 1rem);
        transform: translate(-1rem, 1rem);
    }

    .hero__author--inner .frame.frame-2 {
        opacity: 0.15;
        -webkit-transform: translate(-2rem, 2rem);
        -ms-transform: translate(-2rem, 2rem);
        transform: translate(-2rem, 2rem);
    }

    .hero__author--inner .frame img {
        position: relative;
        width: 100%;
        z-index: 2;
        border-radius: 10px 100px 10px 100px;
    }

.hero__author--inner2 {
    width: 20vw;
    height: 28vw;
}

@media only screen and (max-width: 991px) {
    .hero__author--inner2 {
        width: 45vw;
        height: 50vw;
    }
}

@media only screen and (max-width: 767px) {
    .hero__author--inner2 {
        width: 55vw;
        height: 60vw;
    }

    .mt-top {
        margin-top: 40px;
    }
}

.hero__author--inner2--pic {
    position: relative;
    background-size: contain;
}

    .hero__author--inner2--pic:before {
        content: "";
        position: absolute;
        width: 90%;
        height: 80%;
        background-color: #fcb0b4;
        opacity: 0.9;
        z-index: -1;
        right: 0;
        bottom: 0;
    }

.hero__author--inner2 .frame {
    left: inherit;
    right: 0;
    width: 80%;
}

@media only screen and (max-width: 767px) {
    .hero__author--inner2 .frame {
        left: 0;
        right: inherit;
    }

    .mt-top {
        margin-top: 40px;
    }
}

.hero__author--inner2 .frame.frame-1 {
    opacity: 0.25;
    -webkit-transform: translate(2rem, 2rem);
    -ms-transform: translate(2rem, 2rem);
    transform: translate(2rem, 2rem);
}

@media only screen and (max-width: 991px) {
    .hero__author--inner2 .frame.frame-1 {
        -webkit-transform: translate(1rem, 1rem);
        -ms-transform: translate(1rem, 1rem);
        transform: translate(1rem, 1rem);
    }
}

.hero__author--inner2 .frame.frame-2 {
    opacity: 0.15;
    -webkit-transform: translate(4rem, 4rem);
    -ms-transform: translate(4rem, 4rem);
    transform: translate(4rem, 4rem);
}

@media only screen and (max-width: 991px) {
    .hero__author--inner2 .frame.frame-2 {
        -webkit-transform: translate(2rem, 2rem);
        -ms-transform: translate(2rem, 2rem);
        transform: translate(2rem, 2rem);
    }
}

.hero__author--inner2 .frame.frame-3 {
    opacity: 0.05;
    -webkit-transform: translate(6rem, 6rem);
    -ms-transform: translate(6rem, 6rem);
    transform: translate(6rem, 6rem);
}

@media only screen and (max-width: 991px) {
    .hero__author--inner2 .frame.frame-3 {
        -webkit-transform: translate(3rem, 3rem);
        -ms-transform: translate(3rem, 3rem);
        transform: translate(3rem, 3rem);
    }
}

.hero__book {
    padding-right: 10px;
    animation: upDown 3s linear infinite alternate;
}

    .hero__book img {
        border-radius: 5px;
    }

.hero__book--wrapper {
    position: relative;
}

    .hero__book--wrapper::before {
        border-radius: 5px;
        content: "";
        position: absolute;
        left: -10px;
        bottom: -10px;
        border-width: 1px;
        border-style: solid;
        border-color: #fcb0b4;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

.hero__author--inner3 {
    position: relative;
    display: inline-block;
}

.hero__author--inner3--wrapper {
    position: relative;
    z-index: 2;
}

    .hero__author--inner3--wrapper::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 100%;
        border: 3px solid #c27b7f;
    }

.hero__author--inner3 img {
    border-radius: 100%;
    padding: 8px;
}

.hero__author--inner3:before, .hero__author--inner3:after {
    width: 120px;
    height: 120px;
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    border-radius: 100%;
    z-index: 1;
    opacity: 0.6;
}

.hero__author--inner3:before {
    left: 50%;
    top: -50px;
    background-color: #c27b7f;
    animation: upDown 3s linear infinite alternate;
}

.hero__author--inner3:after {
    left: 30%;
    bottom: -50px;
    background-color: #876585;
    animation: upDown 4s linear infinite alternate;
}

.hero .button {
    padding: 10px 20px;
}

.hero .btn__secondary {
    padding: 10px 20px;
}

@media screen and (max-width: 330px) {
    .hero .button {
        width: 100%;
    }

    .swiper-wrapper {
        width: 382%;
    }

    .testi-row .clients-slider {
        padding: 0 0 50px 281px;
    }

    .hero .btn__secondary {
        width: 100%;
        background-color: #c27b7f;
        color: #ffffff;
    }

    .mt-top {
        margin-top: 40px;
    }
}

.success-msg,
.error-msg {
    font-size: 15px;
    text-align: center;
    padding: 10px;
    display: none;
    margin: 0px !important;
}

.error-msg {
    color: #ca3604 !important;
}

.success-msg {
    color: #00b374;
}

.achieve__icon {
    position:relative;
    width: 60px;
    height: 60px;
    background-color: #ff4a83;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px #ff7e9b;
    transition: 0.3s;
    font-size: 35px;
}

.achieve__top__explore {
    margin-bottom: 40px;
    text-align: right;
}

@media only screen and (max-width: 991px) {
    .achieve__top__explore {
        text-align: center;
    }
}

.achieve__image {
    position: relative;
    width: 100%;
    padding-left: 20px;
}

    .achieve__image:after {
        content: "";
        position: absolute;
        left: 0;
        top: 20px;
        z-index: 1;
        background-color: #c27b7f;
        border-radius: inherit;
        height: 100%;
        width: 90%;
        border-radius: 5px;
    }

    .achieve__image img {
        position: relative;
        width: 95%;
        z-index: 2;
        border-radius: 5px;
    }

@media only screen and (max-width: 991px) {
    .achieve__image img {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .achieve__content {
        margin-top: 30px;
    }
}

.achieve__content__item {
    padding: 25px;
    border-radius: 5px;
    box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
    background-color: #ffffff;
}

@media only screen and (max-width: 1199px) {
    .achieve__content__item {
        padding: 20px;
    }
}

.achieve__content__item:hover {
    background-color: #ff4a83;
    color: #ffffff;
}

    .achieve__content__item:hover h3 {
        color: #ffffff;
    }

    .achieve__content__item:hover .achieve__icon {
        border-radius: 62% 38% 46% 54%/60% 63% 37% 40%;
        background-color: #ffffff;
        box-shadow: 3px 3px #ff4a83;
        color: #ff4a83;
    }

.achieve__content__item p {
    margin-bottom: 0;
}

.achieve__image--wrap .achieve__img img {
    border-radius: 5px;
}

.achieve__image--wrap .achieve__img:not(:last-child) {
    margin-bottom: 20px;
}

.achivev2 [class*=__item] {
    padding: 35px;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
}

@media only screen and (max-width: 991px) {
    .achivev2 [class*=__item] {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .achivev2 [class*=__item] {
        padding: 40px;
    }

    .achivev2__item-4 {
        margin-top: 25px;
    }

    .mt-top {
        margin-top: -34px !important;
    }

    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        background: #edecfd;
        padding: 20px;
        max-width: 80%;
    }
}

.achivev2 [class*=__item] p {
    margin: 20px 0;
}

.achivev2__item-2 {
    margin-top: -70px;
}

@media only screen and (max-width: 991px) {
    .achivev2__item-2 {
        margin-top: 0;
    }
}

.achivev2__item-3 {
    margin-top: -135px;
}

.achivev2__item-4 {
    margin-top: -190px;
}

@media only screen and (max-width: 991px) {
    .achivev2__item-3 {
        margin-top: 0;
    }
}

.achieve3__item {
    position: relative;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
    transition: all 0.5s;
    overflow: hidden;
}

    .achieve3__item:hover .achieve__icon {
        box-shadow: 0px 0px transparent;
    }

    .achieve3__item::before, .achieve3__item::after {
        content: "";
        position: absolute;
        bottom: -100px;
        right: 0;
        clip-path: polygon(100% 29%, 100% 100%, 19% 99%, 0 56%);
        z-index: -1;
    }

    .achieve3__item::before {
        width: 80px;
        height: 80px;
        background-color: #c27b7f;
        transition: all 0.3s;
        opacity: 0.3;
    }

    .achieve3__item::after {
        width: 70px;
        height: 70px;
        background-color: #876585;
        transition: all 0.5s;
        opacity: 0.3;
    }

    .achieve3__item:hover::before {
        bottom: 0;
        z-index: 1;
    }

    .achieve3__item:hover::after {
        bottom: 0;
        z-index: 1;
    }

.chapter__item {
    background-color: #f5ebe6;
    box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
    border-radius: 5px;
    padding: 25px;
}

    .chapter__item p {
        margin-bottom: 0;
    }

    .chapter__item h3 {
        margin-bottom: 15px;
    }

.chapter-preview .testi-row {
    position: relative;
}

.chapter-preview .swiper-button-next,
.chapter-preview .swiper-button-prev {
    top: auto;
    bottom: 0 !important;
}

    .chapter-preview .swiper-button-next::after,
    .chapter-preview .swiper-button-prev::after {
        font-size: 16px;
        font-weight: bold;
        background-color: #c27b7f;
        padding: 10px 15px;
        color: #ffffff;
        box-shadow: 3px 3px #876585;
    }

.chapter-preview .swiper-button-next {
    right: 50%;
    transform: translate(40px, 0);
}

.chapter-preview .swiper-button-prev {
    left: 50%;
    transform: translate(-40px, 0);
}

.faqs-accordion .accordion-item {
    background: #f5f6fa;
    border-bottom: none;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0px 1px 20px 0px rgba(1, 6, 33, 0.06);
    border-left: 3px solid #0f0bd4;
}

    .faqs-accordion .accordion-item .accordion-header .accordion-button {
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        box-shadow: none !important;
        color: #2f4858;
        font-size: 20px;
        font-weight: 700;
        color: #2f4858;
       
    }

        .faqs-accordion .accordion-item .accordion-header .accordion-button.collapsed {
            border-radius: 6px;
            color: #0f172a;
            /*background: #f5f6fa;*/
        }

            .faqs-accordion .accordion-item .accordion-header .accordion-button.collapsed:before {
                color: #fff;
                transform: rotate(0deg);
            }

        .faqs-accordion .accordion-item .accordion-header .accordion-button:focus {
            box-shadow: none;
        }

        .faqs-accordion .accordion-item .accordion-header .accordion-button::after {
            display: none;
        }

        .faqs-accordion .accordion-item .accordion-header .accordion-button::before {
            content: "\eab2";
            display: inline-block;
            padding: 10px;
            border-radius: 50%;
            font: normal normal normal 24px/1 IcoFont;
            font-size: 21px;
            color: #fff;
            background: #0f0bd4;
            position: absolute;
            right: 20px;
            transform: rotate(180deg);
            transition: all 0.3s ease-in-out;
        }

        .faqs-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
            /* background-color: #302dda;
            color: #ffffff;*/
            background-color: #f5f6fa;
            color: #302dda;
        }

.gslide-description p {
    font-size: 18px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
}

.description-right {
    max-width: 600px !important;
}

.chapter-slider .swiper-slide {
    margin-top: 15px;
    text-align: center;
    padding: 5px;
    background: #ffffff;
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
    margin-bottom: 5px;
    border-radius: 5px;
}

p.first-letter::first-letter {
    margin-right: 12px;
    line-height: 0.8;
    float: left;
    clear: both;
    font-size: 60px;
    font-family: "Philosopher", sans-serif;
    color: #c27b7f;
    text-transform: uppercase;
}

.bg-one .chapter__item {
    background-color: #ffffff;
}

.author__image {
    position: relative;
    width: 100%;
    padding-left: 20px;
}

    .author__image:after {
        content: "";
        position: absolute;
        left: 0;
        top: 20px;
        z-index: 1;
        background: #c27b7f;
        border-radius: inherit;
        height: 100%;
        width: 90%;
        border-radius: 5px;
    }

    .author__image img {
        position: relative;
        width: 95%;
        z-index: 2;
        border-radius: 5px;
    }

@media only screen and (max-width: 991px) {
    .author__image img {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .author__content {
        margin-top: 40px;
    }
}

.author__content__desc {
    padding-left: 0;
}

    .author__content__desc li {
        list-style: none;
        margin-bottom: 8px;
    }

        .author__content__desc li i {
            color: #c27b7f;
            font-size: 20px;
            margin-right: 10px;
        }

.authorv2__list h4 {
    margin-bottom: 0px;
}

.authorv2__image {
    position: relative;
    width: 100%;
    padding: 10px;
    background-color: #c27b7f;
    border-radius: 5px;
}

    .authorv2__image img {
        border-radius: 5px;
    }

.authorv3__content {
    padding: 85px 60px;
    z-index: 1;
    margin-top: 40px;
    margin-left: -50px;
    background: #f5ebe6;
}

.authorv3__content--badge {
    color: #c27b7f;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

@media only screen and (max-width: 1199px) {
    .authorv3__content {
        padding: 40px 30px;
    }
}

@media only screen and (max-width: 991px) {
    .authorv3__content {
        padding: 30px;
        margin-left: 0;
    }
}

.bg-one .authorv3__content {
    background-color: #ffffff;
}

.testi-row {
    overflow: hidden;
}

    .testi-row .clients-slider {
        padding: 0 0 1px 16px;
    }

    .testi-row .swiper-pagination-bullet {
        background-color: #302dda;
        opacity: 0.3;
        padding: 5px;
    }

    .testi-row .swiper-pagination-bullet-active {
        opacity: 1;
        padding: 6px;
    }

    .testi-row .testi-card {
        box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
        border: none;
        margin-top: 15px;
        background-color: #edecfd;
    }

        .testi-row .testi-card img {
            width: 60px;
            border-radius: 50%;
        }

        .testi-row .testi-card p {
            font-style: italic;
        }

    .testi-row .testi-card__quotation {
        text-align: center;
    }

        .testi-row .testi-card__quotation i {
            font-size: 35px;
            color: #0f0bd4;
        }

    .testi-row .testi-card__user-info {
        display: flex;
        align-items: center;
        justify-content: center;
        border-top: 1px solid #c27b7f;
    }

        .testi-row .testi-card__user-info img {
            margin-right: 20px;
        }

.testimonialv2 .testi-row .testi-card img {
    width: 90px;
}

.testimonialv2__card-title {
    font-size: 25px;
    margin-top: 20px;
}

.testimonialv2__card-subtitle {
    font-size: 16px;
    color: #c27b7f;
}

.bg-one .testi-card {
    background-color: #ffffff;
}

.bg-one .testi-card__user-info {
    border-top: 1px solid #eff0f7;
}

.error {
    color: #ff3333;
    display: block;
    margin-bottom: 10px;
    text-align: left;
}

input.error {
    margin-bottom: 5px;
}

textarea.error {
    margin-bottom: 5px;
}

.email-success,
.email-failed,
.email-loading,
.success-msg,
.error-msg {
    text-align: center;
    padding: 10px;
    display: none;
}

    .email-loading img {
        width: 20px;
        margin: 0 auto;
    }

    .email-failed .icon {
        font-size: 20px;
        position: relative;
        top: 5px;
    }

    .email-failed .icon,
    .email-success .icon,
    .error-msg .icon,
    .success-msg .icon {
        font-size: 20px;
        position: relative;
        top: 2px;
    }

.bg-one .contact-form-box.publisher-submission {
    background-color: #edecfd !important;
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06) !important;
    border-radius: 15px !important;
}

.contact-form-box {
    padding: 40px;
    background-color: #edecfd;
}

@media only screen and (max-width: 991px) {
    .contact-form-box {
        padding: 20px;
    }
}

.contact-form-box form {
    text-align: center;
}

/*.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    width: 100%;
    border: none;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #ffffff;
    border-bottom: 2px solid transparent;
    border: 1px solid #0f0bd4;
}*/
/*.contact-form-box .contact-name,
.contact-form-box .contact-subject,
.contact-form-box select {
    width: 100%;
    border: none;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #ffffff;
    border-bottom: 2px solid transparent;
    border: 1px solid #0f0bd4;
}*/

    .contact-form-box .contact-name:focus,
    .contact-form-box .contact-subject:focus,
    .contact-form-box select:focus {
        outline: none;
        border: none;
        border-bottom: 2px solid #0f0bd4;
    }

.lable-text {
    text-align: left;
    font-family: "Philosopher", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 8px;
}

.contact-form-box textarea {
    min-height: 120px;
    transition: all 0.3s ease-in-out;
}

.contact__address {
    height: 100%;
    background-color: #edecfd;
}

    .contact__address iframe {
        width: 100%;
        height: 250px;
        padding-bottom: 20px;
    }

.contact__address__content {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .contact__address__content li {
        margin-bottom: 15px;
    }

        .contact__address__content li a {
            display: block;
            color: #876585;
        }

            .contact__address__content li a:hover {
                color: #302dda;
            }

        .contact__address__content li span {
            font-weight: 700;
            font-family: "Philosopher", sans-serif;
            display: block;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

.contactv4__content li {
    list-style: none;
    display: flex;
    align-items: center;
}

    .contactv4__content li:not(:last-child) {
        padding-bottom: 20px;
    }

    .contactv4__content li i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 5px;
        background-color: #c27b7f;
        color: #ffffff;
        transition: all 0.5s;
        box-shadow: 3px 3px #876585;
        font-size: 20px;
        margin-right: 20px;
    }

        .contactv4__content li i:hover {
            background-color: #876585;
            box-shadow: none;
        }

@media screen and (max-width: 320px) {
    .contactv4__content li i {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .swiper-wrapper {
        width: 382%;
    }

    .testi-row .clients-slider {
        padding: 0 0 50px 281px;
    }
}

.bg-one .contact-form-box {
    background-color: white;
}

.bg-one {
    /*background-color: #edecfd;*/
    background-color: #f0effa80;
}

    .bg-one .contact__address {
        background-color: white;
    }

.books__book {
    box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
    padding: 15px;
    border-radius: 5px;
    background-color: #ffffff;
    cursor: pointer;
}

    .books__book img {
        border-radius: 5px;
        margin-bottom: 20px;
    }

.books__book__subtitle {
    margin-bottom: 0;
}

.books__book__title {
    margin-bottom: 15px;
    color: #0f0bd4;
}

.books__book span {
    font-weight: 700;
    color: #2f4858;
}

.books__book ul {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
}

    .books__book ul li {
        list-style: none;
        color: #ffbb1c;
    }

        .books__book ul li i {
            font-size: 20px;
        }

.booksv1__img:not(:last-child) {
    margin-bottom: 20px;
}

.booksv1__img img {
    border-radius: 5px;
}

.booksv1__contnet--badge {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #c27b7f;
    font-weight: 600;
}

.booksv1__item {
    display: grid;
    grid-template-columns: auto 1fr;
}

.booksv1__item--icon {
    width: 60px;
    height: 60px;
    background-color: #c27b7f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px #876585;
    transition: 0.3s;
    font-size: 35px;
}

.booksv1__item--text {
    margin-left: 20px;
}

    .booksv1__item--text h3 {
        transition: 0.3s;
    }

.booksv1__item:hover .booksv1__item--text h3 {
    color: #c27b7f;
}

.booksv1__item:hover .booksv1__item--icon {
    box-shadow: 0px 0px transparent;
}

.booksv1__item:not(:last-child) {
    margin-bottom: 25px;
}

.pricing__item {
    background-color: #f5ebe6;
    padding: 40px 50px;
    text-align: center;
    transition: 0.3s;
}

    .pricing__item:hover {
        box-shadow: 5px 5px #876585;
    }

    .pricing__item.active {
        box-shadow: 5px 5px #876585;
    }

@media only screen and (max-width: 991px) {
    .pricing__item {
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .pricing__item {
        padding: 40px 50px;
    }

    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        background: #edecfd;
        padding: 20px;
        max-width: 80%;
    }
}

.pricing__price {
    font-size: 40px;
}

.pricing__list {
    padding-left: 0;
    margin: 40px 0;
}

    .pricing__list li {
        list-style: none;
        padding: 10px 0;
    }

        .pricing__list li:not(:last-child) {
            border-bottom: 1px solid #c27b7f;
        }

        .pricing__list li i {
            font-size: 20px;
            margin-right: 15px;
        }

.bg-one .pricing__item {
    background-color: #ffffff;
}

.bg-one .pricing__list li:not(:last-child) {
    border-bottom: 1px solid #eff0f7;
}

.counters__stats li {
    list-style: none;
    width: 20%;
    padding: 0 15px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 1199px) {
    .counters__stats li {
        width: 33.333%;
    }
}

@media only screen and (max-width: 991px) {
    .counters__stats li {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .counters__stats li {
        width: 100%;
    }

    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        background: #edecfd;
        padding: 20px;
        max-width: 80%;
    }
}

.counters__stats-box {
    background-color: #f5ebe6;
    width: 100%;
    height: 100%;
    padding: 70px 20px 20px;
    position: relative;
    box-shadow: 5px 5px #876585;
    overflow: hidden;
    transition: all 0.3s;
}

    .counters__stats-box:hover {
        box-shadow: none;
    }

@media only screen and (max-width: 767px) {
    .counters__stats-box {
        padding: 30px 30px;
    }

    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        background: #edecfd;
        padding: 20px;
        max-width: 80%;
    }
}

.counters__stats-box__number {
    font-size: 42px;
    color: #876585;
    font-weight: 700;
}

.counters__stats-icon {
    position: absolute;
    font-size: 120px;
    top: -45px;
    right: -15px;
    opacity: 0.3;
}

    .counters__stats-icon i {
        color: #c27b7f;
        opacity: 0.5;
    }

.bg-one .counters__stats-box {
    background-color: #ffffff;
}

.gallery__menu ul .active {
    background-color: #c27b7f;
    color: #ffffff;
}

.gallery__menu ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0px;
    padding: 0px;
}

    .gallery__menu ul li {
        padding: 8px 20px;
        border: 1px solid #c27b7f;
        color: #2f4858;
        border-radius: 3px;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        line-height: 26px;
        cursor: pointer;
        transition: 0.5s;
    }

        .gallery__menu ul li:hover {
            background-color: #876585;
            color: #ffffff;
            border: 1px solid #876585;
        }

.gallery__area {
    padding-top: 30px;
}

.gallery__item img {
    width: 100%;
    margin-bottom: 22px;
    border-radius: 17px;
    cursor: pointer;
}

.gallery-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.gallery-title-wrapper--content h2 {
    margin-bottom: 0px;
}

    .gallery-title-wrapper--content h2 a {
        color: #2f4858;
    }

.gallery-title-wrapper p {
    color: #676768;
    margin: 0px;
}

.gallery__btn {
    border: 1px solid #c27b7f;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    background-color: transparent;
    margin-right: 16px;
    color: #2f4858;
}

    .gallery__btn:hover {
        color: #ffffff;
        background-color: #876585;
    }

    .gallery__btn i {
        font-size: 25px;
        rotate: 40deg;
    }

.gallery__thumb {
    margin-bottom: 20px;
}

    .gallery__thumb img {
        width: 100%;
    }

.gallery .modal-dialog {
    max-width: 1200px;
}

.gallery .modal-content {
    border-radius: 0px;
    max-width: fit-content;
    margin: 0 auto;
    box-shadow: 5px 5px var(--secondary);
}

.gallery .modal-main {
    max-width: 750px;
    position: relative;
    padding: 50px;
}

@media only screen and (max-width: 767px) {
    .gallery .modal-main {
        padding: 15px;
    }

    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        background: #edecfd;
        padding: 20px;
        max-width: 80%;
    }
}

.gallery .modal .close-btn {
    border: 1px solid #eff0f7;
    background-color: #2f4858;
    color: #ffffff;
    height: 32px;
    width: 32px;
    margin-right: 10px;
    margin-top: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    transition: 0.4s;
    position: absolute;
    right: 0px;
    top: 0px;
}

    .gallery .modal .close-btn:hover {
        color: #ffffff;
        background-color: #876585;
    }

@media only screen and (max-width: 767px) {
    .gallery .modal .client__meta {
        margin: 5px 0;
    }

    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        background: #edecfd;
        padding: 20px;
        max-width: 80%;
    }
}

.gallery .modal .client__meta p {
    margin: 0px;
}

.gallery .modal .client__meta h5 {
    margin: 0px;
}

.gallery .modal .hr {
    color: #676768;
    margin: 20px 0;
}

.gallery__details p {
    margin: 0px;
}

.gallery__details ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

    .gallery__details ul li {
        display: flex;
        gap: 22px;
        margin-top: 10px;
    }

        .gallery__details ul li i {
            color: #676768;
            font-size: 18px;
            margin-top: 7px;
        }

.bg-one.gallery .modal-content {
    background-color: #f5ebe6;
}

.blog__single-post {
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
    border-radius: 5px;
    overflow: hidden;
}

    .blog__single-post:hover .blog__single-post__image img {
        transform: scale(1.1);
    }

.blog__single-post__image {
    overflow: hidden;
}

    .blog__single-post__image img {
        transition: 0.3s;
    }

.blog__single-post__body {
    padding: 30px;
    background-color: #ffffff;
}

@media only screen and (max-width: 991px) {
    .blog__single-post__body {
        padding: 20px;
    }
}

.blog__single-post__content {
    padding-bottom: 15px;
}

    .blog__single-post__content h2 a {
        color: #c27b7f;
    }

        .blog__single-post__content h2 a:hover {
            color: #876585;
        }

.blog__single-post .blog-metainfo {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 0;
}

    .blog__single-post .blog-metainfo li {
        display: flex;
        gap: 5px;
        align-items: center;
    }

        .blog__single-post .blog-metainfo li a:hover {
            color: #c27b7f;
        }

        .blog__single-post .blog-metainfo li i {
            color: #c27b7f;
        }

.blog__single-post__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog__meta {
    display: flex;
    gap: 5px;
    align-items: center;
    border-top: 1px solid #eff0f7;
    padding-top: 15px;
}

    .blog__meta i {
        color: #c27b7f;
    }

.cta {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1100%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='rgba(47%2c 72%2c 88%2c 1)'%3e%3c/rect%3e%3cpath d='M419.48 151.11 a103.55 103.55 0 1 0 207.1 0 a103.55 103.55 0 1 0 -207.1 0z' fill='rgba(194%2c 123%2c 127%2c 0.4)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M-44.1865776293487 341.2680566902807L61.09740790869498 322.70364940340374 42.533000621818054 217.41966386536006-62.75098491622563 235.984071152237z' fill='rgba(194%2c 123%2c 127%2c 0.4)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M1376.4193465754347 289.23934122062434L1490.2349756643416 236.1662417587381 1437.1618762024555 122.3506126698311 1323.3462471135485 175.42371213171734z' fill='rgba(194%2c 123%2c 127%2c 0.4)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M640.2261329134633 406.249774940057L634.014917077496 317.42525022148425 545.1903923589232 323.63646605745157 551.4016081948905 412.46099077602435z' fill='rgba(194%2c 123%2c 127%2c 0.4)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M710.15 385.38 a115.45 115.45 0 1 0 230.9 0 a115.45 115.45 0 1 0 -230.9 0z' fill='rgba(194%2c 123%2c 127%2c 0.4)' class='triangle-float1'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1100'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
}

.cta__inner {
    text-align: center;
    padding: 40px;
    border-radius: 5px;
}

.cta-form-box {
    margin-top: 30px;
}

    .cta-form-box form {
        text-align: center;
    }

    .cta-form-box input {
        height: 60px;
        width: 100%;
        border: none;
        padding: 10px;
        margin-bottom: 15px;
        background-color: #ffffff;
        border-bottom: 2px solid transparent;
    }

        .cta-form-box input:focus {
            outline: none;
            border: none;
            border-bottom: 2px solid #c27b7f;
        }

    .cta-form-box button {
        height: 60px;
    }

.cta2 {
    background-image: url(../images/ctav5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.cta2__wrapper {
    background-color: #f5ebe6;
    padding: 40px;
    border-radius: 10px;
}

@media only screen and (max-width: 991px) {
    .cta2__wrapper {
        padding: 20px;
    }
}

.cta2 form input {
    border: 0;
    border-radius: 5px;
    box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
    padding: 15px 15px;
    width: 300px;
}

    .cta2 form input:focus {
        outline: none;
    }

@media only screen and (max-width: 991px) {
    .cta2 form input {
        width: 250px;
    }
}

@media only screen and (max-width: 575px) {
    .cta2 form input {
        width: auto;
    }

    .register-div {
        flex-direction: column;
        border-top-right-radius: 0%;
        border-bottom-right-radius: 0%;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }

    .register-welcome {
        width: 100%;
        order: -1;
        padding: 20px 0;
        /* border-bottom: 1px solid #ccc;*/
    }

    .register-box {
        width: 100%;
    }
}

.cta2 form button {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

@media screen and (max-width: 450px) {
    .cta2 form input {
        width: 100%;
        border-top-right-radius: 5px !important;
        border-bottom-right-radius: 5px !important;
    }

    .cta2 form button {
        border-top-left-radius: 5px !important;
        border-bottom-left-radius: 5px !important;
        width: 100%;
        margin-top: 20px;
    }

    .swiper-wrapper {
        width: 100% !important;
    }

    .testi-row .clients-slider {
        padding: 0 0 0px 0px;
    }
}

.ctav3__content {
    text-align: center;
    position: relative;
}

    .ctav3__content h4 {
        line-height: 1.5;
    }

    .ctav3__content h2 a {
        color: #c27b7f;
    }

        .ctav3__content h2 a:hover {
            color: #876585;
        }

.ctav3__content__icon {
    position: absolute;
    top: 50%;
    transform: translate(50%, -50%);
}

    .ctav3__content__icon i {
        opacity: 0.3;
        color: #c27b7f;
        font-size: 150px;
    }

.ctav4 {
    background-image: url(../images/ctav4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .ctav4 {
        text-align: center;
    }

    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        background: #edecfd;
        padding: 20px;
        max-width: 80%;
    }
}

.ctav4:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    background-color: #2f4858;
}

.ctav4__content {
    z-index: 1;
}

    .ctav4__content h3 {
        color: #ffffff;
    }

.ctav4__video-btn {
    position: relative;
    top: 50%;
}

@media only screen and (max-width: 767px) {
    .ctav4__video-btn {
        padding-top: 70px;
    }

    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        background: #edecfd;
        padding: 20px;
        max-width: 80%;
    }
}

.ctav5 {
    background-image: url(../images/ctav5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

    .ctav5:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.5;
        width: 100%;
        height: 100%;
        background-color: #2f4858;
    }

.ctav5__content {
    z-index: 1;
}

    .ctav5__content h2 {
        color: #ffffff;
        margin-bottom: 25px;
    }

    .ctav5__content ul {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        justify-content: center;
        gap: 8px;
        margin-bottom: 28px;
    }

        .ctav5__content ul li {
            list-style: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #f5ebe6;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

            .ctav5__content ul li i {
                color: #2f4858;
            }

    .ctav5__content p {
        color: #ffffff;
    }

.chapter__preview2-content {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.chapter__preview2-container {
    display: flex;
    width: 90vw;
}

@media only screen and (max-width: 991px) {
    .chapter__preview2-container {
        flex-direction: column;
        display: block;
    }
}

.chapter__preview2 .panel {
    background-color: #f5ebe6;
    background-size: cover;
    background-position: 10000px;
    background-repeat: no-repeat;
    height: 60vh;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    flex: 0.5;
    margin: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px #876585;
    transition: all 0.5s;
}

@media only screen and (max-width: 991px) {
    .chapter__preview2 .panel {
        height: 60px;
    }
}

.chapter__preview2 .panel.active a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.chapter__preview2 .panel h3 {
    font-size: 24px;
    padding: 10px;
    margin: 0;
    opacity: 1;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

@media only screen and (max-width: 991px) {
    .chapter__preview2 .panel h3 {
        writing-mode: inherit;
    }
}

.chapter__preview2 .panel.active {
    background-position: center;
    flex: 5;
    box-shadow: none;
}

@media only screen and (max-width: 991px) {
    .chapter__preview2 .panel.active {
        height: 70vh;
    }
}

@media only screen and (max-width: 767px) {
    .chapter__preview2 .panel.active {
        height: 60vh;
    }

    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        background: #edecfd;
        padding: 20px;
        max-width: 80%;
    }
}

.chapter__preview2 .panel.active h3 {
    opacity: 0;
}

.chapter__preview2 .cover-panel {
    height: 70vh;
    flex: 0.8;
}

@media only screen and (max-width: 991px) {
    .chapter__preview2 .cover-panel {
        height: 60px;
    }
}

.bg-one .chapter__preview2 .panel {
    background-color: #ffffff;
    border: 5px solid #ffffff;
}

.gslide-media.gslide-image {
    background-color: #f5ebe6;
}

.achievement__item {
    box-shadow: 5px 5px #876585;
    background-color: #f5ebe6;
}

    .achievement__item img {
        height: 100%;
        object-fit: cover;
    }

.achievement .card {
    box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
    border: none;
}

    .achievement .card:hover {
        box-shadow: 4px 0px 25px 10px rgba(1, 6, 33, 0.06);
    }

.achievement__content {
    position: relative;
    overflow: hidden;
    padding: 30px 10px 10px 0px;
}

.achievement__content__icon i {
    position: absolute;
    opacity: 0.3;
    font-size: 80px;
    top: 0;
    right: 0;
}

.achievement__content h3 {
    margin-bottom: 20px;
}

.achievement__content p {
    margin-bottom: 0;
}

.bg-one .achievement__item {
    background-color: #ffffff;
}

.event .card {
    border: none;
    margin-right: 1px;
    transition: all 0.3s ease;
    padding: 40px 20px;
    background-color: #f5ebe6;
}

    .event .card:hover {
        box-shadow: 0px 20px 40px 0px rgba(1, 6, 33, 0.06);
        z-index: 10;
    }

        .event .card:hover .card-body .date {
            opacity: 1;
        }

    .event .card .card-body {
        padding: 0px;
    }

        .event .card .card-body .date {
            font-size: 60px;
            font-family: "Philosopher", sans-serif;
            color: #2f4858;
            opacity: 0.5;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-bottom: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

            .event .card .card-body .date span {
                font-size: 24px;
                margin-top: 8px;
                font-weight: 400;
            }

.events__single-event {
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
}

    .events__single-event:hover .event__single-event__image img {
        transform: scale(1.1);
    }

.events__single-event__image {
    overflow: hidden;
}

    .events__single-event__image img {
        transition: 0.3s;
    }

.events__single-event__body {
    padding: 30px;
}

@media only screen and (max-width: 991px) {
    .events__single-event__body {
        padding: 20px;
    }
}

.events__single-event__content {
    padding-bottom: 15px;
}

    .events__single-event__content h2 a {
        color: #c27b7f;
    }

        .events__single-event__content h2 a:hover {
            color: #876585;
        }

.events__single-event__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eff0f7;
    padding-top: 15px;
}

    .events__single-event__meta i {
        font-size: 20px;
        color: #c27b7f;
        cursor: pointer;
    }

    .events__single-event__meta a {
        display: flex;
        text-transform: uppercase;
        align-items: center;
        font-weight: 400;
    }

    .events__single-event__meta ul {
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;
    }

        .events__single-event__meta ul li {
            list-style: none;
        }

.bg-one .card {
    background-color: #ffffff;
}

.footer__menu {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    display: inline;
}

    .footer__menu li {
        display: inline-block;
    }

        .footer__menu li a {
            margin-left: 10px;
            margin-right: 10px;
        }

            .footer__menu li a:hover {
                color: #c27b7f;
            }

.footer__copyright i {
    animation: footerHeart 1s infinite;
}

.footer__topv2 .logo {
    margin-bottom: 10px;
    margin-left: -109px;
}

.footer__topv2 .title {
    font-weight: 600;
    color: #0f0bd4;
}

.footer__topv2 .link {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0;
    padding: 0;
}

    .footer__topv2 .link li {
        list-style: none;
        margin-bottom: 10px;
        font-weight: 400;
    }

.footer__topv2 .info {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: start;
    flex-direction: column;
}

    .footer__topv2 .info li {
        display: flex;
        align-items: center;
        gap: 8px;
        list-style: none;
        margin-bottom: 10px;
        font-weight: 400;
    }

.footer__topv2 .social-icon {
    margin-top: 20px;
}

.footer__topv2 form input {
    border: 0;
    border-radius: 0px;
    box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
    padding: 15px 15px;
    width: 100%;
    margin-bottom: 10px;
}

    .footer__topv2 form input:focus {
        outline: none;
    }

.footer__topv2 form button {
    width: 100%;
}

.blog-title {
    text-align: center;
}

    .blog-title ul {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .blog-title ul li {
            list-style: none;
            font-weight: 500;
        }

            .blog-title ul li:not(:last-child) {
                margin-right: 15px;
            }

            .blog-title ul li a {
                color: #c27b7f;
            }

                .blog-title ul li a:hover {
                    color: #876585;
                }

.blog__pagination {
    display: flex;
    justify-content: center;
}

    .blog__pagination .page-link {
        color: #c27b7f;
    }

        .blog__pagination .page-link:hover {
            background-color: #876585;
            color: #ffffff;
        }

        .blog__pagination .page-link:focus {
            box-shadow: none;
            background-color: #c27b7f;
            color: #ffffff;
        }

    .blog__pagination .pagination {
        margin-top: 20px;
    }

.all-blog2__area {
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
    background-color: #ffffff;
}

    .all-blog2__area:not(:last-child) {
        margin-bottom: 30px;
    }

.all-blog2__area__image {
    margin-bottom: 20px;
    border-radius: 5px;
}

    .all-blog2__area__image img {
        width: 100%;
    }

.all-blog2__area__menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .all-blog2__area__menu ul li {
        list-style: none;
        margin-right: 15px;
    }

.all-blog2__sidebar {
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
    background-color: #ffffff;
}

    .all-blog2__sidebar form {
        border-width: 1px;
        border-style: solid;
        border-color: #eff0f7;
        display: flex;
        align-items: center;
        border-radius: 5px;
        margin-bottom: 30px;
    }

        .all-blog2__sidebar form input {
            border: none;
            padding: 5px;
            width: 100%;
        }

            .all-blog2__sidebar form input:focus {
                outline: none;
            }

        .all-blog2__sidebar form i {
            background-color: #c27b7f;
            padding: 15px;
            color: #ffffff;
            cursor: pointer;
        }

.all-blog2__sidebar__categories ul {
    margin: 0;
    padding: 0;
}

    .all-blog2__sidebar__categories ul li {
        list-style: none;
        margin-bottom: 10px;
    }

        .all-blog2__sidebar__categories ul li a:hover {
            color: #c27b7f;
        }

.all-blog2__sidebar__latest-news__item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .all-blog2__sidebar__latest-news__item img {
        margin-right: 15px;
    }

.all-blog2__sidebar__latest-news__item__content .title a:hover {
    color: #c27b7f;
}

.all-blog2__sidebar__archive ul {
    margin: 0;
    padding: 0;
}

    .all-blog2__sidebar__archive ul li {
        list-style: none;
        margin-bottom: 10px;
    }

        .all-blog2__sidebar__archive ul li a:hover {
            color: #c27b7f;
        }

.all-blog2__sidebar__popular-tags ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

    .all-blog2__sidebar__popular-tags ul li {
        list-style: none;
        padding: 5px 10px;
        border-radius: 10px;
        background-color: #f5ebe6;
        transition: all 0.5s;
        margin-bottom: 10px;
    }

        .all-blog2__sidebar__popular-tags ul li:not(:last-child) {
            margin-right: 8px;
        }

        .all-blog2__sidebar__popular-tags ul li:hover {
            background-color: #c27b7f;
        }

            .all-blog2__sidebar__popular-tags ul li:hover a {
                color: #ffffff;
            }

.all-blog2__sidebar .item-border {
    position: relative;
    border-bottom: 1px solid #eff0f7;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

    .all-blog2__sidebar .item-border::before {
        content: "";
        background: url(../images/blog/sidebar-icon.png) no-repeat #fff center;
        width: 16px;
        height: 16px;
        position: absolute;
        left: 50%;
        margin-left: -20px;
        bottom: -8px;
        padding: 0 20px;
    }

.single-blog__metainfo {
    margin: 0;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

    .single-blog__metainfo li {
        list-style: none;
        display: flex;
        align-items: center;
    }

        .single-blog__metainfo li:not(:last-child) {
            margin-right: 15px;
        }

        .single-blog__metainfo li i {
            margin-right: 5px;
            font-size: 16px;
            color: #c27b7f;
        }

        .single-blog__metainfo li a {
            color: #2f4858;
        }

            .single-blog__metainfo li a:hover {
                color: #c27b7f;
            }

.single-blog__title {
    margin-bottom: 13px;
}

.single-blog__para {
    margin-bottom: 25px;
}

.single-blog__para__quote {
    position: relative;
    padding: 35px;
    text-align: left;
    margin: 30px 0;
    background-color: #f5ebe6;
    display: flex;
    align-items: center;
}

.single-blog__para__quote__icon {
    width: 70px;
    height: 100px;
}

    .single-blog__para__quote__icon i {
        color: #c27b7f;
        font-size: 68px;
        line-height: 0.8;
        opacity: 0.7;
    }

.single-blog__para__quote__text {
    width: calc(100% - 100px);
    margin-left: 30px;
    text-align: center;
}

.single-blog__para ol {
    padding: 20px;
}

    .single-blog__para ol li {
        padding-left: 3px;
        margin-bottom: 15px;
    }

.single-blog__para .content-feature-list {
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 0;
}

    .single-blog__para .content-feature-list li {
        list-style: none;
        margin: 0 0 18px;
        position: relative;
    }

        .single-blog__para .content-feature-list li i {
            color: #c27b7f;
            margin-right: 10px;
        }

.single-blog__share {
    display: flex;
    align-items: center;
    gap: 16px;
}

.single-blog__comment {
    margin-top: 30px;
}

.single-blog__comment__title {
    margin-bottom: 30px;
}

    .single-blog__comment__title h4 {
        margin: 0;
    }

.single-blog__comment__item {
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    border-radius: 5px;
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
}

.single-blog__comment__item__content {
    margin-left: 20px;
}

.single-blog__comment .comment-text p {
    margin: 0;
}

.single-blog__comment__form {
    margin-top: 30px;
    padding: 25px;
}

    .single-blog__comment__form form input,
    .single-blog__comment__form form textarea {
        width: 100%;
        border: none;
        padding: 10px;
        margin-bottom: 15px;
        background-color: #ffffff;
        border-bottom: 2px solid transparent;
    }

        .single-blog__comment__form form input:focus,
        .single-blog__comment__form form textarea:focus {
            outline: none;
            border: none;
            border-bottom: 2px solid #c27b7f;
        }

    .single-blog__comment__form form textarea {
        min-height: 120px;
        transition: all 0.3s ease-in-out;
    }

.single-blog__category {
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f5ebe6;
    gap: 10px;
}

    .single-blog__category ul {
        padding: 0;
        margin-bottom: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

        .single-blog__category ul li {
            list-style-type: none;
        }

            .single-blog__category ul li a {
                background-color: #c27b7f;
                padding: 3px 10px;
                border-radius: 30px;
                color: #ffffff;
            }

.bg-one .single-blog__para__quote,
.bg-one .single-blog__share,
.bg-one .single-blog__comment__item,
.bg-one .single-blog__comment__form {
    background-color: #ffffff;
}

    .bg-one .single-blog__para__quote input,
    .bg-one .single-blog__para__quote textarea,
    .bg-one .single-blog__share input,
    .bg-one .single-blog__share textarea,
    .bg-one .single-blog__comment__item input,
    .bg-one .single-blog__comment__item textarea,
    .bg-one .single-blog__comment__form input,
    .bg-one .single-blog__comment__form textarea {
        background-color: #f5ebe6;
    }

.single-event__area {
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
    background-color: #ffffff;
}

    .single-event__area:not(:last-child) {
        margin-bottom: 30px;
    }

.single-event__area__image {
    margin-bottom: 20px;
    border-radius: 5px;
}

.single-event__area__menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .single-event__area__menu ul li {
        list-style: none;
        margin-right: 15px;
    }

.single-event__sidebar {
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
    background-color: #ffffff;
}

.single-event__sidebar__details ul {
    margin: 0;
    padding: 0;
}

    .single-event__sidebar__details ul li {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: start;
    }

        .single-event__sidebar__details ul li:not(:last-child) {
            margin-bottom: 25px;
        }

        .single-event__sidebar__details ul li i {
            font-size: 30px;
            padding-right: 20px;
            color: #c27b7f;
        }

        .single-event__sidebar__details ul li .para-1 {
            font-size: 20px;
            line-height: 1.2;
            margin: 0;
            color: #2f4858;
        }

        .single-event__sidebar__details ul li .para-2 {
            font-size: 15px;
            line-height: 1.2;
            margin: 0;
        }

.single-event__sidebar .item-border {
    position: relative;
    border-bottom: 1px solid #eff0f7;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

    .single-event__sidebar .item-border::before {
        content: "";
        background: url(../images/blog/sidebar-icon.png) no-repeat #fff center;
        width: 16px;
        height: 16px;
        position: absolute;
        left: 50%;
        margin-left: -20px;
        bottom: -8px;
        padding: 0 20px;
    }

:root {
    /*  --color-primary: #006289;*/
    --color-secondary: #f3f4f6;
    --color-tertiary: #dee2e6;
    --color-light: #fff;
    --color-dark: #0f172a;
    --color-dark-primary: #0d1321;
    --color-dark-secondary: #161e2e;
    --color-dark-tertiary: #444;
    --color-border: #3c3c3c;
    --color-danger: #ff0000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--color-dark);
}

.ask .ask-tab-wrapper {
    padding: 80px 0;
}

.ask .ask-accordion {
    padding: 80px 0;
}

.ask__container {
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
}

.ask__wrapper {
    display: grid;
    grid-template-columns: 45% 1fr;
    grid-gap: 20px;
}

@media screen and (max-width: 850px) {
    .ask__wrapper {
        display: flex;
        flex-direction: column;
    }
}

.ask__tab__search {
    position: relative;
    margin-bottom: 15px;
}

    .ask__tab__search input {
        width: 100%;
        padding: 10px 15px;
        border: none;
        border: 1px solid var(--color-tertiary);
        font-size: 16px;
        border-radius: 4px;
        font-family: "Poppins", sans-serif;
    }

        .ask__tab__search input:focus {
            outline: none;
        }

    .ask__tab__search span {
        position: absolute;
        top: 11px;
        right: 10px;
        cursor: pointer;
        color: var(--color-dark);
    }

.ask__tab__questions {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    border: 1px solid var(--color-tertiary);
    overflow: auto;
    max-height: 340px;
    scrollbar-width: thin;
}

    .ask__tab__questions::-webkit-scrollbar {
        width: 0.5em;
        height: 0.5em;
    }

    .ask__tab__questions::-webkit-scrollbar-track {
        background-color: var(--color-tertiary);
        margin-block: 0.5em;
    }

    .ask__tab__questions::-webkit-scrollbar-thumb {
        background: var(--color-primary);
    }

        .ask__tab__questions::-webkit-scrollbar-thumb:hover {
            opacity: 0.2;
        }

@media screen and (max-width: 850px) {
    .ask__tab__questions {
        max-height: 200px;
    }
}

.ask__tab__question {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    position: relative;
    background-color: var(--color-light);
}

    .ask__tab__question::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 10;
        width: 100%;
        height: 100%;
    }

    .ask__tab__question:not(:last-child) {
        border-bottom: 1px solid var(--color-tertiary);
    }

    .ask__tab__question:hover {
        background-color: var(--color-secondary);
    }

    .ask__tab__question.ask-active {
        background-color: var(--color-tertiary);
    }

.ask__tab__question--text {
    margin: 0;
    color: var(--color-dark);
    font-size: 16px;
}

.ask__tab__content {
    display: none;
    height: 400px;
}

    .ask__tab__content.ask-active {
        display: block;
    }

@media screen and (max-width: 850px) {
    .ask__tab__content {
        max-height: 400px;
    }

        .ask__tab__content video {
            max-height: 400px;
        }
}

@media screen and (max-width: 650px) {
    .ask__tab__content {
        max-height: 320px;
        height: auto;
    }
}

.ask__tab__content video {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.ask__tab__content p {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--color-tertiary);
    margin: 0;
    color: var(--color-dark);
    text-align: justify;
    height: 400px;
    overflow: auto;
    scrollbar-width: thin;
    background-color: var(--color-light);
}

@media screen and (max-width: 850px) {
    .ask__tab__content p {
        height: 300px;
    }
}

.ask__tab__content p::-webkit-scrollbar {
    width: 0.5em;
    height: 0.5em;
}

.ask__tab__content p::-webkit-scrollbar-track {
    background-color: var(--color-tertiary);
    margin-block: 0.5em;
}

.ask__tab__content p::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

    .ask__tab__content p::-webkit-scrollbar-thumb:hover {
        opacity: 0.2;
    }

.ask__audio {
    padding: 30px;
    padding-top: 40px;
    height: 400px;
    border-radius: 5px;
    background-color: var(--color-tertiary);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 850px) {
    .ask__audio {
        padding: 20px;
        padding-top: 30px;
        height: 300px;
    }
}

.ask__audio .details {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.ask__audio .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ask__audio .active {
    color: var(--color-dark);
}

.ask__audio .playpause-track {
    padding-top: 10px;
    cursor: pointer;
    color: var(--color-primary);
    transition: all 0.5s;
}

    .ask__audio .playpause-track:hover {
        color: var(--color-dark);
    }

.ask__audio .slider_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ask__audio .seek_slider,
.ask__audio .volume_slider {
    appearance: none;
    height: 5px;
    background: var(--color-primary);
    transition: opacity 0.2s;
    cursor: pointer;
}

    .ask__audio .seek_slider:hover,
    .ask__audio .volume_slider:hover {
        opacity: 1;
    }

.ask__audio .seek_slider {
    width: 60%;
}

.ask__audio .volume_slider {
    width: 30%;
}

    .ask__audio .seek_slider::-webkit-slider-thumb,
    .ask__audio .volume_slider::-webkit-slider-thumb {
        appearance: none;
        width: 15px;
        height: 15px;
        background: var(--color-light);
        border: 3px solid var(--color-dark);
        cursor: grab;
        border-radius: 100%;
    }

.ask__audio .current-time,
.ask__audio .total-duration {
    padding: 10px;
}

.ask__audio i.fa-volume-down,
.ask__audio i.fa-volume-up {
    padding: 10px;
}

.ask__audio .loader {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

    .ask__audio .loader.animatedPlay .stroke {
        animation: inherit;
    }

    .ask__audio .loader .stroke {
        background: var(--color-light);
        height: 150%;
        width: 10px;
        border-radius: 50px;
        margin: 0 5px;
        animation: animate 1.4s linear infinite;
    }

@keyframes animate {
    50% {
        height: 20%;
        background: var(--color-primary);
    }

    100% {
        background: var(--color-primary);
        height: 100%;
    }
}

.ask__audio .stroke:nth-child(1) {
    animation-delay: 0s;
}

.ask__audio .stroke:nth-child(2) {
    animation-delay: 0.3s;
}

.ask__audio .stroke:nth-child(3) {
    animation-delay: 0.6s;
}

.ask__audio .stroke:nth-child(4) {
    animation-delay: 0.9s;
}

.ask__audio .stroke:nth-child(5) {
    animation-delay: 0.6s;
}

.ask__audio .stroke:nth-child(6) {
    animation-delay: 0.3s;
}

.ask__audio .stroke:nth-child(7) {
    animation-delay: 0s;
}

.ask__anything {
    margin-top: 20px;
}

.ask__anything__popup {
    display: none;
    position: relative;
}

    .ask__anything__popup.popup-show {
        display: block;
    }

        .ask__anything__popup.popup-show .empty-content {
            position: fixed;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
            z-index: 3000;
            background-color: rgba(0, 0, 0, 0.85);
            transition: all 0.5s;
        }

.ask__button__primary {
    background-color: var(--color-primary);
    padding: 10px 15px;
    color: var(--color-light);
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

    .ask__button__primary:focus {
        outline: none;
    }

.ask__title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 5px;
}

    .ask__title::after {
        content: "";
        position: absolute;
        width: 150px;
        height: 4px;
        background-color: var(--color-primary);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }

.ask__searchField {
    position: relative;
    max-width: 400px;
    margin: 0px auto 40px;
}

    .ask__searchField::before {
        position: absolute;
        right: 11px;
        content: "\f002";
        font-family: FontAwesome;
        top: 8px;
        font-size: 16px;
        color: var(--color-tertiary);
        padding: 5px;
    }

    .ask__searchField input {
        width: 100%;
        height: 44px;
        padding: 0 14px;
        border-radius: 4px;
        outline: none;
        font-family: "Poppins", sans-serif;
        border: 1px solid var(--color-tertiary);
    }

.ask__accordion {
    background-color: var(--color-light);
    color: var(--color-dark);
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    transition: 0.4s;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

    .ask__accordion span {
        font-size: 18px;
        font-weight: 500;
    }

.ask__accordion__wrapper {
    border: 1px solid var(--color-tertiary);
    border-radius: 4px;
}

.ask__accordion__panel {
    padding: 0 18px;
    background-color: var(--color-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

    .ask__accordion__panel audio,
    .ask__accordion__panel p {
        padding: 10px 0;
    }

    .ask__accordion__panel video, .ask__accordion__panel iframe {
        object-fit: cover;
        padding: 10px 0;
        width: 100%;
        height: 500px;
    }

@media only screen and (max-width: 850px) {
    .ask__accordion__panel video, .ask__accordion__panel iframe {
        height: 400px;
    }
}

@media only screen and (max-width: 650px) {
    .ask__accordion__panel video, .ask__accordion__panel iframe {
        height: 350px;
    }
}

@media only screen and (max-width: 450px) {
    .ask__accordion__panel video, .ask__accordion__panel iframe {
        height: 250px;
    }
}

.ask__accordion.ask__active .ask__closed__icon {
    display: none;
}

.ask__accordion.ask__active .ask__open__icon {
    display: inline-block;
}

.ask__single__accordion .title {
    color: var(--color-dark);
}

.ask__single__accordion span i {
    color: var(--color-dark);
}

.ask__single__accordion:not(:last-child) {
    border-bottom: 1px solid var(--color-tertiary);
}

.ask__active, .ask__accordion:hover {
    background-color: var(--color-secondary);
}

.ask__closed__icon {
    display: inline-block;
    font-size: 15px;
}

.ask__open__icon {
    display: none;
    font-size: 15px;
}

.ask .ask-accordion .ask__audio {
    background-color: var(--color-light);
}

    .ask .ask-accordion .ask__audio .loader .stroke {
        background-color: var(--color-tertiary);
    }

.ask__anything__popup {
    display: none;
    position: relative;
}

    .ask__anything__popup.popup-show {
        display: block;
    }

        .ask__anything__popup.popup-show .empty-content {
            position: fixed;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
            z-index: 3000;
            background-color: rgba(0, 0, 0, 0.85);
            transition: all 0.5s;
        }

.ask__popup-content {
    position: fixed;
    margin: 10px;
    background: var(--color-light);
    z-index: 9999;
    text-align: left;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    max-height: 95%;
    font-size: 1em;
}

.ask__popup-content__head {
    border-bottom: 1px solid var(--color-tertiary);
}

    .ask__popup-content__head p {
        font-size: 20px;
        margin: 0;
        padding: 15px;
        line-height: 1.3;
        cursor: inherit;
    }

.ask__popup-content__body {
    padding: 15px;
    font-size: 14px;
}

.ask__popup-content__body--title {
    margin-bottom: 15px;
    color: var(--color-dark);
    cursor: inherit;
}

.ask__popup-content__body form input,
.ask__popup-content__body form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--color-tertiary);
    margin: 5px 0 15px;
    color: var(--color-dark);
    font-family: "Poppins", sans-serif;
}

    .ask__popup-content__body form input:focus,
    .ask__popup-content__body form textarea:focus {
        outline: none;
    }

.ask__popup-content__body form .result {
    padding: 15px;
    text-align: center;
    color: var(--color-primary);
}

.ask__popup-content__body--close {
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 15px;
    font-weight: bold;
    color: var(--color-light);
    cursor: pointer;
    background-color: var(--color-primary);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ask__no-question-found {
    text-align: center;
    padding: 10px 0;
    color: var(--color-danger);
    background-color: var(--color-light);
}

.theme-dark .ask {
    background-color: var(--color-dark-primary);
}

.theme-dark .ask__tab__search input {
    background-color: var(--color-dark-secondary);
    color: var(--color-light);
    border-color: var(--color-border);
}

    .theme-dark .ask__tab__search input::placeholder {
        color: var(--color-light);
    }

.theme-dark .ask__tab__search span {
    color: var(--color-light);
}

.theme-dark .ask__tab__questions {
    border-color: var(--color-border);
}

.theme-dark .ask__tab__question {
    border-color: var(--color-border);
    background-color: var(--color-dark-secondary);
}

    .theme-dark .ask__tab__question p {
        color: var(--color-light);
    }

    .theme-dark .ask__tab__question:hover, .theme-dark .ask__tab__question.ask-active {
        background-color: var(--color-dark-tertiary);
    }

.theme-dark .ask__tab__content p {
    border-color: var(--color-border);
    color: var(--color-light);
    background-color: var(--color-dark-secondary);
}

.theme-dark .ask__audio {
    background-color: var(--color-dark-secondary);
    color: var(--color-light);
}

    .theme-dark .ask__audio .seek_slider::-webkit-slider-thumb,
    .theme-dark .ask__audio .volume_slider::-webkit-slider-thumb {
        background: var(--color-dark-tertiary);
        border: 3px solid var(--color-light);
    }

    .theme-dark .ask__audio .playpause-track:hover {
        color: var(--color-dark-tertiary);
    }

    .theme-dark .ask__audio .loader .stroke {
        background-color: var(--color-dark-tertiary);
    }

.theme-dark .ask__title {
    color: var(--color-light);
}

.theme-dark .ask__searchField input {
    background-color: var(--color-dark-secondary);
    color: var(--color-light);
    border-color: var(--color-border);
}

    .theme-dark .ask__searchField input::placeholder {
        color: var(--color-light);
    }

.theme-dark .ask__accordion {
    background-color: var(--color-dark-secondary);
}

.theme-dark .ask__accordion__wrapper {
    border: 1px solid var(--color-border);
}

.theme-dark .ask__accordion__panel {
    background-color: var(--color-dark-secondary);
    color: var(--color-light);
}

.theme-dark .ask__single__accordion .title {
    color: var(--color-light);
}

.theme-dark .ask__single__accordion span i {
    color: var(--color-light);
}

.theme-dark .ask__single__accordion:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}

.theme-dark .ask__active, .theme-dark .ask__accordion:hover {
    background-color: var(--color-dark-tertiary);
}

.theme-dark .ask .ask-accordion .ask__audio {
    background-color: var(--color-dark-primary-primary);
}

    .theme-dark .ask .ask-accordion .ask__audio .loader .stroke {
        background-color: var(--color-dark-tertiary);
    }

.theme-dark .ask__popup-content {
    background-color: var(--color-dark-secondary);
}

.theme-dark .ask__popup-content__head {
    border-color: var(--color-border);
}

    .theme-dark .ask__popup-content__head p {
        color: var(--color-light);
    }

.theme-dark .ask__popup-content__body--title {
    color: var(--color-light);
}

.theme-dark .ask__popup-content__body form label {
    color: var(--color-light);
}

.theme-dark .ask__popup-content__body form input,
.theme-dark .ask__popup-content__body form textarea {
    background-color: var(--color-dark-primary);
    border-color: var(--color-border);
    color: var(--color-light);
}

    .theme-dark .ask__popup-content__body form input::placeholder,
    .theme-dark .ask__popup-content__body form textarea::placeholder {
        color: var(--color-light);
    }

.theme-dark .ask__popup-content__body form .result {
    color: var(--color-primary);
}

.theme-dark .ask .no-question-found {
    background-color: var(--color-dark-secondary);
}

.theme-dark .ask.bg-one {
    background-color: var(--color-dark-secondary);
}

    .theme-dark .ask.bg-one .ask__tab__search input {
        background-color: var(--color-dark-primary);
    }

    .theme-dark .ask.bg-one .ask__tab__question {
        background-color: var(--color-dark-primary);
    }

        .theme-dark .ask.bg-one .ask__tab__question:hover, .theme-dark .ask.bg-one .ask__tab__question.ask-active {
            background-color: var(--color-dark-tertiary);
        }

    .theme-dark .ask.bg-one .ask__tab__content p {
        background-color: var(--color-dark-primary);
    }

    .theme-dark .ask.bg-one .ask__audio {
        background-color: var(--color-dark-primary);
    }

    .theme-dark .ask.bg-one .ask__searchField input {
        background-color: var(--color-dark-primary);
    }

    .theme-dark .ask.bg-one .ask__accordion {
        background-color: var(--color-dark-primary);
    }

    .theme-dark .ask.bg-one .ask__accordion__panel {
        background-color: var(--color-dark-primary);
    }

    .theme-dark .ask.bg-one .ask__active, .theme-dark .ask.bg-one .ask__accordion:hover {
        background-color: var(--color-dark-tertiary);
    }

    .theme-dark .ask.bg-one .no-question-found {
        background-color: var(--color-dark-primary);
    }

/*# sourceMappingURL=style.css.map */

.loginbtn {
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 3px;
    position: relative;
    background-color: #0f0bd4;
    border: none;
    color: #fff;
    padding: 14px;
    width: 130px;
    text-align: center;
    transition-duration: 0.4s;
    overflow: hidden;
    box-shadow: 0 5px 15px #0f0bd4;
    border-radius: 4px;
}

    .loginbtn:hover {
        background: #0000;
        box-shadow: 0px 2px 10px 5px #302dda;
        color: #000000;
    }

    .loginbtn:after {
        content: "";
        background: #0f0bd4;
        display: block;
        position: absolute;
        padding-top: 300%;
        padding-left: 350%;
        margin-left: -20px !important;
        margin-top: -120%;
        opacity: 0;
        transition: all 0.8s;
    }

    .loginbtn:active:after {
        padding: 0;
        margin: 0;
        opacity: 1;
        transition: 0s;
    }

    .loginbtn:focus {
        outline: 0;
    }
/*html,
body {*/
/*height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;*/
/*background: linear-gradient(to left, #606c88, #3f4c6b);
    font-family: "Oswald", sans-serif;
}*/
.trusted-box {
    display: flex;
    align-items: center;
    background: #0f0bd4;
    color: white;
    padding: 8px 16px;
    border-radius: 3px;
    font-family: sans-serif;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    width: fit-content;
    margin-top: 20px;
}

.avatars {
    display: flex;
    margin-right: 10px;
    position: relative;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    position: relative;
    z-index: 1;
    margin-left: -8px;
}

    .avatar:first-child {
        margin-left: 0;
        z-index: 3;
    }

    .avatar:nth-child(2) {
        z-index: 2;
    }

    .avatar:nth-child(3) {
        z-index: 1;
    }

.footer__topv2 .logo img {
    width: 200px;
}

.mt-top {
    margin-top: -35px;
}
/*====================*/
.swiper {
    /*  margin-left: 150px !important;
    margin-right: 100px !important;*/
    width: 100%;
    padding: 50px 0;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    /* margin-right:100px !important;
    margin-left: 200px !important;*/
    width: 100% ;
    /*flex-shrink: 0;*/
    display: flex;
    justify-content: center;
}

.contact-lable {
    font-weight: 600;
    font-family: "Philosopher", sans-serif;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.manscript-label {
    width: 16px !important;
    height: 24px;
    margin-right: 12px;
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: sans-serif;
}

.upload-btn {
    padding: 10px 20px;
    background-color: #0f0bd4;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

    .upload-btn:hover {
        background-color: #0704a0;
    }

input[type="file"] {
    display: none;
}

#fileName {
    font-size: 14px;
    color: #555;
}

.footer-email input {
    width: 100%;
    border: none;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border-bottom: 2px solid transparent;
    border-bottom: 1px solid #0f0bd4;
}

.footer-email input:focus, .footer-email textarea:focus {
    outline: none;
    border: none;
    border-bottom: 2px solid #0f0bd4;
}

.location-search {
    position: relative;
    font-family: sans-serif;
}

/*#locationInput {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}*/

.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #fff;
    /*border: 1px solid #ccc;*/
    border-top: none;
    max-height: 180px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .suggestions-list li {
        padding: 10px;
        cursor: pointer;
    }

        .suggestions-list li:hover {
            background-color: #f0f0f0;
        }

#publisher-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.publisher-card {
    background: #edecfd;
    width: calc(50% - 10px);
    box-sizing: border-box;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.cta-btn, .compare-btn {
    background-color: #0e0ad4;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    margin-right: 10px;
}

    .cta-btn:hover, .compare-btn:hover {
        background-color: #0056b3;
    }

.load-more {
    text-align: center;
    margin-top: 20px;
}

.search-btn {
    /*background-color: #28a745;*/
    color: #000000;
    border: none;
    padding: 10px 16px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .search-btn:hover {
        /*background-color: #218838;*/
    }

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
}

/*.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #edecfd;
    padding: 20px;
    max-width: 60%;
    border-radius: 8px;
}*/

.contact-form-box.container-padding {
    padding: 10px;
}
/* Toggle switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    float: right;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
    border-radius: 34px;
}

    .slider::before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        background-color: white;
        left: 4px;
        bottom: 4px;
        transition: 0.4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #0e0ad4;
}

    input:checked + .slider::before {
        transform: translateX(26px);
    }

.modal-search {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.search-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #edecfd;
    padding: 20px;
    max-width: 60%;
    border-radius: 8px;
}

.login-container {
    background: #edecfd;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    /*box-shadow: 0 8px 16px rgba(0,0,0,0.2);*/
}

    .login-container h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 400;
        color: #121212;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: none;
        font-size: 15px;
        border-bottom: 1px solid #ccc;
        background: none;
    }

.login-btn {
    width: 100%;
    padding: 12px;
    /*background-color: #3a7bd5;*/
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .login-btn:hover {
        background-color: #2e66b0;
    }

.login-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

    .login-footer a {
        color: #ff4a83;
        text-decoration: none;
    }

        .login-footer a:hover {
            text-decoration: underline;
        }

.loginbtn a {
    color: #000000;
}

    .loginbtn a:hover {
        color: #000000 !important;
    }

.forgot {
    text-align: right;
    font-size: 13px;
    margin-bottom: 25px;
}

    .forgot a {
        color: #0e0ad4;
        text-decoration: none;
    }

.divider {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0 100px;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        background: #eee;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #333;
        text-decoration: none;
        font-size: 18px;
        transition: background 0.3s;
    }

        .social-icons a:hover {
            background: #ddd;
        }

.signup {
    font-size: 14px;
    color: #555;
}

    .signup a {
        color: #ff4a83;
        text-decoration: none;
        font-weight: 600;
    }
/*============================   search -results page    =====================*/

.card-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background-color: #edecfd;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 360px;
    border: 1px solid #3a3a3a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: #4c4cff;
    color: white;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.publisher-name {
    font-size: 18px;
    font-weight: bold;
}

.rating {
    margin: 5px 0;
    color: #ffd700;
    font-size: 14px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.tag {
    background-color: #3a3a3a;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
}

    .tag.blue {
        background-color: #0e0ad4;
    }

    .tag.purple {
        background-color: #6f42c1;
    }

    .tag.pink {
        background-color: #e83e8c;
    }

    .tag.green {
        background-color: #28a745;
    }

.details {
    font-size: 14px;
    margin: 8px 0;
}

    .details strong {
        display: inline-block;
        min-width: 120px;
    }

.description {
    font-size: 13px;
    margin-top: 10px;
}

.actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

    .btn.view {
        background-color: #0e0ad4;
        color: white;
        font-size: 13px !important;
        font-weight: 400;
        padding: 5px 6px;
    }

    .btn.submit {
        background-color: #ff4a83;
        color: white;
        font-size: 13px !important;
        font-weight: 400;
        padding: 10px 10px;
    }

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    background: #edecfd;
    padding: 20px;
    max-width: 60%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    border-radius: 8px;
}
/*   ====== faq content ======    */
.faq-container {
    display: flex;
    border-left: 3px solid #0044ff;
    padding-left: 20px;
    max-width: 780px;
    margin: 0 auto;
}

.faq-tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-item {
    padding: 20px 13px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 93%;
}

    .faq-item.active {
        color: #302dda;
    }

.arrow {
    float: right;
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(270deg);
}

.faq-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 10px;
    padding-right: 45px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 14px;
    color: #444;
    transition: height 0.6s ease-out, opacity 0.3s ease-in-out, padding 0.6s ease-out;
}

.faq-item.active + .faq-content {
    height: auto;
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 45px;
}

.bg-one .contact-form-box.manuscript-submission {
    background-color: #edecfd;
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
    border-radius: 15px;
}

.manuscript-container {
    display: flex;
}

.manuscript-form {
    width: 60%;
}

.manuscript-faq {
    width: 40%;
    background-color: #ffffff;
}

contact-form-box .contact-name.maunscript-name, .contact-form-box .contact-subject, .contact-form-box select {
    width: 100%;
    border: none;
    padding: 11px;
    margin-bottom: 10px;
    background-color: #ffffff;
    border-bottom: 2px solid transparent;
    border-radius: 8px;
}

.contact-form-box .contact-name.maunscript-name {
    width: 100%;
    border: none;
    padding: 23px;
    margin-bottom: 10px;
    background-color: #ffffff;
    border-bottom: 2px solid transparent;
    border-radius: 8px;
}

.contact-form-box .contact-name:focus.maunscript-name, .contact-form-box .contact-subject:focus, .contact-form-box select:focus {
    outline: none;
    border: none;
    border-bottom: 2px solid #0f0bd4;
}

.contact-form-box .contact-name.maunscript-name, .contact-form-box .contact-subject, .contact-form-box select {
    width: 100%;
    border: none;
    padding: 11px;
    margin-bottom: 10px;
    background-color: #ffffff;
    border-bottom: 2px solid transparent;
    border-radius: 8px;
}

.contact-form-box .contact-name.maunscript-name, .contact-form-box .contact-subject, .contact-name, .contact-form-box select {
    width: 100%;
    border: none;
    padding: 11px;
    margin-bottom: 10px;
    background-color: #ffffff;
    border-bottom: 2px solid transparent;
    border-radius: 8px;
}
/*  ==== Register page ======  */
.register-container {
    background: #edecfd;
    padding: 10px;
    width: 100%;
    max-width: 946px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.register-div {
    display: flex;
    background: #ffff;
    /* width: 70%; */
    border-top-left-radius: 0%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 0%;
}

.register-box {
    width: 45%;
    padding: 30px;
}

.register-welcome {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-control:focus {
    box-shadow: none !important;
}
/* === dashboard ==== */
/*.dashboard {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

header {
    background-color: #fff;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}*/

/*.main-area {
    display: flex;
    flex: 1;
}*/

/*.sidebar {
    width: 220px;
    background-color: #1f2e45;
    color: #fff;
    padding: 1rem;
    min-height: 100%;
}
.main-area {
    display: flex;
    flex: 1;*/
/* min-height: calc(100vh - 120px);*/
/*}
.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 1rem;
}

.content {
    flex-grow: 1;
    padding: 2rem;
    background-color: #f4f4f4;
}

footer {
    background-color: #fff;
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #ccc;
}*/
.layout {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.sidebar-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: #302dda;
    cursor: pointer;
}
/*.sidebar {
    width: 267px;
    background-color: #edecfd;
    color: #212529bf;
    padding-top: 20px;
}*/
.sidebar {
    width: 250px;
    background-color: #f1eeff;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
}
.sidebar.hide-desktop {
    transform: translateX(-100%);
}

.sidebar.show-mobile {
    transform: translateX(0);
}
.main-area {
    margin-left: 250px;
    /*width: calc(100% - 250px);*/
    transition: margin-left 0.3s;
}

.main-area.full {
    margin-left: 0;
    width: 100%;
}
 /*.sidebar.active {
        position: relative;
        transform: translateX(0);
        margin-left: 270px;
  }*/
/* .sidebar.hidden {
    position: relative;
    transform: translateX(-100%);
    margin-left: -270px;
}*/
    /* Hide sidebar */
/*  .sidebar.hidden {
    transform: translateX(-100%);
}*/

/* Mobile toggle button */
.sidebar-toggle {
    display: block;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 12px;
}

    .logo img {
        width: 120px;
        height: auto;
    }

.nav-menu {
    list-style: none;
    padding-left: 17px;
    margin-top: 40px;
}

.nav-item {
    margin-bottom: 15px;
    position: relative;
    padding: 5px 15px;
    /*padding: 12px;*/
    border-radius: 8px;
}

.nav-link {
    text-decoration: none;
    color: #212529bf;
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link i {
    margin-right: 10px;
    width: 20px;
}

.arrow {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.nav-item:hover .nav-link {
    color: #302dda;
    font-size: 16px;
    /*border-radius: 8px;
    padding: 12px;
    background: #2f2dce12;*/
}

.nav-item:hover .arrow {
    transform: translateX(5px);
    opacity: 1;
}

.nav-item.active .nav-link {
    color: #302dda;
    font-size: 16px;
    /*background: #2f2dce12;
    padding: 15px;
    border-radius: 8px;*/
}

.main-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #f4f6f9;
}

.header-dashboard {
    height: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;

}

.content-dashboard {
    flex: 1;
    padding: 30px;
    background: #efefef;
    max-height: 85vh;
    overflow-y: auto;
}

.footer-dashboard {
    flex-shrink: 0;
    background-color: #302dda;
    color: #fff;
    text-align: center;
    padding: 10px;
}
.login-signup-dashboard {
    margin-left: auto;
    padding-right: 20px;
}
.close-sidebar {
    background: #302dda;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 100%;
    padding-left: 0px;
    width: 45px;
    border-radius: 50%;
    margin-left: 14px;
    color: #ffffff;
}
.close-sidebar.show{
    display:inline-block;
}
.sub-menu-dash {
    padding-top: 2px;
    padding-bottom: 0px;
}
.nav-link-dashboard {
    color: #333;
    font-size: 1rem;
    padding: 8px 15px;
}

.nav-link-dashboard:hover {
    background-color: #f0f0f0;
    color: #302dda;
}

.collapse .nav-link-dashboard {
    padding-left: 0;
    font-size: 13px;
}
.arrow-icon {
    transition: transform 0.3s ease;
}

.nav-link-dashboard[aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
}
.custom-break {
    display: inline-block;
    max-width: 296px;
    word-break: break-word;
    text-align: center;
}
.custom-gap > * {
    margin-right: 50px;
}

.custom-gap > *:last-child {
    margin-right: 46px;
}
.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-menu {
    left: auto;
    right: 0;
}

.search-box {
    width: 240px;
}
.notification-icon {
    position: relative;
    display: inline-block;
    font-size: 24px;
}

.notification-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}
.search-wrapper {
    position: relative;
    display: inline-block;
}

.search-box {
    padding-right: 35px; 
    height: 38px;
    border-radius: 5px;
}
.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
}
.profile-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
}

.pro-user-name {
    font-weight: 500;
    color: #333;
    display: inline-block;
}

.profile-dropdown .dropdown-item {
    font-size: 14px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
}

.profile-dropdown .dropdown-item i {
    font-size: 16px;
}
/*  ==== dashboard =====*/
.table-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.badge-dept {
    background-color: #e8eaff;
    color: #374adf;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.storyt-title {
    color: #2415d1;
    font-weight: 700;
    margin-bottom: 20px;
}

.pagination .page-link {
    color: #2415d1;
}

.pagination .active .page-link {
    background-color: #2415d1;
    border-color: #2415d1;
    color: #ffffff;
}
/*body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

    body.light-mode {
        background-color: #ffffff!important;
        color: #000000;
    }

    body.dark-mode {
        background-color: #121212!important;
        color: #ffffff;
    }*/

.toggle-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    color: inherit;
    cursor: pointer;
}
.profile-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #302dda;
    object-fit: cover;
}

.info-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    height: 100%;
}

.icon-box {
    /*width: 40px;
    height: 40px;*/
    /*background-color: #eef4ff;*/
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.trend-up {
    color: #2e7d32;
    font-size: 14px;
    font-weight: 500;
}

.trend-down {
    color: #d32f2f;
    font-size: 14px;
    font-weight: 500;
}
/*  === profile card ==== */
.profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    margin-right: 20px;
}

    .profile-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.profile-info {
    flex: 1;
}

    .profile-info h2 {
        margin: 0;
        font-size: 24px;
    }

    .profile-info p {
        margin: 5px 0;
        color: #555;
    }

.tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding: 0 20px;
    margin-top: 10px;
}

.tab {
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab.active {
    color: #302dda;
    /*font-weight: bold;*/
}

.tab.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 3px;
    width: 100%;
    background-color: #302dda;
}

.tab-content {
    display: none;
    padding: 20px;
}

    .tab-content.active {
        display: block;
    }

.section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.left, .right {
    width: 48%;
}

.contact-detail {
    margin-bottom: 15px;
}

.label {
    font-weight: bold;
    color: #555;
}

.value {
    color: #333;
}

.social-icons a {
    margin-right: 10px;
    text-decoration: none;
}

.badge {
    padding: 5px 10px;
    background: #e2e6ea;
    border-radius: 5px;
    margin-right: 10px;
    display: inline-block;
}

.assign-link {
    margin-top: 5px;
    display: inline-block;
    color: #0d6efd;
    text-decoration: none;
}
.profile-main-sections {
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.dashbard-logo {
    width: 200px;
    height: auto;
}
.storyt-accordion-faq{
    display:flex;
    position:relative;
}
.storyt-faq {
    width: 50%;
    padding-right:25px;
}
.first-faq-box {
    margin-top: 93px;
}
.faq-ouestion-gif {
    position: absolute;
    bottom: 62%;
    z-index: -1;
    left: -2px;
}