* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
} 

body {
  font-family: 'Oxanium', sans-serif;
  color: #141414;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-foot-angles);
}
.main {
  flex: 1;
  padding: 40px 0;
}
.JhTHu8NQ1tlUK {
  max-width: 1340px;
  margin: 0 auto;
}

.wrapper {
  background-color: var(--color-bg-body);
}

.XxLzA48o03 {
  display: flex;
  text-align: center;
  justify-content: space-between;
}

.AGWln0AUzn img {
  width: auto;
  height: 49px;
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

a.AGWln0AUzn  {
  font-size: 24px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
}

.top-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.menu  {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
}

.menu a {
  text-decoration: none;
  color: var(--color-link);
  font-size: 20px;
  font-weight: 600;
  padding: 5px 0;
  transition: all 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.menu a:hover {
  color: var(--color-link-hover);
  font-weight: 600;
}

.menu-item {
  position: relative;
  padding: 10px 0;
}

.menu-item a {
  display: inline-block;
  position: relative;
}

.menu-item.has-submenu > a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url('../img/arrow-menu.svg') no-repeat center center;
  background-size: contain;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.3s ease, background 0.3s ease;
 
}

.menu-item.has-submenu > a:hover::after {
  background: url('../img/arrow-menu2.svg') no-repeat center center;
  background-size: contain;
  
}

.submenu {
  display: none;
  position: absolute;
  top: 55px;
  left: 0;
  background: var(--color-submenu-bg);
  padding: 18px;
  min-width: 207px;
  z-index: 10;
  border-radius: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.submenu a {
  display: block;
  white-space: nowrap;
  color: var(--color-submenu-link);
}

.menu-item.has-submenu:hover .submenu {
  display: flex;
}

.menu-item.has-submenu > a:hover::after {
  background: url('../img/arrow-menu2.svg') no-repeat center center;
 
}


.menu-item.has-submenu:hover > a {
  color: var(--color-link-hover);
}

.menu-item.has-submenu:hover > a::after {
  background: url('../img/arrow-menu2.svg') no-repeat center center;
  
}

@media (min-width: 1080px) {
  .menu-item.has-submenu > a:hover::after, .menu-item.has-submenu:hover > a::after {
   transform: rotate(180deg);
}}


.TQpXJcO4Po7R {
  display: flex;
  gap: 25px;
  align-items: center;
}
 .YoxYmlDbdO7hat {
  width: 262px;
  height: 60px;
  border-radius: 50px;
  background-color: var(--color-btn-login);
  color: var(--color-text-btn-login);
  font-weight: 600;
  font-size: 20px;
  transition: background-color 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
    position: relative;
    padding-left: 48px;
}

.YoxYmlDbdO7hat i {
  display: inline-block;
  border-radius: 50px;
  background-color: var(--color-span-btn-login);
  width: 50px;
  height: 50px;
  position: absolute;
    right: -19px;
    transform: translateX(-50%);
}

.YoxYmlDbdO7hat:hover {
  background-color: var(--color-btn-login-hover);
}

.YoxYmlDbdO7hat i::before {
  content: "";
  display: block;
  width: 12px; 
  height: 12px;
  background: url('../img/arrow-btn.svg') no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.YoxYmlDbdO7hat:hover i::before {
  background-image: url('../img/arrow-btn1.svg');
}

.IwJykoJEGKhm7R0 {
  background-color: var(--color-btn1);
  color: #FFFFFF;
}

.IwJykoJEGKhm7R0 i {
  display: inline-block;
  border-radius: 50px;
  background-color: var(--color-span-btn1);
}

.YoxYmlDbdO7hat.IwJykoJEGKhm7R0:hover {
  background-color: var(--color-btn1-hover);
}

.IwJykoJEGKhm7R0 i::before {
  content: "";
  display: block;
  width: 12px; 
  height: 12px;
  background: url('../img/arrow-blue1.svg') no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.IwJykoJEGKhm7R0:hover i::before {
  background-image: url('../img/arrow-blue2.svg');
}

.main h1 {
font-size: 32px;
}

.main h2 {
font-size: 36px;
padding: 0 0 27px;
font-weight: 800;
color: var(--color-text-titles-h2);
text-transform: uppercase;
}

.main ul, .main ol {
  padding: 0 27px 20px;
  font-size: 20px;
  color: #424242;
  line-height: 120%;
}

.main p {
  font-size: 20px;
  line-height: 120%;
  color: var(--color-text-main);
  padding-bottom: 27px;
}

.EaHAvCsExg p:last-child {
padding-bottom: 0;
}

.main ul li, .main ol li {
  padding-bottom: 15px;
}
.main ul li:last-child, .main ol li:last-child {
  padding-bottom: 0;
}

.text > ul:last-child,
.text > ol:last-child,
.text > p:last-child
 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.text h2:first-child {
padding-top: 0;
}

.main h3 {
  font-size: 28px;
  padding: 0 0 27px;
  color: var(--color-text-titles-h3);
}

.main h4 {
  font-size: 24px;
  padding: 0 0 20px;
  color: var(--color-text-titles-h3);
}

.menu-toggle {
  display: none;
}

footer {
  padding: 40px 0 65px;
  background-color: var(--color-footer-bg);
  border-radius: 30px 30px 0 0;

}

.UIbUWMez50zWr {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 20px;
  max-width: 951px;
  align-items: center;
  margin: 0 auto;
}

.lBZSNlYxhf {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
  color: #FFFFFF;
}

.xZXijh3O6 {
 display: flex;
 gap: 13px;
 align-items: center;
}
.xZXijh3O6 a {
  color: var(--color-foot-link);
  font-size: 20px;
  font-weight: 600;
    transition: color 0.3s ease;
}

.xZXijh3O6 a:hover {
  color: var(--color-foot-link-hov);
}

.XxLzA48o03 {
  position: relative;
  z-index: 100;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.bNOmtE0ipo {
  width: 25px;
  height: 3px;
  background-color: #FFFFFF;
  margin: 2px 0;
  border-radius: 50px;
}

.RAULlw2XGB4D {
  display: inline;
  font-weight: 700;
}

    .hero {
      width: 100%;
      height: auto;
      border-radius: 30px;
      margin: 0 0 40px; 
      background-image: url('../img/banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 38px 58px 50px;
  height: 781px;
  display: flex; flex-direction: column;
  position: relative;
    }

    .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.50);
    z-index: 1;
    border-radius: 30px;
}
   
    .HckuZNUQndMnf {
      max-width: 734px;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: space-between;
      gap: 30px;
      padding: 20px;
      margin-top: auto;
    margin-bottom: auto;
    position: relative;
    z-index: 2;
    }

    .HckuZNUQndMnf .YoxYmlDbdO7hat {
     color: var(--color-text-btn-login);
    font-size: 20px;
    background-color: var(--color-btn-login);
    }

    .HckuZNUQndMnf .YoxYmlDbdO7hat:hover {
  background-color: var(--color-btn-login-hover);
}

    .HckuZNUQndMnf .YoxYmlDbdO7hat i::before {
  content: "";
  display: block;
  width: 12px; 
  height: 12px;
  background: url('../img/arrow-btn.svg') no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

    .HckuZNUQndMnf .YoxYmlDbdO7hat:hover i::before {
  background-image: url('../img/arrow-btn1.svg');
}

  .HckuZNUQndMnf h1 {
color: var(--color-text-titles);
font-weight: 800;
font-size: 50px;
text-transform: uppercase;
z-index: 2;
  }

.hero .stiPSHUDB5TsoG {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 58px;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.hero .OhBORPVooZF {
  width: 62px;
  height: 62px;
}

.hero .OhBORPVooZF.axQTNyC4HQsukN::before {
    width: 25px;
    height: 43px;
}

.hero .OhBORPVooZF.AUjAQUzU59::before {
    width: 35px;
    height: 32px;
}

.hero .OhBORPVooZF.AsggWeV19tzi::before {
    width: 30px;
    height: 30px;
}
 
.LYZYozhd0sllSGv {
  padding: 36px 56px;
  min-width: 495px;
  min-height: 147px;
  display: flex;
  gap: 43px;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-secondary);
  border: 0.5px solid var(--color-border-blocks);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(37.9px);
  -webkit-backdrop-filter: blur(37.9px);
  align-self: flex-end;
   margin-right: 80px;
  z-index: 2;
}

.LYZYozhd0sllSGv i {
   font-size: 36px;
   font-weight: 600;
   color: var(--color-text-secondary);
}


.fIAFAolAWjMr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 35px 0;
  max-width: 1019px;
  margin: 0 auto;
}

.fIAFAolAWjMr img {
  max-width: 481px;
}

.fIAFAolAWjMr h1 {
  color: var(--color-404-big-text);
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
}
.fIAFAolAWjMr .IwJykoJEGKhm7R0 {
 width: 207px;
}

.gkNjzlYSezIu71xO.hero {
height: 140px;
background-image: url(../img/banner_404.webp);
}


.DVaKFLx8CPdWG {
  padding: 40px 0 20px;
}
.DVaKFLx8CPdWG h1 {
font-size: 35px;
}
.DVaKFLx8CPdWG h4 {
font-size: 22px;
font-weight: 600;
padding: 10px 0;
}
.DVaKFLx8CPdWG ul, .DVaKFLx8CPdWG ol {
    padding: 10px 25px;
}
.DVaKFLx8CPdWG h4.mdhqhyexnAn3e {
  padding: 15px 0;
}

.hPVI34JVL {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}

.lEIfbelCnV94 {
flex-direction: row;
}
.FEiEYuPEGmH {
flex-direction: row-reverse;
}

.ASYbdFYvaIpm {
  width: 100%;
}

.ASYbdFYvaIpm img {
  width: 100%;
  border-radius: 30px;
}

.EaHAvCsExg {
  width: 100%;
}

.text {
  overflow: hidden;
  padding: 40px 0;
}

table {
  width: 100%;
    border-collapse: collapse;
    background-color: transparent;
  margin: 0 0 30px;
  overflow-x: auto;
  color: var(--color-text-table);
}



tr:last-child {
  border-bottom: none;
}

th {
    font-weight: 600;
    text-align: left;
    padding: 10px 12px;
    font-size: 20px;
}

td {
    font-weight: 400;
    font-size: 20px;
    padding: 10px 12px;
}
table {
  display: table;
  overflow-x: auto !important;
  width: 100% !important;
}
td, th {
  border: 1px solid black;
}

.bNOmtE0ipo {
  transition: 0.3s ease;
}

.menu-toggle {
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle.active .bNOmtE0ipo:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bNOmtE0ipo:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bNOmtE0ipo:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.EaHAvCsExg > h2,
.EaHAvCsExg > h3,
.EaHAvCsExg > h4 {
 padding-top: 0;
}

.stiPSHUDB5TsoG {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.stiPSHUDB5TsoG a {
  border-radius: 50%;
  background-color: var(--color-bg-social);
  width: 39px;
  height: 39px;
  position: relative;
  transition: background 0.3s ease;
}

.stiPSHUDB5TsoG a:hover {
  background-color: var(--color-bg-social-hov);
}

.OhBORPVooZF::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: contain;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center; 
}

.OhBORPVooZF.axQTNyC4HQsukN::before {
  width: 16px;
  height: 27px;
  background-image: url('../img/facebook.svg');
}

.OhBORPVooZF.AUjAQUzU59::before {
  background-image: url('../img/twitter.svg');
  width: 22px;
  height: 20px;
}

.OhBORPVooZF.AsggWeV19tzi::before {
  background-image: url('../img/inst.svg');
   width: 19px;
  height: 19px;
}

.lHuWoWdM {
  text-align: center;
  font-size: 20px;
  color: var(--color-footer-text);
}

.hero.yambAEG2CS {
background-image: url(../img/banner_2.webp);
}

/* popup */
.pDeCEjY9x {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.pDeCEjY9x.active {
  display: block;
}

.rhkmzSDX5C2g {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  background: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  max-width: 1114px;
  max-height: 720px;
  padding: 30px;
  flex-direction: column;
}

.rhkmzSDX5C2g.active {
  display: flex;
}

.ubeyrXicOBZTRQ {
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.rhkmzSDX5C2g h2 {
  font-size: 36px;
    padding: 0 0 27px;
    font-weight: 800;
    color: var(--color-text-titles-h2);
    text-transform: uppercase;
}

.ibNqociKXjzH {
  display: flex;
  gap: 30px;
  position: relative;
}

.UzKcGeeiqfUf img {
  width: 442px;
  height: 570px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.KmDWARDPhCLcF {
  width: 50%;
  box-sizing: border-box;
  position: relative;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 18px;
  height: 19px;
}

.close::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.gSUyYW5dpQnwz {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #141414;
}

.KmDWARDPhCLcF form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.KmDWARDPhCLcF input {
  padding: 15px 25px;
  border: 1px solid var(--color-popup-border);
  border-radius: 36px;
  background-color: var(--color-popup-areabg);
  transition: border 0.3s ease;
  font-size: 24px;
  color: var(--color-text-area);
  font-weight: 400;
}

.KmDWARDPhCLcF input::placeholder {
  font-size: 24px;
  color: var(--color-text-area);
  font-weight: 400;
}

.KmDWARDPhCLcF input:focus {
  outline: none;
}

.KmDWARDPhCLcF .YoxYmlDbdO7hat {
  width: 207px;
  height: 60px;
  padding-left: 67px;
}

.grLJLq5BP6j {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  max-width: 577px;
  max-height: 124px;
  padding: 20px 20px 10px;
}

.grLJLq5BP6j.active {
  display: flex;
}

.grLJLq5BP6j .ibNqociKXjzH {
  display: flex;
  gap: 10px;
  flex-direction: column;
    align-items: center;
    justify-content: center;
}

.grLJLq5BP6j .ibNqociKXjzH p {
color: #1976D2;
font-size: 20px;
}

.grLJLq5BP6j .ibNqociKXjzH a {
  width: 123px;
  height: 39px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  padding-left: 0;
}

.grLJLq5BP6j .close {
  position: absolute;
  top: -8px;
  right: -8px;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 9px;
  height: 10px;
}

.ChbYEGOAJ77eg {
  display: flex;
  padding: 70px 15px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border-radius: 30px;
  background-image: url('../img/convertion.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
   overflow: hidden;
   position: relative;
}

.ChbYEGOAJ77eg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
  border-radius: 30px;
}

.ChbYEGOAJ77eg > * {
  position: relative;
  z-index: 2;
}

.ChbYEGOAJ77eg p {
  max-width: 854px;
  color: var(--color-text-secondary);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 0;
}

.bottom {
  position: fixed;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  z-index: 9;
  max-width: 1340px;
  width: 100%;
}

.bottom .IwJykoJEGKhm7R0 {
  background-color: var(--color-btn1);
  color: var(--color-text-btn1);
  transition: background 0.3s ease;
  margin: 0;
}

.bottom .IwJykoJEGKhm7R0:hover {
  background-color: var(--color-btn1-hover);
}

.bottom .IwJykoJEGKhm7R0 i::before {
  background: url('../img/tel.svg') no-repeat center center;
  width: 25px;
  height: 24px;
}

.up {
  background-color: var(--color-goup);
  border-radius: 50%;
  height: 62px;
  width: 61px;
  display: block;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.up:hover {
  background-color: var(--color-goup-hover);
}

.up::before {
content: "";
  display: block;
  width: 20px; 
  height: 13px;
  background: url('../img/up.svg') no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.IPJBlXwZTO63 {
  padding: 20px 0 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.YkAJbMFOFsSQIa {
  padding: 40px 0 34px;
}

.YkAJbMFOFsSQIa h2 {
padding-bottom: 54px;
}

.EAhnTlAM {
  width: 100%;
  height: auto;
  border-radius: 30px;
  background: url('../img/advantage.webp') no-repeat center/cover;
  padding: 70px 20px 30px;
  color: #FFFFFF;
  position: relative;
}

.EAhnTlAM::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.17);
    z-index: 1;
    border-radius: 30px;
}

.cANzKtSSvdd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  grid-auto-flow: row; 
  grid-template-columns: repeat(auto-fit, minmax(276px, auto));
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.vmEMhJdGh8Cxk9WW {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  max-width: 631px;
  justify-self: start; 
  margin-right: 100px;
}

.vmEMhJdGh8Cxk9WW p {
font-size: 20px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.QLymplsU2z {
  width: 275px;
  height: 267px;
  padding: 20px;
  display: flex;
  flex-direction: column;
    color: #FFFFFF;
    border: 0.5px solid var(--color-border-blocks);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.SJMjbOXOp8pjOr img {
  width: auto;
  height: 50px;
  margin: 0 auto;
  margin-bottom: 14px;
}

.SJMjbOXOp8pjOr h4 {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-titles-h4);
  padding-bottom: 0;
}

.SJMjbOXOp8pjOr p {
  font-size: 18px;
  color: var(--color-text-secondary);
  padding-bottom: 0;
}

.AvSrdZOoGgIg { grid-column: 3; grid-row: 1; }
.bOMiAxJynbsa { grid-column: 4; grid-row: 1; }

.sBMf1CLGH { grid-column: 2; grid-row: 2; }
.fCZJKtJ1t5nzoC { grid-column: 3; grid-row: 2; }
.raLBGC6OliBWC { grid-column: 4; grid-row: 2; }

.services {
  margin: 40px 0 25px;
}

.kKceaPQwm5A {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: auto auto; 
   column-gap: 46px; 
  row-gap: 65px; 
  width: 100%;
  margin: 0 auto;
}

.service {
  background: var(--color-blocks-bg);
  padding: 10px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 647px;
  height: 436px;
}

.service img {
  width: 100%;
  height: 269px;
  object-fit: cover;
  border-radius: 28px;
}

.uuQuARBKtyCnx {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.uuQuARBKtyCnx h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-titles-h3);
  padding: 0;
}

.uuQuARBKtyCnx p {
  font-size: 20px;
  color: var(--color-text-main);
}

.service::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 85px;
  height: 85px;
  background-color: var(--color-span-btn1);
  border-radius: 50%;
  background-image: url("../img/arrow-blue.svg");
  background-repeat: no-repeat;
  background-position: center;
}


.WPIDkl0mS {
  margin: 40px 0 25px;
}

.CUmxzqTs2yGC {
height: auto;
width: 100%;
border-radius: 30px;
background: url('../img/reviews.webp') no-repeat center/cover;
color: #FFFFFF;
padding: 33px;
display: flex;
flex-wrap: wrap;
gap: 33px;
justify-content: center;
align-items: center;
position: relative;
}


    .CUmxzqTs2yGC::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.16);
    z-index: 1;
    border-radius: 30px;
}

.review {
  padding: 56px 35px;
  width: 594px;
  min-height: 242px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(37.8px);
  -webkit-backdrop-filter: blur(37.8px); 
  border: 0.5px solid var(--color-border-blocks);
  border-radius: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.review .name {
font-size: 24px;
color: var(--color-text-secondary);
}

.review p.date {
font-size: 18px;
color: var(--color-text-secondary-v1);
padding-bottom: 0;
}

.review p.comment {
font-size: 20px;
color: var(--color-text-secondary);
padding-bottom: 0;
}

p.pmnqGMrt1Z5X {
  color: #1976D2;
  font-size: 36px;
  font-weight: 700;
}

.hero.about {
  height: 527px;
  background-image: url(../img/banner_about.webp);
}

.hero.about .HckuZNUQndMnf p:first-child { 
color: #FFFFFF;
font-size: 36px;
font-weight: 700;
z-index: 2;
}

.hero.about .HckuZNUQndMnf p:last-child { 
color: #FFFFFF;
font-size: 20px;
font-weight: 400;
z-index: 2;
}

.hero.about .HckuZNUQndMnf {
  gap: 0;
  padding-top: 45px;
}
p.ITuyewklljzGQiMB {
  font-size: 24px;
font-weight: 700;
padding-bottom: 0;
}

.hero.contact {
height: 527px;
  background-image: url(../img/banner_contact.webp);
}
.hero.serv {
height: 527px;
  background-image: url(../img/banner_ser.webp);
}

.hero.serv .HckuZNUQndMnf p:first-child { 
color: #FFFFFF;
font-size: 36px;
font-weight: 700;
z-index: 2;
}

.hero.serv .HckuZNUQndMnf p:last-child { 
color: #FFFFFF;
font-size: 20px;
font-weight: 400;
z-index: 2;
}

.hero.contact .HckuZNUQndMnf p:first-child { 
color: #FFFFFF;
font-size: 36px;
font-weight: 700;
z-index: 2;
}

.hero.contact .HckuZNUQndMnf p:last-child { 
color: #FFFFFF;
font-size: 20px;
font-weight: 400;
z-index: 2;
}

.hero.serv .HckuZNUQndMnf {
  gap: 0;
  padding-top: 45px;
}

.JNMOvVHJyOKFHN {
justify-content: center;
}

p.big {
color: #FFFFFF;
font-size: 36px;
font-weight: 700;
z-index: 2;
}

p.fdQqliO4gj4 {
  color: #FFFFFF;
font-size: 20px;
font-weight: 400;
z-index: 2;
}

.hero.privacy {
height: 375px;
  background-image: url(../img/banner_privacy.webp);
}

.hero.privacy .stiPSHUDB5TsoG {
  top: 60%;
}
.hero.privacy .HckuZNUQndMnf {
padding-top: 55px;
}


.HckuZNUQndMnf {
  position: relative;
  z-index: 1;
}

.HckuZNUQndMnf::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 130%;
  transform: translate(-50%, -50%);
  background-image: url('../img/ellips.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  filter: blur(40px);
  pointer-events: none;
}

@media (max-width: 1365px) {
  .menu {
    gap: 13px;
  }
  .JhTHu8NQ1tlUK {
    padding: 20px 15px 0;
  }
	.main {
		padding: 20px 15px 20px;
	}
  .kKceaPQwm5A {
   display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

@media (max-width: 1260px) {
  .vmEMhJdGh8Cxk9WW {
    margin-right: 0;
  }
      .cANzKtSSvdd {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

 @media (max-width: 1160px) {
	.top-menu {
		gap: 25px;
	}
	 .AGWln0AUzn img {
    width: auto;
    max-height: 49px;
    position: relative;
    z-index: 1;
    max-width: 250px;
}
} 

@media (max-width: 1080px) {

  td, th {
    min-width: 270px;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .top-menu {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background: #1976D2;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    z-index: 50;
  }

  .top-menu.active {
    display: flex;
    align-items: flex-end;
    padding: 100px 19px 20px;
    box-shadow: 0px 22px 23.5px rgba(0, 0, 0, 0.25);
    width: 293px;
    gap: 15px;
    border-radius: 30px 0 0 30px;
  }

  .menu ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }

  .TQpXJcO4Po7R {
    display: flex;
    width: auto;
    gap: 20px;
  }

.wrapper:has(.XxLzA48o03) {
padding: 0;
}

.foot {
  padding: 30px 0 65px;
}
 
.top-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: auto;
  background: #2D2D2D;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.top-menu.active {
  right: 0;
}

.menu-toggle {
  position: absolute;
  top: 5px;
  right: -44px;
  z-index: 1100;
  background: none;
  border: none;
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
  height: 100%;
}

.menu  {
 flex-direction: column;
    align-items: flex-end;
    width: auto;
    margin-right: 0;
}

.hero {
  height: auto;
}

.hPVI34JVL {
  flex-direction: column;
  gap: 18px;
  padding: 10px;
}

.lEIfbelCnV94 {
  flex-direction: column;
}

.FEiEYuPEGmH {
  flex-direction: column;
}

.ASYbdFYvaIpm {
  width: 100%;
}
.UIbUWMez50zWr {
  flex-wrap: wrap;
  gap: 10px;
}
.submenu {
    display: none;
    position: static;
    background: transparent;
    padding: 0;
    min-width: auto;
    z-index: 10;
    border-radius: none;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 20px;
    gap: 10px;
}
.menu-item.has-submenu:hover > a {
    color: #FFFFFF;
}
.submenu a {
  color: #FFFFFF;
}
.menu-item.has-submenu:hover > a::after {
  background: url(../img/arrow-menu.svg) no-repeat center center;
}
.menu-item.has-submenu {
text-align: right;
}

.submenu {
  display: none!important;
  flex-direction: column;
  padding-top: 20px;
  gap: 10px;
}

.menu-item.open .submenu {
  display: flex!important;
}
.menu-item.open.has-submenu > a::after {
  transform: rotate(180deg);
}

.menu-item.has-submenu > a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/arrow-menu.svg) no-repeat center center;
  background-size: contain;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  transform: rotate(0deg); 
}

.menu-item.open.has-submenu > a::after {
  transform: rotate(180deg);
}

}

@media (max-width: 1024px) {
  .cANzKtSSvdd {
    display: flex;
        flex-direction: column;
        align-items: center;
  }
  .UzKcGeeiqfUf {
    display: none;
  }
  .KmDWARDPhCLcF {
    width: 100%;
  }
  .rhkmzSDX5C2g h2 {
    text-align: center;
  }
}


@media (max-width: 728px) {
  
  .main h1 {
    font-size: 28px;
  }
.main h2 {
  font-size: 28px;
}
.main h3 {
  font-size: 24px;
}
.main h4 {
  font-size: 18px;
}
.main p, .main ul, .main ol {
  font-size: 16px;
}
.YoxYmlDbdO7hat {
  font-size: 20px;
}

a.AGWln0AUzn  {
  font-size: 16px;
}

.AGWln0AUzn img {
  width: auto;
  height: 29px;
}

.menu a,
.menu ul li a {
  font-size: 20px;
  padding: 5px 0;
}

.YoxYmlDbdO7hat a {
  font-size: 14px;
}
.UIbUWMez50zWr p {
  font-size: 12px;
}
.UIbUWMez50zWr .menu {
  gap: 10px;
}
.UIbUWMez50zWr {
  gap: 20px;
}
      .fIAFAolAWjMr {
        padding: 122px 0;
      }
      .fIAFAolAWjMr img {
    width: 100%;
}

.DVaKFLx8CPdWG {
  padding: 15px 0;
}

.DVaKFLx8CPdWG h1 {
  font-size: 24px;
}
.DVaKFLx8CPdWG h4 {
  font-size: 17px;
}
.DVaKFLx8CPdWG p, .DVaKFLx8CPdWG ul, .DVaKFLx8CPdWG ol {
        font-size: 14px;
    }

.main h2 {
  padding: 20px 0 23px;
}
   
.main ul, .main ol {
    padding: 10px 10px;
    margin-left: 10px;
}
.main h4 {
  padding: 17px 0;
}

.main p, .main p, .main ul, .main ol {
  line-height: 20px;
}
.one-image img {
  border-radius: 15px;
}
.hero {
  border-radius: 30px;
}
.HckuZNUQndMnf {
  border-radius: 15px;
}
.hero {
  padding: 20px 15px 44px;
  margin-bottom: 20px;
}

.UIbUWMez50zWr a {
  font-size: 14px;
}
.UIbUWMez50zWr {
  justify-content: flex-start;
}
    td {
    font-size: 16px;
  }
  .one-image  {
  padding: 15px 0;
}

.text {
    overflow: hidden;
    padding: 30px 0;
}

.rhkmzSDX5C2g {
    flex-direction: column;
    max-height: 100%;
  }
   .popup-sign-up {
    flex-direction: column;
    max-height: 100%;
  }

  .UzKcGeeiqfUf,
  .KmDWARDPhCLcF {
    width: 100%;
  }

  .UzKcGeeiqfUf {
    height: 200px;
  }

  .UzKcGeeiqfUf img {
    height: 100%;
  }
  .gSUyYW5dpQnwz {
    font-size: 24px;
  }
  .KmDWARDPhCLcF {
    gap: 20px;
  }
  .popup-under {
    margin-bottom: 20px;
  }
  th {
    font-size: 16px;
  }
  td, th {
    padding: 10px;
  }

.KmDWARDPhCLcF input[type="text"], .KmDWARDPhCLcF input  {
  padding: 15px 25px;
}
.service {
    width: 100%; 
  }

  .menu-toggle {
    top: -8px;
    right: -16px;
  }
  .LYZYozhd0sllSGv {
    padding: 22px 17px;
    font-size: 20px;
    width: auto; 
    height: auto;
	min-height: auto;
	min-width: auto;
    align-self: center;
    margin-right: 0;
    max-width: 300px;
    gap: 11px;
  }
  .LYZYozhd0sllSGv i {
    font-size: 28px;
  }
  .hero .stiPSHUDB5TsoG {
    position: static;
    flex-direction: row;
    margin: 54px auto 20px;
  }
  .HckuZNUQndMnf {
    gap: 25px;
    padding: 30px 0 20px;
  }
  .HckuZNUQndMnf .YoxYmlDbdO7hat {
    margin: 0 auto;
  }
  .top-menu.active {
    padding-top: 80px;
  }
  .ASYbdFYvaIpm img {
    border-radius: 15px;
  }
  .bottom {
    width: 95%;
  }
  .IPJBlXwZTO63 {
    padding: 10px 0 30px;
  }
  .YkAJbMFOFsSQIa {
    padding: 10px 0 10px;
  }
  .EAhnTlAM {
    padding: 27px 25px;
   height: auto; 
  }
  .vmEMhJdGh8Cxk9WW {
    margin-top: 10px;
    order: 1;
    padding-bottom: 0
  }
  .vmEMhJdGh8Cxk9WW p:last-child {
    padding-bottom: 0;
  }

  .cANzKtSSvdd {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .QLymplsU2z h4 {
    font-size: 18px;
    padding: 8px 0;
  }
.QLymplsU2z p {
    font-size: 16px;
  }
  .QLymplsU2z img {
    height: 33px;
  }
  .QLymplsU2z {
    width: 279px;
    height: auto;
    order: 0;
  }
  .services {
    margin: 10px 0 50px;
  }
  .uuQuARBKtyCnx h3 {
   font-size: 18px;
  }
  .uuQuARBKtyCnx p {
font-size: 16px;
text-align: center;
  }
  .WPIDkl0mS {
    margin: 10px 0 10px;
}
.CUmxzqTs2yGC {
  padding: 34px 25px;
  height: auto;
  gap: 14px;
}
.review .name {
font-size: 18px;
}

.review p.date {
font-size: 16px;
padding-bottom: 0;
}

.review p.comment {
font-size: 16px;
padding-bottom: 0;
}
.review {
padding: 25px;
}
table {
  margin: 27px 0;
}
.ChbYEGOAJ77eg {
  padding: 35px 15px;
  gap: 30px;
}
.ChbYEGOAJ77eg p {
  font-size: 18px;
}

.foot .JhTHu8NQ1tlUK {
  padding: 0 15px;
}
.UIbUWMez50zWr a {
  font-size: 16px;
}
    .UIbUWMez50zWr p {
        font-size: 16px;
    }
    .rhkmzSDX5C2g.active h2 {
      font-size: 28px;
      padding: 10px 0 15px;
    }
    .rhkmzSDX5C2g.active .KmDWARDPhCLcF input {
      font-size: 18px;
    }
    .rhkmzSDX5C2g.active .KmDWARDPhCLcF input::placeholder {
  font-size: 18px;
}
.rhkmzSDX5C2g {
  padding: 15px;
} 
div#popup-send-form {
  min-width: 330px;
}
.grLJLq5BP6j .ibNqociKXjzH p {
    font-size: 18px;
    text-align: center;
}

p.pmnqGMrt1Z5X {
  font-size: 28px;
}
.hero.about .HckuZNUQndMnf p:first-child, .hero.serv .HckuZNUQndMnf p:first-child, .hero.contact .HckuZNUQndMnf p:first-child {
  font-size: 28px;
  line-height: 1.1;
}
.hero.about .HckuZNUQndMnf p:last-child, .hero.serv .HckuZNUQndMnf p:last-child, .hero.contact .HckuZNUQndMnf p:last-child  {
  font-size: 16px;
  line-height: 1.4;
  padding-bottom: 10px;
}
.hero.about {
  height: auto;
  padding: 20px 15px 14px;
}

.hero.contact {
  height: auto;
  padding: 20px 15px 14px;
}

.hero.serv {
  height: auto;
  padding: 20px 15px 14px;
}

.gkNjzlYSezIu71xO.hero {
  height: auto;
  border-radius: 15px;
  padding: 20px 15px 20px;
}
.gkNjzlYSezIu71xO.hero::before {
  border-radius: 15px;
}
.fIAFAolAWjMr {
  padding: 30px 0 40px;
}
p.ITuyewklljzGQiMB {
  font-size: 18px;
}
.hero.contact .HckuZNUQndMnf p:last-child {
  padding-top: 25px;
}
.KmDWARDPhCLcF input {
  font-size: 18px;
}
.KmDWARDPhCLcF input::placeholder {
  font-size: 18px;
}
p.big {
font-size:28px;
line-height: 1.1;
}

p.fdQqliO4gj4 {
font-size: 16px;
line-height: 1.4;
}

.hero.privacy {
  height: auto;
  padding: 20px 15px 14px;
}

.HckuZNUQndMnf::before {
  width: 130%;
    height: 170%;
}

.about .HckuZNUQndMnf::before, .serv .HckuZNUQndMnf::before, .JNMOvVHJyOKFHN .HckuZNUQndMnf::before {
        width: 130%;
        height: 100%;
    }
}

@media (max-width: 600px) {
  .cANzKtSSvdd {
    grid-template-columns: 1fr;
  }

  .vmEMhJdGh8Cxk9WW, .QLymplsU2z {
    grid-column: auto;
  }
  .close {
  width: 13px;
  height: 13px;
}
}

/* new */

 .SedXfVdKytg0 {
	width: 100%!important;
}

.top-menu + article {
	width: 100%!important;
} 

.top-menu + div {
    width: 100%!important;
}

.menu {
	justify-content: center;
	width: 100%;
}

.LYZYozhd0sllSGv i {
	font-size: 36px;
    font-weight: 600;
    color: #FFFFFF;
}

.LYZYozhd0sllSGv p {
	font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
	line-height: auto;
	padding-bottom: 0;
}

.LYZYozhd0sllSGv p:first-child {
    font-size: 36px;
    font-weight: 600;
    color: #FFFFFF;
}

.SJMjbOXOp8pjOr {
    width: 275px;
    height: 267px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    border: 0.5px solid var(--color-border-blocks);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.oKNUGSGKVhpLlb9 {
	display: flex;
    gap: 13px;
    align-items: center;
}

.blOrXmIXk4d .hero {
	overflow: visible;
}


.xZXijh3O6 div {
	display: flex;
    gap: 15px;
}

.cANzKtSSvdd .SJMjbOXOp8pjOr:nth-child(2) {
	grid-column: 3;
    grid-row: 1;
}

.cANzKtSSvdd .SJMjbOXOp8pjOr:nth-child(3) {
	grid-column: 4;
    grid-row: 1;
}

.cANzKtSSvdd .SJMjbOXOp8pjOr:nth-child(4) {
	grid-column: 2;
    grid-row: 2;
}
.cANzKtSSvdd .SJMjbOXOp8pjOr:nth-child(5) {
	grid-column: 3;
    grid-row: 2;
}

.cANzKtSSvdd .SJMjbOXOp8pjOr:nth-child(6) {
	grid-column: 4;
    grid-row: 2;
}

@media (max-width: 728px) {
    .LYZYozhd0sllSGv {
        padding: 22px 17px;
        font-size: 20px;
        width: auto;
        height: auto;
        align-self: center;
        margin-right: 0;
        max-width: 300px;
       gap: 11px;
    }
	.LYZYozhd0sllSGv p {
		font-size: 20px;
	}
	.LYZYozhd0sllSGv p:first-child {
    font-size: 28px;
	margin-bottom: 5px;
}
	.grLJLq5BP6j {
		max-height: 100%;
	}
 
}

html {
	overflow: hidden;
}
body {
	overflow-x: hidden;
}

@media (max-width: 1023px) {
	.main table {
		display: block!important;
	}
}



/* Скрываем старые псевдоэлементы */
.menu-item.has-submenu > a::after {
  content: none !important;
}

/* Контейнер сабменю */
.submenu {
  display: none;           /* по-умолчанию скрыто */
  margin-left: 1.5em;      /* отступ, если нужно */
}

/* Открытое сабменю */
.menu-item.open > .submenu {
  display: block;
}

/* Стили кнопки-тогглера */
.submenu-toggle {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 8px;
  vertical-align: middle;
  background: url('../img/arrow-menu.svg') no-repeat center center;
  background-size: contain;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Состояние «открыто» (вращаем стрелку) */
.submenu-toggle[aria-expanded="true"] {
  transform: rotate(180deg);
}

/* Скрытый текст для screen-reader */
.KUmmxoo4NqE1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 769px) {
  /* 1) Показываем кнопку-стрелку на десктопе */
  .submenu-toggle {
    display: inline-block; /* или block, как вам по дизайну */
  }

  /* 2) Открываем сабменю по наведению */
  .menu-item.has-submenu:hover > .submenu {
    display: block;
  }

  /* 3) Вращаем стрелку при наведении на родителя */
  .menu-item.has-submenu:hover > .submenu-toggle {
    transform: rotate(180deg);
  }
}

/* ===== FOOTER COLUMNS ===== */

/* Корневой контейнер меню */
.xZXijh3O6 {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

/* Колонка */
.xZXijh3O6 .vXum0Hvucije {
    display: flex;
    flex-direction: column;
}

.vXum0Hvucije {
	width: 140px;
}

/* Заголовок-родитель */
.tQKsBsm0aU {
    font-weight: 700 !important;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
    line-height: 1.4;
    color: inherit;
}

/* Контейнер дочерних ссылок */
.wyEuHV3kc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Дочерние пункты */
.wgVlLDsbFcw2gh {
    font-weight: 400 !important;
    opacity: 1;
    text-decoration: none;
    display: inline-block;
    line-height: 1.3;
    color: inherit;
}

/* ===== Респонсив ===== */
@media (max-width: 768px) {
    .vXum0Hvucije {
	width: 180px;
}
}
@media (max-width: 640px) {
    .xZXijh3O6 {
        gap: 16px;
    }
    .xZXijh3O6 .vXum0Hvucije {
        min-width: 45%;
        max-width: none;
    }
}

@media (max-width: 400px) {
    .xZXijh3O6 .vXum0Hvucije {
        min-width: 100%;
    }
}

/* new footer */
.footer-column {
    cursor: pointer;
}

.footer-submenu {
    display: flex;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.footer-submenu.active {
    max-height: 800px;
    opacity: 1;
}

.submenu-toggle.active {
    transform: rotate(180deg);
}

.submenu-toggle {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 8px;
    vertical-align: middle;
    background: url(../img/arrow-menu.svg) no-repeat center center;
    background-size: contain;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s 
ease;
}

.xZXijh3O6 .vXum0Hvucije.footer-column {
	display: block;
	width: 100%;
}

@media (max-width: 956px) {
.xZXijh3O6 div {
	flex-wrap: wrap;
}
.xZXijh3O6 .vXum0Hvucije.footer-column {
    width: auto;
}
	.LYZYozhd0sllSGv {
	padding: 20px;
}
}

@media (max-width: 728px) {
	.LYZYozhd0sllSGv {
max-width: min-content;
	}	
}

@media (max-width: 450px) {
    .LYZYozhd0sllSGv p {
        font-size: 15px;
	}
    .LYZYozhd0sllSGv p:first-child {
        font-size: 22px;
	}}

.telBlock {
	padding: 20px;
	background: #FFFFFF;
	border-radius: 20px;
	font-size: 20px;
	margin: 20px;
	z-index: 99;
	width: max-content;
	display: flex;
	gap: 10px;
	flex-direction: column;
}

.telBlock a {
	display: flex;
    background: #006fff;
    border-radius: 20px;
    color: #FFFFFF;
    padding: 12px 25px;
    align-items: center;
    justify-content: center;
    line-height: 1;
	transition: background 0.3s ease;
}

.telBlock a:hover {
	background: #0554ba;
}

.cancelTel {
	display: flex;
    background: #d1d3d4;
    border-radius: 20px;
    color: #000000;
    padding: 12px 25px;
    align-items: center;
    justify-content: center;
    line-height: 1;
	transition: background 0.3s ease;
	cursor: pointer; 
	transition: background 0.3s ease;
}

.cancelTel:hover {
	background: #d1d3d4a8;
}

.telOverlay{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.6);
  z-index: 99999;
}

.telOverlay.is-open{
  display: flex;
}
.hero .facebook img,
.hero .twitter img,
.hero .instagram img{
	width: 100%;
	height: 100%;
}