:root {
    --page-primary-bg: #5078F5;
    --page-secondary-bg: #FF8900;
    --page-fade: #F4F7FF;
    --text-theme: #000000;
    --text-grey: #5D5D5D;
    --tick-icon: url(../images/kotlin-images/check-icon.webp);
    --tick-icon-2: url(../images/kotlin-images/check-icon-2.webp);
}

main section {
    font-family: 'Gilroy' !important;
}

.banner-heading {
    font-size: clamp(2rem, 6vw, 3.9rem);
}

.page-primary {
    background-color: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.link-title {
    color: var(--text-theme) !important;
}

.circle-icon,
.border-0 {
    border: none;
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.button-primary,
.button-primary:hover {
    background: var(--page-secondary-bg) !important;
    color: var(--white-color) !important;
    font-weight: 600;
}

.button-secondary,
.button-secondary:hover {
    background-color: var(--page-secondary-bg) !important;
    color: var(--white-color) !important;
    font-weight: 600;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.highlight {
    color: var(--page-primary-bg) !important;
}

.object-cover {
    object-fit: cover;
}

/* Hero Intro */

.hero-section {
    background: url(../images/kotlin-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0 110px;
    position: relative;
}

.banner-shape,
.banner-shape-2 {
    position: absolute;
    bottom: 0;
}

.tick-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    gap: 20px;
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 30px;
    position: relative;
    color: var(--white-color);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 4px auto 0 0;
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* About Block */

.about-blk {
    position: relative;
    padding: 0 0 40px;
}

.about-wrapper {
    background-color: var(--page-primary-bg);
    padding: 30px 30px;
    width: 100%;
    max-width: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 20px;
}

.about-wrapper .tick-list {
    grid-template-columns: repeat(1, 1fr);
}

.about-wrapper .tick-list li::before {
    background-image: var(--tick-icon-2);
}

/* Develop Block */

.develop-slider .swiper-slide  {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.slider-button {
    margin: 20px 0 0 !important;
    position: relative;
}

.slider-button .swiper-pagination {
    position: static;
}

.slider-button .swiper-pagination-bullet {
    background-color: #95A7E2;
    width: 12px;
    height: 12px;
}

.slider-button .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--page-primary-bg);
}

.develop--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.4s;
    background-color: transparent;
    border: 1px solid #DEDEDE;
}

.icon--box {
    width: 90px;
    height: 90px;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--page-fade);
    border: 1px dashed transparent;
    border-radius: 50px;
}

.develop--block:hover {
    border-color: var(--page-primary-bg);
    background-color: var(--page-primary-bg);
}

.develop--block:hover h4,
.develop--block:hover p {
    color: var(--white-color) !important;
}

/* Table Block */

.inner-pricing-section table {
    border-radius: 30px;
    overflow: hidden;
}

.inner-pricing-section table tr th {
    width: 33.3%;
    border-bottom: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    text-align: center;
    height: 90px;
    padding: 10px;
    font-size: 24px;
    color: var(--white-color);
    font-weight: 600 !important;
}

.inner-pricing-section table tr th span {
    width: 100%;
    display: inline-block;
    font-weight: 300;
}

tbody tr td:first-child {
    background-color: #78A0FF;
    font-weight: 600;
    font-size: 18px !important;
    color: var(--white-color) !important;
}

tbody tr td {
    background-color: var(--white-color);
    font-weight: 500;
    color: #1C1B21 !important;
}

.inner-pricing-section table tr th:nth-child(1) {
    background-color: #648CFF;
}

.inner-pricing-section table tr th:nth-child(2) {
    background-color: #5A82F5;
}

.inner-pricing-section table tr th:last-child {
    background-color: #5078F5;
}

.flex-featured {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-pricing-section img {
    width: 100%;
    max-width: 24px;
}

.inner-pricing-section table tr td {
    font-size: 17px;
    padding: 20px 20px;
    border-bottom: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
}

/* Serice Block */

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.4s;
    background-color: var(--white-color);
    border: 1px solid #DEDEDE;
}

.service--block .icon--box {
    background-color: #F2F5FF;
}

.service--block:hover {
    border-color: var(--page-primary-bg);
    background-color: var(--page-primary-bg);
}

.service--block:hover h4,
.service--block:hover p {
    color: var(--white-color) !important;
}
/* Choose Block */

.choose-slider .swiper-slide  {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.choose--block {
    padding: 30px 30px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid #DEDEDE;
    background-color: var(--white-color);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choose--img img {
    width: 100%;
    object-fit: cover;
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 50px 0 0;
}

.slider-btn .swiper-button-next,
.slider-btn .swiper-button-prev {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid var(--page-primary-bg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--page-primary-bg);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:hover,
.slider-btn .swiper-button-prev:hover {
    background: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:after,
.slider-btn .swiper-button-prev:after  {
    font-size: 18px;
}

/* Hire Block */

/* .hire--slider {
    margin: -17% 0 0 31.8% !important;
} */

.hire--slider .swiper-slide  {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

/* CTA Block */

.cta--wrap {
    background-color: var(--page-primary-bg);
    border-radius: 20px;
}

.cta--content {
    width: 100%;
    height: 100%;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.cta--block {
    padding: 90px 50px;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/kotlin-images/cta-intro.webp);
    background-color: var(--page-primary-bg);
}

.cta--wrap.wrap-2 {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/kotlin-images/cta-intro-2.webp);
    background-color: var(--page-primary-bg);
}

.cta--wrapper {
    padding: 60px 90px;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/kotlin-images/cta-intro-3.webp);
    background-color: var(--page-primary-bg);
}

/* Faq */

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 32px 0;
    font-size: 22px;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }

    .banner-heading {
        font-size: clamp(2rem, 6vw, 2.7rem);
    }
}

@media only screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .button {
        width: auto !important;
    }

    .develop--block,
    .service--block {
        padding: 20px 20px;
    }

    .cta--wrap,
    .cta--block,
    .cta--wrapper {
        padding: 60px 20px;
    }

    .cta--content {
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .tick-list {
        grid-template-columns: repeat(1, 1fr);
        margin-inline: auto;
        width: fit-content;
    }

}

@media only screen  and (max-width: 767px) {

    .about-blk {
        padding: 0 0 0;
    }

    .about-wrapper {
        position: static;
        max-width: 100%;
        margin: 30px 0 0;
    }

    .inner-pricing-section table {
        border-radius: unset !important;
        padding: 0;
        border: none !important;
    }

    .inner-pricing-section table tr td:not(:last-child) {
        border-bottom: 1px solid #d5d5d5 !important;
    }

    .inner-pricing-section table tbody tr td:first-child:before {
        color: var(--white-color);
    }

    .inner-pricing-section table, thead, tbody, th, td, tr {
      display: block;
    }

    .inner-pricing-section thead {
        display: none;
    }

    .inner-pricing-section tr {
        padding: 10px 0;
        border: none !important;
    }

    .inner-pricing-section td {
        text-align: right;
        padding-left: 50% !important;
        position: relative;
        border: none !important;
        min-height: 90px;
    }

    .inner-pricing-section td::before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        width: 45%;
        text-align: left;
        font-weight: 600;
        color: var(--text-theme);
    }
}