*{
    padding:0;margin:0;box-sizing: border-box;
}
body{
    height: 1000px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: lightblue;
}

nav{
    width: 100%;
    height: 100px;
    background:white;
    color:black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0px 80px;
    position: fixed;
    top: 0;
}
.logo{
    font-family: 'Tangerine', serif;
    text-shadow: 4px 4px 4px #aaa;
    font-size: 35px;
    font-weight: 1000;
}
.logo i{
    color:red;
}
.logo span{
    color: red;
}
.menu a{
    text-decoration: none;
    padding:10px 20px;
    font-family: "Tangerine",serif;
    font-size: 30px;
    font-weight: bold;
    color: rgb(22, 22, 78);
}
.menu a:hover{
    color:red;
}

.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  footer{
    width: 100%;
    position:absolute;
    top:140%;
    background:rgb(48, 44, 44);
    padding:50px 100px;  
}
.newsletter{
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-align:center;
    padding:30px ;
    border:1px solid rgb(214, 206, 192);
    color:white;
}
.newsletter >div{
    flex-basis: 50%; 
}
.ntext{
    text-align: right;
}
.newsletter h2{
    font-size: 2em;
    font-family: sans-serif;
}
.newsletter p{
    font-size: 20px;
    font-family: sans-serif;
    margin-top: 10px;
}
.newsletter label{
    position: relative;
}
.newsletter input{
    padding:20px;
    width: 70%;
    border-radius: 8px;
    border:none;
    outline: none;
    font-family: sans-serif;
}
.newsletter button{
    position: absolute;
    right:0;
    padding: 20px;
    width: 30%;
    background-color: red;
    color:white;
    border:none;
    outline: none;
    border-radius: 0px 8px 8px 0px;
}
.f-contact{
    color: white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3em 0em;
    border-bottom: 1px solid whitesmoke;
}

.f-contact >div{
    flex-basis: 20%;
}
.f-contact p{
    line-height: 2em;
    font-size: 20px;
    color: grey;
    cursor: pointer;
}
.f-contact p:hover{
    color: white;
}
.f-contact i{
    background-color: white;
    color:black;
    padding: 10px;
    font-size: 16px;
    margin: 20px 5px;
    border-radius: 50%;
    transition: 0.4 ease;
}
.f-contact i:hover{
    background:transparent;
    color:white;
    border:1px solid;
}
.f-contact .map iframe{
    width:250px;
    height:250px;
    border:5px solid;
    border-radius: 50px;
}

.f-contact .ulink a{
    color:gray;
    text-decoration: none;
}
.f-contact .ulink a:hover{
    color:white;
}
.f-contact .detail a{
    color:gray;
    text-decoration: none;
}
.f-contact .detail a:hover{
    color:white;
}


.login{
    position: absolute;
    top:70%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 999;
    width: 400px;
    text-align: center;
    padding:60px 32px;
    background:rgb(255,255,255,0.04);
    box-shadow: -1px 4px 28px 0px rgb(0,0,0,0.5);
} 
.login h1{
    font-size: 33px;
    font-family: sans-serif;
    color:red;
    text-align: center;
    margin: 0 0 35px 0;
}
.field{
    position: relative;
    height:45px;
    width: 100%;
    display: flex;
    background-color: rgb(255,255,255,0.94);
}
.field input{
    height: 100%;
    width: 100%;
    background: transparent;
    border:none;
    outline: none;
    color: #222;
    font-size: 16px;
    font-family: sans-serif;
}
.show{
    position: absolute;
    right: 13px;
    margin: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: sans-serif;
    display: none;
    cursor: pointer;
    color:black;
}
.password:valid ~ .show{
    display: block;
}
.space{
    margin-top:16px;
    border-radius: 8px;
}
.field span{
    color:black;
    width: 40px;
    line-height: 45px;
}
.pass{
    text-align: left;
    margin:10px 0;
   
}
.pass a{
    text-decoration: none;
    color:red;
}
.pass a:hover{
    color:green;
    text-decoration: underline;
}
input[type="submit"]{
    background:red;
    border-radius: 10px;
    cursor: pointer;
}
input[type="submit"]:hover{
    background:transparent;
    color:red;
}
.orlogin{
    margin: 20px 0;
    font-family: sans-serif;
}
.link{
    display: flex;
    cursor: pointer;
    color:white;
    margin: 0 0 20px 0;
}
.facebook, .instagram{
    width:100%;
    height: 42px;
    line-height: 45px;
    margin-top: 10px;
    margin-left: 10px;
}
.facebook{
    margin-left: 0px;
    background: rgb(134, 107, 209);
    border: 1px solid blue;
    border-radius: 10px;
}
.facebook:hover{
    background: transparent;
    color:rgb(134, 107, 209);
}
.instagram{
    background: rgb(235, 18, 162);
    border: 1px solid rgb(228, 19, 54);
    border-radius: 10px;
}
.instagram:hover{
    background: transparent;
    color:rgb(235, 18, 162);
}
.link i{
    font-size: 25px;
}
.link span{
    font-size: 20px;
    margin-left: 8px;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: sans-serif;
}
.signup{
    font-size: 16px;
    font-family: sans-serif;
}
.signup a{
    text-decoration: none;
    color:red;
}
.signup a:hover{
    color:green;
    text-decoration: underline;
}