*{
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

.logo{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
    width: 40%;
    border: 3px solid white;
    border-radius: 15px;
    margin: 5px;
}

.navbar{
    display:flex;
    align-items: center;
    justify-items: center;
    position: sticky;
    top:0;
    cursor: pointer;
    
}

.nav-list{
    width: 70%;
    display: flex;
    align-items: center;
}

.nav-list li{
    list-style: none;
    padding: 26px 30px;
}

.nav-list li a{
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-family: 'Meow Script', cursive;
}

.nav-list li a:hover{
      color: rgb(175, 163, 163);
}

.rightNav{
    width: 30%;
    text-align: right;
    padding: 0 15px;
    
}

#search{
    padding:5px;
    font-size: 17px;
    border:2px solid grey;
    border-radius: 9px;
    vertical-align: middle;
}
.firstSection{
    height: 100vh;
}

.background{
    background: rgba(0, 0, 0, 0.7) url("../img/bg.jpg");
    background-size: cover;
    background-blend-mode:lighten;
}

.box-main{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    max-width: 50%;
    margin: auto;
    height: 90%;
}

.firstHalf{
    width:75%;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.secondHalf{
    width: 30%;
}

.secondHalf img{
    width: 70%;
    border: 4px solid white;
    border-radius: 15px;
    display: block;
    margin: auto;
}

.text-big{
    font-size: 35px;
    text-align:center;
    font-family: 'Meow Script', cursive;
   
}

.text-small{
    font-size: 20px;
    text-align: justify;
    font-family: 'Meow Script', cursive;
 
 
}

.btn{
    padding: 8px 20px;
    margin: 7px 3px;
    border:2px solid white;
    border-radius: 8px;
    background: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
    font-family: 'Meow Script';
}

.btn-sm{
    padding: 6px 10px;
    vertical-align: middle;
    font-size: 16px;
}

.btn-dark{
    color:black;
    border:2px solid grey;
    font-family: 'Meow Script', cursive;
}
.section{
    display:flex;
    align-items: center;
    justify-content: space-evenly;
    max-width:80%;
    margin: auto;
    font-family: 'Meow Script', cursive;
    padding: 90px;
}

.section-left{
   flex-direction: row-reverse;
}

.paras{
    padding: 0px 0px;
}

.sectionTag{
    font-family: 'Meow Script', cursive;
}

.sectionsubTag{
    font-family:'Meow Script', cursive;
}

.thumbnail img{
    width:250px;
    border: 2px solid black;
    border-radius: 26px;
    margin: 19px;
}

.contact{
    background-color:blanchedalmond;
    height: 833px;
}

.text-center{
    text-align: center;
    padding-top: 90px;
    font-family: 'Meow Script', cursive;
    font-size: 35px;
}

.form{
    max-width: 62%;
    margin: 25px auto;
}

 .form-input{
     margin: 14PX 0;
     padding: 5px 13px;
     width: 100%;
     border: 2px solid gray;
     border-radius: 6px;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .text-footer{
    text-align: center;
    padding: 30px 0;
    font-family: 'Meow Script', cursive;
    display:flex;
    justify-content: center;
    color: white;
    margin: 0;
 }

 .burger{
    display:none;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 15px;
 }

 .line{
     width: 33px;
     background-color: white;
     height: 4px;
     margin:3px 3px;

 }


  
  /* Position the image container (needed to position the left and right arrows) */
  .container {
    position:absolute;
  }
  
  /* Hide the images by default */
  .mySlides {
    display:none;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: #222;
    padding: 5px 16px;
    color: white;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .column {
    float: left;
    width: 16.66%;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.5;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }