/*=========================
	IMAGE BANNER BLOCK
=========================*/

.block-image-banner	{
    position: relative;
}
.block-image-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: var(--color-p);*/
    /*opacity: 0.6;*/
    z-index: 1;
    pointer-events: none;
}
.block-image-banner > * {
  position: relative;
  z-index: 2;
}

.block-image-banner.height__standard {
    min-height: 700px;
    height: 100%;
}
.block-image-banner.height__full {
    height: calc(100vh - 95px);
    min-height: calc(100vh - 95px);
}

.block-image-banner .image-banner__breadcrumbs {
    margin-bottom: 70px;
}
.block-image-banner .image-banner__breadcrumbs nav.breadcrumbs {
    display: flex;
    column-gap: 6px;
    color: hsl(0deg -20% 60%);
}
.block-image-banner .image-banner__breadcrumbs nav.breadcrumbs a:hover{
    text-decoration: underline;
}

.block-image-banner .image-banner__content {
    column-gap: 115px;
    justify-content: space-between;
}
.block-image-banner .image-banner__content .title-wrapper{
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.block-image-banner .image-banner__content .title-wrapper.svg_small{
    column-gap: 5px;    
}
.block-image-banner .image-banner__content .title-wrapper.svg_small svg{
    height: 18px;
    width: auto;
    top: -2px;
    position: relative;
}

.block-image-banner .image-banner__content .title {
  text-align: left;
}
.block-image-banner .image-banner__contentLeft {
    width: 715px;
    max-width: 100%;      
}
.block-image-banner .image-banner__contentRight {
    width: 440px;
    max-width: 100%;
}

.block-image-banner .image-banner__socials {
    column-gap: 40px;
}
.block-image-banner .image-banner__socials a {
    width: 32px;
}
.block-image-banner .image-banner__socials img{
    transition: 0.3s ease all;
}
.block-image-banner .image-banner__socials img:hover {
    transition: 0.3s ease all;
    scale: 1.05;
}

.title-wrapper-animate {
    overflow: hidden;
}
.title-wrapper-animate .title {
    display: inline-block;
    transition: transform 0.5s, opacity 0.5s;
    will-change: transform, opacity;
}

@media (max-width: 992px) {
    .block-image-banner.height__standard {
        height: auto;
    }
    .block-image-banner .image-banner__contentRight{
        width: 100%;
    }
    .block-image-banner .image-banner__content{
        flex-direction: column;
    }
    .block-image-banner .image-banner__socials {
        margin-bottom: 40px;
    }
}