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

html,
body {
    width: 100%;
    height: 100%;
    position: relative;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background-color: #2a9d8f;
    border-bottom: 1px solid black;
}

nav .nav-r a {
    text-decoration: none;
    color: black;
    font-size: 3vw;
    font-weight: 800;
}

nav .nav-l-t {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-evenly;
}

nav .nav-l-t a {
    text-decoration: none;
    color: black;
    font-size: 2vw;
    font-weight: 800;
}

nav .nav-l-i {
    display: none;
}


@media (max-width : 600px) {
    nav .nav-r a {
        font-size: 5vw;
    }

    nav .nav-l-t {
        display: none;
    }

    nav .nav-l-i {
        display: flex;
    }

    nav .nav-l-i i {
        font-size: 4vw;
    }

}


section {
    min-height: 70vh;
    min-width: 95vw;
    display: flex;
    justify-content: center;
    align-items: center;

}

.sec-r {
    width: 50%;
    padding: 0 0 0 40px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    flex-direction: column;
}

.sec-r h1 {
    font-size: 5vw;
}

.sec-r h1 span {
    color: #2a9d8f;
}

.sec-r p {
    font-size: 17px;
}

.sec-r button {
    border: 1px solid transparent;
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    background-color: #2a9d8f;
    color: white;
    font-size: 15px;
}

.sec-l {
    width: 50%;
}

.sec-l img {
    width: 100%;
}

footer {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    position: absolute;
    bottom: 0;
}


.foot-r a {
    text-decoration: none;
    font-size: 17px;
    color: black;
}

.foot-l a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    padding-left: 20px;
}

.foot-r a i {
    text-decoration: none;
    color: black;
}