@import url('https://fonts.googleapis.com/css?family=Allura|Josefin+Sans');

*,
*::before,
*::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}




/* Navigation Section */

.navigationbar{
    font-family: 'Poppins', sans-serif;
}

.navigationbar ul{
    list-style: none;
}

.navigationbar header{
    position: fixed;
    height: 60px;
    top: 0px;
    background-color: transparent;
    width: 100%;
    z-index: 1000;
    transition: background-color 1s ease;
}

.navigationbar .container{
    width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.logo{
    margin-top: 2px;
    width: 185px;
}

.logo img{
    width: 100%;
}

.nav-btn{
    flex: 3;
    display: flex;
}

.nav-links{
    flex: 2;
}

.btn{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}

.btn.transparent:hover{
    background-color: #fff;
    color: #69bde7;
}

.btn.transparent, .btn.solid:hover{
    background-color: transparent;
    color: #fff;
}

.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link{
    margin-top: 5px;
    position: relative;
}

.nav-link > a{
    line-height: 3rem;
    color: #fff;
    padding: 0 .8rem;
    letter-spacing: 1px;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .2rem;
}

.nav-link:hover > a{
    transform: scale(1.1);
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.log{
    margin-top: 17px;
    margin-right: 10px;
    width: 170px;
}

#num{
    color: #60b4df;
    padding: 8px 15px;
    background-color: white;
    border: 2px solid white;
    border-radius: 30px;
    margin-bottom: 6px;
    transition: all 0.3s ease-in-out;
}

#num:hover{
    color: white;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 30px;
    transform: scale(1);
}

#dropp{
    margin-top: 7px;
}

.dropdown ul{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    background-color: #fff;
    color: #3498db;
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover > a{
    background-color: #3498db;
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #efefef;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #3498db;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
    margin-left: -200px;
    margin-right: -20px;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (min-width: 1181px){
    .dropdown-link{
        width: 250px;
    }
}

@media (max-width: 1180px){
    #aq, #aw, #asdfgh{
        display: none;
        visibility: hidden;
    }
    .hide.active ~ #aq{
        display: block;
        visibility: visible;
    }
    .hid.active ~ #aw{
        display: block;
        visibility: visible;
    }
    .asdfg.active ~ #asdfgh{
        display: block;
        visibility: visible;
    }
    .hamburger-menu-container{
        display: flex;
    }
    #check{
        display: block;
    }
    #dropp{
        margin-top: 0px;
    }
    .nav-btn{
        position: fixed;
        height: calc(100vh - 60px);
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #69bde7;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }
    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }
    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign{
        animation: animation .5s ease forwards var(--i);
    }
    .nav-links{
        flex: initial;
        width: 100%;
    }
    .nav-links > ul{
        flex-direction: column;
    }
    .nav-link{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }
    .nav-link > a{
        line-height: 1;
        padding: 1.6rem 2rem;
    }
    .nav-link:hover > a{
        transform: scale(1);
        background-color: #50a9d6;
    }
    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #3183ac;
        display: none;
    }    
    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown{
        display: block;
    }
    .nav-link:hover > a > i,
    .dropdown-link:hover > a > i{
        transform: rotate(360deg);
    }
    .dropdown-link > a{
        background-color: transparent;
        color: #fff;
        padding: 1.2rem 2rem;
        line-height: 1;
    }
    .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 3rem;
    }
    .dropdown.second .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }
    .dropdown-link:not(:nth-last-child(2)){
        border-bottom: none;
    }
    .arrow{
        z-index: 1;
        background-color: #69bde7;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }
    .nav-link:hover .arrow{
        background-color: #50a9d6;
    }
    .dropdown .dropdown .arrow{
        display: none;
    }
    .dropdown-link:hover > a{
        background-color: #3a91bd;
    }
    .dropdown-link:first-child:hover ~ .arrow{
        background-color: #50a9d6;
    }
    .nav-link > a > i{
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }
    .dropdown i{
        font-size: 1rem;
        transition: .7s;
    } 
    .navigationbar header{
        background-color: #60b4df !important;
        height: 60px;
        opacity: 1 !important;
    }
    .navigationbar .container{
        padding-left: 10px;
    } 
    .log{
        display: none;
        visibility: hidden;
    }
}

@media (max-width: 600px){
    .navigationbar li a{
        padding: 15px;
    }
}
@media (max-width: 320px){
    .hamburger-menu-container{
        margin-right: -25px;
    }
}

@media (max-width: 240px){
    .logo{
        margin-top: 2px;
        margin-left: -8px;
        width: 155px;
    }
    .navigationbar header{
        height: 50px;
    }
    .nav-btn{
        height: calc(100vh - 50px);
        top: 50px;
    }
}

/* Navigation Section */



/* Whatsapp Section */

.whatsapp{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    z-index: 1000;    
    background: #30bf39;
    border-radius: 50px;
    animation: bounce 0.9s infinite;
}

.whatsapp .fa{
    font-size: 50px;
    color: white;
    margin-top: -4px;
}

@keyframes bounce{
    20%, 50%, 80%, to{
        transform: translateY(0);
    }
    40%{
        transform: translateY(-60px);
    }
    70%{
        transform: translateY(-30px);
    }
    90%{
        transform: translateY(-15px);
    }
}

/* Whatsapp Section */




/* Home Section */

.banner-area,
.single-banner{
    height: 800px;
}

.single-banner{
    position: relative;
}

.single-banner .banner-img{
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.banner-img .img1{
    display: block;
    width: 100vw;
    height: 800px;
    object-fit: cover;
    visibility: visible;
}

.overla{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    background-color: rgba(0,0,0,0.65);
  }

.banner-text{
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);    
}

.slider_lead{
    font-size: 2rem;
    color: #fff;
    font-family: 'Vollkorn', serif;
    margin-bottom: -8px;
}

.slider_text{
    color: #fff;
    display: flex;
    line-height: 1.8;
    font-size: 1.2rem;
    margin-top: -5px;
    font-family: 'Fjalla One', sans-serif;
}

.slider_text > div{
    display: block;
    height: 3px;
    width: 275px;
    background-color: #fff;
    margin-top: 15px;
    margin-left: 3px;
    margin-right: 29px;
}

#q1{
    width: 268px;
}

#q2{
    width: 495px;
}

#q3{
    width: 210px;
}

#q4{
    width: 275px;
}

#q5{
    width: 335px;
}

#q6{
    width: 375px;
}

#q7{
    width: 305px;
}

#q8{
    width: 485px;
}

.slider_text p{
    max-width: 275px;
    margin: 0px;
    text-align: justify;
    font-size: 20px;
}

.stext{
    color: #fff;
    display: none;
    line-height: 1.8;
    font-size: 1rem;
    font-family: 'Fjalla One', sans-serif;  
    width: 100%; 
    margin-top: -15px;
}

.stext p{
    text-align: center;
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
}

.slick-dots{
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li{
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button{
    position: relative;
    background-color: #fff;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
    font-size: 0;
}

.slick-dots li.slick-active buttom{
    color: #fff;
    opacity: 0.75;
}

.slider_heading{
    font-size: 4rem;
    line-height: 1.1;
    font-family: 'Yatra One', cursive;
    background: url(../images/animate.png);
    /* Clip Background Image */    
    -webkit-background-clip: text;
    background-clip: text;
    /* Animate Background Image */
    -webkit-text-fill-color: transparent;
    -webkit-animation: aitf 80s linear infinite;
    /* Activate hardware acceleration for smoother animations */
    -webkit-transform: translate3d(0,0,0);
    -webkit-backface-visibility: hidden;
}

.slider_heading1{
    font-size: 4rem;
    line-height: 1.1;
    font-family: 'Fjalla One', sans-serif;  
    display: none;
    visibility: hidden;
    font-weight: 100;
    
}

/* Animate Background Image */
@-webkit-keyframes aitf {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media only screen and (max-width: 1120px) {
    .banner-text{
        position: absolute;
        top: calc(50% + 30px);
        transform: translateY(-50%);    
    }
}

@media only screen and (max-width: 1000px) {
    .banner-area,
    .single-banner{
        height: 600px;
    }
    .single-banner .banner-img{
        width: 100%;
        height: 600px;
        overflow: hidden;
    }
    .banner-img .img1{
        height: 600px;
        object-fit: cover;
    }
    .banner-text{
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }    
    .slider_lead{
        font-size: 2rem;
        color: #fff;
        font-family: 'Vollkorn', serif;
        text-align: center;
    }
    .slider_heading{
        font-size: 3.8rem;
        line-height: 1.1;
        text-align: center;
        margin-top: -7px;
        padding-left: 10px;
        padding-right: 10px;
    }    
    .slider_text{
        display: none;
        
    }
    .stext{
        display: flex;
        font-size: 1.1rem;
    }
    .stext p{
        margin-top: 20px;
    }
}

@media only screen and (max-width: 700px) { 
    .banner-text{
        top: calc(50% + 30px);   
    }
    .slider_lead{
        font-size: 1.7rem;
        color: #fff;
        font-family: 'Vollkorn', serif;
        text-align: center;
    }
    .slider_heading{
        font-size: 3rem;
        line-height: 1.1;
        text-align: center;
        margin-top: -7px;
        padding-left: 10px;
        padding-right: 10px;
    }   
    .stext{
        display: flex;
        font-size: 1rem;
    }
    .stext p{
        margin-top: 10px;
    }

}
    
@media only screen and (max-width: 600px) {
    .banner-area,
    .single-banner{
        height: 300px;
    }
    .single-banner .banner-img{
        width: 100%;
        height: 300px;
        overflow: hidden;
    }
    .banner-img .img1{
        height: 300px;
        object-fit: cover;
    } 
    .slider_lead{
        font-size: 3rem;
        background: url(../images/animate.png);
        /* Clip Background Image */    
        -webkit-background-clip: text;
        background-clip: text;
        /* Animate Background Image */
        -webkit-text-fill-color: transparent;
        -webkit-animation: aitf 80s linear infinite;
        /* Activate hardware acceleration for smoother animations */
        -webkit-transform: translate3d(0,0,0);
        -webkit-backface-visibility: hidden;
    }    
    /* Animate Background Image */
    @-webkit-keyframes aitf {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }
    .slider_heading{
        display: none;
        visibility: hidden;
    } 
    .slider_heading1{
        display: block;
        visibility: visible;
        text-align: center;
        font-size: 1.5rem;
        color: white;
    } 
    .stext{
        display: none;
        visibility: hidden;
    }
  }
@media only screen and (max-width: 400px) {
    .slider_lead{
        font-size: 2.5rem;
    }
    .slider_heading1{
        font-size: 1.3rem;
        color: white;
    } 
  }   
@media only screen and (max-width: 275px) {
    .slider_lead{
        font-size: 2rem;
    }
    .slider_heading1{
        font-size: 1.1rem;
        color: white;
    } 
  }   

/* Home Section */




/* About Section */

.about{    
    background-color: rgb(255, 255, 255);
    padding-bottom: 120px;
    align-items: center;
    max-width: 1800px;
    margin: auto;
    margin-bottom: -80px;
}

.about .row h1{
    width: 100%;
    padding-top: 45px;
    padding-bottom: 20px;
    text-align: center;
    font-family: 'Allura', cursive;
    font-size: 45px;
    visibility: hidden;
}

.about .row p{
    font-family: 'Allura', cursive;
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 60px;
    text-align: center;
    color: black;
    width: 100%;
    display: none;
    visibility: hidden;
}

.about .about-section h1{
    text-align: center;
    font-family: 'Allura', cursive;
    font-size: 52px;
    margin-top: -100px;
    padding-top: 20px;
}

.about-section{
    width: 94%;
    background: url(../images/about.jpg) no-repeat left;
    background-size: 55%;    
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    padding: 100px 0;
    margin-right: 3%;
    margin-left: 3%;
}

.ro{
    width: 55%;
    float: right;    
}

.inner-container{
    width: 55%;
    float: right;
    background-color: #faf9f9;
    padding-right: 60px;
    padding-left: 60px;
    padding-top: 50px;
    padding-bottom: 10px;
    vertical-align: middle;
    border: 4px solid #60b4df;
    box-shadow: 0 10px 10px rgba(49, 48, 48, 0.65);
}

.text{
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

@media only screen and (max-width: 1290px) {
    .about{
        border-color: transparent;
    }
    .about .row h1{
        visibility: visible;
        margin-top: -10px;
        margin-bottom: 0px;
    }
    .about .row p{
        visibility: visible;
        display: block;
        margin-top: -30px;
        margin-bottom: 30px;
    }
    
    .about .about-section h1{
        display: none;
        visibility: hidden;
    }
    .inner-container{
        width: 100%;
        background-image: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)), url(../images/about.jpg);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding-right: 60px;
        padding-left: 60px;
        padding-top: 100px;
        padding-bottom: 60px; 
    }
    .about-section{
        width: 94%;
        background: none;
        background-size: 100%;
        overflow: hidden;
        padding: 0;
        margin-top: -10px;
        margin-right: 3%;
        margin-left: 3%;
    }
    .about{
        margin-bottom: -85px;
    }
    .text{
        color: white;
    }
}

@media only screen and (max-width: 900px) {
    .about-section{
        width: 98%;
        background: none;
        background-size: 100%;
        background-color: rgb(253, 253, 253);
        overflow: hidden;
        padding: 0;
        margin-top: -10px;
        margin-right: 1%;
        margin-left: 1%;
    }
}

@media (max-width: 1025px){
    .about{    
        margin-bottom: -120px;
    }
    .about .row h1{
        padding-top: 0px;
        padding-bottom: 0px;
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 40px;
    }
    .about .row p{
        font-size: 25px;
        margin-bottom: 25px;
        color: black;
        width: 100%;
    }
}

@media (max-width: 600px){
    .about .row h1{
        padding-top: 0px;
        padding-bottom: 0px;
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 40px;
    }
    .about .row p{
        font-size: 20px;
        margin-bottom: 25px;
        color: black;
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .inner-container{
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 50px;
        padding-bottom: 10px; 
    }
}

@media only screen and (max-width: 400px) {
    .inner-container{
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 30px;
        padding-bottom: 0px; 
    }
}

/* About Section */




/* Products Section */

.product{
    background-color: rgb(255, 255, 255);  
    margin-bottom: 10px;  
}

.product .row h1{
    width: 100%;
    padding-top: 30px;
    padding-bottom: 0px;
    margin-bottom: -30px;
    text-align: center;
    font-family: 'Allura', cursive;
    font-size: 52px;
}

.product .row p{
    font-family: 'Allura', cursive;
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    padding: 20px 0;
    color: black;
    width: 100%;
}

.wrrapper{
    padding-bottom: 50px;
    margin: 0 auto;
    max-width: 1100px;

}

.img-area{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.single-img{
    background-color: rgb(255, 255, 255);
    margin: 10px 10px;
    margin-bottom: 10px;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0px 7px 10px #7a787a;
    border: 1px solid #404040;
    overflow: hidden; 
    width: 135px;
}

.single-img:hover{
    transform: translateY(-10px);
    overflow: hidden;
    transition: 0.5s ease;
}

.single-img img{
    width: 100%;
}

.namef{
    text-align: center;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #404040;
    z-index: 1000;
}

@media (max-width: 1025px){
    .product .row h1{
        padding-top: 40px;
        padding-bottom: 0px;
        margin-top: -40px;
        margin-bottom: -30px;
        font-size: 40px;
    }
    .product .row p{
        font-size: 25px;
        margin-bottom: -20px;
        color: black;
        width: 100%;
    }
}

@media only screen and (max-width: 768px){
    .main{
        margin-bottom: -370px;
    }
    .product .row h1{
        padding-top: 90px;
    }
}

@media only screen and (max-width: 720px){
    .product .row h1{
        padding-top: 30px;
    }
}

@media (max-width: 600px){
    .product .row h1{
        padding-top: 40px;
    }
    .product .row p{
        font-size: 20px;
        margin-bottom: -10px;
        color: black;
        width: 100%;
    }
    .main{
        margin-bottom: -50px;
    }
}

@media only screen and (max-width: 860px) {
    .wrrapper p, .wrrapper h2{
        display: none;
        visibility: hidden;
    }
}

/* Products Section */




/* Clients Section */

.client{
    font-family: 'Roboto Condensed', sans-serif;
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(../images/overallbg.jpg);   
    background-position: center;
    background-size: cover; 
    background-attachment: fixed;
}

.client .row{
    width: 100%;    
}

.client .row h1{
    font-family: 'Allura', cursive;
    font-size: 52px;
    text-align: center;
    margin-bottom: -5px;
    padding-top: 60px;
    color: white;
}

.client .row p{
    font-family: 'Allura', cursive;
    font-size: 30px;
    margin-bottom: 50px;
    text-align: center;
    color: white;
    width: 100%;
}


.client .co{
    width: 100%;
    align-items: center;
    margin-bottom: 60px;
}

.client .coo{
    width: 112px;
    height: 112px;
    margin: 10px auto;
}

.client i{
    font-size: 100px;
    color: #fff;
    padding-top: 6px;
    padding-left: 7px;
    
}

.client  .cooo{
    width: 110px;
    margin:  0 auto;
    justify-content: center;
}

.cooo h2{
    font-size: 60px;
    color: white;
}

.cooo span{
    font-size: 30px;
    color: white;
}

.cooo h2, .cooo span{
    display: inline-flex;
}

#ap{
    color: white;
    font-size: 20px;
    text-align: center;
    margin-top: -5px;
}

.client .slider{
    background-color: white;
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.5);
}
.client .slide{
    margin: 0 10px;

}

.client .slider::before,.slider::after{
    content: '';
    position: absolute;
    width: 200px;
    height: 100px;
    z-index: 2;
}

.client .slider::before{
    top: 0;
    left: 0;
}

.client .slider::after{
    top: 0;
    right: 0;
    transform: rotateZ(180deg);
}

.client .slider .slider-track{
    display: flex;
    width: calc(250px * 28);
    animation: scroll 40s infinite linear;
}

.client .slider .slide img{
    width: 250px;
    height: 100px;
}

@keyframes scroll{
    0%{
        transform: translateX(0%);
    }

    100%{
        transform: translateX(calc(-250px * 14));
    }
}

@media (min-width: 1026px){
    .client{
        padding-bottom: 50px;
    }
}

@media (max-width: 1025px){
    .client .row h1{
        padding-top: 40px;
        padding-bottom: 0px;
        margin-top: -40px;
        margin-bottom: -8px;
        font-size: 45px;
    }
    .client .row p{
        font-size: 25px;
        margin-bottom: 30px;
        color: white;
        width: 100%;
    }
    .client .co{
        margin-bottom: 40px;
    }
    .client{
        padding-bottom: 30px;
    }
}

@media (max-width: 600px){
    .client .co{
        margin-bottom: 30px;
    }
    .client .row p{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .client{
    padding-bottom: 30px;
    }
}

/* Clients Section */




/* Footer Section */

footer{
    background-color: #353745;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3px;
}

.footer-container ul{    
    margin: 0px;
    width: 25%;
    padding: 0px 20px;
    list-style: none;
}

.footer-container h1{
    color: #d9d7db;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 0px;
}

.footer-container ul li a{
    font-size: 12px;
    color: #9697a0;
    cursor: default;
    pointer-events: none;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    margin: 0px;
    width: 100%;
    flex-wrap: wrap;
}

.social{
    width: 25%;
    padding-right: 20px;
    padding-left: 20px;
}

.social-icons{
    padding-top: 5px;
}

.social-icons a{
    width: 35px;
    height: 35px;
    margin: 0px;
    margin-right: 5px;
    background-color: #424356;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all ease 1s;
}

.social-icons{
    display: flex;
}

.social-icons i{
    color: #ffffff;
    font-size: 20px;
}

#call{
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.social-icons a:hover{
    background-color: #9a9ff6;
}

.social-icons a:hover i{
    color: #424356;
}

.extra{
    border-top: 1px dashed #b3b3b3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright{
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    margin: 0px;
    text-align: center;
    color: #b3b3b3;    
    padding-top: 10px;
    padding-bottom: 5px;
}

.tag{
    text-decoration: none;
    font-size: 15px;
    color: #60b4df;
}

@media only screen and (max-width: 653px) {
    .footer-container ul{    
        width: 50%;
        margin-top: 10px;
    }
    .social{
        margin-top: 10px;
        width: 50%;
    } 
    .social-icons a{
        margin-bottom: 5px;
    }
} 
@media only screen and (max-width: 326px) {
    .footer-container ul{    
        width: 100%;
    }
    .social{
        width: 100%;
    }
} 

/* Footer Section */