:root {
    --page-text-color: #0B0C0D;
    --page-secondary-bg: #1A1F71;
    --page-primary-bg: #FF69B4;
    --page-light-bg: #C6E3FF;
    --text-grey: #3F4751;
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
    font-weight: 600;
    border: unset !important;
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.page-primary-bg {
    background: var(--page-primary-bg);
}

.page-light-bg {
    background-color: var(--page-light-bg);
}

.text-grey {
    color: var(--text-grey);
}

.text-theme {
    color: var(--page-primary-bg);
}

.button-primary-alt:hover {
    background-color: var(--white-color) !important;
    color: var(--page-text-color) !important;
}

.button-primary-alt:hover path {
    stroke: var(--page-text-color) !important;
}

.button-primary:hover path {
    fill: unset;
}

.secondary-button,
.secondary-button:hover {
    padding: 0 !important;
    color: var(--white-color);
    border-bottom: 1px solid var(--white-color) !important;
}

.z-indexup {
    position: relative;
    z-index: 1;
}

.circle-icon,
.border-0 {
    border: none;
}

.link-active {
    color: var(--primary-color-600) !important;
    text-decoration: underline !important;
    font-weight: 600;
    font-size: calc(1rem + 0.208vw);
}

.link-blk {
    color: var(--page-text-color) !important;
    text-decoration: underline !important;
    font-size: calc(1rem + 0.208vw);
    font-weight: 600;
}

.link {
    color: var(--page-primary-bg) !important;
    text-decoration: underline !important;
    font-size: calc(1rem + 0.208vw);
    font-weight: 600;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    font-size: calc(1rem + 0.208vw) !important;
}

/* Hero Section */

.hero-section {
    background-color: var(--page-secondary-bg);
    background-image: url(../images/tinder-images/banner-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0;
    position: relative;
}

.title {
    color: var(--page-primary-bg);
    position: relative;
    width: fit-content;
}

.title::before {
    content: '';
    left: 0;
    background-image: url(../images/tinder-images/title-shape.webp);
    height: 80px;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Counter */

.page-counter {
    background-color: var(--page-primary-bg);
    background-image: url(../images/tinder-images/counter-bg.webp);
    background-size: cover;
    padding: 80px 80px;
}

.counter-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 0;
}

.counter-theme {
    color: var(--white-color);
    border-right: 1.5px solid #FFFFFF40;
    padding: 0 28px;
    width: 33.33%;
}

.highlight__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: fit-content;
    color: var(--white-color) !important;
}

.highlight__link::after {
    content: '';
    background-image: url(../images/tinder-images/highlight-underline.webp);
    height: 30px;
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.highlight__link svg {
    transition: all 0.3s;
}

.highlight__link:hover svg {
    transition: all 0.3s;
    transform: translateX(10px);
}

/* Product Block */

.product-block {
    padding: 25px 25px;
    transition: all 0.3s;
    border: 1px solid #E2E1F9;
    height: 100%;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: #E2E1F9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px;
    transition: all 0.3s;
}

.product-block svg {
    transition: all 0.3s;
}

.product-block:hover {
    border-color: var(--page-primary-bg);
    transform: translateY(-5px);
}

.product-block:hover .product-icon {
    background: #FFE2F1;
}

.product-block:hover svg path {
    fill: var(--page-primary-bg);
}

.product-block.product-hovered {
    background-color: var(--white-color);
}

.product-block.product-hovered:hover {
    background-color: var(--page-primary-bg);
    color: var(--white-color);
}

.product-block.product-hovered:hover .product-icon {
    background: var(--white-color);
}

.product-block.product-hovered:hover svg path {
    fill: var(--page-primary-bg);
}

.technology-slider .product-block:hover {
    cursor: none;
    transform: unset;
}

.technology-slider .swiper-slide {
    height: auto;
}

.cursor {
    position: fixed;
    left: var(--cursor-x);
    top: var(--cursor-y);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    background: var(--page-primary-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

body.show-custom-cursor .cursor {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 50px 0 0;
}

.swiper-button-next,
.swiper-button-prev {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid var(--page-secondary-bg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--white-color);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    color: var(--page-text-color);
    font-weight: 800;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--page-secondary-bg);
    border-color: var(--white-color);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--white-color);
}


/* Bordered Block */

.border-wrapper {
    display: flex;
    align-items: center;
    padding: 20px 0 0 20px;
    border: 1px solid #E2E1F9;
    gap: 20px;
}

.bordered-img {
    width: 100%;
    align-self: flex-end;
}

/* App Block */

.app-block {
    background: var(--white-color);
    padding: 24px;
}

/* Think Block */

.think__row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    height: 550px;
    width: 100%;
    margin: 0 auto;
    transition: all 0.45s ease-in-out;
    background: url(../images/tinder-images/think__main.webp) no-repeat;
    background-size: cover;
}

.think__image_block {
    position: absolute;
    inset: 0;
}

.think__image_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.think__block {
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    margin-right: 0;
    position: relative;
}

.think__image_block.think__image__1 .image__1 {
    display: block !important;
}

.think__image_block.think__image__2 .image__2 {
    display: block !important;
}

.think__image_block.think__image__3 .image__3 {
    display: block !important;
}

.think__image_block.think__image__4 .image__4 {
    display: block !important;
}

.think__image_block.think__image__5 .image__5 {
    display: block !important;
}

.think__image_block.think__image__6 .image__6 {
    display: block !important;
}

.think__link {
    display: flex;
    align-items: end;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.think__hider {
    display: none;
}

.think__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.think__block__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: end;
}

.think__mob__block {
    padding: 80px 20px 20px;
    width: 100%;
}

.think__mob__block .think__link {
    padding: 20px;
    margin: 0;
    background: #0000003b;
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s;
    position: static;
    border: none;
    align-items: flex-start;
}

/* Hoveres Css */

.think__active .think__block__content {
    background: #FFFFFF1A;
    height: 100%;
}

.think__active .think__hider {
    display: block;
}

.hider__element {
    background: transparent;
}

.think__block__content svg {
    transition: all 0.3s;
}

.think__active .think__block__content svg {
    rotate: 45deg;
}

/* Custom Accordion Wrapper */

.accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-wrap .accord-cont {
    border-left: unset;
    padding: 20px !important;
    position: relative;
    color: var(--page-text-color);
    padding: 20px;
    border: 1px solid #E2E1F9 !important;
}

.accordion-block .heading {
    font-weight: 600 !important;
    transition: all 0.3s;
}

.accordion-wrap .accord-cont::before {
    content: unset !important;
}

.accordion-wrap .contents {
    display: none;
    color: var(--page-text-color);
}

.accord-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.accordion-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.arrow-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border-radius: 50px;
    transition: all 0.3s;
}

.accordion-block.active .arrow-block {
    rotate: -180deg;
}

/* List Block */

.stick-intro {
    background-color: #F9F9F3;
}

.mockup-step {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mockup-step .active {
    padding: 6px 20px;
    background: var(--page-primary-bg);
    border-radius: 50px;
    color: var(--white-color);
}

.sticky-column img {
    position: sticky;
    top: 180px;
}

/* Tech Stack */

.tech-wrappper {
    background-color: var(--white-color);
    border: 1px solid #B7B7B73B;
    padding: 30px 30px;
    text-align: center;
    transition: all 0.3s;
    width: 100%;
}

.tech-wrappper:hover {
    transform: translateY(-5px);
}

.tech-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: -webkit-match-parent;
}

.tech-list li {
    text-align: center;
}

.tech-list li p {
    font-size: 14px !important;
}

.tech-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    min-width: 70px;
    border: 1px solid #DEDEDE;
    border-radius: 50px;
    margin: 0 auto 8px;
    padding: 12px;
}

/* award and certification section */

.awards-wrap {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.award-wrap .award-item img {
    aspect-ratio: 1/1;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.1);
}

.awards-certification img {
    scale: 0.9;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.awards-certification img:hover {
    scale: 1;
}

/* Cta Wrapper */

.cta-block {
    background-color: var(--page-secondary-bg);
}

.video-block {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.ytp-chrome-top.ytp-show-cards-title {
    display: none !important;
}

.video-block iframe {
    width: 100%;
    height: 100%;
}

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 34px 0;
    font-size: 22px;
}

/* Responsive */

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }

    .border-content {
        padding: 0 0 20px;
    }

    .bordered-img {
        min-width: 180px;
        text-align: end;
    }

    .sticky-column img {
        top: 130px;
    }

}


@media only screen and (max-width: 991px) {

    .title::before {
        height: 44px;
    }

    .slider-btn {
        display: flex !important;
    }

    .text-align-center {
        text-align: center;
    }

    .highlight__link {
        margin: 0 auto 30px;
    }

    .page-counter {
        padding: 50px 20px;
    }

    .padding-left {
        padding-inline: 12px !important;
    }

    .think__row {
        display: none !important;
    }

    .think__mobile {
        display: block !important;
    }
}

@media only screen and (max-width: 767px) {

    .counter-grid {
        justify-content: space-between;
    }

    .counter-theme {
        padding: 0 15px;
        width: 49%;
        text-align: center;
    }

    .counter-grid .counter-theme:nth-child(2),
    .counter-grid .counter-theme:nth-child(4) {
        border: none;
    }

    .counter-grid .counter-theme:nth-child(3) {
        border-right: 1.5px solid #FFFFFF40 !important;
    }

    .secondary-button {
        width: auto;
    }

    .tech-img {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .sticky-column img {
        position: static;
        margin: 40px 0 0;
    }

    .awards-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 500px) {

    .page-counter {
        padding: 40px 10px;
    }

    .border-wrapper {
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .bordered-img {
        text-align: center;
    }

    .product-block,
    .app-block {
        padding: 20px 20px;
    }
}