@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arimo', sans-serif;
    text-decoration: none;

}
::selection{
    color: #000000;
    background: #eecd01;
  }




  






/* .......Navbar messege........ */
/* .nav-msg{
    width: 100%;
    height: 55px;
    color: #ffffff;
    background-color:  #303030;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-msg a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    
}

.nav-msg p{
    font-size: 14px;
    margin-right: 15px;
    color: #fff;
}

.line{
    height: 25px;
    width: 1px;
    background-color: #fff;
    margin-right: 15px;
}

#location{
    color: #fff;
    
}


.nav-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.subnav-btn .fa-brands{
    color: #fff;
    margin-right: 20px;
    font-size: 22px;
   
    &:hover{
      color: #eecd01;
    }
}

.iso{
    height: 100%;
}

.iso img{
    height: 55px;
}
 */


/* .....navbar...... */




.nav-container{
    width: 100%;
    height: 100px;
    padding: 0 50px;
    background-color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    z-index: 10000000;

    position: fixed;  
    top: 0;          
    left: 0;   
    
    box-shadow: rgba(0, 0, 0, 0.139) 0px 10px 36px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 1px;

}

.left-section {
    display: flex;
    align-items: center;
}

.nav-container .logo img{
    height: 90px;
}


.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin-left: 30px;
}

.menu ul li a {
    color: #303433;
    text-decoration: none;
    padding: 20px 15px;
    transition: all .2s ease-in;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 600;
    margin-left: 10px;

    &:hover{
        color: #eecd01;
    }
}











.fa{
    transition: all .5s ease;
}

.menu .drop:hover .fa{
    transform: rotate(180deg);
}


.dropdown-menu{
    display: none;
    border-radius: 5px;
    background-color: #fff;
}

.drop:hover .dropdown-menu{
    display: block;
    left: 0;
    top: 100%;
    background-color: #fff;
    text-decoration: none;
    margin-left: -15px;
}












/* phone view menu//////// */


#menu-bar {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #eecd01;
    color: white;
    z-index: 100000000;
    transform: translateX(-100%);
    transition: transform 1.5s ease;
    transition: all .5s ease-in-out;
    padding: 20px 20px 50px 20px;
}

.sidebar-content {
    padding: 20px;
    font-size: 30px;
}

.sidebar-content ul {
    list-style: none;
    padding: 0;
}

.sidebar-content ul li {
    margin-bottom: 20px;
}

.sidebar-content ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
}

.fa-times {
    cursor: pointer;
    float: right;
    font-size: 60px;
}

@media (max-width: 730px) {
    .menu ul {
        display: none;
    }
    .nav-container .logo img{
        height: 130px;
    }
    #menu-bar {
        display: block;
        font-size: 70px;
        background-color: #eecd01;
        color: #ffffff;
        text-align: end;
        padding: 8px;
        border-radius: 3px;
    }
    .left-section{
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

   
    .sidebar-content {
        font-size: 40px;
    }
    .sidebar-content ul li a {
        font-size: 40px;
    }
    .drop .dropdown-menu ul li a{
        font-size: 35px;
        
    }



}

.sidebar.open {
    display: block;
    transform: translateX(0);
}

.dropdown-menu ul{
    display: block;
    position: absolute;
    z-index: 100;
    background-color: #ffffff;
    width: auto;
    padding: 25px 0;
    border-radius: 2px;
    border-bottom: 4px solid #ffdd00;

}

.dropdown-menu ul li a{
    font-size: 16px;
    padding: 10px 40px 10px 20px;
    width: auto;
    color: #000000;
}








.sub-drop .sub-menu{
    display: none;
    top: 0%;
    left: 80%;
    width: 300px;
    margin-top: 30px;
  }
  
  .dropdown-menu .sub-drop:hover .sub-menu{
    display: block;
  }
  
  
  .sub-drop:hover .fa-solid{
    transform: rotate(90deg);
    transition: all .3s ease;
  }

  @media (max-width: 730px){
    .sub-drop .sub-menu{
        width: 550px;
        margin-left: 50px;
        background-color: #f5f5f5;
    }
  }






/* ////////// hero banner ///////////// */


.hero-banner{
    width: 100%;
    height: 750px;
    overflow: hidden;
    background-image: url(/images/home-banner-1.jpg);
    background-size: cover;
    background-position: center;

}

.hero-content{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100%;
    /* background-color: #00000025; */
    padding: 50px;
}
.hero-heading{
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0 40px 40px 40px;
}

.hero-content .hero-heading h1{
    color: #fff;
    font-size: 50px;
    text-align: start;

}

.hero-heading h1 span{
    color: #ffdd00;
    font-size: 60px;
}

.hero-heading p{
    color: #fff;
    font-size: 30px;
    text-align: start;
    font-weight: 600;
    padding: 20px 0;
}

.hero-heading p span{
    color: #ffdd00;
    font-size: 35px;
}

.hero-heading button{
    font-size: 15px;
    background-color: #eecd01;
    color: #030c20;
    border: none;
    padding: 15px 45px;
    font-weight: 500;
    margin-top: 20px;
    font-weight: 600;

    &:hover{
        background-color: #ffe016;
        cursor: pointer;
    }
}








/* <!-- /////////// since /////////// --> */



.since-container{
    width: 100%;
    height: auto;
    padding: 50px 40px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.since-img-box{
    width: 45%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: end;
}



.since-image-1{
    display: flex;
    position: relative;
    height: 450px;
    
    border: 11px solid rgb(238, 238, 238);
}

.since-image-1 img{
    height: 500px;
    width: auto;
    margin-top: 40px;
    margin-right: 40px;
    margin-left: -50px;
}

.since-image-2{
    display: flex;
    position: absolute;
    height: auto;
    width: auto;
    border: 9px solid #fff;
    margin-right: -350px;
    margin-bottom: -50px;
}

.since-image-2 img{
    width: auto;
    height: auto;
}





/* \\\\//// */


.since-details-box{
    width: 53%;
    height: auto;
}


.since-details-box p{
    font-size: 17px;
    color: #777777;
    margin-bottom: 5px;
}

.since-year-box{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: start;
}

.since-heading h1 {
    font-size: 100px;
    font-weight: 900;
    margin-left: -15px;
    background: url('images/home-banner\(1\)\(1\).jpg') no-repeat;
    background-size: cover;
    background-position: left center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transform: scale(0.9, 1.6);

}

.since-heading-details{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.since-heading-details h2{
    font-size: 40px;
    color: #eecd01;
}

.since-heading-details h2 span{
    font-size: 40px;
    color: #000;
    font-weight: 400;
}

.since-line{
    height: 1px;
    width: 100px;
    background-color: #000;
    margin: 50px 0;
}

.since-para p{
    font-size: 15px;
    line-height: 1.8;
}

.exp-points-box{
    margin-top: 30px;
    width: 90%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exp-points-details{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.exp-points-details h2,
.exp-points-details h1{
    font-size: 40px;
    font-weight: 500;
    color: #2c2c2c;
}

.exp-points-details p{
    font-size: 15px;
    color: #777777;
    margin-top: 5px;
    text-transform: uppercase;
}

.number{
    display: flex;
    justify-content: center;
    align-items: center;
}

.number h2{
    font-size: 30px;
    font-weight: 500;
    color: #2c2c2c;
}







/* ////////What we do\\\\\\ */

.expertise-container-back{
    margin-top: 90px;
    width: 100%;
    height: auto;
    background-image: url(images/home-banner.jpg);
}

.expertise-container{
    width: 100%;
    height: 100%;
    background-color: #ffffffe3;
    display: flex;
    justify-content: space-around;
    padding: 50px 40px;
    flex-wrap: wrap;
}

.expertise-box1{
    width: 30%;
    height: auto;
    margin-top: 20px;
    padding-top: 40px;
}

.expertise-box1 h2{
    font-size: 19px;
    color: #000;
    text-transform: uppercase;
}

.expertise-box1 h1{
    font-size: 40px;
    color: #004152;
    margin-top: 20px;
}

.expertise-box1 p{
    font-size: 17px;
    color: #2f2f2f;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    width: 90%;
}

.expertise-box1 a{
    font-size: 17px;
    color: #303030;
    padding: 13px 21px;
    background-color: #eecd01;
    margin-top: 50px;
    font-weight: 600;

    &:hover{
        background-color: #ffe32b;
    }
}

.expertise-box{
    width: 30%;
    height: auto;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    margin-top: 40px;
}

.expertise-img{
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.expertise-img img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    transition: all .6s ease-in-out;
}

.expertise-box:hover .expertise-img img{
    transform: scale(1.15);
}

.expertise-details{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
}

.expertise-details h1{
    font-size: 25px;
    color: #004152;
}

.expertise-details p{
    font-size: 15px;
    color: #5a5a5a;
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
}

.expertise-details a{
    padding: 10px 20px;
    border: 1px solid #5a5a5a;
    color: #2f2f2f;
    margin-top: 8px;
    transition: all .3s ease;
    margin-bottom: 20px;
}

.expertise-box:hover .expertise-details a{
    border: 1px solid #e1c300;
    color: #e1c300;
}









/* \\\\\\\\\service-divider///////// */



.service-divider-back-container{
    width: 100%;
    height: 550px;
    background-image: url(images/service-img.jpg);
    background-position: center;
    background-size: cover;
}

.service-divider-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 90px;
}

.service-divider-details{
    width: 450px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-right: 90px;
}

.service-divider-details h1{
    font-size: 42px;
    color: #ededed;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.3;
}

.service-divider-details p{
    font-size: 20px;
    color: #f1f1f1;
    font-weight: 500;
    margin: 20px 0;
}

.service-divider-details a{
    font-size: 20px;
    color: #000;
    font-weight: 600;
    padding: 15px 25px;
    background-color: #eecd01;
    margin-top: 10px;

    &:hover{
        background-color: #ffdf11;
    }
}






/* ////// Client say //////// */





.client-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 90px;
    background-color: #f3f2f2;
}

.client-logo-container{
    width: 55%;
    height: auto;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;

    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.client-box{
    width: 50%;
    height: 160px;
   
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-box img{
    width: 200px;
    height: 90px;
    transition: all .4s ease;
    cursor: pointer;
    filter: grayscale(100%);
}

.client-box1,
.client-box3{
    border-right: 1px solid rgb(232, 232, 232);
    border-bottom: 1px solid rgb(232, 232, 232);
}

.client-box2,
.client-box4{
    border-bottom: 1px solid rgb(232, 232, 232);
}


.client-box5{
    border-right: 1px solid rgb(232, 232, 232);
}

.client-box1:hover img,
.client-box3:hover img,
.client-box5:hover img{
    margin-right: 30px;
}

.client-box2:hover img,
.client-box4:hover img,
.client-box6:hover img{
    margin-left: 30px;
}


/* ////\\\\ */

.client-say-container{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-top: 15px;
}

.client-say-container h1{
    font-size: 40px;
    color: #151515;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
}

.client-say-container p{
    margin-top: 20px;
    width: 100%;
    font-size: 19px;
    color: #8c8c8c;
    /* font-style: italic; */
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
}

.client-say-container h2{
    margin-top: 40px;
    font-size: 24px;
    color: #151515;
    font-weight: 500;
    width: 100%;
}

.client-say-container h3{
    margin-top: 10px;
    font-size: 18px;
    color: #caaf00;
    font-weight: 500;
}


.client-say-img-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.client-say-img-box{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

.client-say-img-box img{
    height: 90px;
    width: 90px;
    object-fit: cover;
}













/* \\\\\\\\\\\\\\ Projects ///////////// */


.project-container{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: start;
    align-items: end;
    padding: 0px 35px;
    margin-top: 30px;
}

.project-container h1{
    font-size: 45px;
    font-weight: 500;
}

.project-container h1 span{
    color: #eecd01;
}


.container {
    width: 100%;
    height: auto;
    padding: 0px 50px;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .col-12 {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 40px;
  }
  
  .btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1.18rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  
  /* Cards */
  .card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 24%;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    overflow: hidden;
  }
  
  .card-body {
    flex: 1 1 auto;
    padding: 1rem;
  }
  
  .card img {
    vertical-align: middle;
    border-style: none;
  }
    
  /* Image in Cards */
  #filterable-cards .card img {
    height: 300px;
    width: auto;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
  }
  
  #filterable-cards .card:hover img {
    transform: scale(1.2);
  }
  
  /* Hide/Show Filtered Cards */
  #filterable-cards .card.hide {
    display: none;
  }
  
  /* Filter Buttons */
  #filter-buttons button {
    border-radius: 3px;
    background: #fff;
    border-color: transparent;
  }
  
  #filter-buttons button:hover {
    background: #ffed74;
  }
  
  #filter-buttons button.active {
    color: #303030;
    background: #eecd01;
  }
  
  /* Utility Classes */
  .mt-5 {
    margin-top: 2rem !important;
  }
  
  .mb-2 {
    margin-bottom: 0.5rem !important;
  }
  
  .me-1 {
    margin-right: 0.25rem !important;
  }
  
  .mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  
  .p-0 {
    padding: 0 !important;
  }
  
  .gap-3 {
    gap: 1rem;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    #filterable-cards {
      justify-content: center;
    }
  
    #filterable-cards .card {
      width: calc(100% / 2 - 10px);
    }
  }
  
  /* Links in Cards */
  .card-body a {
    text-decoration: none;
    color: black;
  }
  



  #filterable-cards .card{
    position: relative;
  }

  .over-leyer{
    display: none;
    position: absolute;
    z-index: 100000;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    background-color: #ffe013d4;
    transition: all 1s ease-in;


  }

  #filterable-cards .card:hover .over-leyer{
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .over-leyer h1{
    font-size: 25px;
    color: #004152;
  }

  .over-leyer a{
    font-size: 16px;
    color: #000;
    padding: 8px 20px;
    border: 1px solid #000000c7;
    margin-top: 20px;

    &:hover{
        background-color: #eecd01;
    }
  }










  



/* ////////// Footer ///////// */





.footer-container{
    margin-top: 60px;
    background-color: #212d45;
    width: 100%;
    display: flex;
    justify-content:center ;
    padding-top: 20px;
}

.footer-box{
    width: 95%;
    height: auto;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-around;
}
.fsize{
    width: 30%;
}

.footer-logo img{
    height: 90px;
}

.fsize p{
    color: #eecd01;
    font-size: 26px;
    font-weight: 600;
    padding: 30px 0;
}

/* .fsize hr{
    margin: 20px 0 20px 0;
    width: 240px;
    border: 1px solid #f37930;

} */

.fsize ul li{
    list-style: none;
    line-height: 1.5;
    margin-bottom: 10px;
    width: 260px;
    font-size: 16px;
    color: #ffffff;
    transition: all .3s ease;
}

.fsize ul li a{
    color: #fff;
    transition: all .3s ease;
    font-size: 16px;
}

.fsize ul li a:hover{
    cursor: pointer;
    padding-left: 7px;
    color: #eecd01;
}
.fbox3 .cont-name{
    font-size: 16px;
    color: #ffffff;
}
.fbox3 .fAddre{
    font-size: 15px;
    color: #ffffff;
}
.fbox3 .fphone{
    font-size: 15px;
    color: #ffffff;
}




.footer1{
    height: 80px;
    border-top: 1px solid #eecd01;
    width: 100%;
    background-color: #212d45;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.footer1 a{
    color: #fff;
    text-decoration: none;

    &:hover{
        color: #eecd01;
    }
}














/* /////////// Responcive view ////////// */




@media(max-width: 1218px){
    .since-img-box .since-image-2{
        margin-right: -230px;
    }
}






@media(max-width: 1064px) {


    .nav-container,
    .hero-banner,
    .since-container,
    .expertise-container-back,
    .expertise-container,
    .service-divider-back-container,
    .client-container,
    .project-container,
    .container,
    .footer-container,
    .footer1
    {
        width: 1064px;
    }

    .since-img-box .since-image-2{
        margin-right: -200px;
    }
}







/* ///////// Phone view //////// */





@media(max-width: 600px){

    .nav-container{
        height: 250px;
      }
      .nav-container .logo img{
        height: 200px;
      }

      

    .hero-banner{
        height: 1300px;
    }
    .hero-heading{
        width: 100%;
    }
    .hero-content .hero-heading h1{
        font-size: 60px;
    }
    .hero-heading h1 span{
        font-size: 70px;
    }
    .hero-heading p{
        font-size: 45px;
    }
    .hero-heading p span{
        font-size: 50px;
    }
    .hero-heading button{
        font-size: 35px;
        padding: 20px 55px;
    }
    





    .since-container{
        flex-direction: column;
    }
    .since-img-box{
        width: 100%;
    }
    .since-image-1{
        width: 70%;
        height: auto;
    }
    .since-image-1 img{
        height: 700px;
        width: auto;
    }
    .since-image-2 img{
        height: 300px;
    }


    .since-details-box{
        width: 100%;
        height: auto;
        margin-top: 100px;
    }
    .since-details-box p{
        font-size: 47px;
    }
    .since-heading h1 {
        font-size: 150px;
    }
    .since-heading-details h2{
        font-size: 50px;
    }
    .since-heading-details h2 span{
        font-size: 50px;
    }
    .since-line{
        height: 1px;
        width: 300px;
    }
    .since-para p{
        font-size: 40px;
    }



    .exp-points-details{
        width: 45%;
        display: flex;
        justify-content: center;
        margin-left: 40px;
    }
    .exp-points-box{
        flex-wrap: wrap;
        align-items: start;
        margin: 40px;
    }
    .exp-points-details{
        margin-top: 60px;
    }

    .exp-points-details h2,
    .exp-points-details h1{
    font-size: 70px;
    }
    .exp-points-details p{
        font-size: 50px;
    }





    .expertise-container{
        flex-direction: column;
    }
    .expertise-box,
    .expertise-box1{
        width: 100%;
        height: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .expertise-box1 h2{
        font-size: 30px;
    }
    .expertise-box1 h1{
        font-size: 50px;
    }
    .expertise-box1 p{
        font-size: 40px;
    }
    .expertise-box1 a{
        font-size: 35px;
        padding: 25px;
        
    }

    .expertise-img{
        height: auto;
    }
    .expertise-details h1{
        font-size: 55px;
    }
    .expertise-details p{
        font-size: 40px;
        padding: 25px 0;
    }
    .expertise-details a{
        font-size: 37px;
        margin-bottom: 40px;
    }




    .service-divider-back-container{
        height: 750px;
    }
    .service-divider-details{
        width: 80%;
    }
    .service-divider-details h1{
        font-size: 60px;
    }
    .service-divider-details p{
        font-size: 40px;
    }
    .service-divider-details a{
        font-size: 35px;
    }




    .client-container{
        flex-direction: column;
    }
    .client-logo-container{
        width: 95%;
    }
    .client-box{
        width: 50%;
        height: auto;
    }
    .client-box img{
        width: 250px;
        height: 150px;
        margin: 90px;
    }


    .client-say-container{
        width: 100%;
        margin-top: 90px;
    }
    .client-say-container h1{
        font-size: 50px;
    }
    .client-say-container p{
        font-size: 40px;
    }
    .client-say-container h2{
        font-size: 45px;
    }
    .client-say-container h3{
        font-size: 30px;
    }
    .client-say-img-box{
        width: 150px;
        height: 150px;
    }
    .client-say-img-box img{
        height: 100%;
        width: 100%;
    }


    .project-container h1{
        font-size: 55px;
    }
    .btn{
        font-size: 2.18rem;
    }
    .over-leyer h1{
        font-size: 45px;
    }
    .over-leyer a{
        font-size: 36px;
    }



    
      
.footer-box{
    flex-direction: column;
    height: auto;
    padding-bottom: 30px;
  }
  .fsize .footer-logo img{
    width: 300px;
    height: auto;
    margin: 50px 10px;
  }
  .fsize{
    width: 100%;
  }
  .fsize p{
    font-size: 50px;
    margin-top: 90px
  }
  .fsize hr{
    width: 95%;
  }
  .fsize ul li{
    font-size: 40px;
    width: 100%;
  }
  .fsize ul li a{
    font-size: 40px;
    width: 100%;
  }
  .fsize .cont-name{
    font-size: 40px;
  }
  
  
  
  .footer1{
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
  }
  
  .footer1 p{
    font-size: 40px;
    text-align: center;
  }
  
  .footer1 a{
    font-size: 40px;
    text-align: center;
  }
}