:root {
    /* Fonts */

    --default-font: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Jost", sans-serif;
    --nav-font: "Mulish", sans-serif;


    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #37517e;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #47b2e4;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */



    --nav-color: #202B5D;
    /* The default color of the main navmenu links */
    --nav-hover-color: #C32644;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #C32644;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */



}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f5f6f8;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #37517e;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #4668a2;
    --contrast-color: #ffffff;
}




/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}


#return-to-top {
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background-color: #ff3514;
    color: #fff;
    text-align: center;
    position: fixed;
    z-index: 2147483647;
}
#return-to-top i {
    color: #fff;
    text-align: center;
    line-height: 31px;
    font-size: 15px;
}

/* Btn Style One */

.btn-style-one {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    text-align: center;
    border-radius: 0;
    padding: 10px 20px 12px 18px;
    display: inline-block;
    color: #0067DA;
    text-transform: capitalize;
    background-color: rgba(2, 1, 1, 0);
    border: solid #0067DA 2px;
    letter-spacing: 0.5px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/*.btn-style-one:before {*/
    /*-webkit-transition-duration: 800ms;*/
    /*transition-duration: 800ms;*/
    /*position: absolute;*/
    /*width: 200%;*/
    /*height: 200%;*/
    /*content: "";*/
    /*top: -200%;*/
    /*left: 50%;*/
    /*-webkit-transform: translateX(-50%);*/
    /*transform: translateX(-50%);*/
    /*border-radius: 50%;*/
    /*z-index: 1;*/
    /*background-color: #C32644;*/



/*}*/

/*.btn-style-one:hover:before {*/
    /*top: 0%;*/
/*}*/

.btn-style-one .btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
    display: block;
}

.btn-style-one .btn-wrap .text-one {
    position: relative;
    display: block;
    color: #0067DA;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-one:first-child {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-one .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: #0067DA;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-one:hover .btn-wrap .text-two {
    color: #fff;
}

.btn-style-one:hover {
    color: #fff;
    border: solid #C32644 2px;
    background-color: #C32644;
}

/*.btn-style-one:hover:before {*/
    /*top: -40%;*/
/*}*/

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1270px;
    }
}

.main-header_button {
    padding-left: 50px;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
   
    color: #2c3e50;
    background-color: #fff;
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 120px;
    margin-right: 30px;
}



.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }
    .main-header_button {
    padding-left: 0px;
    order: 2;
    padding-right: 30px;
}


    .header .navmenu {
        order: 3;
    }
    .header .logo img {
    max-height: 50px;
    margin-right: 30px;
}
}

/* Index Page Header
------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: rgba(40, 58, 90, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
   .navmenu {
    padding: 0;
    width: 70%;
    justify-content: center;
    display: flex;
}

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
         color: #7a7a7a;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: unset;
        transition: 0.3s;
        padding: 40px 11px 40px 11px;
        font-family: "Mulish", Sans-serif;
        font-size: 16px;
        font-weight: 600;
        text-transform: capitalize;
        line-height: 24px;
        letter-spacing: 0.5px;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 7px 15px 7px 15px;
        font-size: 17px;
        font-weight: 400;
        line-height: 24px;
        text-transform: capitalize;
        color: #202B5D;
        font-family: "Cabin", sans-serif;
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -220px;
        visibility: visible;
    }

    .navmenu .megamenu {
        position: static;
    }

    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        background: var(--nav-dropdown-background-color);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .megamenu ul li {
        flex: 1;
    }

    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover>a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--nav-dropdown-color);
    }

    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .megamenu:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dd-box-shadow {
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li a {
        white-space: nowrap;
    }

    .navmenu .dropdown ul li a:hover {
        color: #fff;
        background: #ff3514;
    }
}



/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        margin-right: 0;
        z-index: 9999;
    right: 15px;
    top: 20px;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
    .header .container {
    justify-content: space-between;
}
.main-header_button {
    order: 2;
    padding-right: 0;
}

}




.member-registration-section {
  
    padding: 100px 0px 90px 0px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/


.footer {
    background-color: #EFEFEF;
    padding: 70px 0px 62px 0px;
}

.footer a {
    color: #2c3e50;
    text-decoration: none;
    font-family: "Mulish", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
        padding: 5px 0 5px 0;
}
.footer h5 {
    color: #202B5D;
    font-family: "Mulish", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.5px;
}
.footer p {
    color: #2c3e50;
    text-decoration: none;
    font-family: "Mulish", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-icons a {
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 27px;
    text-align: center;
    border-radius: 50%;
    color: white;
}

.footer .social-icons a.facebook {
    background: #3b5998;
}

.footer .social-icons a.instagram {
    background: #000;
}

.footer .social-icons a.twitter {
    background: #1da1f2;
}

.footer .copyright {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-family: "Mulish", sans-serif;
}

.footer .fa {
    color: red;
}

.copyright {
    background-color: #0F0F0F;
    padding: 29px 0px 33px 0px;
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-align: center;
    font-family: "Mulish", sans-serif;
}

.ova-contact-info-row {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.gallery-row {
    margin-bottom: 10px;
}

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

.ova-contact-info .icon i {
    font-size: 20px;
    color: #FF0031;
    margin: 0px 15px 4px 0px;
}

.ova-contact-info .icon {
    margin-bottom: 10px;
    display: flex;
}
.search-icon {
    font-size: 18px;
    color: #888;
    cursor: pointer;
    margin-left: 20px;
}

.footer-gallery .gallery-row {
    padding-right: 5px;
    padding-left: 5px;
}
.list-unstyled li {
    padding-bottom: 10px;
}

/* Mobile responsive */
@media (max-width: 767px) {

    .card-title {
    font-size: 20px;
    text-align: center;
}
.btn-style-one {
    padding: 9px 20px;
}
.copyright {
    font-size: 14px;
    padding: 20px;
}
.footer-about {
    padding-bottom: 20px;
    padding-top: 20px;
    margin-bottom: 10px;
    border-bottom: solid #ccc 1px;
}
.footer-links {
    padding-bottom: 20px;
    padding-top: 20px;
    margin-bottom: 10px;
    border-bottom: solid #ccc 1px;
}

}