*{
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
html, body {
     width: 100%;
     min-height: 100vh;
     font-family: "Raleway", Helvetica, sans-serif;
}

header {
     background-color: #434956;
     padding: 1% 5%;
     color: white !important;
     width: 100%;
     position: sticky;
     top: 0;
     z-index: 10;
}
header ul{
     list-style: none;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 2rem;
     height: 5vh;
}
nav{
     display: flex;
     justify-content: space-between;
}
header li{
     font-size: 16px;
     font-weight: 500;
     padding: 1.5%;
}
header li:hover{
     cursor: pointer;
     border-bottom: 1px solid white;
     transition: all 0.3s ease-in-out;
}
header button:nth-child(1){
     background-color: #A3A5AB;
     border: none;
     border-radius: 1rem;
     padding: 0.5em 1.5em;
     cursor: pointer;
}
header div{
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
header button:nth-child(2){
     background-color: black;
     color: white;
     border: none;
     border-radius: 1rem;
     padding: 0.5em 1.5em;
     cursor: pointer;
}
header button:nth-child(1):hover{
     opacity: 0.8;
}
header button:nth-child(2):hover{
     opacity: 0.8;
}
.hero-section {
     width: 100%;
     height: 95vh;
     background: linear-gradient(rgba(0,0,0,0.6)), url(https://newtraveler.netlify.app/images/hero.jpg);
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     position: relative;
     z-index: 1;
}
.hero-section>div{
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%,-50%);
     color: white;
     text-align: center;
}
.hero-section h1{
     font-size: 3rem;
}
.hero-section p{
     margin-top: 1rem;
     font-size: 16px;
     line-height: 180%;
}
.hero-section button{
     cursor: pointer;
     margin-top: 0.8rem;
     padding: 0.5em 2em;
     font-size: 16px;
     border: 1px solid white;
     border-radius: 1rem;
     background-color: transparent;
     color: white;
     position: relative;
}
section:nth-child(3){
     width: 100%;
     background-color: #F4F4F4;
     padding: 6rem 4rem 2.5rem 4rem;
     position: relative;
     z-index: 1;
}
section:nth-child(3) h1{
     font-size: 48px;
     width: 40%;
}
section:nth-child(3) span{
     color: #FFA500;
}
section:nth-child(3) p{
     margin-top: 1rem;
     font-size: 16px;
     width: 45%;
}
section:nth-child(3) button{
     cursor: pointer;
     margin-top: 1.5rem;
     padding: 1em 1.5em;
     font-size: 13px;
     border: 1px solid black;
     background-color: black;
     color: white;
     border-radius: 15px;
     position: relative;
}
section:nth-child(3) button:hover{
     opacity: 0.8;
}
.trip-gallery{
     display: flex;
     align-items: center;
     gap: 0.85%;
     margin-top: 2rem;
}
.trip-card{
     width: 25%;
     background-color: white;
     box-shadow: 0 4px 8px rgba(0,0,0,0.1);
     border-radius: 10px;
     overflow: hidden;
     padding-bottom: 5rem;
}
.trip-card>img{
     width: 100%;
}
.trip-info{
     margin: 7% 10%;
}
.trip-info>div{
     padding-top: 4px;
}
.trip-info>div>i{
     color: #DF9B1D;
}
.trip-info span{
     margin-left: 4px;
     color: black !important;
     font-weight: 600;
}
.trip-info>h4{
     margin-top: 4px;
}
.trip-info>span{
     display: inline-flex;
     margin-left: 0;
     margin-top: 3%;
}
.trip-info>span>span{
     margin-left: 0;
     font-weight: normal;
}
.footer{
     margin-top: 20%;
     text-align: center;
}

.footer>div{
     margin-bottom: 4px;
}
.fa-facebook-f{
     color: #3b5998;
}
.fa-instagram{
     color: #e4405f;
}
.fa-linkedin{
     color: #0077b5;
}