.font-size-bigger {
    font-size: 25px;
}

.font-weight-bolder {
    font-weight: 700;
}

.text-decoration-line-through {
    text-decoration: line-through;
}

.link {
    color: #B4FFCD;
}

.link:hover,
.link:focus {
    text-decoration: none;
}

body {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
}

.menu {
    position: absolute;
    top: 20px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 40px);
    width: calc(100vw - 40px);
    background: #0A8278;
    border-radius: 10px;
    animation: a-menu 1s ease-out 5s forwards;
}

@keyframes a-menu {
    0% {
        height: calc(100vh - 40px);
    }

    100% {
        height: 80px;
    }
}

.logo {
    display: flex;
    justify-content: center;
}

.colors {
    display: flex;
    margin: 7.2px 14px 0 0;
}

.color {
    height: 40px;
    width: 20px;
    opacity: 0;
    animation: 1s linear 0s 4 forwards;
}

.color:nth-child(1) {
    background: #B4FFCD;
    animation-name: a-color-1;
}

.color:nth-child(2) {
    background: #FFFF9B;
    animation-name: a-color-2;
}

.color:nth-child(3) {
    background: #FFCDCD;
    animation-name: a-color-3;
}

.color:nth-child(4) {
    background: #CDCDFF;
    animation-name: a-color-4;
}

@keyframes a-color-1 {
    0%,
    100% {
        opacity: 1;
    }
}

@keyframes a-color-2 {
    0%,
    24.9% {
        opacity: 0;
    }

    25%,
    100% {
        opacity: 1;
    }
}

@keyframes a-color-3 {
    0%,
    49.9% {
        opacity: 0;
    }

    50%,
    100% {
        opacity: 1;
    }
}

@keyframes a-color-4 {
    0%,
    74.9% {
        opacity: 0;
    }

    75%,
    100% {
        opacity: 1;
    }
}

#allseazonsgroup {
    height: 72px;
}

.hero {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    margin-top: 120px;
    height: calc(100vh - 140px);
    width: calc(100vw - 40px);
    background: #B4FFCD;
    border-radius: 10px;
}

h1 {
    margin: 0 20px;
    width: 100%;
    text-align: center;
    font: 700 75px "Poppins", sans-serif;
    letter-spacing: 10px;
    color: #1E1E1E;
}

.subh1 {
    margin: 0 20px;
    width: 100%;
    text-align: center;
    font: 300 15px "Poppins", sans-serif;
    letter-spacing: 5px;
    color: #1E1E1E;
}

.launch {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    padding: 10px;
    width: fit-content;
    background: #CDCDFF;
    border-radius: 10px;
    font: 500 15px "Poppins", sans-serif;
    letter-spacing: 2.5px;
    color: #1E1E1E;
}

.cta {
    display: block;
    margin-top: 60px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font: 500 15px "Poppins", sans-serif;
    letter-spacing: 2.5px;
    color: #1E1E1E;
    animation: a-cta 1s infinite;
}

@keyframes a-cta {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.1;
    }
}

.body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 1000px;
}

h2 {
    width: 100%;
    font: 700 50px "Poppins", sans-serif;
    letter-spacing: 5px;
    color: #1E1E1E;
}

#other-services {
    margin-top: 80px;
}

.service {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    width: 450px;
    background: #B4FFCD;
    border-radius: 10px;
}

.other-service {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    width: 450px;
    background: #FFFF9B;
    border-radius: 10px;
}

.seaz,
.seazconsulting,
.irvoyage {
    height: 67.5px;
}

.title {
    margin: 23px 0 0 20px;
    font: 500 12px "Poppins", sans-serif;
    letter-spacing: 2px;
    color: #1E1E1E;
}

.other-title {
    margin: 13px 0 0 20px;
    font: 500 12px "Poppins", sans-serif;
    letter-spacing: 2px;
    color: #1E1E1E;
}

.button-off {
    display: block;
    margin-top: 10px;
    padding: 10px;
    width: fit-content;
    background: #0A8278;
    border-radius: 10px;
    font: 500 12px "Poppins", sans-serif;
    letter-spacing: 2px;
    color: #B4FFCD;
    cursor: not-allowed;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0 20px;
    height: 80px;
    width: calc(100vw - 40px);
    background: #0A8278;
    border-radius: 10px;
}

.allseazonsgroup {
    margin-left: 20px;
    height: 36px;
}

.subtitle {
    margin-right: 20px;
    font: 300 12px "Poppins", sans-serif;
    letter-spacing: 2px;
    color: #B4FFCD;
}

@media only screen and (max-width: 1040px) {
    .menu {
        animation-delay: 3s;
    }

    .color {
        animation-iteration-count: 2;
    }

    h1 {
        line-height: 1;
        font-size: 50px;
        letter-spacing: 5px;
    }

    .subh1 {
        margin: 60px 20px 0 20px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .launch,
    .cta {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .body {
        width: calc(100vw - 40px);
    }

    h2 {
        font-size: 25px;
    }

    .service {
        width: 100%;
    }

    .service-bis {
        margin-top: 20px;
    }

    .title,
    .button-off {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .other-title {
        margin: 0;
        text-align: center;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .footer {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .allseazonsgroup {
        margin: 0;
    }

    .subtitle {
        margin: 0;
        width: 100%;
        text-align: center;
        font-size: 11px;
        letter-spacing: 1px;
    }
}