.topName {
  width: 100%;
  border: 1px solid var(--light-gray);
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topName__img {
  margin: 20px auto;
  width: 87%;
}

.out-cont {
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
}
.out-cont::after {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  top: 50%;
  left: 0;
  height: 100%;
  width: calc(100% + var(--oneSide));
  transform: translateY(-50%);
  border-radius: 50px 0px 0px 50px;
}
.out-cont.left::after {
  border-radius: 0px 50px 50px 0px;
  left: auto;
  right: 0;
}

.hero {
  display: flex;
  justify-content: space-between;
}
.hero-sec {
  position: relative;
  padding-top: 40px;
  padding-bottom: 75px;
  color: #fff;
  margin-top: 20px;
}
.hero__img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__title {
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}
.hero-right {
  max-width: 656px;
}
.hero-right-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 58px;
}
.hero-right-bot * {
  font-weight: 400;
}
.hero-right-bot span {
  font-size: 20px;
  max-width: 210px;
}
.hero-right-bot div {
  font-size: 20px;
  max-width: 310px;
  padding-left: 30px;
}
.hero__btn {
  margin-top: auto;
  position: relative;
  transform: translateY(35px);
}

.splash {
  position: relative;
  z-index: 2;
  overflow: visible;
  width: 130px;
  height: 130px;
}
.splash::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240%;
  height: 240%;
  z-index: -1;
  background: url(../img/shared/splash.svg) no-repeat center;
  background-size: cover;
}
.splash span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 16px;
  padding: 0px 25px;
  text-transform: uppercase;
  color: #fff;
}

.about {
  display: flex;
  justify-content: space-between;
}
.about-sec {
  padding-top: 100px;
  padding-bottom: 80px;
}
.about-content {
  max-width: 650px;
}
.about-list {
  margin-top: 54px;
  display: flex;
}
.about-list__item {
  padding-left: 15px;
  border-left: 1px solid #000;
  height: 80px;
  margin-right: 29px;
  text-transform: uppercase;
  font-weight: 300;
}

.sec-title {
  padding-right: 25px;
  font-weight: 300;
  min-width: -moz-max-content;
  min-width: max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  text-transform: uppercase;
}
.sec-title::after {
  border-color: #E6E6E6;
}

.products {
  display: flex;
  flex-wrap: wrap;
  margin-top: 35px;
}
.products-sec {
  padding-top: 100px;
}
.products-top {
  display: flex;
  justify-content: space-between;
}
.products-top__text {
  font-weight: 400;
  max-width: 600px;
}
.products-item {
  width: calc((100% - 90px) / 4);
  margin-right: 30px;
  border: 1px solid var(--gray);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  aspect-ratio: 1/1;
  margin-bottom: 30px;
  cursor: pointer;
}
.products-item.hidden {
  opacity: 0;
  pointer-events: none;
}
.products-item.blue {
  background-color: var(--dark-blue);
  color: #fff;
}
.products-item:hover {
  background-color: var(--light-blue);
}
.products-item:hover .products-item__arrow {
  transform: none;
  filter: none;
}
.products-item:hover .products-item__title {
  color: #fff;
}
.products-item__title {
  text-align: center;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.products-item__arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 40px;
  bottom: 40px;
  transform: rotate(45deg);
  filter: brightness(0) saturate(100%) invert(79%) sepia(7%) saturate(450%) hue-rotate(210deg) brightness(95%) contrast(81%);
  transition: all 0.3s ease;
}
.products-item:nth-child(4n) {
  margin-right: 0px;
}
.products-item.wide {
  aspect-ratio: unset;
  width: calc((100% - 90px) / 2 + 30px);
  background: url("../img/productsCardBg.png") no-repeat center;
  background-size: cover;
  border-color: transparent;
  display: flex;
  flex-direction: column;
}
.products-item.wide-placeholder {
  width: 0px;
  height: 0px;
  border: none;
  opacity: 0;
  margin: 0;
  padding: 0;
}
.products-item.wide * {
  color: #fff;
}
.products-item.wide .products-item-top {
  display: flex;
  align-items: center;
}
.products-item.wide .products-item-top img {
  width: 17px;
  height: 17px;
  margin-right: 10px;
}
.products-item.wide .products-item-top h2 {
  text-transform: uppercase;
}
.products-item.wide .products-item__title {
  margin-top: 19px;
  max-width: 240px;
  text-align: left;
}
.products-item.wide .products-item__bottom {
  margin-top: auto;
}
.products-item.wide .products-item__arrow {
  filter: none;
  transform: none;
  width: 40px;
  height: 40px;
}

.why {
  max-height: -moz-max-content;
  max-height: max-content;
  height: 530px;
  margin-top: 50px;
}
.why .swiper-wrapper {
  max-height: -moz-max-content !important;
  max-height: max-content !important;
}
.why-sec {
  margin-top: 150px;
}
.why-top {
  display: flex;
  justify-content: space-between;
}
.why-top__text {
  max-width: 633px;
}
.whyItem {
  display: flex;
  flex-direction: column;
  padding: 0px 30px;
  height: 530px;
  border-left: 1px solid var(--gray);
  position: relative;
}
.whyItem__num {
  font-size: 90px;
  letter-spacing: 0px;
  font-weight: 500;
  line-height: 1.15;
}
.whyItem__title {
  margin-top: 25px;
  text-transform: uppercase;
}
.whyItem-list {
  margin-top: auto;
  list-style: disc;
  padding-left: 20px;
}
.whyItem-list__item {
  position: relative;
}
.whyItem-list__item:not(:last-child) {
  margin-bottom: 15px;
}
.whyItem-splash {
  position: absolute;
  top: 55%;
  left: 0;
  padding-left: 10px;
  max-width: 105px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.whyItem-splash::before {
  content: "";
  position: absolute;
  background: url("../img/whySplash.svg") no-repeat center;
  width: 200px;
  aspect-ratio: 20/26;
  top: 50%;
  left: 0;
  transform: translateY(-55%);
  z-index: -1;
}

.owner {
  display: flex;
  height: 503px;
}
.owner-sec {
  margin-top: 130px;
}
.owner__img {
  height: 100%;
  width: 615px;
  min-width: 615px;
}
.owner-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  margin-left: 30px;
}
.owner__post {
  max-width: -moz-max-content;
  max-width: max-content;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray);
}
.owner__name {
  margin-top: 10px;
  max-width: 323px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray);
}
.owner-quote {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.owner-quote__img {
  width: 80px;
  height: 70px;
}
.owner-quote__img:first-child {
  margin-right: auto;
}
.owner-quote__img:last-child {
  margin-left: auto;
}
.owner-quote p {
  margin: 20px 0px;
  padding-left: 40px;
  padding-right: 20px;
}

.callback {
  display: flex;
  padding: 60px;
  border: 1px solid var(--light-gray);
  border-radius: 70px;
}
.callback-sec {
  margin-top: 130px;
}
.callback-content {
  max-width: 615px;
}
.callback__title {
  font-size: 40px;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
}
.callback__text {
  max-width: 250px;
  color: var(--blue);
  transform: translate(230px, -40px);
}
.callback-bot {
  margin-top: 70px;
  display: flex;
}
.callback-bot-mob {
  display: none;
}
.callback-bot div {
  display: flex;
  flex-direction: column;
  color: var(--blue);
}
.callback-bot div:first-child {
  margin-right: 60px;
}
.callback-bot div h3 {
  text-transform: uppercase;
}
.callback-bot div a {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--blue);
}
.callback-social {
  margin-top: 50px;
  display: flex;
  align-items: center;
}
.callback-social a {
  display: flex;
  align-items: center;
  width: 20px;
  max-height: 20px;
}
.callback-social a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.callback-social a:first-child {
  margin-right: 30px;
}
.callback-form {
  max-width: 420px;
  width: 420px;
  margin-left: 70px;
  display: flex;
  flex-direction: column;
}
.callback-form__input {
  width: 100%;
  height: 35px;
  border: none;
  color: var(--gray);
  font-size: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray);
  outline: none !important;
}
.callback-form__input:first-child {
  margin-bottom: 44px;
}
.callback-form-agreement {
  display: flex;
  margin-top: 10px;
}
.callback-form-agreement__input {
  display: none;
}
.callback-form-agreement__input:checked ~ label::after {
  opacity: 1;
}
.callback-form-agreement__label {
  padding-left: 26px;
  position: relative;
  color: var(--gray);
  cursor: pointer;
  max-width: 346px;
  width: 346px;
  font-size: 13px;
}
.callback-form-agreement__label a {
  color: inherit;
  text-decoration: underline;
}
.callback-form-agreement__label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gray);
  border-radius: 5px;
}
.callback-form-agreement__label::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background-color: var(--gray);
  border-radius: 5px;
  transition: all 0.3s ease;
}
.callback-form__button {
  margin-top: 30px;
  margin-left: auto;
  transform: translate(50px, 10px);
}

.blog {
  padding: 0px 5%;
  max-height: 400px;
}
.blog-sec {
  margin-top: 80px;
}
.blog .swiper-wrapper {
  max-height: -moz-max-content;
  max-height: max-content;
}
.blog-item {
  width: 20%;
  max-width: 290px;
  max-height: 400px;
  aspect-ratio: 29/40;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.blog-item__title {
  margin-top: auto;
  text-align: center;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}
.blog-item__arrow {
  margin-left: auto;
}
.blog-item:nth-child(2n) .blog-item__arrow {
  transform: rotate(90deg);
}
.blog-item:nth-child(3n) {
  background: var(--dark-blue);
}
.blog-item:nth-child(3n+1) {
  background: var(--light-blue);
}
.blog-item:nth-child(3n+2) {
  background: var(--light-gray);
}
.blog-item:nth-child(3n+2) .blog-item__title {
  color: #000;
}

.botName-sec {
  margin-top: 40px;
}
.botName__img {
  display: block;
  max-width: 90%;
  margin: 0 auto;
}

.footer {
  display: flex;
  justify-content: space-between;
}
.footer-sec {
  margin-top: 40px;
  background: var(--dark-blue);
  padding: 60px 0px 80px 0px;
  color: #fff;
}
.footer-sec * {
  color: #fff;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col:nth-child(1) {
  width: 383px;
}
.footer-logo {
  max-width: 225px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__text {
  margin-top: 50px;
}
.footer__title {
  text-transform: uppercase;
  margin-bottom: 21px;
}
.footer-contacts__item {
  display: flex;
  margin-bottom: 10px;
  max-width: 175px;
}
.footer-contacts__item img {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-contacts span {
  display: flex;
  flex-direction: column;
}
.footer-contacts span .subinfo {
  color: var(--light-blue);
}
.footer-times__item {
  margin-bottom: 10px;
}
.footer-social {
  display: flex;
  align-items: center;
  margin-top: 22px;
}
.footer-social__title {
  margin-top: 60px;
  text-transform: uppercase;
}
.footer-social__item {
  margin-right: 10px;
}
.footer-line {
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .blog-item {
    max-width: 200px;
    max-height: 320px;
    padding: 20px;
  }
  .blog-item__title {
    font-size: 16px;
  }
  .owner {
    height: 423px;
  }
  .owner__img {
    width: 400px;
    min-width: 400px;
  }
  .owner-quote__img {
    width: 50px;
    height: 50px;
  }
  .owner-quote p {
    font-size: 16px;
    margin: 10px 0px;
    padding-left: 20px;
    padding-right: 12px;
  }
  .owner__name {
    font-size: 24px;
  }
  .callback__title {
    font-size: 32px;
  }
  .callback__text {
    transform: translate(215px, -30px);
  }
}
@media (max-width: 1024px) {
  .top-header {
    flex-wrap: wrap;
  }
  .top-header__link {
    width: 50%;
    text-align: center;
    margin-bottom: 5px;
  }
  .mid-header-list {
    display: none;
  }
  .splash span {
    width: 130px;
    height: 130px;
    min-width: 90px;
    min-height: 90px;
    font-size: 14px;
  }
  .splash::before {
    width: 120%;
    height: 120%;
    background-image: url("../img/shared/splashMob.svg");
  }
  .hero-sec {
    padding: 70px 0px;
    position: relative;
  }
  .hero__title {
    display: none;
  }
  .hero-right-bot span {
    display: none;
  }
  .hero__btn {
    position: absolute;
    right: 20%;
    top: 50%;
  }
  .hero-right {
    margin-left: auto;
  }
  .hero-right-bot {
    margin-top: 0px;
  }
  .products-item {
    width: calc((100% - 60px) / 3);
    margin-right: 30px !important;
  }
  .products-item.wide {
    width: 100%;
    margin-right: 0px !important;
  }
  .products-item:nth-child(3n+2) {
    margin-right: 0px !important;
  }
  .products-top__text {
    margin-left: 20px;
  }
  .about-content {
    margin-left: 20px;
  }
  .why-slide {
    width: 30vw;
  }
  .callback {
    flex-direction: column;
  }
  .callback-social {
    display: none;
  }
  .callback-bot {
    display: none;
  }
  .callback-bot-mob {
    display: flex;
  }
  .callback-bot-mob .callback-social {
    display: flex;
    flex-direction: row;
  }
  .callback-content {
    width: 100%;
  }
  .callback-form {
    margin-top: 20px;
    width: 100%;
    margin-left: 0px;
    max-width: 100%;
  }
  .callback-form__button {
    width: auto;
    min-width: -moz-max-content;
    min-width: max-content;
    height: auto;
  }
  .callback-form__button span {
    transform: none;
    background: var(--dark-blue);
    position: static;
    width: auto;
    height: auto;
    padding: 12px 25px;
    border-radius: 10px;
    min-height: 0px;
    max-width: 100%;
  }
  .callback-form__button::before {
    display: none;
  }
}
.why-pag {
  display: none;
}

@media (max-width: 768px) {
  .why {
    padding-bottom: 40px;
    height: 570px;
  }
  .why-pag {
    position: absolute;
    bottom: 0;
  }
  .why-pag .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1 !important;
    background: var(--gray);
    transition: all 0.3s ease;
  }
  .why-pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.4);
    background: var(--dark-blue);
  }
  .why-sec {
    margin-top: 80px;
  }
  .why-sec .container {
    width: 100%;
  }
  .why-slide:first-child {
    margin-left: var(--oneSide);
  }
  .why-top {
    width: var(--container);
    margin-left: auto;
    margin-right: auto;
  }
  .why-top__text {
    margin-left: 0px;
  }
  .why-pag {
    display: flex;
    justify-content: center;
  }
  .why-slide {
    width: 271px;
  }
  .out-cont::after {
    width: calc(100% + 20px);
  }
  .sec-title {
    border: 1px solid var(--gray);
    border-radius: 20px;
    padding: 10px 27px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
  }
  .sec-title::after {
    display: none;
  }
  .about-content {
    margin-left: 0px;
    width: 100%;
    max-width: 100%;
  }
  .about {
    flex-direction: column;
  }
  .products-top,
  .why-top {
    flex-direction: column;
  }
  .products {
    justify-content: space-between;
  }
  .products-item {
    margin-right: 0px !important;
    width: calc(50% - 8px) !important;
    padding: 23px;
  }
  .products-item__title {
    font-size: 18px;
  }
  .products-item__arrow {
    right: 23px;
    bottom: 23px;
  }
  .products-item.hidden {
    display: none;
  }
  .products-item.wide {
    height: 170px;
    width: 100% !important;
  }
  .products-item.wide h2 {
    font-size: 12px;
  }
  .products-item.wide .products-item__arrow {
    width: 24px;
    height: 24px;
  }
  .owner__post {
    display: none;
  }
  .owner__post.mob {
    display: block;
  }
  .owner__name {
    display: none;
    max-width: 220px;
  }
  .owner__name.mob {
    display: block;
  }
  .owner {
    flex-direction: column;
    height: auto;
  }
  .owner-sec {
    margin-top: 80px;
  }
  .owner-content {
    padding-top: 0px;
  }
  .owner__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: auto;
    margin-top: 10px;
    min-width: 0px;
  }
  .owner-quote p {
    margin: 0px;
    padding: 0px 35px 0px 50px;
    font-style: italic;
  }
  .callback-sec {
    margin-top: 80px;
  }
  .callback__title {
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    max-width: 220px;
  }
  .callback__text {
    margin: 0 auto;
    transform: none;
    text-align: center;
    max-width: 260px;
    font-size: 14px;
    margin-top: 5px;
  }
  .callback-form__button {
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }
  .callback-bot {
    justify-content: space-between;
  }
  .callback-bot h3, .callback-bot div a {
    font-size: 12px;
  }
  .callback-bot div:last-child * {
    text-align: right;
  }
  .callback-social {
    margin-top: 0px;
  }
  .blog-item {
    width: 200px;
  }
  .footer {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .footer__text {
    display: none;
  }
  .footer-col:nth-child(1) {
    width: 100%;
    margin-bottom: 30px;
  }
  .about-list {
    margin-top: 10px;
  }
  .about__text {
    font-size: 14px;
  }
  .about-list__item {
    padding-left: 10px;
    margin-right: 3px;
    font-size: 12px;
  }
  .callback {
    padding: 24px;
    border-radius: 20px;
  }
  .products-item__arrow {
    width: 24px;
    height: 24px;
  }
  .coler-sec,
  .tasks-sec {
    margin-top: 80px;
  }
}
@media (max-width: 520px) {
  .sec-title {
    font-size: 14px;
  }
  .top-header-sec {
    height: 65px;
  }
  .splash {
    width: 90px;
    height: 90px;
  }
  .splash span {
    width: 90px;
    height: 90px;
  }
  .hero__btn {
    top: 70%;
  }
  .top-header__link {
    font-size: 14px;
  }
  .products-top__text {
    margin-left: 0px;
    font-size: 14px;
  }
  .whyItem__title {
    font-size: 14px;
  }
  .callback-form__button {
    min-width: -moz-max-content;
    min-width: max-content;
    width: auto;
    height: auto;
  }
  .callback-form__button span {
    width: auto !important;
    height: auto !important;
  }
  .products-item {
    width: calc(50% - 5px) !important;
  }
  .products-item.wide {
    width: 100% !important;
  }
}
@media (max-width: 376px) {
  .about-list {
    flex-wrap: wrap;
  }
  .about-list__item {
    width: 50%;
    margin-right: 0px;
    padding-right: 5px;
    height: auto;
    margin-bottom: 6px;
  }
  .products-item {
    padding: 14px;
  }
  .products-item__title {
    font-size: 16px;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
}
.breadcrumbs__prev {
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
}
.breadcrumbs__current {
  margin-left: 5px;
  color: var(--gray);
  text-transform: uppercase;
}
.breadcrumbs-mob {
  display: none;
}

@media (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
  .breadcrumbs-mob {
    display: flex;
    align-items: center;
    max-width: -moz-max-content;
    max-width: max-content;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .breadcrumbs-mob::after {
    border-color: var(--gray);
  }
  .breadcrumbs-mob img {
    width: 20px;
    height: auto;
    margin-right: 20px;
  }
  .breadcrumbs-mob span {
    text-transform: uppercase;
    font-weight: 300;
  }
}
.tab-btn {
  cursor: pointer;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: flex;
  flex-direction: column;
}

.modal {
  position: fixed;
  z-index: 2000;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1020px;
  max-height: 95vh;
  height: 1000px;
  overflow-y: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 60px;
  border-radius: 20px;
  display: none;
}
.modal.active {
  display: flex;
}
.modal::-webkit-scrollbar {
  width: 10px;
}
.modal__close {
  position: absolute;
  right: 40px;
  top: 40px;
}
.modal__img {
  margin: 0 auto;
}
.modal__title {
  margin-top: 25px;
  color: var(--dark-blue);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 40px;
  max-width: 500px;
}
.modal__desc {
  margin-top: 6px;
  max-width: 400px;
  text-align: center;
  font-size: 15px;
}
.modal-form {
  margin-top: 60px;
  max-width: 420px;
}
.modal-form__input {
  width: 100%;
  border: none;
  outline: none !important;
  border-bottom: 1px solid var(--gray);
  color: var(--gray);
  font-size: 15px;
  padding-bottom: 9px;
  text-transform: uppercase;
  margin-bottom: 21px;
}
.modal-form__input::-moz-placeholder {
  color: var(--gray);
}
.modal-form__input::placeholder {
  color: var(--gray);
}
.modal-form__button {
  display: block;
  margin-left: auto;
  transform: translate(20px, 0px);
}

.get-modal .modal__title {
  margin-top: 0px;
}

.get-modal .modal__img {
  margin-top: 20px;
}

.burger {
  display: none;
}

@media (max-width: 1024px) {
  .mid-header-right {
    width: 100%;
  }
  .burger {
    display: block;
    margin-left: auto;
  }
  .modal {
    width: 90vw;
    padding: 40px;
  }
}
@media (max-width: 640px) {
  .modal {
    padding: 20px;
  }
  .modal__title {
    font-size: 24px;
    text-align: center;
  }
  .modal__desc {
    font-size: 13px;
  }
  .modal-form {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
  }
}
input.error {
  border-color: #B81010;
  color: #B81010;
}

.callback-form-agreement__input.error + label::before {
  border-color: red;
}

.success-modal,
.fail-modal {
  max-height: -moz-max-content;
  max-height: max-content;
}

.top-header__link,
.callback-bot div a {
  transition: color 0.3s ease;
}
.top-header__link:hover,
.callback-bot div a:hover {
  color: var(--light-blue);
}

.cities-list__item {
  transition: color 0.3s ease;
  cursor: pointer;
}
.cities-list__item:hover {
  color: #000;
}

.splash::before {
  transition: filter 0.3s ease;
}
.splash:hover::before {
  filter: brightness(1.4);
}

.custom-alert {
  position: fixed;
  max-width: 100vw;
  z-index: 2222;
  right: 0;
  bottom: 20%;
  background: #fff;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 15px 0px 0px 15px;
  transform: translateX(200%);
  transition: all 0.3s ease;
}
.custom-alert.active {
  transform: none;
}

@media (max-width: 580px) {
  .callback-bot div a {
    font-size: 10px;
  }
  .callback-bot div:first-child,
  .callback-bot div:last-child {
    margin-right: 0px;
    width: 105px;
  }
  .callback-social a:first-child {
    margin-right: 10px;
  }
}
@keyframes circlePulse {
  0% {
    width: 100%;
    height: 100%;
  }
  40% {
    width: 100%;
    height: 100%;
  }
  60% {
    width: 150%;
    height: 150%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
.widget {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 99;
}
.widget-btn {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.widget-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -2;
  background: var(--dark-blue);
  border-radius: 50%;
}
.widget-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -2;
  background: var(--light-blue);
  border-radius: 50%;
  opacity: 0.4;
  animation: circlePulse 4s ease infinite;
}
.widget-btn img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(1);
}
.widget-items {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 9;
  pointer-events: none;
  transition: all 0.3s ease;
}
.widget.active .widget-items {
  bottom: 100%;
  transform: translateX(-50%);
  opacity: 1;
  pointer-events: all;
}
.widget-item {
  width: 50px;
  height: 50px;
  background: var(--light-blue);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.widget-item img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(1);
}/*# sourceMappingURL=index.css.map */