:root {
    --page-primary-bg: #4285F4;
    --page-secondary-bg: #2E5CA8;
    --page-fade: #FAFAFA;
    --text-theme: #1E1E1E;
    --text-grey: #58646A;
	--page-gradient: linear-gradient(90deg,rgba(41, 136, 204, 1) 0%, rgba(41, 63, 204, 1) 100%);
    --tick-icon: url(../images/negative-images/check-icon.webp);
}

.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);
}

.button-primary {
    color: var(--white-color);
    background-color: var(--page-secondary-bg) !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    border: 5px solid #E2EBFB;
    white-space: nowrap;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: var(--page-secondary-bg) !important;
}

.button svg {
    animation: pulso-effect 2s infinite;
    border-radius: 100px;
}

.sections-wrapper .text-white {
    color: var(--white-color) !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);
    }
}

h1,h2,h3,h4,h5,h6 {
    color: var(--text-theme);
}

.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 */

.banner-content {
    padding: 40px 0 80px;
}

.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(--text-theme);
}

.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;
}

section.results-section {
	background: var(--page-gradient);
}
.result-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}
.single-result-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px 50px;
    text-align: center;
}
.single-result-box h3 {
    font-weight: 400 !important;
}
.expect-list-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #FAFCFF;
}

.single-expect-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.single-expect-box .content-box p {
    padding: 0 20px;
    margin: 0;
}
.single-expect-box img {
    width: 100%;
}

section.service-section {
    background: var(--page-gradient);
}
#service-slider .swiper-slide {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: auto;
	transition: all 0.3s ease;
}
#service-slider .swiper-slide:hover {
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}
#service-slider .swiper-slide:hover h5 {
    color: #444D52 !important;
}
#service-slider .swiper-slide:hover p {
    color: #58646A !important;
}
.single-brand-box {
    border: 1px solid #293FCC;
    padding: 50px 30px;
    border-radius: 10px;
    height: 100%;
}
.your-brand-boxes {
    row-gap: 25px;
	transition: all 0.3s ease;
}
.single-brand-box:hover {
    background: var(--page-gradient);
}
.single-brand-box:hover h5, .single-brand-box:hover p {
	color:#fff !important; 
}
section.ads-section {
	background-image: url(../images/optimization-images/bg-ad.webp)
}
.num-heading span {
    background: linear-gradient(182deg,rgba(41, 136, 204, 1) 0%, rgba(41, 63, 204, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 110px;
    font-weight: 900;
	line-height:1;
}
.num-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
section.essential-elements-section {
    background-color: rgba(41, 63, 204, 0.08);
}
img.sticky-image {
    top: 0;
    position: sticky;
}
.single-right-box-essential {
    display: flex;
    align-items: flex-start;
    column-gap: 40px;
    border-radius: 10px;
    background-color: #fff;
    padding: 50px;
	margin-bottom:35px;
	transition: all 0.3s ease;
}
.single-right-box-essential img {
    flex-shrink: 0;
}
.single-right-box-essential p {
    margin: 0;
}
.single-right-box-essential:hover {
    background: var(--page-gradient);
}
.single-right-box-essential:hover h5, .single-right-box-essential:hover p {
    color: #fff;
}
section.why-choose-section {
    background: var(--page-gradient);
}
.why-choose-single p {
    margin: 0;
}
.why-choose-single img {
    flex-shrink: 0;
}
.why-choose-single {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 100%;
    padding: 20px 40px;
    align-items: center;
    column-gap: 50px;
}
.row-why-choose {
    row-gap: 40px;
}
.why-choose-single:hover {
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
.why-choose-single:hover h5, .why-choose-single:hover p{color:#000 !important;
}
.single-industrial {
    padding: 20px;
    border: 1px solid var(--page-primary-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}
.row-industrial-section {
    row-gap: 30px;
}
.single-industrial:hover {
    background: var(--page-gradient);
	box-shadow:  0 30px 40px rgba(0, 0, 0, 0.2)
}
.single-industrial:hover h5, .single-industrial:hover p {
	color:#fff; 
}
ul.country-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 0;
    margin: 0;
}
ul.country-list li {
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 10px 15px;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
}
ul.country-list li p {
    font-weight: 500;
    font-size: 15px;
    margin: 0;
}
ul.country-list li img {
    flex-shrink: 0;
}

@media (max-width:1199px) {
.result-boxes {
    gap: 30px;
}
.single-right-box-essential {
    padding: 30px;
}
.why-choose-single {
    padding: 20px 20px;
    column-gap: 30px;
}
.single-industrial {
    padding: 20px;
}
}

@media (max-width:991px) {
.tick-list {
    align-items: center;
}
section.hero-intro .row {
    row-gap: 30px;
}
.single-result-box {
    padding: 20px 30px;
}
.single-expect-box .content-box p {
    padding: 0 10px;
}
#service-slider .swiper-slide {
    padding: 20px;
}
.single-brand-box {
    padding: 30px 20px;
}
.process-lists {
    row-gap: 30px;
}
img.sticky-image {
    display: none;
}
.single-right-box-essential {
    padding: 20px;
}
.single-right-box-essential {
    column-gap: 20px;
    margin-bottom: 20px;
}
section.why-choose-section .col-lg-4 {
    display: none;
}
.row-why-choose {
    row-gap: 20px;
}
ul.country-list {
    grid-template-columns: 1fr 1fr 1fr;
	gap:20px;
}
}

@media (max-width:767px){
	.result-boxes {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.expect-list-section {
    grid-template-columns: 1fr;
    background-color: transparent;
    row-gap: 20px;
}
.num-heading span {
    font-size: 80px;
}
ul.country-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
}