:root {
    --page-primary-bg: #001841;
    --page-secondary-bg: #002768;
    --page-gradient: linear-gradient(90deg, #002768 0%, #AD0001 100%);
    --page-fade: #1778be;
    --text-theme: #1E1E1E;
    --text-grey: #4B5563;
    --tick-icon: url(../images/digital-images/check-icon.webp);
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.page-gradient {
    background: var(--page-gradient);
}

.page-fade {
    background-color: var(--page-fade);
}

.blue-bg {
    background-color: #e5f0f8 !important;
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey);
}

.link-white,
.link-white:hover {
    text-decoration: underline !important;
    color: var(--white-color) !important;
}

.highlight {
  background: var(--page-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.button-primary {
    color: var(--white-color);
    background: var(--page-gradient) !important;
    font-weight: 600 !important;
    text-align: left !important;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background: var(--page-gradient) !important;
}

.button-secondary svg {
    animation: pulso-effect-2 2s infinite !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--page-secondary-bg) !important;
    font-weight: 600 !important;
    background-color: var(--white-color) !important;
    text-align: left !important;
}

.button svg {
    animation: pulso-effect 2s infinite;
    border-radius: 100px;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.link-title,
.link-title:hover {
    text-decoration: underline !important;
    color: var(--text-theme) !important;
}

.z-1 {
    z-index: 1;
    position: relative;
}

@keyframes pulso-effect {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulso-effect-2 {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 50, 111, 0.8);
        box-shadow: 0 0 0 0 rgba(0, 57, 126, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

h1,h2,h3,h4,h5,h6 {
    color: var(--text-theme) !important;
}

.section-wrapper h1,
.section-wrapper .h1 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h2,
.section-wrapper .h2 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h3,
.section-wrapper .h3 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h4,
.section-wrapper .h4 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h5,
.section-wrapper .h5 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h6,
.section-wrapper .h6 {
    font-family: 'Gilroy' !important;
}

p {
    font-family: 'Gilroy' !important;
}

.section-wrapper .w-normal {
    font-weight: 400 !important;
}

/* Home Block */

.hero-intro {
    background-image: url(../images/digital-images/banner-intro.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0 160px;
}

.tick-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 15px;
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 34px;
    position: relative;
    color: var(--white-color);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 2px auto 0 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Logo Block */

.logo-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 20px;
    box-shadow: 0px 0px 20px 0px #2B2B2B1A;
    border-radius: 10px;
    margin: -70px 0 0;
    background-color: var(--white-color);
}

.logo-block {
    padding: 20px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo-block:not(:last-child) {
    border-right: 1px solid #ddd;
}

.logo-block img {
    display: flex;
    align-items: center;
}

/* About Block */

.plan-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.plan-block {
    display: flex;
    align-items: baseline;
    gap: 20px;
    box-shadow: 0px 0px 14px 0px #99999933;
    background: var(--white-color);
    padding: 20px 20px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.plan-block::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: var(--page-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    z-index: -1;
}

.plan-block:hover::before {
    opacity: 1;
}

.plan-block a {
    border-right: 1px solid #ddd;
    padding: 0 20px 0 0;
}

/* Small Block */

.small-block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    border: 1px solid #EFEFEF;
    background-color: var(--white-color);
    transition: all 0.3s;
}

.small-block h4 {
    line-height: 2;
}

.small-block:hover {
    box-shadow: 0px 0px 14px 0px #99999933;
}

.point-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    background: #FFFFFF47;
    backdrop-filter: blur(34px);
    padding: 30px 30px;
    border-radius: 20px;
    gap: 20px
}

.point-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon--box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background-color: var(--page-secondary-bg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.3s;
}

/* Business Block */

.busniess-block {
    position: relative;
    padding: 30px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: var(--white-color);
    border: 1px solid #E5E5E5;
    transition: all 0.3s
}

.busniess-block:hover {
    background-color: var(--page-secondary-bg);
    border-color: var(--page-secondary-bg);
}

.busniess-block:hover .icon--box {
    background-color: var(--white-color);
}

.busniess-block .icon--box img {
    filter: invert() brightness(30);
    transition: all 0.2s;
}

.busniess-block:hover .icon--box img {
    filter: unset;
}

.busniess-block:hover h4,
.busniess-block:hover p,
.busniess-block:hover .link-title {
    color: var(--white-color) !important;
}

/* Industry Block */

.industry-block {
    padding: 30px;
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    background-color: var(--white-color);
}

.industry-block::after {
    content: "";
    position: absolute;
    height: 1px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgb(102 102 102 / 10%) 0%, #E0E0E0 47.12%, rgb(102 102 102 / 10%) 100%);
}

.industry-block::before {
    content: "";
    position: absolute;
    width: 1px;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgb(102 102 102 / 10%) 0%, #E0E0E0 47.12%, rgb(102 102 102 / 8%) 100%);
}

.row > .col-lg-3:nth-child(4n) .industry-block::before,
.row > .col-lg-3:nth-child(12) .industry-block::before,
.row > .col-lg-3:nth-child(n+9) .industry-block::after {
    display: none;
}

/* Process Block */

.sticky-column {
    position: sticky;
    top: 180px;
}

.process-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-block {
    display: flex;
    padding: 30px;
    border-radius: 20px;
    gap: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    background-color: var(--white-color);
}

.hero-img {
    -webkit-animation: hero-mover 2s infinite alternate;
}

@-webkit-keyframes hero-mover {

    0% { 
        transform: translateY(0);
    }

    100% { 
        transform: translateY(-20px);
    }
}

/* 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 {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    background: var(--white-color);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.choose-block:hover {
    box-shadow: 0px 10px 20px 0px #222d2b22;
}

.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-secondary-bg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--page-secondary-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-secondary-bg);
    border-color: var(--page-secondary-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;
}

/* Link Block */

.link-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 20px;
    border-radius: 10px;
    background: #979aff1c;
    position: relative;
    color: #0B0C0D !important;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.link-box svg {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
    transform: rotate(40deg);
    transform-origin: center;
    transition: transform .2s;
}

.link-box:hover {
    background: var(--page-secondary-bg) !important;
    color: var(--white-color) !important;
}

.link-box:hover svg {
    transform: rotate(0deg);
}

.link-box:hover svg path {
    fill: var(--white-color);
    transition: all 0.3s;
}

/* CTA */

.cta-intro {
    background-image: url(../images/digital-images/cta-intro.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-block {
    background: var(--page-gradient);
}

.cta-blk {
    background-image: url(../images/dubai-images/cta-blk.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 90px;
    border-radius: 20px;
    overflow: hidden;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.section-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 26px !important;
}

/* Responsive */

@media only screen and (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }
    
    .padding-right {
        --page-width: 1200px !important;
        padding-right: calc(50% -(var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 991px) {

    .tick-list {
        width: fit-content;
        margin-inline: auto;
    }

    .tick-list li::before {
        inset: 0px auto 0 0;
        width: 20px;
        height: 20px;
    }

    .tick-list li {
        padding: 0 0 0 28px;
        font-size: 15px !important;
    }
    
    .logo-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .logo-block {
        padding: 10px 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        border: none !important;
    }

    .point-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 20px;
    }

    .point-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-wrapper .industry-block {
        border: 1px solid #E0E0E0 !important;
    }

    .section-wrapper .industry-block::before,
    .section-wrapper .industry-block::after {
        content: unset;
    }

    .busniess-block,
    .small-block,
    .choose-block,
    .process-block {
        padding: 20px 20px;
        border-radius: 20px;
    }

    .industry-block {
        padding: 20px 20px;
    }

    .faq-section .accordion-button {
        gap: 20px;
    }

    .section-wrapper .spacer-xl {
        padding: 70px 0;
    }

    .hero-intro {
        padding: 70px 0 120px;
    }

}

@media only screen and (max-width: 767px) {

    .point-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .plan-block {
        flex-direction: column;
    }

    .plan-block a {
        border: none;
        padding: 0;
    }

    .process-block {
        flex-direction: column;
    }
    
    .mb-50 {
        margin-bottom: 30px !important;
    }

    .section-wrapper .new-faq .accordion-item h2.accordion-header button {
        font-size: 19px !important;
        line-height: 30px;
    }
}