/* Contact section */
.contact-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 50px 25px;
    border-bottom: solid .5px #44474D;
}

/* text */
.contact-text-container {
    width: auto;
    min-width: 400px;
    max-width: 700px;
    height: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.contact-text-container .section-title {
    font-family: var(--font-secondary-medium);
    font-weight: normal;
    font-size: 24px;
    color: #D5DFEF;
    text-align: center;
}

.contact-text-container .text-subcontainer {
    width: 100%;
    max-width: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0px 25px;
}

.contact-text-container .text-subcontainer .section-desc {
    font-family: var(--font-secondary);
    font-weight: normal;
    font-size: 24px;
    color: #B6BECC;
    line-height: 1.5;
    text-align: center;
}

.contact-text-container .text-subcontainer .section-desc-alt {
    font-family: var(--font-secondary);
    font-weight: normal;
    font-size: 20px;
    color: #B6BECC;
    line-height: 1.5;
    text-align: left;
    margin-top: auto;
}

/* Contact methods container */
.contact-section .contact-btns {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

/* Contact method */
.contact-btns .contact-btn {
    width: auto;
    min-width: 300px;
    max-width: 300px;
    height: auto;
    background: #131313;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 50px 25px;
    border: solid .5px #2B2C2F;
    border-radius: 100px;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    transition: inherit;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .contact-btns .contact-btn {
        width: 100%;
    }
}

/* Content */
.contact-btn .method-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.method-content .method-title {
    font-family: var(--font-secondary-medium);
    font-weight: normal;
    font-size: 16px;
    color: #D5DFEF;
    text-align: center;
}

.method-content .method-link {
    font-family: var(--font-secondary);
    font-weight: normal;
    font-size: 14px;
    color: #B6BECC;
    text-align: center;
}

@media only screen and (max-width: 550px) {
    .contact-btns .contact-btn {
        flex-direction: column;
    }
}