@font-face {
    font-family: "Biennale";
    src: url("../fonts/BiennaleRegular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Biennale";
    src: url("../fonts/BiennaleBold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Biennale";
    src: url("../fonts/Fontspring-DEMO-biennale-light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

.mt-40 {
    margin-top: 40px;
}

.mt-30 {
    margin-top: 40px;
}

body {
    font-family: "Biennale", sans-serif;
    padding: 0;
    margin: 0;
}

section {
    /*padding: 20px;*/
}

section.baner-cont-sect {
    background: linear-gradient(135deg, #a4d6e1, #a8d9a0);
    padding: 140px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.baner-con-obvol {
    max-width: 1140px;
    width: 100%;
}

section.what-do-sect {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

h1.baner-cont-h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 110%;
    margin: 32px 0;
}

.baner-cont-div {
    font-size: 22px;
    font-weight: 400;
    line-height: 140%;
    max-width: 555px;
}


.baner-cont-div>a {
    color: #000;
}

#form-block {
    max-width: 1140px;
    width: 100%;
    background: #F6F6F6;
    border-left: 4px solid #55C1E9;
    padding: 54px 52px;
}

#form-block .form-header {
    margin: 0 0 40px;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
}

#form-block label {
    margin: 24px 0 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: #000000;
    letter-spacing: 0%;
    display: block;
}

#form-block label.mt0 {
    margin-top: 0;
}

#form-block label.req {
    position: relative;
}

#form-block label.req::after {
    content: '*';
    display: inline-block;
    position: relative;
    top: -5px;
    right: -2px;
    font-size: 14px;
    color: red;
}

#form-block select {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='25'%20viewBox='0%200%2024%2025'%20fill='none'><path%20d='M7.41%209.09003L12%2013.67L16.59%209.09003L18%2010.5L12%2016.5L6%2010.5L7.41%209.09003Z'%20fill='black'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    background-color: #fff;
    color: #000;
    border: none;
    height: 45px;
}

#form-block input,
#form-block textarea {
    border-radius: 24px;
    padding: 16px;
    border: none;
    outline: none;
    color: #000;
    font: 400 16px / 1.5 'Biennale', sans-serif;
    background-color: var(--form_bg_color);
}


#form-block input::placeholder,
#form-block textarea::placeholder {
    opacity: 1;
    color: #818487;
}

#form-block .select-arrow {
    display: none;
}

#form-block .field-wrap label {
    margin-top: 0;
}

#form-block .form-submit-btn {
    cursor: pointer;
    background: #55C1E9;
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    padding: 5px 5px 5px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    font-size: 16px;
}

.form-vn-bl {
    max-width: 570px;
}

.contact-details-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


.locations {
    background: #fff;
    padding: 55px;
}

.location-div {
    max-width: 1140px;
    width: 100%;
}

.locations>h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 150%;
}

/* Main tabs */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tabs button {
    background: #DFDFDF;
    border: none;
    background: #dfdfdf;
    border: none;
    border-radius: 100px;
    padding: 5px 5px 5px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Biennale Regular';
}

.tabs button.active {
    background: #55C1E9;
    color: #000;
    font-weight: 700;
    border-color: #55C1E9;
}

/* Sub tabs */
.sub-tabs {
    display: flex;
    gap: 2px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.sub-tabs button {
    border: none;
    padding: 16px;
    font-size: 16px;
    cursor: pointer;
    color: #000;
    position: relative;
    background: #F6F6F6;
}

.sub-tabs button.active {}

.sub-tabs button.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 2px;
    background: #000000;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    border-top: solid 2px #000000;
}

@media (max-width: 769px) {
    .tab-content.active {
        display: block;
        border-top: none;
    }
}

.subtab-content {
    display: none;
}

.subtab-content.active {
    display: block;
}

/* Locations layout */
.region-row {
    display: flex;
    align-items: flex-start;
    padding: 10px;
}

.region-label {
    max-width: 150px;
    width: 100%;
    padding: 16px 0;
    font-weight: bold;
    font-size: 18px;
    color: #000;
}

.region-empty {
    width: 150px;
    /* margin: 18px 10px; */
}

.region-content {
    flex: 1;
}

.location-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 0;
    max-width: 790px;
}

.location-item:nth-child(even) {
    background: #fafafa;
}

.izbr {
    background-color: #F6F6F6;
}

.location-info {
    flex: 1;
    max-width: 300px;
    width: 100%;
}

.location-info .row{
    padding: 0;
}

.location-info :where(h1, h2, h3, h4, h5, h6) {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
    margin-top: 0;
}

.location-info p {
    font-size: 16px;
    color: #000;
    line-height: 150%;
    display: block;
    margin: 0;
}

.contact {
    max-width: 300px;
    width: 100%;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 150%;
}

.contact strong {
    font-size: 18px;
    font-weight: 700;
}

.toggle-map {
    font-family: 'Biennale Regular';
    background: #55C1E9;
    border: none;
    border-radius: 100px;
    padding: 5px 5px 5px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    font-size: 16px;
    font-weight: 700;
}

.toggle-map:hover {
    background: #0077c8;
    color: #fff;
}

.toggle-map svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.toggle-map.open svg {
    transform: rotate(180deg);
}

.map {
    margin-top: 15px;
    display: none;
    width: 100%;
    height: 280px;
    border: none;
}

section.location-section {
    background: #F6F6F6;
    margin-top: 80px;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.sep-individual {
    margin-block: 40px;
    border: 1px solid #DFDFDF;
}

.links-individual {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.individual-link {
    background-color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    color: #000;
    font-weight: 700;
    letter-spacing: -1px;
}

.individual-link__icon {
    max-width: 75px;
}

.individual-link__txt {
    font-size: 20px;
    line-height: 1.2;
}

.individual-link__more {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
}

.individual-link__more img {
    transition: transform 0.3s;
}

.individual-link:hover {
    color: #000;
}

.individual-link:hover .individual-link__more img {
    transform: translateX(3px);
}

.ttwo-btns-wrap {
    display: flex;
    gap: 8px;
}

body.page-template-contact-us-template #main {
    padding-inline: 0;
}

.page-template-contact-us-template #main .fusion-row {
    max-width: none;
}

.links-has-underline a {
    text-decoration: underline;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .region-row {
        flex-direction: column;
    }

    .region-label,
    .region-empty {
        width: 100%;
        /* padding: 10px 0; */
    }

    .region-empty {
        display: none;
    }

    .location-item {
        flex-direction: column;
        gap: 12px;
    }

    .contact {
        min-width: auto;
    }

    .baner-con-obvol {
        min-height: 250px;
        display: flex;
        align-items: center;
    }

    h1.baner-cont-h1 {
        margin-block: 20px;
    }

    section.what-do-sect {
        margin-top: 45px;
    }

    #form-block {
        padding: 30px;
    }

    .contact-details-block__grid {
        gap: 15px;
    }

    #form-block .form-header {
        margin-bottom: 20px;
    }

    section.location-section {
        margin-top: 45px;
        padding-top: 45px;
        width: 100%;
    }

    .locations {
        padding: 30px 20px;
    }

    .region-content {
        width: 100%;
    }

    section.baner-cont-sect {
        padding: 30px 30px;
    }
}

@media (max-width:580px) {

    .mt-40 {
        margin-top: 25px;
    }

    .ttwo-btns-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    #form-block {
        padding: 30px 20px;
    }

    .contact-details-block__grid {
        grid-template-columns: 1fr;
    }

    h1.baner-cont-h1 {
        font-size: 30px;
    }

    .baner-cont-div {
        font-size: 17px;
        max-width: 315px;
    }


}

@media screen and (max-width: 1180px) {}


@media screen and (max-width: 1020px) {}


@media screen and (max-width: 900px) {}

@media screen and (max-width: 920px) {}

@media screen and (max-width: 920px) {}

@media screen and (max-width: 880px) {}
