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

.contact .entry {
    position: relative;
    width: 100%;
    height: auto;
    border-bottom: 16px solid var(--primary);
}

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

.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 .content .title:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: -1px;
    width: 170px;
    height: 16px;
    background-color: var(--primary);
}

.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: flex-start;
    align-items: flex-end;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.contact .entry-wrap .content .title {
    font-weight: 800;
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: var(--color-0);
    text-align: left;
    font-family: var(--font-bold);
    margin-bottom: 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 #e7e3e3;
    width: 100%;
    position: relative;
}

.contact-list:nth-child(2) {
    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: #2b3338;
}

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

.contact-item .content .heading {
    font-size: 16px;
    font-family: Gilroy-Medium;
    line-height: 1;
    margin-bottom: 5px;
    color: #2b3338;
    text-decoration: none;
}

.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 #e7e3e3;
    border-radius: 15px;
    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: #2b3338;
}

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

.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;
    border: 1px solid #afafaf;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    outline: none;
    appearance: none;
    color: #2b3338;
    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);
}

/*
.contact .info {
    width: 100%;
    height: auto;
    background: #F6F5F3;
}

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

.contact .info .content {
    display: flex;
    flex-direction: column;
    width: 60%;
    height: auto;
    padding: 80px 140px;
}

.contact .info .content .title {
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: var(--color-9);
    text-align: left;
    font-family: var(--font-medium);
    margin-top: 0;
}

.contact .info .content .sub-title {
    font-weight: 800;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: var(--primary);
    text-align: left;
    font-family: var(--font-regular);
}

.contact .info .content .adress-list {
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.contact .info .content .adress-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: fit-content;
    height: auto;
    margin-bottom: 40px;
}

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

.contact .info .content .adress-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: auto;
}

.contact .info .content .adress-item .icon svg {
    color: var(--primary);
}

.contact .info .content .wrap {
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: auto;
    margin-left: 10px;
}

.contact .info .content .wrap .heading {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: var(--color-9);
    text-align: left;
    font-family: var(--font-regular);
}

.contact .info .content .wrap .text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-7);
    font-family: var(--font-light);
    margin-top: 10px;
}

.contact .info .map {
    width: 40%;
    height: auto;
}

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

.contact .form-layout {
    width: 100%;
    height: auto;
    position: relative;
}

.contact .form-layout .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #343248;
    z-index: -1;
}

.contact .form-layout .container {
    width: 100%;
    height: auto;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 96px;
}

.contact .form-layout .text-wrap {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    margin-bottom: 50px;
}

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

.contact .form-layout .text-wrap .paragraph {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--color-0);
    font-family: var(--font-light);
    margin-top: 0;
    text-align: center;
    margin-bottom: 20px;
}

.contact .form-wrap {
    width: 100%;
    height: auto;
    background: white;
    border-bottom: 5px solid var(--primary);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.contact .form {
    display: flex;
    flex-direction: column;
    width: 65%;
    height: auto;
    padding: 96px 136px 96px 112px;
    background: #F6F5F3;
}

.contact .form-select-btn {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 16px;
    border-bottom: solid 1px #4F5254;
    margin-bottom: 40px;
    cursor: pointer;
}

.contact .form-select-btn .text {
    transition: all 0.2s ease;
    font-family: var(--font-light);
    font-weight: 600;
    color: #75757C;
    font-size: 16px;
    line-height: 1;
    background: transparent;
}

.contact .form-select-btn .icon {
    width: fit-content;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .form-select-btn .icon svg {
    color: var(--primary);
}

.contact .form-input {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.contact .form-input input {
    width: 100%;
    border-radius: 0;
    border: none;
    padding: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    outline: none;
    appearance: none;
    transition: all 0.2s ease;
    font-family: var(--font-light);
    border-bottom: solid 1px #4F5254;
    font-weight: 600;
    color: var(--color-9);
    font-size: 16px;
    line-height: 1;
    background: transparent;
}

.contact .form-input textarea {
    width: 100%;
    border-radius: 0;
    border: none;
    padding: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    outline: none;
    appearance: none;
    color: #2b3338;
    transition: all 0.2s ease;
    font-family: var(--font-light);
    border-bottom: solid 1px #4F5254;
    font-weight: 600;
    color: var(--color-9);
    font-size: 16px;
    min-height: 80px;
    line-height: 1;
    background: transparent;
}

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

.contact .form .btn {
    background: var(--primary);
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #ffffff;
    padding: 18px 50px;
    text-decoration: none;
    border: 1px solid var(--primary);
    width: fit-content;
    transition: all 0.2s ease;
    font-family: var(--font-regular);
    letter-spacing: 0.4px;
    cursor: pointer;
}

.contact .form .btn:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: var(--shadow-md);
}

.contact .content {
    width: 35%;
    height: auto;
    padding: 100px 48px;
}

.contact .content .link {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    text-decoration: none;
    max-width: 280px;
    margin-right: auto;
    margin-bottom: 40px;
}

.contact .content .link .text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--color-9);
    font-family: var(--font-regular);
    letter-spacing: 0.4px;
}

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

.contact .content .link .icon svg {
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact .content .link:hover .icon svg {
    color: var(--color-9);
}

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

.contact .content .wrap p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-9);
    font-family: var(--font-light);
}

.contact .content .wrap p a {
    color: var(--primary);
}

.contact .content .wrap p a:hover {
    opacity: .8;
}

.contact .content .wrap .link-text {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-9);
    transition: all 0.3s ease;
    font-family: var(--font-light);
}

.contact .content .wrap .link-text:hover {
    color: var(--primary);
}

*/

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

    .contact-row {
   flex-direction: column;
    }
    .contact-content {
    width: 100%;
    position: relative;
   }
   .contact-form{
    width: 100%;
    margin-top: 60px;
   }
   .contact .entry-header .menu-list{
    margin-left: 0px;
   }

    .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%;
    }

}

@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%;
    }

}

@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%;
    }

}

@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%;
    }
}