
*{
    margin: 0%;
    padding: 0%;
}


#navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0px;
    background: rgb(201, 233, 222);
    box-shadow: 0 5px 15px rgba(0, 0,0, 0.3);
    z-index: 19999;
    position: sticky;
    top: 0%;
    left: 0%;

}
#navbar:hover{
    box-shadow: 0 5px 15px rgba(0, 0,0, 0.6);
}

#navbar ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    
}
#navbar ul li{
    position: relative;

}
#navbar ul li a{
    align-items: center;
    color: rgb(8, 133, 243);
    display: block;
    padding: 3px 25px;
    border-radius: 10px;
    text-decoration: none;
}

#navbar ul li a:hover{
    color: black;
    box-shadow: 0 5px 15px rgba(0, 0,0, 0.6);
}

#navbar ul li a:hover,
#navbar ul li a.active{
    color: rgb(8, 133, 243);
}
#navbar ul li a.active::after,
#navbar ul li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background: rgb(247, 225, 225);
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#navbar ul li{
    list-style: none;
    font-size: 1.3rem;
}

.logo img{
    height: 10vh;
    width: 20vh;
}


.home img{
    height: 89vh;
    width: 100%;
    opacity: 75%;
}

.center{
    position: absolute;
    top: 50%;
    left: 34%;
    transform: translate(-50%, -50%);
    color: rgb(1, 18, 12);
    font-size: 5rem;
    font-weight: bolder;
}
.center1{
    position: absolute;
    top: 57%;
    left: 40%;
    transform: translate(-50%, -50%);
    color: rgb(74, 69, 11);
    font-size: 3rem;
    font-weight: bold;
}
.center2{
    position: absolute;
    top: 66%;
    left: 40%;
    transform: translate(-50%, -50%);
    color: rgb(74, 69, 11);
    font-size: 3rem;
    font-weight: bold;
    text-decoration: none;

}

.center2 a{
    text-decoration: none;
    padding: 20px;
    
    margin: 20px 20px ;
    font-size: 1.3rem;
    
}
.btn{
    border: 4px solid black;
    /* border-radius: 10px; */
    background-color: yellow;
    padding: 10px;
    cursor: pointer;
    transition: 00.4s ease;
    
}
.btn:hover{
    color: bisque;
    background-color: #faf9f9;
}

  /* about */

#About{
    display: flex;
    margin-top: 5px;
    padding: 10%;
    font-family: 'Finlandica', sans-serif;
}

.about img{
    border: 1px solid black;
}

.p{
    padding: 2%;
    border: 1px solid black;
    background-color: rgb(245, 244, 185);
}
.p h2{
    font-size: 1.5rem;
    font-weight: 900;
    
}


/* .gallery */

#Gallery{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.gallery img{
    width: 30%;
    height: 30vh;
    padding: 1%;
    cursor: pointer;
    transition: 0.4s ease;
    box-shadow: 20px 20px 20px rgba(0, 0,0, 0.6);
}

.gallery img:hover{
    box-shadow: 10px 10px 10px rgba(0, 0,0, 0.6);

}

.glry-head{
    width: 40%;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    border: 1px solid black;
    border-radius: 16px;
    background-color: rgb(169, 234, 213);
    cursor: pointer;
    transition: 00.4s ease;
    box-shadow: 10px 10px 10px rgba(0, 0,0, 0.3);
    margin-bottom: 2%;
}
.glry-head:hover{
    box-shadow: 10px 10px 10px rgba(234, 125, 125, 0.5);
}

/* contact */

.form1{
    align-items: center;
    text-align: center;
}

.img2 img{
    height: 60vh;
    position: absolute;
    right: 50px;
    width: calc(50% - 10%);
}
.con-container {
    align-items: center;
    text-align: center;
} 

form{
    border-radius: 5px;
    background-color: #e9a9a9;
    padding: 20px;
    width: 40%;

}
h3{
    
    margin-top: 5%;
    
    text-align: center;
    font-size: 2rem;
    background-color: antiquewhite;
}
p{
    padding: 1%;
    text-align: center;
    
    line-height: 1.8;
    text-indent: 0px;
    background-color: antiquewhite;
}

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;
    box-shadow: 30px 30px 50px rgba(0, 0,0, 0.3);
}
  
input[type=submit] {
    background-color: #5fcea5;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    width: 40%;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
}
  
input[type=submit]:hover {
    background-color: #45a049;
}
  
  



.line{
    margin: 30px;
}

footer{
    display: flex;
    flex-wrap: wrap;
    padding: 30px 50px;
    align-items: center;
    font-weight: 700;
    justify-content: space-between;
    margin: 40px 90px 0px 90px;
    background-color: antiquewhite;
}

footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .logoo{
    margin-bottom: 30px;
}

footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}

footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}
footer .follow{
    margin-top: 20px;
    
}

footer .follow i{
    color: #465b42;
    padding-right: 4px;
    cursor: pointer;
}

footer .install .row img{
    height: 10vh;
    width: 15vh;
    border: 1px solid #088178;
    border-radius: 6px;
}

footer .install img{
    margin: 10px 0 15px 0;
}

footer .pay{
    height: 10vh;
    width: 15vh;
}

footer .follow i:hover,
footer a:hover{
    color: #088178;
}

footer .copyright{
    width: 100%;
    text-align: center;
}



footer .search-container {
    float: right;
  }
  
footer input[type=text] {
    padding: 16px;
    /* margin-top: 8px; */
    font-size: 17px;
    border: none;
}
  
footer .search-container button {
    float: right;
    padding: 16px;
    margin-top: 8px;
    margin-right: 16px;
    background: #e9a9a9;
    font-size: 17px;
    position: absolute;
    right: 103px;
    width: calc(50% - 40%);
    border: none;
    
    cursor: pointer;
    transition: 0.6s ease;
}
  
footer .search-container button:hover {
    color: white;
    background: rgb(154, 220, 137);
}
  
@media screen and (max-width: 600px) {
    footer .search-container {
      float: none;
}
footer a, .footer input[type=text], footer .search-container button {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
}
footer input[type=text] {
    border: 1px solid #ccc;  
}
  }


  .form-container{
    background: url(images/yay-wink.gif)no-repeat center center/cover ;
    width: 238%; 
}

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: 5px;
  border-radius: 20px;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 100px;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width: 260%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  /* background: url(../Telephone.html/img/yay-wink.gif); */
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

.btn1{
display: flex;
padding: 5px;
border: 3px solid black;
border-color: black;
border-radius: 15px;
background-color: burlywood;
font-weight: 600;
cursor: pointer;
transition-duration: 0.4s;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}
