@media screen and (min-width: 1280px) {
    .header__row._top {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        border-bottom: 0;
        background-color: #fff;
        z-index: 200;
    }
    .sticky .header__row._top {
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
    }
    .header__row._top .header__btn-container {
        display: flex;
    }
    .header__row._bottom {
        display: none;
    }
}
@media screen and (max-width: 1279px) {
    .header__row._top .header__btn-container {
        display: none;
    }
}
.banner {
    height: auto;
    min-height: auto;
    max-height: none;
    padding-bottom: 0;
}
.home-body {
    color: #00588d;
    background-image: linear-gradient(
        225deg,
        rgba(150, 210, 255, 0.2),
        rgba(255, 255, 255, 0.2)
    );
    overflow: hidden;
}
.home-1 {
    display: flex;
    align-items: flex-start;
    padding: 88px 0 108px;
    gap: 38px;
}
.home-1__left {
    position: relative;
    flex-shrink: 0;
    width: 270px;
}
.home-1__tagline {
    display: block;
    width: 100%;
}
.home-1__textarea {
    padding-top: 48px;
    margin-bottom: 68px;
}
.home-1__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 14px;
}
.home-1__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px 24px;
    color: inherit;
    text-align: center;
    overflow: hidden;
}
.home-1__card:hover {
    color: inherit;
}
.home-1__card:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: calc(100% - 22px);
    background-image: linear-gradient(135deg, transparent, #fff);
}
.home-1__front {
    position: relative;
    top: 0;
    display: block;
    transition: 0.3s ease top, 0.3s ease opacity;
}
a:hover .home-1__front,
a:focus .home-1__front,
a:focus-within .home-1__front {
    top: -100px;
    opacity: 0;
    pointer-events: none;
}
.home-1__back {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: 0.3s ease top, 0.3s ease opacity;
    pointer-events: none;
}
a:hover .home-1__back,
a:focus .home-1__back,
a:focus-within .home-1__back {
    top: 0;
    opacity: 1;
    pointer-events: auto;
}
.home-1__card-numb {
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid #00588d;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
}
.home-1__card-logo {
    display: block;
    width: 100%;
    height: 20px;
    margin: 58px auto 28px;
}
.home-1__card-desc {
    display: block;
    width: 100%;
    margin-bottom: 58px;
}
.home-1__card-arrow {
    position: relative;
    display: block;
    width: 80px;
    margin-top: auto;
    overflow: hidden;
}
.home-1__card-arrow:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 17%;
}
.home-1__card-arrow img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s ease left, 0.3s ease opacity;
}
.home-1__card-arrow img:nth-child(2) {
    left: calc(-100% - 24px);
    opacity: 0;
}
a:hover .home-1__card-arrow img:nth-child(1),
a:focus .home-1__card-arrow img:nth-child(1),
a:focus-within .home-1__card-arrow img:nth-child(1) {
    left: calc(100% + 24px);
    opacity: 0;
}
a:hover .home-1__card-arrow img:nth-child(2),
a:focus .home-1__card-arrow img:nth-child(2),
a:focus-within .home-1__card-arrow img:nth-child(2) {
    left: 0;
    opacity: 1;
}
.home-1__card-img {
    display: block;
    width: 40%;
    margin: 0 auto;
}
.home-1__card-img + .home-1__card-logo {
    margin: 16px auto 0;
}
.home-2 {
    display: flex;
    flex-direction: column;
    gap: 88px;
    padding-bottom: 108px;
}
.home-2__item {
    display: flex;
    align-items: center;
    gap: 24px 68px;
}
.home-2__item._reverse {
    flex-direction: row-reverse;
}
.home-2__img-holder {
    position: relative;
    flex-shrink: 0;
    width: 55%;
}
.home-2__img {
    display: block;
    width: 100%;
}
.home-2__img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
}
.home-2__desc {
    position: relative;
    flex-grow: 1;
    flex-shrink: 1;
}
.home-2__desc:before {
    content: "";
    position: absolute;
    top: -38px;
    left: -42px;
    display: block;
    width: 38px;
    height: 38px;
    background: url(/images/home/icon-mark.png) center / contain no-repeat;
}
.home-2__desc .title-44 {
    margin-bottom: 14px;
    font-weight: 300;
}
.home-2__desc p {
    max-width: 320px;
}
.home-2__desc p:not(:last-child) {
    margin-bottom: 1em;
}
.home-pattern {
    position: absolute;
    z-index: -1;
    user-select: none;
}
.home-pattern__img {
    position: absolute;
    width: 120px;
    max-width: none;
    animation: 22s linear fsRotate infinite;
}
@keyframes fsRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.home-1__pt-1 {
    top: calc(100% + 24px);
    left: -40px;
}
.home-1__pt-1-1 {
    width: 70px;
    top: 20px;
    left: -20px;
}
.home-1__pt-2 {
    top: calc(100% + 108px);
    left: 140px;
}
.home-1__pt-2-2 {
    width: 50px;
    top: 20px;
    left: 70px;
}
.home-1__pt-3 {
    left: 100%;
}
.home-1__right {
    position: relative;
}
.home-1__pt-3-1 {
    width: 70px;
}
.home-1__pt-3-2 {
    width: 80px;
    top: 14px;
    left: 20px;
}
.home-1__pt-3-3 {
    width: 38px;
    top: 90px;
    left: -10px;
}
.home-2__pt-1 {
    top: 90%;
    left: 80%;
}
.home-2__pt-1-2 {
    top: 40px;
    left: 50px;
    width: 70px;
}
.home-2__pt-2 {
    top: calc(100% + 90px);
    left: calc(100% + 44px);
}
.home-2__pt-2-1 {
    width: 70px;
    left: 20px;
}
.home-2__pt-2-2 {
    width: 50px;
    top: 30px;
}
.home-2__pt-3 {
    left: 5%;
    bottom: 160px;
}
.home-2__pt-4 {
    top: calc(100% + 38px);
    left: -100px;
}
.home-2__pt-4-1 {
    width: 54px;
    top: 0;
    left: 16px;
}
.home-2__pt-4-2 {
    width: 80px;
}
.sec-content.sec-content--10 .disclaimer-holder {
    margin-top: 0;
}
.youtube-popup {
    background-color: rgba(0, 88, 141, 0.5);
}
@media screen and (max-width: 1279px) {
    .home-1__left {
        width: 200px;
    }
    .home-1__textarea {
        padding-top: 22px;
    }
}
@media screen and (max-width: 991px) {
    .home-1 {
        flex-direction: column;
        padding-top: 58px;
        padding-bottom: 88px;
    }
    .home-1__textarea {
        padding-top: 0;
    }
    .home-1__pt-1 {
        top: 0;
        left: calc(100% + 108px);
    }
    .home-1__pt-2 {
        top: 50%;
        left: calc(100% + 258px);
    }
}
@media screen and (max-width: 767px) {
    .home-1__cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .home-1__card {
        width: calc(50% - 7px);
    }
    .home-2 {
        padding-bottom: 88px;
    }
    .home-2__item {
        flex-direction: column;
        text-align: center;
    }
    .home-2__img-holder {
        width: 100%;
    }
    .home-2__item._reverse {
        flex-direction: column;
    }
    .home-2__desc {
        width: 100%;
    }
    .home-2__desc p {
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (max-width: 479px) {
    .home-1__left {
        width: 160px;
    }
    .home-1__card {
        width: 100%;
    }
    .home-1__textarea {
        margin-bottom: 38px;
    }
    .home-2__desc:before {
        top: -28px;
        left: 0;
        width: 28px;
        height: 28px;
    }
}
