@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

:root {
    --text-dark: #000;
    --grey: #eee;
    --color-dark-grey: #29323c;
    --color-light-grey: #485563;
    --text-grey: #717171;
    --text-light: #fff;
    --text-para: #AC7DD0;
    --text-para-dark: #67325A;
    --text-para-light: #D5BEE7;
    --db-bg: #FFF0EF;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 45%;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

li,
a {
    text-decoration: none !important;
    list-style-type: none;
    cursor: pointer;
}

a:active,
a:focus {
    outline: 0;
    border: none;
    --moz-outline-style: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

button:focus {
    border: none;
    outline: none;
}

p {
    font-size: 1.5rem;
    line-height: 1.3em;
    color: var(--secondary-black);
}

button {
    letter-spacing: 0.06rem;
    border: none;
    cursor: pointer;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.5rem !important;
    padding: 10px;
}

button:hover {
    opacity: 0.8;
}

.section-title {
    text-align: center;
    font-size: 3.7rem;
    font-weight: 600;
    font-family: 'sans-serif';
    letter-spacing: 0.1rem;
    line-height: 4.5rem;
    color: var(--text-para-dark);
    animation: fade 0.3s ease-in forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Navbar section */
#header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
}

#header .header {
    min-height: 8vh;
}

#header .back-btn {
    margin-left: 15%;
    font-size: 3.2rem;
    font-weight: 400 !important;
    color: var(--color-dark-grey);
}

.auth-header {
    background-color: var(--text-light);
}

.header .nav-bar {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 10px 10px;
}

#header .brand img {
    width: 100%;
    height: auto;
    max-width: 70px !important;
}

#header .nav-list ul {
    list-style: none;
    position: absolute;
    background-color: var(--text-light);
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: 0.5s ease left;
}

#header .nav-list ul.active {
    left: 0%;
}

#header .nav-list ul a {
    font-size: 1.9rem !important;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-decoration: none;
    color: var(--text-para-dark);
    padding: 10px;
    display: block;
}

.login-btn {
    padding: 15px 45px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(to right, #C2C3C5 0%, #07ABB2 100%);
    color: var(--text-light) !important;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.07rem;
    cursor: pointer;
    margin-top: 10px;
}

#header .nav-list ul a::after {
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: rgba(240, 248, 255, 0.021);
    font-size: 13rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: 0.3s ease letter-spacing;
}

#header .nav-list ul li:hover a::after {
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: initial;
}

#header .nav-list ul li:hover a {
    color: var(--color-dark-grey);
}

#header .nav-list ul li a:active {
    color: var(--text-para-dark) !important;
}

#header .hamburger {
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 3px solid var(--text-para-dark);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(0.8);
    margin-right: 2px;
}

#header .hamburger:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 1px solid var(--text-para-dark);
    animation: hamburger_puls 1s ease infinite;
}

#header .hamburger .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: var(--text-para-dark);
    z-index: -1;
}

#header .hamburger .bar::after,
#header .hamburger .bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: var(--text-para-dark);
    transition: 0.3s ease;
    transition-property: top, bottom;
}

#header .hamburger .bar::after {
    top: 8px;
}

#header .hamburger .bar::before {
    bottom: 8px;
}

#header .hamburger.active .bar::before {
    bottom: 0;
}

#header .hamburger.active .bar::after {
    top: 0;
}

/* Navbar section ends */

#footer {
    padding: 4rem 0rem 1rem 0rem;
    height: auto;
    background-color: var(--text-dark);
}

#footer .footer {
    min-height: auto;
    width: 90%;
    margin: auto;
}

.footer__wrapper {
    width: auto;
}

.footer__logo {
    margin-bottom: 4rem;
}

.footer__logo img {
    display: block;
    width: 70px !important;
    height: auto;
    max-width: 100% !important;
}

.footer ul {
    list-style: none;
}

.footer__socials li {
    display: inline-block;
    color: var(--text-light) !important;
}

.footer__socials li a {
    color: var(--text-light) !important;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.06rem !important;
}

.footer__socials li i {
    color: var(--text-light);
}

.footer__socials1 li {
    display: inline-block;
    margin-right: 0.5rem;
}

.footer__text__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    color: var(--text-para);
    letter-spacing: 0.2rem;
    font-weight: 400;
    font-weight: 600;
}

.footer__text a {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 2em;
    letter-spacing: 0.1rem;
}

#footer h4 {
    margin-top: 2rem;
    text-align: center;
    letter-spacing: 0.1rem;
    font-weight: 400 !important;
    font-size: 1.2rem;
    color: var(--text-light);
}

.footer__socials1 .footer__socials__list li .fa-facebook {
    color: #395185 !important;
    font-size: 2rem;
    border: 1px solid #395185;
    padding: 10px 15px;
}

.footer__socials1 .footer__socials__list li .fa-linkedin {
    color: #0A66C2;
    font-size: 2rem;
    padding: 10px 15px;
    border: 1px solid #0A66C2;
}

@media only screen and (min-width: 768px) {
    .header .nav-bar {
        width: 95%;
    }

    #footer {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    #footer .footer {
        width: 55% !important;
    }

    .footer__text a {
        margin-bottom: 1rem;
    }

    .footer__logo {
        margin-bottom: 2rem;
    }
}

@media only screen and (min-width: 991px) {
    html {
        font-size: 55%;
    }

    #header .brand img {
        max-width: 90px !important;
    }

    #footer .footer {
        width: 50% !important;
    }
}

@media only screen and (min-width: 1200px) {
    html {
        font-size: 62.5%;
    }

    .section-title {
        text-align: center;
    }

    /* header */
    .header .nav-bar {
        align-items: center;
        max-width: 78% !important;
        padding: 10px 0px !important;
    }

    #header .hamburger {
        display: none;
    }

    #header .nav-list ul {
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
        background-color: transparent;
    }

    #header .nav-list ul li {
        display: inline-block;
    }

    #header .nav-list ul li a {
        font-size: 1.8rem;
    }

    #header .nav-list ul a:after {
        display: none;
    }

    #header .back-btn {
        margin-left: 25%;
    }

    #footer .footer {
        width: 45% !important;
        margin: auto;
    }

    .footer__logo img {
        width: 250px !important;
    }
}
