@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    max-width: 100vw;
    background-color: #eaeaea;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

a, a:hover, a:visited, a:focus, a:active{
    color: #1a1919;
    text-decoration: none;
}

.navbar{
    display: flex;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    justify-content: space-around;
    align-items: center;
    transition: all 350ms ease-in-out;
    background-color: #fff;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.logo{
    display: flex;
    height: 100%;
    height: 60px;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.logo > img{
    height: 100px;
    width: auto;
    padding: 10px;
}

.links{
    display: inline-flex;
    height: 60px;
    align-items: center;
    text-align: center; 
    list-style: none;
    z-index: 9;
}


.link{
    width: 120px;
    height: 60px;
    line-height: 60px;
    font-size: 1em;
    font-weight: 400;
    cursor: pointer;
    transition: all 250ms ease-in-out;
}

.link:hover{
    color: white;
    background-color: #168dee;
}

.active{
    background-color: #387fb9;
}

.active > li{
    color: white;
}

.section1, .section2, .section3, .section4{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.section__container{
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    top: 10px;
}

.section__title{
    font-size: 20px;
    margin-left: 24px;
}

.section {
    position: relative;
    min-height: calc(100vh);
    background: url('../img/wave.svg') no-repeat center;
}

.container{
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
    flex-direction: column;
    top: 30px;
    padding: 30px;
}

.title{
    font-size: 24px;
    color: #eaeaea;
}

.subtitle{
    font-size: 10px; 
    color: black;
    margin-bottom: 6rem;
}

.description{
    font-size: 18px;
    color: black;
}

.burger_container{
    display: none;
    width: 100%;
}

.burger{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor:pointer;
    border-radius: 50%;
    transform: rotateY(180deg);
    transition: 250ms all;
}

.burger:hover{
    background-color: #e5e5e5;
}
   
.burger .line{
    background: rgb(30, 29, 31);
    border-radius: 5px;
    height: 2px;
    margin: 3px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);

}


.line:nth-of-type(1){
    width:50%;
    
}

.line:nth-of-type(2){
    width:100%;
}


.line:nth-of-type(3){
    width:75%;

}


.input[type="checkbox"]{
    display:none;
}


.input[type="checkbox"]:checked ~ .line:nth-of-type(1){
    transform-origin:bottom;
    transform:rotatez(45deg) translate(3px,1px);
}


.input[type="checkbox"]:checked ~ .line:nth-of-type(2){
    
    transform-origin:top;
    transform:rotatez(-45deg)
}


.input[type="checkbox"]:checked ~ .line:nth-of-type(3){
    
    transform-origin:bottom;
    width:50%;
    transform: translate(11px,-4px) rotatez(45deg);

}


nav.open > ul{
    transform: translateY(0);
    
}

@media screen and (max-width: 1024px){
    .navbar{
        display: flex;
        width: 100%;
        justify-content: space-around;
    }

    .logo{
        padding-left: 24px;
        justify-content: flex-start;
        width: 100%;
        height: 60px;
        z-index: 999999999999999999999;
    }

    .links{
        position: absolute;
        width: 100%;
        height: 300px;
        top: 60px;
        justify-content: center;
        flex-direction: column;
        background-color: white;
        transform: translateY(-360px);
        transition: all 250ms ease-in-out;
    }

    .link{
        width: 100%;
    }

    .burger_container{
        padding-right: 24px;
        display: flex;
        height: 60px;
        align-items: center;
        background: #fff;
        justify-content: flex-end;
        z-index: 999999999999999999999;
    }

    .title{
        font-size: 32px;
        text-align: center;
        margin-bottom: 2rem;
    }

    .subtitle{
        font-size: 22px;
        text-align: center;
    }
}
td,
th {
    border: 1px solid rgb(190, 190, 190);
    padding: 10px;
	text-align: center;
}

td {
    text-align: center;
	width: 200px;
}

tr:nth-child(even) {
    background-color: #eee;
}

th[scope='col'] {
    background-color: #696969;
    color: #fff;
	
}

th[scope='row'] {
    background-color: #d7d9f2;
}

caption {
    padding: 10px;
    caption-side: top;
}

table {
    border-collapse: collapse;
    border: 2px solid rgb(200, 200, 200);
letter-spacing: 1px;
    font-family: sans-serif;
    font-size: 0.8rem;
}
