*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

html, body{
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

#main{
    width: 100%;
}

nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vw 4vw;
}

.left-nav h1{
    font-size: 1.9vw;
    font-weight: 800;
    -webkit-text-stroke: 0 #2e2e2e;
}

.loader {
    width: 1.25vw;
    height: 1.25vw;
    background: #353535;
    display: block;
    position: relative;
    box-sizing: border-box;
    animation: rotationBack 1s ease-in-out infinite reverse;
  }
  
  .loader::before {
    content: '';
    box-sizing: border-box;
    left: 0;
    top: 0;
    transform: rotate(45deg);
    position: absolute;
    width: 1.25vw;
    height: 1.25vw;
    background: #2e2e2e;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  
  .loader::after {
    content: '';
    box-sizing: border-box;
    width: 0.781vw;
    height: 0.781vw;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgb(0, 0, 0);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(-360deg);
    }
  }

.hero{
    width: 100%;
}

.hero-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10vw 12vw;
    /* background-color: red; */
}

.hero-content p{
    font-size: 1.5vw;
}

.hero-h1-container{
    display: flex;
    /* background-color: green; */
    padding: 0.5vw 0;
    gap: 20px;
}

.hero-h1{
    font-family: "Rubik", sans-serif;
    color: transparent;
    font-size: 4.5vw;
    font-weight: 800;
    -webkit-text-stroke: 1px black;
}

.hero-button
{
    display: flex;
    justify-content: center;
    width: 90%;
    /* background-color: pink; */
    padding: 1.8vw 0;
}

.hero-button button{
    background-color: transparent;
    outline: none;
    border: 1px solid #000;
    font-size: 1.2vw;
    padding: 1vw 3vw;
    border-radius: 34px;
}

.destination-heading{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 3vw 12vw;
    /* background-color: red; */
}

.destination-heading p{
    font-size: 1.5vw;
}

.destination-container{
    width: 100%;
    display: flex;
    padding: 3vw 0 10vw 12vw;
    gap: 2vw;
    /* background-color: blue; */
}

.destination-content{
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    /* background-color: green; */
}

.destination-content p{
    padding-top: 1vw;
    font-size: 1.5vw;
}

.destination-container p::selection{
    background-color: #000;
    color: #fff;
}

.destination-img{
    width: 50%;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    flex-direction: column;
}

.destination-img img{
    max-width: 25vw;
}

.destination-button
{
    /* background-color: pink; */
    padding: 1.5vw 0;
}

.destination-content button{
    background-color: transparent;
    outline: none;
    border: 1px solid #000;
    font-size: 1.2vw;
    padding: .9vw 1.5vw;
    border-radius: 34px;
}

.destination-right{
    flex-direction: row-reverse;
    gap: 2vw;
}

.destination-container-last{
    padding-bottom: 3vw;
}

.destination-viewmore{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 3vw 0;
}

.destination-viewmore button{
    background-color: transparent;
    outline: none;
    border: 1px solid #000;
    font-size: 1.2vw;
    padding: 1vw 3vw;
    border-radius: 34px;
}

.connect-container{
    width: 90%;
    padding: 3vw 0 2vw 12vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.connect-heading p{
    font-size: 1.5vw;
}

.connect-link ion-icon{
    font-size: 1.8vw;
    color: #000;
    margin-right: 1.5vw;
}
