* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

:root {
    --white: #ffffff;
    --blue: #1C438C;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--white);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 10px;
    width: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #183978;
}

body {
    min-height: 100vh;
    background: var(--white);
    color: var(--blue);
}

.nav {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 4%;
    transition: all .50s ease;
    background-color: var(--white);
    box-shadow: 5px 5px 5px -6px rgba(0,0,0,0.75);
}

.logo {
    color: var(--blue);
    font-weight: bold;
    font-size: 27px;
}

.navbar {
    display: flex;
    gap: 3vw;
}

.navbar a {
    color: var(--blue);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 5px 0;
    transition: all .50s ease;
}

.navigation{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25vw;
}
.left-nav{
    display: none;
}
.main {
    background-color: #00B4EB;
    border-radius: 40px;
    padding: 10px 25px;
    transition: all .3s;
}
.main:hover{
    background-color: #1C438C;
}

.main a {
    color: var(--white);
    font-weight: bold;
    font-size: 1rem;
    transition: all .50s ease;
}

#menu-icon {
    font-size: 38px;
    cursor: pointer;
    z-index: 1001;
    display: none;
}

@media (max-width:1280px) {
    header {
        padding: 14px 2%;
        transition: .2s;
    }

    
}

@media (max-width:940px) {
    .left-nav{
        display: block;
    }
    #menu-icon {
        display: block;
    }

    .navigation {
        position: absolute;
        top: 100%;
        right: -100%;
        background: black;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 10px;
        transition: all .50s ease;
    }

    .navigation a {
        display: block;
        margin: 12px 0;
        padding: 0px 25px;
        transition: all .50s ease;
        color: #ffffff;
        font-size: 20px;
    }

    .nav-open {
        position: absolute;
        top: 100%;
        right: 2%;
        padding: 16px 4px;
        background: #1D267D;
        display: flex;
        flex-direction: column;
        gap: 20px;
        border-radius: 10px;
        transition: all .50s ease;
    }
    .navbar{
        display: flex;
        flex-direction: column;
    }
    .main{
        padding: 0px;
    }
}

/* FOOTER */
.wave-bottom svg {
    margin-bottom: -25px;
}

.footer {
    background-color: #1C438C;
    width: 100%;
    min-height: 250px;
    padding-bottom: 20px;
}

.content-footer {
    display: flex;
    gap: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer .title-footer h1 {
    color: #ffffff;
    font-size: 42px;
    text-align: center;
    line-height: 50px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 5px;
    border-radius: 5em;
}

.social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    background-color: #fff;
    box-shadow: 0px 0px 4px #00000027;
    transition: 0.3s;
}

.social-button:hover {
    background-color: #ffffff;
    box-shadow: 0px 0px 6px 3px #00000027;
}

.social-buttons svg {
    transition: 0.3s;
    height: 18px;
}
.github svg {
    width: 20px;
    height: 20px;
    fill: #1c438c;
}
.github:hover{
    background-color: #e13232;
}
.github:hover svg{
    fill: #ffffff;
}
.linkedin svg {
    fill: #1c438c;
}

.linkedin:hover{
    background-color: rgb(42, 41, 41);
}
.linkedin:hover svg{
    fill: #ffffff;
}
.facebook svg {
    fill: #1c438c;
}
.facebook:hover {
    background-color: #007bff;
}
.facebook:hover svg{
    fill: #ffffff;
}

.instagram svg {
    fill: #1c438c;
}

.instagram:hover {
    background-color: #c13584;
}
.instagram:hover svg{
    fill: #ffffff;
}


.list-page ul {
    display: flex;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
}

.list-page ul li:nth-child(2)::before,
.list-page ul li:nth-child(2)::after {
    content: '|';
    color: #ffffff;
    margin: 0 40px;
}

@media (max-width:500px) {
    /* .list-page ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        font-size: 20px;
    } */

    /* .list-page ul li:nth-child(2)::before,
    .list-page ul li:nth-child(2)::after {
        display: none;
    } */
}

.list-page ul li a {
    color: #ffffff;
}

.copyright p {
    color: #ffffff;
    text-align: center;
}
