:root {
    --page-primary-bg: #014E4E;
    --page-secondary-bg: #EAEEF1;
    --text-theme: #000000;
    --text-grey: #3F4751;
    --tick-icon: url(../images/hrm-images/check-icon.webp);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-primary {
    background: var(--page-primary-bg);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.highlight-text {
    color: var(--page-primary-bg);
}

.circle-icon,
.border-0 {
    border: none;
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.link-title,
.link-title:hover {
    text-decoration: underline !important;
    color: var(--text-theme) !important;
}

.link-white,
.link-white:hover {
    text-decoration: underline !important;
    color: var(--white-color) !important;
}

.z-1 {
    position: relative;
    z-index: 1;
}

/* Hero Section */

.hero-section {
    background-image: url('../images/hrm-images/banner-intro.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 38px;
    position: relative;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 1px auto 0 0;
    width: 26px;
    height: 26px;
    background-size: 26px;
    background-repeat: no-repeat;
}

/* Counter */

.page-counter {
    background-color: var(--page-primary-bg);
    padding: 80px 60px;
}

.counter-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 0;
}

.counter-theme {
    color: var(--white-color);
    border-right: 1.5px solid #FFFFFF80;
    padding: 0 50px;
    width: 33.33%;
}

.highlight__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: fit-content;
}

.highlight__link::after {
    content: '';
    background-image: url(../images/hrm-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);
}

/* Software Block */

.sticky-column {
    position: sticky;
    top: 140px;
}

.software-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.software-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 30px;
    border-bottom: 1px dashed var(--text-theme);
}

.software-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--text-theme);
    transition: all 0.3s;
}

.software-block:hover .software-icon {
    margin-top: 30px;
    background-color: #ffffff20;
    backdrop-filter: blur(10px);
}

.software-block:hover .link-title {
    color: var(--primary-color-600) !important;
}

/* Slider Blok */

.feature-slider .swiper-slide {
    height: auto;
}

.feature-block {
    position: relative;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.feature-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 30px 20px;
    color: var(--white-color);
}

.feature-block ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-block ul li {
    backdrop-filter: blur(8px);
    border: 1px solid var(--white-color);
    background: #FFFFFF40;
    padding: 12px 15px 12px 50px;
    border-radius: 50px;
    position: relative;
    font-size: 18px;
    transition: all 0.3s;
}

.feature-block ul li::before {
    content: '';
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid var(--white-color);
    position: absolute;
    inset: 0 auto 0 20px;
    margin: auto;
    transition: all 0.3s;
}

.feature-block ul li:hover:before {
    background-color: var(--white-color);
}

.feature-block ul li:hover {
    background: #FFFFFF50;
    backdrop-filter: blur(18px);
}

.slider-button {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 90%;
    margin: 50px 0 0;
}

.slider-arrow {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.feature-slider .swiper-pagination {
    top: unset !important;
    bottom: 14px !important;
    height: 5px !important;
    max-width: 80%;
    background: #D8D8D8;
}

.feature-slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--page-primary-bg) !important;
}

.slider-button .swiper-button-next,
.slider-button .swiper-button-prev {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: unset;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: #D8D8D8;
    margin: unset !important;
    z-index: 1 !important;
    border: 1px solid #ddd;
    transition: ease-in 0.3s;
}

.slider-button .swiper-button-next:hover,
.slider-button .swiper-button-prev:hover {
    background: var(--primary-color-600);
    border-color: var(--primary-color-600);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.slider-button .swiper-button-next:after,
.slider-button .swiper-button-prev:after {
    font-size: 16px;
}

/* Technology Block */

.technology-block {
    background-color: var(--page-primary-bg);
    color: var(--white-color);
    padding: calc(2rem + 1vw) calc(1rem + 1.5vw);
    transition: all 0.3s;
    height: 300px;
    overflow: hidden;
    display: block;
    width: 100%;
}

.technology-block.block-transparent {
    background-image: url(../images/hrm-images/technology-img-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.technology-block.block-transparent.block-2 {
    background-image: url(../images/hrm-images/technology-img-2.webp);
}

.technology-block .technology-wrap {
    height: 100%;
    position: relative;
}

.technology-block .techno-icon {
    position: absolute;
    top: 0;
    transition: all 0.3s;
}

.technology-block h4 {
    transition: all 0.3s;
    padding-top: calc(5.6rem + 3.5vw);
}

.technology-block p {
    color: var(--white-color);
    opacity: 0;
    font-size: calc(0.5rem + 0.4vw);
    line-height: 1.5;
    visibility: hidden;
    transition: all 0.3s;
    position: absolute;
    bottom: -7rem;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 120px;
    margin: 0;
}

/* Hovered Block */

.technology-block.block-transparent:hover {
    background-image: unset;
}

.technology-block:hover h4 {
    padding-top: 0;
}

.technology-block:hover p {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.technology-block:hover .techno-icon {
    top: -7rem;
    opacity: 0;
    visibility: hidden;
}

/* Tab Wrapper */

.tab-wrapper {
    border: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 0 0 10px;
    gap: 30px;
    overflow-x: auto;
}

.tab-wrapper::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.tab-wrapper::-webkit-scrollbar
{
	width: 5px;
    height: 5px;
	background-color: #F5F5F5;
    cursor: pointer;
}

.tab-wrapper::-webkit-scrollbar-thumb
{
	background-color: var(--text-theme);
    cursor: pointer;
}

.tab-wrapper .nav-link {
    color: var(--white-color);
    font-size: 20px;
    border-radius: 0;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    padding: 0 0 4px;
    white-space: nowrap;
}

.tab-wrapper .nav-link.active {
    background-color: transparent;
    font-weight: 600 !important;
    border-color: var(--white-color);
}

.tabs__content {
    color: var(--white-color);
}

/* Choose Block */

.choose-block {
    padding: 30px 30px;
    background: var(--white-color);
    transition: all 0.3s;
}

.choose-block:hover {
    background-color: var(--page-secondary-bg);
    transform: translateY(-5px);
}

/* Cta Block */

.cta-wrapper {
    background-image: url(../images/hrm-images/cta-intro.webp);
    background-color: var(--page-primary-bg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 70px 50px;
    text-align: center;
}


main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 32px 0;
    font-size: 24px;
}

/* Responsive */


@media (max-width: 1599px) {
    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}


@media only screen and (max-width: 1399px) {

    .page-counter {
        padding: 50px 40px;
    }

    .cta-wrapper {
        padding: 30px 30px;
    }

    .feature-block ul li {
        font-size: 13px;
    }
}

@media only screen and (max-width: 991px) {

    .page-counter {
        padding: 50px 20px;
    }

    .highlight__link {
        margin: 0 auto 30px;
    }

    .slider-button {
        max-width: 100%;
    }

    .tick-list {
        width: fit-content;
        margin-inline: auto;
    }

    .tick-list li {
        font-size: 18px;
        padding: 0 0 0 26px;
    }

    .tick-list li::before {
        inset: 6px auto 0 0;
        width: 18px;
        height: 18px;
        background-size: 18px;
    }

    .sticky-column {
        position: static;
    }

}

@media only screen   and (max-width: 767px) {

    .technology-block h4 {
        font-size: 22px;
    }

    .button {
        width: auto;
    }

    .cta-wrapper {
        padding: 50px 20px;
    }

    .counter-grid {
        justify-content: space-between;
    }

    .counter-theme {
        padding: 0 5px;
        width: 49%;
        text-align: center;
    }

    .counter-grid .counter-theme:nth-child(3) {
        border-right: 1.5px solid #FFFFFF80 !important;
    }

    .counter-grid .counter-theme:nth-child(2), .counter-grid .counter-theme:nth-child(4) {
        border: none;
    }

    .feature-block ul li::before {
        width: 12px;
        height: 12px;
        inset: 0 auto 0 14px;
    }

    .feature-block ul li {
        padding: 8px 10px 8px 38px;
        font-size: 14px;
    }

    .technology-block:hover p {
        bottom: 50px;
    }

    .tab-wrapper {
        margin-bottom: 20px !important;
    }

    .choose-block {
        padding: 20px 20px;
    }
}

@media only screen and (max-width: 475px) {

    .software-block {
        flex-direction: column;
    }

    .software-block:hover .software-icon {
        margin-top: 0;
    }

}