@font-face {
    font-family: 'Isomer Regular';
    src: url('../fonts/Isomer-Regular.woff2') format('woff2'),
        url('../fonts/Isomer-SemiCondensedBold.woff2') format('woff2'),
        url('../fonts/Isomer-SemiCondensedSemiBold.woff') format('woff'),
        url('../fonts/Isomer-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Isomer SemiCondensed SemiBold';
    src: url('../fonts/Isomer-SemiCondensedSemiBold.woff2') format('woff2'),
        url('../fonts/Isomer-SemiCondensedSemiBold.woff') format('woff');
}

html,
body {
    font-family: Isomer Regular, sans-serif;
    line-height: 1.5;
}

.contact-container {
    margin: 0  auto;
}
.conatct-head{
    padding: 3rem 5.625rem;
    margin: 0 auto 40px;
    background-color: #eff1f2;
}
.contact-container h2 {
    text-transform: uppercase;
    line-height: 1.2;
    color: #002b45;
    font-family: Isomer Semi Condensed Bold, sans-serif;
    font-weight: 600;
    font-style: normal;
    width: auto;
    margin-bottom: 1rem;
}

.contact-container .citys{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-container .city {
    margin-bottom: 40px;
   font-size: 18px;
}

.contact-container .city p {
    color: #002b45;
    font-family: Isomer Semi Condensed Bold, sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    height: 68px;
}

.contact-container .city img {
    width: 600px;
    height: 400px;
}

.citys{
    width: 1300px;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .contact-container {
        width: 100%;
    }

    .contact-container h1 {
        margin-bottom: 20px;
    }

    .contact-container .city p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .conatct-head{
        padding: 1rem;
    }

    .contact-container .citys{
        flex-direction: column;
        width: 100%;
        padding: 0 5px;
    }

    .contact-container .city img{
        width: 100%;
        height: auto;
    }
}