*{
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
/* imports */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.add{
  display: none;
  background: blue;
  border-radius: 100px;
  padding: 10px;
  margin-top: 10px;
  margin-left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 20px;
  border: solid white;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  cursor: url("/frontend/img/icons8-cursor-32.png"), auto;
}

body {
  overflow-x: hidden;
}

a,
button :hover {
  cursor: url("/frontend/img/icons8-hand-cursor-32.png"), pointer;
}

.navbarus {
  width: 1536px;
  height: 86px;
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  z-index: 1000;
}

.navbarus-logo > a > img {
  width: 194px;
  height: 87px;
}

.navbarus-menu {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.navbarus-menu > ul > li > a {
  text-decoration: none;
  color: #ffffffff;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.navbarus-menu > ul > li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbarus-menu > ul > li > a:hover {
  color: #78e038;
  transition: 0.2s ease-in-out;
}

.navbarus-menu > ul {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  list-style: none;
  margin-bottom: 0;
}

.endless {
  margin-left: 10px;
  margin-right: 15px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #2164ae;
}
.top{
    margin-top: 160px;
    display: flex;
    flex-direction: row;
    .title{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        .main{
            font-weight: 900;
            font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-size: 50px;
        }
        
    }
}

.scroll-container {
    position: relative;
}

.sliding-object {
    z-index: 2;
    position: sticky;
    top: 350px; /* Start sliding at 10px from the top */
    width: 100%;
    display: flex;
    transition: transform 0.3s ease;
    flex-direction: column;
    align-items: center;
    img{
        width: 5%;
    }
}

.content {
    position: relative;
    padding: 20px;
    .container{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.line{
    position: absolute;
    height: 99%;
    width: 8px;
    transform: translate(-50%);
    border: 2px solid;
    left: 50%;
    top:0;
    .fill{
        position: absolute;
        height: 0%;
        width: 8px;
        transform: translate(-50%);
        background: linear-gradient(0deg, rgba(255,0,0,1) 0%, rgba(255,149,0,1) 60%);
        left: 50%;
        top:0;
    }
}
.evv{
    position: relative;
    opacity: 0;
    transition: opacity 1s;
    .hover{
        width: 50%;
        height: 300px;
        z-index: 3;
        position: absolute;
    }
}

.event-right{
    float: right !important;
    height: 300px;
    position: relative;
    width: 40%;
    .event-img{
        top: 50%;
        transform: translate(0,-50%);
        z-index: 1;
        position: absolute;
        left: -15%;
        .zoom{
            width: 40%;
            overflow: hidden;
            border-radius: 40px;
            -webkit-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            -moz-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            img{
                transition: transform 1s;
                width: 100%;
                border-radius: 40px;
                -webkit-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
                -moz-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
                box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            }
        }
        +.event-desc{
            text-align: center;
            z-index: 0;
            height: 100%;
            right:0;
            width: 90%;
            position: absolute;
            border-radius: 50PX;
            background: linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(0,50,166,1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            -webkit-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            -moz-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            .desc{
                color: white;
                font-size: 40px;
                padding: 30px;
                padding-left: 120px;
            }
        }
    }
}
.event-left{
    float: left;
    height: 300px;
    position: relative;
    width: 40%;
    .event-img{
      width: 100%;
        top: 50%;
        transform: translate(0,-50%);
        z-index: 1;
        position: absolute;
        right: 0;
        .zoom{
          float: right;
            width: 40%;
            overflow: hidden;
            border-radius: 40px;
            -webkit-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            -moz-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            img{
                transition: transform 1s;
                width: 100%;
                border-radius: 40px;
                -webkit-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
                -moz-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
                box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            }
        }
        +.event-desc{
            text-align: center;
            z-index: 0;
            height: 100%;
            left:0  ;
            width: 90%;
            position: absolute;
            border-radius: 50PX;
            background: linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(0,50,166,1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            -webkit-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            -moz-box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            box-shadow: 0px 0px 16px 3px rgba(34, 60, 80, 0.6);
            
            .desc{
                color: white;
                font-size: 40px;
                padding: 30px;
                padding-right: 120px;
            }
        }
    }
}
.event-desc::before{
    border-radius: 50px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    background: linear-gradient(135deg, rgba(0,0,   0,1) 0%, rgba(0,50,166,1) 0%, rgb(157, 0, 168) 100%);
    z-index: -1;
}
.hover:hover{
    +.event-left{
        .event-desc::before{
            opacity: 1;
        }
        .event-img{
            .zoom{
                img{
                    transform: scale(1.1);
                }
            }
        }
    }
    +.event-right{
        .event-desc::before{
            opacity: 1;
        }
        .event-img{
            .zoom{
                img{
                    transform: scale(1.1);
                }
            }
        }
    }
    
}

.footer {
    background-color: #000000;
    color: #fff9f9;
  }
  
  .gapla {
    display: flex;
    justify-content: space-between;
    padding: 115px 195px 115px 195px;
  }
  
  .manus {
    margin-bottom: 30px;
  }
  
  .icons {
    margin-top: 35px;
    display: flex;
    justify-content: space-around;
  }
  .firstus {
    background-color: #1a1a1a;
    height: 61px;
    width: 61px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .mania {
    margin-bottom: 30px;
  }
  
  .iconsuzbirinchi {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .iconsuzbirinchi > img {
    width: 16px;
    height: 20px;
  }
  
  .peram {
    text-align: center;
    font-size: 20px;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 170px;
  }
  
  .krutoybratjonla {
    margin-left: -185px;
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 150px;
  }
  
  .Abdulaziz {
    position: relative;
  }
  .Jafar {
    position: relative;
  }
  .Izzat {
    position: relative;
  }
  
  .rest {
    position: absolute;
    top: -155px;
    z-index: 10;
    left: 190px;
    height: 462px;
    width: 260px;
  }
  
  .ism1 {
    margin-top: 245px;
    margin-left: 210px;
  }
  .ism2 {
    margin-top: 245px;
    margin-left: -175px;
  }
  .ism3 {
    margin-top: 245px;
    margin-left: -205px;
  }
  .rest2 {
    position: absolute;
    top: -155px;
    z-index: 10;
    left: -210px;
    height: 462px;
    width: 260px;
  }
  
  .rest3 {
    position: absolute;
    top: -155px;
    z-index: 10;
    left: -250px;
    height: 462px;
    width: 260px;
  }
  
  .peram2 {
    text-align: center;
    padding-bottom: 50px;
  }
  