/*VARIABLES*/
:root {
    --main: #F8CAD8;
    --text: #04040C;
}

/*GENERAL*/
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
}

a,
button,
input {
    transition: all .3s linear;
    outline: none;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

button {
    cursor: pointer;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
}

button:hover,
button:active,
button:focus {
    outline: none;
}

select,
button {
    appearance: none;
    -webkit-appearance: none;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
    color: inherit;
}

/*ADDITIONAL*/
.container {
    max-width: 1140px;
}

.ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.bg-cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*MAIN*/
header {
    position: absolute;
    width: 100%;
    top: 24px;
    left: 0;
    z-index: 100;
}

.header-inner {
    padding: 8px 24px;
    border-radius: 16px;
    background-color: #fff;
}

.main-menu a,
.main-menu a:hover {
    font-size: 14px;
    color: var(--text);
}

.app-list,
.main-menu {
    gap: 24px;
}

#home {
    margin-top: 8px;
}

.home-inner {
    border-radius: 16px;
    background-color: var(--main);
    padding-top: 120px;
}

h1 {
    font-weight: 700;
    font-size: 44px;
    line-height: 100%;
}

.home-description {
    margin: 20px auto 0;
    max-width: 468px;
}

.img-container {
    position: relative;
}

.img-container.right {
    top: -70px;
}

.left .img-absolute {
    position: absolute;
    top: 95px;
    right: -30px;
}

.right .img-absolute {
    position: absolute;
    top: 165px;
    left: -60px;
}

.img-central {
    margin-top: 80px;
}

#hero,
#how,
#travellers,
#why {
    margin-top: 140px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
}

#why h2 {
    margin-bottom: 20px;
}

#why article {
    border-radius: 16px;
    background-color: #FFF7FA;
    padding: 24px;
}

.why-inner {
    padding: 24px 0;
    background-color: var(--main);
    margin-top: 16px;
    border-radius: 16px;
}

.advantage {
    display: flex;
    gap: 35px;
}

.traveler span,
.advantage p {
    font-weight: 700;
}

.adv-2 {
    justify-content: center;
}

.adv-3 {
    justify-content: end;
}

.traveler {
    border-radius: 16px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.04);
    padding: 32px;
    margin-top: 16px;
    height: 100%;
}

.traveler p {
    margin-top: 24px;
}

#travellers h2 {
    margin-bottom: 24px;
}

.how-inner {
    position: relative;
    z-index: 1;
    padding: 40px;
    background-color: rgba(255, 247, 250, 1);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    margin-top: 8px;
}

.how-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc(100vw - 15px);
    background-color: rgba(255, 247, 250, 1);
    z-index: -1;
    transform: translateX(calc(-100% + 15px));
}

#how h2 {
    margin-bottom: 40px;
}

.how-title {
    color: rgba(228, 36, 44, 1);
    font-weight: 700;
    display: flex;
    margin-bottom: 16px;
}

.how-title p {
    font-size: 22px;
    margin-left: 12px;
}

.how-img-container {
    background-color: var(--main);
    border-radius: 16px;
    height: calc(100% - 8px);
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.left-arrow {
    position: absolute;
    bottom: 100px;
    left: -70px;
    z-index: 2;
}

.right-arrow {
    position: absolute;
    top: 105px;
    right: -70px;
}

.hero-inner {
    height: 380px;
    background-image: url("images/hero.png");;
}

footer {
    padding: 64px 0 48px 0;
}

.social {
    display: flex;
    gap: 16px;
}

footer .logo {
    scale: 1.2;
}

@media only screen and (max-width: 430px) {
    body {
        font-size: 14px;
        line-height: 140%;
    }

    header {
        top: 8px;
    }

    .main-menu {
        gap: 10px;
        text-align: center;
        justify-content: space-between;
    }

    .header-inner {
        border: 4px solid var(--main);
        padding: 8px 0;
    }

    .main-menu a {
        font-size: 12px;
    }

    .left-arrow,
    .right-arrow,
    .img-container.right,
    header .app-list {
        display: none!important;
    }

    header img {
        scale: 0.7;
        margin-top: 10px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    #hero,
    #how,
    #travellers,
    #why {
        margin-top: 40px;
    }
    
    img {
        max-width: 100%;
    }

    .advantage {
        justify-content: space-around;
        align-items: center;
        margin-bottom: 16px;
    }

    .hero-inner {
        height: 100px;
    }

    footer {
        padding: 30px 0;
    }

    .social {
        justify-content: center;
        margin-bottom: 16px;
    }

    footer .logo {
        scale: unset;
    }

    footer .app-list {
        justify-content: center!important;
        margin-top: 16px;
    }
}