@font-face {
    font-family: 'Clash Grotesk';
    src: url('futurestreamccs.com\font\Fonts\TTF\ClashGrotesk-Variable.ttf');
}

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #000;
}

.container {
    width: 100%;
    max-width: 1440px;
    padding-right: 120px;
    padding-left: 120px;
    margin-right: auto;
    margin-left: auto;
}
@media (max-width: 1024px) {
    .container {
        padding-right: 32px;
        padding-left: 32px;
    }
}
@media (max-width: 640px) {
    .container {
        padding-right: 24px;
        padding-left: 24px;
    }
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
}
.header__bg {
    background: #fff;
}
header .button {
    height: 44px;
    font-size: 14px;
    background: #ffffff;
    padding: 0 24px;
}


nav {
    display: flex;
    align-items: center;
}

.logo-desktop {
    width: 150px;
}
.logo-tablet, .logo-mobile {
    display: none;
}

nav a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    min-height: 100vh;
    background: url('../images/hero-desktop.jpg') no-repeat center bottom/cover;
    padding-top: 235px;
    padding-bottom: 107px;
}

.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hero-content p {
    margin-bottom: 16px;
}

.hero-content .button {
    text-decoration: none;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}



/* MEDIA QUERIES */

@media (max-width: 1024px) {
    header {
        padding: 18px 0;
    }
    .logo-tablet {
        display: block;
        width: 136px;
    }
    .logo-desktop, .logo-mobile {
        display: none;
    }
    .hero {
        min-height: inherit;
        background: url('../images/hero-tablet.jpg') no-repeat bottom center/cover;
        padding-top: 128px;
        padding-bottom: 205px;
    }
    .hero-content {
        width: 74%;
        max-width: 522px;
    }
    .hero-content .heading-1 {
        font-size: 52px;
    }
    .hero-content p {
        max-width: 80%;
    }

    .heading-1 {
        font-size: 52px;
    }
    
    .heading-2 {
        font-size: 40px;
    }
    
    .heading-3 {
        font-size: 32px;
    }
    
    .heading-4 {
        font-size: 24px;
    }
    
    .heading-5 {
        font-size: 20px;
    }
    
    .heading-6 {
        font-size: 18px;
    }
    .button {
        height: 48px;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .logo-mobile {
        display: block;
        width: 122px;
    }
    .logo-desktop, .logo-tablet {
        display: none;
    }
    .hero {
        background: url('../images/hero-mobile.jpg') no-repeat bottom center/cover;
        padding-bottom: 232px;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    .hero-content .heading-1 {
        font-size: 36px;
    }
    .hero-content p {
        max-width: 100%;
    }
    .heading-1 {
        font-size: 36px;
    }
    
    .heading-2 {
        font-size: 32px;
    }
    
    .heading-3 {
        font-size: 28px;
    }
    
    .heading-4 {
        font-size: 24px;
    }
    
    .heading-5 {
        font-size: 20px;
    }
    
    .heading-6 {
        font-size: 18px;
    }
    .button {
        height: 44px;
        font-size: 14px;
        padding: 0 4px;
    }
}


/* GENERAL ELEMENTS STYLING */

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
  }

/* HEADERS */
.heading {
    font-family: "Clash Grotesk", sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 61.6px */
    letter-spacing: -0.5px;
}

.heading-1 {
    font-size: 56px;
}

.heading-2 {
    font-size: 48px;
}

.heading-3 {
    font-size: 36px;
}

.heading-4 {
    font-size: 28px;
}

.heading-5 {
    font-size: 24px;
}

.heading-6 {
    font-size: 20px;
}

/*BODY */
.text-lg {
    font-size: 18px;
}

.text-md {
    font-size: 14px;
}

.text-sm {
    font-size: 12px;
}

.medium {
    font-weight: 500;
}

.bold {
    font-weight: 700;
}

.strike {
    text-decoration-line: line-through;
}

.allcaps {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.link {
    text-decoration-line: underline;
}

.link-brand {
    color: #20AECB;
}

.link-brand:hover {
    color: #73CCDE;
}

.link-dark {
    color: #000;
}

.link-dark:hover {
    color: #8C8C8C;
}

.link-light {
    color: #fff;
}

.link-light:hover {
    color: #D9D9D9;
}

/* BORDER */
.border-primary {
    border: 1px solid #F0F0F0;
    background-color: #fff;
}

.border-secondary {
    border: 1px solid #D9D9D9;
    background-color: #fff;
}

.border-tertiary {
    border: 1px solid #BFBFBF;
    background-color: #fff;
}

.border-info {
    border: 1px solid #C9E3F3;
}

.border-warning {
    border: 1px solid #F0E3A1;
}

.border-error {
    border: 1px solid #F0CBCB;
}

.border-success {
    border: 1px solid #CEEDD9;
}

/* SYSTEM */
.bg-info {
    background-color: #E9F3FA;
}

.bg-warning {
    background-color: #FBF8E9;
}

.bg-error {
    background-color: #F9E9E9;
}

.bg-success {
    background-color: #EBF8EF;
}

.text-info {
    color: #2089CB;
}

.text-warning {
    color: #DBBD24;
}

.text-error {
    color: #C12525;
}

.text-success {
    color: #32B561;
}

/* BUTTONS*/
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    height: 52px;
    font-size: 18px;
    outline: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0 32px;
}

.primary-button {
    background-color: #20AECB;
    color: #fff;  
}

.primary-button:hover {
    background-color: #73CCDE;
}


.secondary-button {
    border: 1.5px solid #20AECB;
    color: #20AECB;
}

.secondary-button:hover {
    border: 1.5px solid #73CCDE;
    background: #73CCDE;
    color: #fff;
}

.secondary-button:active {
    background: #20AECB;
    color: #fff;
}

.light-button {
    color: #000;
    background-color: #fff;
    border: none;
}

.light-button:hover {
    background-color: #D9D9D9;
}
.light-button:active {
    border: 4px solid rgba(255, 255, 255, 0.48);
}


/* FOOTER */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    text-align: center;
    padding: 32px 0px;
    border: 1px solid #F0F0F0;
    color: #8C8C8C;
}

/* About */
.about {
    background-color: #E9F7FA;
    padding: 96px 0;
}
.about__title {
    text-align: center;
    margin-bottom: 64px;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 24px;
}
.card {
    width: calc(50% - 12px);
    display: flex;
    gap: 24px;
    border-radius: 16px;
    background-color: #fff;
    background-image: url("../images/card-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    padding: 48px;
}
.card__img {
    display: block;
    width: 48px;
    height: 48px;
}
.card__title {
    color: #000;
    font-family: 'Clash Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 8px;
}
.card__text {
    color: #454545;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
.card__btn-wrap {
    position: relative;
    min-width: 42px;
    border-left: 1px solid #F0F0F0;
}
.card__btn {
    width: 90px;
    color: #BFBFBF;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translateY(-50%) rotate(-90deg);
    transition: all 300ms;
}
.card__btn:hover {
    color: #20AECB;
}

@media (max-width: 1024px) {
    .about__title {
        font-size: 40px;
    }
    .cards {
        flex-direction: column;
    }
    .card {
        width: 100%;
    }
}
@media (max-width: 640px) {
    .about__title {
        font-size: 32px;
    }
    .card {
        flex-direction: column;
        background-image: url("../images/card-bg-mob.png");
        background-size: contain;
        background-position: bottom center;
        padding: 32px;
    }
    .card__title {
        font-size: 18px;
    }
    .card__btn-wrap {
        position: relative;
        min-height: 50px;
        border-left: none;
        border-top: 1px solid #F0F0F0;
    }
    .card__btn {
        top: 24px;
        left: 50%;
        transform: translateX(-50%) rotate(0);
    }

}

.services {
    padding-top: 128px;
    padding-bottom: 120px;
    background: linear-gradient(180deg, #E9F7FA 0%, rgba(233, 247, 250, 0.00) 10%);
}
.services__title {
    margin-bottom: 16px;
}
.services__text {
    max-width: 690px;
    color: #454545;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 64px;
}
.carousel-wrap {
    position: relative;
    overflow: hidden;
}
.carousel-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 119px;
    height: 100%;
    background: #ffffff;
    z-index: 1;
}
.carousel-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 119px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    z-index: 1;
}
.slick-track {
    display: flex;
}
.slick-slide {
    height: auto;
    margin: 0 12px;
}
.slick-list {
    overflow: visible;
    margin: 0 -12px;
}
.slick-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    list-style: none;
    padding-left: 0;
    padding-top: 64px;
    padding-bottom: 28px;
}
.slick-dots button {
    font-size: 0;
    line-height: 0;
    border: none;
    cursor: pointer;
    display: block;
    width: 8px;
    height: 8px;
    background-color: #F0F0F0;
    border-radius: 50%;
    transition: all 300ms;
}
.slick-dots button:hover {
    background-color: #20AECB;
}
.slick-dots .slick-active button {
    width: 32px;
    border-radius: 512px;
    background-color: #20AECB;
}
.slick-prev, .slick-next {
    font-size: 0;
    position: absolute;
    bottom: 0;
    width: 64px;
    height: 64px;
    background-color: #FFF;
    border: 1px solid #F0F0F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms;
    cursor: pointer;
    z-index: 1;
}
.slick-prev {
    right: 80px;
}
.slick-next {
    right: 0;
}
.slick-prev::before, .slick-next::before {
    content: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTE1IDE5TDggMTJMMTUgNSIgc3Ryb2tlPSIjMjBBRUNCIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=');
    transition: all 300ms;
}
.slick-next::before {
    content: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNOCAxOUwxNSAxMkw4IDUiIHN0cm9rZT0iIzIwQUVDQiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+');
}
.slick-prev:hover, .slick-next:hover {
    background: #20AECB;
    border: 1px solid #20AECB;
}
.slick-prev:hover::before, .slick-next:hover::before {
    filter: brightness(10);
}
.service {
    position: relative;
    display: flex!important;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    border: 1px solid #F0F0F0;
    background: #FFF;
    transition: all 300ms;
    padding: 24px 24px 48px;
}
.service__number {
    position: absolute;
    top: 48px;
    right: 48px;
    color: #BFBFBF;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 300ms;
}
.service__img {
    display: block;
    width: 160px;
    height: 160px;
    transform: rotate(0deg);
    transition: all 300ms;
    margin-bottom: 16px;
}
.service__title {
    color: #000;
    font-family: "Clash Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    transition: all 300ms;
    margin-right: 24px;
    margin-left: 24px;
    margin-bottom: 16px;
}
.service__text {
    color: #454545;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    margin-right: 24px;
    margin-left: 24px;
}
.service:hover {
    border: 1px solid #20AECB;
    background: #E9F7FA;
}
.service:hover .service__number,
.service:hover .service__title {
    color: #20AECB;
}
.service:hover .service__img {
    transform: rotate(-15deg) scale(1.15);
}

@media (max-width: 1024px) {
    .services {
        padding: 80px 0;
    }
    .services__title {
        font-size: 40px;
    }
    .carousel-wrap:before,
    .carousel-wrap:after {
        width: 30px;
    }
    .slick-list {
        padding-right: 48px;
    }
    .service {
        padding: 24px 24px 32px;
    }
    .service__img {
        width: 128px;
        height: 128px;
    }
    .service__title {
        font-size: 20px;
        margin-right: 8px;
        margin-left: 8px;
    }
    .service__text {
        margin-right: 8px;
        margin-left: 8px;
    }
}
@media (max-width: 640px) {
    .services__title {
        font-size: 32px;
    }
    .carousel-wrap:before,
    .carousel-wrap:after {
        width: 22px;
    }
    .slick-list {
        padding-right: 24px;
    }
    .slick-dots {
        padding-bottom: 96px;
    }
    .slick-prev {
        left: calc(50% - 40px);
        transform: translateX(-50%);
    }
    .slick-next {
        right: calc(50% - 40px);
        transform: translateX(50%);
    }
}
@media (max-width: 400px) {
    .slick-dots {
        gap: 10px;
    }
}


.cta {
    padding-top: 64px;
    padding-bottom: 64px;
}
.cta__wrap {
    border-radius: 24px;
    background: #177C90;
    padding: 96px 48px;
}
.cta__title {
    max-width: 792px;
    color: #ffffff;
    text-align: center;
    margin: auto;
    margin-bottom: 16px;
}
.cta__text {
    max-width: 792px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: auto;
    margin-bottom: 32px;
}
.cta__btn {
    width: fit-content;
    text-decoration: none;
    margin: auto;
}
@media (max-width: 1024px) {
    .cta {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .cta__title {
       font-size: 52px;
    }
    .cta__btn {
        width: 100%;
        max-width: 608px;
    }
}
@media (max-width: 640px) {
    .cta {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .cta__wrap {
        padding: 64px 24px;
    }
    .cta__title {
       font-size: 36px;
    }
}


/* TERMS OF USE */

.hero-secondary {
    padding-top: 100px;
    padding-bottom: 64px;
}
.hero-secondary__content {
    background: #E9F7FA;
    color: #000;
    padding: 96px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
}
.hero-secondary__content .heading-1 {
    text-align: center;
}
@media (max-width: 1024px) {
    .hero-secondary {
        padding-top: 80px;
    }
    .hero-secondary__content {
        padding: 80px 32px;
    }
    .hero-secondary__content .heading-1 {
        font-size: 52px;
    }
}
@media (max-width: 640px) {
    .hero-secondary {
        padding-bottom: 48px;
    }
    .hero-secondary__content {
        padding: 64px 32px;
    }
    .hero-secondary__content .heading-1 {
        font-size: 36px;
    }
}
.terms {
    padding-bottom: 128px;
}

.terms .container {
    max-width: 1032px;
}

.terms .container p {
    padding: 10px 0;
}

.sub-section h2 {
    padding: 20px 0;
}

ul {
    padding-left: 30px;
    padding-top: 20px;
}


/*============ section-contact start ============*/
.section-contact {
    flex-grow: 1;
    padding-top: 100px;
    padding-bottom: 64px;
}
.contact__text-block {
    border-radius: 24px;
    background: #E9F7FA;
    text-align: center;
    padding: 96px 32px;
}
.contact__form-block {
    max-width: 588px;
    margin: 64px auto 0 auto;
}
.contact__title {
    margin-bottom: 16px;
}
.contact__list {
    list-style: none;
    padding: 0;
}
.contact__list-item.address {
    margin-bottom: 32px;
}
.contact__list-item.email a {
    color: #20AECB;
    transition: all 300ms;
}
.contact__list-item.email a:hover {
    text-decoration: underline;
}
.contact__form {
    background: #ffffff;
}
.contact__form-wrap {
    display: flex;
    gap: 24px;
}
.contact__form-wrap .contact__form-label {
    width: calc(50% - 12px);
}
.contact__form-label {
    display: block;
    position: relative;
    margin-bottom: 16px;
}
.contact__form-control {
    display: block;
    width: 100%;
    border: 1px solid #BFBFBF;
    border-radius: 8px;
    color: #454545;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    outline: none;
    padding: 16px;
    transition: all 300ms;
}
.contact__form-control::placeholder {
    color: #8C8C8C;
    transition: all 300ms;
}
textarea.contact__form-control {
    min-height: 130px;
    resize: none;
}
.contact__form-control:hover::placeholder {
    color: #000;
}
.contact__form-control:focus {
    border: 1px solid #20AECB;
}
.contact__form-control:focus::placeholder {
    color: #20AECB;
}
.contact__form-control.error {
    border: 1px solid #F0CBCB;
}
.contact__form-control.error::placeholder {
    color: #C12525;
}
label.error {
    color: #C12525;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
}
.contact__form-btn {
    font-size: 18px;
    margin: 32px auto 0 auto;
    text-align: center;
}

@media (max-width: 1024px) {
    .section-contact {
        padding-top: 80px;
    }
    .contact__text-block {
        padding: 80px 32px;
    }
    .contact__form-block {
        max-width: 100%;
    }
    .contact__title {
        font-size: 52px;
    }
}

@media (max-width: 640px) {
    .contact__text-block {
        padding: 64px 32px;
    }
    .contact__title {
        font-size: 36px;
    }
    .contact__form-block {
        margin: 48px auto 0 auto;
    }
    .contact__form-wrap {
        display: block;
    }
    .contact__form-wrap .contact__form-label {
        width: inherit;
    }
}
/*============ section-contact end ============*/

/*============ modal start ============*/
.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modal__window {
    background-color: #ffffff;
    margin: 32px 24px;
    padding: 48px;
    width: 500px;
    border-radius: 16px;
    animation-name: animatetop;
    animation-duration: 0.4s
}
@media (max-width: 576px) {
    .modal__window {
        padding: 48px 32px;
    }
}
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}
.modal__text {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
}
.modal__btn {
    margin-left: auto;
    margin-right: auto;
}
/*============ modal end ============*/