*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    scroll-behavior: smooth;
}









.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.734),rgba(8, 16, 49, 0.782)),url(./images/tbayser.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

@media (max-width:1388) {
    .header{
        background-attachment: scroll;
    }    
}

nav{
    display: flex;
    padding: 2% 6%;
    position: fixed;
    width: 90%;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1.5px solid goldenrod; */
    background-color: transparent;
    transition: .7s;
}

nav:hover{
    border-bottom: 1px solid goldenrod;
    background-color: rgba(0, 0, 0, 0.802);
}



nav .logo{
    font-size: 30px;
    text-decoration: none;
    color: goldenrod;
    text-transform: uppercase;
    line-height: .6;
    
}
nav .fa{
    
    display:  none;
}


.nav-links{
    flex: 1;
    text-align: right;

}

.nav-links ul li{
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;   
}

.nav-links ul li a{
    color: goldenrod;
    text-decoration: none;
    font-size: 13px;

}

/* .nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background:  #1504a8;
    display: block;
    margin: auto;
    transition: 0.4s;
} */

.nav-links ul li a:hover{
    color: whitesmoke;

}

.text-box{
    width: 60%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.049);
    padding: 16px 16px;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    text-align: center;

}
.text-box h1{
    font-size:32px ;


}

.text-box p{
    margin: 10px 0 40px;
    font-size:14px ;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.row a{
    text-decoration: none;
    color: black ;
}
.hero-btn:hover{
    border: 1px solid#12095e;
    background: goldenrod;
    transition: 1s;
}

nav.fa{
    display: none;

}

@media(max-width: 700px ) and (max-width:1200px){

    nav{
        position: fixed;
        top: 0;
        width: 90%;
        
    }

    nav .logo{
        font-size: 18px;
        line-height: 1;
        
    }

    .text-box{
        width: 90%;
        line-height: 1.5;
    }
    .text-box h1{
        font-size: 20px;
    }

    .nav-links ul li{
        display: block;

    }

    .nav-links ul li a{
        color: whitesmoke;

    }
    .nav-links{
        position: fixed;
        background: goldenrod;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: center;
        z-index: 2;
        transition: 1s;

    }

    nav img{
        width: 200px;
    }

    nav .fa{
        display: block;
        color: goldenrod;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    
    nav .left{
        color: #fff;
    }

    .nav-links ul{
        padding: 30px;
    }

}



/* =========about================ */


.about{
    width: 70%;
    padding-top: 100px;
    margin: auto;
}

.about h2{
    text-align: center;
    font-size: 30px;
    color: goldenrod;
}

.about-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 50px;
}

.about-row .about-col{
    flex-basis: 48%;
    padding: 10px;
    margin-bottom: 60px;
}

.about-col h3{
    font-size: 20px;
    color: goldenrod;
    width: 50%;
    height: 20px;
    margin-bottom: 15px;
    margin-top: 20px;
}


.about-col p{
    font-size: 16px;
    line-height: 1.3;
}

.about-col img{
    width: 100%;
}
@media(max-width: 700px ) and (max-width:1200px){
    
    .about h2{
        font-size: 30px;
    }

    .about-row{
        flex-direction: column;
        margin-bottom: 20px;
    }

    .about-col h3{
        width: 100%;
        margin-bottom: 30px;
    }
    .about-col{
        margin-bottom: 20px;
    }
 
    
    .about-col p{
        font-size: 13px;
        line-height: 1.3;
    }
}


/* ============Services ==========*/

.service{
    width: 100%;
    background:#182430;
    padding-top: 100px;
    margin: auto;
    
}

.service h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
}


.service-row{
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    margin-top: 80px;
    margin-left: 16%;  
     
}

.service #rowBottom{
    padding-bottom: 10%; 
}

.service-col {
    flex-basis: 15%;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: rgba(245, 245, 245, 0.035) ;
    
}

.service-col:hover{
    box-shadow: 0 0 10px 10px goldenrod ;
}


.service-col  a{
    width: 65%;
    height: 150px;
    border-radius: 10px;
}
.service-col .fa-solid{
    color: whitesmoke;
    font-size: 50px;
}

.service-col h4{
    color: whitesmoke;
    width: 100%;
    font-size: 12px;
    margin-top: 20px;
    border-radius: 5px;
    background-color: transparent;
}


.service p{
    color: whitesmoke;
    margin: auto;
    text-align: center;
    padding: 10px;
    padding-bottom: 20%;
}

.about-quote{
    padding: 8px 16px;
    font-size: 12px;
}


@media(max-width: 700px ) and (max-width:1200px){


 
    .service-row{
        flex-direction: column;
        margin-top: 40px;
        text-align: center;
    }   

    .service-col{

        margin-bottom: 80px;
    }
    .service p{
        color: whitesmoke;
        margin: auto;
        text-align: center;
        font-size: 12px;
        padding: 10px;
        padding-bottom: 30%;
    }

    .about-quote{
        padding: 4px 10px;
        font-size: 10px;
        margin-left: 5px;
        margin-top: 2px;
    }
    

}


table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    color: whitesmoke;

  }
  
  table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }
  
  table tr {
    background-color: rgba(245, 245, 245, 0.035);
    border: 1px solid #ddd;
    padding: .35em;
    color: whitesmoke;
  }
  
  table th,
  table td {
    padding: .625em;
    text-align: center;
    color: whitesmoke;
  }
  
  table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: whitesmoke;
  }
  
  @media screen and (max-width: 600px) {
    table {
      border: 0;
    }
  
    table caption {
      font-size: 1.3em;
    }
    
    table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    table tr {
      border-bottom: 3px solid #ddd;
      display: block;
      margin-bottom: .625em;
    }
    
    table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
    }
    
    table td::before {
      /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    table td:last-child {
      border-bottom: 0;
    }
    .gallery.container img{
    width: 50%;
    height: 100%;
    display: block;
    }
  }
  
  

























  /* gallry */
  .gallery{
  width: 100%;
  background:#182430;
  padding-top: 100px;
  margin: auto;

  }

  .gallery h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
}
  
  .gallery .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background:#182430;
    padding: 15px;
  }
  .gallery .container img {
    width: 100%;
    height: 100%;
    display: block;
    -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: all 100ms ease-out;
  }



.gallery .container img:hover {
  transform: scale(1.04);
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
  
  
  
  
  
  
  
  

/* quote/ contact us    */  

.location{
    width: 100%;
    height: 100vh;
    margin: auto;
}

.location iframe{
    width: 100%;
    height: 100vh;
}


.contactUs{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    
}

.contactUs #contact{
    text-align: center;
    font-size: 30px;
    color: goldenrod;
    margin-bottom: 5%;
}
.row{
    display: flex;
    justify-content: space-between;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 20px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.contact-col div .fa{
    font-size: 28px;
    color: goldenrod;
    margin-bottom: 5px;
    margin-right: 30px;
}

.contact-col p{
    padding: 0;

}

.contact-col h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
    font-weight: 400;
}

/* quote  form */


.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.location h3{
        text-align: center;
        padding-bottom: 5%;
        font-size: 30px;
        font-weight: 14px;
  
}
.contact-col #quote{
    color: black;
    font-size: 18px;
    padding-bottom: 20px;
}


.contact-col p{
    color: rgb(100, 99, 99);
    padding-top: 20px;
}

.contact-col .red-btn{
    display: inline-block;
    text-decoration: none;
    border: .5px solid black;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    color: black;
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
}

.red-btn:hover{
    font-size: 15px;
    color: whitesmoke;
    border-radius: 6px;
    border: 1px solid goldenrod;
    background:  goldenrod;
    transition: 1s;
}


@media(max-width: 700px ) and (max-width:1200px){

    .contact-col div .fa{
        font-size: 20px;
    }
    
 .row{
     margin-top: 30px;
 }
    
    .contact-col h5{
        font-size: 14px;
    }
    

}




.success{
    padding-top: 180px;
    width: 100%;
    height: 40vh;
    text-align: center;
}

p{
    margin-top: 10px;
}

.success .buttonHome{
   line-height: 70px;
    text-decoration: none;
    padding: 10px 14px;
    background-color: rgba(204, 204, 204, 0.164);
    color: goldenrod;
}
.success .buttonHome:hover{
    border-bottom: 1px solid goldenrod;
    background-color: rgba(0, 0, 0, 0.802);
    color: whitesmoke;
 }










/* footer */

footer{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
    
}

footer  h4{
    color: rgb(71, 71, 71);
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 3%;
}

@media(max-width: 700px ) and (max-width:1200px){


 
    .row{
        flex-direction: column;
      
    }   

  

}












.whatsapp-btn-container {
    position: fixed;
    right: 90px;
    opacity: 0;
    bottom: -50px;
    padding: 24px;
    animation: fade-up 1000ms forwards;
    animation-delay: 1000ms;
}

@keyframes fade-up {
    100% {
        bottom: 24px;
        opacity: 1;
    }
}

.whatsapp-btn-container .whatsapp-btn {
    font-size: 48px;
    color: #25d366;
    display: inline-block;
    transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover {
    transform: scale(1.2);
}

.whatsapp-btn-container span {
    position: absolute;
    top: 0;
    left: 4px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #075e54;
    transform: rotateZ(20deg) translateX(10px);
    opacity: 0;
    transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover + span {
    transform: rotateZ(0deg) translateX(0px);
    opacity: 1;
}