body {
    margin: 0;
    font-family: 'Hand Craft', sans-serif;
    font-weight: 400;
    font-size: 19px;
    background: #f5f5f5;
    color: #573222;
}

h1, h2 {
    font-size: 1.2em;
    font-weight: 700;
}

.page-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
}

header {
    display: flex;
    height: 175px;
}

.ball {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    background: transparent image-set(
            url('img/ball.png') 1x,
            url('img/ball_x2.png') 2x,
            url('img/ball_x3.png') 3x
    ) no-repeat left 77%;
    min-width: 180px;
}

.ball .logo {
    margin-left: 40px;
    margin-top: 10px;
    height: 100px;
}

.ball h2 {
    align-self: flex-start;
    margin: 0;
}

header .fox {
    display: flex;
    align-self: flex-end;
    height: 100%;
    min-width: 160px;
    background: transparent image-set(
        url('img/fox.png') 1x,
        url('img/fox_x2.png') 2x,
        url('img/fox_x3.png') 3x
    ) no-repeat right bottom;
}

.greeting h1 {
    font-size: 24px;
}

.gallery h2 {
    font-family: Poppins, sans-serif;
    font-size: 1.0em;
    line-height: 1.1;
    margin-bottom: 10px;
}

.divider {
    text-align: center;
    margin: 25px 0;
}

.divider img {
    height: 17px;
}

.cooperation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cooperation li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.cooperation li .icon {
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #573222;
    border-radius: 50%;
}

.cooperation li .icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    stroke: #fff;
}

footer {
    padding: 24px 0;
    text-align: center;
}

.socials a {
    margin: 0 8px;
    display: inline-block;
}

.socials img {
    width: 36px;
    height: 36px;
}

.swiper {
    position: relative;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    display: flex;
    height: auto;
}

.swiper-slide .slide-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 15px;
    background: #fad8b9;
    padding: 15px;
}

.swiper-slide img {
    display: block;
    max-width: 100%;
    border-radius: 8px;
}

.swiper-slide p {
    flex: 1;
    margin: 10px 0;
}

.swiper-slide .links {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.swiper-slide .links a {
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.swiper-pagination {
    position: relative;
    margin-top: 10px;
}

.swiper-pagination-bullet-active {
    background: #573222;
}

.banners {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 50px 30px;
}

.banner {
    display: flex;
    border-radius: 12px;
    box-sizing: border-box;
}

.banner.gift {
    flex-direction: column;
    max-width: 400px;
    padding: 165px 30px 30px;
    background: transparent image-set(
            url('img/banner_gift.png') 1x,
            url('img/banner_gift_x2.png') 2x,
            url('img/banner_gift_x3.png') 3x
    ) no-repeat center bottom / 100% 100%;
}

.banner.etsy {
    flex-direction: row;
    gap: 10px;
    max-width: 550px;
    padding: 30px;
    background: transparent image-set(
            url('img/banner.png') 1x,
            url('img/banner_x2.png') 2x,
            url('img/banner_x3.png') 3x
    ) no-repeat center bottom / 100% 100%;
}

.banner.etsy .left {
    display: flex;
    flex-direction: column;
}

.banner.etsy .right {
    flex-direction: column;
    width: 90px;
    position: relative;
}

.banner.etsy .logo {
    width: 90px;
}

.banner.etsy .fox {
    width: 120px;
    position: absolute;
    left: -18px;
    bottom: -39px;
}

.banner p {
    flex: 1;
    margin: 0 0 20px;
}

.banner .button {
    margin: 0 auto;
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    color: #fff;
    transition: background 0.25s, transform 0.15s;
}

.banner.gift .button {
    background: #f4857a;
}

.banner.etsy .button {
    background: #ff5c01;
}

.banner .button:hover {
    background: #573222;
}

.banner .button:active {
    transform: scale(0.97);
}
