* {
    margin: 0;
    padding: 0;

    font-family: 'Raleway', sans-serif;
}

html {
    background-color: #8C080C;
}

.layout {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden
}

/* MAIN */
.header-container {
    padding: 0 30px;
    background-color: #8C080C;
    color: #ffffff;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.14);
    z-index: 999;
}

header .container {
    max-width: 100%;
}

header a {
    text-decoration: none;
}

header .row > div {
    padding-top: 10px;
    padding-bottom: 10px;
}

header .left-section #fta-logo {
    background-image: url("../images/fta_logo.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: min(15vw, 80px);
    height: min(15vw, 80px);
}

header .left-section .title {
    font-weight: bold;
    font-size: 1.2vw;
}

header .left-section #info-icon {
    font-size: 30px;
    opacity: 0.75;
    cursor: pointer;
    padding: 10px 0 0;
}

header .left-section #info-icon:hover {
    opacity: 1;
}

header .middle-section #social a {
    font-size: 25px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 40px;
    border: 1px solid #fff;
    margin: 5px;
    color: inherit;
    opacity: 0.75;
}

header .middle-section #social .row div {
    padding-top: 0;
    padding-bottom: 0;
}

header .middle-section #social a:hover {
    opacity: 1;
}

header .right-section .title {
    font-weight: bold;
    font-size: 1vw;
}

header .right-section #rff-logo {
    background-image: url("../images/rff_logo.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: min(15vw, 80px);
    height: min(15vw, 80px);
}

header .right-section #lff-logo {
    background-image: url("../images/lff_logo.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: min(15vw, 80px);
    height: min(15vw, 80px);
}

header .right-section #riga-logo {
    background-image: url("../images/riga_logo.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: min(35vw, 171px);
    height: min(16.35vw, 80px);
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 10px;
    }

    header .left-section .title {
        font-size: 4vw;
    }

    header .right-section .title {
        display: none;
    }

    header .right-section > div {
        justify-content: center !important;
    }

    header .right-section a #riga-flag .blue {
        font-size: 3.5vw;
    }

    header .right-section a #riga-flag .white {
        font-size: 3.5vw;
    }
}