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

.contact .entry {
    position: relative;
    width: 100%;
    height: auto;
}

.contact .entry-header {
    width: 100%;
    height: auto;
    background: var(--primary);
    padding-top: 15px;
    padding-bottom: 15px;
}

.contact .entry-header .menu-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 80px;
}

.contact .entry-header .menu-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: white;
    font-family: var(--font-regular);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact .entry-header a.menu-item:hover {
    text-decoration: underline;
}

.contact .entry-wrap {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.contact .entry-wrap .media {
    width: 100%;
    height: 100%;
    background: #32313d;
}

.contact .entry-wrap .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    appearance: none;
    opacity: 0.4;
}

.contact .entry-wrap .content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.contact .entry-wrap .content .title {
    font-weight: 800;
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: var(--color-0);
    text-align: center;
    font-family: var(--font-bold);
    margin-bottom: 0;
    margin-top: 0;
}

.contact-row {
    width: 100%;
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: flex-start;
    column-gap: 80px;
    margin-top: 80px;
    margin-bottom: 60px;
}

.contact-content {
    width: 50%;
    position: relative;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2b2b2b;
    width: 100%;
    position: relative;
}

.contact-list:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.contact-item {
    display: flex;
    align-items: center;
    width: 100%;
    column-gap: 15px;
    position: relative;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.contact-item .content {
    display: flex;
    flex-direction: column;
    width: auto;
}

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

.contact-item .content .heading {
    font-size: 16px;
    font-family: Gilroy-Medium;
    line-height: 1;
    margin-bottom: 5px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact-item:hover .content a.heading,
.contact-item:focus .content a.heading {
    color: var(--primary);
}

.contact-item .content .info {
    font-size: 14px;
    color: #8f8f8f;
    line-height: 1.6;
}

.contact-map {
    width: 95%;
    height: 230px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 15px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.contact-form {
    width: 50%;
    padding: 30px;
    border: 1px solid #2b2b2b;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.contact-form-input label {
    font-size: 15px;
    margin-bottom: 5px;
    font-family: Gilroy-Medium;
    font-weight: 900;
    color: white;
}

.contact-form-input input {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #2b2b2b;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    outline: none;
    appearance: none;
    color: #ffffff;
    transition: all 0.2s ease;
    font-family: Gilroy-Medium;
    font-weight: 100;
    font-size: 14px;
    line-height: 1;
    background: transparent;
}

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

.contact-form-input input:focus {
    border-color: var(--primary);
    outline: 3px solid var(--primary-solid);
}

.contact-form-input textarea {
    width: 100% !important;
    min-height: 150px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #2b2b2b;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    outline: none;
    appearance: none;
    color: #fff;
    transition: all 0.2s ease;
    font-family: Gilroy-Medium;
    font-weight: 100;
    font-size: 14px;
    line-height: 1;
}

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

.contact-form-input textarea:focus {
    border-color: var(--primary);
    outline: 3px solid var(--primary-solid);
}

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

.contact-form-btn:hover {
    background: var(--primary-hover);
}

.contact-form-btn:focus {
    outline: 3px solid var(--primary-solid);
}


@media only screen and (max-width:600px) {
    .contact .info .row {
        flex-direction: column;
    }

    .contact .info .content {
        width: 100%;
        padding: 100px 48px;
    }

    .contact .info .map {
        width: 100%;
        height: 300px;
    }

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

    .contact .form {
        width: 100%;
        padding: 80px 50px;
    }

    .contact .content {
        width: 100%;
    }

    .contact-row {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-content {
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }
    
    .contact .entry-header .menu-list {
        padding-left: 20px;
        margin-left: 0;
    }
    
    .contact .entry-wrap {
        height: 280px;
    }

}

@media (min-width:481px) and (max-width:767px) {

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

    .contact .info .content {
        width: 100%;
        padding: 100px 48px;
    }

    .contact .info .map {
        width: 100%;
        height: 300px;
    }

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

    .contact .form {
        width: 100%;
        padding: 80px 50px;
    }

    .contact .content {
        width: 100%;
    }

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

    .contact .form {
        width: 100%;
        padding: 80px 50px;
    }

    .contact .content {
        width: 100%;
    }

    .contact-row {
        flex-direction: column;
         padding-left: 20px;
        padding-right: 20px;
    }

    .contact-content {
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .contact .entry-wrap .content .title {
        font-size: 40px;
    }

}

@media (min-width:768px) and (max-width:1024px) {

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

    .contact .info .content {
        width: 100%;
        padding: 100px 48px;
    }

    .contact .info .map {
        width: 100%;
        height: 300px;
    }

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

    .contact .form {
        width: 100%;
        padding: 80px 50px;
    }

    .contact .content {
        width: 100%;
    }

    .contact .entry-wrap {
        height: 280px;
    }

      .contact .entry-wrap .content .title {
        font-size: 40px;
    }

}

@media (min-width:768px) and (max-width:1024px) and (orientation:landscape) {

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

    .contact .info .content {
        width: 100%;
        padding: 100px 48px;
    }

    .contact .info .map {
        width: 100%;
        height: 300px;
    }

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

    .contact .form {
        width: 100%;
        padding: 80px 50px;
    }

    .contact .content {
        width: 100%;
    }
}