/** Base Styles
--------------------------------------------------------------*/
:root {
    --accent-color: #ebfdff;
    --secondary-color: #3ac5ce;
    --dark-color: #083c3e;
    --grey-color: #f8f8f8;
    --body-text-color: #083c3e;
    --light-text-color: #7c7c7c;
    --link-color: #ffffff;
}
/** Typography
  --------------------------------------------------------------*/
body {
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: var(--light-text-color);
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Jost";
    font-weight: 400;
    color: var(--body-text-color);
    letter-spacing: 0.04em;
}

h1,
.h1 {
    font-size: 70px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 22px;
}

h5,
.h5 {
    margin-bottom: 0px;
}

p {
    font-family: "Roboto";
    color: var(--light-text-color);
    font-size: 16px;
    line-height: 30px;
}

a {
    color: var(--body-text-color);
    text-decoration: none;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

    a:hover {
        color: var(--secondary-color);
        text-decoration: none;
    }

.btn.btn-primary {
    border-radius: 60px;
    --bs-btn-color: var(--accent-color);
    --bs-btn-bg: var(--body-text-color);
    --bs-btn-border-color: var(--body-text-color);
    --bs-btn-hover-color: var(--accent-color);
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
}

    .btn.btn-primary.first-button {
        font-size: 19px;
        padding: 20px 60px;
        transition: all 0.3s ease-in;
    }

.btn.btn-outline-primary {
    border-radius: 35px;
    --bs-btn-color: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-color: var(--accent-color);
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    color: var(--link-color);
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn.btn-outline-primary.second-button {
    font-size: 19px;
    padding: 20px 50px;
    transition: all 0.3s ease-in;
}

@media only screen and (max-width: 768px) {

    h1,
    .h1 {
        font-size: 50px;
    }
}
/* navigation bar  */
section#navigation-bar {
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--accent-color);
}

.nav-link {
    color: var(--body-text-color);
}

a.nav-link.active,
.anav-link:focus,
a.nav-link:hover {
    color: var(--dark-color);
}

a.nav-link::after {
    content: "";
    text-align: center;
    display: block;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

a.nav-link.active::after,
a.nav-link:focus::after,
a.nav-link:hover::after {
    width: 100%;
    transition: width 0.3s;
}
/* hero section  */

section#hero {
    background: var(--accent-color);
    margin-top: 30px;
/*    margin-bottom: 30px;*/
}

.hero.container {
    margin-top: 30px;
    margin-bottom: 30px;
}

a.icon-link {
    color: var(--body-text-color);
    text-decoration: none;
    display: inline-table;
}

a.icon-link:after {
    content: "";
    display: block;
    border-bottom: 1px solid var(--dark-color);
    width: 100%;
    transition: width 0.2s ease-out;
}

a.icon-link:hover:after {
    width: 20%;
}
/* footer2 section  */

.footer-2 {
    background-color: #1093a1;
}

.footer2-paragraph {
    margin: 0px;
    color: var(--accent-color);
}

footer.footer-2-container {
    padding: 30px 0px;
}

iconify-icon.footer-2-icon {
    color: var(--accent-color);
    font-size: 18px;
}

a.nav-link.footer-1-link.templatesjungle {
    color: #ffffff;
}

    a.nav-link.footer-1-link.templatesjungle:hover {
        color: var(--body-text-color);
    }

@media only screen and (max-width: 768px) {
    .footer-2-container {
        display: block !important;
    }
}
/* Loader section */
/*.theme-loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--accent-color, #ebfdff);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.theme-spinner {
    width: 64px;
    height: 64px;
    border: 6px solid var(--secondary-color, #3ac5ce);
    border-top: 6px solid var(--dark-color, #083c3e);
    border-radius: 50%;
    animation: theme-spin 1s linear infinite;
}

@keyframes theme-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/
.theme-loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /*    background: var(--accent-color, #ebfdff);*/
    /*    background: transparent;*/
    background: rgba(255, 255, 255, 0.6); /* semi-transparent white */
    display: none; /* HIDE BY DEFAULT */
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

    .theme-loader-bg.active {
        display: flex !important; /* Show when active */
    }

.theme-spinner {
    width: 64px;
    height: 64px;
    border: 6px solid var(--secondary-color, #3ac5ce);
    border-top: 6px solid var(--dark-color, #083c3e);
    border-radius: 50%;
    animation: theme-spin 1s linear infinite;
}

@keyframes theme-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

