/* BANNER */
.widget-banner{
    position: relative;
    overflow: hidden;
    padding: 36px 0 42px;
}
.widget-banner .widget-content{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.widget-banner .widget-banner-picture{
    display: flex;
    max-width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
}
.widget-banner .widget-banner-picture img{
    object-fit: contain;
    object-position: top;
}
.widget-banner .widget-banner-text{
    max-width: calc(50% - 30px);
    flex: 0 0 calc(50% - 30px);
    margin-top: 7px;
}
.widget-banner .widget-banner-title{
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
    color: #000000;
    text-transform: uppercase;
    max-width: 500px;
}
.widget-banner .widget-banner-description{
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #565656;
    margin-top: 32px;
}
.widget-banner .widget-banner-title b,
.widget-banner .widget-banner-description b{
    font-weight: 700;
}
.widget-banner .widget-banner-description p{
    margin: 0 0 13px;
}
.widget-banner .widget-banner-buttons-wrap{
    margin-top: 61px;
}
.widget-banner .widget-banner-link{
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    padding: 20px 42px;
    background-color: #0C44A0;
    border: 1px solid #0C44A0;
    border-radius: 38px;
    text-decoration: none;

    transition: background-color .2s ease-out, color .2s ease-out;
}
.widget-banner .widget-banner-link:hover,
.widget-banner .widget-banner-link:focus{
    background-color: #ffffff;
    color: #0C44A0;
}
.widget-banner .widget-banner-video-wrap{
    position: relative;
    margin-top: 89px;
}
.widget-banner .widget-banner-video{
    position: relative;
    border-radius: 2.5px;
    overflow: hidden;
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.widget-banner .widget-banner-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}
.widget-banner .widget-banner-video video::-webkit-media-controls {
    opacity: 0 !important;
    pointer-events: none !important;

    transition: opacity .2s ease-out;
}
.widget-banner .widget-banner-video video:hover::-webkit-media-controls {
    opacity: 1 !important;
    pointer-events: all !important;
}
.widget-banner .widget-banner-icon-play{
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;

    transition: transform .3s cubic-bezier(0, 0, 0.2, 1), opacity .2s ease-out;
}
.widget-banner .widget-banner-icon-play svg{
    height: auto;
}
.widget-banner .widget-banner-video.play .widget-banner-icon-play{
    opacity: 0;
}
.widget-banner .widget-banner-video:hover .widget-banner-icon-play,
.widget-banner .widget-banner-video:focus .widget-banner-icon-play{
    transform: translate(-50%, -50%) scale(1.14);
}
.widget-banner .widget-banner-icon{
    display: flex;
    position: absolute;
    pointer-events: none;
}
.widget-banner .widget-banner-video-wrap .widget-banner-icon:nth-child(1){
    bottom: 0;
    left: 0;
    transform: translate(-31px, 27px);
    z-index: 1;
}
.widget-banner .widget-banner-video-wrap .widget-banner-icon:nth-child(2){
    right: 0;
    top: 0;
    transform: translate(58px, 66px);
}
.widget-banner .widget-footer{
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 55px;
}
.widget-banner .widget-footer .widget-link-place{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    border-radius: 28px;
    padding: 18px 39px;
    background-color: #0C44A0;
    border: 1px solid #0C44A0;
    text-decoration: none;
    text-transform: uppercase;

    transition: background-color .2s ease-out, color .2s ease-out;
}
.widget-banner .widget-footer .widget-link-place:hover,
.widget-banner .widget-footer .widget-link-place:focus{
    background-color: #ffffff;
    color: #0C44A0;
}
.widget-banner .widget-footer .widget-link-ref{
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #10449E;
    text-decoration: none;
    text-align: left;
}
.widget-banner .widget-footer .widget-link-place + .widget-link-ref{
    margin-top: 37px;
}
.widget-banner .widget-footer .widget-link-ref .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    border: 1px solid #0C44A0;

    transition: background-color .2s ease-out;
}
.widget-banner .widget-footer .widget-link-ref:hover .icon,
.widget-banner .widget-footer .widget-link-ref:focus .icon{
    background-color: #0C44A0;
}
.widget-banner .widget-footer .widget-link-ref .icon svg path{
    transition: stroke .2s ease-out;
}
.widget-banner .widget-footer .widget-link-ref:hover .icon svg path,
.widget-banner .widget-footer .widget-link-ref:focus .icon svg path{
    stroke: #ffffff;
}
@media all and (max-width: 1200px) {
    .widget-banner .widget-banner-text{
        max-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
    .widget-banner .widget-banner-title{
        max-width: none;
        font-size: 20px;
    }
    .widget-banner .widget-banner-description br{
        display: none;
    }
}
@media all and (max-width: 1000px) {
    .widget-banner {
        padding: 6px 0 4px;
    }
    .widget-banner .widget-banner-picture{
        display: none;
    }
    .widget-banner .widget-banner-text {
        max-width: 100%;
        flex: 1 0 100%;
    }
    .widget-banner .widget-banner-title{
        font-size: 24px;
    }
    .widget-banner .widget-banner-title br{
        display: none;
    }
    .widget-banner .widget-banner-description{
        line-height: 139%;
        margin-top: 20px;
    }
    .widget-banner .widget-banner-buttons-wrap{
        display: none;
    }
    .widget-banner .widget-banner-video-wrap {
        margin-top: 38px;
    }
    .widget-banner .widget-banner-icon-play{
        width: 77px;
        height: 77px;
    }
    .widget-banner .widget-banner-icon{
        display: none;
    }
    .widget-banner .widget-footer{
        display: flex;
    }
}
@media all and (max-width: 600px) {
    .widget-banner .widget-banner-description{
        font-size: 18px;
    }
    .widget-banner .widget-banner-icon-play {
        width: 54px;
        height: 54px;
    }
}

/* PLACE */
.widget-place{
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 12vw, 163px) 0 clamp(60px, 12vw, 166px);
    background: #F9F9F9;
}
.widget-place .widget-place-picture{
    max-width: 626px;
    height: clamp(320px, 48vw, 626px);
}
.widget-place .widget-place-picture img{
    object-fit: cover;
    height: 100%;
}
.widget-place .widget-place-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    height: calc(100% + 17px);
    padding: 0 0 0 17px;
}
.widget-place .widget-place-title{
    color: #828181;
    font-size: clamp(28px, 5vw, 50px);
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
    text-transform: uppercase;
    margin: -18px 0 0;
}
.widget-place .widget-place-description{
    color: #000;
    font-size: clamp(16px, 3vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 23px 0 0;
    max-width: 550px;
}
.widget-place .widget-place-description p{
    margin: 0 0 13px;
}
.widget-place .widget-place-button{
    display: flex;
    align-items: center;
    color: #000;
    font-size: clamp(25px, 4vw, 41px);
    font-style: normal;
    font-weight: 500;
    line-height: 139.9%;
    text-decoration: none;
}
.widget-place .widget-place-button span{
    border-radius: 50%;
    border: 1px solid #dc2824;
    width: 59px;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 29px;

    transition: background-color .3s ease-out;
}
.widget-place .widget-place-button svg path{
    transition: fill .3s ease-out;
}
.widget-place .widget-place-button:hover span{
    background-color: #dc2824;
}
.widget-place .widget-place-button:hover svg path{
    fill: #fff;
}
@media all and (max-width: 1200px) {
    .widget-place .widget-place-text{
        padding: 0 0 0 20px;
    }
    .widget-place .widget-place-picture{
        padding: 0 20px 0 0;
    }
}
@media all and (max-width: 1000px) {
}
@media all and (max-width: 800px) {
    .widget-place .widget-place-title{
        margin: 0;
    }
    .widget-place .widget-place-picture{
        max-width: none;
        width: 100%;
        padding: 0;
        overflow: hidden;
    }
    .widget-place .widget-place-picture img{
        width: 100%;
    }
    .widget-place .widget-place-text{
        padding: 0;
        height: 100%;
        margin: 36px 0 0;
        justify-content: flex-start;
    }
    .widget-place .widget-place-button{
        margin: 20px 0 0;
    }
    .widget-place .widget-place-button span{
        margin: 0 0 0 16px;
    }
}


/* MAP */
.widget-map-container-wrap{
    position: relative;
    overflow: hidden;
    padding: clamp(50px, 12vw, 60px) 0 0
}
.widget-map-container-wrap .widget-map-text{
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 134%;
    font-weight: 400;
    color: #000000;
}
/* end MAP */