 
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --orange:#ffa500;
*{
    font-family:'nunito', sans-serif;
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration: none;
  
    outline: none;
    border: none;
    transition: all 0.2s linear;
}

::selection {
    background: var(--orange);
    color:#fff;   
}

html, body{
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 6rem; 
     height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #333;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
section{
    padding: 2rem 9%;
    
}



.heading{
    text-align: center;
    text-align:2.5rem 0;
}
.heading span{
    color: var(--orange);
    font-weight: bolder;
    text-transform: uppercase;
    background: rgba(255,165,0,0.2);
    padding: 0.5rem 1rem;
    border-radius: .5rem;

}
.heading span.space{
    background: none;
}

/* @media (max-width:359px) {
    .heading span{
        font-size: .5rem;
        padding: .2rem .5rem
    }
} */

.btn{
    display: inline-block;
    margin-top: 1rem;
    background: var(--orange);
    color: #fff;
    padding: .5rem 2.5rem;
    border: .2rem solid var(--orange);
    cursor: pointer;
    font-size: 1rem;

}

.btn:hover{
    background: transparent;
    color: var(--orange);
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 5%;
    background: #222;
    position: relative;
    z-index: 1000;
}

header .logo {
    width: 60px;      /* Adjust width as needed */
    height: auto;
    object-fit: contain;
    margin-right: .5rem;
    margin-left: 0;
    display: block;
   
    /* Remove font-size and font-weight if using an image */
}
header .logo span{
    color: var(--orange);
}
header .logo-text {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    margin-left: .2rem;
    display: inline-block;
    vertical-align: middle;

}
.header-left {
    display: flex;
    align-items: center;
}
header .navbar.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .navbar a{
    color: #fff;
    font-size: 1rem;
    margin:0 .8rem;
}


header .navbar a:hover{
    color: var(--orange);
}
 
header .icons i{
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    margin-right: 2rem;
}
header .icons i:hover{
    color: var(--orange);
}   

header .search-form{
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding:1rem 2rem;
    background: #333;
    border-top: .1rem solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    z-index: 1001;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
header .search-form.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
header .search-form #search-box{
    width: 100%;
    padding: 1rem;
    text-transform: none;
    color: #333;
    font-size: 1.3rem;
    border-radius: .5rem;
}

body{
    height: 200rem;
}


/* Mobile phones and small devices */
@media (max-width: 768px) {
  html, body {
    font-size: 30%; /* Slightly smaller base font size for better scaling */
    scroll-padding-top: 4rem;
  }

 header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: #222;
  height: 60px;
}

  .header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-left .menu-icon {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
    display: block; 
    left: 0;
}


  header .logo {
    width: 40px; /* Smaller logo on mobile */
    margin-right: .3rem;
  }

  header .logo-text {
    font-size: 1.3rem;
    margin-right: 7.5rem;
  }

  header .navbar {
    display: none; /* Hide menu initially on mobile */
    flex-direction: column;
    width: 100%;
    background: #222;
    padding: 1rem 0;
  }

  header .navbar.active {
    display: flex; /* Show when toggled */
  }

  header .navbar a {
    margin: .5rem 0;
    text-align: center;
    font-size: 1.2rem;
  }

  header .icons {
    margin-top: .5rem;
    width: 50%;
    
    display: flex;
    justify-content: center;
  }
  /* Right section: icons (search, user) */
.header-right {
  display: flex;
  align-items: center;
  gap: .5rem;
}

  section {
    padding: 1.5rem 5%;
  }

  .btn {
    font-size: 0.9rem;
    padding: .4rem 2rem;
  }
}

@media(max-width: 450px) {
    html {
        font-size: 50%;
    }
    header .logo {
        width: 30px; /* Smaller logo on very small screens */
      
    }
    header .logo-text {
        font-size: 1rem;
        margin-left: .2rem;
        display: flex;
      
        flex-direction: row;

    }
    header .navbar a {
        font-size: 1rem;
    }
    header .icons i {
        font-size: 1.2rem;
    }

    
}







.login-form{
    position:fixed;
    top: -120%;
    left: 0;
    z-index: 10000;
    min-height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-form.active{
    top:0;
}

.login-form form {
    margin: 0;
    padding: 2rem 2.5rem;
    border-radius: .5rem;
    background: #fff;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
    
    


.login-form form h3 {
    color: #444;
    text-align: center;
    font-size: 2.2rem;
    padding: 1rem 0;
}

.login-form form .box {
    width: 100%;
    padding: 1rem;
    margin: .8rem 0;
    font-size: 1.7rem;
    color: #333;
    border: .1rem solid rgba(0, 0, 0, 0.3);
    text-transform: none;
}
.login-form form .box:focus{
    border-color: var(--orange);
}
.login-form form #remember{
    margin: 2rem 0;
 }

.login-form form #remember label{
    font-size: 1.5rem;
}
.login-form form .btn{
    display: block;
    width: 100%; 
}

.login-form form p{
    padding:.5rem 0;
    font-size: 1.5rem;
    color: #666;
}
.login-form form p a{
    color: var(--orange);
}

.login-form form p a:hover{
    color: #333;
    text-decoration: underline;
}

.login-form #form-close{
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 5rem;
    color: #fff;
    cursor: pointer;
}
 
#menu-btn{
    display: none;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    border-radius: .5rem;
    border: .2rem solid #fff;
    padding: .3rem .4rem;
}

.home{
    display: flex;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
    flex-flow: column;
    position: relative;
    z-index: 0;

}

.home .contend{
    text-align: center;
}
.home .contend h3{
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.home .contend p{
    font-size: 1.5rem;
    color: #fff;
    padding: 5rem 0;
    
}

.home .video-container video{
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    z-index:-1;
    object-fit: cover;
}
.home .controls{
    padding: .3rem;
    border-radius: 5rem;
    background: rgba(0,0,0,.5);
    position: relative;
    top: 8.5rem;
}
.home .controls .vid-btn{
    width: 1rem;
    height: 1rem;
    display: inline-block;
    border-radius: 50%;
    background: #e3e3e3;
    margin: 0 .5rem;
    cursor: pointer;
    
}
.home .controls .vid-btn .active{
    background: var(--orange);
}


    


.book .row{
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-direction: row;
    padding-top: 2.5rem;
    
    
    }
    
   
.book .row .image{
    flex: 1 1 40rem;
    max-width: 50%;
    width: 100%;
     
}
.book .row .image img{
   width: 100%;
    height: 550px;
    display: block;
}
.book .row form{
    flex: 1 1 50%;
    max-width: 50%;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border-radius: .5rem;
    background: #fff;  

} 
.book .row form .inputBox{
    padding: .5rem 0;
}
.book .row form .inputBox input{
    width: 100%;
    padding: 1rem;
    border: .1rem solid rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    color: #333;
    border-radius: .5rem;
} 
.book .row form .inputBox input:focus{
    border-color: var(--orange);
}
@media (max-width: 400px) {
    .book .row{
        flex-direction: column;
        align-items: center;
    }
    .book .row .image,
    .book .row form{
        max-width: 100%;
        width: 100%;
    }
    .book .row .image img{
        height: 350px;
        border-radius: 1.5rem;
    }
    .book .heading h1{
        font-size: .1rem;
        text-align: center;
        
    }
    
}

/* packages */
.packages{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5rem 0;
}
.packages .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;



}

.packages .box-container .box{
    flex: 1 1 30rem;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    background: #fff;
    padding: 0;
    color: #333;
    max-width:290px;
    max-height: 400px;

    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;

    

    
}
.packages .box-container .box img{
    width: 100%;
    height: 250px;
    object-fit: cover;

} 
.packages .box-container .box .content{
    padding: 1.5rem;
    padding-top: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.packages .box-container .box .content h3{
   font-size: 1.3rem;
    color: #333;
   
}
.packages .box-container .box .content h3 i{
    color: var(--orange);
}
.packages .box-container .box .content p{
    font-size: 1rem;
    color: #666;
    padding: 0;
}
.packages .box-container .box .content .stars{
    color: var(--orange);
    font-size: .8rem;
    padding-top: .5px;
}
.packages .box-container .box .content .price{
    font-size: 1.1rem;
    color:#333;
    padding-top: .5rem;
}
.packages .box-container .box .content span{
    color: #666;
    font-size: 1.5rem;
    text-decoration: line-through;
    margin-left: .5rem;
}
.packages .box-container .box .content .btn{
    padding-top: .1rem;
    
}
@media (max-width: 400px) {
    .packages .box-container {
        flex-direction: column;
        align-items: center;
    }
    .packages .box-container .box{
        max-width: 100%;
        width: 90%;
        margin: 0 auto;
    }
    .packages h1{
        font-size: .2rem;
    }
    
}

.services{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5rem 0;
}
.services .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding-top: 2.5rem;



}
.services .box-container .box{
    flex: 1 1 30rem;
    border-radius: .5rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    width: 100%;
    max-width: 250px;
    max-height: 350px;

}
.services .box-container .box i{
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1rem;
    padding: 1rem;
}
.services .box-container .box h3{
    font-size: 1.3rem;
    color: #333;
   
}
.services .box-container .box p{
    font-size: 1rem;
    color: #666;
    padding: 1rem 0;
}
.services .box-container .box:hover{
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    transform: translateY(-.5rem);
}
/* gallery css */

.gallery{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5rem 0;
}

.gallery .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

.gallery .box-container .box{
    flex: 1 1 30rem;
    border-radius: .3rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    background: #fff;
    padding: 0;
    color: #333;
    max-width:320px;
    max-height: 600px;
    position: relative;
}

.gallery .box-container .box img{
    width: 320px;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: .3rem;
    transition: transform 0.3s ease;


}
.gallery .box-container .box .img7,
.gallery .box-container .box .img8,
.gallery .box-container .box .img9 {
    
  
    object-fit: cover;
    display: block;
    border-radius: .3rem;
    transition: transform 0.3s ease;
}




.gallery .box-container .box .content{
    position: absolute;
    top: -100%; left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    padding-top: 5rem;
}
.gallery .box-container .box .content h3{
    font-size: 1.3rem;
    color: var(--orange);
}
.gallery .box-container .box .content p{
    font-size: 1rem;
    color: #fff;
    padding: 1rem 0;
}
.gallery .box-container .box:hover .content{
    top: 0;
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width:390px) {
    .gallery .box-container {
        flex-direction: column;
        align-items: center;
    }
    .gallery h1{
        font-size: -4rem;
    }
    .gallery .box-container .box img{
    width: 320px;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: .3rem;
    transition: transform 0.3s ease;
}

.gallery .box-container .box{
    flex: 1 1 15rem;
    border-radius: .3rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    background: #fff;
    padding: 0;
    color: #333;
    max-width:320px;
    max-height: 600px;
    position: relative;
      display: block;
    border-radius: .3rem;
    transition: transform 0.3s ease;
}
 
.gallery .box-container .box .img10,
.gallery .box-container .box .img12
{
    
  
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: .3rem;
    transition: transform 0.3s ease;
}


    
    
}



.vedgallery {
    padding: 50px;
    background-color:  rgba(0, 0, 0, 0.5);
    width: 100%;
    border-radius: 5px;
    
   
    
}
.vedgallery .box-container{
    display: flex;
    flex-direction: row;
    gap: 1.5rem;

    
}


.vedgallery .box:hover {
    transform: scale(1.03);
}

.vedgallery  video{
    width: 100%;
    height: 500px;
    border: .5rem solid rgba(54, 50, 50, 0.1);

    
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

@media (max-width:450px) {
    .vedgallery .box-container {
        flex-direction: column;
        align-items: center;
    }
    .vedgallery video {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
}








.review{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5rem 0;
    
}
.review .box-container{
    display: flex;
    
    gap: 2rem;
    justify-content: center;
    align-items: center;
    justify-items: row;
    width: 100%;
    padding: 2rem 0;
}
.review .box{
    padding: 2rem;
    border-radius:0 1rem 2rem rgba(0, 0, 0, 0.1);
    border-radius: .5rem;
    text-align: center;
    


}

.review .box img{
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.review .box h3{
    font-size: 2rem;
    color: #333;
}
.review .box p{
    font-size: 1.2rem;
    color: #666;
    padding: 1rem 0;
}
.review .box .stars{
    color: var(--orange);
    font-size: 1.5rem;
}

@media (max-width: 600px) {
    .review .box-container {
        flex-direction: column;
        align-items: center;
    }
    .review .box {
        max-width: 90%;
        padding: 1rem;
    }
    .review  h1{
        font-size: .4rem;
    }
}

/* Contact section layout */
.contact .row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    padding-top: 2.5rem;
    width: 100%;
    max-width: 1200px;
    max-height: 500px;
    margin: 0 auto;
}

.contact .row .image {
    flex: 1 1 30rem;
    max-width: 40%;
    width: 100%;
}

.contact .row .image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: .5rem;
    display: block;
}

.contact .row form {
    flex: 1 1 30rem;
    max-width: 50%;
    width: 100%;
    height: 459px;
    background: #fff;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact .row form h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.contact .row form .box,
.contact .row form textarea {
    width: 100%;
    padding: 1rem;
    border: .1rem solid rgba(0,0,0,0.1);
    border-radius: .5rem;
    font-size: 1rem;
    color: #333;
    background: #f9f9f9;
    resize: none;
}

.contact .row form .box:focus,
.contact .row form textarea:focus {
    border-color: var(--orange);
    background: #fff;
}

.contact .row form .btn {
    width: fit-content;
    align-self: flex-start;
    margin-top: .2rem;
    padding: .5rem 2rem;
    border-radius: .3rem;
}


/* Footer Section Styles */
/* filepath: c:\Users\91790\Desktop\Travel-Tourism\style.css */
/* General Footer Section */
.footer {
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 40px 20px 20px;

    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    
    
    
    
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}


.footer .box {
    flex: 1 1 250px;
    min-width: 200px;
}

.footer .box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

.footer .box a {
    display: block;
    color: #bbb;
    font-size: 16px;
    margin: 10px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .box a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer .box .details {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

.footer .box i {
    color: #f39c12;
    margin-right: 10px;
}

/* Credit Section */
.footer .credit {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 16px;
    color: #aaa;
    border-top: 1px solid #444;
}

.footer .credit span {
    color: #f39c12;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .box-container {
        flex-direction: column;
        align-items: flex-start;
    }
}


.team {
    padding: 5rem 0;
    background: #fff;
}

.team .heading {
    text-align: center;
    margin-bottom: 3rem;
}

.team .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team .box {
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    text-align: center;
    padding: 2rem 1rem;
    max-width: 300px;
    flex: 1 1 250px;
}

.team .box img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team .box h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: .5rem;
}

.team .box p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.team .box .social a {
    display: inline-block;
    margin: 0 .5rem;
    color: var(--orange);
    font-size: .8rem;
    transition: color 0.2s;
}

.team .box .social a:hover {
    color: #333;
}

@media (max-width: 900px) {
    .team .box-container {
        flex-direction: column;
        align-items: center;
    }
}



















body{
    height:300rem;
}





@media (max-width:1200px){
    html{
       font-size:55%; 
    }
}

@media (max-width:991px){
    
    header{
        padding: 2rem;
    }
}
@media (max-width:768px){
    #menu-btn{
        display: initial;
    }
    header .navbar{
        position: absolute;
        top: 100%; right: 0;
        left: 0;
        background: #333;
        border-top: .1rem solid rgba(255, 255, 255, 0.2);
        padding: 1rem 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        font-size: .5px;

    }
    header .navbar a{
        display: block;
        margin: 1rem 0;
    border-radius: .5rem;
    padding: 1rem 0;
    background: #222;
    }

}
@media (max-width:450px){
    html{
        font-size: 50%;
    }
    .heading span{
        font-size: 2rem;
    }
} 



/* ======= Responsive Media Queries ======= */

/* For tablets and below */
@media (max-width: 991px) {
    header {
        padding: 1.5rem 2rem;
    }
    .book .row,
    .contact .row {
        flex-direction: column;
    }
    .book .row .image,
    .book .row form,
    .contact .row .image,
    .contact .row form {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .packages .box-container,
    .team .box-container,
    .services .box-container,
    .gallery .box-container,
    .footer .box-container {
        gap: 1rem;
    }
}



/* For very large screens */
@media (min-width: 1400px) {
    .container,
    .box-container {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* media querry for services */
@media (max-width: 600px) {
    .services .box-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        max-width: 600px;

    }
    .services .box {
        width: 90%;
        max-width: 600px;
        min-width: 0;
        margin: 0 auto;
        text-align: center;
    }
    .services .box i {
        font-size: 3rem;
        margin-bottom: .5rem;
    }
    .services .box h3 {
        font-size: 1.5rem;
        margin-bottom: .5rem;
        margin-top: 0;
    }
    .services .box p {
        font-size: 1.1rem;
    }
    .services h1{
        font-size: .2rem;
        margin-bottom: .5rem;
    }
}

/* gallery */

@media (max-width: 600px) {
    .gallery {
        padding: 2rem 0.5rem;
    }
    .gallery .box-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
    }
    .gallery .box-container .box {
        max-width: 95vw;
        min-width: 0;
        width: 100%;
        margin: 0 auto 1rem auto;
        height: auto;
        max-height: none;
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .gallery .box-container .box img,
    .gallery .box-container .box .img7,
    .gallery .box-container .box .img8,
    .gallery .box-container .box .img9 {
        width: 100%;
        max-width: 100vw;
        height: auto;
        min-height: 180px;
        object-fit: cover;
        border-radius: .3rem;
        display: block;
    }
    .gallery .box-container .box .content {
        flex: 1 0 auto;
        padding: 1rem;
        padding-top: 3rem;
    }
    .gallery .box-container .box .content h3 {
        font-size: 1.1rem;
    }
    .gallery .box-container .box .content p {
        font-size: 1rem;
    }
    .gallery .box-container .box .content:empty {
    display: none;
    }

}

@media (max-width:450px){
    html {
        font-size:50%;
    }
    .heading span {
        font-size:.5rem;
    }
    .contact .row form .inputBox input {
        width:100%;
    }
    .heading span .space {
        font-size: .5rem;
    }
}