
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    color: white;
}

a {
    color: white;
    text-decoration: none;
}

nav {
    background-color:#1a1a1c;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    animation: show-kontent 1.5s linear forwards;
    animation-delay: 1.2s;
}

@keyframes show-kontent {
    100% {
        visibility: visible;
        opacity: 1;
    }
}

nav .logo {
    font-size: 30px;
    font-weight: 700;
}

nav ul {
    display: flex;
}

nav ul li {
    list-style: none;
    margin-left: 35px;
}

nav ul li a {
    font-size: 20px;
    font-weight: 500;
    transition: .5s;
}

nav a:hover,
nav a.active {
    color: #7cf03d !important;
}

#menu-icon {
    font-size: 4rem;
    display: none;
}

section {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 5rem 9% 0;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
}

section.active {
    animation: show-content 1.5s linear forwards;
    animation-delay: 1.5s;
    visibility: visible;
}

@keyframes show-content {
    100% {
        opacity: 1;
        overflow: auto;
    }
}

.home {
    display: flex;
    align-items: center;
    gap: 50px;
    height: 100vh;
    padding: 60px 9% 0;
    color: white;
    visibility: hidden;
    opacity: 0;
    position: relative;
}



.home-info h1 {
    font-size: 55px;
}

.home-info h2 {
    display: inline-block;
    font-size: 32px;
    margin-top: 2px;
}

.home-info h2 span {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: .7px #7cf03d;
    animation: display-text 16s linear infinite;
    animation-delay: calc(-4s * var(--i));
}

@keyframes display-text {
    25%, 100% {
        display: none;
    }
}

.home-info h2 span::before {
    content: attr(data-text);
    position: absolute;
    width: 0;
    border-right: 2px solid #7cf03d;
    color: #7cf03d;
    white-space: nowrap;
    overflow: hidden;
    animation: fill-text 4s linear infinite;
}

@keyframes fill-text {
    10%, 100% {
        width: 0;
    }

    70%, 90% {
        width: 100%;
    }
}

.home-info p {
    font-size: 16px;
    margin: 15px 0 25px;
}

.home-info .btn-sci {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #7cf03d;
    border: 2px solid #7cf03d;
    border-radius: 40px;
    box-shadow: 0 0 10px #7cf03d;
    font-size: 16px;
    color: #1f242d;
    font-weight: 600;
    transition: .5s;
}

.btn:hover {
    background: transparent;
    color: #7cf03d;
    box-shadow: none;
}

.home-info .btn-sci .sci {
    margin-left: 20px;
}

.home-info .btn-sci .sci a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid #7cf03d;
    border-radius: 50%;
    font-size: 20px;
    color: #7cf03d;
    margin: 0 8px;
    transition: .5s;
}

.home-info .btn-sci .sci a:hover {
    background: #7cf03d;
    color: #1f242d;
    box-shadow: 0 0 10px #7cf03d;
}

.home-info .btn-sci .sci a i {
    color: #7cf03d;
}

.home-info .btn-sci .sci a:hover i {
    color: #1f242d;
}
.home-img{
    position: absolute;
    right: 150px;

}
.home-img .img-box {
    position: relative;
    width: 32vw;
    height: 32vw;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-img .img-box::before,
.home-img .img-box::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: conic-gradient(transparent, transparent,
     transparent, #3dbdf0);
     transform: rotate(0deg);
    animation: rotate-border 10s linear infinite;
}

.home-img .img-box::after {
    animation-delay: -5s;
}

@keyframes rotate-border {
    100% {
        transform: rotate(360deg);
    }
}
.home-img .img-box .img-item {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1f242d;
    border-radius: 50%;
    border: 1px solid #1f242d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}
 /* .img-home .img-box .img-item img { */
  
   /* position: absolute; */
    /* display: block; */
    /* width: 85%; */
    /* object-fit: cover; */


.bars-box {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    z-index: -1;
}

.bars-box .bars {
    width: 100%;
    height: 100%;
    background: #1f242d;
    transform: translateY(-100%);
    animation: hide-bars .5s ease-in-out both;
    animation-delay: calc(.1s * var(--i));
}

@keyframes hide-bars {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-100%);
    }
}

.bars-box.active .bars {
    animation: show-bars .5s ease-in-out both;
    animation-delay: calc(.1s * var(--i));
}

@keyframes show-bars {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

.heading {
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.heading span {
    color: #7cf03d;
}
.home-info {
    padding-top: 1300px;
    margin-top: 2700px;
}


.border{
    border-radius: 40px;
    background-image: url(/f-8ff.jpg);
    width: 400px;
    height: 400px;
    background-position: center;
    text-align: center;
    background-repeat: no-repeat;
}
.border:first-child {
    background-size: cover;
}
.flex-con{
    width: 100%;
    display: flex;
    /* flex-direction: row-reverse; */
    justify-content: space-between;
    grid-area: 20px;
    align-items: center;
      top: 400px;
    
}

.flex-con:nth-child(2n) {
    flex-direction: row-reverse;

    .border {
        background-image: url(/ppppp.jpg);
        background-size: 100%;
    }
}

.flex-con:nth-child(3) {
    /* flex-direction: row-reverse; */

    .border {
        background-image: url(/photo_2024-12-05_14-28-04.jpg);
        background-size: 100%;
    }
}
.flex-con:nth-child(4) {
    /* flex-direction: row-reverse; */

    .border {
        background-image: url(/bobir.jpg);
        background-size: 100%;
    }
    
}

.flex-con:nth-child(5n) {
    /* flex-direction: row-reverse; */

    .border {
        background-image: url(/sunat.jpg);
        background-size: 100%;
    }
    
}

.flex-con:nth-child(6n) {
    /* flex-direction: row-reverse; */

    .border {
        background-image: url(/hojaka.jpg);
        background-size: 100%;
    }
    
}

.flex-con:nth-child(7n) {
    /* flex-direction: row-reverse; */

    .border {
        background-image: url(/habil.jpg);
        background-size: 100%;
    }
    
}

.flex-con:nth-child(8n) {
    /* flex-direction: row-reverse; */

    .border {
        background-image: url(/shaxri.jpg);
        background-size: 100%;
    }
    
}


.con{
    width: 700px;
    margin-left: 100px;
}
.cons{
    margin-right: 100px;
}
.hop{
    color:white;
}
.hops{
    color:white;
}
.nom{
    color: #7cf03d;
    justify-items: center;
    justify-content: center;
    text-align: center;
}
.bobir{
    border-radius: 40px;
}
.bobirs{
    border-radius: 40px;
    margin-top: 50px;
}
.bob{
    border-radius: 40px;
    margin-top: 50px;
}
.pdp{
    display: flex;
    margin-top: 50px;
}
.bos{
    border-radius: 40px;
    margin-top: 50px;
}
.olm{
    border-radius: 40px;
}
.okm{
    border-radius: 40px;
}
.omama{
    display: flex;

}
.oha{
    border-radius: 50px;
}
.hk{
 color: #7cf03d;
}