html {
    font-size: 16px;
}

#banner-1 {
    -webkit-animation: slide-in-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.clipped {
    height: 100vh;
    background-color: red;
    background-image: url(https://images.pexels.com/photos/165875/pexels-photo-165875.jpeg?w=940&h=650&auto=compress&cs=tinysrgb);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0 100%);
    width: 25%;
    float: left;
}

.main {
    /* overflow: hidden; */
    position: relative;
    height: 100vh;
    display: flex;
    flex-flow: row nowrap;
    width: 100vw;
    transition: all 0.05s ease-out;
    margin-top: -1%;
}

.section {
    flex: 1;
    position: relative;
    width: 100%;
    overflow-y: hidden;
    z-index: 0;
    height: 100vh;
    margin-right: -1px;
    cursor: pointer;
    transition: all 0.3s ease-out;
    -webkit-clip-path: polygon(100px 0%, 100% 0%, 100% 100%, 0 100%);
    clip-path: polygon(100px 0%, 100% 0%, 100% 100%, 0 100%);
    margin-left: -11%;
}

.section:first-child {
    -webkit-clip-path: none;
}

.section:last-child {
    margin-right: -11%;
}

.section__bg {
    content: "";
    position: absolute;
    background-position: center;
    background-size: auto 100%;
    width: 100%;
    left: 0;
    height: 100vh;
    width: 100%;
}

@media screen and (min-width: 1500px) {
    .section__bg {
        background-size: cover;
    }
}

.section__content {
    padding: 2rem;
    width: 80%;
    width: 20vw;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    position: absolute;
    top: 0;
    left: 18%;
    color: black;
    opacity: 0;
    background: rgba(255, 255, 255, 0.75);
}

.section__content__body {
    padding-left: calc(40% + 50px);
    font-size: 18px;
    line-height: 1.8;
    padding-right: 50px;
}

.section--one .section__bg {
    background-image: url("https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80");
}

.section--two .section__bg {
    background-image: url("https://images.unsplash.com/photo-1616047006789-b7af5afb8c20?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=880&q=80");
}

.section--three .section__bg {
    background-image: url("https://images.unsplash.com/photo-1646592474273-86049d4f3575?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80");
}

.section--four .section__bg {
    background-image: url("https://images.unsplash.com/photo-1588854337236-6889d631faa8?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80");
}

.section__title {
    font-family: 'Varela', sans-serif;
    font-size: 80px;
    text-align: left;
    padding-left: 30%;
    color: black;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.7);
    margin: 0 0 30px;
}

.button--close {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: transparent;
    color: black;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    transition: all 0.15s ease-out;
    outline: 0;
}

.button--close:hover,
.button--close:focus {
    transform: scale(1.2);
}

.image {
    z-index: -1;
    clip-path: polygon(10% 20%, 40% 20%, 40% 80%, 10% 80%);
}

.section-container1 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    visibility: hidden;
    display: none;
    flex-wrap: wrap;
}

.section-container1 .columns1 {
    flex: 0 0 auto;
    width: 45%;
}

.section-container1 .columns1.image1 {
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
    margin-top: 1%;
    height: 600px;
    -webkit-animation: fade-in 1.2s cubic-bezier(.39, .575, .565, 1.000) both;
    animation: fade-in 1.2s cubic-bezier(.39, .575, .565, 1.000) both;
    transition: background-color 2.2s ease, transform .6s;
}

.section-container1 .columns1.content1 .content-container1 {
    text-align: center;
    padding: 40px 90px;
    margin-top: 20%;
}

.section-container1 .columns1.content1 .content-container1 h5 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 20px;
}

.section-container1 .columns1.content1 .content-container1 p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
    margin-bottom: 15px;
    text-align: justify;
}

.image1:hover {
    -webkit-transform: scale(1.05);
    -webkit-transition: all 0.6s ease-in-out;
}

@media only screen and (max-width: 900px) {
    .main {
        visibility: hidden;
        display: none
    }
    .section-container1 {
        visibility: visible;
        display: flex;
        flex-flow: row wrap;
    }
    .section-container1 .columns1.image1 {
        display: block;
        order: 1;
        width: 85%;
        margin: 0 auto;
        height: 250px;
    }
    .section-container1 .columns1.content1 {
        display: block;
        order: 2;
        width: 100%;
    }
    .section-container1 .columns1.content1 .content-container1 {
        margin-top: 1%;
        padding: 20px 35px;
    }
    .section-container1 .columns1.content1 .content-container1 h5 {
        margin-bottom: 5px;
    }
}