* {
    -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;
    margin-bottom: 100px;
}

.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;

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

       

        &.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 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    align-items: flex-start;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 50px;
}
.explore .inner .left {
    position: sticky;
    top: 80px;
    flex: 1;
    max-width: 300px;
    padding-right: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    align-items: stretch;
}

.search-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-bar .label-button h2, .categories-bar, .label-button h2{
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;
}
.search-bar .label-button button, .categories-bar .label-button button{
    background-color: transparent;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    border: none;
    transition: all 0.5s ease;
    cursor: pointer;

}

.search-bar .label-button button:hover, .categories-bar .label-button button:hover{
    color: #169FF2;
}

.label-button {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.label-button h2 {
    width: 100%;
    margin: 0;
}


.search-bar input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}


.input-with-icon {
    position: relative;
    width: 100%;
}

.input-with-icon img {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.explore .inner .left .categories-bar .categories-buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}

.category-button {
    position: relative;
    background-color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    font-family: "Open Sans";
    font-weight: 600;
    color: #3E3E3E;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-button {
    position: relative;
    background-color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    font-family: "Open Sans";
    font-weight: 600;
    color: #3E3E3E;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-button:hover{
    transform: translateY(-3px);
}
.category-button.active {
    background-color: #169ff2;
    color: white;
    border: #169FF2;
}

.category-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, #169ff2 0%, #5c0dce 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.explore .inner .right{
    margin-left: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;


}

.explore .inner .right .text{
    display: flex;
    justify-content: flex-start;
    text-align: left;
    flex-direction: column;
    align-self: flex-start;
    margin-bottom: 30px;
    margin-left: 25px;
}

.explore .inner .text-animation{
    justify-content: flex-start;
    margin: 0;
}

.explore .inner .heading-subtext{
    gap: 15px;
}



.explore .inner .right .text .heading-subtext h1{
    max-width: fit-content !important;
}

.explore .inner .right .text .section-subtext {
    margin: 0;
    padding: 0;
    max-width: 926px;
}

.explore .inner .right .separator{
    width: 100%;
    height: 1px;
    background-color: black;
    align-self: center;
    margin-top: 30px;
    margin-left: 10px;
    opacity: 0.15;
}

.separator-vertical {
    width: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    align-self: stretch;
    margin-left: 25px;
}





.explore .inner .right ul.grid {
    max-width: var(--max-width-layout);
    place-self: baseline;
    margin: 0;
    padding: 0;
    display: grid;
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 25px;
    margin-left: 25px;
    max-height: calc(224px * 6);
    padding-bottom: 15px;
}

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

    &::after {
        content: '';
        position: absolute;
        left: 1px;
        right: 1px;
        top: 1px;
        bottom: 1px;
        background-color: white;
        border-radius: 14px;
        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;
}

.explore .inner .right .navigation{
    align-self: flex-end;
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}


.explore .inner .right .navigation .page-text{
    font-size: 20px;
    font-weight: 600;
    color: #3E3E3E;
}

.explore .inner .right .navigation .nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #3E3E3E;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.3s ease;
}

.explore .inner .right .navigation .nav-btn img {
    width: 18px;
    height: 18px;
}

.explore .inner .right .navigation .previous-btn img{ 
    transform: rotate(180deg);
}

.explore .inner .right .navigation .nav-btn:hover{
    transform: translateY(-3px);
}

.explore .inner .right .navigation .nav-btn.disabled {
    border: 1px solid rgba(62, 62, 62, 0.7);
    cursor: not-allowed;
    opacity: 0.7;
}

.explore .inner .right .navigation .nav-btn.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}




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

.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 .section-title{
    margin-top: 50px;

}
.favorite .section-heading{
    max-width: 928px;
}
.favorite .section-description{
    margin-bottom: 50px;

}

.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;
    transition: transform 0.5s ease;
}

.favorite form .btn-row .button:hover,
.favorite .sent .button:hover {
    transform: scale(1.08);
}

.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;
}

.categories-toggle-icon{
    display: none;
}

.favorite .heading-subtext h1{
    max-width: 900px !important;
    margin-bottom: 0 !important;
}

.favorite .heading-subtext p{
    align-self: center !important;
    margin-bottom: 25px !important;
}

.get-started {
    background-image: none !important;
    background-color: white !important;
    margin-top: 0 !important;
}


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

    .explore .inner .right .text {
        margin-left: 0;
    }
    .explore .inner .right ul.grid {
    
            grid-template-columns: 1fr 1fr;
            grid-row-gap: 18px;
            margin: 0;
            padding: 0;
            margin-top: 10px;
            padding-right: 5px;
    
        }
}


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

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

    .explore .inner {
        margin-left: 10px;
        margin-right: 10px;
    }

    .explore .inner .left{
        margin-left: 10px;
    }

        

    .explore .inner .right{
        margin-left: 20px;
        margin-right: 10px;
       
    }

    .explore .inner .right .navigation{
        align-self: flex-end;
        margin-right: 10%;
    }

    

    .explore .inner .right .text{
        margin-left: 0;
    }

    .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: 1024px){
    .explore .inner{
        gap: 0;
    }

    .separator-vertical{
        margin-left: 0;
    }

    .explore .section-subtitle{
        font-size: 30px;
    }

    .explore .inner .right .navigation{
      margin-right: 10px;
    }

    .explore .inner ul.grid>li {
        width: auto;
    }

        .explore .inner ul.grid>li a {
            padding: 10px 15px;
            justify-content: center;
        }

         .explore .inner ul.grid>li:hover {
             transform: scale(1) !important;
    
         }
}


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

    .categories-toggle-icon {
            display: block;
        }

    .explore .inner .right .separator{
        display: none;
    }
        .explore .inner {
            flex-direction: column;
            margin: 0 5px;
            justify-content: flex-start;
            gap: 20px;
        }
        .explore .inner .right {
            margin: 0 !important;
            width: 100% !important;
            box-sizing: border-box;
            padding-left: 10px;
        
        }

    .explore .inner .right .text .section-heading{
        max-width: 334px;
    }


    .explore .inner .right .text .section-title,
    .explore .inner .right .text .section-heading,
    .explore .inner .right .text .section-description{
        text-align: left;
        align-self: flex-start;
    }

    
    .explore .inner .right .left,
    .explore .inner .right .text{
        padding: 0;
        margin-left: 0px;
    }

        .explore .inner .right .left{
            width: 300px;
        }

    
    .explore .inner .right ul.grid {
  
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 18px;
        margin: 0;
        padding: 0;
        margin-top: 10px;
        padding-right: 5px;
    }

    .explore .inner .right .navigation{
        align-self: center;
    }

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

    .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: 11px;
            }
        }

    }
        .categories-header .clear-categories{
            display: none;
        }
        .categories-header .clear-categories.show {
                     display: inline-block;
        }
        .categories-header .left-part {
            display: flex;
            align-items: center;
            gap: 8px;
        }
    

        .categories-toggle-icon {
            width: 18px;
            height: 18px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
    

        #categories-content {
            display: none;
        }
    
       
        #categories-content.show {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 5px;
        }
    
        .categories-toggle-icon.open {
            transform: rotate(180deg);
        }

    .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 .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;
    }
}


