@font-face {
    font-family: 'tstyle1';
    src: url('./texts/GeTravelscript.ttf');
  }
  
  @font-face {
    font-family: 'tstyle2';
    src: url('./texts/Hello\ Beauty\ Personal\ Use.ttf');
  }
  
  @font-face {
    font-family: 'tstyle3';
    src: url('./texts/News\ 705\ Italic\ BT.ttf');
  }
  
  
  
  
  
  
  
  
  
  
  
  
  body {
    margin: 0;
    padding: 0;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
  
  }
  
  * {
    margin: 0;
    padding: 0;
  }
  
  .korpus {
    width: 100%;
    max-width: 600px;
    min-width: 300px;
  }
  
  .fon {
    position: relative;
    width: 100%;
    /* Rasmning kengligini o'zingizga mos ravishda o'zgartiring */
    height: 400px;
    /* Rasmning balandligini o'zingizga mos ravishda o'zgartiring */
    overflow: hidden;
    box-shadow: 5px 5px 5px white;
  }
  
  .fon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .fon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
  }
  
  .a1 {
    font-size: 35px;
    padding: 25px 10% 40px 20%;
    margin-top: -30px;
    text-transform: uppercase;
  }
 
  .tsyle {
    font-family: tstyle1;
    position: relative;
    top: 20px;
    left: 10px;
  }
  
  .a2 {
    font-size: 20px;
    padding: 25px 10% 40px 5%;
    font-family: tstyle3;
  }
  
  .a4 {
    font-size: 27px;
    padding: 25px 0 0 15%;
  
    font-family: tstyle3;
  }
  
  .a5 {
    font-size: 30px;
    padding: 0 0 25px 35%;
  
    font-family: tstyle2;
  }
  
  .lokatsiya {
    display: grid;
    align-items: center;
    justify-content: center;
  }
  
  .lokatsiya h1 {
    padding: 15px;
    font-family: tstyle1;
  }
  
  .lokatsiya h3 {
    font-size: 20px;
    padding: 10px 0 15px 25px;
  }
  
  .lokatsiya h3 p {
    padding-left: 10%;
  }
  
  .bagdarlamasi {
    display: grid;
    width: 100%;
  }
  
  .bagdarlamasi h1 {
    font-size: 25px;
    font-family: tstyle3;
    padding-left: 25%;
    padding-top: 30px;
  }
  
  .a3 {
    font-size: 25px;
    padding: 0px 10% 40px 35%;
  }
  
  .bagdarlamasi h2 {
    font-size: 20px;
    font-family: tstyle1;
    padding: 0px 0% 0px 35%;
  }
  
  .bagdarlamasi h3 {
    font-size: 17px;
    font-family: tstyle3;
    padding-left: 45%;
    margin-top: -50px;
    padding-bottom: 70px;
  }
  
  .bagdarlamasi i {
    display: flex;
    width: 3px;
    height: 70px;
    background-color: black;
    margin-left: 45%;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .dizim {
    display: flexbox;
    width: 100%;
    padding-top: 20px;
  }
  
  .dizim h2 {
    font-size: 17px;
    padding-left: 20%;
    font-family: tstyle1;
    padding-bottom: 5%;
  }
  
  .inext {
    margin: 5px 0 25px 20px !important;
    width: 40% !important;
    border-radius: 10px;
    padding: 5px 0 5px 10px;
    color: #000;
    border: 1.5px dashed red;
    box-shadow: 5px 5px 10px black;
  }
  
  .inext1 {
    margin: 15px 0 25px 10% !important;
    width: 80% !important;
    display: none;
    height: 200px;
    border-radius: 10px;
    padding: 5px 0 5px 10px;
    color: #000;
    border: 1.5px dashed red;
    box-shadow: 5px 5px 10px black;
  }
  
  .inext1:focus {
    border: none;
    outline: none;
    box-shadow: 5px 5px 10px rgb(119, 33, 119);
  }
  
  .inext:focus {
    border: none;
    outline: none;
    box-shadow: 5px 5px 10px rgb(22, 223, 39);
  }
  
  
  
  
  
  
  
  
  
  .glow-on-hover {
    width: 70%;
    height: 50px;
    border: none;
    outline: none;
    margin-left: 15%;
    margin-top: 20px;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    font-family: tstyle3;
    text-shadow: 0.5px 0.5px 2px white;
  }
  
  .glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
  }
  
  .glow-on-hover:active {
    color: #000
  }
  
  .glow-on-hover:active:after {
    background: transparent;
  }
  
  .glow-on-hover:hover:before {
    opacity: 1;
  }
  
  .glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
  }
  
  @keyframes glowing {
    0% {
      background-position: 0 0;
    }
  
    50% {
      background-position: 400% 0;
    }
  
    100% {
      background-position: 0 0;
    }
  }
  
  
  
  
  
  
  
  
  
  
  .timer {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #fff;
    background-color: #333;
    padding: 20px;
    margin-top: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .timer__items {
    display: flex;
    gap: 20px;
  }
  
  .timer__item {
    background-color: #444;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .timer__item::before {
    content: attr(data-title);
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: bottom 0.3s ease-out, opacity 0.3s ease-out;
  }
  
  .timer__item:hover::before {
    bottom: 10px;
    opacity: 1;
  }
  
  .timer__item--animate {
    animation: popIn 0.6s ease forwards;
  }
  
  @keyframes popIn {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
  
    50% {
      transform: scale(1.2);
      opacity: 1;
    }
  
    100% {
      transform: scale(1);
    }
  }
  
  .timer__item span {
    display: inline-block;
    animation: blink 1s infinite step-end alternate;
  }
  
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  
  
  
  
  
  
  
  
  .container {
    --s: 1em;
    /* control the size */
    --g: 10px;
    /* the gap */
    --c: #009688;
    /* the active color */
  
    display: grid;
    grid-auto-rows: 1fr;
    gap: var(--g);
    position: relative;
    margin-left: 10%;
  }
  
  .container:before {
    content: "";
    position: absolute;
    height: calc(var(--s)/2);
    left: calc(var(--s)/4 + var(--_x, 0px));
    top: calc(var(--s)/4);
    background: var(--c);
    border-radius: 50%;
    aspect-ratio: 1;
    transition: .4s, left cubic-bezier(.1, -2000, .7, -2000) .4s;
  }
  
  label {
    display: inline-flex;
    line-height: var(--s);
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  
  .abs {
    height: var(--s);
    aspect-ratio: 1;
    border: calc(var(--s)/8) solid var(--_c, #939393);
    border-radius: 50%;
    outline-offset: calc(var(--s)/10);
    padding: calc(var(--s)/8);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    font-size: inherit;
    margin: 0;
    transition: .3s;
  }
  
  .abs:checked {
    --_c: var(--c);
  }
  
  .container:not(:has(.abs:checked)):before {
    --_i: -1;
    opacity: 0;
  }
  
  .container:has(.abs:checked):before {
    opacity: 1;
    transform: translateY(calc(var(--_i)*(var(--s) + var(--g))))
  }
  
  .container:has(label:nth-child(1) .abs:checked):before {
    --_i: 0;
    --_x: .02px
  }
  
  .container:has(label:nth-child(2) .abs:checked):before {
    --_i: 1;
    --_x: .04px
  }
  
  .container:has(label:nth-child(3) .abs:checked):before {
    --_i: 2;
    --_x: .06px
  }
  
  .container:has(label:nth-child(4) .abs:checked):before {
    --_i: 3;
    --_x: .08px
  }
  
  .container:has(label:nth-child(5) .abs:checked):before {
    --_i: 4;
    --_x: .1px
  }
  
  /* and so on ..*/
  
  .abs:disabled {
    background:
      linear-gradient(#939393 0 0) 50%/100% 20% no-repeat content-box;
    opacity: .5;
    cursor: not-allowed;
  }
  
  @media print {
    .abs[type=radio] {
      -webkit-appearance: auto;
      -moz-appearance: auto;
      appearance: auto;
      background: none;
    }
  }
  
  @supports not selector(:has(*)) {
    .container:before {
      display: none;
    }
  
    .abs:checked {
      --_c: var(--c);
      background: var(--c) content-box;
    }
  }



  .animate-section {
    opacity: 1;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}








#temporaryButton {
  position: fixed;
  top: 10%;
  right: 32%;
  transform: translateY(-50%);
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  z-index: 1000;
  animation:  muz 3s ease-in-out 1;
}
@keyframes muz {
  0%{
    top: -10%;
  }
  100%{
    top: 10%;
  }
  
}