@font-face {
    font-family: 'UniNeue';
    src: url('./fonts/UniNeue-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'UniNeue';
    src: url('./fonts/UniNeue-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'UniNeue';
    src: url('./fonts/UniNeue-Light.ttf');
    font-weight: lighter;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    
    background:linear-gradient(287.97deg, rgb(98, 203, 192) 0%, rgb(59, 88, 127) 100%), rgb(59, 88, 125);

    font-family: 'UniNeue', sans-serif;
}


.hidden {
    display: none;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1d2026;
    z-index: 9999;
}

#loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
}

#main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#main-nav{
    height: 60px;
    width: 100%;
    display: block;
    background-color: #1d2026;
    border-bottom: 1px solid rgba(32, 24, 22, .2);
    text-align: left;
    background-image: url(../img/sphere.svg);
    background-position: 97%;
    background-size: 42px;
    background-repeat: no-repeat;
    padding: 16px;
}



#main section.primary {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-lines.svg);
    background-repeat: no-repeat;
    background-position: 40% 35%;
    background-size: 120%;
}

.stps{
    background: #1d2026;
    padding: 24px;
    border-radius: 4px;
    width: 360px;
    margin-top: -10%;
}


.logo{
    width: 220px;
}
.logo img{
    width:100%;
}

h1{
    font-size: 24px;
    font-style: normal;
    line-height: 34px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #ffffff;
    display: block;
    font-weight: bold;
    margin-top: 0px;
}

h2{
    font-size: 17px;
    font-weight: bold;
    line-height: 23.15px;
    margin-top: 10px;
    margin-bottom: 15px;
    font-style: normal;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: normal;
}

.secondary-header{
    margin-top: 20px;
}

div.txt-input{
    width: 100%;
}

label{
    font-weight: normal;
    color: #fff;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 5px;
    font-style: normal;
    display: block;
}

div.txt-input input, div.txt-input select{
    width: 80%;
    border-radius: 4px;
    height: 40px;
    padding: 9px 11px;
    padding-left: 24px;
    font-size: 15px;
    margin-bottom: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(152, 158, 168, 0.3);
    box-shadow: rgb(29, 32, 37) 0px 0px 0px 40px inset;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    caret-color: rgb(255, 255, 255);
    outline: none;
    color: #fff;
}

.iti{
    margin-bottom: 20px;
    width: 100%!important;
}

.tlf-inputs{
    padding-left: 93px!important;
    width: 100%!important;

}

.iti__selected-dial-code{
    color: #fff;
    font-family: sans-serif;
}

.btn{
    color: #fff;
    background-color:rgb(109, 218, 208);
    border: none;
    border-radius: 4px !important;
    height: 48px;
    padding: 14px 40px;
    font-size: 15px;    
    margin: 20px 0;
    width: 100%;
}

.btn2{
    background-color:#78be21;
}

.std-link p{
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 19px;
    color: rgb(158, 221, 216);;
    cursor: pointer;
}

.std-small p{
    color: rgb(158, 221, 216);
    font-style: normal;
    font-size: 12px;
    line-height: 24px;
    max-width: 40ch;
    font-weight: normal;
}

.sec-img{
    width: 100%;
    max-width: 340px;
    height: 140px;
    background-color: #e2e2e2;
    margin-bottom: 20px;
}

.sec-img img{
    position:relative;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width:30px;
    height:30px;
}

.ldr-img{
    width: 100%;
    max-width: 340px;
    height: 124px;
    margin-bottom: 20px;
}

.ldr-img img{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
}


@media screen and (max-width: 1000px) {
    .lg {
        display: none;
    }
    #main section.primary{
        width: 100%;
        
    }

    .stps{
        margin-top: 10px;
    }
    
}


@media screen and (max-width: 500px) {

    body{
        background-color: #1d2026;
        background-image: none
    }

    #main section.primary{
        /*zoom: 90%;*/
        background-image: none;
        justify-content: flex-start;
    }

    #main-nav{
        box-shadow: rgba(10, 14, 23, 0.2) 0px 2px 3px;
        margin-bottom: 12px;
    }
    
}

@media screen and (max-width: 500px) {
    #main section.primary{
        /*zoom: 86%;*/
    }
}



