@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto:wght@400;500;700&display=swap');
@import "font-awesome/css/font-awesome.css";
/*
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
*/
*{
    outline:none !important;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-decoration:none;
    font-family:'Roboto', sans-serif;
}
html{
    height:100%;
    min-height:100%;
    font-family:sans-serif;
    font-display:swap;
    -webkit-text-size-adjust:100%;
    -ms-text-size-adjust:100%;
    scroll-behavior:smooth;
}
body{
    height:100%;
    margin:0px;
    padding:0px;
    overflow-y:hidden;
    scroll-behavior:smooth;
    background-size:cover;
    background-position:center center;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    flex-direction:row;
    padding:0 100px;
    background-repeat:no-repeat;
}
*, :after, :before{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}
.logo{
    width: auto;
    height: auto;
    position:absolute;
    top:70px;
    left:100px;
}
.logo img{
    max-width: 280px;
    max-height: 280px;
}
.slogan{
    font-family:'Poppins', sans-serif;
    font-size:68px;
    line-height:1.3;
    color:#fff;
    max-width:700px;
}
.form{
    width:360px;
    background-color:rgb(255 255 255 / 90%);
    border-radius:10px;
    padding:30px;
}
h2{
    font-weight:700;
    font-size:34px;
    padding:0;
    margin:0;
    margin-bottom:15px;
    color:#43273b;
}
a{color:#43273b;}
.form-line-element:not(:last-child){
    margin-bottom:20px;
}
.form-line-element{
    font-size:12px;
    font-weight:500;
    color:#43273b;
}
.form-line-element input{
    border:1px solid #43273b;
    background-color:#ffffff;
    width:100%;
    height:40px;
    border-radius:6px;
    margin-top:5px;
    padding:5px;
}
.form-line-element textarea{
    border:1px solid #43273b;
    background-color:#ffffff;
    width:100%;
    height:80px;
    border-radius:6px;
    margin-top:5px;
    resize:none;
    padding:5px;
}
.form-line-element button{
    background-color:#43273b;
    color:#ffffff;
    height:40px;
    border:none;
    border-radius:6px;
    padding:0 20px;
    cursor: pointer;
}
.form-line-element span{
    display:inline-block;
    width:100%;
}
.form-line-element i{
    font-size:20px;
    margin-right:15px;
    color:#43273b;
}
.language{position: absolute;top: 15px;right: 15px;font-weight: 600;color: #ffffff;padding: 15px;display: flex;align-items: center;line-height: 1;gap: 10px;z-index: 2;}
@media (max-width:1280px){
    body{
        overflow-y:hidden;
        display: flex;
        flex-direction:column;
        padding:40px 0;
        padding-top: 130px;
        flex-wrap:nowrap;
        background-attachment: fixed;
        min-height: 100%;
        height: auto;
        justify-content: center;
    }
    .logo{
        top: 15px;
        left: 50%;
        transform: translate(-50%, -00%);
        -webkit-transform: translate(-50%, -00%);
        -moz-transform: translate(-50%, -00%);
        -o-transform: translate(-50%, -00%);
        -ms-transform: translate(-50%, -00%);
        min-height: 100px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .logo img{
    }
    .slogan{
        font-size:22px;
        text-align:center;
        max-width:100%;
        margin-bottom: 30px;
    }
    .form{
        width:100%;
        padding:15px;
        max-width: 290px;
    }
    h2{
        font-size:26px;
        margin-bottom:15px;
    }
    .form-line-element{
        font-size:10px;
    }
    .form-line-element:not(:last-child){
        margin-bottom:15px;
    }
    .form-line-element span{
        width:100%;
    }
    .form-line-element input{
        height:30px;
    }
    .form-line-element textarea{
        height:60px;
    }
    .form-line-element button{
        height:30px;
    }
    .form-line-element i{
        font-size:16px;
    }
}
.bg-video{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -2;
    background-color: #000;
}
.bg-video video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.2;
}