@media (max-width: 1200px) and (min-width: 768px) {

    /* SLIDER INFO */
    @keyframes sliderInfoBorderAnimation{
        from{
            left: -7.5rem;
            opacity: 0;
        }
        to{
            left: -.2rem;
            opacity: 1;
        }
    }
    .slider-info{
        margin-left: 35px;
        max-width: 60ch;
    }
    .slider-info-border{
        width: 5px;
        top: -.1rem;
        left: -.2rem;
    }
    .slider-info h1{
        font-size: 26px;
        padding-bottom: .6rem;
    }
    .slider-info p{
        font-size: 12px;
        font-weight: 300;
        padding-bottom: .6rem;
    }
    .slider-info-button{
        font-size: 10px;
        font-weight: 200;
        padding: .5rem .8rem;
    }

    /* SLIDER FOOTER */
    .images-slider-footer{
        position: relative;
        top: -75px;
    }
    .images-slider-footer .links{
        width: 475px;
        min-width: 475px;
        padding: .7rem;
    }
    .images-slider-footer .links > *{
        text-align: center;
        font-size: 12px;
        font-weight: 300;
        padding: .5rem .8rem;
    }
    .images-slider-footer .number{
        border: 1.5px solid #F0502B;
        background-color: #F0502B;
    }
    .images-slider-footer .number svg{
        padding-right: .5rem;
    }
    .images-slider-footer .quote{
        border: 1.5px solid white;
        margin-left: 1rem;
    }

    /* used in .links-hover-animation:hover */
    @keyframes buttonHoverAnimation{
        0%{
            top: 0;
        }
        100%{
            top: -8px;
        }
    }

    /* used in .images-slider-footer .links > * */
    @keyframes buttonHoverAnimationEnd{
        0%{
            top: -8px;
        }
        100%{
            top: 0;
        }
    }


    .links-hover-animation{
        position: relative;
        transition: all .2s ease;
        animation-duration: .2s;
        animation-timing-function: linear;
        animation-fill-mode: forwards;
    }
    .links-hover-animation:hover{
        animation-name: buttonHoverAnimation;
    }

    /* slider footer buttons animations */
    @keyframes leftToRightButtonAnimation{
        0%{
            opacity: 0;
            left: -10rem;
        }
        100%{
            opacity: 1;
            left: 0;
        }
    }
    #leftToRight{
        position: relative;
        animation-name: leftToRightButtonAnimation;
        animation-duration: 1.5s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }

    @keyframes topToBottomButtonAnimation{
        0%{
            opacity: 0;
            top: -5rem;
        }
        100%{
            opacity: 1;
            top: 0;
        }
    }
    #topToBottom{
        opacity: 0;
        position: relative;
        animation-name: topToBottomButtonAnimation;
        animation-duration: 1.5s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }

    /* SLIDER BUTTONS */
    .slider-buttons{
        position: absolute;
        left: 47.45%;
        width: 100px;
        justify-content: center;
        align-items: center;
        justify-self: center;
    }
    .slider-buttons svg{
        opacity: .4;
        color: white;
        font-size: 13px;
        padding: .2rem;
    }
    .slider-buttons a:nth-child(1)  svg{ /* selecting first slide button */
        opacity: 1;
    }

    /* IMAGES SLIDER CONTAINER */
    .images{
        scroll-snap-type: x mandatory;
    }
    .image-container{
        scroll-snap-align: center;
    }

    /* ABOUT US */
    .about-us-container{
        top: -50px;
    }
    .about-us-description, .about-us-image{
        height: auto;
        margin: 0;
    }
    .about-us-description{
        justify-content: center;
        margin-left: 2rem;
    }
    .about-us-description > *{
        padding: .6rem;
    }
    .about-us-description h1{
        font-size: 26px;
        padding-bottom: 2rem;
    }
    .about-us-description h1::after{ 
        height: 2.5px;
        width: 102px;
        top: 3.7rem;
        left: -.5rem;
    }
    .about-us-description p {
        max-width: 60ch;
        font-size: 14px;
        color: rgb(29, 29, 29);
    }
    .about-us-description a {
        color: rgb(29, 29, 29);
        font-size: 14px;
    }
    .about-us-image img{
        width: 80%;
    }

    /* VIDEO */
    .video{
        width: 100vw;
        height: 40vh;
    }

    /* SERVICES */
    .services-description, .services-images{
        height: auto;
        margin: 4rem 0;
    }
    /* SERVICES DESCRIPTION */
    .services-description{
        margin-left: 2rem;
    }
    .services-description > *{
        padding: .6rem;
        padding-right: 1rem;
    }
    .services-description h1{
        font-size: 26px;
        padding-bottom: 2rem;
    }
    .services-description h1::after{ /* line below about us title */
        height: 2.5px;
        width: 102px;
        top: 3.7rem;
        left: -.5rem;
    }
    .services-description p {
        max-width: 60ch;
        font-size: 14px;
        color: rgb(29, 29, 29);
    }
    .services-buttons a {
        font-size: 10px;
        padding: .6rem 1rem;
    }
    .services-buttons .number{
        border: 1.5px solid #131313;
        background-color: #131313;
    }
    .services-buttons .number i{
        padding-right: .2rem;
    }
    .services-buttons .quote{
        margin-left: .6rem;
    }

    /* SERVICES IMAGES */
    .services-images {
        margin: 2rem 0;
    }
    .services-images-overlay{
        width: 175px;
        height: 175px;
        margin: .2rem;
    }
    .services-images .services-images-overlay img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        opacity: 0;
    }
    .services-images-overlay h3{
        font-size: 22px;
        padding: 0 1rem;
    }
}