@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primary : #EFFD53;
    --white : #FFFFFF;
    --black : #000000;
}

body{
    font-family: "Montserrat:ital",sans-serif;
    color: var(--white);
    background: #000;
}

.continer{
    max-width: 1000px;
    padding: 20px;
    margin: auto;
    
   
}
.about{
    text-align: center;
    font-size: 110%;
}
.servises{
    max-width: 1200px;
    padding: 30px;
    margin: auto;
}
.term-con{
    max-width: 1200px;
    padding: 20px;
    margin: 0px;

}
.btn{
    padding: 12px 20px;
    background: transparent;
    outline: none;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 5px;
    align-items: center;
    border-radius: 10px;
}
.ptn-privavy{
    border:2px solid var(var(--white));
    color:var(--white);
    font-weight: bold;
}
.about-us-title{
    width: 40%;
    position:absolute;
    flex-direction: column;
    color: var(--white);
    font-size: 120%;
    bottom: 385px;
    right: 350px;
    animation-delay: 1s;
}
.bg-color{
    background: var(--primary);
    color: var(--black);
    width: 200px;
    height: 28%;
    font-size: 100%;
    padding: 5px;
}
.main{
    position:absolute;
}
.anim{
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}
@keyframes moveup{
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}



