:root{
    --color-primary: #f26122;
    --color-grey-dark-3: ##25272e;
}

html {
    font-size: 62.5%;
}

@keyframes movingFromLeft {

    0%{
        opacity: 0;
        transform: translateX(-4rem);
    }


    100%{
        opacity: 1;
        transform: translateX(0);
    }
    
}

/* Utilities */

.u-margin-bottom-large {
    margin-bottom: 8rem !important;
}

@media only screen and (max-width: 600px){

    .u-margin-bottom-large {
        margin-bottom: 4rem !important;
    }
    

}

.u-margin-bottom-medium {
    margin-bottom: 6rem !important;
}

.u-margin-bottom-small {
    margin-bottom: 4rem !important;
}

.u-margin-bottom-smallest{
    margin-bottom: 2rem !important;
}

.u-text-center{
    text-align: center !important;
}

.u-box-center{

     left: 50%;
     transform: translateX(-50% );
  
}


.u-margin-top-large {
    margin-top: 15rem !important;
}

@media only screen and (max-width: 900px){

    .u-margin-top-large {
        margin-top: 8rem !important;
    }

}

@media only screen and (max-width: 600px){

    .u-margin-top-large {
        margin-top: 6rem !important;
    }

}


/* Sections */


.section-service{
    position: relative;
    padding: 10rem 0;
}

@media only screen and (max-width:600px){
    .section-service{
        position: relative;
        padding: 5rem 0;
    }

}

.section-garage{
    position: relative;
    padding: 1rem 0 10rem 0;
}




/* TYPOGRAPHY */

.heading-primary{
    font-size: 5rem !important;
    font-family: 'Open Sans' sans-serif;
    font-weight: 800;
    color: var(--color-primary)
}

@media only screen and (max-width:900px){

    .heading-primary{
        font-size: 3.5rem !important;
    }
    
}

@media only screen and (max-width:600px){

    .heading-primary{
        font-size: 3rem !important;
    }
    
}


.heading-tertiary{
    font-size: 2.5rem !important;
    font-family: 'Open Sans' sans-serif;
    font-weight: 500;
    color: var(--color-grey-dark-3);
    line-height: 1.2;
    text-align: left;
}

@media only screen and (max-width:900px){

    .heading-tertiary{
        font-size: 1.5rem !important;
        font-weight: 300;
        line-height: 1.2;
        text-align: center;
        display: none;
    }
    
}




.service-heading p{
    font-size: 1.7rem;
    line-height: 1.5;
}

@media only screen and (max-width:600px){

    .service-heading p{
        font-size: 1.5rem;
        line-height: 1;
    }
    
}

iframe {
    height: 35rem;
}


@media only screen and (max-width:600px){

    iframe {
        height: 25rem;
    }
    
    
}




 /* Logo ***/ 
.logo-box{
   width: 200px;
   float: left;
   animation:  movingFromLeft .9s ease-in;
}

.logo-box__logo img{
    width: 100%;
 }




.form-container__paragraph-1{

    font-size: 1.8rem;
    margin-bottom: 2rem;

}


.master-slider{
    background-color: #f26122 !important;
   
}