* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: Gilroy-Bold;
    src: url("../font/Gilroy-ExtraBold.woff");
}

:root {
    --bold: Gilroy-Bold;
    --reg: "Poppins", sans-serif;
    --primary: #4864c9;
    --secondary: #f96a7c;
}

body {
    font-family: var(--reg);
    background: rgb(248, 248, 248);
}

img {
    width: 100%;
    pointer-events: none;
}

section {
    border: 1.3vw solid #fff;
    width: 100%;
    overflow: hidden;
    padding: 100px 0px;
    position: relative;
}

.signin > section:nth-child(3) {
    border-top: 1.3vw solid #fff;
    min-height: 99vh;
    display: flex;
    align-items: center;
}

.Arcontainer {
    width: 100%;
    padding: 0px 15px;
    max-width: 1220px;
    margin: 0px auto;
}

ul li {
    list-style: none;
}

.button {
    width: 250px;
    display: inline-block;
    padding: 10px 5px;
    text-align: center;
    border: none;
    outline: none;
    text-decoration: none;
    background: var(--secondary);
    position: relative !important;
    color: rgb(255, 255, 255) !important;
    font-size: 20px !important;
}

.button::before {
    content: " ";
    position: absolute;
    width: 0px;
    height: 100%;
    background: rgb(255, 255, 255);
    opacity: 0.19;
    top: 0px;
    left: 0px;
    transition: all 0.4s linear 0s;
    margin: 0px;
}

.button:hover::before {
    width: 100%;
    text-decoration: none !important;
}

:active,
:focus,
:hover {
    outline-offset: 0px;
    outline: 0px !important;
    text-decoration: none !important;
}

.fade:not(.show) {
    opacity: 1 !important;
}

nav {
    width: 100%;
    position: fixed;
    z-index: 10;
    margin: 0px auto;
    transition: all 0.2s linear;
    top: 0px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.tggl {
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
}

.devider {
    display: none;
}

.fix {
    left: 0px;
    z-index: 9999;
    background: rgb(255, 255, 255);
    top: 0px;
    transform: translateY(0px);
}

.tggl.Notfix {
    background: rgb(255, 255, 255);
    transform: translateY(-85%);
}

@keyframes navAnim {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0px);
    }
}

.nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 2vw 15px;
    padding-bottom: 10px;
    z-index: 99999;
}

.logo {
    padding: 1vh 1vw;
    width: 230px;
    text-align: center;
}

.logoMob {
    padding: 1vh 1vw;
    width: 230px;
    text-align: center;
}

.footerlogo {
    padding: 1vh 1vw;
    width: 230px;
    text-align: center;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0px 0.7vw;
    margin: 0px;
    align-items: center;
}

.hamburger.toggle div {
    background: #000 !important;
}

.fix .nav-links li a {
    color: rgb(31, 46, 119);
}

.fix .nav-links li a span {
    color: rgb(31, 46, 119) !important;
}

.fix .nav-links li a svg,
.fix .nav-links li a svg g {
    fill: rgb(31, 46, 119);
}

.nav-links li a {
    text-decoration: none;
    margin: 0px 2.2vw;
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-family: var(--reg);
    font-weight: 600;
}

.swiper-slide {
    position: relative;
    height: 95vh;
}

.swiper-slide img {
    height: 100%;
    object-fit: cover;
}

.swiper-slide::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(8, 10, 26);
    opacity: 0.3;
    top: 0px;
    left: 0px;
}

.swiper-slide-active::after {
    animation: 4.2s linear 0s 1 normal none running fade;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

.nav-links li a::after {
    content: "";
    display: block;
    border-radius: 35px;
    height: 2.5px;
    width: 0%;
    background-color: rgb(140, 111, 255);
    position: absolute;
    bottom: -4px;
    left: 50%;
    transition: all 250ms ease-in-out 0s;
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a {
    position: relative;
}

.signInLink::after {
    content: none !important;
}
.headerContainer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    top: 55%;
}
.signInLink {
    padding: 5px 23px;
    margin-top: -8px !important;
    padding-top: 11px;
    background: var(--primary);
    width: auto !important;
    font-size: 16px !important;
}

.hamburger div {
    width: 20px;
    height: 2px;
    background: rgb(255, 255, 255);
    margin: 5px;
    transition: all 0.3s ease 0s;
}

.hamburger {
    display: none;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-4px, 5px);
}

.toggle .line2 {
    transition: all 0.7s ease 0s;
    width: 0px;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

header {
    width: 100%;
    min-height: 100vh;
    border: 1.3vw solid rgb(255, 255, 255);
    position: relative;
}

.hdrLft {
    background: rgb(0, 21, 148);
    position: relative;
    object-fit: cover;
    padding: 0;
    padding-bottom: 30px;
}

.pinkTitelHide h1 {
    color: #fff;
    position: relative;
    opacity: 1;
    left: -100%;
    animation: 0.8s linear 0s 1 normal none running posRelAbs;
    -webkit-animation: 0.8s linear 0s 1 normal none running posRelAbs;
}

.pinkTitelHide {
    position: relative;
    z-index: 3;
    left: 100%;
    width: 100%;
    overflow: hidden;
}

@keyframes posRelAbs {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hdrLft::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 100%;
    background: rgb(0, 21, 148);
    animation: 0.8s linear 0s 1 normal none running hdrLft;
    -webkit-animation: 0.8s linear 0s 1 normal none running hdrLft;
}

.hdrLftContent {
    position: relative;
    z-index: 3;
}

@keyframes hdrLft {
    0% {
        width: 200%;
    }

    100% {
        width: 100%;
    }
}

.hdrContent {
    position: absolute;
    top: 0px;
    height: 100%;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
header .bigTitel {
    width: 90vw;
}
.bigTitel {
    font-size: 110px;
    font-family: var(--bold);
    color: #fff;
    pointer-events: none;
    position: relative;
}

.hTitelWrapper {
    z-index: 3;
    position: relative;
    width: 100%;
}

.titelPink {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    color: #ffbacf;
}

.paragraph {
    font-size: 22px;
    color: rgb(255, 186, 207);
    font-family: var(--reg);
}

header .paragraph {
    width: 100%;
    color: #fff;
}

header .bigTitel {
    font-size: 120px;
}

.inlineForm {
    width: 95%;
}

.inlineForm input {
    width: 50%;
    padding: 5px 10px;
    font-size: 16px;
    outline: 0px;
    border: 0px;
    color: #2a397e;
    font-weight: 700;
}

.inlineForm ::placeholder {
    color: rgb(8, 10, 26);
    font-weight: 600;
}

.inlineForm .button {
    width: 50%;
}

#works .Arcontainer {
    position: relative;
}

#works .Arcontainer .shapeTop {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 40%;
    pointer-events: none;
    z-index: 1;
}

.sceShapeTop {
    width: 6%;
    position: absolute;
    top: 0px;
    right: 0px;
}

#works .Arcontainer .shapeBottom {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 20%;
    pointer-events: none;
    transform: translateX(50%) translateY(50%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}

.sectionTitel {
    width: 100%;
    max-width: 700px;
    margin: 0px auto;
    color: var(--primary);
    font-weight: 600;
}

.brands:hover {
    transform: scale(1.2);
    opacity: 0.5;
    cursor: pointer;
}

.slick-slide img {
    width: 140px;
}

#section4 .bigTitel {
    color: var(--primary);
    font-size: 48px;
    line-height: 1;
    font-family: var(--bold);
}

#section4 .paragraph {
    color: #041476;
}

#section4 .mzinRow {
    background-color: rgb(249, 200, 202);
    height: 100%;
    position: relative;
}

#section4 .shapeTop {
    position: absolute;
    top: 0px;
    right: 0px;
    pointer-events: none;
}

.shapeMiddle {
    position: absolute;
    width: 20%;
    top: 10%;
    left: 5%;
}

#section5 .bigTitel {
    color: var(--primary);
    font-size: 60px;
    line-height: 0.9;
    font-family: var(--bold);
}

#section5 .paragraph {
    color: #041476;
}

#section5 .shapeBottom {
    width: 6%;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.clients img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin-left: auto;
    pointer-events: none;
}

#technology {
    background: rgb(16, 23, 61);
    position: relative;
}

#technology .bigTitel small {
    font-size: 30px;
    display: inline-block;
    margin-left: -23px;
}

#technology .bigTitel {
    position: relative;
    color: rgb(249, 200, 202) !important;
}

#technology .bigTitel::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -5px;
    width: 30%;
    height: 2px;
    background: rgb(249, 200, 202);
    transform: translateX(-50%);
}

#product {
    background: rgb(255, 255, 255);
    padding-top: 80px;
    padding-bottom: 30px;
}

.sliderTwo img {
    display: block;
    margin: 0px auto;
}

.sliderTitel {
    font-family: var(--reg);
    font-weight: 600;
    font-size: 26px;
    color: var(--primary) !important;
}

.sliderText {
    font-size: 16px;
    color: #041476;
}

.uk-width-3-4 {
    background: rgb(230 229 229);
    margin: 0px 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 80px 80px 20px !important;
    transform: translateX(30%) !important;
}

.uk-width-3-4 .row {
    background: url("../../img/bars.svg") center center / 20% no-repeat;
}

.slider2Lft,
.slider2Rght {
    background: rgb(16 23 61);
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    right: 10%;
}

.slider2Rght {
    right: 10%;
}

.slider2Lft {
    left: 10%;
}

.slider2Lft img,
.slider2Rght img {
    width: 20px;
}

.slider2Lft img {
    transform: rotate(180deg);
}

.slider2Slide2 img {
    width: 100%;
    max-width: 250px;
}

.uk-dotnav li a {
    border-color: rgb(0, 0, 0) !important;
}

.uk-dotnav .uk-active a {
    background: rgb(0, 0, 0) !important;
}

.slider2Shape {
    position: absolute;
    top: 3%;
    z-index: 8;
    left: 18%;
    width: 12%;
}

#section8 {
    background: rgb(16, 23, 61);
}

#section8 .shape {
    width: 30%;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

#section8 .Arcontainer {
    position: relative;
    z-index: 2;
}

#section8 .bigTitel {
    font-size: 50px;
    color: var(--primary);
}

#section8 p {
    color: rgb(255, 255, 255);
}

.footer {
    background: rgb(18, 24, 58);
}

.footerTitel {
    color: rgb(255 255 255);
    font-family: var(--reg);
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
    color: #f9c8ca !important;
}

#language-select {
    border: 1px solid rgb(255, 255, 255);
    font-size: 17px;
    color: rgb(255, 255, 255);
    width: 80%;
    padding: 10px;
    background: rgb(18, 24, 58);
}

.footerLink {
    color: rgb(255, 255, 255);
}

.footerText {
    color: rgb(255 255 255);
}

.footer form .inlineForm {
    width: 100%;
}

.uk-grid {
    margin-left: 0px !important;
}

.imgDiv {
    flex-wrap: wrap;
    width: 70%;
    display: flex;
    margin: 0 auto;
}

.imgDiv .img {
    width: 25%;
    margin: 6px;
    background: #fff;
    padding: 14px;
    border-radius: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.contactSec {
    background: #001594;
}

.contactSec .shape {
    position: absolute;
    top: 0;
    left: 10%;
    width: 30%;
}

.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.translate-lang .select {
    margin: 18px 0 3px 0;
}
.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #757575;
    width: 100%;
    margin: 3px 0;
    height: 55px;
}

.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #757575;
    font-weight: 600;
    background-color: #fff;
    padding: 8px 15px;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #757575 transparent transparent transparent;
    position: absolute;
    top: 25px;
    right: 10px;
}

.select-styled:hover {
    background-color: #fff;
}

.select-styled:active,
.select-styled.active {
    background-color: #fff;
}

.select-styled:active:after,
.select-styled.active:after {
    top: 9px;
    border-color: transparent transparent #757575 transparent;
}

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    border: 0;
    padding: 0;
    list-style: none;
    background-color: #fff;
}

.select-options li {
    margin: 0;
    padding: 12px 0 !important;
    text-indent: 15px;
    border-top: 1px solid rgb(59, 59, 59);
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.select-options li:hover {
    color: rgb(18, 24, 58);
    background: #ddd;
}

.select-options li[rel="hide"] {
    display: none;
}

a {
    cursor: pointer;
}

.contactSec input,
.contactSec textarea,
.contactSec select {
    width: 100%;
    padding: 14px 20px;
    background: #fff;
    color: rgb(18, 24, 58);
    font-weight: 600;
    border: none;
    display: block;
    margin: 5px 0;
    border-radius: 0px;
}

.contact .contactSec form input::placeholder,
.contact .contactSec .select-styled {
    color: rgb(18, 24, 58) !important;
    opacity: 1 !important;
}

/*
.contactSec input::placeholder{
    color: #000!important;
    opacity: 1!important;
}
*/

.contactSec textarea {
    height: 265px;
}

.contactSec .button {
    width: 100%;
}

.contactSec .bigTitel {
    font-size: 80px;
    color: #4864c9;
    font-weight: bold;
}

.ifrm {
    position: relative;
    width: 62%;
}

.ifrm img {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
}

.footerText a {
    color: #fff;
    display: block;
}

.shadow {
    box-shadow: 5px 5px 1px #f96a7c !important;
}

.language-select + .select-styled {
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
}

.lhdr + .select-styled {
    background: transparent !important;
    border: 2px solid #4864c9 !important;
    color: #4864c9 !important;
}

.stopScroll {
    overflow: hidden;
    height: 100vh;
}

.numbrList {
    background: #1e4297;
    width: 18px;
    display: inline-block;
    text-align: center;
    color: #fff;
    height: 18px;
    font-size: 14px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.muserTitel {
    color: #1e4297 !important;
    font-size: 16px;
}

/* legal notice page */
.notisebg {
    background: #001594;
    border-top: 1.3vw solid #fff;
}

.notisebg .bigTitel {
    color: #f9c8ca;
}

.lnTitel {
    color: #709dff;
    font-family: var(--bold);
    font-size: 45px;
}

.lnText {
    color: #fff;
    font-size: 22px;
}

.notisebg .shapeBottom {
    width: 6%;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.muser p {
    color: #041476 !important;
}

.sawwwa {
    position: relative;
    z-index: 1;
}

.sawwwa img {
    position: relative;
    z-index: 1;
}

.sawwwa::after {
    position: absolute;
    content: "";
    background-color: #f86e7f;
    height: 30px;
    width: 93%;
    right: 0;
    top: -15px;
    z-index: 0;
}

.sawwwa::before {
    position: absolute;
    content: "";
    background-color: #f86e7f;
    height: 95%;
    width: 30px;
    right: 0;
    top: 0;
    z-index: 0;
}

.select-options li:nth-of-type(1) {
    display: none !important;
}
.footer a {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.footer a:hover {
    color: #62667f !important;
}

.footer .select-options li,
nav .select-options li {
    border: 0 !important;
    color: #12183a;
}

.footer .select-options,
nav .select-options {
    background: #f9c8ca;
}
.slick-initialized .slick-slide {
    display: flex;
    align-items: center;
    height: 150px;
}
/* coming soon */
.comingSoon {
    display: grid;
    place-items: center;
}
