* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}


form {
    display: contents;
}


.horizonal-line {
    border-bottom: 1px solid #d3d3d3;
    width: 100%;
}
.horizonal-line-container{
    padding: 0 38% 5% 0;
}

/* 섹션1 */
.header-background-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: #1e1e1e;
}

.first-section-container{
    background-image: url("../../images/contact/banner.png");
    background-size: cover;
    width: 100%;
    display: flex;
    justify-content: center;
    aspect-ratio: 7681 / 2256;
}


.first-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 2.05rem;
    width: 1920px;
}

.first-section .content-container {
    position: absolute;
    width: 78%;
    max-width: 1536px;
    top: 6.4rem;
    height: calc(100% - 6.4rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: calc(100% - 7rem);
}

.first-section .text-container {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 3.84rem;

}

/* 섹션2 */

.second-section-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

.second-section {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1920px;
}

.second-section .content-container {
    display: flex;
    flex-flow: wrap;
    width: 60%;
    padding-left: 15%;
    padding-bottom: 7%;
}

.second-section .content-container .horizonal-line {
    border-bottom: 1px solid #60E0E0;
    width: 100%;
}

.second-section .content-container .horizonal-line-container {
    padding: 0 88% 5% 0;
    width: 100%;
}

.second-section .subject-container{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 1% 29% 1% 0;
}

.second-section .subject-container h1{
    height: auto;
    display: block;
    font-size: 3rem;
    font-family: 'capitana', sans-serif;
    font-weight: 600;
}

.second-section .text-container {
    padding: 1rem 0;
}

.second-section .text-container p {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Pretendard', sans-serif;
    line-height: 1.4rem;
    color: #1e1e1e;
}

.second-section .contact-container {
    padding: 5% 0 5% 3%;
    width: 40%;
}

.second-section .contact-container .contact-form-container .contact-information-container{
    padding: 6% 0 6% 0;
}

.second-section .contact-container .contact-form-container .contact-information-container ul{
    display: grid;
    row-gap: 2.5rem;
}

.second-section .contact-container .contact-form-container .contact-information-container .image-container {
    display: flex;
    align-items: center;
    max-width: 537.6px;
    width: 5rem;
}

.second-section .contact-container .contact-form-container .contact-information-container .image-container img {
    max-width: 100%;
    height: auto;
}



.second-section li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.second-section .contact-container .contact-form-container .sns-container{
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.second-section .contact-container .contact-form-container .sns-container .title-container{
    display: flex;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.second-section .contact-container .contact-form-container .sns-container .sns-button-container{
    display: flex;
    gap: 1.75rem;
}

.second-section .contact-container .contact-form-container .sns-container .sns-button-container .sns-button {
    width: 4rem;
}


@media (max-width: 1024px) {
    .first-section .text-container {
        font-size: 2rem;
    }

    .second-section {
        flex-wrap: wrap;
    }

    .second-section .content-container {
        padding: 7% 0 3% 10%;
        width: 100%;
    }

    .second-section .contact-container {
        padding: 2% 0 15% 10%;
        width: 100%;
    }
}

@media (max-width: 767px) {
     .first-section {
        height: 219px;
    }
}