@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  color: #2e2e2e;
}

body {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bgimage1920x1080.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
}

.floatingItems{
  opacity: 0.6;
}


.roboto-font {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.mainBlock{
  display: flex;
  flex-direction: column;
  padding-top: 2%;
}

.imageAndh1 img {
  filter: invert(70%) sepia(50%) saturate(158%) hue-rotate(15deg) brightness(90%) contrast(75%);
}



.block_1 {
  background-color: #fffbf4;
  margin: 0 auto;
  padding-bottom: 1%;
  border-bottom: 1px solid #7a7878;
  width: 50%;

  animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}


.block_1_info{
  margin: 0 auto;
  width: 52%;
}


.block_1_info p{
  text-align: end;
  font-size: 13px;
}

.imageAndh1{
  display: flex;
  align-items: center;
}

.imageAndh1 img{
  width: 60px;
}

.imageAndh1 h1{
  font-size: 45px;
}


.block_2{
  margin: 0 auto;
  width: 50%;
  padding-top: 1%;
  padding-bottom: 3%;
  border-bottom: 1px solid #7a7878;
  
  animation: sway 3s ease-in-out infinite;
}

.block_3{
  margin: 0 auto;
  width: 50%;
  padding-top: 1%;
  padding-bottom: 2%;
  border-bottom: 1px solid #7a7878;
  
  animation: sway 3s ease-in-out infinite;
}

.bots{
  display: flex;
  justify-content: center;
  gap: 25px;
}

.bot_card {
  background-color: #e7e7d8;
  border-radius: 10px;
  margin-top: 5%;
  box-shadow: 0px 4px 6px rgba(44, 44, 44, 0.1);
  transition: transform 0.2s ease;
  padding: 1%;
  width: 200px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2%;
}

.bot_card:hover {
  transform: scale(1.1);
  background-color: #bbbba7;
}

.bot_card img {
  width: 30%;
}

.bot_card h2 {
  text-align: center;
}

.bot_card button {
  padding: 10px 20px;
  border-radius: 100px;
  background-color: #e0e0e0;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

.bot_card button:hover {
  background-color: #6e6e6e;
}

.bot_card button a {
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}

.bot_card button:hover a {
  color: #fff;
}


.block_4{
  margin: 0 auto;
  width: 50%;
  padding-top: 1%;
  padding-bottom: 1%;
  border-bottom: 1px solid #7a7878;
  
  animation: sway 3s ease-in-out infinite;
}

.contact{
  margin-top: 1%;
}

.contact_image{
  width: 50px;
}

.contact_button{
  background-color: none;
}

.contact_link{
  background-color: none;
}

.contact_buttons{
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2%;
}


