* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: rgb(255, 72, 0);
    --secondary-color: rgb(49, 49, 49);
}

header {
    background: var(--secondary-color);
    height: 15vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    font-size: 1.7em;
    color: white;
    font-weight: 900;
}

.head {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav ul li a {
    color: white;
    font-weight: 300;
    font-size: 0.8em;
}

.btn {
    background: var(--primary-color);
    width: 140px;
    height: 46px;
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 400;
    transition: .4s;
}

.btn:hover {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.topic {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.788), rgba(0, 0, 0, 0.576), rgba(0, 0, 0, 0.274)), url(img/luca-bravo-9l_326FISzk-unsplash.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topic h1 {
    color: white;
    font-size: 3.6em;
}

.web {
    height: auto;
    padding: 0 0 10vh 0;
}

.text {
    height: 40vh;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 130px;
}

.text1 {
    width: 50%;
}

.text2 {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

.text2 img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.btn1 {
    background: var(--primary-color);
    width: 140px;
    height: 46px;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 400;
    transition: .4s;
}

.HEIGHT {
    line-height: 30px;
    width: 90%;
}

footer {
    height: auto;
    padding: 5vh 0 10vh 0;
    background: var(--secondary-color);
}

.footer {
    height: 40vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background: var(--secondary-color);
}

.link1 p {
    color: white;
    width: 250px;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.link2 h6 {
    color: white;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 15px;
}

.link2 ul li {
    margin-bottom: 10px;
}

.link2 ul li a {
    color: white;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
}

.link {
    display: flex;
    gap: 10px;

}

.link img {
    height: 20px;
}

.link3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link3 h6 {
    font-size: 1.2em;
    font-weight: 600;
    color: white;
}

.link p {
    color: white;
    font-size: 0.9em;
}

@media screen and (max-width:760px) {
    .logo {
        font-size: 1.4em;
    }

    nav ul {
        gap: 30px;
    }

    .web {
        padding: 20dvh 0 40dvh 0;
    }

    .text {
        flex-direction: column;
        margin-top: 200px;
        margin-bottom: 200px;
        padding: 20dvh 0 20dvh 0;
    }

    .text1 {
        width: 70%;
    }

    .footer {
        text-align: center;
        justify-content: center;
        gap: 20px;
        height: 80vh;
    }
}

@media screen and (max-width:610px) {
    nav ul {
        position: absolute;
        top: 70px;
        right: 0;
        background: teal;
        width: 100%;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        transition: height 0.3s ease-in-out;
    }

    nav ul.active {
        height: 260px;
    }

    .hamburger {
        display: flex;
    }
}

@media screen and (max-width:540px) {
    .topic h1 {
        font-size: 2.2em;
    }

    .footer {
        height: 120vh;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media screen and (max-width:390px) {
    .web {
        padding: 30dvh 0 60dvh 0;
    }
}