@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Satisfy&display=swap');

:root {
    --bg-color: #effaff;
    --bg-color2: rgb(216, 216, 216);
    --theme-color: rgb(25, 62, 135);
    --primary-color: rgb(228, 119, 34);
    --white-color: #fff;
    --black-color: #000;
}

@font-face {
    font-family: 'edwardian_script_itcregular';
    src: url('../fonts/edwardianscriptitc.woff2') format('woff2'),
         url('../fonts/edwardianscriptitc.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: "Libre Baskerville", serif;
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

a {
    text-decoration: none;
    color: inherit;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.bg-primary {
    background-color: #132d8e !important;
}

.text-primary {
    color: #132d8e !important;
}

.fs-1 {
    font-size: 3.5rem !important;
}

.title span {
    position: relative;
    color: var(--theme-color);
    padding-bottom: 0.5rem;
    background: url(../images/divider.svg) no-repeat;
    background-position: center bottom;
}

.style-font {
    font-family: 'edwardian_script_itcregular';
}

.text-warning{
    color: var(--primary-color) !important;
}
.bg-gray {
    background-color: #f1f1f1;
}

.btnMan {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /* border: 2px solid var(--primary-color); */
    transition: color 0.5s;
    z-index: 1;
    border-radius: 3rem;
    font-weight: 500;
    color: var(--white-color);
    background: var(--primary-color);
}

.btnMan:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #000;
    height: 150px;
    width: 250px;
    border-radius: 50%;
}

.btnMan:hover {
    color: #fff;
}

.btnMan:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btnMan:hover:before {
    top: -30px;
    left: -30px;
}

.btnMan:active:before {
    background: var(--theme-color);
    transition: background 0s;
}

.btnMan2 {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /* border: 2px solid var(--primary-color); */
    transition: color 0.5s;
    z-index: 1;
    border-radius: 3rem;
    font-weight: 500;
    color: var(--white-color);
    background: var(--theme-color);
}

.btnMan2:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #000;
    height: 150px;
    width: 250px;
    border-radius: 50%;
}

.btnMan2:hover {
    color: #fff;
}

.btnMan2:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btnMan2:hover:before {
    top: -30px;
    left: -30px;
}

.btnMan2:active:before {
    background: var(--primary-color);
    transition: background 0s;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.slick-slide {
    margin: 0 1rem;
}


.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}



/* ================================ 
  Navbar Section
  ===================================*/
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

/* .navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
} */

.navbar .navbar-brand>img {
    height: 80px;
}

.navbar .navbar-brand{
    /* font-family: "Great Vibes", cursive; */
    font-family: 'edwardian_script_itcregular';
    font-size: 2.5rem;
    color: #006cb9;
    font-weight: 600;
    letter-spacing: 3px;
}

.nav-item {
    display: inline-flex;
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu-end a i {
        background-color: var(--bs-gray-500);
        font-size: 0.6rem;
        min-width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        border-radius: var(--bs-border-radius-xl);
        text-align: center;
        margin-right: 0.5rem;
    }

    .navbar .dropdown-menu-end a:hover i {
        background-color: var(--bs-link-hover-color);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        /* transform: translateY(20px); */
        transition: all .3s ease-in;
        visibility: hidden;
        /* min-height: 50vh; */
        box-shadow: 0 5px 20px rgba(197, 208, 216, 0.15);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 8px;
        border: 0;
        min-width: 16rem;
        border-radius: 0;
        box-shadow: 0 5px 20px rgba(15, 39, 125, 0.4);
    }

    .dropdown-toggle::after {
        position: absolute;
        top: 46%;
    }

    .navbar .nav-link {
        padding: 10px 20px !important;
        text-decoration: none;
        color: var(--black-color);
        font-weight: 500;
        letter-spacing: 1px;
        /*text-transform: uppercase;*/
    }

    .navbar .nav-item:hover .nav-link {
        color: var(--primary-color);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -52px;
        box-shadow: 0 10px 10px rgba(15, 39, 125, 0.14);
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: #101010;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1.5rem;
        text-decoration: none;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--theme-color);
        background: var(--bg-light);
    }
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    /* circle size */
    height: 30px;
    border: 1px solid #000;
    /* white border */
    border-radius: 50%;
    /* makes it circular */
    color: #000;
    /* icon color */
    font-size: 18px;
    transition: all 0.3s ease;
}

.social a:hover {
    background-color: #fff;
    /* white background on hover */
    color: #000;
    /* icon changes to black */
    transform: scale(1.1);
    /* slight zoom effect */
}

.scroll-on .nav-link {
    color: var(--black-color);
}

.navbar .navbar-toggler i {
    color: var(--black-color);
}

.scroll-on .navbar-toggler i {
    color: #121212;
}

.bannerMain {
    position: relative;
    text-align: center;
}

/* .bannerMain img {
    aspect-ratio: 16/9;
    object-fit: cover;
} */

.aboutImg {
    position: relative;
    background: var(--bg-color);
}

.aboutImg:before {
    position: absolute;
    content: '';
    right: -10px;
    top: -10px;
    background-color: #ffc109;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    overflow: hidden;
    padding: 3rem;
}

/* .card img {
    width: 30%;
    object-fit: cover;
} */

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.card-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: left;
}

.card-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .card img,
    .card-content {
        width: 100%;
    }
}

.sampleRequest {
    float: right;
    direction: ltr;
    writing-mode: vertical-rl;
    text-orientation: initial;
    display: inline-flex;
    transform: rotate(180deg);
    position: fixed;
    right: 0;
    white-space: nowrap;
    top: 30%;
    font-size: 16px;
    color: #fff;
    background-color: var(--primary-color);
    z-index: 999;
    padding: 15px 6px;
    /* text-transform: uppercase; */
    border-radius: 0 0.5rem 0.5rem 0;
    cursor: pointer;
}

.btn-close {
    position: absolute;
    right: -0.5em;
    top: -0.5em;
    padding: 0;
    outline: none;
    box-shadow: none;
    border-radius: 2rem;
    opacity: 1;
    background: #ff0000;
    color: var(--white-color);
    line-height: 1;
    font-size: 1.75rem;
    width: 34px;
    height: 34px;
}

.btn-close:hover {
    color: var(--white-color);
    opacity: 1;
}
.exhibition-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.exhibition-card h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    color: #fff;
}
.exhibition-card .meta {
    font-size: 0.7rem;
    color: #9aa4b2;
    margin-bottom: 0;
}
.exhibition-card .badge {
    background: rgba(255, 255, 255, 0.08);
    color: #e6eef6;
    margin-right: 0.25rem;
}

@media (max-width: 768px) {
    body{
        font-size: 0.9rem;
    }
    .fs-1{
        font-size: 2rem !important;
    }
    .py-5{
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .navbar{
        display: none;
    }
}