@charset "utf-8";

body {
    /* position: relative; */
    background-color: #000;
}

footer {
    padding: 5rem 20px 3rem !important;
}

footer .wrap {
    background: #000;
    border: 1px solid #fff;
}

.bg_img {
    position: fixed;
    background: url(../img/support_bg.png) no-repeat center;
    width: 100%;
    height: 100%;
    z-index: -11;
}

.blur_bg {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: -10;
}

.sec_title {
    text-align: center;
    border-bottom: none;
}

.sec_title h2 {
    color: #fff;
}

/* sec 1 */

#sec-1 {
    position: relative;
}

.support {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    gap: 10rem;
    color: #fff;
    margin-top: 13rem;
    /* background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 3rem 0; */
}

.support .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
}

.support .content .icon {
    width: 12%;
}

.support .content .title-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 54%;
}

.support .line {
    width: 100%;
    height: 1px;
    background: #fff;
}

.support .content h2 {
    width: fit-content;
    font-size: 2.2rem;
    font-weight: 600;
    position: relative;
}
.support .content h2::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #ddd;
    bottom: -7px;
    left: 0;
}

.support .content .body {
    font-size: 2rem;
    line-height: 1.7;
    color: #ddd;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support .content .body span {
    display: block;
}

/* #sec-1 .wrap .scroll_down{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-size: 2rem;

    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}
#sec-1 .wrap .scroll_down span{
    animation: up_down 1.5s infinite var(--trans);
}
@keyframes up_down{
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
} */


.material-symbols-outlined {
    font-size: 3rem !important;
    font-variation-settings:
        'FILL' 1,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24
}


.call {
    margin-top: 10rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-sizing: border-box;
    padding: 5rem 6rem;
    background: url(../img/support_bg2.png) no-repeat center;
    background-size: cover;
    border: 1px solid #fff;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    border-radius: var(--bdrs);
}

.call a {
    font-family: 'paperlogy-M';
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 3rem;
}

.call a p {
    border-bottom: 2px solid #fff;
}

.call .left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.call .left h2 {
    font-weight: 600;
}

.call .left div span {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

footer {
    padding: 10rem 20px 3rem !important;
}

@media screen and (max-width:1390px) {
    #sec-1 {
        height: 100%;
    }

    .support {
        flex-direction: column;
        align-items: center;
    }

    .support .line {
        width: 80%;
    }
}

@media screen and (max-width:1300px) {
    .support {
        gap: 5rem;
        margin-top: 6rem;
    }

    .support .content {
        flex-direction: column;
        gap: 4rem;
    }

    .support .content .icon {
        width: 20%;
    }

    .support .content .title-body {
        width: 80%;
    }
}

@media screen and (max-width:500px) {
    .support .content .icon {
        width: 30%;
    }

    .support .content .title-body,
    .support .line {
        width: 90%;
    }
}

@media screen and (max-width:410px) {
    .sec_title h2 {
        font-size: 2.4rem;
    }
}