@import url('https://fonts.googleapis.com/css2?family=Changa:wght@600&display=swap');
@import url('https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css');

* {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Changa', sans-serif;
    box-sizing: border-box;
}


:root {
    --black1: #333;
    --black2: #444;
    --black3: #777;
    --black4: #999;
    --primary: #486AFF;
    --secondary: #425ccf;
    --blackblue: #1F456C;
    --accent: #FF7D90;
    --green:#25d366;
    --section-bag: 120px;
}

.langbtn{
	font-size:1.5rem !important;	
	display:flex;
	align-items:center;
	justify-content:center;
	gap:5px;
}
.langbtn img{
	height:15px;
}

.navb ul {
    display: flex;
    list-style: none;
    gap: 20px;
	justify-content:start;
	align-items:center;
}

.navb ul li a{
    text-decoration: none;
    color: var(--black3);
    cursor: pointer;
	display:flex;
	align-items:center;
	justify-content:center;
}
.clintsdiv img{
	width:70% !important;
}
.clints .clintsdiv{
	place-items:center;
}




.serv{
    display: flex;
    align-items: center;
    justify-content: center;    
    position:relative;
    gap:8px;
    padding:15px 0;
}
.serv i{
    display: flex;
    align-items: center;
    justify-content: center;
}
.serv ol{
    background-color: white;
   position: absolute; 
   padding:30px;
   border: 1px solid #3333;
   border-radius: 8px;
   list-style: none;
   min-width:320px;
   display: none;
   gap: 8px;
   top:50px;
   box-shadow: 0 0 15px 5px #3333;
   flex-direction: column;
   align-items:flex-start;
}
.serv:hover ol{
    display: flex;
}


body{
    width: 100vw;
    overflow-x: hidden;
}




@media screen and (max-width: 992px) {
    .serv{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        background-color: #eee5;
        border-radius:10px;
        border: none;
    }
    .serv ol{
        display: flex;
        position: relative;
        box-shadow: none;
        border:none;
        top: 0;
        background-color: #eee0;
        text-decoration: none;
        padding: 8px;
        
    }
    .serv ol li{
        text-decoration: none;
    }
}