

/* GLOBAL */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-display: swap;
}
body{
    display: flex;
    justify-content: center;
    align-items:center;
    background-color: rgb(245, 245, 245);
}

.row{
    display: flex;
    flex-direction: row;
}
.column{
    display: flex;
    flex-direction: column;
}

/* MAIN CONTAINER */

.container{
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* IMAGES SLIDER CONTAINER */
.images-slider{
    justify-content: center;
    overflow: hidden;
    margin-top: 29px;
}
.images{
    width: 100vw;
    height: auto;
    justify-content: flex-start;

    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow: hidden;
    overflow-x: scroll; 

    -moz-user-select: none;    /* TO DISABLE IMAGE SELECT */
    -webkit-user-select: none;
    user-select: none;

    -webkit-overflow-scrolling: touch;    /* Enable Safari touch scrolling physics */
}
.images::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}
.image-container{
    position: relative;
    min-width: 100vw;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.image-container img{
    width: 100vw;
    min-width: 100vw;
    height: 100%;

}
.images-overlay{
    display: inline-block;
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    min-width: 100vw;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.65);
}
@keyframes sliderInfoAnimation{
    from{
        bottom: -12.5rem;
        opacity: 0;
    }
    to{
        bottom: 0;
        opacity: 1;
    }
}
@keyframes sliderInfoBorderAnimation{
    from{
        left: -7.5rem;
        opacity: 0;
    }
    to{
        left: -1rem;
        opacity: 1;
    }
}
.slider-info{
    position: relative;
    color: #fff;
    margin-left: 95px;
    justify-content: center;
    align-items: flex-start;
    max-width: 75ch;
    padding-left: 2rem;
    padding-bottom: .73rem;
    animation-name: sliderInfoAnimation;
    animation-duration: 1.25s;
    animation-timing-function: ease;
    
}
.slider-info-border{
    position: absolute;
    width: 8px;
    height: 100%;
    background-color: #F0502B;
    top: 0;
    left: -1rem;
    animation-name: sliderInfoBorderAnimation;
    animation-duration: 1.3s;
    animation-timing-function: ease;
}
.slider-info h1{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 48px;
    font-weight: 700;
    padding-bottom: 1rem;
}
.slider-info p{
    line-height: 1.5;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 400;
    text-shadow: -0.5px 0.5px 3px #00000042;
    padding-bottom: 1rem;
}
.slider-info-button{
    width: auto;
    font-size: 17px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    padding: .75rem 1.25rem;
    letter-spacing: 1.5px;
    background-color: #000000;
    transition: all .5s ease;
}
.slider-info-button:hover{
    color: #F0502B;
    background-color: #ffffff;
}

/* USE .zoom-animation CLASS FOR SLOW IMAGE ZOOM IN ANIMATION */
@keyframes slowZoom{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.07);
    }
}

.zoom-animation{
    animation-name: slowZoom;
    animation-duration: 8s;
    animation-fill-mode: forwards;
}

/* SLIDER FOOTER */
.images-slider-footer{
    position: relative;
    top: -85px;
    width: 100%;
    min-height: 95px;
    max-height: 95px;
    align-items: center;
}
.images-slider-footer .links{
    width: 665px;
    min-width: 500px;
    color: white;
    background-color: #0e0e0e;
    justify-content: flex-end;
    align-items: center;
    padding: .9rem;
}
.images-slider-footer .links > *{
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    padding: .75rem 1.2rem;
    letter-spacing: 1.5px;
    animation-name: buttonHoverAnimationEnd;
    transition: all .3s ease;
}
.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;
}
.images-slider-footer .number:hover{
    border: 1.5px solid rgb(255, 255, 255);
    background-color: rgba(226, 115, 25, 0);
}
.images-slider-footer .quote:hover{
    color: #F0502B;
    background-color: white;
}

/* 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;
    }
}

/* used in services section buttons and slideshow footer buttons */
.links-hover-animation{
    position: relative;
    transition: all .3s ease;
    animation-duration: .3s;
    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;
}



/* ABOUT US */
.about-us-container{
    width: 100%;
    position: relative;
    top: -40px;
    justify-content: center;
    align-items: center;
}
.about-us-description, .about-us-image{
    width: 50%;
    height: 83.4vh;
}
.about-us-description{
    justify-content: center;
    margin-left: 4rem;
}
.about-us-description > *{
    padding: 1rem;
}
.about-us-description h1{
    position: relative;
    font-size: 32px;
    font-weight: 900;
    text-transform:  uppercase;
    letter-spacing: 3.5px;
    padding-bottom: 3rem;
}
.about-us-description h1::after{ /* line below about us title */
    content: '';
    height: 3px;
    width: 120px;
    background-color: #ff6340;
    position: absolute;
    top: 5.25rem;
    left: 0rem;
    margin: 0 1rem;
}
.about-us-description p {
    max-width: 70ch;
    font-size: 16px;
    font-weight: 400;
    color: rgb(44, 44, 44);
    letter-spacing: .5px;
}
.about-us-description a {
    cursor: pointer;
    color: rgb(44, 44, 44);
    align-self: flex-start;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin: 1rem;
    padding: 0;
    letter-spacing: 1.5px;
    transition: all .3s ease;
}
.about-us-description a:hover{
    color: #F0502B;
}

@keyframes imageSlideInAnimation {
    from{
        opacity: 0;
        right: -15rem;
    }
    to{
        opacity: 1;
        right: 0;
    }
}
.about-us-image{
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0, 0, 0.3, 1.04);
}
.about-us-image img{
    width: 60%;
    height: auto;
}

/* VIDEO */
@keyframes videoAnimation{
    0%{
        opacity: 0;
        bottom: -50rem;
    }
    100%{
        opacity: 1;
        bottom: 0;
    }
    
}


.home-video{
    position: relative;
    height: 75vh;
    background-color: transparent;
    animation-duration: 1.5s;
    display: none;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.video-animation{
    animation-name: videoAnimation;
    display: block;

}
.home-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SERVICES */
.services-container{
    width: 100%;
    align-items: center;
}
.services-description, .services-images{
    width: 50%;
    height: 83.4vh;
}
/* SERVICES DESCRIPTION */
.services-description{
    justify-content: center;
    margin-left: 4rem;
}
.services-description > *{
    padding: 1rem;
}
.services-description h1{
    color: #131313;
    position: relative;
    font-size: 32px;
    font-weight: 900;
    text-transform:  uppercase;
    letter-spacing: 3.5px;
    padding-bottom: 3rem;
}
.services-description h1::after{ /* line below about us title */
    content: '';
    height: 3px;
    width: 120px;
    background-color: #ff6340;
    position: absolute;
    top: 5.25rem;
    left: 0rem;
    margin: 0 1rem;
}
.services-description p {
    max-width: 70ch;
    font-size: 16px;
    font-weight: 400;
    color: rgb(44, 44, 44);
    letter-spacing: .5px;
}
.services-buttons a {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: .75rem 1.2rem;
    letter-spacing: 1.5px;
    animation-name: buttonHoverAnimationEnd;
}
.services-buttons .number{
    border: 1.5px solid #131313;
    background-color: #131313;
}
.services-buttons .number i{
    padding-right: .5rem;
}
.services-buttons .quote{
    color: #F0502B;
    border: 1.5px solid #F0502B;
    margin-left: 1rem;
}
.services-buttons .number:hover{
    border: 1.5px solid #F0502B;
    background-color: #F0502B;
}
.services-buttons .quote:hover{
    color: white;
    background-color: #F0502B;
}

/* SERVICES IMAGES */
.services-images {
    justify-content: center;
    align-items:center;
    margin: 4rem 0;
}
.services-images a{
    text-decoration: none;
}

/* animations bellow are applied on services images on scroll of services section */
@keyframes servicesOverlayAnimation{
    0%{
        opacity: 0;
        top: 10rem;
    }
    100%{
        opacity: 1;
        top: 0;
    }
}
.services-images-overlay-animation{
    animation-name: servicesOverlayAnimation;
    animation-duration: .75s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
@keyframes servicesImagesAnimation{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.services-images-animation{
    animation-name: servicesImagesAnimation;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.services-images-overlay{
    position: relative;
    width: 275px;
    height: 275px;
    margin: .25rem;
    overflow: hidden;
    opacity: 0;
}
.services-images .services-images-overlay img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 0;
}
.services-images-overlay h3{
    height: 100%;
    display: grid;
    place-items: center;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    padding: 0 3rem;
    letter-spacing: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all .5s ease;
 }
.services-images-overlay h3:hover{
    background-color: rgba(0, 0, 0, 0.7);
}