* {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}
  
html, body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #3E3E3E;
}

.explore, .suprises, .superpowers, .favorite {
    .inner {
        max-width: var(--max-width-layout);
    }
}

.explore {
    position: relative;
    width: 100%;
    padding: 32px 0 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.explore .inner {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
    /* overflow: hidden; */

    .background-gradient {
        width: 100%;
        background: var(--secondary-linear-gradient);
        padding: 50px 0;
        height: 400px;
        overflow: hidden;
        position: relative;
        transition: height 500ms ease-in;
        display: flex;
        justify-content: center;

        &::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 50%;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgb(255,255,255);
            background: linear-gradient(0deg, rgba(255,255,255,0.9920343137254902) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
            z-index: 1;
        }

        &.active {
            height: 1160px;

            &::after {
                content: none;
            }
        }

        .button.gradient {
            cursor: pointer;
            position: absolute;
            width: 42px;
            height: 42px;
            bottom: 0;
            left: 50%;
            background: var(--primary-linear-gradient);
            transform: translate(-50%, -50%) rotate(0);
            transform-origin: center;
            border-radius: 50%;
            z-index: 10;
            margin: 0;
            padding: 0;

            > svg {
                z-index: 10;
                margin-top: 4px;
            }

            &::after {
                position: absolute;
                content: '';
                background: white;
                border-radius: 50%;
                top: 2px;
                left: 2px;
                bottom: 2px;
                right: 2px;
            }

            &.closed {
                transform: translate(-50%, -50%) rotate(0);
            }

            &.open {
                transform: translate(-50%, -50%) rotate(180deg);
            }
        }
    }
}

.explore .inner h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    color: #3E3E3E;
    position: relative;
    margin: 80px 0 100px 0;
    padding-bottom: 16px;
    max-width: 648px;
}

.explore .inner h1::after {
    content: ' ';
    position: absolute;
    width: 48px;
    height: 4px;
    left: 50%;
    background-color: #169FF2;
    border-radius: 2px;
    bottom: 0;
    margin-left: -24px;
}

.explore .inner ul.grid {
    max-width: var(--max-width-layout);
    place-self: baseline;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    list-style: none;
    grid-template-columns: 1fr 1fr  1fr  1fr;
    grid-column-gap: 12px;
    grid-row-gap: 25px;
}

.explore .inner ul.grid > li {
    position: relative;
    background: var(--primary-linear-gradient);
    height: 150px;
    width: 250px;
    border-radius: 15px;
    z-index: 1;

    &::after {
        content: '';
        position: absolute;
        left: 1px;
        right: 1px;
        top: 1px;
        bottom: 1px;
        background-color: white;
        border-radius: 13px;
        z-index: -1;
    }
}

.explore .inner ul.grid > li a {
    text-decoration: none;
    padding: 20px 25px;
    height: 100%;

    display: flex;
    flex-direction: column;
    gap: 10px;

    .icon {
        max-height: 42px;
        height: 96px;

        img {
            height: 100%;
            object-fit: contain;
            object-position: left;
            max-width: 50%;
            width: 100%;
        }
    }

    .inner-text {
        display: flex;
        flex-direction: column;
        gap: 8px;

        > h3 {
            color: var(--text-default-color, #3E3E3E);
            font-size: 20px;
            font-weight: 600;
            margin: 0;
        }
        

        > span {
            display: inline-flex;
            color: var(--text-default-color, #3E3E3E);
            font-size: 14px;
            font-weight: 300;
            background-color: #EAF6FE;
            padding: 2px 8px;
            border-radius: 2px;
            width: max-content;
        }
    }

    &.speechmatics img {
        max-width: 70%;
    }

    &.multicam-systems img {
        max-width: 100px;
    }

    &.rcs-sound-software img,
    &.david-systems img {
        max-width: 80px;
    }

    &.cgi img,
    &.ines-ace img {
        max-width: 70px;
    } 

    &.omniplayer img,
    &.jet-stream img,
    &.audiologger img,
    &.musicmaster img {
        max-width: 150px;
    }
}

.explore .inner ul.grid img {
    align-self: center;

}



.explore .inner ul.grid > li.add svg {
    width: 57px;  
}



.explore .inner ul.grid > li.add h3 {
    color: #fff;
    border-top-color: #FFF;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-family: Open Sans;
    font-weight: 600;
}

.explore .inner ul.grid li.add {
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.98) 0%, #861FFC 77.65%, #861FFC 100%);
}

.explore .inner ul.grid li.add::after {
    content: none;
}

.suprises {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.suprises:before {
    top: 444px;
    position: absolute;
    content: ' ';
    left: 0;
    right: 0;
    bottom: 0;
    /* opacity: 0.5; */
    background: var(--secondary-linear-gradient);
    object-position: center left;
}   


.suprises .swiper-slide {
    width: auto;
    display: flex;
}

.suprises .swiper-pagination {
    display: none;
}

.suprises h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    color: #3E3E3E;
    position: relative;
    margin: 100px 0 80px 0;
    max-width: 648px;
}

.suprises h2::after {
    content: ' ';
    position: absolute;
    width: 48px;
    height: 4px;
    left: 50%;
    background-color: #169FF2;
    border-radius: 2px;
    bottom: -24px;
    margin-left: -24px;
}

.suprises .cards {
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: row;
    z-index: 1;
    width: 100%;
    padding-bottom: 80;
    gap: 45px;

    > .swiper-slide .card-container {
            width: 340px;
            height: 380px;
    }
}

.suprises .cards .card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    margin: 0 20px 0 20px;
    border-radius: 8px;
    overflow: hidden;
    height: 412px;
}

.suprises .cards .card::after {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.98) 0%, #861FFC 77.65%, #861FFC 100%);
}

.suprises .cards .card .icon {
    height: 152px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.suprises .cards .card h3 {
    margin: 0 0 0 0;
    color: #3E3E3E;
    text-align: center;
    font-size: 20px;
    font-family: "Open Sans";
    font-weight: 800;
}

.suprises .cards .card p {
    margin: 24px 0 36px 0;
    box-sizing: border-box;
    padding: 0 28px;
    color: #3E3E3E;
    text-align: center;
    font-size: 16px;
    font-family: "Open Sans";
}

.suprises .bullets {
    display: none;
}

.superpowers {
    overflow: hidden;
    margin-top: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.superpowers > div {
    width: 100%;
    max-width: 1040px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 96px;
    justify-content: space-between;

    &:hover .option:not(:hover) {
        scale: .95;
    }
}

.superpowers > * {
    position: relative;
}

.superpowers h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    color: #3E3E3E;
    position: relative;
    margin: 100px 0 80px 0;
}

.superpowers h2::after {
    content: ' ';
    position: absolute;
    width: 48px;
    height: 4px;
    left: 50%;
    background-color: #169FF2;
    border-radius: 2px;
    bottom: -24px;
    margin-left: -24px;
}

.superpowers p {
    margin: 0 0 60px 0;
    color: #3E3E3E;
    text-align: center;
    font-size: 17px;
    font-family: Open Sans;
}

.superpowers .option {
    position: relative;
    height: 350px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 150ms ease-in-out;

    .hexagon {
        cursor: pointer;
        width: 240px;
        aspect-ratio: cos(30deg);
        clip-path: polygon(-50% 50%,50% 100%,150% 50%,50% 0);
        background: var(--primary-linear-gradient);
        position: relative;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 12px;
        overflow: visible;
        /* background-size: 200% 200%;
        animation: gradient-move 5s linear infinite; */

        &::after {
            content: '';
            position: absolute;
            background: white;
            aspect-ratio: cos(30deg);
            clip-path: polygon(-50% 50%,50% 100%,150% 50%,50% 0);
            top: 3px;
            right: 3px;
            bottom: 3px;
            left: 3px;
        }

        h3, p {
            z-index: 10;
            margin: 0;
        }

        p {
            padding: 0 2em;
        }
    }

    .small-hexagon {
        position: absolute;
        z-index: 1;
        background: white;
        width: 90px;
        aspect-ratio: cos(30deg);
        clip-path: polygon(-50% 50%,50% 100%,150% 50%,50% 0);
        display: flex;
        justify-content: center;
        align-items: center;
        top: 0;
        left: 50%;
        transform: translateX(-50%);

        > svg {
            position: absolute;
            z-index: 10;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        &::after {
            content: '';
            position: absolute;
            background: var(--primary-linear-gradient);
            width: 70px;
            aspect-ratio: cos(30deg);
            clip-path: polygon(-50% 50%,50% 100%,150% 50%,50% 0);
        }
    }
}

.favorite {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.favorite::before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    background: linear-gradient(135deg, rgba(224, 245, 255, 0.98) 0%, #F6EEFF 78.13%, #E8D4FF 100%);
}

.favorite > * {
    position: relative;
    z-index: 1;
}

.favorite > h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    color: #3E3E3E;
    position: relative;
    margin: 100px 0 80px 0;
    max-width: 664px;
}

.favorite > h2::after {
    content: ' ';
    position: absolute;
    width: 48px;
    height: 4px;
    left: 50%;
    background-color: #169FF2;
    border-radius: 2px;
    bottom: -24px;
    margin-left: -24px;
}

.favorite p {
    margin: 0 0 52px 0;
    color: #3E3E3E;
    text-align: center;
    font-size: 17px;
    font-family: Open Sans;
    font-weight: 300;
}

.favorite .card {
    width: 100%;
    max-width: 920px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.25);
    margin: 0 0 80px 0;
    box-sizing: border-box;
    padding: 48px 80px;
    position: relative;
}

.favorite form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 16px;
    margin: 0;
}

.favorite form .fill {
    grid-column: auto / span 2;
}

.favorite form textarea, 
.favorite form input[type=text] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    flex: 1 1 auto;
    background: #fbfbfc;
    border: 1px solid #169FF2;
    padding: 0 0 0 8px;
    box-sizing: border-box;
    color: #5F6368;
    line-height: 24px;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-family: 'Open Sans', sans-serif;
    border-radius: 2px;
    outline: 0;
    height: 44px;
    width: 100%;
    caret-color: var(--primary );
    user-select: none;
    font-size: 14px;
    text-align: left;
    border-radius: 4px;
}

.favorite form textarea {
    height: 112px;
}

.favorite form .terms {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 16px 0 0 0;
}

.favorite form .terms .checkbox {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 4px 0 0 0;
}

.favorite form .terms .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 16px;
    width: 16px;
    left: -3px;
    top: -2px;
    z-index: 1;
}

.favorite form .terms .checkbox input ~ .checkmark {
    border-radius: 4px;
    background-color: #169FF2;
}

.favorite form .terms .checkbox input:checked ~ .checkmark::before {
    display: none;
}

.checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    overflow: hidden;
}

.favorite form .terms .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border: 1px solid transparent;
    transition: background-color .25s ease;
    border: 1px solid #169FF2;
}

.favorite form .terms .checkmark::before {
    position: absolute;
    content:  ' ';
    background: #fff;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    border-radius: 4px;
}

.favorite form .terms p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    padding: 0 0 0 6px;
    margin: 0;
    text-align: left;
}

.favorite form .terms p a {
    text-decoration: none;
    font-weight: 700;
    color: #169FF2;
}

.favorite form .btn-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 32px 0 0 0;
}

.favorite form .btn-row .button,
.favorite .sent .button {
    width: 424px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.98) 0%, #861FFC 77.65%, #861FFC 100%);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border: none;
    padding: 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    cursor: pointer;
    color: #FFFFFF;
    text-decoration: none;
}

.favorite form textarea::placeholder, 
.favorite form input::placeholder {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: rgba(107, 107, 107, 0.45);
}

.favorite .card .sent {
    display: none;
    position: absolute;
    background: #fff;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 72px;
    flex-direction: column;
    align-items: center;
}

.favorite .card .sent.show {
    display: flex;
}

.favorite .card .sent h2 {
    color: #3E3E3E;
    text-align: center;
    font-size: 28px;
    font-family: "Open Sans";
    font-weight: 700;
    max-width: 424px;
    margin: 12px 0 0 0;
}

.favorite .card .sent h3 {
    color: #3E3E3E;
    text-align: center;
    font-size: 20px;
    font-family: "Open Sans";
    font-weight: 400;
    max-width: 424px;
    margin: 48px 0 0 0;
}

.favorite .card .sent .button {
    margin-top: 60px;
}

.zoom, #zoom{
    transition: .2s;
}

.zoom:hover, #zoom:hover{
    transform: scale(1.05);
    transition: .2s;
}

@media only screen and (max-width: 1120px) {

    .header .inner {
        box-sizing: border-box;
        width: auto;
        padding: 0 28px;
    }

    .explore .inner {
        box-sizing: border-box;
    }

    .superpowers {
        box-sizing: border-box;
        width: auto;
        padding: 0 28px;
    }

    .favorite {
        box-sizing: border-box;
        width: auto;
        padding: 0 28px;
    }
}

@media only screen and (max-width: 732px) { 
    .explore {
        padding: 0;
    }

    .explore .inner h1 {
        color: #3E3E3E;
        text-align: center;
        font-size: 24px;
        font-family: Open Sans;
        font-weight: 700;
        line-height: initial;
        padding: 0 32px 16px 32px;
        margin: 50px 0 30px 0;
    }

    .explore .inner h1:after {
        width: 24px;
        left: 50%;
        height: 3px;
        margin-left: -12px;
    }

    .explore .inner ul.grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 28px;
        grid-column-gap: 8px;
        grid-row-gap: 18px;
    }

    .explore .inner ul.grid > li {
        width: 100%;
        height: 100px;
    }

    .explore .inner {
        & .background-gradient {
            height: 300px;

            &.active {
                height: 1530px;
            }
        }
    }

    .explore .inner ul.grid > li a {
        padding: 15px 12px;
        height: 100%;
    
        display: flex;
        flex-direction: column;
        gap: 5px;
    
        .icon {
            height: 25px;
    
            img {
                height: 100%;
                object-fit: contain;
                object-position: left;
                max-width: 50%;
                width: 100%;
            }
        }
    
        .inner-text {   
            > h3 {
                display: inline-block;
                font-size: 15px;
            }
            
    
            > span {
                font-size: 12px;
            }
        }

    }

    .suprises {
        overflow: hidden;
        padding: 0 28px;
        box-sizing: border-box;
    }

    .suprises::before {
        top: 300px;
    }

    .suprises h2 {
        color: #3E3E3E;
        text-align: center;
        font-size: 24px;
        font-family: Open Sans;
        font-weight: 700;
        line-height: initial;
        max-width: 332px;
        margin: 60px 0 70px 0;
    }

    .suprises h2:after {
        width: 24px;
        left: 50%;
        height: 3px;
        margin-left: -12px;
    }

    .suprises .cards {
        gap: 0;
        padding: 0;
        justify-content: start;
        padding-bottom: 2em;

        > .swiper-slide .card-container {
            width: 300px;
            height: 400px;
        }
    }

    .suprises .suprises-swiper-container {
        width: 100%;
        width: 300px;
        display: flex;
        align-items: end;
        justify-content: center;
        padding-bottom: 2em;
    }

    .suprises .swiper-pagination {
        display: flex;
        gap: 8px;
    }

    .suprises .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        border: 1px solid  #169FF2;
        background: transparent;
        opacity: 1;
    }

    .suprises .swiper-pagination-bullet-active {
        background-color: #169FF2;
    }
    
    .superpowers h2 {
        color: #3E3E3E;
        text-align: center;
        font-size: 24px;
        font-family: Open Sans;
        font-weight: 700;
        line-height: initial;
        max-width: 332px;
        margin: 60px 0 80px 0;
    }

    .superpowers h2:after {
        width: 24px;
        left: 50%;
        height: 3px;
        margin-left: -12px;
    }

    .superpowers > div {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .favorite h2 {
        color: #3E3E3E;
        text-align: left;
        font-size: 24px;
        font-family: Open Sans;
        font-weight: 700;
        line-height: initial;
        max-width: 332px;
        margin: 40px 0 56px 0;
        display: inline-flex;
        align-self: flex-start;
    }

    .favorite h2:after {
        width: 24px;
        left: 0;
        height: 3px;
        margin-left: 0;
    }

    .favorite p {
        color: #3E3E3E;
        font-size: 17px;
        font-weight: 300;
        text-align: left;
        margin: 0 0 44px 0;
    }

    .favorite .card {
        padding: 28px 36px;
    }

    .favorite form textarea, .favorite form input[type=text] {
        grid-column: auto / span 2;
    }

    .favorite form .terms .checkbox {
        padding-left: 20px;
    }

    .favorite form .terms p {
        color: #3E3E3E;
        font-size: 8.5px;
        font-family: Open Sans;
    }

    .favorite form .btn-row {
        padding: 0;
    }

    .favorite .card .sent {
        padding: 48px 36px;
        justify-content: center;
    }

    .favorite .card .sent h2 {
        color: #3E3E3E;
        font-size: 24px;
        font-weight: 700;
        line-height: initial;
        max-width: 332px;
        margin: 0;
    }

    .favorite .card .sent h3 {
        font-size: 18px;
    }

    .favorite .card .sent .button {
        width: auto;
        align-self: stretch;
    }
}