* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hamburger {
    display: none;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

header {
    width: 100vw;
    height: auto;
    min-height: 50px;
    height: 50px;
    max-height: 51px;
    position: sticky;
    top: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav {
    height: 8vh;
    min-height: 70px;
    max-height: 80px;
    width: 1250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background: rgba(50, 50, 50, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 0.5em 1em;
    margin: 2vh;
    z-index: 3;
}

header nav .logo-con {
    display: block;
}

header nav .logo-con h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2em;
    color: white;
}

header nav .logo-con img {
    display: none;
}

header nav .navbar-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    list-style: none;
}

header nav .navbar-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 0.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

header nav .navbar-list li a:hover {
    background-color: rgb(85, 85, 85);
}

header nav .navbar-list li.active {
    background-color: rgb(46, 45, 45);
    border: 2px solid rgb(30, 158, 69);
}

header nav .navbar-list li a {
    padding: 0.5em 0.6em;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 200;
    font-size: 1em;
    color: white;
    transition: all 0.3s ease;
}

header nav .call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav .call-btn a {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    padding: 0.4em 0.8em;
    background-color: rgb(30, 158, 69);
    border: 3px solid black;
    outline: 2px solid rgb(30, 158, 69);
    text-decoration: none;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    color: white;
    transition: 0.4s all;
}

header nav .call-btn a:hover {
    background-color: green;
    border: 3px solid green;
    outline: 2px solid green;
}

.call-btn-mobile{
    display: none;
}

@media only screen and (min-width: 800px) and (max-width: 1200px) {
    header {
        min-height: calc(70px + 10px + 10px);
        top: 10px;
    }
    header nav {
        width: 96%;
        margin: 10px 0;
    }
}


@media only screen and (max-width: 800px) {
    .call-btn-mobile{
        display: block;
        position: fixed;
        bottom: 2vw;
        left: 2vw;
        height: 15vw;
        max-height: 65px;
        max-width: 65px;
        width: 15vw;
        border-radius: 50%;
        background: rgb(30, 158, 69);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2vw;
        z-index: 100;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .call-btn-mobile a i{
        color: black;
        font-size: 1.8em;
    }
    header {
        min-height:none;
        height: 10vh;

        top: 4vw;
    }
    header nav {
        min-height: none;
        max-height: none;
        width: 98%;
        margin: 0;
        border-radius: 12px;
        padding: 0.5em 1em;
        padding: 0.5em 1em;
        margin: 0;
    }
    .hamburger {
        display: block;
    }
    .hamburger .bar {
        display: block;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translateY(11.5px);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translateY(-11.5px);
    }
    header nav.active {
        border-radius: 16px 16px 0 0;
        transition: 0.2s;
    }
    header nav .navbar-list {
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(50, 50, 50, 0.7);
        border-radius: 0 0 12px 12px;
        padding: 0 0 0.5vh 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    }
    header nav .navbar-list.active {
        visibility: visible;
        opacity: 1;
    }
    header nav .navbar-list li {
        width: 96%;
        height: 9vh;
        margin: 0.5vh 0;
    }
    header nav .navbar-list li a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    header nav .navbar-list li:hover {
        background-color: rgba(75, 75, 75, 0.8);
    }
    header nav .navbar-list li:last-child:hover {
        background-color: transparent;
    }
    header nav > .call-btn {
        display: none;
    }
}
