/*!
Theme Name: InfinityLife
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: infinitylife
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

InfinityLife is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
- Normalize
- Box sizing
# Base
- Typography
- Elements
- Links
- Forms
## Layouts
# Components
- Navigation
- Posts and pages
- Comments
- Widgets
- Media
- Captions
- Galleries
# plugins
- Jetpack infinite scroll
# Utilities
- Accessibility
- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    font-size: 20px;
    /* letter-spacing: 0.1em; */
}

p {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
}

.p-lg {
    font-weight: 300;
    font-size: 27px;
    font-family: "Manrope", sans-serif;
    text-transform: none;
}

.p-md {
    font-weight: 300;
    font-size: 22px;
}

.white-text {
    color: #fff;
}

h1,
.h1 {
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    font-size: 62px;
    line-height: 1.1;
}


h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    font-size: 50px;
    color: #0A1A30;
}

h3 {
    font-weight: 300;
    font-size: 50px;
    margin-bottom: 20px;
}

.space {
    height: 100px;
}

.row-reverse {
    flex-direction: row-reverse;
}

.spaceSm {
    height: 50px;
}

.rounded {
    border-radius: 50px !important;
}

.img-90 {
    width: 90%;
}

.img-100 {
    width: 100%;
}

.img-120 {
    width: 120%;
}

a.custom-logo-link {
    display: block;
    max-width: 300px;
    margin: auto;
}

a.custom-logo-link img {
    max-width: 100%;
    height: auto;
}

.leftSide {
    margin-left: -20%;
}

.content-padding {
    padding-bottom: 80px;
    padding-top: 80px;
}

.padding-around {
    padding: 30px;
}

header.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /*  background-color: #0A1A30; */
    padding: 20px 0px;

}

header.header .container {
    max-width: 1500px;
}

header.header.sticky {
    background: rgb(4 4 32 / 60%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

ul.nav {
    justify-content: flex-end;
}

ul.nav li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
}

ul.nav li a:hover,
ul.nav li.current-menu-item a {
    color: #008AFC;
}

ul.nav li.menu-item {
    position: relative;
    padding: 10px 15px;
    font-size: 18px;
}

ul.nav li.menu-item.btn.btn-primary {
    padding: 12px 30px;
}

ul.nav li.menu-item.btn.btn-primary:hover {
    color: #000;
}

ul.nav li.menu-item.btn.btn-primary:hover a {
    color: #000;
}

ul.nav li ul {
    position: absolute;
    margin: 0px;
    padding: 0px;
    top: 48px;
    width: 130px;
    display: none;
    list-style: none;
    background-color: #0A1A30B5;
}

ul.nav li:hover ul {
    display: block;
}

ul.nav li.menu-item ul li {
    padding: 15px 20px;
}

ul.nav li.menu-item ul.sub-menu li.lang-item {
    padding: 10px 20px;
}

ul.nav li.menu-item-has-children>a:after {
    content: '';
    width: 8px;
    height: 8px;
    display: flex;
    border-left: 2px solid;
    border-bottom: 2px solid;
    border-color: #fff;
    transform: rotate(-45deg);
    margin-left: 10px;
    margin-top: -5px;
}

.font-light {
    font-weight: 300;
}

.brandBg {
    background-color: #F7F5F0;
}


/* animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal:nth-child(6) {
    transition-delay: 0.6s;
}

.reveal:nth-child(7) {
    transition-delay: 0.7s;
}

.reveal:nth-child(8) {
    transition-delay: 0.8s;
}

.reveal:nth-child(9) {
    transition-delay: 0.9s;
}

.reveal:nth-child(10) {
    transition-delay: 1s;
}

.reveal:nth-child(11) {
    transition-delay: 1.1s;
}

.reveal:nth-child(12) {
    transition-delay: 1.2s;
}

.reveal:nth-child(13) {
    transition-delay: 1.3s;
}

.reveal:nth-child(14) {
    transition-delay: 1.4s;
}

.reveal:nth-child(15) {
    transition-delay: 1.5s;
}



.reveal-top {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-top.active {
    opacity: 1;
    transform: translateY(0);
}

/* animation */




.banner {
    background-image: url(https://onlinewebsolutions.in/InfinityLife/wp-content/uploads/2026/05/banner.png);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    position: relative;
    background-size: cover;
    padding-top: 5vh;
    overflow: hidden;
}

.banner:after {
    content: '';
    width: 100%;
    height: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.banner p {
    margin-bottom: 20px;
    margin-top: 20px;
}

.banner .container {
    position: relative;
    z-index: 1;
}

.innerBanner {
    min-height: 60vh;
    padding-top: 20vh;
}

.bannerContent {
    position: relative;
    z-index: 1;
    max-width: 70%;
    text-align: left;
}


.banner .p-lg {
    margin-bottom: 20px;
    margin-top: 20px;
}


.darkBg {
    background-color: #171717;
    color: #fff;
}


.btn {
    color: #fff;
    border: 0px;
    border-radius: 30px;
    padding: 15px 40px;
    text-transform: uppercase;
    background-color: rgb(255 255 255 / 20%);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn+.btn {
    margin-left: 15px;
}

.btn:hover {
    background-color: #fff;
    color: #000;
}

.btn.btn-primary {
    background-color: #008AFC;
    color: #fff;
}

.btn.btn-primary:hover {
    background-color: #fff;
    color: #000;
}

.btn.btn-pro {
    border: 1px solid #0A1A30;
    color: #0A1A30;
    background-color: transparent;
}

.btn.btn-pro:hover {
    background-color: #0A1A30;
    color: #fff;
}


.style2 {
    font-family: "Libre Bodoni", serif;
    font-style: italic;
    font-weight: normal;
    color: #014976;
    font-size: 36px;
    font-weight: 700;
}


footer.footer {
    background-color: #0A1A30;
    color: #fff;

    background-image: url('https://onlinewebsolutions.in/InfinityLife/wp-content/uploads/2026/05/footer.png');
    background-position: center;
    background-size: cover;
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 40%);
    padding-top: 50px;
}

#footer-menu {
    margin: 0px;
    display: flex;
    padding: 0px;
    list-style: none;
    font-size: 16px;
}

#footer-menu li {
    margin: 0px 15px;
}

#footer-menu li a {
    color: #fff;
    text-decoration: none;
}

#footer-menu li a:hover,
#footer-menu li.current-menu-item a {
    color: #008AFC;
}

.socialLink {
    display: flex;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.socialLink li {
    margin-left: 15px;
}

.linkBlock {
    margin: 40px 0px;
}

.linkBlock a {
    color: #fff;
    text-decoration: none;
}

.linkBlock a:hover {
    text-decoration: underline;
}

.socialLinks {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 20px 0px;
    padding: 0px;
}

.socialLinks li {
    margin: 0px 10px;
}

.copyright {
    color: #fff;
    text-align: center;
    padding: 30px 0px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.copyright span a {
    color: #fff;
    text-decoration: none;
}

.copyright span a:hover {
    text-decoration: underline;
}

.copyright span a+a {
    margin-left: 20px;
}

.block-row {
    display: flex;
    justify-content: space-between;
}

a.custom-logo-link {
    margin: 0px;
}

.pointList {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.pointList li {
    margin-bottom: 40px;
}

.pointList li h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.gradient-bg {
    background: linear-gradient(0deg, rgb(164 201 255 / 40%) 0%, rgba(255, 255, 255, 1) 100%);
}

.gradient-bg2 {
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgb(164 201 255 / 40%) 100%);
    position: relative;
}

.gradient-bg2:before {
    content: '';
    width: 100%;
    height: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: #a4c9ff66;
    position: absolute;
    top: -50px;
    left: 0;
}

.arrowLink {
    color: #008AFC;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.arrowLink:after {
    content: '';
    background-image: url(https://onlinewebsolutions.in/InfinityLife/wp-content/uploads/2026/05/arrow-right.svg);
    display: inline-block;
    width: 20px;
    height: 20px;
    background-position: center;
    vertical-align: middle;
    background-size: contain;
    margin-left: 10px;
}

.arrowLink:hover {
    text-decoration: underline;
}

.transparentBox {
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    border: 4px solid #fff;
    border-radius: 30px;
    padding: 50px 30px;
    margin-bottom: 15px;
    margin-top: 15px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.transparentBox.smallBlock {
    border-color: #008afc14;
}

.transparentBox.smallBlock .infoBlock {
    min-height: 120px;
}

.transparentBox h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0px;
}

.transparentBox p {
    font-size: 18px;
}

.transparentBox .iconBlock {
    background-color: #fff;
    /*  background-color: #F3F8FF; */
    width: 80px;
    height: 80px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.transparentBox:hover {
    border-color: rgb(0 138 252 / 20%);
}

.transparentBox:hover .iconBlock {
    background-color: #c6e5fe;
}

.infoBlock {
    min-height: 160px;
}

.dark-gradient-bg {
    background-image: url(https://onlinewebsolutions.in/InfinityLife/wp-content/uploads/2026/05/darkbg.png);
    background-position: center;
    background-size: 100% 100%;
    color: #fff;
}

.iconList {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.iconList li {
    position: relative;
    padding-left: 110px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.iconList img {
    width: 80px;
    height: 80px;
    padding: 20px;
    background-color: #FFFFFF1A;
    border-radius: 15px;
    border: 2px solid #008AFC;
    position: absolute;
    left: 0;
    top: 0;
}

.width-60 {
    max-width: 60%;
}

.thumbBlock {
    background-image: url(https://onlinewebsolutions.in/InfinityLife/wp-content/uploads/2026/05/Profil-Biohacker-Premium-1.png);
    background-position: center top;
    background-size: cover;
    padding: 30px;
    border-radius: 30px;
    margin: 3%;
    position: relative;
    color: #fff;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: end;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.infoContent {
    position: relative;
}

.thumbBlock:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #041320 0%, #04132000 100%);
    opacity: 0.8;
    transition: all 0.5s ease-in-out;
}

.thumbBlock h3 {
    font-size: 34px;
    transition: all 0.2s ease-in-out;
}

.thumbBlock p {
    font-size: 18px;
}

.hideContent {
    max-height: 1px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.thumbBlock:hover .hideContent {
    max-height: 300px;
}

.thumbBlock:hover h3 {
    font-size: 24px;
}

.thumbBlock:hover:before {
    background: linear-gradient(0deg, #031937 0%, #04132000 100%);
    opacity: 0.9;
}

.sliderArrow {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: end;
    width: 100%;
}

.sliderArrow li {
    border: 2px solid #00000099;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-left: 20px;
    cursor: pointer;
}

.sliderArrow li.next {
    transform: rotate(180deg);
}

.sliderArrow li:hover {
    background-color: #000;
}

.sliderArrow li:hover img {
    filter: contrast(1) invert(1);
}

.sliderArrow li.slick-disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.profileBlock {
    background-color: #EBF3FF;
    border-radius: 40px;
    padding: 25px;
}

.profileBlock .highLight {
    background-color: #fff;
    font-size: 18px;
    padding: 12px 24px;
    display: inline-block;
    border-radius: 20px;
    line-height: 1;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 30px;
}

.checkList {
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-bottom: 30px;
}


.checkList li {
    position: relative;
    margin-bottom: 10px;
}


.checkList li:before {
    content: '';
    background-image: url(https://onlinewebsolutions.in/InfinityLife/wp-content/uploads/2026/06/checkbox.svg);
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    vertical-align: -5px;
    margin-right: 10px;
}

.blueBox {
    background-color: #EAFEFF;
    padding: 20px;
    border-radius: 20px;
    max-width: 70%;
}

.blueBox .checkList {
    margin: 0px;
    margin-top: 20px;
}

.blueBox .checkList li,
.blueBox p {
    margin-bottom: 5px;
}

.blueBox .checkList li:before {
    background-image: url(https://onlinewebsolutions.in/InfinityLife/wp-content/uploads/2026/06/checkbox1.svg);
}

.whiteBoxBlock {
    background-color: #EAF2FF;
    padding: 40px;
    border-radius: 40px;
}

.whiteBoxBlock h3 {
    font-size: 24px;
    font-weight: 700;
}

.whiteBoxBlock ul {
    margin: 0px;
    list-style: none;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.whiteBoxBlock ul li {
    width: 48%;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin: 10px 0px;
    align-items: center;
}

.whiteBoxBlock ul li img {
    width: 40px;
    height: auto;
    display: inline-block;
    margin-bottom: 60px;
    margin-top: 20px;
}

.whiteBoxBlock.itemRow ul {
    flex-wrap: nowrap;
}

.whiteBoxBlock.itemRow ul li {
    width: 19%;
}

.itemCenter ul {
    justify-content: center;
}

.itemCenter ul li {
    margin-left: 1%;
    margin-right: 1%;
}

.appScreens {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.iconTopPosition.iconList img {
    position: initial;
    margin-bottom: 20px;
}

.iconTopPosition.iconList li {
    padding: 0px;
    padding-right: 50px;
}

.memberCard {
    background: linear-gradient(0deg, rgb(164 201 255 / 40%) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid #A4C9FF80;
    padding: 40px 20px;
    border-radius: 30px;
    text-align: center;
}

.memberCard h4 {
    margin-top: 30px;
    font-weight: 600;
    font-size: 24px;
}

.iconList.lightBgList img {
    border: 2px solid #ffffff;
    background: linear-gradient(180deg, rgb(255 255 255 / 30%) 0%, rgb(255 255 255) 100%);
}

ul.nav li.menu-item.pll-parent-menu-item {
    background-color: #FFFFFF1A;
    border-radius: 30px;
    padding: 8px;
    width: 85px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

#secondary-menu {
    align-items: center;
}


ul.nav li.menu-item.pll-parent-menu-item>a:before {
    content: '';
    background-image: url(https://www.servicesinformatique.ch/wp-content/uploads/2026/06/lang.svg);
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: contain;
    margin-right: 6px;
}


ul.nav li.menu-item.pll-parent-menu-item ul {
    top: 40px;
    width: initial;
    border-radius: 25px;
}



.videoBlock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    z-index: 0;
}

.videoBlock:before {
    content: '';
    background-color: #008AFC;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    mix-blend-mode: color-burn;
}

.videoBlock video {
    object-fit: cover;
    width: 120%;
    height: 100%;
    position: absolute;
    top: 10%;
    left: 10%;
    transform: translate(-10%, -10%);
}


.video-container {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.custom-video {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    z-index: 2;
    background-image: url(https://www.servicesinformatique.ch/wp-content/uploads/2026/06/play.svg);
    width: 130px;
    height: 130px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 20px 10px rgb(0 0 0 / 30%);
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 25px rgba(0, 138, 252, 0.6);
}

.videoBg{
    background-color: #041320;
    height: 600px;
    object-fit: cover;
}