@charset "UTF-8";

.download {
    position: relative;
    margin: 0 auto 70px auto;
    padding: 0;
    width: 100%;
    max-width: 1362px;
    height: 125px; /*125px close*/
    border: 1px solid #52AE32;
    border-radius: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: korolev-condensed, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.download-active {
    position: relative;
    margin: 70px auto 140px auto;
    padding: 0;
    width: 100%;
    max-width: 1362px;
    height: auto; /*125px close*/
    border: 1px solid #52AE32;
    border-radius: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: korolev-condensed, sans-serif;
    font-weight: 300;
    font-style: normal;
}

#down-title {
    margin: 32px 0 32px 0;
    padding: 0;
    font-size: 56px;
    color: #52AE32;
    font-family: 'Butler', sans-serif;
    font-weight: 250;
    line-height: 1.4;
}

#down-button {
    position: absolute;
    top: 42.5px;
    right: 3%;
    margin: 0;
    padding: 0;
    width: 45px;
    height: 45px;
    border: 1px solid #52AE32;
    border-radius: 0%;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#down-button img {
    position: absolute;
    margin: 0;
    padding: 0;
    transition: ease 200ms;
}

#plus01_b {
    width: 23px;
}

.plus02_b {
    height: 23px;
    opacity: 1;
}

.plus02b-active {
    opacity: 0;
}

.down-wrapper {
    margin: 0 0 40px 0;
    padding: 0;
    display: none;
    flex-direction: row;
    justify-content: flex-start;
    gap: 100px;
    height: 100%;
    width: 90%;
}

.down-wrapper-active {
    margin: 0 0 40px 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 100px;
    height: 100%;
    width: 90%;
}

/*MOBILE*/

@media screen and (max-width: 1385px) {
    .download {
        width: 91%;
    }
}

@media screen and (max-width: 1000px) {
    .download {
        margin: 0 auto 140px auto;
        width: 86%;
        height: auto;
    }
    .down-wrapper {
        width: 95%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
    }
    .down-wrapper a img {
        height: 90px;
    }
    #down-button {
        display: none;
    }
    #down-title {
        font-size: 46px;
    }
}

@media screen and (max-width: 410px) {
    #down-title {
        font-size: 42px;
    }
}

@media screen and (max-width: 380px) {
    #down-title {
        font-size: 38px;
    }
}

@media screen and (max-width: 330px) {
    #down-title {
        font-size: 32px;
    }
}

