
.wrap {
    max-width: 100%;
    background: #EDF1F5;
    --color-bright-blue: #0080FF;
    --color-dark-blue: #002855;
}

.mx-auto {
    margin: 0 auto !important;
}

.vc {
    --gap: 24px;
    padding-top: 96px;
    padding-bottom: 46px;
}

.vc__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 40px;
}

.vc__all {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px;
    gap: 8px;
    background: #007AFF;
    border-radius: 40px;
    border: 1px solid #007AFF;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.015em;
    color: #FFFFFF;
    line-height: 1;
    transition: .2s;
    text-transform: initial;
}

.vc__all:hover {
    border-color: #0ebfe9;
    background-color: #0ebfe9;
}

.vc__all.active {
    background: #fff;
    color: #000;
    border: 1px solid #d4deeb;
}

.vc__all.active:hover {
    background-color: #d4deeb;
}

.vc__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #fff;
    color: #0b2342;
    font-size: 14px;
    font-weight: 500;

    line-height: 1.429;
    padding: 12px 35px 12px 20px;
    border: 1px solid #d4deeb;
    border-radius: 999px;
    cursor: pointer;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%230b2342' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px 8px;

    transition: all 0.2s ease;
}

.vc__select:hover,
.vc__select:focus {
    border-color: #8ba3c9;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 80, 255, 0.1);
}

.vc__select option {
    line-height: 1.4;
}

.filters select::-ms-expand {
    display: none;
}

.vc__sort {
    margin-left: auto;
}

.vc-page {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
}

.vc__results.is-loading {
    opacity: .6;
    pointer-events: none;
}

.vc__heading {
    margin-bottom: 40px;
}
.vc__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
}

.vc-item {
    background: #FFFFFF;
    box-shadow: 0px 38px 44px rgba(5, 31, 61, 0.13);
    border-radius: 8px;
    border: none;
    padding: 32px !important;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    transition: .2s;
    outline: 2px solid transparent;
}

.vc-item:hover {
    outline: 4px solid var(--color-bright-blue);
    box-shadow: 0px 38px 44px rgba(5, 31, 61, 0.13);
}

.vc-item__thumb {
    display: block;
    padding-top: 59%;
    position: relative;
    background: linear-gradient(228.86deg, #0080FF -12.31%, rgba(0, 128, 255, 0) 87.57%), linear-gradient(0deg, #002855, #002855), #0080FF;
    overflow: hidden;
    border-radius: 4px 4px 96px 0px;

}

.vc-item__thumb img {
    width: 100% !important;
    height: 100% !important;
    display: block;
    border-radius: 8px;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
}
.vc-item__logo {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 13px;
    left: 17px;
    pointer-events: none;
    box-shadow: 0px 32px 48px rgba(5, 31, 61, 0.16);
    border-radius: 50%;
}
.vc-item__thumb img.vc-item__img--contain {
    /* width: calc(100% - 64px)!important;
    height: calc(100% - 64px) !important;
    object-fit: contain!important;
    padding: 20px;
    top: 32px;
    left: 32px;
    background-color: #fff;
    box-shadow: 0px 38px 44px rgba(5, 31, 61, 0.13);
    border-radius: 8px!important; */
}

.vc-item__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-transform: uppercase;
    color: #fff;

}

.vc-item__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-basis: 100%;
}

.vc-item__category {
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-bright-blue);
}

.vc-item__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 5px;
    margin-top: auto;
}

.vc-item__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-dark-blue);
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
}

.vc-item__meta-icon {
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
}


.vc-item__meta-icon svg {
    display: block;
}

.vc-item__meta-val {
    flex-basis: 100%;
}

.vc-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
}

.vc-item__tag {
    display: inline-block;
    padding: 8px 14px;
    background: #EBF5FF;
    border-radius: 24px;
    color: var(--color-bright-blue);
    font-weight: 600;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0.03em;
    transition: .2s;
    cursor: default;
}

.vc-item__ext {
    border-bottom: 1px solid transparent;
    transition: .2s;
}

.vc-item__ext:hover {
    border-color: currentColor;
}

.vc-item__meta-link {
    color: var(--color-dark-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: .08px;
    display: none;
    position: relative;
    transition: .3s ease-in-out;
    padding-right: 20px;
    margin-right: auto;
}

.vc-item__meta-link:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -5px;
    top: -2px;
    transition: .2s ease-in-out;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3E%3Cg clip-path='url(%23clip0_623_2347)'%3E%3Cpath d='M8.59003 17.1916L13.17 12.6016L8.59003 8.01156L10 6.60156L16 12.6016L10 18.6016L8.59003 17.1916Z' fill='%23002855'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_623_2347'%3E%3Crect width='24' height='24' fill='white' transform='translate(0 0.601562)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.vc-item__meta-link:hover {
    color: var(--color-bright-blue);
}

.vc-item__meta-link:hover:after {
    right: -10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3E%3Cg clip-path='url(%23clip0_623_2347)'%3E%3Cpath d='M8.59003 17.1916L13.17 12.6016L8.59003 8.01156L10 6.60156L16 12.6016L10 18.6016L8.59003 17.1916Z' fill='%230080FF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_623_2347'%3E%3Crect width='24' height='24' fill='white' transform='translate(0 0.601562)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.vc-item__title {
    margin: 0;
}

.vc-item__title a {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-dark-blue);
}

.vc-item__excerpt {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 22px;
    color: var(--color-dark-blue);
}

.vc-item__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* margin-top: auto; */
}

.vc-single__button,
.vc-item__button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px 32px;
    gap: 8px;
    background: #007AFF;
    border-radius: 40px;
    border: 2px solid #007AFF;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.015em;
    color: #FFFFFF;
    line-height: 1.6;
    transition: .2s;
}

.vc-item__button_w {
    color: var(--color-dark-blue);
    border-color: var(--color-bright-blue);
    background-color: #fff;
}

.vc-single__button:hover,
.vc-item__button:hover,
.vc-item__button_w:hover {
    border-color: #1ac6d9;
    background-color: #1ac6d9;
    color: var(--color-dark-blue);
}


.vc__empty {
    background: #fff;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

.vc__pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 20px;
}


.vc-pager {
    display: flex;
    gap: 4px;
    width: 100%;
    margin-top: 60px;
}

.vc-page {
    padding: 10px 16px;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-dark-blue);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.005em;
    text-transform: initial;
    transition: .2s;
    border-radius: 8px;
}

.vc-page.num {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
}

.vc-page.num.is-active {
    background-color: #fff;
    color: var(--color-bright-blue);
}

.vc-page:hover {
    background-color: #fff;
}

.vc-page.prev:hover,
.vc-page.next:hover {
    background-color: transparent;
}

.vc-page[disabled],
.vc-page.prev:not([disabled]):hover,
.vc-page.next:not([disabled]):hover {
    opacity: 0.7;
}

.vc-page.prev {
    margin-right: auto;
}

.vc-page.next {
    margin-left: auto;
}

.vc-ellipsis {
    align-self: center;
    padding: 0 4px;
}

@media (max-width: 1024px) {
    .vc__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .vc__items {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}


.vc-single {
    padding-top: 32px;
    background-color: #F2F9FF;
    --single-col-gap: 190px;
    --single-col-width: 210px;
    --vc-padding: 64px;

}

.vc-single__back {}

.vc-single__back a {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    gap: 8px;
    line-height: 1.2;
    color: var(--color-dark-blue);
    font-weight: bold;
    transition: .2s;
    padding: 7px 0;

}

.vc-single__back svg {
    transition: .2s;
}

.vc-single__back a:hover {
    color: var(--color-bright-blue);
}

.vc-single__wrap {
    padding-top: var(--vc-padding);
    display: flex;
    gap: var(--single-col-gap);
}

.vc-single__left {
    flex: 1 1 100%;
}

.vc-single__right {
    flex: 0 0 var(--single-col-width);
    max-width: var(--single-col-width);
    position: relative;
    z-index: 3;
}

.vc-sticky {}

.vc-share {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.vc-share__title {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-dark-blue);
}

.vc-share__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.vc-share__list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-dark-blue);
    color: var(--color-dark-blue);
    transition: .2s;
}

.vc-share__list a:hover {
    background-color: var(--color-dark-blue);
    color: #fff;
}

.vc-single__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: var(--vc-padding);
}
.vc-single__type {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0080FF;

}
.vc-single__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.25;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    color: var(--color-dark-blue);
    margin: 0;
}

.vc-single__meta {
    font-style: italic;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-dark-blue);
}

.vc-single__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.vc-single__cat-name {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-dark-blue);
    border-radius: 60px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    transition: .2s;
}


.vc-single__thumb {}

.vc-whitebg {
    position: relative;
    z-index: 2;
    background: #fff;
}


.vc-single__thumb:before {
    height: 50%;
    top: 50%;

}

.vc-single__thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.vc-pb {
    padding-bottom: var(--vc-padding);
}
.vc-single__content {
    letter-spacing: 0.005em;
    color: #293037;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    height: 100%;
}
.vc-single__content-wrap {
    display: flex;
    gap: 80px;
    margin-top: 65px;
}
.vc-single__content-left {
    flex: 1 1 100%;
}
.vc-single__content-right {
    flex: 0 0 400px;
    max-width: 400px;
    padding-left: 40px;
    border-left: 1px solid #D9D9D9;
}
.vc-single__content-right .vc-item__buttons {
    gap: 16px;
}
/* Video embed styles */
.vc-single__video-bg {
    position: relative;
}
.vc-single__video-bg:before {
    content: '';
    width: 100%;
    height: 50%;
    background-color: #F2F9FF;
    position: absolute;
    top: 0;
    left: 0;
}
.vc-single__video {
    margin-bottom: 30px;
}

.vc-single__video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.vc-single__video-embed iframe,
.vc-single__video-embed embed,
.vc-single__video-embed object,
.vc-single__video-embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Video summary styles */
.vc-single__summary {
    
}

.vc-single__summary-title {
    /* font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: var(--color-dark-blue);
    margin-bottom: 20px; */
}

.vc-single__summary-list {
    list-style: none;
    padding: 0;
    margin: 40px 0!important;
}

.vc-single__summary-item {
    position: relative;
    font-size: 14px;
    line-height: 1;
    color: #293037;
    display: flex;
    gap: 16px;
}
.vc-single__summary-item span {
    align-self: center;
}


/* --------------------------
 * Last Video Shortcodes
 * -------------------------- */

/* Simple last-video shortcode (image only) */
.vc-last-video {
    display: block;
    width: 100%;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.vc-last-video__link {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 65%;
    height: 100%;
    background: linear-gradient(228.86deg, #0080FF -12.31%, rgba(0, 128, 255, 0) 87.57%), linear-gradient(0deg, #002855, #002855), #0080FF;
}

.vc-last-video__link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%!important;
    object-fit: cover;
}

.vc-last-video__logo {
    position: absolute;
    top: 32px;
    left: 44px;
    z-index: 2;
    box-shadow: 0px 32px 48px rgba(5, 31, 61, 0.16);
    border-radius: 50%;
}

.vc-last-video__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.vc-last-video__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 300px;
    background: #f0f0f0;
    color: #999;
    font-size: 16px;
    border-radius: 8px;
}

/* Detailed last-video-detail shortcode */
.vc-last-video-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.vc-last-video-detail__title {
    font-size: 32px!important;
    line-height: 1.1;
    color: var(--color-dark-blue);
    margin: 0;
    letter-spacing: -0.02em;
}

.vc-last-video-detail__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 700;
}

.vc-last-video-detail__title a:hover {
    color: var(--color-bright-blue);
}

.vc-last-video-detail__meta {

}

.vc-last-video-detail__date {

}

.vc-last-video-detail__tags {
    margin-top: 8px;
    margin-bottom: 0;
}

.vc-last-video-detail__tag {

}

.vc-last-video-detail__annotation {
    font-size: 14px;
    line-height: 1.6;
    color: #293037;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vc-last-video-detail__link {
    margin-top: auto;
}
.last-video {
    height: 100%;
}
.last-video-shortcode {
    flex-basis: 100%!important;
}
.last-video-shortcode .elementor-shortcode {
    height: 100%;
}
@media screen and (max-width: 767px) {
    .vc-last-video-detail__title {
        font-size: 20px;
    }
    
    .vc-last-video-detail__annotation {
        font-size: 14px;
    }
}
@media screen and (max-width: 1200px) {
    .vc {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 65px;
    }

    .vc-pager {
        margin-top: 40px;
    }

    .vc-single {
        --single-col-gap: 90px;
        --single-col-width: 210px;
        --vc-padding: 45px;
    }
    .vc-single__content-right {
        max-width: 340px;
        flex-basis: 340px;
    }
    .vc-single__content-wrap {
        gap: 40px;
    }
    .vc-last-video-detail__title {
        font-size: 26px !important;
    }
    .vc-last-video__link {
        padding-top: 78%;
    }
    .vc-last-video__logo {
        width: 60px;
        height: 60px;
        left: 24px;
        top: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .vc__select {
        width: 100%;
        max-width: 210px;
    }
}
@media screen and (min-width: 768px) {
    .last-video-shortcode .elementor-shortcode {
        min-height: 320px;
    }
}
@media screen and (max-width: 1023px) {
    .vc {
        padding-top: 45px;
    }

    .vc-single {
        --single-col-gap: 24px;
        --single-col-width: 100%;
    }

    .vc-single__wrap {
        flex-direction: column;
        padding-bottom: 25px;
    }

    .vc-single__right {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .vc-whitebg:before {
        margin-left: 0;
    }

    .vc__select {
        flex: 1;
    }

    .vc__category,
    .vc__source {
        min-width: 40%;
    }
    .vc-single__content-wrap {
        flex-direction: column;        
    }
    .vc-single__content-right {
        flex: auto;
        max-width: initial;
        padding: 0;
        border: none;
    }
    .vc-single__content-right .vc-item__buttons {
        flex-direction: row;
    }
    .vc-single__right {
        display: none;
    }
    .vc-last-video__link {
        padding-top: 110%;
    }
    .vc-item__thumb {
        border-radius: 4px 4px 64px 0px;
    }
    
}

@media screen and (max-width: 767px) {
    .vc-single {
        --vc-padding: 35px;
    }

    .vc-item {
        padding: 20px !important;
    }

    .vc-item__meta {
        margin-bottom: 20px;
    }

    .vc-pager {
        margin-top: 30px;
    }

    .vc-page {
        font-size: 14px;
        gap: 10px;
    }
    .vc-single__head {
        padding-bottom: 20px;
    }
    .vc-single__content-wrap {
        margin-top: 45px;
    }
    .vc-single__content-right .vc-item__buttons {
        flex-direction: column;
        /* max-width: 400px; */
    }
    .vc-last-video {
        border-radius: 8px 8px 0 0;
    }
    .vc-last-video__link {
        padding: 0;
    }
    .vc-last-video__link img {
        position: static;
        height: auto!important;
    }
    .vc-last-video {
        position: static;
    }

}


.vc-inform {
    --section-padding: 120px;
}

@media screen and (max-width: 1200px) {
    .vc-inform {
        --section-padding: 100px;
    }
}

@media screen and (max-width: 1023px) {
    .vc-inform {
        --section-padding: 64px;
    }
}

@media screen and (max-width: 767px) {
    .vc-inform {
        --section-padding: 56px;
    }
}

.vc-inform_pt {
    padding-top: 0;
}

.vc-inform_pb {
    padding-bottom: var(--section-padding);
}

.vc-inform__wrap {
    background-color: var(--color-dark-blue);
    color: #fff;
    padding: 120px 100px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .vc-inform__wrap {
        padding: 100px 90px;
    }
}

@media screen and (max-width: 1023px) {
    .vc-inform_pt {
        padding-top: var(--section-padding);
    }

    .vc-inform__wrap {
        padding: 64px 56px;
    }
}

@media screen and (max-width: 767px) {
    .vc-inform__wrap {
        padding: 62px 24px;
    }
}

.vc-inform__content {
    max-width: 500px;
}

@media screen and (max-width: 767px) {
    .vc-inform__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: initial;
    }
}

.vc-inform__small {
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1AC6D9;
    margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
    .vc-inform__small {
        text-align: center;
        line-height: 1.25;
    }
}

@media screen and (max-width: 767px) {
    .vc-inform__small span {
        display: block;
    }
}

.vc-inform__title {
    color: #fff;
    line-height: 1.2;
    font-size: 44px;
    letter-spacing: -0.02em;
    margin: 0;
}

@media screen and (max-width: 1023px) {
    .vc-inform__title {
        font-size: 36px;
        line-height: 1.25;
    }
}

@media screen and (max-width: 767px) {
    .vc-inform__title {
        text-align: center;
        max-width: 400px;
    }
}

.vc-inform__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 56px;
}

@media screen and (max-width: 1023px) {
    .vc-inform__buttons {
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .vc-inform__buttons {
        flex-direction: column;
        margin-top: 40px;
    }
}

.vc-inform__buttons .case-button {
    font-size: 18px;
    padding: 10px 30px;
    white-space: nowrap;
}

.vc-inform__buttons .case-button_outline {
    color: #fff;
    background-color: transparent;
}

.vc-inform__buttons .case-button_outline:hover {
    background-color: #1AC6D9;
    color: var(--color-dark-blue);
}

.vc-inform__scene {
    opacity: .1;
    position: absolute;
    top: -73px;
    right: -15px;
    width: 490px;
}

@media screen and (max-width: 1200px) {
    .vc-inform__scene {
        right: -90px;
    }
}

@media screen and (max-width: 1023px) {
    .vc-inform__scene {
        right: -130px;
        width: 390px;
    }
}

@media screen and (max-width: 767px) {
    .vc-inform__scene {
        display: none;
    }
}

.vc-inform__scene svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
