@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    src: url('/fonts/nunito-v26-latin-600.woff2') format('woff2');
}

:root {
    --ground-color: #eff0eb;
    --second-color: #b083f5;
    --third-color: #CDAEFB;
    --fourth-color: #dbc6fc;
    --text-color: #1b194b;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--ground-color);
    font-family: 'Nunito', sans-serif;
    max-width: 100%;
    overflow-x: hidden;
    text-rendering: auto;
    scroll-behavior: smooth;
    color: var(--text-color);
}



.call-to-action {
    background-color: var(--third-color);
    padding: 5px;
    font-size: 18px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 5px;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.253);
    max-width: max-content;
    max-height: 35px;
}

.call-to-action:hover {
    opacity: .8;
}



header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    background-color: rgba(255, 255, 255, .15);
    box-shadow: 0px 3px 5px -5px black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(5px);
    z-index: 1;
}

header img {
    height: auto;
    width: 200px;
    margin-left: 20px;
    margin-top: 5px;
}

header nav {
    width: 400px;
    margin-right: 50px;
}

header nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul li {
    list-style: none;
    padding: 4px;
    margin: 10px;
    position: relative;
}

header .about-li {
    min-width: fit-content;
}

header nav ul .header-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--second-color);
    transition: width 0.3s ease;
}

header nav ul .header-link:hover::before {
    width: 100%;
}

header nav ul .header-contact-btn {
    background-color: var(--third-color);
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.253);
}

header nav ul .header-contact-btn:hover {
    opacity: .8;
}

header nav ul li a {
    text-decoration: none;
    color: black;
    white-space: nowrap;
}

.toggle-btn {
    position: absolute;
    top: 30px;
    right: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-btn .bar {
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 10px;
    transition: .2s;
}

.header-img-container {
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    align-items: center; 
    height: 100%;
}

@media (max-width: 800px) {
    header img {
        margin-left: 5px;
        margin-top: 0px;
        width: 170px;
    }

    .header-img-container a:nth-of-type(2) {
        display: none;
    }

    .toggle-btn {
        display: flex;
    }

    .toggle-btn.active {
        margin-top: 0px;
    }

    .toggle-btn .bar1.active {
        width: 10px;
    }

    .toggle-btn .bar2.active {
        width: 10px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .toggle-btn .bar3.active {
        width: 10px;
        margin-left: 10px;
    }

    .navbar-links {
        width: 150px;
        border-bottom-left-radius: 10px;
        position: absolute;
        right: 0;
        background-color: rgba(255, 255, 255, .15);
        box-shadow: 0px 3px 5px -5px black;
        backdrop-filter: blur(5px);
        transform-origin: middle;
        transform: scaleX(0);
        transition: transform 0.1s ease-out, width 0.1s ease-out;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header ul {
        flex-direction: column;
        width: 150px;
        padding: 0;
    }

    .navbar-links li {
        width: 150px;
        text-align: center;
    }

    .navbar-links.active {
        display: flex;
        align-items: center;
        justify-content: space-between;
        transform: scaleX(1);
        transition: transform 0.1s ease-in, width 0.1s ease-in;

    }

    header nav ul .header-contact-btn {
        background-color: transparent;
        padding: 0px;
        border-radius: 0px;
        box-shadow: 0px 0px 0px black;
    }

    header nav ul .header-link:hover {
        border-bottom: none;
        padding: 4px;
        border-radius: 5px;
        opacity: .6;
    }

    header nav ul .header-link:hover::before {
        width: 0%;
    }
}

/*================FIRST SECTION==============*/

main {
    padding-top: 100px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 70px;
    max-width: 1000px;
}

li {
    margin-left: 50px;
}

/*=========FOOTER========*/

.custom-shape-divider-bottom-1698520873 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1698520873 svg {
    position: relative;
    display: block;
    width: calc(115% + 1.3px);
    height: 62px;
}

.custom-shape-divider-bottom-1698520873 .shape-fill {
    fill: var(--second-color);
}

footer {
    background-color: var(--second-color);
    max-width: 100vw;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
}

footer h2 {
    margin: 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav li {
    margin-left: 10px;
    margin-right: 10px;
    list-style: none;
    color: black;
}

.footer-nav li a {
    color: black;
}

.footer-nav li:hover a {
    opacity: .6;
}
.my-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    color: black;
    text-decoration: none;
}

.my-logo span {
    margin-left: 5px;
    word-break: keep-all;
}

.my-logo span:hover {
    opacity: .6;
    text-decoration: underline;
}

@media (max-width: 600px) {
    footer {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 20px;
        padding-bottom: 50px;
    }

    footer .my-logo {
        width: 100%;
        margin-top: 40px;
    }
}