*{
   margin : 0;
   padding : 0; 
   font-family: 'Josefin Sans', sans-serif;
   scroll-behavior: smooth;
}
::selection{
    background-color: rgba(0, 0, 0, 0.474);
    color: #14ac6c;
    box-shadow: 10px 10px 18px rgba(0, 0, 0, 0.093);
}

section.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.929),rgba(255, 255, 255, 0.225)), url(images/image1.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    scroll-behavior: smooth;
}
.vl{
    height: 105px;
    border-left: 2px solid #fff;
    margin-left: 50px;
    box-shadow: 10px 10px 18px rgba(255, 255, 255, 0.185);
}
.hl{
    height:10px;
    border-bottom: 2px solid #fff;
    box-shadow: 10px 18px 19px rgba(255, 255, 255, 0.218);
}
nav{
    display: flex;
    padding: 0.2% 2%;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    width: 97.5%;
    position: fixed;
    background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.074));
}
nav img{
    width: 278px;
    transition: 0.3s;
}
nav img:hover{
    opacity: 0.8;
}
.nav-links{
    flex: 1;
    text-align: right;
    transition: 0.5s;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 21px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    display: block;
    margin: auto;
    background: #14ac6c;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.textbox{
    color: #fff;
    position: absolute;
    left :5%;
    right: 8%;
    top: 30%;
    text-align: left;
}
.textbox h1{
    font-size: 58px;
    font-family: 'Josefin Sans' sans-serif;
    border-bottom-style: solid;
    border-bottom-width: 5.1px;
    border-color: #14ac6c;
    width: fit-content;
    padding-bottom: 2px;
    padding-left: 1%;
    padding-right: 2%;
}
.textbox p{
    margin: 15px 0 40px;
    font-size: 31px;
    line-height: 40px;
    font-family: 'Open Sans', sans-serif;
}
.vu-btn{
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  border: 2px solid #fff;
  padding: 13px 28px;
  margin-top: 10px;
  font-size: 20px;
  background: transparent;
  position:relative;
  cursor: grab;
  transition: 0.4s;
}
.vu-btn:hover{
    border: 2px solid #fff;
    background: #14ac6c;
    color: #fff;
}
.vu-btn:active{
    cursor: grabbing;
    box-shadow: 10px 10px 18px rgba(0, 0, 0, 0.5) ;
}
nav .fa{
    display: none;
}
.gallery{
    margin-top: 1px;
    width: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.111),rgba(255, 255, 255, 0.292)), url(images/image2.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    scroll-behavior: smooth;
}
section.gallery h1{
    font-weight: lighter;
    color: #fff;
    font-size: 52px;
    width: 80%;
    margin: auto;
    margin-bottom: 25px;
    text-align: center;
    padding-top: 115px;
    border-bottom-style: solid;
    border-width: 3px;
    border-color: #14ac6c;
    font-family: 'Josefin Sans', sans-serif;
    width:fit-content;
    padding-left: 20px;
    padding-right: 20px;
}
.container{
    margin: 20px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-auto-rows: 300px 300px;
    grid-gap: 14px;
    grid-auto-flow: dense;
    padding-bottom: 35px;
}
.gallery-item{
    width: 100%;
    height: 100%;
    position: relative;
}
.gallery-item .image{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.gallery-item .image img{
    width: 100%;
    height: 100%;
    border-color: #fff;
    border-radius: 2.5%;
    object-fit: cover;
    object-position: 50% 50%;
    cursor: pointer;
    transition: 0.5s;
}
.gallery-item:hover .image img{
    transform: scale(1.5);
    -webkit-filter: blur(5px) saturate(1.8);
    filter: blur(2px) saturate(1.3);
}
.gallery-item .text{
    opacity: 0;
    text-align: center;
    font-family: sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
    pointer-events: none;
    z-index: 4;
    transition: 0.3s ease-in-out;
}
.gallery-item:hover .text{
    opacity: 1;
    animation: move-down 0.3s linear;
    padding: 1em;
    width: 100%;    
}
.w-2{
    grid-column: span 2;
}
.w-3{
    grid-column: span 3;
}
.w-4{
    grid-column: span 4;
}
.w-5{
    grid-column: span 5;
}
.w-6{
    grid-column: span 6;
}
.h-2{
    grid-row: span 2;
}
.h-3{
    grid-row: span 3;
}
.h-4{
    grid-row: span 4;
}
.h-5{
    grid-row: span 5;
}
.h-6{
    grid-row: span 6;
}
.about{
    margin-top: -30px;
    justify-content: center;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    min-height: 100vh;
    background-color: #fff;
    scroll-behavior: smooth;
}
.me{
    background: url(images/image3.jpg) no-repeat left;
    background-size: 49%;
    background-color: rgba(0, 0, 0, 0.707);
    overflow: hidden;
    padding: 100px 0;
}
.me h1{
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 50px;
    padding-right: 5px;
    font-weight: lighter;
    border-bottom: #14ac6c;
    border-width: 4px;
    width: fit-content;
    border-bottom-style: solid;
}
p.info{
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-size: 25px;
}
.inner-container{
    width: 56%;
    float: right;
    background-color: rgba(0, 0, 0, 0.767);
    padding: 160px;
}
.footer-text{
    background-color: rgba(0, 0, 0, 0.922);
    color: #14ac6c;
    letter-spacing: 1px;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

@keyframes move-down{
    0%{
        top: 10%;
    }
    50%{
        top:35%;
    }
    100%{
        top: 50%;
    }
}
@media(max-width: 700px){
    .textbox h1{
        font-size: 25px;
    } 
    .textbox p{
        font-size: 20px;
        line-height: 26px;
    }   
    .nav-links ul li{
        display: block;
    }
    nav img{
        width: 280px;
    }
    .vu-btn{
        font-size: 17px;
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 8px;
        padding-bottom: 8px;
        margin-top: -15px;
    }
    .hl{
        border-width: 0px;
    }
    .vl{
        border-width: 0px;
    }
    .nav-links{
        position: absolute;
        background: #14ac6c;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        overflow-x: hidden;
        transition: 0.8s;
    }
    nav{
        background: linear-gradient(rgba(0,0,0), rgba(0, 0, 0, 0.059));
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 15px;
    }
    .textbox{
        top: 20%;
    }
    .container{
        display: inline-block;
        margin: 10px;
    }
    section.gallery h1{
    font-size: 35px;
    padding-top: 42px;
    margin-bottom: 13px;
    }
    .gallery-item .image img{
        width: 360px;
        padding-bottom: 5px;
        margin-right: 5px;
    }
    .gallery-item:hover .image img{
        animation: none;
        transform: none;
    }
    .gallery-item:hover .text{
        animation: none;
        transform: none;
    }
    .w-2, .w-3, .w-4, .w-5, .w-6{
        grid-column: span 1;
    } 
    .h-2, .h-3, .h-4, .h-5, .h-6{
        grid-row: span 1;
    }
    .inner-container h1{
        font-size: 30px;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .me{
        background-image: none;
        padding: 70px;
    }
    p.info{
        font-size: 20px;
        margin-left: -70px;
        margin-right: -70px;
    }
    .inner-container{
        width: 60%;
        border-radius: 20px;
        padding: 100px;
        text-align: center;
        margin-right: -50px
        ;
    }
}