#header input {
    width: 150px;
    height: 36px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid #231F20;
    border-radius: 0;
}

#header input::placeholder {
    color: #231f2082;
}

#header input:focus {
    border: 1px solid #231F20 !important;
    box-shadow: none;
}

#header .color {
    color: #231F20;
    margin-left: -38px;
    margin-top: 10px;
    cursor: pointer;
}

#header #lang {
    background-color: #231F20;
    background-image: url('../img/white-down-arrow-png-2.png');
    background-repeat: no-repeat;
    background-position-x: 75%;
    background-position-y: 10px;
    background-size: 15px;
    color: #fff;
    border-radius: 0px;
    width: 60px;
    height: 36px;
    font-size: 16px;
    padding: 4px;
}

#aboutUsFirstSentence {
    color: #007ac7;
    font-size: 25px;
    font-weight: 700;
}

/* 
#header .language-select::after {
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #f00;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    content: "";
    z-index: 98;
} */

/* Sarlavha qism */
.list-card {
    background-color: #fff;
}

.list-card ul {
    list-style-type: none;
    padding: 10px;
}

.list-card ul li {
    margin: 5px;
    background: #ddd;
}

.list-card ul li .spanS {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #231F20;
}

/* Services qismidagi headinglarni dizaynini taxlash */
#services .heading {
    width: 100%;
    padding: 10px;
    background: #fff;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}

#services .heading .heading-title {
    width: 100%;
    height: 50px;
    background: #fff;
    padding: 10px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

#services .heading .heading-title h3 {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 37px;
    /* identical to box height */
    margin-left: 25px;
    color: #231F20;
}

.heading .heading-list ul li {
    list-style-type: none;
    margin: 20px 6px;
}

.heading .heading-list ul li span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #007ac7;
    margin-left: 8px;
}

/* Heading scrollbar styles */

/* .heading::-webkit-scrollbar {
    width: 10px;
}

.heading::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 5px;
    border-right: 4px solid #fff;
}

.heading::-webkit-scrollbar-track {
    background-color: #fff;
} */


.obunaListItem {
    display: flex;
    justify-content: flex-start;
}

.obunaListItem img {
    margin-right: 10px;
}

a.hoverr {
    color: #18272F;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

a.hoverr::before {
    content: '';
    position: absolute;
    /* clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%); */
    width: 0%;
    height: 4px;
    border-radius: 4px;
    background-color: #18272F;
    bottom: 0;
    left: 0;
    animation: homeLinkEffect 2s infinite;
    transition: all .3s linear;
}

a.hoverr:hover::before {
    background-color: #231F20;
}

@keyframes homeLinkEffect {
    0% {
        left: 0;
        width: 0%;
    }

    50% {
        left: 0;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 0%;
    }
}

@media screen and (max-width: 575px) {
    @keyframes homeLinkEffect {
        0% {
            left: -100%;
            width: 0%;
        }
    
        50% {
            left: 0%;
            width: 100%;
        }
    
        100% {
            left: 100%;
            width: 0%;
        }
    }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
    @keyframes homeLinkEffect {
        0% {
            left: -100%;
            width: 0%;
        }
    
        50% {
            left: 0%;
            width: 100%;
        }
    
        100% {
            left: 100%;
            width: 0%;
        }
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    @keyframes homeLinkEffect {
        0% {
            left: -100%;
            width: 0%;
        }
    
        50% {
            left: 0%;
            width: 100%;
        }
    
        100% {
            left: 100%;
            width: 0%;
        }
    }
}

@media screen and (min-width: 993px) and (max-width: 1200px) {
    
}

