.header{
    color: #4b4b4b;
    text-align: center;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.header p{
    color:#807379;

}


.nav-links{
    flex: 1;
    text-align: center;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position:relative;   
}

.nav-links ul li a{
    color: rgb(167, 162, 162);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    letter-spacing: 3px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.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;
}

.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}


.swiper{
    width: 55%;
    height:fit-content;
    align-items: center;
    vertical-align: middle;

}

.swiper-slide img{
    width: 100%;
    height: fit-content;
    align-items: center;
   
}

.swiper .swiper-button-prev, .swiper .swiper-button-next {
    color: #fff;
}

.swiper .swiper-pagination-bullet-active{
    background-color: #fff;
}

.social-header{
    text-align: center;
    padding-bottom: 2%;
    
}

.social-header a {
    margin-left: 10px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
  }

.social-header a span {
    width: 25px;
    height: 25px;
    background-color: #aaa;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-footer{
    text-align: center;
    
}

.social-footer a {
    margin-left: 10px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
  }

.social-footer a span {
    width: 25px;
    height: 25px;
    background-color: #aaa;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer{
    padding-top: 3%;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 12px;
    color: darkgray ;
    
}

.about-container{
    margin: auto;
    width: 80%;
    padding: 6px;
}

.about-container img{
    float: left;
    width: 300px;
    height: 300px;
    padding: 20px 20px 10px 0;
}

.text{
    font-size: 16px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #807379;
    letter-spacing: 1px;
      
}

.about-header{
    text-align: center;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #807379;
}


.contact h2{
    text-align: center;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #807379;
}

.contact-box{
    margin: auto;
    width: 60%;
    box-sizing: border-box;
    align-self: center;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    color: #403e3f;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
  }
  
  input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
  }
  
  input[type=submit]:hover {
    background-color: #45a049;
  }

  
.img-container{
    width: 100%;
    /* background-color: #faf6f6; */
    background-color: #080808;

}

.img-gallery{
    width: 80%;
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 10px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.img-gallery img{
    width: 100%;
    cursor: pointer;    
}

.img-gallery img:hover{
    transform: scale(0.9);
    border-radius: 5px;
}

.full-image{
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content:center;
    z-index: 100;
}

.full-image img{
    width: 100%;
    max-width: 500px;
}

.full-image span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 25px;
    color: #fff;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
}

