*,
*::after,
*::before,
html, body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Barlow', sans-serif;
}

.body {
    background:
    radial-gradient(1200px 900px at 18% 12%, rgba(253, 211, 209, 0.90) 0%, rgba(253, 211, 209, 0) 60%),
    radial-gradient(1000px 800px at 82% 28%, rgba(254, 218, 216, 0.75) 0%, rgba(254, 218, 216, 0) 62%),
    radial-gradient(1100px 950px at 35% 70%, rgba(254, 229, 227, 0.85) 0%, rgba(254, 229, 227, 0) 65%),
    radial-gradient(900px 700px at 88% 92%, rgba(254, 237, 234, 0.95) 0%, rgba(254, 237, 234, 0) 55%),
    linear-gradient(180deg, #fdd3d1 0%, #fee5e3 40%, #fff2f1 100%);

    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #696969;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    height: 100%;
    transition: 0.4s ease;
}


a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

ul {
    list-style: none;
}


header{
    position: fixed;
    z-index: 101;
    width: 100%;
    padding: 20px 50px;
}

.main-logo{
    position: fixed;
    left: 29px;
    top: 30px;
    transition: .3s;
}

.main-logo a::after{
    display: none;
}

.main-logo img{
    width: 50px;
    margin-top: 3px;
    transition: .3s;
}

.header-menu-btn {
    position: fixed;
    top: 40px;
    right: 4%;
    z-index: 100;
    width: 32px;
    height: 22px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header-menu-btn span {
    position: absolute;
    width: 100%;
    top: 9px;
    border: 2px solid #f89f9f;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.header-menu-btn span:first-child {
    top: 0;
}

.header-menu-btn span:last-child {
    top: 18px;
}

.change-btn span {
    opacity: 0;
}

.change-btn span:first-child {
    opacity: 1;
    top: 9px;
    transform: rotate(-45deg);
}

.change-btn span:last-child {
    opacity: 1;
    top: 9px;
    transform: rotate(45deg);
}

.header-links {
    position: fixed;
    top: 120px;
    right: 2.7%;
    z-index: 100;
    width: 200px;
    height: 0;
    overflow: hidden;
    text-align: end;
    padding: 0;
    transition: 0.3s ease;
}

.header-links li a {
    font-size: 26px;
    line-height: 37px;
    position: relative;
}


.header-links li:last-child a {
    margin-right: 19px;
}

.header-links li a img {
    position: absolute;
    right: -32px;
    top: 0;
    transform: rotate(45deg);
}

.hero {
    position: relative;;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-arrow {
    position: fixed;
    bottom: 150px;
    width: 45px;
    opacity: 0.7;
}


.hero-description {
    position: fixed;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-transform: uppercase;

    p {
        font-size: 30px;
        font-weight: 700;
        color: #ff97a3;
    }
}

.content-2 {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 1s, opacity 1s linear;
}

.content-1 {
    visibility: visible;
    opacity: 1;
    transition: opacity 1s linear;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    height: 500px;
    max-width: 1440px;
}

.box {
    height: fit-content;
}

.box:first-child {
    width: 100%;
    padding: 10px 40px 10px 20px;
    margin-top: 100px;
}

.box:last-child {
    width: 100%;
    padding: 10px 20px 10px 40px;
    margin-top: 100px;
}

.image-wrap {
    position: relative;
    display: inline-block;
    border-radius: 6px;
    overflow: hidden;
}

.image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
    object-fit: cover;
}

.image-wrap.is-loading {
    min-height: 180px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(249, 214, 214, 0.5), rgba(255, 255, 255, 0.35));
    background-size: 200% 200%;
    animation: shimmer 1.6s ease infinite;
}

.image-wrap.is-loading img {
    opacity: 0;
}

.image-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border: 3px solid #f4b9b9;
    border-top-color: #f89f9f;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

.image-wrap:not(.is-loading) .image-spinner {
    display: none;
}

.image-wrap.is-loading .image-spinner {
    display: block;
}


.first-row__container .image-wrap.images,
.second-row__container .image-wrap.images {
    width: 300px;
}

.first-row__container .image-wrap.gif,
.second-row__container .image-wrap.gif {
    width: 250px;
}

.light .first-row__container .column p,
.light .second-row__container .column p {
    color: #000000;
    transition: 0.4s ease;
}

.first-row__container .column p,
.second-row__container .column p {
    max-width: 250px;
    transition: 0.4s ease;
}


.first-row__container .column,
.second-row__container .column {
    display: flex;
    flex-direction: column;
    align-items: var(--col-align, baseline);
    margin-top: var(--col-mt, 0);
    margin-bottom: var(--col-mb, 0);
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}



@media (max-width: 1440px) {
    .hero-description {
        p {
            font-size: 30px;
        }
    }

    .first-row__container .image-wrap.images,
    .second-row__container .image-wrap.images {
        width: 450px;
    }

    .first-row__container .image-wrap.gif,
    .second-row__container .image-wrap.gif {
        width: 350px;
    }

    .first-row__container .column p,
    .second-row__container .column p {
        max-width: 350px;
    }
}

@media (max-width: 1023px) {
    .header-links li a img {
        right: -29px;
    }


    .hero-description {
        p {
            font-size: 24px;
        }
    }

    .first-row__container .image-wrap.images,
    .second-row__container .image-wrap.images {
        width: 550px;
    }

    .first-row__container .image-wrap.gif,
    .second-row__container .image-wrap.gif {
        width: 350px;
    }

    .wrapper {
        flex-direction: column;
    }

    .box:first-child {
        padding: 10px;
    }

    .box:last-child {
        padding: 10px;
    }

    .first-row__container .column,
    .second-row__container .column {
        align-items: center!important;
        margin-bottom: 150px!important;
    }

    .first-row__container .column p,
    .second-row__container .column p {
        font-size: 10px;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .main-logo img{
        width: 40px;
    }
    .header-links {
        width: 100%;
        text-align: inherit;
        right: inherit;
        left: 0;
        top: 0;
        z-index: 20;
        padding-left: 50px;
        background-color: #ffffff;
    }

    .header-links li {
        margin-bottom: 15px;
    }

    .header-menu-btn {
        width: 26px;
        top: 35px;
        right: 5%;
    }

    .header-menu-btn span {
        border: 1px solid #f89f9f;
        top: 7px;
    }

    .header-menu-btn span:last-child {
        top: 14px;
    }

    .change-btn span:first-child {
        top: 7px;
    }

    .change-btn span:last-child {
        top: 7px;
    }


    .hero-description {
        p {
            font-size: 18px;
        }
    }

    .first-row__container {
        max-width: 500px;
        margin: 0 auto;
    }
    header {
        width: calc(100% - 60px);
        padding: 30px;
    }

    .first-row__container .image-wrap.images,
    .second-row__container .image-wrap.images {
        width: 450px;
    }

    .first-row__container .image-wrap.gif,
    .second-row__container .image-wrap.gif {
        width: 300px;
    }

}

@media (max-width: 600px) {

    .first-row__container .image-wrap.images,
    .second-row__container .image-wrap.images {
        width: 400px;
    }

    .first-row__container .image-wrap.gif,
    .second-row__container .image-wrap.gif {
        width: 280px;
    }
}


@media (max-width: 425px) {
    .main-logo {
        top: 25px;
    }
    .header-menu-btn {
        top: 32px;
    }

    .hero-description {
        p {
            font-size: 16px;
        }
    }

    .first-row__container .image-wrap.images,
    .second-row__container .image-wrap.images {
        width: 350px;
    }
    .first-row__container .image-wrap.gif,
    .second-row__container .image-wrap.gif {
        width: 250px;
    }
}
