/* ################ VARIABELS ################ */
:root{
    --MainColor_Dark: #182848;
    --MainColor_Light: #FFFFFF;

    --AccentColor: #08b292;
    --AccentColor2: #90b3ff;
    --AccentColor3: #13223a;
}

/* ################ GENERIC ################ */
html{scroll-behavior: initial;}

*{
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.grecaptcha-badge {
    display: none;
}

body {
    
}

.container_s1 {
    margin: auto;
    width: 1700px;
    max-width: 90%;
}




/* ################ FONT ################ */
.font {
    font-family: "Outfit", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: var(--MainColor_Dark);
    line-height: 28px;
}

.font.light {
    color: var(--MainColor_Light);
}

.font.lightblue {
    color: var(--AccentColor2);
}

.font.gray {
    opacity: .5;
}

.uppercase {
    text-transform: uppercase;
}

.size_small {
    font-size: .8rem;
    font-weight: 300;
}

.size_regular {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 28px;
}

.size_medium {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 28px;
}

.size_subtitle {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 60px;
}

.size_title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 70px;
}

.size_big {
    font-size: 4rem;
    font-weight: 500;
    line-height: 72px;
}

.mark_green strong {
    color: var(--AccentColor);
}

.link {
    text-decoration: none;
    color: var(--AccentColor);
    width: max-content;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .2s ease-in-out;
}

.link.lightblue {
    color: var(--AccentColor2);
}

.link.dark {
    color: var(--MainColor_Dark);
}

.link.active {
    color: var(--AccentColor2) !important;
}

.link img {
    height: 12px;
}

.link:hover {
    opacity: .5;
    transition: opacity .2s ease-in-out;
}

.button {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: max-content;
    gap: 10px;
    text-decoration: none;
    border: none;
    background-color: var(--AccentColor);
    padding: 15px 50px 15px 50px;
    box-sizing: border-box;
    cursor: pointer;
    color: var(--MainColor_Dark);
    clip-path: polygon(calc(0% + 20px) 0, 100% 0, 100% calc(100% - 20px) , calc(100% - 20px)  100%, 0 100%, 0 calc(0% + 20px) );
    opacity: 1;
    transition: clip-path .3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .2s ease-in-out;
}

.button.lightblue {
    color: var(--MainColor_Dark);
    background-color: var(--AccentColor2);
}

.button img {
    height: 10px;
}

.button:hover {
    clip-path: polygon(calc(0% + 25px) 0, 100% 0, 100% calc(100% - 25px) , calc(100% - 25px)  100%, 0 100%, 0 calc(0% + 25px) );
    opacity: .7;
    transition: clip-path .3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .2s ease-in-out;
}


input,
textarea {
    font-family: "Outfit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    color: var(--MainColor_Dark);
    background-color: #E9ECEF;
    border: solid 1px #E9ECEF;
    padding: 10px;
    box-sizing: border-box;
    transition: border .2s ease-in-out;
    border-radius: 0px !important;
}

textarea {
    resize: vertical;
    height: 150px;
}

input.invalid,
textarea.invalid {
    border: solid 1px red;
    transition: border .2s ease-in-out;
}





form .loader{
    opacity: 0;
    grid-row: 1/2;
    grid-column: 1/2;
    align-self: center;
    justify-self: center;
    color: var(--AccentColor2);
    width: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
    transform: translateX(-38px);
    animation: l21 .5s infinite alternate linear;
    transition: opacity .3s ease-in-out;
}

form.load .loader{
    opacity: 1;
    transition: opacity .3s ease-in-out;
}

@keyframes l21 {
  50%  {box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px}
  100% {box-shadow: 19px 0 0 0  , 38px 0 0 3px, 57px 0 0 7px}
}


.message_box {
    padding: 15px;
    background-color: var(--AccentColor2);
    color: var(--MainColor_Light);
    display: none;
}

.message_box.show{
    display: block;
}


.notice {
    text-align: center;
    line-height: 17px;
}

.notice a {
    cursor: pointer;
}



/* ################ NAV ################ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: row;
    width: 100%;
    pointer-events: none;
    z-index: 99999999;
}

nav .nav-bar {
    background-color: var(--MainColor_Light);
    width: 100%;
    height: 130px;
    display: flex;
    flex-flow: row;
    pointer-events: all;
    transition: height .3s cubic-bezier(0.76, 0, 0.24, 1), background-color .3s ease-in-out;
    z-index: 99999999;
}

nav.darkmode .nav-bar {
    background-color: var(--MainColor_Dark);
    transition: height .3s cubic-bezier(0.76, 0, 0.24, 1), background-color 0s ease-in-out;
}

nav.small .nav-bar {
    height: 70px;
    transition: height .3s cubic-bezier(0.76, 0, 0.24, 1), background-color .3s ease-in-out;
}

nav.mob_open .nav-bar {
    background-color: var(--AccentColor2);
    transition: height .3s cubic-bezier(0.76, 0, 0.24, 1), background-color .3s ease-in-out;
}

nav .nav-bar .container_s1 {
    display: flex;
    flex-flow: row;
    align-items: center;
}

nav .nav-bar .container_s1 > a img {
    height: 50px;
    display: block;
}

nav .nav-bar .container_s1 > a img.hidden {
    display: none;
}

nav .nav-bar .container_s1 > span {
    width: max-content;
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
    gap: 40px;
}

nav.darkmode .nav-bar .container_s1 > span .link {
    color: var(--MainColor_Light);
}

nav .nav-bar .lang_container {
    height: 100%;
    width: max-content;
    transform: translate(0, 0px);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

nav.small .nav-bar .lang_container {
    transform: translate(0, -30px);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

nav .nav-bar .lang_container .lang_selector {
    margin-top: calc((100% / 2) + (30px / 2));
    display: flex;
    flex-flow: column;
    height: 30px;
    padding: 0 8px;
    box-sizing: border-box;
    background-color: #E4EAEE;
    overflow: hidden;
    transition: height .3s cubic-bezier(0.76, 0, 0.24, 1);
}

nav.mob_open .nav-bar .lang_container .lang_selector {
    background-color: var(--MainColor_Dark);
}

nav.mob_open .nav-bar .lang_container .lang_selector a {
    color: var(--AccentColor2) !important;
}

nav.mob_open a .drop span {
    background-color: var(--AccentColor2);
}

nav .nav-bar .lang_container .lang_selector.open {
    height: 86px;
    transition: height .3s cubic-bezier(0.76, 0, 0.24, 1);
}





nav .hamburger {
    height: 100%;
    width: 35px;
    display: none;
    flex-flow: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 20px;
}

nav .hamburger span {
    display: block;
    width: 35px;
    height: 1px;
    background-color: var(--MainColor_Dark);
    transform: rotate(0deg) translate(0, 0px);
    opacity: 1;
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1), opacity .2s ease-in-out;
}

nav.darkmode .hamburger span {
    background-color: var(--MainColor_Light);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1), opacity .2s ease-in-out;
}

nav.mob_open .hamburger span {
    transform: rotate(45deg) translate(0, 9px);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1), opacity .2s ease-in-out;
}

nav.mob_open .hamburger span:nth-child(2) {
    opacity: 0;
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1), opacity .2s ease-in-out;
}

nav.mob_open .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -9px);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1), opacity .2s ease-in-out;
}





nav .nav-services {
    background-color: var(--AccentColor2);
    height: max-content;
    width: 100%;
    position: absolute;
    top: 130px;
    left: 0;
    pointer-events: none;
    transform: translate(0, -100%);
    z-index: 8888888;
    transition: top .3s cubic-bezier(0.76, 0, 0.24, 1), transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

nav.small .nav-services {
    top: 70px;
    transition: top .3s cubic-bezier(0.76, 0, 0.24, 1), transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

/* nav .nav-services.show_soft {
    transform: translate(0, calc(-100% + 50px));
    transition: top .3s cubic-bezier(0.76, 0, 0.24, 1), transform .3s cubic-bezier(0.76, 0, 0.24, 1);
} */

nav .nav-services.show {
    transform: translate(0, 0%);
    pointer-events: all;
    transition: top .3s cubic-bezier(0.76, 0, 0.24, 1), transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

nav .nav-services .wrapper {
    display: flex;
    flex-flow: column;
    gap: 20px;
    padding: 30px 0;
    box-sizing: border-box;
}

nav .nav-services .wrapper > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 50px;
}

nav .nav-services .wrapper > div .item {
    position: relative;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    box-sizing: border-box;
    cursor: pointer;
}

nav .nav-services .wrapper > div .item .background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--MainColor_Dark);
    opacity: .1;
    clip-path: polygon(calc(0% + 25px) 0, 100% 0, 100% calc(100% - 25px) , calc(100% - 25px)  100%, 0 100%, 0 calc(0% + 25px) );
    z-index: 1;
    transition: clip-path .3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .2s ease-in-out;
}

nav .nav-services .wrapper > div .item:hover .background {
    opacity: .2;
    clip-path: polygon(calc(0% + 30px) 0, 100% 0, 100% calc(100% - 30px) , calc(100% - 30px)  100%, 0 100%, 0 calc(0% + 30px) );
    transition: clip-path .3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .2s ease-in-out;
}

nav .nav-services .wrapper > div .item article {
    height: 90px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: column;
    justify-content: center;
    z-index: 10;
}

nav .nav-services .wrapper > div .item img {
    height: 20px;
    z-index: 1;
}





nav .nav-mobile {
    background-color: var(--AccentColor2);
    height: calc(100vh - 130px);
    width: 100%;
    position: absolute;
    top: 130px;
    left: 0;
    pointer-events: none;
    transform: translate(100%, 0);
    z-index: 8888888;
    transition: top .3s cubic-bezier(0.76, 0, 0.24, 1), height .3s cubic-bezier(0.76, 0, 0.24, 1), transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

nav.small .nav-mobile {
    top: 70px;
    height: calc(100vh - 70px);
    transition: top .3s cubic-bezier(0.76, 0, 0.24, 1), height .3s cubic-bezier(0.76, 0, 0.24, 1), transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

nav.mob_open .nav-mobile {
    transform: translate(0%, 0);
    pointer-events: all;
    transition: top .3s cubic-bezier(0.76, 0, 0.24, 1), height .3s cubic-bezier(0.76, 0, 0.24, 1), transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

nav .nav-mobile .wrapper {
    display: flex;
    flex-flow: column;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 130px);
    gap: 30px;
    padding: 0 30px;
    box-sizing: border-box;
}

nav.small .nav-mobile .wrapper {
    max-height: calc(100vh - 70px);
}

nav .nav-mobile .wrapper article {
    position: relative;
    margin-top: 10px;
    display: flex;
    flex-flow: column;
    gap: 10px;
    width: 100%;
}

nav .nav-mobile .wrapper article:last-of-type {
    padding-bottom: 50px;
    box-sizing: border-box;
}

nav .nav-mobile .wrapper article a {
    color: var(--MainColor_Dark);
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

nav .nav-mobile .wrapper article a.link img {
    transform: rotate(180deg);
    height: 25px;
    margin-top: 8px;
}

nav .nav-mobile .wrapper article a.button {
    width: 100%;
    margin-top: 20px;
}

nav .nav-mobile .wrapper article > figure {
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 220px;
    width: 300px;
}

nav .nav-mobile .wrapper article > figure img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transform: translate(50px, 30px);
}





a .drop,
p .drop {
    margin-top: 7px;
    width: 20px;
    height: 20px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}

.drop_invert a .drop,
a.drop_invert .drop,
.drop_invert p .drop,
p.drop_invert .drop {
    margin-top: -3px;
}

a .drop span,
p .drop span {
    width: 10px;
    height: 1px;
    background-color: var(--MainColor_Dark);
    transform-origin: right;
    transform: rotate(45deg);
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.darkmode #service_drop .drop span {
    background-color: var(--MainColor_Light);
}

a.active .drop span,
p.active .drop span {
    background-color: var(--AccentColor2) !important;
}

a .drop span:nth-child(2),
p .drop span:nth-child(2) {
    transform-origin: left;
    transform: rotate(-45deg);
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

a:hover .drop span,
p:hover .drop span {
    transform: rotate(30deg);
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

a:hover .drop span:nth-child(2),
p:hover .drop span:nth-child(2) {
    transform: rotate(-30deg);
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.drop_invert a .drop span,
a.drop_invert .drop span,
.drop_invert p .drop span,
p.drop_invert .drop span {
    transform: rotate(-45deg);
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.drop_invert a .drop span:nth-child(2),
a.drop_invert .drop span:nth-child(2),
.drop_invert p .drop span:nth-child(2),
p.drop_invert .drop span:nth-child(2) {
    transform: rotate(45deg);
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.drop_invert a:hover .drop span,
a.drop_invert:hover .drop span,
.drop_invert p:hover .drop span,
p.drop_invert:hover .drop span {
    transform: rotate(-30deg);
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.drop_invert a:hover .drop span:nth-child(2),
a.drop_invert:hover .drop span:nth-child(2),
.drop_invert p:hover .drop span:nth-child(2),
p.drop_invert:hover .drop span:nth-child(2) {
    transform: rotate(30deg);
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#navTrigger {
    position: absolute;
    top: calc(100vh + 200px);
}







/* ################ FOOTER ################ */
footer {
    position: relative;
    background-color: var(--AccentColor);
    padding: 80px 0;
    box-sizing: border-box;
    overflow: hidden;
}

footer .lang_container {
    position: absolute;
    top: 89px;
    right: 0;
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

footer .lang_container .lang_selector {
    display: flex;
    flex-flow: column;
    height: 30px;
    padding: 0 8px;
    box-sizing: border-box;
    background-color: var(--AccentColor2);
    overflow: hidden;
    transition: height .3s cubic-bezier(0.76, 0, 0.24, 1);
}

footer .lang_container .lang_selector.open {
    height: 86px;
    transition: height .3s cubic-bezier(0.76, 0, 0.24, 1);
}

footer .wrapper {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

footer .wrapper .top {
    display: flex;
    flex-flow: row;
    width: 100%;
    align-items: center;
}

footer .wrapper .top > figure {
    height: 50px;
    width: auto;
}

footer .wrapper .top > figure img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}



footer .wrapper .bottom {
    margin-top: 40px;
    display: flex;
    flex-flow: row;
    width: 100%;
    gap: 100px;
}

footer .wrapper .bottom article {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

footer .background_logo {
    pointer-events: none;
    position: absolute;
    bottom: -150px;
    right: -50px;
    height: max-content;
    width: 700px;
    height: auto;
}

footer .background_logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.veaudeville_holder {
    background-color: #2AA282;
    padding: 10px 30px;
    display: flex;
    flex-flow: row;
    align-items: flex-end;
    justify-content: flex-end;
}

.veaudeville_holder a img {
    height: 30px;
    width: auto;
    object-fit: contain;
}