.banner
{
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    margin: 0 10px;
    margin-bottom: 60px;
    border-radius: 30px;
    position: relative;
}
.banner .container
{
    padding: 150px 20px;
}
.banner h1
{
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #fff;
    font-weight: bold;
    text-align: right;
}
.banner .text
{
    font-size: 20px;
    margin-bottom: 40px;
    text-align: right;
    color: #fff;
    max-width: 600px;
    margin-right: 0;
    margin-left: auto;
}
.banner #tab
{
    position: absolute;
    bottom: -15px;
    right: 100px;
    background: #fff;
    padding: 15px;
    padding-bottom: 25px;
    border-radius: 15px;
}
.banner #tab a
{
    color: #000;
    text-decoration: none;
    font-weight: 500;
}
.banner #tab a:first-child
{
    border-right: 1px solid #000;
    padding-right: 12px;
    margin-right: 10px;
}
.content
{
    margin-bottom: 40px;
}
.content .title
{
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}
.content .story
{
    font-size: 20px;
    margin-bottom: 40px;
}
.content .story .full_width
{
    margin-bottom: 20px;
    text-align: justify;
}
.content .story .text_img
{
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.content .story img
{
    width: 280px;
    max-width: 100%;
    border-radius: 30px;
}
.content .story .text
{
    width: 600px;
    text-align: justify;
}
@media (min-width: 992px)
{
    .content .story img
    {
        width: 400px;
    }
}
@media (min-width: 1200px)
{
    .content .story img
    {
        width: 600px;
    }
}
@media (max-width: 771px)
{
    .content .story .text_img
    {
        flex-direction: column;
        gap: 10px;
    }
    .content .story .text_img.reverse
    {
        flex-direction: column-reverse;
    }
    .content .story .text
    {
        width: 100%;
    }
}
.content .orientation_service
{
    background: #f6f6f6;
    font-size: 20px;
    padding: 50px 0;
    margin-bottom: 30px;
}
.content .orientation_service h3
{
    color: #c5925b;
    text-align: center;
}
.content .orientation_service .subtitle
{
    margin-bottom: 30px;
    text-align: justify;
}
.content .orientation_service .row>div
{
    margin-bottom: 30px;
}
.orientation_service .box
{
    background-color: #ffffff;
    box-shadow: 1px 1px 10px 1px #ebebeb;
    padding: 30px;
    border-radius: 30px;
    height: 100%;
}
.orientation_service .box h4
{
    color: #c5925b;
}
.services .box
{
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    height: 500px;
    color: #fff;
    margin-bottom: 20px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}
.services .box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80%; /* quanto deve essere alto il gradiente */
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
}
.services .box h3
{
    font-size: 35px;
    font-weight: bold;
    line-height: 1;
    padding-top: 290px;
    height: 360px;
    position: relative;
    z-index: 1;
}
.services .box div
{
    font-size: 18px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px)
{
    .banner h1
    {
        font-size: 30px;
    }
    .banner #tab
    {
        right: 30px;
    }
    .services .box h3
    {
        align-content: end;
    }
    .services .box
    {
        height: 270px;
    }
    .services .box h3
    {
        padding-top: 90px;
        height: 160px;
    }
}
