section.hero{
    padding: 200px 0 300px 0;
    background-size: cover;
    background-position: center;
}

header.title_hero{
    font-size: 60px;
    color: var(--color-white-primary);
}

span.subtitle_hero{
    display: block;
    color: var(--color-white-primary);
    font-size: 30px;
    margin-top: 40px;
}

section.hero a,
section.hero button{
    display: inline-block;
    padding: 20px 40px;
    margin-top: 40px;
    background: #9C723D;
    background: linear-gradient(90deg,rgba(156, 114, 61, 1) 0%, rgba(193, 143, 92, 1) 100%);
    color: var(--color-white-primary);
    font-size: 25px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

section.hero button:hover{
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

section.about{
    background-color: var(--color-white-primary);
    padding: 80px 0;
}

.img_about img{
    width: 100%;
    border-radius: 10px;
}

h3.title_about{
    width: 100%;
    text-align: center;
    font-size: 40px;
}

span.description_about{
    font-size: 24px;
    display: block;
    margin-top: 20px;
}

section.services{
    padding: 40px 0;
    background-size: cover;
}

section.services header h3{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 40px;
    margin-top: -50px;
}

section.services header .line{
    width: 100%;
    height: 4px;
    background-color: var(--color-black-light);
    margin-top: -25px;
}

.box_33{
    width: calc(33.3% - 10px);
}

.box_options_trips{
    height: 800px;
    overflow-y: auto;
    align-items: flex-start;
}

.option_cruise{
    margin-bottom: 20px;
    cursor: pointer;
}

.option_cruise img{
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
}

.title_trip{
    width: 100%;
    background-color: #202b47;
    text-align: center;
    font-size: 24px;
    color: var(--color-white-primary);
}

.final_cta{
    padding: 80px 0;
    background-size: cover;
}

.final_cta h2{
    font-size: 60px;
    color: var(--color-white-primary);
}

.final_cta a,
.final_cta button{
    display: inline-block;
    padding: 20px 40px;
    margin-top: 40px;
    background: #9C723D;
    background: linear-gradient(90deg,rgba(156, 114, 61, 1) 0%, rgba(193, 143, 92, 1) 100%);
    color: var(--color-white-primary);
    font-size: 25px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.final_cta span{
    display: block;
    font-size: 30px;
    color: var(--color-white-primary);
}

footer{
    justify-content: space-around;
    padding: 40px;
    font-size: 20px;
    background-color: var(--color-white-primary);
}

@media screen and (max-width: 764px){

    i.bars{
        font-size: 30px;
    }

    .header_list_mobile{
        position: absolute;
        background-color: #fff;
        width: 100%;
        z-index: 999;
    }

    .header_list_mobile li{
        width: 100%;
        padding: 20px;
    }

    .header_list_mobile li:hover{
        background-color: #ccc;
    }

    .header_list_mobile a{
        text-decoration: none;
        color: #000;
    }

    section.hero{
        padding: 80px 20px 80px 20px;
        background-size: cover;
        background-position: center;
    }

    header.title_hero{
        font-size: 30px;
        text-align: center;
        color: var(--color-white-primary);
    }

    span.subtitle_hero{
        display: block;
        color: var(--color-white-primary);
        font-size: 25px;
        text-align: center;
        margin-top: 40px;
    }

    .btn_hero{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    section.hero a{
        padding: 10px 20px;
        margin: 40px auto;
        font-size: 20px;

    }

    section.services header h3{
        font-size: 25px;
    }

    section.services header .line{
        margin-top: -30px;
    }

    .box_options_trips{
        margin-top: 40px;
    }

    .w50{
        width: 100%;
    }

    .img_about{
        margin-top: 40px;
    }

    .w40{
        width: 100% !important;
    }

    .option_cruise{
        width: 100%;
    }

    .logo{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .final_cta h2{
        font-size: 30px;
        text-align: center;
        margin: 15px 0;
    }

    .final_cta span{
        font-size: 20px;
        text-align: center;
    }

    .final_cta a, .final_cta button{
        padding: 10px 20px;
        margin: 40px auto;
        font-size: 20px;
        display: inline-block;
        text-align: center;
    }

    footer{
        padding:20px;
    }

    footer div{
        width: 100%;
        margin: 20px 0;
        text-align: center;
    }
}