.header-slider-block{
    position: relative;
    width: 100vw;
    height: calc(100vh - 20px);
    width: 100vw;
    margin-left: calc((-100vw + 1128px) / 2 );
    box-sizing: border-box;
    background: #fff;
    display: flex;
    z-index: 0;
    padding: 20px 20px 0;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.header-slider-block:after{
    content: "";
    display: block;
    background: url("../../../assets/images/right-overlay.svg");
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: -30vw;
    width: 26vw;
    height: 37.6vw;
    z-index: 0;
}

.hero {
    --border-radius: 12px;
    --transition-duration: 1000ms;
    position: relative;
    width: 100%;
    height: calc(100vh - 40px);
}

.hero__fullsize {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    filter: drop-shadow(0 5px 5px #0007);
    transition:
        top var(--transition-duration),
        left var(--transition-duration),
        width var(--transition-duration),
        height var(--transition-duration),
        border-radius var(--transition-duration),
        transform var(--transition-duration),
        opacity var(--transition-duration);
}

.hero__content--hidden {
    visibility: hidden;
    transition: none;
    transform: none;
    opacity: 1;
    z-index: 0;
}

.hero__content--bottom {
    opacity: 0;
    transform: scale(1.5);
    z-index: 1;
}

.hero__content--top {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    z-index: 2;
}

/* curtain */

.hero__content--show-text::before {
    transform: translateX(0);
    transition: transform 300ms;
}

.hero__content--grow::before {
    transform: translateX(-100%);
    transition: none;
}

/* title */
.hero__content--show-text .content__title {
    transform: translateY(0);
    transition: transform 300ms;
}

.hero__content--show-text .content__title .word {
    clip-path: inset(0);
    transition: clip-path 300ms;
}

.hero__content--grow .content__title {
    visibility: hidden;
    transform: translateY(48px);
    transition: none;
}

.hero__content--grow .content__title .word {
    clip-path: inset(0 0 48px);
    transition: none;
}

/* desc */
.hero__content--show-text .content__link{

    transform: translateY(0px);
    transition: transform 300ms;
}
.hero__content--show-text .content__desc {
    transform: translateY(0px);
    transition: transform 300ms;
}

.hero__content--show-text .content__desc .word {
    clip-path: inset(0);
    transition: clip-path 300ms;
}

.hero__content--grow .content__desc {
    visibility: hidden;
    transform: translateY(18px);
    transition: none;
}
.hero__content--grow .content__link{
    visibility: hidden;
    transform: translateY(18px);
    transition: none;
}
.hero__content--grow .content__desc .word {
    clip-path: inset(0 0 18px);
    transition: none;
}

.hero__swiper {
    position: absolute;
    width: 70%;
    aspect-ratio: 2.5 / 1;
    right: 0px;
    bottom: 50px;
    padding: 15px 0 65px;
    z-index: 1;
    user-select: none;
}

.swiper {
    --swiper-navigation-size: 20px;
    visibility: hidden;
}

.swiper.swiper-initialized {
    visibility: visible;
}

.swiper-slide-prev,
.swiper-slide-active {
    opacity: 0;
}

.swiper-slide {
    display: flex;
}

.header-slider-block {

}

.content--slide {
    position: relative;
    display: flex;
    overflow: hidden;
    z-index: 0;
    width: 100%;
}

.content__text {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #fff;
    justify-content: flex-end;
    padding: 20px;

}
.content__text:after{
    content: "";
    display: block;
    background: linear-gradient(180deg, #254D59 0%, rgba(52, 81, 90, 0.556291) 44.37%, rgba(70, 86, 91, 0) 100%);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    transform: rotate(-180deg);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.hero__swiper .content__text:hover::after,
.content--hero .content__text:after{
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.hero__swiper .swiper-slide-active + .swiper-slide  .content__text{
    cursor: pointer;
}
.hero__swiper .content__text:before{
    content: "";
    display: block;
    width: 100%;
    height: 0%;
    background: #BC1E21;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;

}
.hero__swiper .content__text:hover:before{
    height: 100%;
    opacity: 0.62;
}
.video-accordion{
    visibility: hidden;
    transform: translateY(18px);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;

}
.hero__content--top .video-accordion {
    visibility: visible;
    transform: translateY(0px);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition-delay: 1s;
}
.hero__content--top .video-accordion .button-play{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 84px;
    height: 84px;
    line-height: normal;
    border: 1px solid #fff;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    color: #fff;
    box-sizing: border-box;

}
.hero__content--top .video-accordion .button-play:hover{
    border: 42px solid #BC1E21;
}
.hero__content--top .video-accordion i,
.hero__content--top .video-accordion svg{
    font-size: 24px;
}
.content__desc {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    padding: 0 20px;
}
.content__link{
    color: #fff;
    display: none;
    margin-top: 15px;
}
.hero__fullsize .content__link{
    display: block;
}
.content--slide .content__title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: auto 0 0;
    padding:0 20px 10px;
}



.content--hero {
    padding: 100px 50px 0;
    position: absolute;
    border-radius: 0;
    box-sizing: border-box;
}



.content--hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, hsl(49deg 70% 5% / 67%), transparent);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: -1;
}

.hero__fullsize .title-only .content__title {
    font-weight: 800;
    font-size: 79.9018px;
    line-height: 78px;
    display: flex;
    align-items: flex-end;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: 'Noto Sans', sans-serif;
}

.hero__fullsize .title-subtitle .content__title {
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: 'Raleway', sans-serif;
    padding-left: 45px;
    margin-bottom: 10px;
}
.hero__fullsize .title-subtitle .content__desc{
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 5.55px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-left: 45px;
}
.hero__fullsize .title-subtitle .content__link{
    padding-left: 45px;
}
.hero__fullsize .title-subtitle{
    border-left: 2.5px solid #fff;
    margin-left: 45px;
}
.content--hero .content__text {
    width: 40%;
    position: absolute;
    bottom: 10vh;
    flex-direction: row;
    justify-content: flex-start;
}

.content__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.swiper-button-next {
    right: 5vw !important;
    left:initial;
    width: 40px;
    height: 40px;
    color: #fff;
    bottom: 0;
    top: initial;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.swiper-button-prev{
    left:initial;
    right: calc(40px + 5vw);
    width: 40px;
    height: 40px;
    color: #fff;
    bottom: 0;
    top: initial;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover{
    color:#BC1E21;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.swiper-slide{
    transform: scale(1);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.swiper-slide.swiper-slide-next ~ .swiper-slide{
    transform: scale(0.9);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.swiper-slide .content--slide .title-only,
.swiper-slide .content--slide .title-subtitle{
    border-left: 2.5px solid #BC1E21;
}
.swiper-slide .content--slide .title-only .content__title{
    font-family: 'Noto Sans', sans-serif;
    font-size: 28px;
    line-height: 30px;
    padding: 0 20px;
}
/* Announcements */
.home-header-ring{
    display: flex;
    position: absolute;
    bottom: 0px;
    left: 20px;
    background-color: #BC1E21;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 2;
    outline: none;
    margin-right: 0;
    margin-bottom: 0;
    border: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.home-header-ring .icon{
    display: block;
    width: 100%;
    line-height: 70px;
    height: 70px;
    text-align: center;
    color: #fff;
}

.home-header-ring .count{
    position: absolute;
    background: #fff;
    width: 20px;
    height: 20px;
    bottom: 10px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    color: #000;
}
.home-header-ring:hover {
    background-color: #000;
}
.home-header-ring a{
    margin: auto;
    text-decoration: none;
}
.home-header-ring svg,
.home-header-ring i{
    line-height: 80px;
    font-size: 15px;
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}


.home-header-ring:hover #customModalBtn svg,
.home-header-ring:hover #customModalBtn i{
    display: inline-block;
    color: #fff;
    line-height: 80px;
    -webkit-animation: ring 4s .7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s .7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s .2s ease-in-out infinite;
    transform-origin: 50% 4px;
}
@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotate(0);
    }
    2% {
        -webkit-transform: rotate(1deg);
    }
    4% {
        -webkit-transform: rotate(-5deg);
    }
    6% {
        -webkit-transform: rotate(6deg);
    }
    8% {
        -webkit-transform: rotate(-4deg);
    }
    10% {
        -webkit-transform: rotate(2deg);
    }
    12% {
        -webkit-transform: rotate(-1deg);
    }
    14% {
        -webkit-transform: rotate(1deg);
    }
    40% {
        -webkit-transform: rotate(1deg);
    }
    42% {
        -webkit-transform: rotate(-5deg);
    }
    44% {
        -webkit-transform: rotate(6deg);
    }
    46% {
        -webkit-transform: rotate(-4deg);
    }
    48% {
        -webkit-transform: rotate(2deg);
    }
    50% {
        -webkit-transform: rotate(-1deg);
    }
    52% {
        -webkit-transform: rotate(1deg);
    }
    86% {
        -webkit-transform: rotate(1deg);
    }
    88% {
        -webkit-transform: rotate(-5deg);
    }
    90% {
        -webkit-transform: rotate(6deg);
    }
    92% {
        -webkit-transform: rotate(-4deg);
    }
    94% {
        -webkit-transform: rotate(2deg);
    }
    96% {
        -webkit-transform: rotate(-1deg);
    }
    98% {
        -webkit-transform: rotate(1deg);
    }
    100% {
        -webkit-transform: rotate(0);
    }
}
@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(0);
    }
    2% {
        -moz-transform: rotate(1deg);
    }
    4% {
        -moz-transform: rotate(-5deg);
    }
    6% {
        -moz-transform: rotate(6deg);
    }
    8% {
        -moz-transform: rotate(-4deg);
    }
    10% {
        -moz-transform: rotate(2deg);
    }
    12% {
        -moz-transform: rotate(-1deg);
    }
    14% {
        -moz-transform: rotate(1deg);
    }
    40% {
        -moz-transform: rotate(1deg);
    }
    42% {
        -moz-transform: rotate(-5deg);
    }
    44% {
        -moz-transform: rotate(6deg);
    }
    46% {
        -moz-transform: rotate(-4deg);
    }
    48% {
        -moz-transform: rotate(2deg);
    }
    50% {
        -moz-transform: rotate(-1deg);
    }
    52% {
        -moz-transform: rotate(1deg);
    }
    86% {
        -moz-transform: rotate(1deg);
    }
    88% {
        -moz-transform: rotate(-5deg);
    }
    90% {
        -moz-transform: rotate(6deg);
    }
    92% {
        -moz-transform: rotate(-4deg);
    }
    94% {
        -moz-transform: rotate(2deg);
    }
    96% {
        -moz-transform: rotate(-1deg);
    }
    98% {
        -moz-transform: rotate(1deg);
    }
    100% {
        -moz-transform: rotate(0);
    }
}
@keyframes ring {
    0% {
        transform: rotate(0);
    }
    2% {
        transform: rotate(1deg);
    }
    4% {
        transform: rotate(-5deg);
    }
    6% {
        transform: rotate(6deg);
    }
    8% {
        transform: rotate(-4deg);
    }
    10% {
        transform: rotate(2deg);
    }
    12% {
        transform: rotate(-1deg);
    }
    14% {
        transform: rotate(1deg);
    }
    40% {
        transform: rotate(1deg);
    }
    42% {
        transform: rotate(-5deg);
    }
    44% {
        transform: rotate(6deg);
    }
    46% {
        transform: rotate(-4deg);
    }
    48% {
        transform: rotate(2deg);
    }
    50% {
        transform: rotate(-1deg);
    }
    52% {
        transform: rotate(1deg);
    }
    86% {
        transform: rotate(1deg);
    }
    88% {
        transform: rotate(-5deg);
    }
    90% {
        transform: rotate(6deg);
    }
    92% {
        transform: rotate(-4deg);
    }
    94% {
        transform: rotate(2deg);
    }
    96% {
        transform: rotate(-1deg);
    }
    98% {
        transform: rotate(1deg);
    }
    100% {
        transform: rotate(0);
    }
}

#customModal.closed{
    display: none!important
}
#customModal{
    display: block;
    position: absolute;
    bottom: 50px;
    left: 20px;
    z-index: 1;
}

#customModal>div{
    width: 320px;
    margin: auto;
}
#customModal .slick-prev{
    margin-right: 5px;
    width: 25px;
    height: 25px;
    text-align: center;
    float: left;
    color: #FFF;
    font-size: 22px;
    border: none;
    z-index: 1;
}
#customModal .slick-next{
    margin-right: 5px;
    width: 25px;
    height: 25px;
    text-align: center;
    float: left;
    color: #FFF;
    font-size: 22px;
    border: none;
    z-index: 1;
}
#customModal .post_pad>a{
    text-decoration: none;
}
#customModal .post_pad{
    padding-top: 23px;
    min-height: 200px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 45px;
    background: #fff;
    box-sizing: border-box;
}
#customModal .close{
    position: absolute;
    height: 65px;
    width: 65px;
    left: 0;
    top: 0;
    text-align: center;
    line-height: 65px;
    color: #fff;
    z-index: 2;
    cursor: pointer;
    background:#BC1E21;

    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
#customModal .close:hover{
    background-color: #000;
}
#customModal .close svg,
#customModal .close i{
    font-size: 18px;
    position: relative;
    top:0;
    left: 0;
}
#customModal .post_pad .title{
    font-size: 2.3rem;
    line-height: 2.5rem;
    color: #2F3338;
    font-weight: 600;
    display: block;
    margin-bottom: 25px;
}
#customModal .post_pad .snippet{
    font-size: 12px;
    margin-bottom: 30px;
    color: #292E2F;
    display: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    font-family: 'PT Serif', serif;
}
#customModal .post_pad .snippet:hover{
    color: #000;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
#customModal .post_pad .read-more-white{
    position: absolute;
    bottom: 24px;
    font-weight: bold;
    font-size: 15px;
    color: #000;
}
#customModal .home_announcement_panel_list .slick-prev{
    position: absolute;
    right: 89px;
    bottom: 50px;
    width: 23px;
    height: 21px;
    margin: 0;
    line-height: 60px;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    cursor: pointer;
}
#customModal .home_announcement_panel_list .slick-next{
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 23px;
    height: 21px;
    margin: 0;
    line-height: 60px;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    cursor: pointer;
}
#customModal .home_announcement_panel_list .slick-prev i,
#customModal .home_announcement_panel_list .slick-next i,
#customModal .home_announcement_panel_list .slick-prev svg,
#customModal .home_announcement_panel_list .slick-next svg{
    color: #6B629C;
    font-size: 16px;
}
#customModal .home_announcement_panel_list  .slick-next:hover,
#customModal .home_announcement_panel_list  .slick-prev:hover{
    opacity: 0.25;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
#customModal .home_announcement_panel_list  .slick-prev i,
#customModal .home_announcement_panel_list .slick-next i{
    color: #6B629C;
    font-size: 16px;
}
.pagingInfo{
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #E34A44;
    font-size: 1.2rem;
    z-index: 9;
    line-height: 2.2rem;
}
.swiper-button-next::after{
    font-family: "fontello";
    font-weight: 400;
    content: '\e80b';
}
.swiper-button-prev::after{
    font-family: "fontello";
    font-weight: 400;
    content: '\e800';
}
.swiper-pagination{
    margin-left: -6vw;
}
.swiper-pagination-bullet{
    width: 27px;
    height: 6px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    opacity: 0.45;
    background: #fff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.swiper-pagination-bullet-active{
    width: 156px;
    background: #fff;
    opacity: 1;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.header-slider-block a.scrolltosection{
    position: absolute;
    z-index: 99;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFFFFF;
    left: 120px;
    text-align: center;
    bottom: -23px;
    flex-direction: column;
}
.header-slider-block a.scrolltosection:after{
    content: "";
    display: block;
    width: 3px;
    height: 51px;
    background-color: #BC1E21;
    margin-top: 20px;
    margin-left: -30px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;

}
.header-slider-block a.scrolltosection:hover:after{
    margin-top: 10px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}


/* Arabic */


.lang-ar .header-slider-block{
    margin-left: 0;
    margin-right: calc((-100vw + 1128px) / 2 );
}
.lang-ar .hero__swiper{
    left:0;
    right: auto;
}

.lang-ar .home-header-ring{
    left: auto;
    right: 20px;
}
.lang-ar  #customModal{
    left: auto;
    right: 20px;
}

.lang-ar .header-slider-block a.scrolltosection{
    left: auto;
    right: 120px;
}

.lang-ar .swiper-button-next{

    left: calc(40px + 5vw);
    right: auto !important;
}
.lang-ar .swiper-button-prev{
    left: 5vw !important;
    right: auto !important;
}
.lang-ar .swiper-button-next::after {
    content: "\f178";
}

.lang-ar .swiper-button-prev::after {
    content: "\f177";
}
@media only screen and (max-width: 1250px) {
    .header-slider-block{
        margin-left: -2vw;
        flex-direction: column;
        height: auto;
        padding: 2vw 2vw 0;
    }
    .hero{
        width: 96vw;
    }
}
@media only screen and (max-width: 1024px) {
    .header-slider-block{
        margin-left: -2vw;
        flex-direction: column;
        height: auto;
        padding: 2vw 2vw 0;
    }

    #customModal .post_pad{
        min-height: 220px;
    }
    #customModal .home_announcement_panel_list .slick-next,
    #customModal .home_announcement_panel_list .slick-prev{
        bottom: 0;
    }
    #customModal {
        display: block;
        position: relative;
        bottom: 0;
        right: 0;
        z-index: 1;
        box-shadow: 0px 0px 9.66865px rgba(0, 0, 0, 0.15);
    }
    #customModal > div {
        width: 100%;
    }
    #customModal .slick-slide img {
        display: block;
        width: 100%;
        height: auto;
    }
    .home-header-ring{
        width: 58px;
        height: 58px;
        bottom: 0;
        left: 2vw;
    }
    .home-header-ring .icon{
        height: 58px;
        line-height: 58px;
    }
    .header-slider-block{
        margin-bottom: 0;
    }
    .header-slider-block::after,
    .header-slider-block a.scrolltosection{
        display: none;
    }
    #customModal .home_announcement_panel_list .slick-next,
    #customModal .home_announcement_panel_list .slick-prev {
        bottom: 30px;
    }
    #customModal{
        left: 0;
    }
    .swiper-wrapper{
        visibility: hidden;
    }
    .content--hero {
        padding: 100px 2vw 0;
    }
    .content--hero .content__text{
        left: 0;
        width: 100%;
        flex-direction: column;
        box-sizing: border-box;
    }
    .hero__fullsize .title-subtitle {
        border-left: 3px solid #BC1E21;
        margin-left: 0;
    }
    .hero__fullsize .title-only .content__title{
        font-size: 30.2964px;
        line-height: 30px;
    }
    .video-accordion{
        margin: 0 auto 5vh;
    }
    .hero__fullsize .title-subtitle .content__title{
        font-size: 22px;
        line-height: 26px;
    }
    .hero__fullsize .title-subtitle .content__desc{
        font-size: 14px;
        line-height: 16px;
    }
    .swiper-pagination-bullet{
        height: 3px;
        width: 15px;
    }
    .swiper-pagination-bullet-active{
        width: 80px;
    }

    .hero__swiper{
        width: 100%;
        bottom: 15px;
    }
    .content--hero .content__text{
        bottom: calc(58px + 2vh);
    }
    .swiper-pagination{
        margin-left: calc(2vw + 68px);
        text-align: left;
    }
    .swiper-button-next,
    .swiper-button-prev{
        bottom: -3px;
    }
    .header-slider-block a.scrolltosection::after{
        margin-left: 0;
    }
    .hero__swiper{
        height: 30px;
        padding: 0;

    }
    .hero{
        height: calc(100vh - 4vw);
    }


}
@media only screen and (max-width: 550px) {
    #customModal{
        position: relative;
        opacity: 1;
        width: 100%;
        right: 0;
        bottom: 0;
    }
    #customModal>div{
        width: 100%;
    }

    #customModal .slick-slide img{
        height: auto;
    }
}