:root {
    --blue: #0F328C;
    --white: #FFF;
    --orange: #FF7442;
    --lighter-orange: #FF9C66;
    --lighter-blue: #2A54C0;
    --even-lighter-blue: #98CFFF;
    --navy: #001752;
    --grey: #F3F5F9;
}


.ott-landing {
    background: var(--white);
}


a:hover {
    cursor: pointer;
}

.button-dark:hover {
    background: transparent;
    color: #0F328C;
}

.button span {
    display: inline;
}

.button span:nth-of-type(2) {
    display: none;
}

.max-width {
    max-width: 1360px;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
    .max-width {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (min-width: 768px) {
    .button span {
        display: none;
    }

    .button span:nth-of-type(2) {
        display: inline;
    }
}

/* nav */

nav {
    padding: 26px 0px;
    background: var(--grey);
}

nav .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .max-width img {
    width: 104px;
    height: auto;
}

nav .max-width button {
    width: 146px;
    height: 40px;
    border-radius: 24px;
    border: 2px solid var(--blue);
    background: var(--blue);
    color: var(--white);
    text-align: center;
    font-family: scandia-web, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: all .5s ease;
}

nav .max-width button:hover {
    color: var(--blue);
    background: transparent;
}

.header {
    background: var(--grey);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.header .header-body {
    padding-top: 0px;
    padding-bottom: 70px;
}

.header .header-text {
    max-width: 630px;
}

.header .max-width .header-text h1 {
    color: var(--blue);
    font-family: scandia-web, sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: -0.5px;
}

.header .max-width .header-text h1 span {
    color: var(--orange);
}

.header img {
    max-width: 412px;
}

.header .image-holder {
    background: url(../images/header_pattern_landing_page_dots.webp) left center no-repeat;
    background-size: 500px;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.header p {
    font-family: scandia-web, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2em;
    margin-top: 32px;
}

.header .button-holder {
    margin-top: 32px;
    display: flex;
    gap: 16px;
}

.header .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

@media screen and (max-width: 1200px) {
    .header img {
        max-width: 250px;
    }

    .header .max-width .header-text {
        max-width: 450px;
    }

    .header .max-width .header-text h1 {
        font-size: 40px;
    }

    .header .max-width .header-text h1 span {
        display: inline-block;
    }

    .header p {
        font-size: 16px;
        line-height: 24px;
    }

    .header p br {
        display: none;
    }

    .header .image-holder {
        background-size: 370px;
    }

    .header .flex {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .header .header-body {
        padding-top: 20px;
        padding-bottom: 70px;
    }

    .header .flex {
        flex-direction: column;
    }

    .header img {
        margin-top: 40px;
    }

    .header .image-holder {
        justify-content: center;
        max-width: none;
        width: 100%;
    }

    .header .max-width .header-text {
        max-width: none;
    }
    .header .max-width .header-text h1 span {
        display: inline;
    }
    .header .button-holder  {
        gap:12px;
    }
    .header .button-holder .button {
        font-size:14px;
        padding:0px 15px;
        white-space: nowrap;
    }
}


/* nav end */

/* marquee */
.marquee {
    background: var(--blue);
    padding-top: 20px;
    padding-bottom: 20px;
}

.marquee-track {
    display: flex;
}

.marquee-holder {
    display: flex;
    gap: 80px;
    padding-right: 80px;
    font-size: 28px;
    font-weight: 500;
    color: white;
    flex: 0 0 auto;
}

.marquee-holder .card {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee .marquee-track>div:nth-last-of-type(1) {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

@media screen and (max-width:980px) {
    .marquee-track {
        width: max-content;
        animation: marquee-scroll 18s linear infinite;
    }

    .marquee-window {
        max-width: 976px;
        overflow: hidden;
    }

    .marquee .marquee-track>div:nth-last-of-type(1) {
        display: flex;
    }
}

/* marquee end */



/* panel what */
.section-what {
    padding-top: 120px;
    padding-bottom: 0;
}

.section-what .flex {
    display: flex;
    gap: 120px;
    align-items: center;
}

.section-what .section-text {
    max-width: 620px;
}

.section-what h2 {
    font-size: 56px;
}

.section-what .section-text p {
    margin-top: 36px;
}

.section-what .image-holder {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    background: url(../images/header_pattern_landing_page_dots.webp) left center no-repeat;
    background-size: 450px;
    position: relative;
}

.section-what .image-holder:before {
    content: "";
    height: 100%;
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    background: white;
}

.section-what .image-holder img {
    max-width: 400px;
}

@media screen and (max-width:1200px) {
    .section-what h2 {
        font-size: 40px;
    }

    .section-what .section-text p {
        font-size: 14px;
    }

    .section-what .image-holder img {
        max-width: 260px;
    }

    .section-what .flex {
        display: flex;
        gap: 40px;
        align-items: center;
    }
}

@media screen and (max-width:768px) {
    .section-what {
        padding-top: 70px;
    }

    .section-what .flex {
        flex-direction: column;
    }

    .section-what .image-holder {
        justify-content: center;
        width: 100%;
    }
}

/* panel what end */


/* panel cards */
.section-cards {
    padding-top: 80px;
}

.section-cards .flex {
    display: flex;
    gap: 16px;
    padding-bottom: 10px;
}

.section-cards .card {
    flex: 1;
    border-radius: 8px;
    border: 2px solid #F3F5F9;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.10);
    padding: 62px 40px;
    position: relative;
}

.section-cards .card.highlight:after {
    content: '';
    height: 10px;
    width: 100%;
    left: 0;
    bottom: -2px;
    position: absolute;
    background: var(--orange);
}

.section-cards .card .icon-holder {
    height: 40px;
}

.section-cards .card p {
    line-height: 1.2em;
}

.section-cards .card h3 {
    font-size: 28px;
    margin: 20px 0;
}

@media screen and (max-width:900px) {
    .section-cards {
        padding-top: 48px;
    }

    .section-cards .flex {
        flex-direction: column;
    }

    .section-cards .card {
        padding: 50px 30px;
    }

    .section-cards .card p {
        font-size: 14px;
    }

    .section-cards .card h3 {
        font-size: 20px;
        margin: 16px 0;
    }
}

/* panel cards end */


/* panel where */
.section-where {
    padding-top: 80px;
    text-align: center;
}

.section-where h2 {
    font-size: 56px;
    margin-bottom: 32px;
}

.section-where p {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.2em;
}

.section-where ul {
    display: flex;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 40px auto;
    padding: 0;
    justify-content: center;
    color: var(--blue);
    flex-wrap: wrap;
    list-style:none;
}

.section-where .button.button-dark {height:48px;border-radius:48px;}

.section-where ul li {
    padding-left: 25px;
    position:relative;
}
.section-where ul li:nth-of-type(n+2):before {
    content:"";
    width:5px;
    height:5px;
    border-radius:10px;
    background:var(--blue);
    display:block;
    position:absolute;
    top:8px;
    left:10px;
}
.section-where ul li:first-child::marker {
    content: "";
  }

.section-where ul li:nth-of-type(1) {
    padding-left: 0;
}

@media screen and (max-width:768px) {
    .section-where h2 {
        font-size: 40px;
    }

    .section-where .section-text p {
        font-size: 14px;
    }
}
@media screen and (max-width:576px) {
    .section-where .button.button-dark {
        height: 48px;
        border-radius: 48px;
        font-size: 12px;
        padding: 0px 15px;
    }
}

/* panel where end */


/* panel how to buy */
.section-how-to-buy {
    padding-top: 64px;
    padding-bottom: 140px;
    background: rgba(243, 245, 249, 1);
    margin-top: 120px;
}

.section-how-to-buy h3 {
    font-size: 50px;
    color: var(--blue);
    text-align: center;
    width: 100%;
}

.section-how-to-buy ul {
    margin: 70px 0 0 0;
    display: flex;
    gap: 60px;
    list-style: none;
    padding: 0;
    justify-content: center;
}

.section-how-to-buy ul li {
    text-align: center;
    position: relative;
}

.section-how-to-buy ul li:nth-of-type(n+2):before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/arrow-right-ott.svg) center center no-repeat;
    position: absolute;
    left: -38px;
    top: 50%;
}

.section-how-to-buy ul .icon-holder {
    height: 40px;
    margin-bottom: 24px;
}

.section-how-to-buy ul p {
    line-height: 1.2em;
    font-size: 20px;
    font-weight: 500;
}

@media screen and (max-width:900px) {
    .section-how-to-buy {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-how-to-buy h3 {
        font-size: 40px;
        margin: 16px 0;
    }

    .section-how-to-buy ul {
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }

    .section-how-to-buy ul li {
        text-align: center;
        max-width: 245px;
    }

    .section-how-to-buy ul li:nth-of-type(n+2):before {
        left: calc(50% - 10px);
        top: -50px;
        transform: rotate(90deg);
    }
}

/* panel how to buy */

/* how it works */
.how-it-works {
    padding-top: 140px;
    padding-bottom: 200px;
    background: var(--navy) url(../images/video-background-pattern-ott.svg) right 10px top 20px no-repeat;
    color: white;
}

.how-it-works .the-video {
    margin-bottom: 90px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.how-it-works .the-video h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1em;
    width: 670px;
}

.how-it-works .the-video h2 strong {
    color: var(--even-lighter-blue);
}

.how-it-works h3 {
    font-size: 28px;
}

.how-it-works .max-width .card .flex {
    display: flex;
    gap: 48px;
}

.how-it-works .carousel-container {
    margin-top: 100px;
}

.how-it-works .max-width .card .bignum {
    color: var(--even-lighter-blue);
    font-family: scandia-web, sans-serif;
    font-size: 120px;
    font-weight: bold;
    letter-spacing: -1px;
    line-height: 1em;
}

.how-it-works .max-width .card p {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1em;
    padding-right: 80px;
    margin-top: 10px;
}

.how-it-works .max-width .card p strong {
    font-weight: 700;
}

.how-it-works .slick-next {
    right: 32px;
    position: absolute;
    bottom: -100px;
    display: block !important;
}

.how-it-works .slick-prev {
    right: 92px;
    bottom: -100px;
    position: absolute;
    transform: rotate(180deg);
    display: block !important;

}

.glider {
    background: var(--blue);
    height: 4px;
    margin-top: 80px;
    position: absolute;
    left: 0;
    right: 172px;
    width: auto;
}

.glider-handle {
    background: #ffffff;
    height: 4px;
    cursor: pointer;
    position: absolute;
    left: 0px;
    width: 333px;
}





.how-it-works .slick-next:after {
    content: "";
    background: url(../images/scroll-button-next-white.svg);
    width: 40px;
    height: 40px;
    position: relative;
    display: block;
}

.how-it-works .slick-prev:after {
    content: "";
    background: url(../images/scroll-button-next-white.svg);
    width: 40px;
    height: 40px;
    position: relative;
    display: block;
}

.slick-disabled:after {
    opacity: 0.5;
}


@media screen and (max-width:1200px) {
    .how-it-works .the-video>div {
        flex: 1;
    }

    .how-it-works .the-video h2 {
        font-size: 40px;
        width: auto;
    }
}

@media screen and (max-width:768px) {
    .how-it-works {
        background: var(--navy);
        padding-top: 90px;
    }

    .how-it-works .the-video {
        flex-direction: column;
        margin-bottom: 70px;
    }

    .how-it-works .the-video>div {
        width: 100%;
    }

    .how-it-works h3 {
        font-size: 20px;
    }

    .how-it-works .carousel-container {
        margin-top: 50px;
    }

    .how-it-works .max-width .card p {
        font-size: 20px;
    }
}

/* Account logos */
.ott-landing .account-logos {
    padding: 120px 0;
    text-align: center;
    background: white;
}

.ott-landing .account-logos h2 {
    color: var(--blue);
    font-size: 50px;
}

.ott-landing .account-logos .logo-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 50px -32px -32px -32px;
    justify-content: center;
}

.ott-landing .account-logos .logo-grid>img {
    margin: 32px;
    align-self: center;
    max-height: 70px;
    max-width: 210px;
}

@media screen and (max-width:768px) {
    .ott-landing .account-logos {
        padding: 80px 0 40px 0;
        text-align: center;
        background: white;
    }

    .ott-landing .account-logos .logo-grid {
        margin: 50px -10px 0px -10px;
        justify-content: space-between;
    }

    .ott-landing .account-logos .logo-grid>img {
        margin: 16px;
        max-height: 60px;
        max-width: 40%;
    }

    .ott-landing .account-logos h2 {
        font-size: 40px;
        text-align:center;
    }

    .faq-headline-flex::before {
        display:none;
    }
}