.contact {
    width: 100%;
    height: auto;
}

.contact-wrap {
    width: 100%;
    height: auto;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    margin-top: 100px;
}

.contact .row {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.contact-wrap .heading-wrap {
    width: 100%;
    height: auto;
    max-width: 520px;
    margin-right: auto;
    margin-bottom: 60px;
}


.contact-wrap .heading {
    font-size: 48px;
    font-weight: bolder;
    color: var(--color-9);
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
    line-height: 1.2;
    font-family: var(--font-semibold);
}

.contact-wrap .paragraph {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-9);
    font-family: var(--font-light);
    text-align: left;
    margin: 0;
}

.contact-form {
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.contact-form-input {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

.contact-form-input label {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: var(--font-regular);
    font-weight: 600;
    color: var(--font-9);
}

.contact-form-input input {
    width: 100%;
    min-height: 48px;
    border-radius: var(--border-radius);
    border: 1px solid #c4cad4;
    padding: 12px;
    padding-left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    outline: none;
    appearance: none;
    color: var(--color-7);
    transition: all 0.2s ease;
    font-family: var(--font-regular);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

.contact-form-input input:hover,
.contact-form-input input:focus {
    border-color: var(--primary);
}

.contact-form-input textarea:hover,
.contact-form-input textarea:focus {
    border-color: var(--primary);
}

.contact-form-input textarea {
    width: 100% !important;
    min-height: 140px;
    border-radius: var(--border-radius);
    border: 1px solid #c4cad4;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    outline: none;
    appearance: none;
    color: var(--color-7);
    transition: all 0.2s ease;
    font-family: var(--font-regular);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

.contact-form-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: var(--border-radius);
    border: none;
    outline: none;
    font-weight: 600;
    font-family: var(--font-regular);
    font-size: 16px;
    line-height: 1;
    text-align: center;
    transition: all 0.2s ease;
    user-select: none;
    cursor: pointer;
}

.contact-form-btn:hover {
    opacity: .8;
}

.contact-content {
    width: 55%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-left: 60px;
}

.contact-content .map {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-content .map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: none;
}

.contact-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.contact-item {
    width: fit-content;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.contact-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: auto;
    margin-right: 6px;
}

.contact-item .text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #454f5f;
    font-family: var(--font-light);
    text-align: left;
    margin: 0;
    transition: all 0.3s ease;
}

.contact-item .icon svg {
    color: #454f5f;
    transition: all 0.3s ease;
}

.contact-item:hover .text {
    color: var(--primary);
}

.contact-item:hover .icon svg {
    color: var(--primary);
}

.contact-list .social-list {
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: auto;
    align-items: center;
    justify-content: center;
}

.contact-list .social-item {
    color: var(--color-9);
    transition: all 0.3s ease;
    display: flex;
    width: fit-content;
    height: auto;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

@media only screen and (max-width:600px) {
    .contact-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-wrap .heading {
        font-size: 40px;
    }

    .contact .row {
        flex-direction: column;
    }

    .contact-form {
        width: 100%;
    }

    .contact-content {
        width: 100%;
        margin-left: 0;
        margin-top: 60px;
    }

    .contact-content .map {
        height: 250px;
    }

    .contact-form-input textarea {
        min-height: 100px;
    }

}

@media (min-width:481px) and (max-width:767px) {
    .contact-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-wrap .heading {
        font-size: 40px;
    }

    .contact .row {
        flex-direction: column;
    }

    .contact-form {
        width: 100%;
    }

    .contact-content {
        width: 100%;
        margin-left: 0;
        margin-top: 60px;
    }

    .contact-content .map {
        height: 250px;
    }

    .contact-form-input textarea {
        min-height: 100px;
    }
}

@media (min-width:768px) and (max-width:1024px) {
    .contact-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-wrap .heading {
        font-size: 40px;
    }
}

@media (min-width:768px) and (max-width:1024px) and (orientation:landscape) {
    .contact-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-wrap .heading {
        font-size: 40px;
    }
}