body{
    padding: 0;
    margin: 0;
    background: rgb(228, 239, 248);
}

*{box-sizing: border-box;}
.tsul-text{
    padding: 10px 100px;
    width: 100%;
    height: 10vh;
}
.tsul-text div{
    display: flex;
    align-items: center;
    width: 300px;
}
.tsul-text div p{
    margin: 0;
    margin-left: 10px;
    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #111111;
} 

.kirish{
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.kirish form div.input-text{
    width: 400px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px #EBEBEB;
    display: flex;
    padding: 10px 20px;
    flex-wrap: wrap;
    border-radius: 17px;
    height: 50px;
    margin: 20px 0px;
}
.kirish form div.input-text input{
    width: 100%;
    border: none;
    font-size: 16px;
    outline: none;
}
.kirish form div p{
font-size: 10px;
margin: 0;
margin-bottom: 5px;
color: #A3A3A3;
font-family: sans-serif;
}
.input-text p{display: none;}
.d-b{display: block !important;}
.kirish form h1{
    font-family: open;
    font-style: normal;
    font-weight: 900 !important;
    font-size: 30px;
    margin-bottom: 50px;
    line-height: 22px;
    color: #111111;
}
.input-submit{
    width: 400px;
    display: flex;
    align-items: center;
}
.input-submit .input{
    width: 150px;
    padding: 15px;
    border: none;
    color: #fff;
    outline: none !important;
    font-size: 14px;
    border-radius: 15px;
    background: #0083CD;
}
.input-submit a{
    text-decoration: none !important;
    margin-left: 20px;
    font-size: 14px;
    font-family: sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #333333;
}
.text-content{
    width: 400px;
    padding: 10px;
    margin-top: 50px;
}
.text-content p{
    font-size: 14px !important;
    color: #333333 !important;
    font-family: sans-serif !important;
}
.text-content p span{
    color:#0083CD;
}

@media screen and (max-width:600px){
    .tsul-text{padding: 10px;}
}
@media screen and (max-width:450px){
    .kirish form div.input-text{
        width: 100%;
    }
    .input-submit{
        width: 100%;
    }
    .text-content{
        width: 100%;
    }
    body{
        min-height: 100vh;
    }
}
@media screen and (max-height:370px){

    .tsul-text{
        height: auto  !important;
    }
    .kirish{
        height: auto !important;
    }

}


.loader{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    display: none;
    background: rgb(228, 239, 248);
}
.loader div{position: relative;}
.img1,.img2,.img3{position: absolute; top: 0; left: 0;}
.show{display: flex !important;}
.img1{
    animation-name: img1;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
}
.img2{
    animation-name: img2;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
}
.img3{
    animation-name: img3;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
}
@keyframes img1{
    35%{opacity: 1;}
    65%{opacity: 0;}
    100%{opacity: 0;}
}
@keyframes img2{
    35%{opacity: 0;}
    65%{opacity: 1;}
    100%{opacity: 0;}
}
@keyframes img3{
    35%{opacity: 0;}
    65%{opacity: 0;}
    100%{opacity: 1;}
}