.promotion {
    width: 100%;
    height: 100vh !important;
    background: #151515;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
}

.promotion-wrapper {
    width: 1200px;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 10px;
    background-color: #212121;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.p-top {
    color: #fff;
    width: 650px;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    background-color: var(--main-color);
}

.p-top img {
    width: 120px;
}

.p-top span {
    font-size: 26px;
    font-weight: 500;
}

.p-2nd {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 1rem;
}

.p-2nd-circle {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--main-color);
    -webkit-animation: blink-effect 1s step-end infinite;
    animation: blink-effect 1s step-end infinite;
    margin-right: 5px;
}

.p-2nd p {
    font-size: 24px;
}

.p-2nd p span {
    color: var(--main-color);
    font-weight: 700;
}

.p-2nd p br {
    display: none;
}

.p-title {
    position: relative;
    margin-top: 2rem;
    padding-bottom: 20px;
    border-bottom: 5px solid #ff3d3d50;
}

.p-title .live {
    position: absolute;
    top: -18px; left: 426px;
    width: 37px;
}

.p-title h1 {
    color: #fff;
    font-size: 105px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.p-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.3rem;
}

.p-bottom span {
    color: #fff;
    padding: 5px;
    font-size: 22px;
    font-family: 'Poppins';
    border-radius: 5px;
    background-color: #1c1b1b;
}

.p-bottom span em {
    color: #84684f;
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
}

.p-bottom p {
    color: #84684f;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.p-bottom p em {
    font-style: normal;
}

.p-bottom p br {
    display: none;
}


.scrollDown {
    position: absolute;
    bottom: 40px;
    width: 20px;
    transform: translate(-50%, -50%);
    -webkit-animation: upDown 1.5s ease-in-out infinite;
    animation: upDown 1.5s ease-in-out infinite;
}

@keyframes upDown {
	0% {
		transform:  translateY(-7px);
	}
	50% {
		transform: translateY(7px);
	}
	100% {
		transform:  translateY(-7px);
	}
}



/*==================================================*/
@media (max-width: 1250px) {
    .promotion-wrapper {
        width: 100%;
    }
}


@media (max-width: 850px) {
    .promotion-wrapper {
        width: fit-content;
        padding: 30px 80px;
    }
    
    .p-top {
        width: fit-content;
        padding: 5px 30px;
    }
    
    .p-top img {
        width: 80px;
    }

    .p-top span {
        font-size: 20px;
    }
    
    .p-2nd p {
        font-size: 20px;
    }

    .p-title {
        margin-top: 1rem;
    }
    
    .p-title h1 {
        font-size: 65px;
    }

    .p-title .live {
        position: absolute;
        top: -18px; left: 256px;
        width: 37px;
    }

    .p-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .p-bottom span {
        font-size: 17px;
    }

    .p-bottom p {
        font-size: 15px;
    }

    .scrollDown {
        bottom: 5px;
        width: 15px;
        -webkit-animation: upDown 1s ease-in-out infinite;
        animation: upDown 1s ease-in-out infinite;
    }

    @keyframes upDown {
        0% {
            transform:  translateY(-3px);
        }
        50% {
            transform: translateY(3px);
        }
        100% {
            transform:  translateY(-3px);
        }
    }
}


@media (max-width: 725px) {
    .promotion-wrapper {
        padding: 0 20px;
        background-color: transparent;
        box-shadow: none;
    }

    .p-top img {
        width: 60px;
    }

    .p-top span {
        font-size: 15px;
    }

    .p-2nd {
        margin-top: 0;
    }

    .p-2nd p {
        line-height: 1.4;
    }
    
    .p-2nd p br {
        display: block;
    }

    .p-2nd-circle {
        display: none;
    }
}


@media (max-width: 464px) {
    .p-title {
        width: 400px;
    }

    .p-title .live {
        width: 30px;
    }
}


@media (max-width: 450px) {
    .promotion {
        overflow: hidden;
    }

    .p-bottom p {
        line-height: 1.4;
    }
    
    .p-bottom p em {
        display: none;
    }
    
    .p-bottom p br {
        display: block;
    }
}