* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
        
    overflow-x: hidden !important;
}

.menu-btn{
 position: relative;
 display: flex;
 justify-content: center;
 /* margin-left: 40px; */
 align-items: center;
 width: 80px;
 height: 50px;
 cursor: pointer;
 transition: all 0.5s ease-in-out;
}

.menu-btn-burger{
    width: 30px;
    height: 2px;
    background: #000;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}
.menu-btn-burger::before,
.menu-btn-burger::after{
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #000;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    
}
.menu-btn-burger::before{
    transform: translateY(-8px);
}
.menu-btn-burger::after{
    transform: translateY(8px);  
}
.menu-btn.open .menu-btn-burger{
    transform: rotate(180deg);
    background: transparent;
}
.menu-btn.open .menu-btn-burger::before{
    transform: rotate(45deg) ;
}
.menu-btn.open .menu-btn-burger::after{
    transform: rotate(-45deg);
}


#header {
    width: 100%;
    height: 100vh;
    background: url('xbg_1.jpg.pagespeed.ic.FXWHz0M9Hl.webp') no-repeat ;
    background-size: cover;
    background-position: center;
}

.overlay {
    width: 100%;
    background: rgba(0, 0, 0, .3);
    height: 100vh;
    position: absolute;
    width: 100%;
}



.menyu-bg {
    background: transparent;
}
#navbarSupportedContent a{
    color: white;
    text-decoration: none;
    font-weight: 600;
}




#navbar{
    position: fixed;
    top: -50px;
    width: 100%;
    display: none;
    transition: top .6s;
    background: #fff;
    z-index: 33;
}
#navbar a{
    color: #000 !important;
    text-decoration: none;
    font-weight: 600;
}
#navbar #btn-nav{
    color: white !important;
}

#content{
    background: #FAFAFA;
   
}
#content-container{
    position: relative;
    bottom: 130px;
}
#about_col{
    background: url('xabout.jpg.pagespeed.ic.XnD8PJs6yi.webp') no-repeat;
     background-position: center;
    background-size: cover;
    height: 660px;
 
}
#about_col h2,#about_col h6{
    color: white;
    font-weight: bold;
}
#about input , #select{
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid gray;
    
    margin-bottom: 20px;
    color: white;
    font-weight: 400;
    

}


.about_inp ,#select,#text__area:focus{
  outline: none;
}
::placeholder{
    color: white;
}
#text__area{
    resize: none;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid gray;
    color: white;
    font-weight: 400;

}
#btn-form{
    background: #FFC107 !important;
    width: 90%;
    height: 60px;
   
    color: white;
}
#btn-form:hover{
    border-radius: 1px solid #FFC107 !important ;
    color: #FFC107 !important;
    background: transparent !important;
}
#about-project .card{
    border-radius: 5px !important;
}
#about-project .card strong{
    color: #2F9E5C;
    font-size: 30px;
    font-weight: 400;
}
#about-project .card span{
    color: #CCCCCC;
    font-weight: 600;
}
#projects{
    background: #F8F9FA;
    padding-top: 100px;
    padding-bottom: 80px;

}

.carousel{

    max-width: 100%;
   
  
  
}
.carousel .card{ 
   
    border-radius:0;
    text-align: center;
    font-weight: bold;
    border: none;
    background: transparent;
  
}
.card-img{
    overflow: hidden;
    position: relative;
}
.zoom{
    transition: all 0.3s linear;
}
.zoom:hover{
    transform: scale(1.1);
}




#Team{
    padding-top: 100px;
    text-align: center;
}


.flip-card {
    background-color: transparent;
    width: 333.5px;
    height: 370px;
    perspective: 1000px;
    display: inline-block;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .flip-card-front {
    background-color: #bbb;
    color: black;
  }
  
  .flip-card-back {
    background-color: #F8F9FA;
    text-align: center;
    color: white;
    transform: rotateY(180deg);
    padding: 70px 20px;
  }
  
#Blog{
    padding-top: 100px;
    background:  #F8F9FA;
    padding-bottom: 100px;

}
.blog-card{
    background: transparent !important;
}
  
#Contact{
    padding-top: 100px;
  
}
.content-form{
    /* height: 500px; */
    background: #F8F9FA;
}


.content_input{
  width: 100%;
  padding: 13px 10px;
  margin: 10px 0;
  border: 1px solid #CED4DA;
  border-radius: 5px;
  outline: none;
 
  
}
.content_area{
    width: 100%;
   resize: none;
   padding: 10px 10px;
   margin-top: 10px;
   border: 1px solid #CED4DA;
   border-radius: 5px;
   outline: none;

   

}
.content_input:focus,
.content_area:focus{
   border: 1px solid #000;
   border-radius: 5px;
}
::placeholder{
    color: gray;
    
}

#btn-content{
    background: #FFC107 !important;
    padding: 15px 40px;
    font-weight: 500;
    color: white;
    margin-top: 10px;
}
#btn-content:hover{
   
    color: #FFC107 !important;
    background: transparent !important;
}
iframe{
    border:0; 
    width: 100%;
    height: 100%;
}
.content_icon{
    width: 100px;
    height: 100px;
    background: #F2F2F2;
    border-radius: 50%;

}
.content_icon i{
    position: relative;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    font-size: 30px;
    /* background: linear-gradient(40deg, green, yellow);
    overflow: hidden; */
    background: -webkit-linear-gradient(50deg, #7AA749, rgb(243, 229, 101)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
      transition: all .3s linear;
}
.adres_card{
    height: 290px;
    transition: all .3s linear;
}
.adres_card:hover{
    background: #cecccc;
    /* color: white; */
}
.adres_card:hover> .content_icon{
    background: #fff;
}


.Card3d{
    min-height: 460px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; 
}

.swiper-container {
    width: 400px;
    height: 400px; 
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    background: #f2f2f2;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.swiper-container .swiper-slide .imgBox {
    position: absolute;
    width: 400px;
    height: 400px;
}

.swiper-container .swiper-slide .imgBox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-container .swiper-slide .content {
    position: absolute;
    bottom: 0;
    height: 100px;
    width: 100%;
    background-color: #fff;
    display: flex;
    padding: 20px;
    align-items: center;
}

.swiper-container .swiper-slide .content h2 {
    font-size: 20px;
    font-weight: bold;
}




@media screen and (max-width:580px) {
    .row{
        --bs-gutter-x:0 !important;
    }
    body{
        
        overflow-x: hidden !important;
    }
    
.Card3d{
    min-height: 400px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; 
}
    .swiper-container {
        width: 300px;
        height: 300px; 
    }
    .swiper-container .swiper-slide .imgBox {
        position: absolute;
        width: 300px;
        height: 300px;
    }
    .swiper-container .swiper-slide .content {
        position: absolute;
        bottom: 0;
        height: 80px;
        width: 100%;
        background-color: #fff;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .swiper-container .swiper-slide .content h2 {
        font-size: 13px;
        font-weight: bold;
    }
    .d3-btn{
         width: 100px !important;
         /* padding: 0 !important; */
         font-size: 13px !important;
    }

   
}

@media (max-width:992px) {
    #navbarSupportedContent {
        margin-top: 15px;
        background: #fff !important; 
        z-index: 3;
    }
    #navbarSupportedContent li{
        
        padding-left: 5px;
        

    }
    body{
        overflow-x: hidden !important;
    }
    #navbarSupportedContent a{
        color: black;
        text-decoration: none;
    }
    
    iframe{
        border:0; 
        width: 100%;
        height: 400px;
    }
}
