
:root {
    font-size: 16px;

    /* --color-primary-green-100: #F9FFFF; */
    --color-primary-green-100: #E5FCFA;
    --color-primary-green-200: #C2E0DE;
    --color-primary-green-400: #37B4A7;
    --color-primary-green-700: #0D8376;

    --color-primary-light-green-100: #AAE9CD;
    --color-primary-light-green-400: #65BA94;
    --color-primary-light-green-700: #28885D;

    --color-primary-black-100: #F7F7F7;
    --color-primary-black-200: #D4D4D4;
    --color-primary-black-400: #727272;
    --color-primary-black-700: #333333;

    --color-secondary-orange-100: #FFE0CA;
    --color-secondary-orange-400: #FF8D4E;
    --color-secondary-orange-700: #F27731;
    --color-secondary-orange-900: #B6520B;

    --color-status-info-200: #E3F5FF;
    --color-status-info-500: #2F97ED;
    --color-status-info-700: #0F62A8;

    --color-status-warning-200: #FEFCBF;
    --color-status-warning-500: #FFC93E;
    --color-status-warning-700: #9B6616;

    --color-status-error-100: #FFF5F5;
    --color-status-error-200: #FED7D7;
    --color-status-error-500: #DB3131;
    --color-status-error-700: #AE1616;

    --color-status-success-200: #C9F3DA;
    --color-status-success-500: #2FBE2C;
    --color-status-success-700: #067503;

    --color-status-alert-200: #FEE5BF;
    --color-status-alert-500: #E39D35;
    --color-status-alert-700: #754703;

    --color-primary-green: var(--color-primary-green-400);
    --color-primary-light-green: var(--color-primary-light-green-400);
    --color-primary-dark: var(--color-primary-black-700);
    --color-secondary-orange: var(--color-secondary-orange-400);

    --size-xs: 0.75rem;
    --size-sm: 0.875rem;
    --size-base: 1rem;

    --size-lg: 1.125rem;
    --size-xl: 1.25rem;
    --size-2xl: 1.5rem;
    --size-3xl: 1.875rem;
    --size-4xl: 2.25rem;
    --size-5xl: 2.5rem;
    --size-6xl: 3rem;

    --button-large: var(--size-base);
    --button-medium: var(--size-sm);
    --button-small: var(--size-xs);

    --shadow-base: 0px 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0px 4px 6px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0px 2px 4px rgba(0, 0, 0, 0.06);

    --font-poppins: 'Poppins', Arial, Helvetica, sans-serif;
    --font-rubik: 'Rubik', 'Poppins', Arial, Helvetica, sans-serif;
}

.only-mobile {
    display: none !important;
}

html, body {
    overflow-x: hidden;
}

body {
    padding-top: 96px;
    font-family: var(--font-poppins);
    color: var(--color-primary-dark);
}

section {
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    font-family: var(--font-rubik);
}

h1 { font-size: var(--size-6xl); }
h2 { font-size: var(--size-5xl); }
h3 { font-size: var(--size-3xl); }
h4 { font-size: var(--size-2xl); }
h5 { font-size: var(--size-xl); }
h6 { font-size: var(--size-lg); }

h1 {
    line-height: 1.25;
	color: var(--color-secondary-orange);
}

h2, h3 {
    line-height: 1.333;
    color: var(--color-primary-green);
}

p {
    font-size: 1rem;
    line-height: 1.75;
}

a {
    font-size: inherit;
    color: inherit;
}

img {
    user-select: none;
}

.icon {
    display: inline-block;
    width: 100%;
    height: 128px;
    max-width: 128px;
    max-height: 128px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


/* Buttons */
.buttons {
    margin-top: 1.5rem;
}

.btn {
	position: relative;
    padding: 0.625em 1.25em;
    font-size: var(--size-sm);
    font-family: var(--font-rubik);
    font-weight: 400 !important;
    color: #FFFFFF !important;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    background-color: var(--color-secondary-orange);
    border-radius: 2rem;
}

.btn::after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    height: 100%;
    width: 32px;
    background-color: transparent;
    background-image: url(../../images/icons/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    transform: translate3d(0, 0, 0);
    transition: inherit;
    opacity: 0;
}

.btn:hover {
    background-color: var(--color-secondary-orange-700);
}

.btn:active {
    background-color: var(--color-secondary-orange-900);
}

.btn:hover,
.btn:active {
    padding-right: calc(1.5em + 24px);
    box-shadow: none !important;
}

.btn:hover::after,
.btn:active::after {
    transform: translate3d(-10px, 0, 0);
    opacity: 1;
}

.btn,
.btn:hover,
.btn:active {
    transition: all .2s;
}

.btn.collapsed {
	min-width: 50px;
	height: 30px;
}

.btn.collapsed::after {
	right: 50%;
	background-image: url(../../images/icons/arrow-right-long.svg);
	transform: translate3d(50%, 0, 0);
	opacity: 1;
}

.btn.collapsed:hover {
	min-width: 140px;
}

.btn.collapsed:hover::after {
	right: 5px;
	transform: translate3d(0, 0, 0);
}

.btn.collapsed > span {
	position: absolute;
	display: block;
	left: 5px;
	top: -50%;
	min-width: 100px;
	transform: translate3d(0, -50%, 0);
	opacity: 0;
	transition: inherit;
	pointer-events: none;
}

.btn.collapsed:hover > span {
	top: 50%;
	opacity: 1;
	pointer-events: all !important;
}

.btn.disabled {
    color: var(--color-secondary-orange);
    background-color: var(--color-secondary-orange-100) !important;
}

.btn.secondary {
    font-size: 1rem;
    color: #FFFFFF !important;
    background-color: var(--color-secondary-orange);
    transition: all .2s;
}

.btn.secondary:hover {
    background-color: var(--color-secondary-orange-700);
}

.btn.secondary:active {
    background-color: var(--color-secondary-orange-900);
}

.btn.green {
    background-color: var(--color-primary-green);
}

.btn.green:hover {
    background-color: var(--color-primary-green-700);
}

.btn.green:active {
    background-color: var(--color-primary-dark);
}

.btn.disabled {
    color: var(--color-secondary-orange) !important;
    background-color: var(--color-secondary-orange-100) !important;
}

.btn.medium {
    font-size: 0.875rem;
}

.btn.small {
    font-size: 0.75rem;
}

.btn > svg {
    margin-right: 9px;
}

.link {
    position: relative;
    padding: 0;
    font-size: 1em;
    line-height: 1.75;
    color: var(--color-primary-dark);
    background: none;
    text-decoration: none;
    border: none;
}

.link:hover,
.link-inside:hover .link {
    color: var(--color-secondary-orange) !important;
}

.link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-primary-dark);
}

.link:hover::before,
.link-inside:hover .link::before {
    width: calc(100% + 37px);
    background-color: var(--color-secondary-orange);
}

.link::after {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    right: -34px;
    width: 100%;
    height: 14px;
    background-image: url(../../images/icons/arrow-right-orange-long.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: right;
    background-size: contain;
    filter: saturate(0);
    transform: translate3d(0, -50%, 0);
    opacity: 0;
    z-index: 1;
}

.link.attach::before,
.link.attach::after {
    content: none;
}

.link:hover::after,
.link-inside:hover .link::after {
    right: -37px;
    filter: saturate(1);
    opacity: 1;
}

.link,
.link::before,
.link::after {
    transition: all .3s ease-out;
}

button.link span {
    text-decoration: underline;
}

/* Generics */
section {
    margin-top: 100px;
}

.circle {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
}

.black {
    color: var(--color-primary-dark);
    fill: var(--color-primary-dark);
}

.green {
    color: var(--color-primary-green);
    fill: var(--color-primary-green);
}

.orange {
    color: var(--color-secondary-orange);
    fill: var(--color-secondary-orange);
}

.bg-black {
    background-color: var(--color-primary-dark);
}

.bg-green {
    background-color: var(--color-primary-green);
}

.bg-orange {
    background-color: var(--color-secondary-orange);
}


/* Components: Deco line */
.deco-line {
    position: relative;
    width: 200px;
    height: 20px;
    background-color: #FFFFFF;
    box-shadow: 0px 2.28081px 4.56161px rgba(0, 0, 0, 0.25);
    border-radius: 1.125rem;
    z-index: 1;
}

.deco-line .line,
.deco-line .line-sliding,
.deco-line .line-sliding::before,
.deco-line .line-sliding::after {
    position: absolute;
    top: 50%;
    height: 35%;
    width: 48.5%;
    margin-left: 4%;
    background-color: #DADADA;
    transform: translate3d(0, -50%, 0);
    border-radius: inherit;
    z-index: 2;
}

.deco-line .line-sliding {
    left: 3%;
    margin-left: 50%;
    height: 100%;
    background-color: transparent;
}


.deco-line .line-sliding::before,
.deco-line .line-sliding::after {
    content: '';
    width: 24%;
}

.deco-line .line-sliding::after {
    left: 32%;
}


/* Components: Spinning circle with bars */
.deco-circle-bars {
    position: relative;
    width: 162px;
    height: 162px;
    background-color: var(--color-primary-green);
    background-blend-mode: multiply;
    mix-blend-mode: normal;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.25);
}

.deco-circle-bars .text-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 82px);
    height: calc(100% + 82px);
    background-image: url(../../images/deco/text-circle-green.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translate3d(-50%, -50%, 0);
    animation: spin 30s infinite linear;
}

.spectrum {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    right: 22.3%;
    bottom: 28%;
    height: 58px;
    z-index: 2;
}

.spectrum > li {
    margin: 0 4px;
    height: 100%;
    width: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 2.28081px 4.56161px rgba(0, 0, 0, 0.25);
    border-radius: 2em;
}

.spectrum > li:nth-child(2),
.spectrum > li:nth-child(4) {
    height: 60%;
}

.spectrum > li:nth-child(3) {
    height: 85%;
}

.spectrum > li:nth-child(even) {
	animation: spectrum-even 10s infinite;
}

.spectrum > li:nth-child(odd) {
	animation: spectrum-odd 10s infinite;
}

.spectrum > li:nth-child(3) {
	animation: spectrum-mid 10s infinite;
}

.spectrum > li:nth-child(1) {
	animation-delay: 0.1s;
}

.spectrum > li:nth-child(2) {
	animation-delay: 0.2s;
}

.spectrum > li:nth-child(3) {
	animation-delay: 0.3s;
}

.spectrum > li:nth-child(4) {
	animation-delay: 0.4s;
}

.spectrum > li:nth-child(5) {
	animation-delay: 0.5s;
}

@keyframes spectrum-even {
	0% { height: 60%; }
	50% { height: 100%; }
	100% { height: 60%; }
}

@keyframes spectrum-odd {
	0% { height: 100%; }
	25% { height: 60%; }
	50% { height: 100%; }
	75% { height: 42%; }
	100% { height: 100%; }
}

@keyframes spectrum-mid {
	0% { height: 85%; }
	25% { height: 55%; }
	50% { height: 70%; }
	75% { height: 40%; }
	100% { height: 85%; }
}


/* Components: Profile Card */
.profile-card,
.profile-card .profile {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.profile-card .profile {
    margin-bottom: 0;
}

.profile-card.centered {
    justify-content: center;
}

.profile-card .picture {
    display: flex;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    background-color: #F7F7F7;
    box-shadow: 0px 6px 24px rgba(7, 43, 39, 0.2);
    overflow: hidden;
}

.profile-card h5 {
    line-height: 1.33;
}

.profile-card.centered h5 {
    text-align: left;
}

.profile-card .role {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 300;
}

.profile-card .location {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: var(--size-xs);
    color: var(--color-primary-black-400);
    line-height: 2;
}

.profile-card .location .icon {
    display: inline-block;
    margin-top: -2px;
    width: 20px;
    height: 20px;
}

.container {
    max-width: 1140px;
}


/* Menu */
.header {
    position: fixed;
    top: 0;
    padding: 20px 0px;
    width: 100%;
    z-index: 100;
    background-color: #FFFFFF;
}

.header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* min-height: 76px; */
}

.header .logo {
    display: inline-block;
    width: 200px;
    height: 50px;
    background-image: url(../../images/logos/qualabs.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.header .menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 10px;
    font-family: var(--font-poppins);
}

.header .menu a {
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
    font-weight: 700;
    color: var(--color-primary-green);
    text-decoration: none;
}

.header .menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90%;
    max-width: 0;
    border: 1px solid var(--color-secondary-orange);
    border-radius: 4px;
    transform: translate3d(-50%, 0, 0);
    opacity: 0;
}

.header .menu a,
.header .menu a::after {
    transition: all .3s;
}

.header .menu a:hover,
.header .menu a:active,
.header .menu a.active {
    color: var(--color-secondary-orange);
}

.header .menu a:hover::after,
.header .menu a:active::after,
.header .menu a.active::after {
    max-width: 36px;
    opacity: 1;
}

.header .menu li {
    position: relative;
}

.header .menu li ul.submenu {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    top: calc(100% + 4px);
    padding-top: 14px;
    padding-bottom: 14px;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: calc(100% + 32px);
    background-color: #FFFFFF;
    box-shadow: 0px 10px 18px rgba(37, 150, 138, 0.2);
    border-top: 2px solid var(--color-primary-green);
    border-radius: 6px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transform: translate3d(0, -10px, 0);
    opacity: 0;
    transition: all .3s;
    pointer-events: none;
    z-index: 1;
}

.header .menu li ul.submenu::after {
    position: absolute;
    content: '';
    display: block;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.header .menu li:hover ul.submenu,
.header .menu li:has(:hover) ul.submenu,
.header .menu li:hover ul.submenu:hover {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: all;
}

.header .menu li:has(.submenu a.active):hover > a.active {
    color: var(--color-primary-green);
}

.header .menu li ul.submenu li {
    min-height: 1em;
    text-wrap-mode: nowrap;
}

.header .menu-toggle {
    display: none;
}



/* Hero */
.hero {
    margin-top: 0;
}

.hero .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.hero .container > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    margin: 80px auto;
    width: 50%;
    min-height: 480px;
}

.hero .container > .side-content {
    align-items: flex-start;
    width: 60%;
}

.hero .subtitle {
    margin-top: 1.25rem;
}

.hero .buttons {
    margin-top: 2.75rem;
}


/* Slick slider */
.slick-dots li {
    margin: 0 2px;
}

.slick-dots li button:before {
    content: '';
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary-black-200);
    border-radius: 50%;
    opacity: 1;
    transition: all .3s ease-out;
    transform: translate3d(-50%, -50%, 0);
}

.slick-dots li.slick-active button:before {
    width: 10px;
    height: 10px;
    background-color: var(--color-primary-green);
}



/* Footer */
.footer {
    position: relative;
    padding-top: 8%;
    padding-bottom: 52px;
    color: #FFFFFF;
    background-image: url(../../images/deco/wave-footer.svg);
    background-repeat: no-repeat;
    background-position-y: top;
    background-position-x: center;
    background-size: 100%;
    overflow: hidden;
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: min(50%, 50vw);
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-green);
    z-index: -1;
}

.footer hr {
    margin-top: 45px;
    margin-bottom: 35px;
    height: 4px;
    background-color: var(--color-primary-green-200);
    border-radius: 6px;
    border: none;
    box-shadow: none;
}

.footer h2 {
    color: #FFFFFF;
}

.footer a {
    text-decoration: none;
}

.footer a.main {
    font-weight: bold;
}

.footer .side-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    row-gap: 55px;
}

.footer .side-bottom .info {
    min-width: 360px;
    font-size: 14px;
}

.footer .side-bottom .info .logo {
    margin-bottom: 35px;
}

.footer .side-bottom .info ul {
    line-height: 2.2;
}

.footer .side-bottom .info ul li {
    color: var(--color-primary-green-200);
}

.footer .side-bottom .info ul li b {
    font-weight: 600;
}

.footer .side-bottom .footer-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    column-gap: 20px;
}

.footer .side-bottom .footer-links .links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    font-size: var(--size-xs);
}

.footer .side-bottom .footer-links ul.links + ul.links {
    margin-top: 20px;
}

.footer .side-bottom .footer-links .links.links-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.footer .side-bottom .footer-links .links > li {
    flex: 1;
}

.footer .side-bottom .footer-links .links li a {
    display: inline-block;
    margin-bottom: 1em;
    min-height: 1em;
    max-width: 160px;
}

.footer .side-bottom .footer-links .links li a:hover {
    color: inherit;
    text-decoration: underline;
}

.footer .rrss {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.footer .rrss .icon {
    width: 32px;
    height: 32px;
}

.footer .rrss .icon.linkedin {
    background-image: url(../../images/icons/linkedin.svg);
}

.footer .rrss .icon.instagram {
    background-image: url(../../images/icons/instagram.svg);
}

.footer .rrss .icon.youtube {
    background-image: url(../../images/icons/youtube.svg);
}

/* Flags */
.flag-uk {
    background-image: url(../../images/icons/flag-uk.png);
}

.flag-us {
    background-image: url(../../images/icons/flag-us.png);
}

.flag-ca,
.flag-canada {
    background-image: url(../../images/icons/flag-canada.png);
}

.flag-si,
.flag-slovenia {
    background-image: url(../../images/icons/flag-slovenia.png);
}

.hidden {
    display: none !important;
}

/* Responsive */
@media screen and (min-width: 769px) {
    .footer .rrss {
        margin-top: -100px;
    }
}

@media screen and (max-width: 1100px) {
    .header {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    .header.open-menu {
        padding-bottom: 44px;
        box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
    }

    .header .container,
    .header .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .header .container {
        padding-left: 24px;
        padding-right: 32px;
    }

    .header .container .header-top {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .header .container .header-top::after {
        content: '';
        position: absolute;
        display: block;
        bottom: -16px;
        left: 50%;
        width: 0;
        height: 1px;
        background-color: var(--color-primary-green);
        transform: translate3d(-50%, 0, 0);
        opacity: 0;
        transition: all .4s;
    }

    .header.open-menu .container .header-top::after {
        width: 100%;
        opacity: 1;
    }

    .header .menu {
        display: none;
        margin-top: 36px;
        gap: 0;
        width: 100%;
        pointer-events: none;
        opacity: 0;
        transition: all .5s;
    }

    .header.open-menu .menu {
        display: flex;
        opacity: 1;
        pointer-events: all;
    }

    .header .menu li,
    .header .menu a {
        display: block;
        width: 100%;
        line-height: 1;
    }

    .header .menu a {
        padding: 12px;
        padding-left: 0;
        font-size: var(--size-xl);
        background-image: url(../../images/icons/arrow-right-green-bold.svg);
        background-repeat: no-repeat;
        background-position-y: center;
        background-position-x: right;
        background-size: 10px;
    }

    .header .menu a.btn {
        display: inline-block;
        width: unset;
        margin-top: 40px;
        padding: 0.72em 1.45em;
        font-size: var(--size-sm);
        background-image: none;
    }

    .header .menu a:hover::after,
    .header .menu a:active::after,
    .header .menu a.active::after {
        content: none;
    }

    .header .menu li ul.submenu {
        position: relative;
        top: unset;
        padding-top: unset;
        padding-left: 20px;
        box-shadow: unset;
        transform: unset;
        opacity: 1;
    }

    .header .menu li:has(.submenu a.active) > a.active {
        color: var(--color-primary-green);
    }

    .header .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-right: -16px;
        width: 44px;
        height: 34px;
    }

    .header .menu-toggle i {
        position: relative;
    }

    .header .menu-toggle i::before,
    .header .menu-toggle i::after {
        content: '';
        position: absolute;
        left: -1.5px;
        transform: rotate(0deg);
    }


    .header .menu-toggle i,
    .header .menu-toggle i::before,
    .header .menu-toggle i::after {
        display: block;
        width: 22px;
        height: 0;
        border: 1.5px solid var(--color-primary-dark);
        border-radius: 4px;
        transition: all .6s;
        transform-origin: top left;
    }

    .header .menu-toggle i::before {
        top: -8px;
    }

    .header .menu-toggle i::after {
        top: unset;
        bottom: -8px;
    }

    .header.open-menu .menu-toggle i::before {
        top: -10px;
        left: 2px;
        transform: rotate(45deg);
    }

    .header.open-menu .menu-toggle i::after {
        left: 0.5px;
        transform: rotate(-45deg);
    }

    .header.open-menu .menu-toggle i {
        border-color: transparent;
    }

}

@media screen and (max-width: 768px) {

    .only-desktop {
        display: none !important;
    }

    .only-mobile {
        display: block !important;
    }

    h1 { font-size: var(--size-4xl); line-height: 1.2; }
    h2 { font-size: var(--size-3xl); }
    h3 { font-size: var(--size-2xl); }
    h4 { font-size: var(--size-xl); }

    .btn.main {
        font-size: var(--size-base);
    }

    .header .logo {
        width: 115px;
        height: 26px;
    }

    /* Footer */
    .footer {
        padding-top: 100px;
        padding-bottom: 124px;
        background-image: url(../../images/deco/wave-footer-mobile.svg);
        background-size: cover;
    }

    .footer .side-bottom {
        align-items: flex-start;
    }

    .footer .side-bottom .info {
        margin-bottom: 50px;
    }

    .footer .side-bottom .footer-links,
    .footer .side-bottom .footer-links .links {
        flex-direction: column;
        font-size: 1rem;
    }

    .footer .side-bottom .footer-links .links ul {
        display: none;
    }

    .footer .rrss {
        justify-content: flex-start;
        gap: 16px;
    }

    .footer .rrss .icon {
        width: 42px;
        height: 42px;
    }

    .footer .copyright {
        font-size: 12px;
    }


}





@keyframes spin {
    to {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}



