.ld {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 1399px) {
    .ld .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.ld .rel {
    position: relative;
}

.ld img,
.ld-modal img {
    width: 100%;
    height: auto;
}

.ld h2 {
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 900;
}

.ld h2 span {
    color: #3DB3E7;
}

.ld .button {
    border: 1px solid #073B74;
    border-radius: 30px;
    font-size: 16px;
    color: #073B74;
    padding: 16px 30px;
    text-transform: uppercase;
}

.ld .button:hover {
    background: #073B74;
    color: #ffffff;
    transition: all 0.2s ease;
    text-decoration: none;
}

.ld .button:focus {
    text-decoration: none;
}  


/* hero Section */
.ld .hero {
    width: 100%;
    height: 100vh;
    position: relative;
    color: #ffffff;
}

.ld .hero > div {
    position: relative;
    height: 100%;
}

.ld .hero .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: opacity 0.6s ease;
    opacity: 1;
    pointer-events: none; /* important */
}

.ld .hero.is-playing .overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    height: 280px;
}

.ld .hero video {
    object-fit: cover;
    min-height: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.ld.ld-fr .hero video {
    object-position: center 80%;
}

.ld .hero .wm {
    position: absolute;
    top: 40px;
    left: 0; right: 0;
    margin: 0 auto;
    width: 230px;
    z-index: 3;
}

.ld .hero .wm img {
    width: 230px;
}

.ld .hero .hero-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
    transition: opacity 0.6s ease;
    opacity: 1;
}

.ld .hero.is-playing .hero-content {
    opacity: 0;
}

.ld .hero .hero-content h1 {
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 900;
    line-height: 1em;
    color: #ffffff;
    margin: 0;
}

.ld .hero .hero-content h1 span {
    display: block;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 3px;
}

.ld .hero .hero-content-on {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 2;
    transition: opacity 0.6s ease;
    opacity: 0;
}

.ld .hero.is-playing .hero-content-on {
    opacity: 1;
}

.ld .hero .hero-content-on h1 {
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 900;
    line-height: 1em;
    color: #ffffff;
    margin: 0 30px 0 0;
    display: inline-block;
}

.ld .hero .hero-content-on button.icon-sound {
    position: relative;
    top: -15px;
    background: transparent url('../images/icon-sound-off.svg') no-repeat center center;
    width: 35px;
    height: 35px;
    border: none;
    text-indent: -9999px;
    display: inline-block;
    font-size: 0;
    padding-block: 0;
    padding-inline: 0;
}

.ld .hero .hero-content-on button.icon-sound.active {
    background: transparent url('../images/icon-sound.svg') no-repeat center center;
}

.ld .hero .hero-content-on button.pause {
    position: relative;
    top: -15px;
    background: transparent url('../images/icon-pause.svg') no-repeat center center;
    width: 35px;
    height: 35px;
    border: none;
    text-indent: -9999px;
    display: inline-block;
    font-size: 0;
    padding-block: 0;
    padding-inline: 0;
    margin-left: 10px;
    display: none;
}

.ld .hero .mobile-play {
    display: none;
    background: transparent url('../images/icon-play-main.svg') no-repeat center center;
    width: 48px;
    height: 48px;
    border: none;
    text-indent: -9999px;
    font-size: 0;
    margin-top: 10px;
    z-index: 2;
}

.ld .video-desktop {
    display: block;
}

.ld .video-mobile {
    display: none;
}

@media (max-width: 768px) {
    .ld .hero.is-playing .overlay {
        height: 180px;
    }

    .ld .hero .hero-content-on {
        bottom: 30px;
        right: 40px;
    }

    .ld .hero .hero-content-on h1 {
        display: none;
    }

    .ld .hero .hero-content-on button.pause {
        display: inline-block;
    }

    .ld .hero .mobile-play {
        display: block;
    }

    .ld .video-desktop {
        display: none;
    }

    .ld .video-mobile {
        display: block;
    }
}
/* end hero Section */


/* intro Section */
.ld .pin-spacer {
    background: #EAEAEC;
}

.ld .intro {
    background: #073B74;
    position: sticky;
    top: 0;
    z-index: 10;
}

.ld .intro .intro-content {
    background: #073B74;
    color: #ffffff;
    display: flex;
    padding: 80px 0;
}

.ld .intro .intro-content > div {
    flex: 1;
}

.ld .intro .intro-content h2 {
    color: #ffffff;
    margin: 0;
}

.ld .intro .intro-content strong {
    color: #3DB3E7;
}

@media (max-width: 992px) {
    .ld .intro .intro-content {
        flex-direction: column;
        padding: 60px 0;
        text-align: center;
    }

    .ld .intro .intro-content h2 {
        margin-bottom: 20px;
    }
}
/* end intro Section */


/* gallery Section */
.ld .gallery {
    position: relative;
    height: 70.25vh;
    overflow: hidden;
}

.ld .gallery-wrapper {
    height: 100%;
}

.ld .gallery .gallery-wrapper > div {
    display: flex;
    height: 70.25vh;
}

.ld .gallery .gallery-wrapper > div img {
    flex: 1;
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .ld .gallery,
    .ld .gallery .gallery-wrapper > div {
        height: 40vh;
    }
}

@media (max-width: 640px) {
    .ld .gallery,
    .ld .gallery .gallery-wrapper > div {
        height: 40vh;
    }
}
/* end gallery Section */


/* slider Section */
.ld .slider {
    position: relative;
    background: #EAEAEC;
    color: #073B74;
    padding: 80px 0;
    text-align: center;
}

.ld .slider h2 {
    font-size: clamp(40px, 8vw, 80px) !important;
    color: #073B74;
    margin: 0 0 60px 0;
    padding-left: 30px;
    padding-right: 30px;
}

/* same height */
.ld .slider-content .slick-track { display: flex !important; }
.ld .slider-content .slick-slide { height: inherit !important; }
.ld .slider-content .slick-slide > div { height: 100%; }

.ld .slider-content .item > div {
    background: #ffffff;
    border-radius: 30px;
    padding: 20px 60px;
    margin: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.ld .slider-content .item > div div {
    flex: 1;
}

.ld .slider-content .item > div div:first-child {
    text-align: left;
}

.ld .slider-content .item h3 {
    font-size: clamp(26px, 4vw, 40px);
    color: #073B74;
    margin-bottom: 20px;
}

.ld .slider-content .item p {
    margin-bottom: 20px;
}

.ld .slider-content .item img {
    max-width: 400px;
    margin: 0 auto;
}

.ld .slider-nav .slick-dots {
    margin: 40px 0 0 0;
    list-style: none;
    text-align: center;
    display: inline-block;
}

.ld .slider-nav .slick-dots li {
    margin: 0 10px;
    padding: 0;
    display: inline-block;
}

.ld .slider-nav .slick-dots li button {
    background: transparent;
    border: 1px solid #073B74 !important;
    width: 18px;
    height: 18px;
    padding: 0;
    text-indent: -9999px;
    font-size: 0;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    min-width: auto;
    transition: all 0.2s ease;
}

.ld .slider-nav .slick-dots li button:hover,
.ld .slider-nav .slick-dots li button:focus,
.ld .slider-nav .slick-dots li.slick-active button {
    background: #3DB3E7;
    border-color: #3DB3E7 !important;
}

@media (max-width: 1024px) {
    .ld .slider-content .item > div {
        padding: 20px 40px;
        margin: 0 10px;
    }
}

@media (max-width: 992px) {
    .ld .slider-content .item > div {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .ld .slider h2 {
        margin-bottom: 40px;
    }

    .ld .slider-content .item > div {
        flex-direction: column;
        gap: 0;
        padding: 10px 20px;
    }

    .ld .slider-content .item > div div:first-child {
        text-align: center;
    }

    .ld .slider-content .item img {
        max-width: 225px;
    }
}
/* end slider Section */


/* campaigns Section */
.ld .campaigns {
    position: relative;
    background: #ffffff;
    padding: 80px 0 100px 0;
}

.ld .campaigns h2 {
    color: #073B74;
    margin: 0 0 60px 0;
    width: 70%;
}

.ld .campaigns .button {
    position: absolute;
    top: 0;
    right: 10px;
}

.ld .campaigns .video-list {
    display: flex;
    gap: 30px;
}

.ld .campaigns .video-list > div {
    flex: 1;
}

.ld .campaigns .video-list > div a {
    position: relative;
    transition: all 0.2s ease;
    display: block;
}

.ld .campaigns .video-list > div a:hover {
    opacity: 0.9;
}

.ld .campaigns .video-list > div a span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0; right: 0;

    background-image: url('../images/icon-play.svg');
    width: 48px;
    height: 48px;
    margin: 0 auto;
    text-indent: -9999px;
}

@media (max-width: 1280px) {
    .ld .campaigns h2 {
        width: 62%;
    }
}

@media (max-width: 992px) {
    .ld .campaigns {
        text-align: center;
    }

    .ld .campaigns h2 {
        width: 100%;
    }

    .ld .campaigns .button {
        display: none;
    }

    .ld .campaigns .video-list {
        flex-wrap: wrap;
    }

    .ld .campaigns .video-list > div {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 640px) {
    .ld .campaigns .video-list {
        flex-direction: column;
    }

    .ld .campaigns .video-list > div {
        flex: 1;
    }
}
/* end campaigns Section */


/* modal */
.ld-modal {
    position: relative;
    background: #073B74;
    width: auto;
    max-width: 1440px;
    margin: 20px auto;
}

.ld-modal .mfp-close {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 100;
    font-family: inherit;
    font-size: 40px;
}

.ld-modal .mfp-close:active {
    top: 20px;
}

.ld-modal-content {
    display: flex;
    gap: 0;
}

.ld-modal-content > div:first-child {
    background: #3DB3E7;
    padding: 0 30px;
    flex: 0 0 35%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ld-modal-content > div:last-child {
    flex: 0 0 65%;
    padding: 60px;
    color: #ffffff;
}

.ld-modal-content > div:first-child .cta {
    margin-top: 20px;
    display: block;
}

.ld-modal-content h2 {
    color: #ffffff;
    margin: 0 0 20px 0;
}

.ld-modal-content .button {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.ld-modal-content .button:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #073B74;
}

.ld-modal-content .facts {
    color: #ffffff;
    margin: 40px 0 60px 0;
}

.ld-modal-content .facts > div {
    display: flex;
    gap: 0;
    padding: 30px 0;
    border-top: 1px solid #ffffff;
}

.ld-modal-content .facts > div:first-child {
    border-top: none;
}

.ld-modal-content .facts > div div:first-child {
    flex: 0 0 30%;
}  

.ld-modal-content .facts > div div:last-child {
    flex: 0 0 70%;
    padding-left: 30px;
    text-align: right;
}

.ld-modal-content .facts > div div:last-child strong {
    color: #3DB3E7;
}

.ld-modal-content .facts span {
    font-size: clamp(34px, 4vw, 60px);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.ld-modal-content .facts p {
    margin: 0;
}

.ld-modal-gallery {
    position: relative;
}

.ld-modal-gallery span {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: clamp(28px, 3vw, 46px);
    list-style: 1;
    font-weight: 900;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .ld-modal-content > div:last-child {
        padding: 40px;
    }

    .ld-modal-content .facts {
        margin: 40px 0 20px 0;
    }
}

@media (max-width: 640px) {
    .ld-modal .mfp-close {
        top: 10px;
        left: auto;
        right: 10px;
    }

    .ld-modal .mfp-close:active {
        top: 10px;
    }

    .ld-modal-content {
        flex-direction: column-reverse;
    }

    .ld-modal-content > div:first-child,
    .ld-modal-content > div:last-child {
        flex: 0 0 auto;
        width: 100%;
    }

    .ld-modal-content > div:first-child {
        padding: 20px 60px
    }

    .ld-modal-content > div:last-child {
        padding: 40px 30px;
    }

    .ld-modal-content > div:last-child .cta {
        text-align: center;
    }
}
/* end modal */


/* video modal */
.ld-video-modal {
    position: relative;
    background: transparent;
    width: auto;
    max-width: 1024px;
    margin: 20px auto;
}

.ld-video-modal .mfp-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 100;
    font-family: inherit;
    font-size: 40px;
}

.ld-video-modal .mfp-close:active {
    top: -40px;
}

.ld-video-modal video {
    width: 100%;
}

@media (max-width: 1280px) {
    .ld-video-modal .mfp-close {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .ld-video-modal .video-desktop {
        display: block;
    }

    .ld-video-modal .video-mobile {
        display: none;
    }
}

@media (max-width: 640px) {
    .ld-video-modal video {
        height: 100vw;
    }

    .ld-video-modal .video-desktop {
        display: none;
    }

    .ld-video-modal .video-mobile {
        display: block;
    }
}
/* end video modal */



@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ld .fade-in {
	opacity: 0;
	-webkit-animation: fadeIn ease-in 1;
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 0.8s;
	-moz-animation-duration: 0.8s;
	animation-duration: 0.8s;
}


/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;

  -webkit-transition: all .3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}