section.section-1 {
    padding: 0 !important;
}
/* Front-page hero toggle only (index.php, scoped to .section-1) — block-banner_video_image.php has its own copy in banner-video.css */
.section-1 #toggleMute {
    position: absolute;
    bottom: 3.5vw;
    right: 4.5vw;
    z-index: 9;
}
@media (max-width: 600px) {
    .section-1 .top-text-box h2 br {
        display: none;
    }
}

.front_info {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    align-items: flex-end;
    -webkit-align-items: flex-end;
    align-content: flex-end;
    -webkit-align-content: flex-end;
    padding-top: 12.2em;
    padding-bottom: 4.35em;
    box-sizing: border-box;
}
.front_info h2 {
    font-weight: 400;
}
.front_info h4 {
    text-transform: unset;
}
@media (max-width: 767px) {
    .front_info {
        padding-top: 6em;
        padding-bottom: 1em;
    }
}

.top-text-box {
    max-width: 47%;
    padding-bottom: 2.4em;
}
@media only screen and (max-width: 1100px) {
    .top-text-box {
        max-width: 90%;
    }
}

.video_block {
    position: relative;
}

.toogle_icon {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
}
.toogle_icon:before {
    content: "";
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 8px;
    width: 8px;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border-radius: 50%;
}
.toogle_icon.active .border_circle {
    opacity: 0;
}
@media only screen and (min-width: 1200px) {
    .toogle_icon:hover + div {
        display: block;
    }
}

.toogle_text {
    display: none;
    color: #fff;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 3px 13px;
    position: absolute;
    top: calc( 100% + 5px );
    width: max-content;
    left: -2.5vw;
}

.border_circle:after, .border_circle:before {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 40px;
    width: 40px;
    content: "";
    -webkit-transform: translate(-50%,-50%) scale(0);
    transform: translate(-50%,-50%) scale(0);
    -webkit-animation: 1.6s linear infinite;
    animation: 1.6s linear infinite;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-animation-name: borders;
    animation-name: borders;
}
.border_circle:before {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}
.border_circle {
    transition: opacity .3s cubic-bezier(.25,.46,.45,.94);
    opacity:1;
}

.stand {
    justify-content: space-between;
    width: 100%;
    align-items: end;
}

.block-with-img {
    width: 100%;
}
.block-with-img .imb-box {
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}
.block-with-img .img-item {
    margin-right: 43px;
}
.block-with-img .img-item:last-child {
    margin-right: 0;
}
.block-with-img img {
    max-height: 32px;
    vertical-align: bottom;
    width: auto;
}
@media (max-width: 767px) {
    .block-with-img .img-item {
        margin-right: 21px;
    }
    .block-with-img img {
        height: auto;
    }
}
