.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0px 15px;
  height: 100%;
}
.main {
  position: relative;
  display: block;
  background-image: url(../images/main_desc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 0 0 138px 0;
}
header {
  border-bottom: 1px solid rgb(187 187 187);
}
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text span {
  color: #171717;
  font-size: 18px;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 600;
}
.logo-text p {
  color: #171717;
  font-size: 18px;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 400;
}
.header-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 40px;
}
.header-tel {
  font-family: "Circe", Arial, sans-serif;
  color: #333;
  font-size: 21px;
}
.header-btn {
  display: flex;
  font-family: "Circe", Arial, sans-serif;
  color: #505050 !important;
  font-size: 16px;
  padding: 13px 15px;
  border-width: 1px;
  border-radius: 5px;
  background-position: center center;
  border-color: #b5b5b5;
  border-style: solid;
}
.main-content {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
}
.main-content h1 {
  max-width: 610px;
  font-family: "Circe", Arial, sans-serif;
  color: #5e5e5e;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 200;
  margin-bottom: 40px;
}
.main-content h2 {
  max-width: 484px;
  color: #5e5e5e;
  font-size: 18px;
  font-family: "Circe", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  margin-bottom: 35px;
}
.main-content h5 {
  max-width: 400px;
  color: #5e5e5e;
  font-size: 16px;
  font-family: "Circe", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 30px;
}
.main-content__subtitle-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 35px;
  margin-bottom: 15px;
}
.main-content__subtitle {
  display: flex;
  flex-direction: row;
  column-gap: 7px;
  align-items: flex-start;
}
.main-content__subtitle img {
  object-fit: contain;
}
.main-content__subtitle span {
  color: #5e5e5e;
  font-size: 17px;
  font-family: "Circe", Arial, sans-serif;
  line-height: 1.25;
  font-weight: 300;
}
.wrapper-btn {
  position: relative;
  display: flex;
  width: fit-content;
}
.main-btn {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 505px;
  height: 98px;
  background-image: url(https://static.tildacdn.com/tild3237-6539-4433-b635-343165383631/Group_234.svg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff !important;
  font-size: 15px;
  padding: 0 50px;
  text-align: center;
  font-family: "Circe", Arial, sans-serif;
  line-height: 1.25;
  font-weight: 500;
  overflow: hidden;
}
.main-btn__img {
  position: absolute;
  right: -85px;
  top: -40px;
  width: 183px;
  height: 169px;
  -webkit-transform: rotate(13deg);
  -moz-transform: rotate(13deg);
  transform: rotate(13deg);
}
.main-btn__spec {
  position: absolute;
  right: -275px;
  top: -56px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 198px;
  padding: 5px 10px;
  border-width: 2px;
  border-radius: 8px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #5792ff;
  border-style: dotted;
  -webkit-transform: rotate(350deg);
  -moz-transform: rotate(350deg);
  transform: rotate(350deg);
}
.main-btn__spec span {
  font-family: "Circe", Arial, sans-serif;
  color: #5e5e5e;
  font-size: 17px;
  font-family: "Circe", Arial, sans-serif;
  line-height: 1.4;
  font-weight: 700;
}
.main-btn__spec p {
  font-family: "Circe", Arial, sans-serif;
  color: #5e5e5e;
  line-height: 1.4;
  font-weight: 400;
  font-size: 12px;
}
.main-btn__spec strong {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  color: rgb(102, 181, 237);
}
.autoink {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ink {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 1);
  border-radius: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  z-index: 20;
}

.animate {
  webkit-animation: ripple 4s linear infinite;
  -moz-animation: ripple 4s linear infinite;
  -ms-animation: ripple 4s linear infinite;
  -o-animation: ripple 4s linear infinite;
  animation: ripple 4s linear infinite;
}
@keyframes ripple {
  20% {
    opacity: 0;
    transform: scale(2.5);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

@media (max-width: 817px) {
  .main {
    background-image: url(../images/main_table.jpg);
  }
  .header {
    flex-direction: column;
  }
  .header-contact {
    flex-direction: column;
  }
  .main-content {
    align-items: center;
    padding-top: 30px;
  }
  .main-content h1 {
    font-size: 29px;
    text-align: center;
  }
  .main-content h2 {
    display: none;
  }
  .main-content h5 {
    display: none;
  }
  .main-content__subtitle-wrapper {
    flex-direction: column;
    margin-bottom: 178px;
  }
  .wrapper-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-btn {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 302px;
    height: 88px;
    padding: 0 35px;
    background-image: url(https://thumb.tildacdn.com/tild3862-3433-4564-b731-316430613231/-/resize/614x/-/format/webp/ryjgrf.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff !important;
    font-size: 12px;
    text-align: center;
    font-family: "Circe", Arial, sans-serif;
    line-height: 1.25;
    font-weight: 500;
    overflow: hidden;
  }
  .main-btn__img {
    position: absolute;
    right: -51px;
    top: -9px;
    width: 121px;
    height: auto;
    -webkit-transform: rotate(13deg);
    -moz-transform: rotate(13deg);
    transform: rotate(57deg);
  }
  .main-btn__img img {
    object-fit: cover;
    width: 100%;
  }
  .main-btn__spec {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: -155px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 198px;
    padding: 5px 10px;
    border-width: 2px;
    border-radius: 8px;
    background-color: #ffffff;
    background-position: center center;
    border-color: #5792ff;
    border-style: dotted;
    -webkit-transform: rotate(350deg);
    -moz-transform: rotate(350deg);
    transform: rotate(350deg);
  }
}
@media (max-width: 500px) {
  .main-content__subtitle-wrapper {
    margin-bottom: 193px;
  }
  .main {
    background-image: url(../images/main_phone.jpg);
    padding: 0 0 300px 0;
  }
  .main-content h5 {
    display: flex;
    max-width: 80%;
    line-height: 1.3;
    font-size: 16px;
    text-align: center;
  }
  .main-btn__spec {
    top: -254px;
  }
}
