/* 全局重置与基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Han Serif CN', serif;
}

body {
    color: #333;
    overflow-x: hidden;
    font-family: 'Source Han Serif CN', serif;
    /*background: url("/{ms:global.style/}ui/zu_01_2x.png") no-repeat center center;*/
    /*background-size: 100%;*/
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

nav li,
.main-nav li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 5px 0;
    z-index: 1000;
    min-width: 120px;
}

.dropdown-menu a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    font-weight: 400;
    height: auto;
    line-height: normal;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary);
}

.dropdown-menu.show {
    display: block;
}

/* 颜色变量 */
:root {
    --primary-color: #009ba8;
    /* 这里的青色/蓝绿色 */
    --text-gray: #666;
    --bg-light: #f9f9f9;
}

/* 颜色变量 */
:root {
    --primary: #1bbab8;
    /* 这里的青绿色 */
    --dark-bg: #1a1a1a;
    --text-gray: #666;
}

/* 通用容器：用于限制内容最大宽度并居中 */
.container {
    width: calc(1400 / 1920 * 100vw);
    margin: 0 auto;
}

/* --- Header 头部 --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(15/1920*100vw) 3vw;
    border-bottom: 1px solid #eee;
    background: #fff;
    width: 100%;
    height: calc(100/1920*100vw);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
}

.search-container input {
    padding: calc(7/1920*100vw) calc(10/1920*100vw);
    padding-right: calc(35/1920*100vw);
    border-radius: calc(20/1920*100vw);
    border: 1px solid #ddd;
    font-size: 14px;
    width: calc(135/1920*100vw);
    outline: none;
    transition: border-color 0.3s;
}

.search-container input:focus {
    border-color: var(--primary);
}

     .search-icon {
    position: absolute;
    right: 12px;
    top: 57%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: calc(14/1920*100vw);
    align-items: center;
    font-size: 14px;
    flex-wrap: nowrap;
}

.main-nav li {
    display: flex;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: normal;
    display: block;
}

.main-nav a.menu-item-box {
    width: 100px;
    height: 40px;
    border-radius: 20px;
    text-align: center;
    line-height: 40px;
    color: #333;
    text-decoration: none;
    font-weight: 800;
}

.main-nav a.active {
    background-color: var(--primary);
    color: white;
    border-radius: 20px;
    width: 100px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left:  5.4vw;
    flex-shrink: 0;
}

.logo-area img {
    height: calc(68/1920*100vw);
    width: calc(362/1920*100vw);
}

.fake-logo {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---------------- BANNER 横幅 ---------------- */
.banner {
    width: 100vw;
    height: calc(500 / 1920 * 100vw);
    /*background: linear-gradient(to right, #6bcabb, #2bb6a7); !* 模拟背景 *!*/
    
    background-size: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 模拟Banner右侧的手形爱心 */
/*.banner::after {*/
/*    content: "♥";*/
/*    position: absolute;*/
/*    right: 10%;*/
/*    top: 10%;*/
/*    font-size: calc(400 / 1920 * 100vw);*/
/*    color: rgba(255,255,255,0.3);*/
/*    pointer-events: none;*/
/*}*/

.banner-content {
    width: calc(1650 / 1920 * 100vw);
    color: white;
    border-left: calc(5 / 1920 * 100vw) solid #fff;
    padding-left: calc(20 / 1920 * 100vw);
}

.banner-title-en {
    letter-spacing: 2px;
    margin-bottom: 0;

    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: calc(48 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: 1.2;
    text-align: left;
    font-style: normal;
    text-transform: uppercase;
}

.banner-title-cn {
    font-size: calc(48 / 1920 * 100vw);
    font-weight: 800;
    line-height: 1.2;
}

/* ---------------- SUB NAV 二级导航 ---------------- */
.sub-nav {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: calc(30 / 1920 * 100vw) 0;
    width: calc(1200/1920*100vw);
    /*border: 1px solid red;*/
    margin: 0 auto;
    margin-left: 11.6vw;
}

.sub-nav a {
    /*font-size: calc(24 / 1920 * 100vw);*/
    /*font-weight: bold;*/
    padding: calc(10 / 1920 * 100vw) calc(30 / 1920 * 100vw);
    /*color: #333;*/

    /*width: 104px;*/
    /*height: 35px;*/
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: calc(36 / 1920 * 100vw);
    color: #333333;
    /* line-height: calc(56 / 1920 * 100vw); */
    text-align: center;
    font-style: normal;
    text-transform: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.sub-nav a.active {
    color: var(--primary);
    position: relative;
    border-radius: 0;

    /*width: 105px;*/
    /*height: 35px;*/
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: calc(36 / 1920 * 100vw);
    /* line-height: calc(56 / 1920 * 100vw); */
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.sub-nav a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(30 / 1920 * 100vw);
    right: calc(30 / 1920 * 100vw);
    height: calc(6 / 1920 * 100vw);
    background-color: var(--primary);
}

/* ---------------- COMMON TITLES 通用标题 ---------------- */
.section-title {
    margin: 0 auto;
    margin-top: calc(265 / 1920 * 100vw);
    margin-bottom: calc(50 / 1920 * 100vw);

    width: calc(354 / 1920 * 100vw);
    height: calc(51 / 1920 * 100vw);
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: calc(52 / 1920 * 100vw);
    line-height: calc(56 / 1920 * 100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    color: var(--primary)
}

.section-title span {
    color: var(--primary);
}

/* 助学日轮播样式补充 */
.gallery-wrapper {
    overflow: hidden; /* 确保内容在容器内滚动 */
}

.scholarship-gallery {
    display: flex;
    flex-wrap: nowrap; /* 确保不换行 */
    width: 100%;
}

.scholarship-gallery .gallery-item {
    flex-shrink: 0; /* 防止图片被压缩 */
}

.section-desc {
    /*text-align: center;*/
    width: calc(1400 / 1920 * 100vw);
    margin: 0 auto calc(50 / 1920 * 100vw) auto;
    /*font-size: calc(16 / 1920 * 100vw);*/
    /*line-height: 1.8;*/
    /*color: #555;*/

    /*width: 1399px;*/
    /*height: 71px;*/
    font-family: 'Source Han Serif CN', serif;
    font-weight: bold;
    font-size: calc(22 / 1920 * 100vw);
    color: #956B39;
    line-height: calc(46 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

/* ---------------- SECTION 1: 助学日 ---------------- */
.gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(1400 / 1920 * 100vw);
    margin: 0 auto calc(80 / 1920 * 100vw) auto;
}

.arrow {
    font-size: calc(60 / 1920 * 100vw);
    color: #ccc;
    cursor: pointer;
    user-select: none;
}

.box-style {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 calc(80/1920*100vw);
}

.gallery-grid {
    width: 100%;
    display: flex;
    gap: calc(95 / 1920 * 100vw);
    justify-content: space-between;
}

.gallery-item {
    width: calc(400 / 1920 * 100vw);
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.gallery-img {
    width: calc(447 / 1920 * 100vw);
    height: calc(335 / 1920 * 100vw);
    background-color: #ddd;
    object-fit: cover;
    position: relative;
}

.fund-img {
    width: calc(1440 / 1920 * 100vw);
    height: calc(732 / 1920 * 100vw);
    background-color: #ddd;
    object-fit: cover;
}

.fund-style {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 calc(80/1920*100vw);
}

.winter-img {
    width: calc(443 / 1920 * 100vw);
    height: calc(393 / 1920 * 100vw);
    background-color: #ddd;
    object-fit: cover;
}

.winter-item {
    position: relative;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), z-index 0s;
    z-index: 1;
}

.winter-item:nth-child(1)::before {
    position: absolute;
    bottom: calc(0/1920*100vw);
    left: 0;
    width: 97.5%;
    height: calc(61/1920*100vw);
    background: rgba(0, 0, 0, 0.6);


    font-weight: bold;
    font-size: calc(22/1920*100vw);
    color: #FFFFFF;
    line-height: calc(56/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: flex;
    align-items: center;
    padding-left: calc(10 / 1920* 100vw);
}


.winter-item:nth-child(2)::before {
    position: absolute;
    bottom: calc(0/1920*100vw);
    left: 0;
    width: 97.5%;
    height: calc(61/1920*100vw);
    background: rgba(0, 0, 0, 0.6);


    font-weight: bold;
    font-size: calc(22/1920*100vw);
    color: #FFFFFF;
    line-height: calc(56/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: flex;
    align-items: center;
    padding-left: calc(10 / 1920* 100vw);
}


.winter-item:nth-child(3)::before {
    position: absolute;
    bottom: calc(0/1920*100vw);
    left: 0;
    width: 97.5%;
    height: calc(61/1920*100vw);
    background: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    font-size: calc(22/1920*100vw);
    color: #FFFFFF;
    line-height: calc(56/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: flex;
    align-items: center;
    padding-left: calc(10 / 1920* 100vw);
}


.winter-item:nth-child(4)::before {
    position: absolute;
    bottom: calc(0/1920*100vw);
    left: 0;
    width: 97.5%;
    height: calc(61/1920*100vw);
    background: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    font-size: calc(22/1920*100vw);
    color: #FFFFFF;
    line-height: calc(56/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: flex;
    align-items: center;
    padding-left: calc(10 / 1920* 100vw);
}

.winter-item:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.title-style {
    font-family: 'Source Han Serif CN', serif;
    font-weight: bold;
    font-size: calc(24 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(36 / 1920 * 100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    padding: calc(26 / 1920 * 100vw);
}

.lien-style {
    width: calc(332 / 1920 * 100vw);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.66);
    margin: 0 auto;
}

.icon-style {
    width: calc(49 / 1920 * 100vw);
    height: calc(91 / 1920 * 100vw);
}

.desc-style {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: calc(16 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(30 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    padding: calc(16 / 1920 * 100vw);
}

.gallery-caption {
    position: absolute;
    bottom: 5px;
    left: 0;
    background: rgb(0 0 0 / 52%);
    padding: calc(10 / 1920* 100vw);
    font-size: calc(20 / 1920* 100vw);
    width: calc(447 / 1920* 100vw);
    height: calc(53 / 1920* 100vw);

    font-weight: bold;
    color: #FFFFFF;
    line-height: calc(33 / 1920* 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    align-items: center;
    letter-spacing: calc(3 / 1920* 100vw);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 特殊：中间的那个大一点的卡片样式（第一部分中间是绿色的） */
.gallery-item.featured .gallery-img {
    background-color: #00A9A5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: calc(20 / 1920 * 100vw);
    font-size: calc(14 / 1920 * 100vw);
    opacity:0.9;

}

.bottom-text{
    position: absolute;
    bottom: calc(10/1920*100vw);
    left: 0;
    width: 111.5%;
    height: calc(56/1920*100vw);
    background: rgba(0, 0, 0, 0.6);


    font-weight: bold;
    font-size: calc(22/1920*100vw);
    color: #FFFFFF;
    line-height: calc(56/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------------- SECTION 2: 冬助日 (背景部分) ---------------- */
.winter-section {
    width: 100%;
    /*background: linear-gradient(to bottom, #009ba8, #007d88);*/
    
    background-size: 100%;
    /* 模拟全宽背景 */
    padding: calc(38 / 1920 * 100vw) 0;
    color: white;
    position: relative;
    height: calc(515 / 1920 * 100vw);
}

.winter-section .section-title {
    color: white;
    margin-top: 0;
}

.winter-section .section-desc {
    color: rgba(255, 255, 255, 0.9);
}

.winter-gallery {
    display: flex;
    justify-content: space-between;
    gap: calc(20 / 1920 * 100vw);
    margin-top: calc(80 / 1920 * 100vw);
    padding: 0;
}

.black_fooders{
    position: absolute;
    bottom: calc(0/1920*100vw);
    left: 0;
    width: 100%;
    height: calc(61/1920*100vw);
    background: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    font-size: calc(22/1920*100vw);
    color: #FFFFFF;
    line-height: calc(56/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    align-items: center;
    padding-left: calc(10 / 1920* 100vw);
    z-index: 2; /* 确保文字在图片上方 */

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.winter-item .winter-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: calc(30 / 1920 * 100vw);
    gap: calc(20 / 1920 * 100vw);
    color: white;
    font-size: calc(16 / 1920 * 100vw);
}

.pag-btn {
    width: calc(30 / 1920 * 100vw);
    height: calc(30 / 1920 * 100vw);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ---------------- SECTION 3: 仁爱天使基金 ---------------- */
.fund-hero {
    width: 100vw;
    /* 比容器稍窄 */
    /*margin: 0 auto;*/
    position: relative;
    /*height: calc(400 / 1920 * 100vw);*/
    /*background-color: #ddd; !* 大图占位 *!*/
    margin-bottom: calc(40 / 1920 * 100vw);
    display: flex;
    justify-content: center;
}

.fund-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.fund-overlay {
    position: absolute;
    width: calc(1440 / 1920 * 100vw);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 155, 168, 0.9);
    /* 青色半透明 */
    padding: calc(30 / 1920 * 100vw);

    font-family: 'Source Han Serif CN', serif;
    font-weight: bold;
    font-size: calc(22 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(46 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    padding: calc(30 / 1920* 100vw) calc(120 / 1920* 100vw);
    height: calc(362 / 1920* 100vw);
    letter-spacing: 2px;
}

/* 更多按钮 */
.btn-view-more-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; /* 胶囊圆角 */
    border: 2px solid #956B39; /* 默认边框颜色：#956B39 */
    color: #956B39; /* 默认文字颜色：#956B39 */
    background-color: transparent; /* 默认背景透明 */
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(149, 107, 57, 0.15); /* 默认淡淡的金色阴影 */
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

/* 悬停状态 (选中) */
.btn-view-more-custom:hover {
    background-color: #1bbab8; /* 悬停背景颜色：#1bbab8 */
    border-color: #1bbab8;     /* 悬停边框颜色：#1bbab8 */
    color: #ffffff;            /* 悬停文字颜色：白色 */
    box-shadow: 0 8px 20px rgba(27, 186, 184, 0.4); /* 悬停时更明显的青色阴影 */
    transform: translateY(-3px); /* 向上浮动 */
}

/* 悬停时箭头轻微右移 */
.btn-view-more-custom:hover svg {
    transform: translateX(4px);
}

/* 点击瞬间 */
.btn-view-more-custom:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(27, 186, 184, 0.3);
}

/* ---------------- FOOTER ---------------- */
footer {
    padding: 40px 0 20px;
    width: 100%;
}

.footer-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;

    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(694 / 1920 * 100vw);
    
}

.footer-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logos img {
    max-width: 100%;
    height: auto;
    max-height: 68px;
}

.footer-links {
    height: auto;
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: 20px;
    color: #85663F;
    letter-spacing: 1px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #78552B;
    font-weight: bold;
    font-family: Source Han Serif CN, serif;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: 16px;
    color: #85663F;
    letter-spacing: 1px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    /*flex-wrap: wrap;*/
}

.contact-item img.icon {
    width: 25px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-right {
    display: flex;
    gap: 20px;

}

.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.qr-item img {
    width: 80px;
    height: 80px;
    border: 1px dashed #ccc;
    padding: 2px;
}

.qr-item span {
    font-family: NotoSansHans, NotoSansHans;
    font-weight: bold;
    font-size: calc(20/1920*100vw);
    color: #6D6D6D;
    line-height: calc(46/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    font-family: 'Source Han Serif CN', serif;
    font-weight: 800;
    font-size: 16px;
    color: #956B39;
    letter-spacing: 1px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    line-height: 1.5;
}


.police-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

/* 添加鼠标手型，提示可点击 */
.gallery-item,
.winter-item,
.fund-hero,
.icon-style,
img {
    cursor: pointer;
}

/* 轮播图样式 */
.winter-gallery-wrapper {
    position: relative;
    /* width: calc(1400 / 1920 * 100vw); */
    overflow: hidden;
    margin: calc(80 / 1920 * 100vw) auto 0;
}

.winter-gallery {
    margin-top: 0 !important;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: calc(61 / 1920 * 100vw);
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.winter-item {
    flex-shrink: 0;
    width: calc(434 / 1920 * 100vw);
    height: calc(335 / 1920 * 100vw);
}

.winter-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(60 / 1920 * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.3s;
}

.winter-gallery-wrapper:hover .winter-arrow {
    opacity: 1;
}

.winter-arrow.prev {
    left: calc(-60 / 1920 * 100vw);
}

.winter-arrow.next {
    right: calc(-60 / 1920 * 100vw);
}

.winter-gallery-wrapper:hover .winter-arrow.prev {
    left: 0;
}

.winter-gallery-wrapper:hover .winter-arrow.next {
    right: 0;
}


.arrow-icon {
    width: calc(30 / 1920 * 100vw);
    height: calc(30 / 1920 * 100vw);
    border-top: 3px solid rgba(255, 255, 255, 0.9);
    border-right: 3px solid rgba(255, 255, 255, 0.9);
}

.winter-arrow.prev .arrow-icon {
    transform: rotate(-135deg);
}

.winter-arrow.next .arrow-icon {
    transform: rotate(45deg);
}

.styled-section {
    margin: 0 auto;
    
    background-size: 100% 140%;
    /* padding-top: calc(50 / 1920 * 100vw); */
    padding-bottom: calc(50 / 1920 * 100vw);
}

.styled-section .section-title {
    padding-top: 0;
}