@font-face {
    font-family: 'PLight';
    src: url('/Font/Pretendard-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PRegular';
    src: url('/Font/Pretendard-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PMedium';
    src: url('/Font/Pretendard-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PSemiBold';
    src: url('/Font/Pretendard-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PBold';
    src: url('/Font/Pretendard-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



body {
    margin: 0;
    padding: 0;
    overflow-x:hidden;
    font-family: 'PSemiBold', 'PRegular', 'PLight', 'PMedium', sans-serif;
    background-color: #000000;
}
.main {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.main_background {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('/IMG/Main-Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    opacity: 0;
    z-index: -1;
}

.main img {
    height: 200px;
    opacity: 0;
    z-index: 3;
}

.fade-in {
    animation: fadeInAnim 3s forwards ease-in-out;
}

@keyframes fadeInAnim {
    from { opacity: 0; }
    to { opacity: 0.3; }
}

.fade-in-title {
    animation: fadeInTitleAnim 2s forwards ease-in-out;
}

@keyframes fadeInTitleAnim {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dc {
    background-color: #FFFFFF;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding-bottom: 200px;
}

.ot p {
    margin: 0;
}

.ot {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.prnt {
    width: 70%;
    max-width: 1300px;
    display: flex;
    gap: 100px;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.tag {
    font-size: 24px;
    font-family: 'PSemiBold';
    text-align: left;
    width: 100%;
}

.title {
    font-size: 42px;
    font-family: 'PBold';
    text-align: left;
    width: 100%;
}

.dc_t {
    margin-top: 20px !important;
    font-size: 17px;
    font-family: 'PRegular';
    line-height: 30px;
    color: #4A4E53;
    width: 100%;
}

.vtm {
    height: 100px;
    margin-top: 30px;
}

@media (max-width: 768px) {
.main_background {
    background-image: url('/IMG/Main-Background-p-v.jpg');
}
.main img {
    height: 70px;
}

.vtm {
    height: 50px;
}

.dc {
    padding-bottom: 100px;
}
}