* {
    font-family: "Montserrat", sans-serif;
}

body {
    margin: 0;
}

a {
    all: unset;
    cursor: pointer;
}

img, video, iframe {
    max-width: 100%;
}

.footer {
    background-color: #f45202;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: white;
    text-align: center;
    font-size: 12px;
}

.header {
    background-color: #f45202;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
}

.header-part {
    width: 33%;
}

.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;
}

.logo {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.logo:hover {
    transform: translateY(-2px) scale(1.03);
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
}

.logo-container {
    display: flex;
    justify-content: center;
}

.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;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.social-media-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-media a:hover .social-media-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7));
}

@media screen and (max-width: 768px) {
    .fake-div {
        display: none;
    }

    .footer {
        padding: 30px 15px;
    }

    .header {
        padding: 20px;
    }

    .header-part {
        width: 50%;
    }

    .info {
        margin: 10px 0;
    }

    .icon-list-text {
        font-size: 13px;
    }

    .header-part .logo-container {
        justify-content: start;
    }

    .row {
        flex-direction: column;
        gap: 30px;
    }

    .separator {
        display: none;
    }

    .social-media {
        gap: 20px;
        justify-content: end;
    }

    .social-media-icon {
        width: 25px;
        height: 25px;
    }

}