html {
    overflow-x: hidden;
}

    @font-face {
        font-family: 'Titillium Web Bold';
        src: url('../fonts/titillium-web-bold/titilium-web-bold.ttf');
    }
  
    @font-face {
        font-family: 'Titillium Web Regular';
        src: url('../fonts/titillium-web-regular/titilium-web-regular.ttf');
    }

    @font-face {
        font-family: 'Dosis';
        src: url('../fonts/dosis-variable/dosis-variable.ttf');
    }

.heading-wrapper {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 15px;
    padding-left: 15px;
}

.heading-wrapper.one {
    opacity: 1;
}

.heading-wrapper.two {
    opacity: 0;
}

.heading-wrapper.three {
    opacity: 0;
}
.heading-wrapper.four {
    opacity: 0;
}

@media only screen and (max-width: 1199px) {
    .heading-wrapper.one {
        opacity: 1;
    }

    .heading-wrapper.two {
        opacity: 0;
        display: none;
    }

    .heading-wrapper.three {
        display: none;
    }
}

.heading-wrapper h1 {
    font-family: 'Titillium Web Bold', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
}

.heading-wrapper p {
    font-family: 'Dosis';
    font-size: 20px;
}

.heading-wrapper h1, .heading-wrapper p{
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    .heading-wrapper h1 {
        font-family: 'Titillium Web Bold', sans-serif;
        font-size: 20px;
    }
    
    .heading-wrapper p {
        font-family: 'Dosis';
        font-size: 16px;
    }
}

.logo-row {
    height: 100vh;
}

.logo-row .logo-container {
    padding-right: 15px;
    padding-left: 15px;
}

@media only screen and (max-width: 1199px) {
    .logo-row {
        height: auto;
    }

    .logo-container {
        border-right: 0;
        padding-bottom: 50px;
        padding-top: 50px;
    }
}

.logo-container a.loc-button {
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Titillium Web Bold', sans-serif;
    font-size: 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
}

@media only screen and (max-width: 1500px) {
    .logo-container a.loc-button {
        font-size: 20px;
    }

}


@media only screen and (max-width: 1300px) {
    .logo-container a.loc-button {
        font-size: 17px;
    }

}

@media only screen and (max-width: 1024px) {
    .logo-container a.loc-button {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .logo-container a.loc-button {
        font-size: 16px;
    }

}


.logo-container img {
    filter: brightness(0) invert(1);
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    transition: all .3s ease;
}

.logo-container img:hover {
    filter: none;
    transform: scale(1.2)
}

.logo-container a.img-button {
    text-align: center;
    transition: all .3s ease;
}


.logo-container a.loc-button:hover {
    transform: scale(1.2)
}

.logo-row .logo-container a.loc-button:after {
    opacity: 0;
    background: #3b8629;
    bottom: -20px;
    content: '';
    height: 30px;
    position: absolute;
    right: 20px;
    transform: skewX(45deg);
    width: 50px;
}

.logo-row .logo-container:nth-of-type(2n+2) a.loc-button:after {
    background: #2c651f;
}