/* -------------------------------- FONTS ---------------------------------- */

/*  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;*/


/* -------------------------------- COLORS ---------------------------------- */

:root {
    --White: #fff;
    --White-0: rgba(255,255,255,0);
    --White-5: rgba(255,255,255,0.05);
    --White-8: rgba(255,255,255,0.08);
    --White-10: rgba(255,255,255,0.1);
    --White-20: rgba(255,255,255,0.2);
    --White-30: rgba(255,255,255,0.3);
    --White-70: rgba(255,255,255,0.7);
    --White-80: rgba(255,255,255,0.7);
    --White-90: rgba(255,255,255,0.9);

    /*#023CFC*/
    --Blue: rgba(2, 60, 252, 1);
    --Blue-10: rgba(2, 60, 252, 0.1);
    --Blue-15: rgba(2, 60, 252, 0.15);
    --Blue-20: rgba(2, 60, 252, 0.2);
    --Blue-30: rgba(2, 60, 252, 0.3);

    --Blue2: #0A1F75;

    --Blue3: #0C1858;

    --Dark-Blue: rgba(14, 18, 59, 1);
    --Dark-Blue-10: rgba(14, 18, 59, 0.1);
    --Dark-Blue-20: rgba(14, 18, 59, 0.2);
    --Dark-Blue-30: rgba(14, 18, 59, 0.3);
    --Dark-Blue-70: rgba(14, 18, 59, 0.7);

    --Light-Blue: rgba(2, 130, 252, 1);
    --Light-Blue-20: rgba(2, 130, 252, 0.2);
    --Light-Blue-10: rgba(2, 130, 252, 0.1);

    --Green: rgba(0, 200, 83, 1);
    --Green-10: rgba(0, 200, 83, 0.1);
    --Green-20: rgba(0, 200, 83, 0.2);
    --Green-70: rgba(0, 200, 83, 0.7);

    --Red: rgba(212, 23, 59, 1);

    --Black-04: rgba(0,0,0,0.04);
    --Black-06: rgba(0,0,0,0.06);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    -webkit-font-smoothing: antialiased;
    line-height: 1.2;
    color: var(--Dark-Blue);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--White);
    overflow-x: clip;
}
/*.app-content {
    overflow-x: clip;
}*/
body.dark-page {
    background-color: var(--Dark-Blue);
}
body.lock,
html.lock {
    overflow-y: clip;
}

.app-wrapper {
    z-index: 2;
    position: relative;
}
.container {
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    margin: 0 auto;
}
.container-inner {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.app-wrapper {
    margin: 70px 0 0;
}

main.app-main {
    min-width: 0;
}
#topFull {
    grid-column: 1 / -1;
}
input:focus-visible,
textarea:focus-visible{
    color: inherit;
}
*:focus {
    outline: 0 !important;
    /*color: inherit;*/
}

a, a:hover, button, button:hover {
    transition: all .3s ease
}
a,
button {
    color: var(--Blue);
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: var(--Dark-Blue);
    text-decoration: none;
}
.contentBody a:hover {
    text-decoration: underline;
}
button:hover {
    color: var(--blue3);
    text-decoration: none;
}
a.button {
    display: flex;
    min-width: 170px;
    padding: 5px 30px;
    min-height: 60px;
    font-size: 18px;
    background-color: var(--White);
    border: 1px solid var(--Blue);
    color: var(--Blue);
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}
/* BUTOON HOVER */
/*a.button:hover {
    background-color: var(--Blue);
    color: var(--White);
}*/
a.button.blue {
    background-color: var(--Blue);
    border: 1px solid var(--Blue);
    color: var(--White);
}
/* BUTOON HOVER */
/*a.button.blue:hover {
    background-color: var(--White);
    color: var(--Blue);
}*/
a.button.transparent {
    border: 1px solid var(--Blue);
    color: var(--Blue);
    background-color: transparent;
    position: relative;
}
a.button.transparent:hover {
    color: var(--White);
    border: 1px solid var(--Blue);
    background-color: var(--Blue);
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}
a.button.transparent:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(255,255,255,0.35), transparent 65%);
    opacity: 0;
    top: 0;
    left: 0;
    width: 0;
    bottom: 0;
    height: 100%;
    transition: all 0.35s ease;
}
a.button.transparent:hover:before {
    opacity: 1;
    left: 35%;
    width: 65%;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 40px 0 24px;
    font-weight: 600;
    line-height: 1.2;
}
h1,h2,h3,h4,h5,h6 {
    margin: 50px 0 50px;
    font-weight: 600;
    line-height: 1.2;
}
h1 {
    font-size: 28px;
}
h2 {
    font-size: 70px;
}
h3 {
    font-size: 60px;
}
h4 {
    font-size: 30px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 18px;
}

p {
    font-size: 20px;
    line-height: 1.3;
    font-weight: normal;
    margin: 0;
    margin-bottom: 24px;
}
p.lead {
    font-size: 18px;
}

button {
    cursor: pointer;
}
button {
    border: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: var(--White);
    padding: 10px 10px;
    text-align: center;
    border-radius: 4px;
    transition: all .3s ease;
    display: table;
    min-width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
button:hover {
    color: var(--White);
    background-color: var(--darkgray);
    transition: all .3s ease;
}

::-moz-focus-inner {
    border: 0;
    outline: none;
}

:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 transparent;
}

::selection {
    color: #fff;
    background: var(--Blue);
}
::-moz-selection {
    color: #fff;
    background: var(--Blue);
}

@-moz-document url-prefix() {
    select, select:-moz-focusring, select::-moz-focus-inner {
        color: transparent !important;
        text-shadow: 0 0 0 #fff !important;
        background-image: none !important;
        border: 0;
    }
}

@media print {
    img {
        max-width: 100% !important;
    }
}

@media print {
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
}
.transition {
    transition: all 0.3s ease;
}
svg:not(:root) {
    overflow: hidden;
}

img {
    -ms-interpolation-mode: bicubic;
}

label {
    font-weight: normal;
}

input,
textarea,
select {
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    height: 44px;
    color: var(--Dark-Blue);
    font-size: 18px;
    line-height: 24px;
    width: 100%;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    box-shadow: none;
}
textarea {
    height: 134px;
}
input:focus,
input:active,
input:hover,
textarea:focus,
textarea:active,
textarea:hover,
select:focus,
select:active,
select:hover {
    color: var(--Dark-Blue);
    transition: all 0.3s ease;
    border: 1px solid var(--Blue);
    box-shadow: 0 0 6px 0 var(--Blue-20);
}
.hide {
    display: none;
}
blockquote {
    font-style: italic;
    border-left: 5px solid var(--Red);
    font-size: 18px;
    padding-left: 20px;
    box-sizing: border-box;
}
pre {
    background-color: var(--lightgray);
    box-sizing: border-box;
    padding: 20px;
}
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.grid {
    display: grid;
}
.c-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
/* -------------------------------- HEADER ---------------------------------- */
header {
    background-color: var(--White);
    color: var(--Dark-Blue);
    position: fixed;
    z-index: 999;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px 0px transparent;
    -webkit-box-shadow: 0px 4px 12px 0px transparent;
    -moz-box-shadow: 0px 4px 12px 0px transparent;
}
header.fixed {
    box-shadow: 0px 4px 12px 0px var(--Dark-Blue-20);
    -webkit-box-shadow: 0px 4px 12px 0px var(--Dark-Blue-20);
    -moz-box-shadow: 0px 4px 12px 0px var(--Dark-Blue-20);
    transition: all 0.3s ease;
}
header.dark {
    background-color: var(--Dark-Blue);
    color: var(--White);
    position: fixed;
    z-index: 999;
    width: 100%;
}
header.fixed.dark {
    box-shadow: 0px 4px 12px 0px var(--White-30);
    -webkit-box-shadow: 0px 4px 12px 0px var(--White-30);
    -moz-box-shadow: 0px 4px 12px 0px var(--White-30);
    transition: all 0.3s ease;
}
header.gray {
    background-color: var(--White-80);
}
header.fixed.gray {
    background-color: var(--White);
}
.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    min-height: 70px;
    box-sizing: border-box;
}
.app-brand {
    margin-right: auto;
}
h1.logo,
.logo {
    margin: 0;
}
.logo a {
    width: 156px;
    height: 30px;
    display: block;
    background: url("/assets/front/img/Inmind-logo.svg");
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}
header.dark .logo a {
    background: url("/assets/front/img/Inmind-logo-white.svg");
}
header ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 45px;
    font-size: 18px;
    font-weight: 400;
}
header ul a {
    color: var(--Dark-Blue);
}
header ul a.current,
header ul a.onPath,
header ul a:hover {
    color: var(--Blue);
}
header.dark ul a {
    color: var(--White);
}
header.dark ul a.current,
header.dark ul a.onPath,
header.dark ul a:hover {
    color: var(--Blue);
}
.app-nav .nav-item {
    padding: 10px 0;
}
.sec-navigation a {
    padding: 5px 20px;
    height: 50px;
    display: flex;
    align-items: center;
    border: 1px solid var(--Blue);
    color: var(--Blue);
    border-radius: 25px;
}
.sec-navigation a:hover {
    border: 1px solid var(--Dark-Blue);
    color: var(--Dark-Blue);
}
header.dark .sec-navigation a {
    border: 1px solid var(--Blue);
    color: var(--Blue);
}
header.dark .sec-navigation a:hover {
    /*    border: 1px solid var(--White);*/
    color: var(--White);
}
.nav-item.hoverL1 .nav-arrow {
    color: var(--Blue);
}
.nav-item.hoverL1 .nav-arrow i {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}
.nav-item.dropdown {
    position: relative;
}
.nav-item .dropdown-menu {
    position: absolute;
    left: -20px;
    top: 100%;
    display: none;
    flex-direction: column;
    padding: 20px;
    width: 200px;
    box-sizing: border-box;
    align-items: stretch;
    background-color: var(--White);
    box-shadow: 0px 4px 12px 0px var(--Dark-Blue-20);
    -webkit-box-shadow: 0px 4px 12px 0px var(--Dark-Blue-20);
    -moz-box-shadow: 0px 4px 12px 0px var(--Dark-Blue-20);
    border-radius: 10px;
    gap: 0;
}
.nav-item.hoverL1 .dropdown-menu {
    display: flex;
}
.dark .nav-item .dropdown-menu {
    background-color: var(--Dark-Blue);
    box-shadow: 0px 4px 12px 0px var(--White-30);
    -webkit-box-shadow: 0px 4px 12px 0px var(--White-30);
    -moz-box-shadow: 0px 4px 12px 0px var(--White-30);
}
.nav-item .dropdown-menu li {
    padding: 15px 0;
    border-bottom: 1px solid var(--Dark-Blue-10);
}
.dark .nav-item .dropdown-menu li {
    border-bottom: 1px solid var(--White-20);
}
.nav-item .dropdown-menu li.first {
    padding-top: 0;
}
.nav-item .dropdown-menu li.last {
    padding-bottom: 0;
    border-bottom: none;
}
.open-nav,
.close-nav {
    display: none;
}
.language-bar {
    font-size: 18px;
    line-height: 1;
}

.language-bar a {
    color: var(--Dark-Blue);
    opacity: 0.5;
}
.language-bar a.active,
.language-bar a:hover {
    opacity: 1;
}
header.dark .language-bar a {
    color: var(--White);
}
/* -------------------------------- FOOTER ---------------------------------- */
footer {
    background-color: var(--White);
    margin-top: auto;
}
.footer-top {
    padding: 100px 0 26px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.footer-navigation ul {
    list-style: none;
    display: flex;
    gap: 10px;
}
.footer-navigation a.nav-link {
    min-width: 200px;
    display: flex;
    padding: 5px 20px;
    min-height: 60px;
    font-size: 18px;
    background-color: var(--White);
    border: 1px solid var(--Blue);
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}
.footer-navigation a.nav-link:hover {
    background-color: var(--Blue);
    color: var(--White);
}
.footer-navigation a.nav-link.book_a_video_call {
    background-color: var(--Blue);
    border: 1px solid var(--Blue);
    color: var(--White);
}
.footer-navigation a.nav-link.book_a_video_call:hover {
    background-color: var(--White);
    border: 1px solid var(--Blue);
    color: var(--Blue);
}
.footer-bottom {
    padding: 54px 0;
    display: flex;
    gap: 40px;
}
.footer-copy p,
.footer-text-link {
    margin: 0;
    font-size: 12px;
}
.footer-text-link a {
    color: var(--Light-Blue);
}
.footer-text-link a:hover {
    color: var(--Dark-Blue);
}

/* -------------------------------- STORY LIST ------------------------------ */
.browser.storyList {
    margin-top: 10px;
}
.storyNav {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    padding: 40px 0;
    border-bottom: 1px solid var(--Dark-Blue-30);
}
.storyNav .img-link {
    max-width: 740px;
}
.storyNav.js-drop-item {
    overflow: inherit;
}
.storyNav a.img-link {
    width: 100%;
}
.storyNav a.img-link:hover img {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 8px 15px rgba(15, 23, 42, 0.1);
}
.storyNav a.img-link img,
.storyNav .img-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.slist-story-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.tagList {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
.tagList .single-tag {
    padding: 8px 15px;
    font-size: 14px;
    line-height: 16px;
/*    text-transform: capitalize;*/
    font-weight: 400;
    border-radius: 10px;
    border: 1px solid var(--Light-Blue);
    color: var(--Light-Blue);
    margin-bottom: 10px;
}
.list-story-right .tagList .single-tag {
    margin-bottom: 0;
}
h3.list-story-title {
    margin: 0 0 34px;
    font-size: 30px;
}
h3.list-story-title a {
    color: var(--Dark-Blue);
}
h3.list-story-title a:hover {
    color: var(--Blue);
}
/*.list-story-lead {
    margin-bottom: 16px;
}*/
.list-story-lead p {
    color: var(--Dark-Blue-70);
}
.list-story-lead p:last-of-type {
    margin-bottom: 0;
}
.list-story-right .see_study {
    margin-top: 60px;
    display: inherit;
}
.see_study .icon {
    width: 13px;
    height: 13px;
    display: inline-block;
    margin-left: 10px;
    background-color: var(--Blue);
    -webkit-mask: url("/assets/front/img/arrow-top-right.svg") no-repeat center/contain;
    mask: url("/assets/front/img/arrow-top-right.svg") no-repeat center/contain;
}
.see_study:hover .icon {
    background-color: var(--Dark-Blue);
}
.js-drop-item.is-inview h3.drop-item-title .title-word.drop-item {
    animation: hero-word-in 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation-delay: 0s;
    animation-delay: var(--drop-delay, 0s);
}
.js-drop-item h3.drop-item-title .title-word {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 28px, 0);
}

/* ------------------------------ SINGLE STORY ------------------------------ */
.story-wrapper-inner {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}
.story-wrapper-inner h1 {
    font-size: 50px;
    margin: 0 0 40px;
    padding-top: 70px;
    text-align: center;
}
.js-drop-item h1.drop-item-title .title-word {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 28px, 0);
}
.js-drop-item.is-inview h1.drop-item-title .title-word.drop-item {
    animation: hero-word-in 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation-delay: var(--drop-delay, 0s);
}
.story-title-thumb.js-drop-item {
    overflow: initial;
}
img.story-big-thumb {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
    border-radius: 20px;
}
.story-largeThumb:hover img.story-big-thumb {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 8px 15px rgba(15, 23, 42, 0.1);
}
.story-left-right {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 44px;
    align-items: flex-start;
}
.story-left-content {
    border: 1px solid var(--Dark-Blue-20);
    padding: 50px 20px;
    border-radius: 20px;
}
.story-left .uptitle,
.story-left .author,
.story-left .source,
.story-left .tags-uptitle {
    font-weight: 500;
    font-size: 12px;
}
.story-left .uptitle {
    color: var(--Light-Blue);
    margin-bottom: 40px;
}
.story-left .author {
    margin-bottom: 10px;
}
.story-left .source {
    font-size: 16px;
}
.story-left .tags-uptitle {
    margin-top: 18px;
    padding: 18px 0 15px;
    border-top: 1px solid var(--Dark-Blue-10);
    text-transform: uppercase;
}
.story-left .tagList {
    flex-direction: column;
}
.story-left .tagList .single-tag {
    margin-bottom: 0;
}
.story-right .lead p {
    font-size: 24px;
}
.story-right lead {
    margin-bottom: 6px;
}
.story-right .contentBody p {
    color: var(--Dark-Blue-70);
}
.story-right .contentBody ul {
    color: var(--Dark-Blue-70);
    padding-left: 20px;
}
.story-right .contentBody ul li {
    margin-bottom: 10px;
}

/* ---------------------------------- CONTACT ------------------------------- */
.contact-top:before {
    width: 100vw;
    height: 100%;
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--Dark-Blue);
/*    background: url("/assets/front/img/ilustration.svg") var(--Dark-Blue);
    background-repeat: no-repeat;
    background-position: top 0 right 40px;*/
    z-index: -1;
}
.contact-top .back-mask-img {
    height: 55%;
    right: -6%;
}
section.contact-top {
    color: var(--White);
    padding-bottom: 100px;
}
.contact-top h1 {
    margin: 40px 0 50px;
    font-size: 70px;
}
.contact-top .lead {
    color: var(--White-70);
}
.body-form {
    margin-top: 36px;
    border-top: 1px solid var(--White-30);
    padding-top: 50px;
    display: grid;
    grid-template-columns: 360px 1fr;
}
.body-form .contentBody {
    padding-right: 20px;
    border-right: 1px solid var(--White-30);
}
.body-form .contentBody h2 {
    margin: 70px 0 50px;
    font-size: 28px;
}
.body-form .contentBody a {
    color: var(--Blue);
}
.body-form .contentBody a:hover {
    color: var(--White);
    text-decoration: none;
}
.body-form .contentBody p,
.body-form .contentBody pre {
    margin-bottom: 40px;
}
.body-form .contentBody p:last-of-type {
    margin-bottom: 0;
}
.body-form .contentBody pre {
    padding: 0;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    overflow: hidden;
}
.body-form .contentBody pre em {
    font-style: normal;
    color: var(--White-70);
    line-height: 30px;
}
.body-form .contentBody pre a {
    color: var(--White);
}
.body-form .contentBody pre a:hover {
    color: var(--Blue);
    text-decoration: none;
}
.formContainer {
    padding-left: 30px;
}

/* FORM */
.form-holder {
    margin-bottom: 30px;
}
.form-holder label {
    font-size: 14px;
    color: var(--White-70);
    margin-bottom: 8px;
    display: block;
}
.form-holder.form-title label {
    font-size: 24px;
    font-weight: 600;
    color: var(--White);
    margin-bottom: 0;
}
.dark-back input:focus,
.dark-back input:active,
.dark-back input:hover,
.dark-back textarea:focus,
.dark-back textarea:active,
.dark-back textarea:hover,
.dark-back select:focus,
.dark-back select:active,
.dark-back select:hover {
    border: 1px solid var(--Blue);
    box-shadow: 0 0 6px 0 var(--White);
}
.form-holder.button-holder {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}
.button-holder button {
    background-color: var(--Blue);
    border: 1px solid var(--Blue);
    color: var(--White);
    min-width: 200px;
    display: flex;
    padding: 5px 20px;
    min-height: 60px;
    font-size: 18px;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    position: relative;
}
.button-holder button:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(255,255,255,0.35), transparent 65%);
    opacity: 0;
    top: 0;
    left: 0;
    width: 0;
    bottom: 0;
    height: 100%;
    transition: all 0.35s ease;
}
.button-holder button:hover {
    background-color: var(--Blue);
    border: 1px solid var(--Blue);
    color: var(--White);
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}
.button-holder button:hover:before {
    opacity: 1;
    left: 35%;
    width: 65%;
}
input.error,
select.error,
textarea.error {
    border: 2px solid var(--Red);
}
p.alert {
    color: var(--Red);
}
p.alert.alert-success {
    color: var(--Green);
}
.form-holder button span {
    font-family: "Poppins", sans-serif;
}

/* -------------------------- BUTOON HOVER -----------------------------------*/
.sec-navigation a,
.footer-navigation a.nav-link.book_a_video_call,
.footer-navigation a.nav-link,
.button.blue,
.button.white {
    position: relative;
    transition: all 0.3s ease;
}
.sec-navigation a:before,
.footer-navigation a.nav-link.book_a_video_call:before,
.footer-navigation a.nav-link:before,
.button.blue:before,
.button.white:before {
    content: "";
    position: absolute;
    /*    inset: 0;*/
    background: radial-gradient(circle at 0 0, rgba(255,255,255,0.35), transparent 65%);
    opacity: 0;
    top: 0;
    left: 0;
    width: 0;
    bottom: 0;
    height: 100%;
    transition: all 0.35s ease;
}
.sec-navigation a:hover,
.footer-navigation a.nav-link.book_a_video_call:hover,
.footer-navigation a.nav-link:hover,
.button.blue:hover,
.button.white:hover {
    background-color: var(--Blue);
    border: 1px solid var(--Blue);
    color: var(--White);
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}
.sec-navigation a:hover:before,
.footer-navigation a.nav-link.book_a_video_call:hover:before,
.footer-navigation a.nav-link:hover:before,
.button.blue:hover:before,
.button.white:hover:before {
    opacity: 1;
    /*    transform: translateX(35%);*/
    left: 35%;
    width: 65%;
}

