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

body {
    font-family: 'PT Sans', sans-serif;
    color: #000;
}

.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

header {
    height: 80px;
    background-color: #FFF;
    padding-block: 13px;
    margin-bottom: 70px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    text-decoration: none;
    color: inherit;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 52px;
    padding-bottom: 4px;
}

ul {
    list-style: none;
}

.box {
    display: flex;
    align-items: center;
    gap: 10px;
}

li {
    font-family: 'Staatliches';
    font-size: 1.375rem;
    line-height: 1.75rem;
    letter-spacing: 0.03em;
}

#lang {
    font-family: 'Tourney';
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 0.7rem;
    letter-spacing: 0.04em;
    padding-left: 3px;
    padding-bottom: 5px;
}

.sec-wrapper {
    width: min(90%, 1200px);
    margin: 0 auto;
}

h1 {
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 3rem;
    letter-spacing: 0.04em;
    padding-top: 150px;
    margin-bottom: 40px;
}

h1::before {
    content: "";
    display: inline-block;
    width: 100px;
    height: 8px;
    background-color: #000;
    margin-bottom: 8px;
    margin-right: 20px;
}

.grid {
    border-top: 1px solid #BFBFBF;
    border-bottom: 1px solid #BFBFBF;
    padding: 20px 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

#insta {
    padding-top: 67px;
    padding-bottom: 56px;
}

.flip-card {
    background-color: transparent;
    width: 270px;
    height: 180px;
    perspective: 1000px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateX(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

.flip-front {
    background-color: #E6E6E6;
}

.flip-back {
    background-color: #1A1A1A;
    transform: rotateX(180deg);

    img {
        filter: invert();
    }
}