@font-face {
    font-family: "Montserrat";
    src: url("../../assets/fonts/Montserrat-VariableFont_wght.ttf");
}

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

    --AccentColor: #3004F4;
}

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

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

.grecaptcha-badge {
    display: none;
}

body {
    background-color: var(--MainColor_Light);
    font-family: "Montserrat", sans-serif;
}

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

.container_s2 {
    margin: auto;
    width: 2000px;
    max-width: 100%;
}

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

.background-accent {
    background-color: var(--AccentColor);
}




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

.font strong {
    font-weight: 800;
}

.font.regular {
    font-family: "Montserrat", sans-serif;
}

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

.font.accent {
    color: var(--AccentColor);
}

.uppercase {
    text-transform: uppercase;
}

.size_small {
    font-size: .9rem;
    line-height: 22px;
}

.size_regular {
    font-size: 1rem;
    line-height: 20px;
}

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

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

.size_big {
    font-size: 4rem;
    line-height: 68px;
}

.bold {
    font-weight: 570;
}

.semi-bold {
    font-weight: 400;
}

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

.link img {
    height: 15px;
    width: 15px;
}

.link.dark {
    color: var(--MainColor_Dark);
    opacity: 1;
    transition: opacity .3s ease-in-out;
}

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

.button {
    display: flex;
    gap: 10px;
    line-height: 1em;
    align-items: center;
    justify-content: center;
    line-height: normal;
    background-color: var(--AccentColor);
    border: none;
    padding: 15px 20px 16px 20px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    color: var(--MainColor_Light);
    width: max-content;
    cursor: pointer;
    opacity: 1;
    text-decoration: none;
    border-radius: 200px;
    transition: opacity .3s ease-in-out;
}

.button img {
    height: 20px;
    width: 20px;
    margin-top: 2px;
}

.button.light {
    background-color: var(--MainColor_Light);
    color: var(--MainColor_Dark);
}

.button.border {
    background-color: transparent;
    color: var(--MainColor_Light);
    border: solid 1px var(--MainColor_Light);
}

.button:hover {
    opacity: .7;
    transition: opacity .3s ease-in-out;
}

input,
textarea {
    background-color: transparent;
    border: none;
    border-bottom: solid 1px var(--MainColor_Dark);
    font-family: "Montserrat", sans-serif;
    padding: 15px 20px 15px 0px;
    box-sizing: border-box;
    color: var(--MainColor_Dark);
    width: 100%;
    border-radius: 0 !important;
    transition: border .3s ease-in-out;
}

input:hover,
textarea:hover,
input:focus,
textarea:focus {
    border-bottom: solid 1px var(--AccentColor);
}

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

textarea {
    max-height: 150px;
    resize: none;
}

form .loader{
    opacity: 0;
    grid-row: 1/2;
    grid-column: 1/2;
    align-self: center;
    justify-self: center;
    color: var(--AccentColor);
    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;
}

form .button_wrapper {
    display: grid;
    grid-template: 1fr / 1fr;
    width: 200px;
}

form .button_wrapper .button {
    grid-row: 1/2;
    grid-column: 1/2;
    width: 100%;
    border-radius: 200px !important;
    transition: clip-path .3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .2s ease-in-out;
}

form.load .button_wrapper .button {
    opacity: 0;
    transition: clip-path .3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .2s ease-in-out;
}

form .button_wrapper .loader {
    grid-row: 1/2;
    grid-column: 1/2;
}

@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(--AccentColor);
    color: var(--MainColor_Light);
    display: none;
}

.message_box.show{
    display: block;
}


.notice {
    text-align: left;
    line-height: 17px;
    font-size: .7rem;
    color: var(--MainColor_Dark);
}

.notice a {
    cursor: pointer;
    color: var(--MainColor_Dark) !important;
}



/* ################ NAV ################ */
nav {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: max-content;
}

nav .nav_top {
    background-color: var(--MainColor_Dark);
    padding: 10px 0;
    box-sizing: border-box;
}

nav .nav_top > span {
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    gap: 30px;
}


nav .main_nav {
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-flow: row;
}

nav .main_nav .logo {
    width: 200px;
}

nav .main_nav > span {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}

nav .main_nav > span .hamburger {
    display: none;
    flex-flow: column;
    justify-content: space-between;
    height: 20px;
    width: 40px;
    cursor: pointer;
}

nav .main_nav > span .hamburger span {
    width: 40px;
    height: 2px;
    background-color: var(--MainColor_Dark);
}

nav .main_nav > span > span {
    display: flex;
    flex-flow: row;
    justify-content: center;
    gap: 50px;
}

nav .main_nav > span > span .active {
    color: var(--AccentColor);
}


.hamburger_menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--MainColor_Dark);
    padding: 30px;
    box-sizing: border-box;
    transform: translate(100%);
    transition: transform .3s ease-in-out;
    z-index: 9999999999;
}


.hamburger_menu.show {
    transform: translate(0%);
    transition: transform .3s ease-in-out;
}

.hamburger_menu .scroll {
    overflow-y: auto;
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 50px;
}

.hamburger_menu .scroll .close {
    height: 25px;
    width: 25px;
    margin-left: auto;
    margin-right: 0;
    cursor: pointer;
    opacity: 1;
    transition: opacity .3s ease-in-out;
}

.hamburger_menu .scroll .close:hover {
    opacity: .5;
    transition: opacity .3s ease-in-out;
}

.hamburger_menu .scroll .menu_1 {
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.hamburger_menu .scroll .menu_2 {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.hamburger_menu .scroll .logo {
    width: 210px;
}




/* ################ FOOTER ################ */
footer {
    position: relative;
    display: flex;
    flex-flow: column;
    height: auto;
    width: 100%;
    overflow: hidden;
}

footer .container_s1 {
    display: flex;
    flex-flow: column;
    gap: 70px;
    padding: 80px 0;
    padding-bottom: 280px;
    box-sizing: border-box;
}

footer .container_s1 .logo {
    height: 50px;
    width: auto;
}

footer .container_s1 .logo img{
    height: 100%;
    width: auto;
    object-fit: contain;
}

footer .container_s1 .list_holder {
    display: flex;
    flex-flow: row;
}

footer .container_s1 .list_holder .list {
    display: flex;
    flex-flow: column;
    gap: 25px;
    margin-right: 100px;
}

footer .container_s1 .list_holder .list:nth-child(1) {
    margin-right: 200px;
}

footer .container_s1 .list_holder .list span {
    display: flex;
    flex-flow: column;
    gap: 8px;
}

footer .container_s1 .list_holder .list:nth-child(2) span {
    gap: 20px;
}

footer .container_s1 .list_holder .list:nth-child(2) span a{
    border-bottom: solid 2px #7B74F9;
    padding-bottom: 6px;
    width: max-content;
}

footer .bottom_vdv {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    box-sizing: border-box;
}

footer .bottom_vdv a {
    opacity: .5;
    transition: opacity .3s ease-in-out;
}

footer .bottom_vdv a:hover {
    opacity: 1;
    transition: opacity .3s ease-in-out;
}

footer .bottom_vdv img {
    height: 25px;
    width: auto;
}

footer .big_logo {
    position: absolute;
    bottom: 110px;
    left: calc(100% - 650px);
    height: 300px;
    width: 910px;
}

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