:root {
  --black: black;
  --white: white;
  --bg-1: #e95734;
  --bg-2: #042940;
  --bg-3: #8c1c31;
  --bg-4: #181626;
  --bg-5: #0b80d9;
  --border-radius: 36px;
  --gap-30: 25px;
}

body {
  line-height: 1.3;
  overflow-x: hidden;
  direction: ltr;
  font-family: "Albert Sans", sans-serif !important;
  font-size: 17px;
  margin: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.row {
  margin: 0 !important;
}

a {
  word-break: break-all;
  text-decoration: none;
}

p {
  padding: 5px 0px;
  margin-top: 0;
  margin-bottom: 0;

  font-size: clamp(12px, 4vw, 18px);
}

*:focus:not(.focus-visible) {
  outline: none;
}

ul {
  list-style-type: disc;
  padding: 0;
  margin: 0;
}

li {
  font-size: clamp(12px, 4vw, 18px);
  padding: 5px 0px;
  margin: 5px 0px;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  width: 100%;
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.title {
  font-size: clamp(32px, 4vw, 52px);
  display: flex;
  justify-content: flex-end;
  margin: 15px;
}

.title-ert {
  text-align: center;
  font-size: clamp(32px, 4vw, 52px);
  margin: 35px auto;
}

.title-ert::after {
  content: "";
  display: block;
  background: var(--bg-5);
  height: 4px;
  max-width: 55px;
  width: 100%;
  margin: 0 auto;
}

.container {
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: border-box;
}

header {
  position: relative;
  background-color: var(--bg-5);
}

.navbar {
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: white;
}

.menu-logo {
  display: flex;
  gap: 7px;
  align-items: center;
}

.logo-img {
  width: 75px;
}

.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-title {
  color: var(--white);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 600;
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  margin: 0 15px;
}

.nav-list a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

.nav-list a:hover {
  opacity: 0.8;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    background-color: var(--bg-5);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    visibility: hidden;
    z-index: 12;
  }

  .nav-list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list li {
    margin: 20px 0;
    text-align: center;
  }
}

.section-hero-ert {
  position: relative;
  max-height: 50px;
  background-image: url(../images/graphics_header_66b5fd84355760.15847239.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-hero-ert::before {
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0px;
  bottom: 0px;
  opacity: 0.6;
}

.hero-title-ert {
  font-size: clamp(31px, 4vw, 55px);

  color: var(--white);
  animation: slideIn 2s ease-out forwards;
}

@media (min-width: 992px) {
  .hero-title-ert {
    line-height: 65px;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* .box-hero-ert {
  padding: 1300px 0px;
} */

.slogan-hero-ert {
  font-size: clamp(14px, 4vw, 17px);
  line-height: 30px;
  max-width: 1500px;
  margin: 25px 0px 30px;
  color: #ddd;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 1.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.section-abous-us-ert {
  padding: 55px 0px;
}

@media (max-width: 767px) {
  .section-abous-us-ert {
    padding: 25px 0px;
  }
}

/* .thumb-about-us-ert {
  display: flex;
  gap: var(--gap-30);
} */

/* @media (max-width: 991px) {
  .thumb-about-us-ert {
    flex-direction: column;
  }
} */

.box-about-us-ert {
  flex: 1;
}

.title-about-us-ert {
  display: flex;
  align-items: flex-end;
}

.txt-about-us-ert {
  justify-content: center;
}

.box-img-about-us-ert {
  width: 100%;
  height: 450px;
}

.box-img-about-us-ert img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.thumb-img-little-ert {
  display: flex;
  gap: var(--gap-30);
  margin: 20px 0px;
}

@media (max-width: 575px) {
  .thumb-img-little-ert {
    flex-direction: column;
  }
}

.box-img-little-ert {
  flex: 1;
  padding: 20px 20px;
  height: 170px;
  background: url(../images/graphics_gallery_66b5fd95371f45.27964788.jpg)
    no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
}

.box-img-little-ert::before {
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  border-radius: 10px;
}

.box-img-little-ert-2 {
  flex: 1;
  padding: 20px 20px;
  height: 170px;
  background: url(../images/illustrations_gallery_66b5fd966b45c9.31510607.jpg)
    no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
}

.box-img-little-ert-2::before {
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  border-radius: 10px;
}

.stat-number-ert {
  position: relative;
  margin: 0;
  color: var(--white);
  font-size: clamp(21px, 4vw, 36px);
  text-align: center;
}

.txt-stat-ert {
  position: relative;
  font-size: clamp(16px, 4vw, 21px);
  color: var(--white);
  text-align: center;
}

.section-service-ert {
  position: relative;
  padding: 45px 0px;
  background: url(../images/figures_header_66b5fd8713a2c9.52453079.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-service-ert::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(0, 0, 0, 0.8);
}

.service-title-ert {
  color: var(--white);
}

.txt-service-sub-ert {
  color: var(--white);
  text-align: center;
  margin: 20px 0px;
}

.thumb-service-ert {
  display: flex;
  gap: var(--gap-30);
  flex-wrap: wrap;
  justify-content: center;
}

.box-service-ert {
  padding: 25px 25px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  width: 100%;
  animation: bounce 2s infinite;
}

.box-service-ert:nth-child(2) {
  animation-delay: 0.5s;
}

.box-service-ert:nth-child(3) {
  animation-delay: 1s;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .box-service-ert {
    width: 40%;
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .box-service-ert {
    max-width: 240px;
    width: 17%;
    display: flex;
    flex-direction: column;
  }
}

.box-service-ert p {
  text-align: center;
  margin: 15px 0px;
}

.thumb-svg-serv-ert {
  display: flex;
  justify-content: flex-end;
}

.box-service-svg-ert {
  background-color: var(--bg-5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-service-svg-ert svg {
  fill: var(--white);
  width: 35px;
  height: 35px;
}

.box-service-ert:hover .box-service-svg-ert {
  opacity: 0.7;
}

.section-history-ert {
  padding: 45px 0px;
}

@media (max-width: 767px) {
  .section-history-ert {
    padding: 25px 0px;
  }
}

.thumb-hist-ert {
  display: flex;
  margin-top: 35px;
  gap: var(--gap-30);

  flex-direction: column;
}

@media (min-width: 992px) {
  .thumb-hist-ert {
    gap: 60px;

    flex-direction: row-reverse;
  }
}

.thumb-txt-hist-ert {
  display: flex;
  flex-direction: column;
  gap: var(--gap-30);
}

.box-hist-ert {
  flex: 1;
}

.img-hist-ert {
  position: relative;
}

@media (max-width: 991px) {
  .img-hist-ert {
    max-width: 730px;
    margin: 0 auto;
  }
}

.img-hist-ert::after {
  content: "";
  position: absolute;
  border: 8px solid var(--bg-5);
  right: -25px;
  left: 25px;
  bottom: 25px;
  top: -25px;
  max-width: 730px;
  z-index: -1;
  border-radius: 10px;
}

.img-hist-ert img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  animation: scaleImage 3s infinite alternate;
}

@keyframes scaleImage {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.95);
  }
}

.section-comm-ert {
  padding: 45px 0px;
}

@media (max-width: 767px) {
  .section-comm-ert {
    padding: 25px 0px;
  }
}

.conteiners-comm-ert {
  max-width: 840px;
}

.thumb-all-comm-ert {
  display: flex;
  gap: var(--gap-30);
  flex-direction: column;
}

.box-comments1-ert {
  align-items: center;
  padding: var(--gap-30);
  background: #f7f7f7;
  gap: var(--gap-30);
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .box-comments1-ert {
    flex-direction: column;
  }
}

.box-comments-ert {
  align-items: center;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
}

.item-comm2-ert {
  align-items: center;
  padding: var(--gap-30);
  background: #f7f7f7;
  gap: var(--gap-30);
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .item-comm2-ert {
    flex-direction: column;
    align-items: center;
  }
}

.img-comm-ert {
  width: 100px;
  height: 100px;
}

.img-comm-ert img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

.thumb-txt-comm-ert {
  flex: 1;
}

.star-comm-svg-ert {
  display: flex;
  gap: 5px;
}

@media (max-width: 767px) {
  .star-comm-svg-ert {
    justify-content: center;
  }
}

.star-comm-svg-ert svg {
  fill: var(--bg-5) !important;
  width: 35px;
  height: 35px;
}

.name-comm-ert {
  color: #3a3737;
  font-size: clamp(16px, 4vw, 21px);
  font-weight: 600;
  margin: 7px 0px;
}

.txt-comm-ert {
  color: #777;
}

@media (max-width: 767px) {
  .name-comm-ert {
    text-align: center;
  }

  .txt-comm-ert {
    text-align: center;
  }
}

.section-tarif-ert {
  padding: 45px 0px;
}

@media (max-width: 767px) {
  .section-tarif-ert {
    padding: 25px 0px;
  }
}

.t-b-tarif {
  margin: 15px 0px;
  display: flex;
  justify-content: flex-end;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.title-pricing {
  margin-bottom: 55px;
}

.svg-tarif-ert svg {
  width: 24px;
  stroke: var(--bg-5);
}

.pricing .plan {
  min-width: 270px;
  width: 25%;
  background-color: #fff;
  padding: 16px;
  margin: 12px;
  border-radius: 5px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

@media (max-width: 767px) {
  .pricing .plan {
    width: 100%;
  }
}

.pricing .plan h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.pricing .plan .price {
  margin-bottom: 1rem;
  font-size: 30px;
}

.pricing .plan ul.features {
  list-style-type: none;
  text-align: left;
}

.pricing .plan ul.features li {
  margin: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(15px, 4vw, 16px);
}

.pricing .plan.popular {
  position: relative;
  transform: scale(1.08);
}

@media (min-width: 575px) {
  .pricing .plan.popular {
    border: 2px solid var(--bg-5);
  }
}

@media (max-width: 991px) {
  .pricing .plan.popular {
    order: 1;
    margin-top: 60px;
  }
}

.pricing .plan.popular span {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-5);
  color: #fff;
  padding: 4px 20px;
  font-size: 18px;
  border-radius: 5px;
}

.pricing .plan:hover {
  background: #f7f7f7;
}

.section-blog-ert {
  padding: 45px 0px;
}

@media (max-width: 767px) {
  .section-blog-ert {
    padding: 25px 0px;
  }
}

.thumb-blog-ert {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-30);
}

.box-blog-ert {
  background: #f9f9f9;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid #eee;
  flex: 1 1 calc(33.333% - 30px);
}

@media (min-width: 576px) and (max-width: 991px) {
  .box-blog-ert {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 575px) {
  .box-blog-ert {
    flex: 1 1 100%;
  }
}

.thumb-img-blog-ert {
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.box-blog-ert:hover .thumb-img-blog-ert img {
  transform: scale(1.2);
}

.thumb-img-blog-ert img {
  transition: transform 0.3s ease;

  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.box-title-ert {
  padding: 20px;
}

.title-blog-ert {
  text-align: center;
  margin: 0px;
}

.section-footer-ert {
  padding: 45px 0px;
  background: #222;
}

.bg-copyring {
  background: #1a1919;
  padding: 20px 0px;
}

@media (max-width: 767px) {
  .section-footer-ert {
    padding: 25px 0px;
  }
}

.logo-footer-ert {
  color: white;
  display: flex;
  gap: 5px;
  align-items: center;
}

.logo-footer-ert:hover {
  color: var(--white);
}

.box-logo-footer-ert {
  width: 75px;
  height: 75px;
}

.box-logo-footer-ert-im {
  object-fit: contain;
  width: 75px;
  height: 75px;
}

.txt-logo-footer-ert {
  font-size: clamp(21px, 4vw, 36);
}

.t-footer-ert {
  margin: 25px 0px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: center;
}

.li-box-footer {
  display: flex;
  text-align: center;
  color: white;
  justify-content: flex-end;
}

.li-box-footer a {
  color: white;
}

.li-box-footer a:hover {
  color: var(--white);
}

.item-footer-link-ert a {
  color: white;
}

.politic-footer-ert {
  display: flex;
  justify-content: flex-end;
}

.item-footer-link-ert {
  flex-wrap: wrap;
  display: flex;
  gap: 36px;
}

@media (max-width: 575px) {
  .item-footer-link-ert {
    text-align: center;
  }

  .politic-footer-ert {
    justify-content: center;
  }

  .item-footer-link-ert {
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    align-items: center;
  }
}

.item-footer-link-ert a {
  color: white;
}

.item-footer-link-ert a:hover {
  color: var(--white);
}

.thumb-coppring-ert {
  display: flex;
  justify-content: flex-end;
}

.copy-title-ert {
  color: var(--white);
}

.main-box {
  padding: 0px 25px;
}

.main-images-ert {
  margin: 35px auto;
  position: relative;
  width: 450px;
}

@media (max-width: 767px) {
  .main-images-ert {
    width: auto;
  }
}

.price-color-ert {
  font-weight: 600;
  font-size: clamp(21px, 4vw, 31px);
  color: var(--bg-5);
}

.main-price-main-ert {
  display: flex;
  justify-content: flex-end;
}

.main-img {
  border-radius: 10px;
  animation: scaleImage 3s infinite alternate;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-images-ert::after {
  content: "";
  position: absolute;
  border: 8px solid var(--bg-5);
  right: -25px;
  left: 25px;
  bottom: 25px;
  top: -25px;
  max-width: 730px;
  z-index: -1;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .bg-main {
    padding: 25px 0px;
  }
}

.bg-main {
  padding: 45px 0px;
  background-color: #f7f7f7;
}

.forms-contacts-ert {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 7px;
}

.pol-col-ert {
  color: var(--bg-5);
}

.button-forms-ert {
  display: flex;
  margin: 15px 0px;
  justify-content: flex-end;
}

.checkbox-forms {
  display: flex;
  gap: 7px;
  align-items: center;
}

.forms-contacts-ert label {
  margin: 7px 0px;
}

.input-t1079944 {
  position: relative;
  background: #fff;
  border: none;
  outline: none;
  font-size: 16px;
  color: #252b33;
  -webkit-appearance: none;
  padding: 10px 16px;
  border: 2px solid var(--bg-5);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
  -moz-border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.input-t1079944:focus {
  box-shadow: 0 4px 12px var(--bg-5);
}

.textarea-t1079944 {
  background: #fff;
  border: none;
  outline: none;
  font-size: 16px;
  color: #252b33;
  -webkit-appearance: none;
  padding: 10px 16px;
  border: 2px solid var(--bg-5);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
  -moz-border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.textarea-t1079944:focus {
  box-shadow: 0 4px 12px var(--bg-5);
}

.click-1 {
  width: fit-content;
  display: flex;
  padding: 1.2em 1rem;
  cursor: pointer;
  gap: 0.4rem;
  font-weight: bold;
  border-radius: 30px;
  text-shadow: 2px 2px 3px var(--bg-5);
  background: linear-gradient(
      15deg,
      #880088,
      #aa2068,
      #cc3f47,
      #de6f3d,
      #f09f33,
      #de6f3d,
      #cc3f47,
      #aa2068,
      #880088
    )
    no-repeat;
  background-size: 300%;
  color: #fff;
  border: none;
  background-position: left center;
  box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.click-1:hover {
  background-size: 320%;
  background-position: right center;
}

.click-2 {
  transition: all 0.3s ease-in-out;
  font-family: "Dosis", sans-serif;
}

.click-2 {
  display: inline-block;
  text-align: center;
  padding: 15px;
  border-radius: 50px;
  background-image: linear-gradient(135deg, var(--bg-5) 0%, var(--bg-5) 100%);
  box-shadow: 0 20px 30px -6px var(--bg-5);
  outline: none;
  cursor: pointer;
  border: none;
  font-size: 24px;
  color: var(--white);
}

.click-2:hover {
  transform: translateY(3px);
  box-shadow: none;
}

.click-2:active {
  opacity: 0.5;
}

.click-3 {
  position: relative;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  border-radius: 6em;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: var(--white);
  background-color: var(--bg-5);
}

.click-3:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.click-3:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.click-3::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.click-3::after {
  background-color: var(--bg-5);
}

.click-3:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.click-4 {
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  padding: 15px 25px;
  color: #fff;
  -webkit-clip-path: polygon(
    0 0,
    0 0,
    100% 0,
    100% 0,
    100% calc(100% - 15px),
    calc(100% - 15px) 100%,
    15px 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    0 0,
    100% 0,
    100% 0,
    100% calc(100% - 15px),
    calc(100% - 15px) 100%,
    15px 100%,
    0 100%
  );
  font-size: 0.7rem;
  line-height: 14px;
  letter-spacing: 1.2px;
  transition: 0.2s 0.1s;
  background-image: linear-gradient(90deg, #1c1c1c, var(--bg-5));
  border: 0 solid;
  overflow: hidden;
}

.click-4:hover {
  cursor: pointer;
  transition: all 0.3s ease-in;
  padding-right: 30px;
  padding-left: 30px;
}

.click-5 {
  background-color: white;
  padding: 0.6em 1em;
  border: 4px solid var(--bg-5);
  transition: ease-in-out 0.3s;
  color: var(--bg-5);
  font-weight: bolder;
  font-size: 12px;
}

.click-5:hover {
  transform: scale(1.2) rotate(10deg);
  background-color: var(--bg-5);
  color: white;
}

@keyframes shake {
  0% {
    rotate: 0deg;
  }

  33% {
    rotate: 10deg;
  }

  66% {
    rotate: -10deg;
  }

  100% {
    rotate: 10deg;
  }
}

.scrollToTopButton {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background-color: var(--bg-5);
  color: #fff;
  padding: 7px 10px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  font-size: 18px;
}

.scrollToTopButton:hover {
  opacity: 0.6;
}

.svg-arrow-ert {
  fill: white;
}
.phone-container {
  position: relative;
  width: 100%;
}









