
@import url('https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900&display=swap');
/*Global styles*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --main-font: 'Source Sans Pro', sans-serif;
    --secondary-font: 'Herr Von Muellerhoff', cursive;
    --body-font: 'Cabin', sans-serif;
    --main-font-color-dark: #252525;
    --secondary-font-color: #ffce76;
    --body-font-color: #515151;
}

html {
    font-family: var(--body-font);
    font-size: 10px;
    color: var(--body-font-color);
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
    font-family: var(--body-font);
}

section {
    padding: 1.9rem 0;
    overflow: hidden;
}

img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
}

a {
    text-decoration: none;
}

p {
    font-size: 17px;
    font-family: var(--main-font);
    letter-spacing: .2rem;
    line-height: 30px;
}

.container {
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
    padding: 0 2.4rem;
}

.no-padding{
    padding: 0 0;
    margin: 0 0;
}


.center{
    text-align: center;
}

.white-info-text{
    font-size: 17px;
    font-family: var(--main-font);
    letter-spacing: .2rem;
    color: #fdfdfd;
    line-height: 30px;
    margin: 15px auto;
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #242f3f;
    display:flex;
    justify-content: center;
    align-items: center;
    z-index: 200000;
}

.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff;
    z-index: 200000;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}

.margin-output{
    margin-bottom: 30px;
    margin-top: 5px;
}

/* End of Global Styles */

/* Header and Menu Styles */
header { 
    width: 100%;
    position: Fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.5));
}

.nav {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo{
    position: relative;
    margin-top: 3rem;
    margin-left: 15px;
    left: 0;
    width: 20rem;
}

.logo-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.toll-free-number{
    color: white;
    font-weight: 400;
    font-size: 1.4rem;
    text-align: center;
    font-family: var(--body-font);
}

.menu-toggle {
    color: white;
    font-size: 2.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2.5rem;
    cursor: pointer;
    z-index: 1500;
}

.fa-times::before{
    display: none;
}

.fa-times {
    display: none;
}

.nav-list {
    list-style: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background-color: var(--main-font-color-dark);
    padding: 4.1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1250;
    transform: translateX(150%);
    transition: transform .5s;
}

.nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.8);
    z-index: 1000;
    opacity: 0;
    transform: scale(0);
    transition: opacity .5s;
}

.open .fa-times{
    display: block;
}

.open .fa-times::before{
    display: block;
}

.open .fa-bars {
    display: none;
}

.open .nav-list {
    transform: translateX(0);
}

.open .nav-list{
    transform: translateX(0);
}

.open .nav::before {
    opacity: 1;
    transform: scale(1);
}

.nav-item {
    border-bottom: 2px solid rgba(255, 255, 255, .3);
}

.nav-link {
    display: block;
    color: white;
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 1.4px;
    transition: color .5s;
}

.nav-link:hover,
.nav-link:active {
    color: var(--secondary-font-color);
}
/* End of Header and Menu Styles */

/* Hero Styles */

.hero{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(34, 40, 49, 1);
}

.hero-error{
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.6)), url("../images/dab-front.jpg");
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-text{
    position: relative;
    width: 80%;
    margin: 0 auto;
}

.slider{
    min-height: 100vh;
    position: absolute;
    left: 0;
    min-width: 100%;
    margin-left: 0;
    padding-left: 0;
}

.slider figure{
    position: absolute;
    width: 500%;
    height: 100%;
    margin: 0;
    left: 0;
    animation: 20s slider infinite;
}

.slider figure img{
    width: 20%;
    height: 100%;
    float: left;
    object-fit: cover;
}

.sub-headline{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8.5rem;
    font-family: var(--secondary-font);
    color: var(--secondary-font-color);
    font-weight: 100;
    line-height: .4;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeUp .5s forwards;
    animation-delay: .5s;
}

.first-letter{
    text-transform: uppercase;
    font-size: 10.3rem;
}

.headline {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.7rem;
    font-family: var(--main-font);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .5rem;
    margin-right: -.5rem;
    opacity: 0;
    animation: scale .5s forwards;
}

.headline-medium{
    font-size: 6.5rem;
    font-family: var(--secondary-font);
    color: var(--secondary-font-color);
    font-weight: 100;
    line-height: .4;
    letter-spacing: 2px;
    opacity: 1;
}

.headline-small{
    color: white;
    font-size: 2.4rem;
    font-family: var(--main-font);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .2rem;
    margin-right: -.5rem;
}

.headline-xsmall{
    color: white;
    font-size: 1.8rem;
    font-family: var(--main-font);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .2rem;
    margin-right: -.5rem;
  }

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.line {
    width: 100%;
    max-width: 8.4rem;
    height: .25rem;
    background-color: white;
    position: relative;
    opacity: 0;
    animation: grow 2s forwards;
    animation-delay: .9s;
}

.line-right::before,
.line-left::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: .6rem solid transparent;
    opacity: 0;
    animation: grow .5s forwards;
    animation-delay: 1.2s;
}

.line-right::before{
    border-right-color: white;
    right: 0;
}

.line-left::before{
    border-left-color: white;
    left: 0;
}

.asterisk{
    font-size: 1.2rem;
    color: var(--secondary-font-color);
    margin: 0 1.6rem;
    opacity: 0;
    animation: spin .5s forwards;
    animation-delay: 1s;
}

.single-animation{
    opacity: 0;
    animation: fadeDown .5s forwards;
    animation-delay: .5s;
}

.headline-description h5{
    color: white;
    font-size: 1.4rem;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    letter-spacing: 3px;
    margin-right: -3px;
}

.btn {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: -2px;
}

.cta-btn{
    font-size: 1.1rem;
    background-color: white;
    padding: .9rem 1.8rem;
    color: var(--main-font-color-dark);
    border-radius: .4rem;
    transition: background-color .5s;
}

.cta-btn-dark{
    font-size: 1.1rem;
    background-color: var(--main-font-color-dark);
    padding: .9rem 1.8rem;
    color: var(--secondary-font-color);
    border-radius: .4rem;
    transition: background-color .5s;
}

.cta-btn-dark:focus,
.cta-btn-dark:active,
.cta-btn-dark:hover{
    color: white;
    background-color: var(--secondary-font-color);

}

.cta-btn:focus,
.cta-btn:active,
.cta-btn:hover{
    color: white;
    background-color: var(--secondary-font-color);

}
/* End of Hero Styles */

/* Services Style */
.global-headline{
    text-align: center;
    margin-top: 1.9rem;
}

.discover-our-services{
    align-items: center;
    background: linear-gradient(to bottom, transparent,  rgba(34, 40, 49, 0.2)), rgba(34, 40, 49, 1);
    background-color: #222831;
    padding-bottom: 8rem;
}

.discover-our-services .global-headline {
    margin-top: 6.9rem;
}

.global-headline .asterisk {
    margin: 2.4rem 0;
}

.headline-services{
    letter-spacing: .7rem;
    margin-right: -.7rem;
    margin-top: .4rem;
}

.global-headline .sub-headline{
    letter-spacing: -1px;
    line-height: .42;
}

.services-info {
    text-align: center;
}

.services-description{
    margin-bottom: 3rem;
}

.services-description p{
    line-height: 1.6;
    margin-bottom: 2.4rem;
    color: white;}

.body-btn{
    font-size: 1.5rem;
    color: var(--secondary-font-color);
    position: relative;
    transition: color .5s;
}

.body-btn::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-font-color);
    transition: background-color .5s;
}

.body-btn:hover,
.body-btn:active,
.body-btn:focus {
    color: var(--main-font-color-dark);
}

.body-btn:focus::before,
.body-btn:active::before,
.body-btn:hover::before {
    background-color: var(--main-font-color-dark);
}

.service-group{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.6rem;
}

.service{
    position: relative;
    width: 100%;
    height: 20rem;
    background: #000;
    box-shadow: 0 .2rem .2rem rgba(0,0,0,.5);
}

.service .imgBox{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s ease-in-out;
}

.service .imgBox::before{
    content: attr(data-text);
    position: absolute;
    font-size: 1.9rem;
    background: linear-gradient(to bottom,  rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    bottom: 0;
    left: 0;
    padding: 1rem 1rem;
    width: 100%;
    text-align: center;
    font-weight: 900;
    color: rgba(255,255,255,1);
    z-index: 1;
    text-transform: uppercase;
}

.service .imgBox img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service:focus .imgBox img,
.service:active .imgBox img,
.service:hover .imgBox img{
    opacity: 0.7;
}

/* End of Service Style */

/* Start of our mission styles */

.mission-section{
    background: linear-gradient(to bottom, rgba(34, 40, 49, .5), rgba(34, 40, 49, .5)), url("../images/bg-promise.jpg") no-repeat;
    background-size: cover;
    box-sizing: border-box;
    background-position: center center;
    background-attachment: fixed;
}

.mission-section .row{
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-img{
    margin: 0 3.9rem;
    position: absolute;
}

.mission-img img{
    display: none;
}

.mission-text{
    padding: 5rem 1rem;
}


.mission-text p{
    line-height: 1.6;
    margin: 15px auto;
    color: white;
}
/* End of our mission styles */

/* Certificates styles */
.certificates-section{
    background: #222831;
    box-sizing: border-box;
    outline: none;
}

.logo-slider .item{
    background-color: white;
    box-shadow: 0 4px 5px black;
    width: 400px;
    height: 200px;
    border-radius: 8px;
    padding: 15px;
}

.logo-slider .item img{
    object-fit: scale-down;
    width: 100%;
    height: 100%;
}

.logo-slider .slick-slide{
    margin: 15px;
}

.item:hover{
    display: block;
    transition: all ease 0.3s;
    transform: scale(1.1) translateY(-5px);
}

.slick-dots li button:before{
    color: var(--secondary-font-color);
    transition: all ease 0.3s;
}

.slick-dots li.slick-active button:before{
    color: var(--secondary-font-color);
}

.slick-dots li button:before{
    font-size: 12px;
}

.slick-next:before,
.slick-prev:before{
    color: var(--secondary-font-color);
    font-size: 24px;
}

.triangle{
    position: relative;
    justify-content: center;
    padding: 20px 40px;
    background: #222831;
    min-height: 40vh;
    clip-path: polygon(100% 0%, 100% 50%, 50% 95%, 0 50%, 0 0);
}
/* End of certificate styles */

/* Follow us Styles */
.follow-work {
    position: relative;
    background: linear-gradient(to bottom, rgba(34, 40, 49, .8), rgba(34, 40, 49, .5)), url("../images/dab-front-cars.jpg") center no-repeat;
    background-size: cover;
    box-sizing: border-box;
    background-position: center center;
    background-attachment: fixed;
}

.follow-work .container{
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 35vh;
}

.follow-work .global-headline{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.between{
    display: flex;
    align-items: center;
}

.social-contact{
    margin: 6rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.social-contact-icon{
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.social-contact-icon .icon-name{
    padding-top: 15px;
    font-size: 3.2rem;
    text-align: center;
}

.social-contact-icon .icon-name:hover{
    color: var(--secondary-font-color);
    transition: 0.5s;
}

.social-contact img{
    height: 80px;
    width: 80px;
    opacity: 0.8;
    transition: 0.2s;
}

.social-contact img:hover{
    transform: scale(.1.2);
    opacity: 1;
}
/* End of Social Styles */

/* Gallery Styles */
.gallery-work {
    padding-top: 70px;
    background: rgba(34, 40, 49, 1);
    background-size: cover;
}

.asterisk-nopadding{
    margin: 0;
    padding: 0;
}

.container-gallery {
    box-sizing: border-box;
    justify-content: center;
    top: 0;
    display: flex;
    flex-direction: column;
    margin: 0 2.4rem;
}
.col-4{
    width: 100%;
    margin: 30px auto;
}

.col-8{
    width: 100%;
    margin: 10px auto;
}

.col-8 img{
        width: 100%;
        height: 500px;
        object-fit: cover;
}

.glide__arrows{
    position: relative;
    display: flex;
    margin: 20px auto;
    flex-direction: row;
    justify-content: initial;
}

.glide__arrows .glide__arrow{
    background: #515151;
    border: none;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 15%;
    color: var(--secondary-font-color);
    font-size: 22px;
    outline: none;
    margin-right: 15px;
    padding: 0;
    cursor: pointer;
}

.glide__arrows .glide__arrow .glide__arrow--left{
    float: left;
}

.glide__arrows .glide__arrow .glide__arrow--right{
    right: 0;
}

.glide__slide{
    transform: scale(.9);
    transition: all ease 0.5s;
}

.glide__slide.glide__slide--active{
    transform: scale(1);
}

.gallery-btn{
    position:absolute;
    top:70%;
}

.gallery-btn a{
    color: var(--main-font-color-dark);
}
/* End of Gallery styles */


/* Testimonial styles */

.testimonial-section{
    height: auto;
    background: #222831;
    display: flex;
    padding: 40px 0;
    flex-direction: column;
}

.testimonial-section .row{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: .5rem;
    width: 100%;
}

.testimonial-in{
    width: 100%;
    height: auto;
    margin: 40px 0;
    padding: 0px 20px 50px 20px;
    text-align: center;
    border: 1px solid #999;
}

.testimonial-in-image{
    width: 130px;
    height: 130px;
    margin: auto;
    position: relative;
    top: -60px;
}

.testimonial-in-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 80px;
}

.testimonial-in-content{
    width: 100%;
    height: auto;
    padding: 10px 0;
}

.testimonial-in-content p{
    color: white;
    font-size: 18px;
    font-family: var(--body-font);
    margin-bottom: 20px;
}

.testimonial-in-content h1{
    color: var(--secondary-font-color);
    font-size: 24px;
    font-weight: 400;
}

.testimonial-in:hover{
    border: 1px solid var(--secondary-font-color);
}

.testimonial-in:hover .testimonial-in-image:before{
    width: 130px;
    height: 130px;
    font-size: 60px;
    border-radius: 80px;
    line-height: 130px;
    bottom: 0;
    transition: .5s;
}
/* End of Testimonial styles */

/* contact styles */

.contact-section{
    background: #fff;
    padding: 60px 0;
}

.contact-section h1,
.contact-form h1{
    color: #222831;
}

.contact-container{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.contact-box{
    max-width: 100%;
    padding: 10px;
    text-align: center;
    color: #222831;
    cursor: pointer;
}

.contact-icon{
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 3px solid var(--secondary-font-color);
    color: var(--secondary-font-color);
    transform: rotate(45deg);
    margin-bottom: 30px;
    margin-top: 16px;
    transition: 0.3s linear;
}

.contact-icon i{
    line-height: 70px;
    transform: rotate(-45deg);
    font-size: 26px;
}

.contact-box:hover .contact-icon{
    background: var(--secondary-font-color);
    color: #222831;
}

.contact-title{
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-desc{
    font-size: 18px;
}

.map iframe{
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.contact-form{
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow:  13px 13px 45px #dbdbdb, 
                 -13px -13px 45px #ffffff;
}

.input-fields{
    display: flex;
    flex-direction: column;
}

.input-fields .center-logo{
    margin: 5px auto;
    width: 200px;
}

.logo-contact{
    height: 100%;
    width: 100%;
}

.input-fields,
.contact-img{
    width: 100%;
}

.input-fields h1{
    font-size: 2.8rem;
}

.input-fields p{
    font-size: 1.4rem;
    line-height: 1.6;
}

.contact-img{
    position: relative;
    padding: 20px;
}
.contact-img img{
    width: 100%;
    object-fit: contain;
}

.input-fields .input,
.msg textarea{
    margin: 10px 0;
    background: transparent;
    border: 0px;
    border-bottom: 2px solid #ffce76;
    padding: 10px;
    font-family: var(--main-font);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #222831;
    width: 100%;
}

.msg textarea{
    height: 140px;
}

::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
    color: #222831;
}
::-moz-placeholder {
/* Firefox 19+ */
    color: #222831;
}
:-ms-input-placeholder {
/* IE 10+ */
    color: #222831;
}
/* End of contact styles */

.inverse-triangle{
    background-color: white;
}

/* Footer Styles */
footer {
    padding: 7.9rem 0;
    background-color: #121212;
    color: white;
    text-align: center;
    position: relative;
}

.back-to-top{
    width: 7rem;
    height: 7rem;
    background-color: #121212;
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.back-to-top i {
    display: block;
    color: white;
    padding: 2rem;
    font-size: 2rem;
    animation: up 1.5s infinite;
}

.footer-content {
    overflow: hidden;
}

.footer-content h4{
    font-size: 1.9rem;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.footer-content .asterisk{
    margin: 2.4rem 0;
}

.footer-content-about{
    margin-bottom: 5.4rem;
}

.footer-content-about p{
    line-height: 2;
}

.social-icons{
    list-style: none;
    margin-bottom: 5.4rem;
    display: flex;
    justify-content: center;
}

.social-icons i{
    font-size: 2rem;
    color: white;
    padding: .8rem 2rem;
    opacity: .5;
    transition: color .5s;
}

.social-icons i:hover,
.social-icons i:focus{
    color: var(--secondary-font-color);
}

.newsletter-form{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.newsletter-input{
    width: 100%;
    max-width: 25rem;
    padding: 1rem;
    border-radius: .4rem;
}

.newsletter-btn{
    background-color: transparent;
    border: none;
    color: var(--main-font-color-dark);
    cursor: pointer;
    font-size: 1.6rem;
    padding: 1px .6rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 19rem;
}
/* End of Footer Styles */


/* Media queries */

@media screen and (min-width :500px){
    .diamond-title{
        font-size: 6rem;
    }

    .headline-description h5{
        font-size: 2rem;
    }

    .line{
        max-width: 15.4rem;
    }

    .sub-headline{
        font-size: 11rem;
    }

    .first-letter{
        font-size: 13.2rem;
    }

    .service-group{
        grid-gap: 1.3rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .image-group,
    .image-group-short{
        grid-gap: 1.3rem;
    }

    .service{
        width: 100%;
        height: 30rem;
        box-shadow: 0 1rem 1rem rgba(0,0,0,.5);
    }

    .image-group-short{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
    }
    
    .service .content p{
        transition: .2s;
    }

}

@media screen and (min-width :850px){

    section{
        padding: 3.9rem;
    }

    .headline{
        font-size: 4.7rem;
        letter-spacing: .8rem;
    }

    .diamond-title{
        font-size: 9rem;
    }

    .services-info{
        display: flex;
        align-items: center;
    }

    .services-info > div{
        flex: 1;
    }

    .service-group{
        grid-template-columns: repeat(3, 1fr);
        grid-gap: .9rem;
    }

    .service{
        width: 100%;
        min-height: 200px;
    }

    .service .imgBox::before{
        font-size: 2.2rem;
        text-align: center;
        padding: 1rem 2px;
    }

    .service .content p{
        font-size: 1.7rem;
    }

    .mission-section{
        padding: 0 0;
        background: #222831;
        position: relative;
    }
    
    .mission-section .row{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    
    .mission-img{
        position: relative;
        float: left;
        flex: 3;
    }
    
    .mission-img:before{
        position: absolute;
        content: '';
        right: -30px;
        top: 30px;
        border: 10px solid rgba(255, 206, 118, 0.5);
        width: 100%;
        height: 100%;
    }

    .mission-img img{
        display: inline-block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .mission-text{
        width: 80%;
        padding-left: 8rem;
        float: right;
        flex: 4;
    }
    
    .mission-text p{
        line-height: 1.6;
        margin: 15px auto;
        color: white;
    }

    .padding-right{
        padding-right: 7rem;
    }

    .padding-left{
        padding-left: 7rem;
    }

    .testimonial-section .row{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2rem;
        width: 100%;
    }

    .contact-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form{
        flex-direction: unset;
    }

    .input-fields{
        margin-right: 4%;
    }

    .input-fields .center-logo{
        width: 300px;
    }

    .input-fields, .contact-img{
        width: 48%;
    }

    .input-fields h1{     
        font-size: 4rem;
        font-family: var(--main-font);
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: .5rem;
    }

    .input-fields p{
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .follow-work .container{
        padding: 0 0;
        flex-direction: row;
    }
    
    .social-contact{
        flex-direction: row;
    }

    .footer-content{
        max-width: 77.5rem;
        margin: auto;
    }

    .footer-content-about{
        max-width: 51.3rem;
        margin: 0 auto 5.4rem;
    }

    .footer-content-divider{
        display: flex;
        justify-content: center;
    }

    .social-media {
        width: 100%;
        max-width: 27.3rem;
        margin: 0 1rem;
    }

    .social-icons{
        opacity: 1;
    }

    .newsletter-btn{
        margin-left: 12.0rem;
    }
    
}

@media screen and (min-width: 1100px){
    .menu-toggle{
        display: none;
    }
    
    .logo-column{
        margin-left: -40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo{
        left: 0;
        width: 24rem;
    }

    .toll-free-number{
        color: white;
        font-weight: 400;
        font-size: 1.5rem;
        text-align: center;
        font-family: var(--body-font);
    }
    
    .nav{
        height: auto;
        justify-content: space-between;
    }

    .nav-list{
        position: absolute;
        width: initial;
        height: initial;
        background-color: transparent;
        justify-content: initial;
        flex-direction: row;
        transform: initial;
        transition: initial;
    }

    .nav-list li{
        margin: auto 20px;
        margin-top: 20px;
    }

    .nav-item{
        margin: auto 2.4rem;
        border: none;
    }

    .nav-item:last-child{
        margin-right: 0;
    }

    .nav-link{
        font-size: 1.4rem;
    }

    .active{
        position: relative;
    }

    .active::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: white;
        left: 0;
        bottom: -4px;
    }

    .fa-times {
        display: none;
    }

    .container-gallery {
        box-sizing: border-box;
        flex-direction: row;
        margin: 0 2.4rem;
    }

    .col-4{
        float: left;
        width: 33%;
        padding: 30px 10px;
    }

    .col-8{
        width: 66%;
        float: right;
    }

    .service-group{
        grid-template-columns: repeat(6, 1fr);
        grid-gap: .9rem;
    }

    .testimonial-section .row{
        justify-content: space-between;
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-container{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}
/* End of Media Queries */

/* Animations */

/* Slider animation */
@keyframes slider{
    0% {
        left: 0;
    }
    20%{
        left: 0;
    }
    25%{
        left: -100%;
    }
    45%{
        left: -100%;
    }
    50%{
        left: -200%;
    }
    70%{
        left: -200%;
    }
    75%{
        left: -300%;
    }
    95%{
        left: -300%;
    }
    100%{
        left: -400%;
    }
}


@keyframes fadeUp{
    0%{
        transform: translateY(4rem);
    }
    100%{
        opacity: 1;
        transform: translateY(0);

    }
}

@keyframes scale{
    0%{
        transform: scale(2);
    }
    100%{
        opacity: 1;
        transform: scale(1);

    }
}

@keyframes grow{
    0%{
        width: 0;
    }
    100%{
        opacity: 1;
        width: 100%;

    }
}

@keyframes spin{
    0%{
        transform: rotate(0);
    }
    100%{
        opacity: 1;
        transform: rotate(-360deg);

    }
}

@keyframes fadeDown{
    0%{
        transform: translateY(-1rem);
    }
    100%{
        opacity: 1;
        transform: translateY(.5rem);
    }
}

@keyframes up{
    0%{
        opacity: 0;
        transform: translateY(1rem);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: translateY(-1rem);
    }
}

@keyframes loader {
    0% { transform: rotate(0deg);}
    25% { transform: rotate(180deg);}
    50% { transform: rotate(180deg);}
    75% { transform: rotate(360deg);}
    100% { transform: rotate(360deg);}
  }
  @keyframes loader-inner {
    0% { height: 0%;}
    25% { height: 0%;}
    50% { height: 100%;}
    75% { height: 100%;}
    100% { height: 0%;}
  }

