* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html,
  body {
    position: relative;
    height: 100%;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  section {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
  }
  
  .hero {
    position: absolute;
    bottom: 0;
    z-index: 5;
    max-width: 550px;
    filter: contrast(90%);
    pointer-events: none;
  }
  
  .swiper {
    width: 100%;
    height: 100%;
  }
  
  .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .title {
    position: absolute;
    top: 18%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 5rem;
    letter-spacing: 0.3rem;
    z-index: 5;
    color: transparent;
    background-position: 0 0;
    animation: animated-text 20s linear infinite;
  }
  
  @keyframes animated-text {
    100% {
      background-position: 200% 0;
    }
  }
  
  .one,
  .five {
    -webkit-text-stroke: 1px rgba(16, 104, 31, 0.8);
    background: url(https://github.com/ecemgo/mini-samples-great-tricks/assets/13468728/e9d06cb6-2844-49ed-9bde-23d3364b9fa4);
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  .two,
  .three,
  .four,
  .six {
    -webkit-text-stroke: 1px #fff;
    background: url(https://github.com/ecemgo/mini-samples-great-tricks/assets/13468728/ba4edde6-822d-437a-88c2-f54392d7a56f);
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .form-container {
    width: 480px;
    margin: 0 auto;
    padding: 35px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(206, 206, 206, 0.2);
    color: #020202;
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;

  }

  h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: #000000;
  }

  form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    
  }
  form label{
    flex: 30%;

  }
  form input{
    flex: 70%;
    border: 1px solid #a7a7a7;


  }
  form select{
    flex: 70%;
    border: 1px solid #a7a7a7;


  }

  

  label {
/*    margin-bottom: 10px;*/
    font-size: 18px;
  }

  input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #000000;
    background-color: #ffffff;
  }
  select {
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #000000;
    background-color: #ffffff;
  }

  button {
    padding: 10px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.2s ease-in-out;
    margin-top: 30px;
  }

  button:hover {
    background-color: #666666;
  }

  a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    transition: color 0.2s ease-in-out;
  }

  a:hover {
    color: #292829;
  }

  p {
    text-align: center;
    margin: 8px;
  }
  .bas{
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 30xpx;
  }
  .bas img{
    margin: auto;
    width: 350px;

  }
  .bas h3{
    margin: auto;
  }
  .satir{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-height: 70px;
  }
  @media only screen and (max-width: 768px) {
    .form-container{
        width: 320px;
        padding: 15px;
    }
    .bas{
        margin-bottom: 20px;
    }
    .bas img{
        width: 300px;
    }
  
  }
  