body {
  height: 100vh;
  background-color: #f0f0f0;
  font-family: "Ubuntu", sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  color: #1e1e1e;
  text-align: center;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
}

section {
  margin-bottom: 92px;
  }
  
.logo_main {
  display: flex;
  text-decoration: none;
  color: #1e1e1e;
  }
  
.logo_text {
  font-size: 32px;
  margin: 0 auto;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  }

.mobile_logo {
  width: 60px;
  height: 100%;
  margin-right: 10px;
  }

.counter {
  font-size: 58px;
  font-weight: bold;
  opacity: 0; 
  transform: translateY(-50px); 
  transition: opacity 1s ease, transform 1s ease;
  display: flex;
  justify-content: center;
  background: linear-gradient(to right, #68c4ec, #007ab6); /* Градиент */
    -webkit-background-clip: text; /* Обрезка фона по тексту (для WebKit-браузеров) */
    -webkit-text-fill-color: transparent; /* Прозрачный цвет текста (для WebKit-браузеров) */
    background-clip: text; /* Обрезка фона по тексту (для других браузеров) */
    text-fill-color: transparent; /* Прозрачный цвет текста (для других браузеров) */
}

.btn_position {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
  }

.btn_main {
  background: linear-gradient(to right, #68c4ec, #007ab6);
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 16px;
  color: rgb(255,255,255);
  display: flex;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
}

.btn_main:hover {
  background: #3c3c3c;
}

h1 {
  margin-top: 60px;
  font-size: 36px;
  margin-bottom: 40px;
  }
  
.main_text {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 80px;
  }
  
.banner {
  width: 100%;
  border-radius: 6px
  }
  
.position_about {
  display: flex;
  padding-bottom: 42px;
  }
  
.text_descrip {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 60px;
  }
  
.text_about {
  border-bottom: solid 2px #62c0e9;
  padding-bottom: 10px;
  margin-top: 0px;
  text-align: left;
  }
  
.fond_img {
  width: 65px;
  height: 100%;
  margin-right: 20px;
  }

.real_position {
  margin-top: 64px;
  }
  
.real_fond_img {
  max-width: 452px;
  margin-right: 20px;
  }
  
.img_right {
  margin-left: 20px;
  margin-right: 0px;
  }
  
.mobile {
    display: none;
    }
    
.desktop {
    display: block;
    }
    
.copy {
  text-align: center;
  padding: 80px;
  }

@media (max-width: 800px) {
    
  header {
  padding-top: 20px;
}
    
  .mobile {
    display: block;
    }
    
  .desktop {
    display: none;
    }
    
  .position_about {
    display: flex;
    padding-bottom: 42px;
    flex-direction: column;
    }
    
  .real_fond_img {
    width: 100%;
    margin-right: 0px;
  }
  
  .img_right {
  margin-left: 0px;
  }
  
  .fond_img {
    display: none;
    }
    
  h1 {
  margin-top: 40px;
  font-size: 26px;
  margin-bottom: 30px;
}

.counter {
  font-size: 38px;
  }
  
.mobile_logo {
  width: 48px;
}

.main_text {
  padding-top: 48px;
}
  }
