@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

:root {
    --blue-content-background-color: #00728C;
    --header-background-color: #292E3F;
    --hero-background-color: #2D6882;
    --calendar-door-color: #317039;
    --calendar-door-color-special: #C01413;
    --calendar-background-color: #474749;
    --calendar-item-border-radius: 10px;
    --hero-bg-gradient: linear-gradient(180deg, #2D6782 9.56%, #00728C 64.02%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    background-color: #EBEDF5;
}

.mt-60 {
    margin-top: 60px;
}

.relative {
    position: relative;
}

.wrap {
    overflow: hidden;
}

header.header {
    background-color: var(--header-background-color);
    padding: 10px 0;

    & > div {
        padding: 0 15px;

        a {
            display: block;
        }
    }
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: block;
    padding: 14px 30px;
    gap: 10px;
    border-radius: 40px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
    background-color: #E64354;
    color: #000;
    text-decoration: none;

    @media screen and (max-width: 1023px) {
        max-width: 320px;
        width: 100%;
    }
}

.snowfall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./images/snow_desktop_pattern.png");
    background-repeat: repeat;
    z-index: 0;
}

.hero {
    position: relative;
    padding: 50px 85px 85px 85px;
    background: linear-gradient(180deg, #2D6882 50.08%, #00728C 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 20px;

    @media screen and (max-width: 1023px) {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding: 23px 14px 85px 14px;
    }

    & img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    & > .hero__shadow {
        position: absolute;
        top: 222px;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("./images/hero_shadow_desktop.png");
        background-repeat: no-repeat;
        z-index: 0;

        @media screen and (max-width: 1023px) {
            top: 147px;
        }
    }

    & > .hero__snow {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 75px;
        z-index: 0;
        background-color: var(--blue-content-background-color);
    }

    & > .hero__snow__left {
        position: absolute;
        bottom: 75px;
        left: 0;
        width: 171px;
        height: 92px;
        z-index: 0;
        background-image: url("./images/hero_snow_left.png");
        background-repeat: no-repeat;
        background-size: contain;
    }

    & > .hero__snow__right {
        position: absolute;
        z-index: 0;
        background-repeat: no-repeat;
        background-size: contain;

        @media screen and (min-width: 1024px) {
            bottom: 75px;
            right: 12px;
            width: 201px;
            height: 120px;
            background-image: url("./images/hero_snow_right.png");
        }

        @media screen and (max-width: 1023px) {
            bottom: 75px;
            right: 0;
            width: 82px;
            height: 17px;
            background-image: url("./images/snow_right_mobile.png");
        }
    }

    & > .hero__snowman--mobile {
        @media screen and (min-width: 1024px) {
            display: none;
        }

        @media screen and (max-width: 1023px) {
            position: absolute;
            z-index: 0;
            bottom: 75px;
            right: 129px;
            width: 42px;
            height: 50px;
            background-image: url("./images/snowman_small.png");
            background-repeat: no-repeat;
            background-size: contain;
        }
    }

    & > .hero__col {
        position: relative;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        z-index: 1;

        @media screen and (min-width: 768px) and (max-width: 1023px) {
            max-width: 450px;
        }

        @media screen and (min-width: 601px) and (max-width: 768px) {
            max-width: 450px;
        }

        @media screen and (min-width: 481px) and (max-width: 600px) {
            max-width: 454px;
        }

        @media screen and (max-width: 480px) {
            max-width: 320px;
        }
    }

    .hero__col--image {
        flex-shrink: 0;
        flex-basis: auto;

        @media screen and (max-width: 1023px) {
            flex-shrink: 1;
        }
    }

    & p {
        color: #FFF;
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        letter-spacing: 0.4px;
        background-color: #225166;

        @media screen and (max-width: 1023px) {
            font-size: 13px;
            letter-spacing: 0.26px;
            background-color: #225166;
        }

        &.hero__text--big {
            text-shadow: 1px 3px 4px rgba(0, 0, 0, 0.50);
            font-size: 34px;
            font-weight: 700;
            line-height: 115%;
            letter-spacing: 0.68px;

            @media screen and (min-width: 1024px) {
                background-color: var(--hero-background-color);
                margin-bottom: 16px;
            }

            @media screen and (max-width: 1023px) {
                font-size: 17px;
                letter-spacing: 0.34px;
                padding-bottom: 10px;
            }

            & span {
                display: inline-block;
            }

            & .hero__text--big--highlight {
                display: inline-block;
                color: #FBCE44;
                font-size: 45px;
                letter-spacing: 0.9px;

                @media screen and (max-width: 1023px) {
                    font-size: 24px;
                    letter-spacing: 0.48px;
                }
            }
        }
    }

    & .hero__buttons {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;

        @media screen and (min-width: 1024px) {
            margin-top: 40px;
        }

        @media screen and (max-width: 1023px) {
            margin-top: 25px;
            padding-bottom: 35px;
            justify-content: center;
        }

        & * {
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: auto;
        }
    }
}

.calendar__bg__buildings {
    position: absolute;
    overflow: hidden;
    width: 100%;
    margin-top: 130px;
}

.houses {
    position: relative;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;

    @media screen and (min-width: 768px) and (max-width: 1023px) {
        max-width: 768px;
        margin-top: -130px;
    }

    @media screen and (min-width: 601px) and (max-width: 768px) {
        max-width: 601px;
        margin-top: -130px;
    }

    @media screen and (min-width: 481px) and (max-width: 600px) {
        max-width: 481px;
    }

    @media screen and (max-width: 480px) {
        max-width: 320px;
    }

    & img {
        display: block;
    }
}

.calendar {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 19px;
    padding: 9px;
    background-color: var(--calendar-background-color);
    counter-reset: calendar-counter;
    counter-set: calendar-counter 0;
    user-select: none;
    max-width: 1024px;
    margin: 0 auto;

    @media screen and (min-width: 768px) and (max-width: 1023px) {
        max-width: 768px;
        gap: 15px;
        padding: 7.5px 14px;
    }

    @media screen and (min-width: 601px) and (max-width: 768px) {
        max-width: 601px;
        gap: 13px;
        padding: 7.5px 14px;
    }

    @media screen and (min-width: 481px) and (max-width: 600px) {
        max-width: 481px;
        gap: 17px;
        padding: 7.5px 14px;
    }

    @media screen and (max-width: 480px) {
        padding: 7.5px 14px;
        max-width: 320px;
        gap: 14px;
    }

    & .calendar__item {
        position: relative;
        aspect-ratio: 1/1;
        width: 100%;
        height: 100%;
        max-width: 185px;
        max-height: 185px;
        border-radius: var(--calendar-item-border-radius);
        counter-increment: calendar-counter;

        @media screen and (min-width: 601px) and (max-width: 1023px) {
            max-width: 133px;
            max-height: 133px;
        }

        @media screen and (max-width: 600px) {
            max-width: 139px;
            max-height: 139px;
        }

        &.calendar__item--last {
            max-width: 590px;
            aspect-ratio: auto;
            height: 139px;

            @media screen and (max-width: 1023px) {
                max-width: 380px;

                & img {
                    max-width: unset;
                    width: 99%;
                }
            }

            @media screen and (min-width: 769px) and (max-width: 1023px) {
                max-width: 428px;
                height: 133px;
            }

            @media screen and (min-width: 601px) and (max-width: 768px) {
                max-width: 281px;
                height: 133px;
            }

            @media screen and (min-width: 481px) and (max-width: 600px) {
                max-width: 296px;
            }

            @media screen and (max-width: 480px) {
                max-width: 292px;
            }

            & .calendar__item__door {
                aspect-ratio: auto;
                height: 185px;

                @media screen and (min-width: 601px) and (max-width: 1023px) {
                    height: 133px;
                }

                @media screen and (max-width: 600px) {
                    height: 139px;
                }
            }
        }

        &.calendar__item--active {
            cursor: pointer;

            &:not(:hover) {
                animation: pulse-animation 2s infinite;
            }

            &:hover .calendar__item__door {
                transform: rotateY(-160deg);
            }
        }

        & a {
            position: absolute;
            display: block;
            width: 100%;
            height: 100%;
            z-index: 1;
            top: 0;
            left: 0;
            border-radius: var(--calendar-item-border-radius);
        }

        & img {
            border-radius: var(--calendar-item-border-radius);
            max-width: 100%;
            height: auto;
            display: block;
            width: 100%;
        }

        & .calendar__item__door {
            position: absolute;
            width: 100%;
            aspect-ratio: 1/1;
            background-color: var(--calendar-door-color);
            transform-origin: left;
            box-shadow: 30px 0 50px rgba(0, 0, 0, 0.2);
            z-index: 2;
            transition: .5s;
            transform-style: preserve-3d;
            transform: perspective(2500px);
            border-radius: var(--calendar-item-border-radius);
            display: flex;

            &::after {
                content: counter(calendar-counter, decimal-leading-zero);
                display: block;
                width: 101px;
                height: 70px;
                text-align: center;
                color: #FFF;
                font-family: "Abhaya Libre", serif;
                font-size: 64px;
                font-style: normal;
                font-weight: 800;
                line-height: 130%; /* 83.2px */
                backface-visibility: hidden;

                @media screen and (min-width: 601px) and (max-width: 1023px) {
                    width: 72px;
                    height: 50px;
                    font-size: 46px;
                }

                @media screen and (max-width: 600px) {
                    width: 76px;
                    height: 53px;
                    font-size: 48px;
                }
            }

            &.calendar__item__door--special {
                background-color: var(--calendar-door-color-special);
            }

            & .calendar__item__door__image {
                position: absolute;
                backface-visibility: hidden;
                top: 0;
                left: 0;

                & img {
                    display: block;
                }
            }
        }

        &:nth-child(2) .calendar__item__door {
            align-items: flex-end;
            justify-content: flex-end;
        }

        &:nth-child(4) .calendar__item__door {
            justify-content: flex-end;
        }

        &:nth-child(5) .calendar__item__door {
            align-items: flex-end;
        }

        &:nth-child(6) .calendar__item__door {
            align-items: flex-end;
        }

        &:nth-child(8) .calendar__item__door {
            align-items: flex-end;
            justify-content: flex-end;
        }

        &:nth-child(10) .calendar__item__door {
            justify-content: flex-end;
        }

        &:nth-child(12) .calendar__item__door {
            justify-content: flex-end;
        }

        &:nth-child(13) .calendar__item__door {
            align-items: flex-end;
        }

        &:nth-child(14) .calendar__item__door {
            justify-content: flex-end;
            align-items: flex-end;
        }

        &:nth-child(16) .calendar__item__door {
            justify-content: flex-end;
        }

        &:nth-child(18) .calendar__item__door {
            justify-content: flex-end;
            align-items: flex-end;
        }

        &:nth-child(20) .calendar__item__door {
            align-items: flex-end;
        }

        &:nth-child(22) .calendar__item__door {
            justify-content: flex-end;
            align-items: flex-end;
        }

        &:nth-child(23) .calendar__item__door {
            & .calendar__item__door__image {
                top: 12px;
                left: 155px;
            }
        }
    }
}

.snow {
    position: relative;
    width: 100%;
    z-index: 5;

    &::after {
        content: "";
        position: absolute;
        top: -48px;
        left: 0;
        width: 100%;
        height: 132px;
        background-image: url("./images/snow.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}

.ribbon__text {
    padding-bottom: 25px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    & .ribbon__text__left {
        width: 122px;
        height: 85px;
        background-image: url("./images/ribbon_left.png");
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
        margin-right: -69px;
        transform: translateY(25px);

        @media screen and (min-width: 769px) and (max-width: 1023px) {
            height: 55px;
            margin-right: -86px;
            transform: translateY(15px);
        }

        @media screen and (max-width: 768px) {
            background-image: url("./images/ribbon_left_mobile.png");
            margin-right: -22px;
            transform: translateY(21px);
            width: 39px;
            height: 68px;
        }
    }

    & .ribbon__text__right {
        width: 122px;
        height: 85px;
        background-image: url("./images/ribbon_right.png");
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
        margin-left: -69px;
        transform: translateY(25px);

        @media screen and (min-width: 769px) and (max-width: 1023px) {
            height: 55px;
            margin-left: -43px;
            transform: translateY(15px);
        }

        @media screen and (max-width: 768px) {
            background-image: url("./images/ribbon_right_mobile.png");
            margin-left: -21px;
            transform: translateY(21px);
            width: 39px;
            height: 68px;
        }
    }

    & h1 {
        color: #FFF;
        text-align: center;
        text-shadow: 1.146px 3.439px 4.585px rgba(0, 0, 0, 0.50);
        font-family: "Abhaya Libre", serif;
        font-size: 68px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
        background-color: #D10F1D;
        max-width: 800px;
        flex: 1 1 100%;
        position: relative;
        z-index: 2;

        @media screen and (min-width: 769px) and (max-width: 1023px) {
            font-size: 43px;
            max-width: 504px;
        }

        @media screen and (max-width: 768px) {
            font-size: 38px;
            max-width: 255px;
        }
    }

    & .break-here {
        &::after {
            content: "";

            @media (max-width: 768px) {
                content: "\A";
                white-space: pre;
            }
        }
    }

    & .ribbon__text--variant-1 {
        font-size: 80px;
        font-weight: 800;
        letter-spacing: -4.8px;

        @media screen and (min-width: 769px) and (max-width: 1023px) {
            font-size: 50px;
        }

        @media screen and (max-width: 768px) {
            font-size: 44px;
        }
    }

    & .ribbon__text--variant-2 {
        font-size: 80px;
        font-weight: 800;
        letter-spacing: 1.6px;

        @media screen and (min-width: 769px) and (max-width: 1023px) {
            font-size: 50px;
        }

        @media screen and (max-width: 768px) {
            font-size: 44px;
        }
    }

    & .ribbon__text--variant-3 {
        color: #FFF;
        font-size: 68px;
        font-weight: 800;
        letter-spacing: 1.36px;

        @media screen and (min-width: 769px) and (max-width: 1023px) {
            font-size: 43px;
        }

        @media screen and (max-width: 768px) {
            font-size: 38px;
        }
    }
}

.text__content--blue {
    position: relative;
    background-color: var(--blue-content-background-color);
    color: #FFFFFF;
    padding-top: 60px;

    & .text__content--blue__content {
        padding: 0 15px;
        max-width: 1027px;
        margin: 0 auto 20px auto;
        background-color: var(--blue-content-background-color);
        position: relative;
        z-index: 2;

        @media screen and (max-width: 1023px) {
            padding: 0;
        }

        @media screen and (min-width: 768px) and (max-width: 1023px) {
            max-width: 450px;
        }

        @media screen and (min-width: 601px) and (max-width: 768px) {
            max-width: 450px;
        }

        @media screen and (min-width: 481px) and (max-width: 600px) {
            max-width: 454px;
        }

        @media screen and (max-width: 480px) {
            max-width: 320px;
        }

        & p {
            color: #FFF;
            text-align: center;
            font-family: 'Roboto', sans-serif;
            font-style: normal;
            line-height: 110%;
            text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.80);
            font-size: 23px;
            font-weight: 400;
            letter-spacing: 0.92px;

            &:not(:last-child) {
                margin-bottom: 14px;
            }

            @media screen and (max-width: 1023px) {
                font-size: 15px;
                letter-spacing: 0.6px;
            }

            &:first-child {
                font-size: 38px;
                letter-spacing: 1.52px;
                font-weight: 700;

                @media screen and (max-width: 1023px) {
                    font-size: 21px;
                    letter-spacing: 0.84px;
                }
            }
        }
    }
}

.text__content--green {
    background-color: #28635A;
    color: #FFFFFF;
    padding: 160px 14px 60px;

    & h2 {
        color: #FFF;
        text-align: center;
        font-family: 'Roboto', sans-serif;
        font-size: 38px;
        font-style: normal;
        font-weight: 700;
        line-height: 110%;
        letter-spacing: 1.52px;
        margin-bottom: 40px;

        @media screen and (max-width: 1023px) {
            font-size: 25px;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }
    }



    & p > a {
        color: #FFF;
        text-decoration: underline;
    }

    & > p {
        color: #FFF;
        font-family: 'Roboto', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        letter-spacing: 0.96px;
        margin-left: auto;
        margin-right: auto;
        max-width: 1027px;

        &:not(:last-child) {
            margin-bottom: 24px;
        }

        @media screen and (max-width: 1023px) {
            font-size: 15px;
            letter-spacing: 0.6px;

            &:not(:last-child) {
                margin-bottom: 15px;
            }
        }

        @media screen and (min-width: 768px) and (max-width: 1023px) {
            max-width: 768px;
        }

        @media screen and (min-width: 601px) and (max-width: 768px) {
            max-width: 601px;
        }

        @media screen and (min-width: 481px) and (max-width: 600px) {
            max-width: 481px;
        }

        @media screen and (max-width: 480px) {
            max-width: 320px;
        }
    }

    & .text__content--green__content {
        display: flex;
        align-items: center;
        gap: 30px;
        max-width: 1024px;
        margin: 0 auto 40px;

        @media screen and (max-width: 1023px) {
            flex-direction: column;
            gap: 20px;
            margin: 0 auto 20px;
        }

        & > div {
            &:first-child {
                @media screen and (min-width: 1024px) {
                    flex: none;
                }
            }

            &:last-child {
                @media screen and (min-width: 768px) and (max-width: 1023px) {
                    max-width: 768px;
                }

                @media screen and (min-width: 601px) and (max-width: 768px) {
                    max-width: 601px;
                }

                @media screen and (min-width: 481px) and (max-width: 600px) {
                    max-width: 481px;
                }

                @media screen and (max-width: 480px) {
                    max-width: 320px;
                }
            }
        }

        & .text__content--green__content__highlight {
            color: #FBCE44;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.50);
            font-family: "Abhaya Libre", serif;
            font-style: normal;
            font-weight: 800;
            font-size: 70px;
            line-height: 110%;
            letter-spacing: 1.4px;

            @media screen and (max-width: 1023px) {
                font-family: "Abhaya Libre", serif;
                font-size: 52px;
                letter-spacing: 1.04px;
            }

            & span {
                font-size: 51px;
                letter-spacing: 1.02px;
                line-height: 100%;

                @media screen and (max-width: 1023px) {
                    font-family: "Abhaya Libre", serif;
                    font-size: 40px;
                    letter-spacing: 0.8px;
                }
            }
        }

        & .text__content--green__content__simple {
            color: #FFF;
            font-family: 'Roboto', sans-serif;
            font-size: 21px;
            font-style: normal;
            font-weight: 400;
            line-height: 110%;
            letter-spacing: 0.84px;

            @media screen and (max-width: 1023px) {
                font-size: 15px;
                letter-spacing: 0.6px;
            }
        }
    }

    & .text__content--green__grid_content {
        max-width: 1024px;

        @media screen and (min-width: 1024px) {
            gap: 93px;
            margin: 0 auto 60px auto;
        }

        @media screen and (max-width: 1023px) {
            margin: 0 auto 20px auto;
        }

        @media screen and (min-width: 700px) {
            gap: 34px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        & .text__content--green__grid_content__item {
            max-width: 280px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 34px;
            margin: 0 auto;

            @media screen and (max-width: 1023px) {
                max-width: 188px;
                gap: 12px;
            }

            @media screen and (max-width: 700px) {
                &:not(:last-child) {
                    margin-bottom: 20px;
                }
            }

            & p {
                color: #FFF;
                text-align: center;
                font-family: 'Roboto', sans-serif;
                font-size: 22px;
                font-style: normal;
                font-weight: 500;
                line-height: 110%;
                letter-spacing: 0.44px;

                @media screen and (max-width: 1023px) {
                    font-size: 15px;
                    letter-spacing: 0.3px;
                }

                &.text__content--green__grid_content__item__title {
                    color: #000;
                    text-align: center;
                    font-family: 'Roboto', sans-serif;
                    font-size: 26px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 110%;
                    letter-spacing: 0.52px;
                    border-radius: 8px;
                    background: #94D14F;
                    padding: 10px;

                    @media screen and (max-width: 1023px) {
                        font-size: 18px;
                        letter-spacing: 0.36px;
                    }
                }
            }
        }
    }

    & .text__content--green__cta {
        display: flex;
        place-content: center;
        margin-bottom: 124px;

        @media screen and (max-width: 1023px) {
            margin-bottom: 40px;
        }
    }

    & .text__content--green__buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 80px;
        justify-content: center;
        align-items: center;

        @media screen and (max-width: 1023px) {
            gap: 20px;
        }
    }
}

footer {
    font-family: 'Roboto', sans-serif;
    color: #FFF;

    a {
        display: inline-block;
        white-space: nowrap;
        color: #FFF;
        text-decoration: none;
        font-weight: bold;
    }

    & .footer__top {
        background-color: #2a2e3f;
        padding: 35px 0;

        & .footer__top__inner {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            justify-content: space-between;

            @media screen and (max-width: 1023px) {
                flex-direction: column;
                gap: 20px;
                align-items: center;
                text-align: center;
            }

            & > div {
                flex: 1 1 100%;

                &.footer__top__left {
                    & ul {
                        margin: 0;
                        padding: 0;
                        list-style: none;
                        display: flex;
                        align-items: center;
                        gap: 30px;


                        @media screen and (max-width: 1023px) {
                            flex-direction: column;
                            gap: 20px;
                            align-items: center;
                            text-align: center;
                        }

                        & li {
                            & a {
                                text-decoration: none;
                                color: #FFF;
                                display: flex;
                                align-items: center;

                                img {
                                    margin-right: 6px;
                                    filter: brightness(0) saturate(100%) invert(94%) sepia(9%) saturate(3559%) hue-rotate(24deg) brightness(88%) contrast(82%);
                                    max-height: 20px;
                                }
                            }
                        }
                    }
                }

                &.footer__top__right {
                    text-align: right;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-end;


                    @media screen and (max-width: 1023px) {
                        flex-direction: column;
                        align-items: center;
                        text-align: center;
                    }

                    ul {
                        margin: 0;
                        padding: 0;
                        list-style: none;
                        display: flex;
                        align-items: center;
                        gap: 10px;

                        & li {
                            & a {
                                text-decoration: none;
                                display: block;

                                img {
                                    filter: brightness(0) saturate(100%) invert(94%) sepia(9%) saturate(3559%) hue-rotate(24deg) brightness(88%) contrast(82%);
                                    height: 28px;
                                }
                            }
                        }
                    }
                }
            }
        }

        & p {
            font-family: 'Oswald', sans-serif;
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
    }

    & .footer__bottom {
        background: #93cf2c;
        text-align: center;
        padding: 40px 0;

        p {
            text-align: left;
            font-size: 12px;
        }

        & .footer__bottom__inner {
            max-width: 1200px;
            padding: 0 15px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;

            @media screen and (max-width: 1023px) {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 30px;
            }
        }

        & .footer__bottom__item {
            display: flex;
            align-items: center;
            gap: 10px;

            @media screen and (max-width: 1023px) {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                gap: 0;

                p {
                    text-align: center;
                }
            }

            & .footer__bottom__item__logo--18 img {
                width: 56px;
                height: 56px;
            }
        }
    }
}
