/* Default */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&family=Source+Sans+Pro:wght@200;300;400;600;700&display=swap');

*{
/* font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif; */
font-family: 'Source Sans Pro', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
:root {
    --white: #ffffff;
    --brown: rgb(57,57,57)
    --light-black: rgb(46,46,46)
    --light-font: rgb(140,138,138)
    --skin-color: rgb(224,208,221)
  } 
  .link{
      color: inherit;
      text-decoration: none;
  }

/* Navbar */
.header{
    width: 100vw;
    height: 100px;
   background-color: transparent;
   display: flex;
   position: absolute;
   top: 0;
   z-index: 999;
}
.logo{
    color: rgba(255, 251, 229, 0.781);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 700;
    text-shadow: 5px 5px 50px black;
    opacity: 0;
}
.navList{
    flex: 8;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    color: white;
}
.navListItem{
    padding: 0 55px;
    letter-spacing: 1.5px;
    cursor: pointer;
    opacity: 0;
}
.navListButton{
    margin: 0 55px;
    padding: .6rem 2rem;
    letter-spacing: 1.8px;
background: transparent;
border: 1.5px solid white;
color: white;
opacity: 0;
cursor: pointer;
}
/* Main Section */
.main-section{
    background: url(/images/main.jpg) center/cover;
    width: 100vw;
    height: 110vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: white;
}
.mainTop{
    width: 40%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin-left: 10%;
}
.mainTop h1{
    font-size: 6rem;
    padding-bottom: .5rem;
    position: relative;
transform: translateY(150px);
opacity: 0;
}
.mainTop h3{
    letter-spacing: 3px;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(224, 223, 208,.7);
    position: relative;
    transform: translateY(150px);
    opacity: 0;
}
.mainTop span{
    width: 0rem;
    background: white;
    border-radius: 20px;
    height: 4px;
    display: block;
    margin-top: 1.3rem;

}

.mainBottom{
    height: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
color: rgba(224, 223, 208,.7);
opacity: 0;
transform: translateY(150px);
position: relative;
overflow: hidden;
opacity: 0;
}
.mainBottom h2{
    color: white;
    font-size: calc(2vw + 1vh);
    font-weight: 500;
    margin: 10px;
}
.mainBottom h4{
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 4px;
}
.mainBottom span{
    width: 3rem;
    height: 3px;
    display: block;
    background: white;
    border-radius: 40px;
    margin: 20px;
}
.mainBottom p{
    margin-top: 20px;
    width: 45%;
}

@media only screen and (max-width: 600px) {
    .navList{
        opacity: 0;
        visibility: hidden;
    }
}

/* Articles */
.article{
    color: white;
    background: rgba(3, 34, 44, 0.884);
    width: 100vw;
    height: fit-content;
    min-height: 120vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.articleHeading{
    width: 50%;
    height: 30%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}
.articleHeading h1{
    font-size: 3rem;
    font-weight: 500;
    padding: .6rem;
    letter-spacing: 2px;
}
.articleHeading p{
    letter-spacing: 2px;
    font-size: .95rem;
    color:rgba(224, 223, 208,.7) ;
}
.articleHeading span{
    width: 3rem;
    height: 3px;
    display: block;
    background: white;
    border-radius: 40px;
    margin: 20px;
    margin-top: 1.5rem;
}

.articleImages{
 align-content: flex-start;
 justify-items: center; 
width: 70%;
height: 80%;
display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.5rem;
}
.box{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 30%;
    height: 80%;
    flex-wrap: wrap;
    transform: translateY(100px);
}
.box img{
    position: relative;
    object-fit: cover;
    background-size: cover;
    width: 350px;
    height: auto;
    box-shadow: 1px 26px 36px -11px rgba(0,0,0,0.75);

}
.image-content{
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 30%;
    height: 30%;
justify-content: flex-end;
text-shadow: 1px 1px 10px black;
opacity: 0;
transition: all .5s ease;

}
.box:hover .image-content{
    opacity: 1;
    transition: all .5s ease;
}

.image-content h1{
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2.5px;
}
.image-content p{
    font-size: .9rem;
    margin: 10px;
}
.image-content span{
    width: 3rem;
    height: 1px;
    display: block;
    background: white;
    border-radius: 40px;
box-shadow: 1px 1px 10px black;
}
/* Newsletter */

.newsletter{
    width: 100vw;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 18, 24, 1);

}
.newsletter-div{
    height: 65%;
    width: 80%;
   
}
.form{
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-around;
    display: flex;
    flex-direction: column;
    color: white;
}
.form h1{
    font-size: 4rem;
    font-weight: 500;
}

.form h3{
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 500;
    padding: 1rem;
}

.form input{
    width: 25rem;
    height: 3.5rem;
    margin: 1rem;
}

.form button{
    padding: .5rem 1.5rem;
    color: white;
    background: transparent;
    border: 2px solid white;
    margin-top: 10px;
}

/* Footer */
.footer{
    width: 100vw;
    height: 25vh;  
    display: flex;
    align-items: center;
    background: rgba(3, 34, 44, 0.884);
}
.logoSecond{
font-size: 4rem;
font-weight: 700;
width: 20%;
text-align: center;
color: rgba(224, 223, 208,1);
justify-content: flex-start;
float: left;
}

.footer-list{
    float: right;
    width: 70%;
display: flex;
list-style: none;
height: 20%;
align-items: flex-end;
color: rgba(224, 223, 208,1);
justify-content: flex-end;
}
.footer-list li{
    padding: 1rem 2.5rem;
    letter-spacing: 2px;
}

@media only screen and (max-width: 600px) {
    .logoSecond{
        opacity: 0;
        visibility: hidden;
    }
}