@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primary-color: #4d59b5;
    --primary-40-color: #4d59b5a8;
    --primary-light-color: #4d59b5cc;
    --secondary-color: #121a57;
    --info-color: #2ca9e1;
    --orange-color: #ff872b;
    --yellow-color: #ffeb9c;
    --orange-40-color: #ff872ba8;
    --blue-color: #9cc2e5;
    --gray-color: #666667;
    --secondary-gray-color: #666667;
    /*contact page */
    --black-color: #000;
    --white-color: #fff;
    --white-smoke-color: #f4f4f4;
    --secondary-white-smoke-color: #f0f0f2;
    /*contact page */
    --section-bg-color: #f8f6ff;
    --lavender-color: #f2f2f9;
    --green-color: #00c94d;
    --soft-green-color: #c6efce;
    --red-color: #c9001b;
    --secondary-red-color: #b71c1c;
    --pink-color: #f3aecc;
    --secondary-pink-color: #ffc7ce;
    --poppins: "Poppins", sans-serif;
    --roboto: "Roboto", sans-serif;
    --banner-header: 50px;
    --primary-header: 30px;
    --secondary-header: 25px;
    --third-header: 20px;
    --nav-font-size: 16px;
    --text-font-size: 15px;
    --text-sm: 15px;
    --top-header-font-size: 14px;
    --text-xs: 14px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 18px;
    z-index: 2;
}

/* Text color utility classes */
.text-green {
    color: var(--green-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-primary-light {
    color: var(--primary-light-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-info {
    color: var(--info-color) !important;
}

.text-orange {
    color: var(--orange-color) !important;
}

.text-gray {
    color: var(--gray-color) !important;
}

.text-black {
    color: var(--black-color) !important;
}

.text-white {
    color: var(--white-color) !important;
}

.text-white-smoke {
    color: var(--white-smoke-color) !important;
}

.text-secondary-gray {
    color: var(--secondary-gray-color);
    /*contact page */
}

.text-justify {
    text-align: justify;
}

th,
td,
.datatable-responsive * {
    font-size: 14px !important;
    color: var(--gray-color) !important;
}

.datatable-responsive .pagination .page-item.active .page-link {
    color: var(--white-color) !important;
    background: var(--primary-color) !important;
}

table.dataTable th {
    font-weight: normal !important;
    font-size: 15px;
}

.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    background-color: rgba(0, 0, 0, 0.062) !important;
    color: var(--black-color);
}

.program-description p,
.program-description li,
.program-description div,
.program-description span,
.what-make-description p,
.what-make-description li,
.what-make-description div,
.what-make-description span {
    line-height: 2;
    font-size: var(--text-font-size);
}

.program-description em,
.program-description strong,
.what-make-description strong,
.what-make-description strong {
    font-weight: 600;
}

.program-description h4,
.program-description h5 {
    font-size: 18px;
    display: flex;
    align-items: center;
}

/* Background color utility classes */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-light {
    background-color: var(--primary-light-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-soft-green {
    background-color: var(--soft-green-color) !important;
}

.bg-blue {
    background-color: var(--blue-color) !important;
}

.bg-info {
    background-color: var(--info-color) !important;
}

.bg-orange {
    background-color: var(--orange-color) !important;
}

.bg-gray {
    background-color: var(--gray-color) !important;
}

.bg-black {
    background-color: var(--black-color) !important;
}

.bg-yellow {
    background-color: var(--yellow-color) !important;
}

.bg-white {
    background-color: var(--white-color) !important;
}

.bg-white-smoke {
    background-color: var(--white-smoke-color) !important;
}

.bg-secondary-white-smoke {
    background-color: var(--secondary-white-smoke-color);
    /*contact page */
}

.bg-section-color {
    background-color: var(--section-bg-color) !important;
}

.bg-lavender {
    background-color: var(--lavender-color) !important;
}

.bg-green {
    background-color: var(--green-color);
}

.bg-red {
    background-color: var(--red-color);
}

.bg-pink {
    background-color: var(--pink-color);
}

.bg-secondary-pink {
    background-color: var(--secondary-pink-color);
}

.font-poppins {
    font-family: var(--poppins);
}

.font-roboto {
    font-family: var(--roboto);
}

.text-banner-header {
    font-size: var(--banner-header);
}

.text-red {
    color: var(--secondary-red-color) !important;
}

.text-primary-header {
    font-size: var(--primary-header);
}

.text-secondary-header {
    font-size: var(--secondary-header);
}

.text-third-header {
    font-size: var(--third-header);
}

.text-fourth-header {
    font-size: var(--nav-font-size);
}

.text-base {
    font-size: var(--text-font-size);
}

.text-top-header {
    font-size: var(--top-header-font-size);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-xs {
    font-size: var(--text-xs);
}

.text-italic {
    font-style: italic;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.object-position-center {
    object-position: center;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--poppins);
}

html {
    scroll-behavior: smooth;
}

/* header  */
.hamburger-menu {
    width: 40px;
    height: 40px;
}

.opacity-0 {
    opacity: 0;
}

.hamburger {
    transform-origin: left;
    opacity: 1;
    transform: unset;
    transition: transform 0.3s linear, opacity 0.3s linear;
}

.rotate-45 {
    transform: rotate(45deg) translateY(-2px) translateX(-7px);
}

.-rotate-45 {
    transform: rotate(-45deg) translateY(2px) translateX(-7px);
}

.top_header {
    background-color: var(--primary-color);
}

.bottom_header {
    background-color: var(--white-color);
}

.header_icon {
    width: 22px;
    margin-right: 8px;
}

.login-btn {
    border: none;
    background-color: var(--secondary-color);
    padding: 10px 20px;
    color: var(--white-color);
    font-size: var(--top-header-font-size);
}

.header_text {
    color: white;
    font-size: var(--top-header-font-size);
    font-weight: 200;
    white-space: nowrap;
}

.brand_img {
    width: 250px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 1px 2px var(--main_color);
}

.navbar .nav-item .nav-link {
    color: var(--black-color);
    font-size: var(--nav-font-size);
    font-family: var(--roboto);
    white-space: nowrap;
    font-weight: 500;
    padding: 30px 20px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transition: all 0.3 ease-in-out;
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link:hover {
    color: var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
}

button.navbar-toggler {
    padding: 4px;
    border-radius: 3px;
    border: 1px solid var(--primary-color);
}

/* end header  */

.course-box {
    padding: 50px 32px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.program-box {
    padding: 40px 32px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0px 8px 16px 0px #00000014, 0px 0px 4px 0px #0000000a;
    transition: all 0.3s ease-in-out;
}

.program-box * {
    transition: all 0.3s ease-in-out;
}

.program-box:hover {
    background-color: var(--primary-color) !important;
}

.program-box:hover * {
    color: var(--white-color) !important;
}

.course-box-body {
    position: relative;
    z-index: 3;
}

.course-box.bg-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-40-color);
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.course-box.bg-orange::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange-40-color);
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.course-box .overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.course-box.bg-primary:hover {
    background: transparent !important;
}

.course-box:hover .overlay-image {
    opacity: 1;
}

.course-box.bg-primary:hover::before {
    opacity: 1;
}

.activity-card {
    padding: 25px;
    box-shadow: 0px 4px 8px 0px #0000000f, 0px 0px 4px 0px #0000000a;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    transform-origin: top left;
}

.activity-photo {
    aspect-ratio: 2 / 1.32;
    transition: all 0.3s ease-in-out;
}

.activity-header {
    color: var(--black-color);
    transition: all 0.3s ease-in-out;
}

.activity-btn {
    background: none;
    font-weight: 500;
    border: none;
    position: relative;
    color: var(--black-color);
    transition: all 0.3s ease-in-out;
}

.activity-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    background-color: #0856af;
    width: 0;
    height: 2px;
    transition: all 0.3s ease-in-out;
}

.date-icon {
    width: 18px;
}

.arrow-icon {
    width: 17px;
}

.activity-card:hover {
    transform: scale(1.01);
}

.activity-card:hover .activity-photo {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.activity-card:hover .activity-header {
    color: var(--primary-color);
}

.activity-btn:hover {
    color: #0856af;
}

.activity-btn:hover .arrow-icon path {
    fill: #0856af;
}

.activity-btn:hover::before {
    width: 100%;
}

.read-more-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: var(--text-font-size);
    border: none;
    padding: 15px 27px;
    border-radius: 27px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.read-more-btn:hover {
    background-color: var(--secondary-color);
}

.double-quote {
    position: absolute;
    z-index: 1;
    top: -50px;
    left: -5px;
}

.border-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    display: block;
    width: 1px;
    height: 139px;
    background-color: #cacaca;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #cacaca;
}

.vision-mission-card {
    border: 1px solid #eeeeee;
    box-shadow: 0px 8px 16px 0px #00000014, 0px 0px 4px 0px #0000000a;
    padding: 70px 60px;
}

.empty-icon {
    width: 100px;
}

.activity-height {
    min-height: 67px;
}

/* footer  */
footer {
    background-color: var(--primary-color);
}

.footer-logo {
    width: 160px;
}

.footer-header {
    color: var(--white-color);
    font-size: var(--secondary-header);
}

.footer-text {
    color: var(--white-color);
    font-size: var(--text-font-size);
    font-weight: 400;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li a {
    color: var(--white-color);
    font-weight: 400;
    line-height: 2;
    text-decoration: none;
    font-size: var(--text-font-size);
}

.footer-map,
.footer-map iframe {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.social-icon {
    width: 30px;
}

#announcementCarousel .carousel-indicators li {
    width: 10px !important;
    height: 10px !important;
    background: #e3e3e3 !important;
    list-style: none;
    border: none;
    border-radius: 50%;
    opacity: 1 !important;
    transition: all 0.3s ease-in-out;
}

#heroCarousel .carousel-item img {
    aspect-ratio: 3 / 1.5;
}

#heroCarousel .carousel-item {
    transition: transform 1.2s linear ease-in-out;
}

#announcementCarousel .carousel-item {
    transition: transform 2s linear;
}

#announcementCarousel .carousel-indicators li.active {
    background: var(--primary-color) !important;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    opacity: 1 !important;
}

.carousel-arrow {
    width: 36px;
}

.banner-img {
    aspect-ratio: 5 / 1.06;
    object-fit: cover;
}

.border-left {
    border-left: 15px solid var(--primary-color);
    padding-left: 15px;
}

.mission,
.mission ul {
    padding-left: 16px;
}

.mission li {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.vision-misson-icon {
    width: 45px;
}

.page-title-icon {
    width: 40px;
}

.course-image {
    aspect-ratio: 2 / 1.35;
}

.client .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.client .pagination .page-link {
    text-align: center;
    min-width: calc(2.2505625rem + calc(1px * 2));
    min-height: calc(2.2508625rem + calc(1px * 2));
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 50%;
    font-size: var(--text-font-size);
    margin: 0 10px;
    color: var(--white-color);
    font-weight: bold;
    background-color: #919191;
}

.client .page-item:first-child .page-link,
.client .page-item:last-child .page-link {
    border-radius: 50% !important;
    background-color: #d0c6c6 !important;
    min-width: calc(1.7rem + calc(1px * 2));
    min-height: calc(1.7rem + calc(1px * 2));
    padding: 0 !important;
}

.client .pagination .page-item.active .page-link {
    background-color: var(--primary-color) !important;
}

.date-box .date {
    width: 120px;
}

.latest-news-card {
    box-shadow: 0px 8px 16px 0px #00000014, 0px 0px 4px 0px #0000000a;
    border: 1px solid #ededed;
}

.latest-news-image {
    width: 100%;
    aspect-ratio: 1.1 / 1;
}

.news-and-activities-detail-img {
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
    object-position: center;
}

.latest-news-and-programs {
    position: relative;
    padding-bottom: 5px;
}

.latest-news-and-programs::before,
.latest-news-and-programs::after {
    content: "";
    position: absolute;
    border-top: 1px solid #00295c;
    left: 0;
}

.latest-news-and-programs::before {
    bottom: 0;
    width: 30%;
}

.latest-news-and-programs::after {
    bottom: 7px;
    width: 20%;
}

.login-form {
    width: 100vw;
    height: 100vh;
}

.login-popup-close {
    position: absolute;
    top: 15px !important;
    right: 15px !important;
    z-index: 2;
}

.card-container {
    position: relative;
    cursor: pointer;
}

.card-container::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    transition: all 0.3s ease;
}

.zoom-icon {
    background-color: transparent;
    border: none;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease-out !important;
}

.zoom-icon-image {
    width: 50px;
}

.card-container:hover::before {
    opacity: 0.6;
}

.card-container:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1) !important;
}

.btn-close {
    color: var(--gray-color) !important;
}

.download-button:hover svg path {
    stroke: var(--orange-color);
}

.gallery-image {
    aspect-ratio: 2 / 1.5;
    border-radius: 0;
}

.gallery-carousel {
    height: 650px;
    max-height: 650px;
}

.modal-body .carousel-control-next,
.modal-body .carousel-control-prev {
    width: auto !important;
}

/* end footer  */

@media screen and (min-width: 1024px) and (max-width: 1366px) {
    :root {
        --banner-header: 40px;
    }

    .navbar .nav-item .nav-link {
        font-size: var(--text-font-size);
        padding: 27px 14px;
    }

    .brand_img {
        width: 230px;
    }

    .date-box .date {
        font-size: 22px !important;
        top: 46% !important;
    }

    .login-logo {
        width: 180px;
    }

    .gallery-carousel {
        height: 450px;
        max-height: 450px;
    }

    #galleryModal1 .modal-dialog {
        padding-top: 0 !important;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
    .gallery-carousel {
        height: 400px;
        max-height: 400px;
    }
}

@media screen and (max-width: 1279px) {
    .offcanvas.offcanvas-end {
        top: 110px;
        z-index: -1;
        width: 40%;
        height: max-content;
        border: none;
    }

    .offcanvas-body {
        background: var(--secondary-color);
    }

    .navbar .nav-item .nav-link {
        font-size: var(--text-font-size);
        color: var(--white-color);
        border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item .nav-link:hover {
        border-bottom: 3px solid var(--primary-color);
    }

    .vision-mission-card {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 1024px) {
    .navbar .nav-item .nav-link {
        padding: 15px 10px;
    }

    .date-box .date {
        font-size: 20px !important;
        top: 46% !important;
    }
}

@media screen and (max-width: 992px) {
    :root {
        --banner-header: 30px;
        --primary-header: 27px;
        --secondary-header: 22px;
        --third-header: 18px;
        --nav-font-size: 15px;
        --text-font-size: 14px;
        --top-header-font-size: 13px;
        --text-sm: 13px;
        --text-xs: 13px;
    }

    .activity-height {
        min-height: 57px;
    }

    .empty-icon {
        width: 80px;
    }

    .program-description h4,
    .program-description h5 {
        font-size: 17px;
    }

    .navbar .nav-item .nav-link {
        padding: 13px 10px;
    }

    .brand_img {
        width: 220px;
    }

    .header_icon {
        width: 20px;
    }

    .login-btn {
        padding: 10px 15px;
    }

    .footer-logo {
        width: 100%;
    }

    .hamburger-menu {
        width: 30px;
        height: 30px;
    }

    .carousel-arrow {
        width: 25px;
    }

    .course-box {
        padding: 30px 15px;
    }

    .program-box {
        padding: 30px 20px;
    }

    .read-more-btn {
        padding: 12px 20px;
        border-radius: 25px;
    }

    .arrow-icon {
        width: 15px;
    }

    .activity-card {
        padding: 20px;
    }

    .banner-img {
        aspect-ratio: 5 / 1.3;
    }

    .mission li {
        margin-bottom: 10px;
    }

    .vision-misson-icon {
        width: 40px;
    }

    .page-title-icon {
        width: 35px;
    }

    .date-box .date {
        width: 120px;
        top: 45% !important;
    }

    .login-logo {
        width: 120px;
    }

    .gallery-carousel {
        height: 400px;
        max-height: 400px;
    }

    .zoom-icon-image {
        width: 40px;
    }

    .footer-links li a {
        text-decoration: underline;
    }

    th,
    td,
    .datatable-responsive * {
        font-size: 13px !important;
    }

    .vision-mission-card {
        padding: 35px 20px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --banner-header: 23px;
        --primary-header: 22px;
        --secondary-header: 20px;
        --third-header: 16px;
        --text-font-size: 13px;
        --text-sm: 13px;
        --top-header-font-size: 13px;
    }

    .activity-height {
        min-height: 50px;
    }

    .empty-icon {
        width: 60px;
    }

    .program-description h4,
    .program-description h5 {
        font-size: 16px;
    }

    .navbar .nav-item .nav-link {
        padding: 10px 8px;
    }

    .brand_img {
        width: 200px;
    }

    .header_icon {
        width: 17px;
    }

    .login-btn {
        padding: 8px 12px;
    }

    button.navbar-toggler {
        padding: 2px;
    }

    .navbar-toggler-icon {
        width: 1.3em;
        height: 1.3em;
    }

    .offcanvas.offcanvas-end {
        width: 100%;
        top: 85px;
        right: 0;
    }

    .hamburger-menu {
        width: 25px;
        height: 25px;
    }

    .footer-icon {
        width: 20px;
    }

    .social-icon {
        width: 25px;
    }

    .footer-logo {
        width: 100px;
    }

    .board {
        width: 65px !important;
    }

    .date-box .date {
        font-size: 10px !important;
        top: 29px !important;
        left: 34px !important;
        width: 50px;
    }

    .border-divider::before {
        display: none;
    }

    .double-quote {
        top: -23px;
        left: 7px;
        width: 100px;
    }

    #heroCarousel .carousel-item img {
        aspect-ratio: 3 / 1.7;
    }

    .carousel-arrow {
        width: 15px;
    }

    .read-more-btn {
        padding: 9px 15px;
        border-radius: 20px;
    }

    .course-box {
        padding: 35px 25px;
    }

    .activity-card {
        padding: 15px;
    }

    .arrow-icon {
        width: 13px;
    }

    .banner-img {
        aspect-ratio: 5 / 2.3;
    }

    .mission li {
        margin-bottom: 8px;
    }

    .vision-misson-icon {
        width: 35px;
    }

    .page-title-icon {
        width: 27px;
    }

    .login-logo {
        width: 90px;
    }

    .gallery-carousel {
        height: 210px;
        max-height: 210px;
    }

    .zoom-icon-image {
        width: 30px;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fade-in 0.5s both linear;
}

.news-and-activities-detail-img {
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
    object-position: center;
}

.latest-news-and-programs {
    position: relative;
    padding-bottom: 5px;
}

.latest-news-and-programs::before,
.latest-news-and-programs::after {
    content: "";
    position: absolute;
    border-top: 1px solid #00295c;
    left: 0;
}

.latest-news-and-programs::before {
    bottom: 0;
    width: 30%;
}

.latest-news-and-programs::after {
    bottom: 7px;
    width: 20%;
}

.login-form {
    width: 100vw;
    height: 100vh;
}

.login-popup-close {
    position: absolute;
    top: 15px !important;
    right: 15px !important;
    z-index: 2;
}

.card-container {
    position: relative;
}

.card-container::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    transition: all 0.3s ease;
}

.zoom-icon {
    background-color: transparent;
    border: none;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease-out !important;
}

.card-container:hover::before {
    opacity: 0.6;
}

.card-container:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1) !important;
}

.btn-close {
    color: var(--gray-color) !important;
}

.download-button:hover svg path {
    stroke: var(--orange-color);
}

.profile-list {
    background-color: var(--lavender-color) !important;
}

.profile-list:hover,
.profile-list.active {
    background-color: var(--primary-color) !important;
}

.profile-list:hover svg path,
.profile-list.active svg path {
    fill: white;
}

.report-card:hover svg path,
.report-card.active svg path {
    fill: white;
    stroke: white;
}

.profile-list:hover span,
.profile-list:hover .bx,
.profile-list.active span,
.profile-list.active .bx {
    color: white !important;
}

.white-border {
    border-bottom: 1px solid #eee !important;
}

.nav-tabs .nav-link {
    color: var(--gray-color) !important;
    border: none;
}

.nav-tabs .nav-link.active {
    border-bottom: 5px solid #4d59b5 !important;
    color: var(--primary-color) !important;
}

.w-35 {
    width: 35% !important;
}

.w-65 {
    width: 65% !important;
}

.info-offcanvas {
    width: 75% !important;
    max-width: 370px !important;
}

.primary-border {
    border-bottom: 5px solid var(--primary-color);
}

.border-top {
    border-left: 1px solid #d3d3d3 !important;
    border-right: 1px solid #d3d3d3 !important;
    border-top: 1px solid #d3d3d3 !important;
}

.gray-border {
    border: 1px solid #d3d3d3 !important;
}

.day-block {
    width: 58px !important;
    flex-shrink: 0;
}

.note-block {
    width: 45px !important;
}

@media screen and (max-width: 375px) {
    .gallery-modal {
        width: 100% !important;
    }

    .gallery-image-container {
        width: 280px;
        height: 210px;
    }
}

@media (min-width: 376px) and (max-width: 425px) {
    .gallery-image-container {
        width: 380px;
        height: 220px;
    }
}

@media screen and (min-width: 1024px) {
    .gallery-modal {
        width: 80% !important;
    }

    .gallery-image-container {
        width: 900px;
        height: 600px;
    }
}

.recaptcha-wrapper {
    transform: scale(0.9);
    /* adjust scale as needed */
    transform-origin: 0 0;
    -webkit-transform: scale(0.9);
    -webkit-transform-origin: 0 0;
}

.contact-form .form-control {
    border-radius: 35px;
}

@media (max-width: 992px) {
    .recaptcha-wrapper {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
    }
}

@media (max-width: 767px) {
    .recaptcha-wrapper {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
    }

    .contact-form .form-control {
        border-radius: 20px;
    }
}