* {
    font-family: "Quicksand", sans-serif;
}

a {
    all: unset;
    cursor: pointer;
}

img, video, iframe {
    max-width: 100%;
}

ul, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
}

.footer {
    background-color: #277d00;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    color: white;
    text-align: center;
}

.header {
    background-color: #277d00;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.icon {
    color: white;
    font-weight: 600;
    margin-right: 3px;
}

.icon-list-item {
    margin: 1px 0;
}

.icon-list-text {
    font-weight: 600;
    font-size: 15px;
}

.iframe {
    height: calc(100vh - 95px);
    width: calc(100% - 4px);
}

.info {
    font-size: 12px;
    margin: 20px 0;
    font-weight: 500;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    gap: 50px;
}

.separator {
    width: 2px;
    background-color: #fff;
    height: 100px;
}

@media screen and (max-width: 768px) {
    .info {
        margin: 10px 0;
    }

    .icon-list-text {
        font-size: 13px;
    }

    .footer {
        padding: 30px 15px;
    }

    .row {
        flex-direction: column;
        gap: 30px;
    }

    .separator {
        display: none;
    }

}