body,
html {
  font-size: 15px;
  margin: 0;
  font-family: 'Montserrat', sans-serif !important;
  scroll-behavior: smooth;
}

.header {
  position: sticky;
  top: 0;
  background-color: white;
  padding: 15px 0 !important;
  display: flex;
  justify-content: space-between;
  position: -webkit-sticky;
  z-index: 1000;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.header-location {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: color 1s;
  text-decoration: underline;
}

.header-location svg {
  height: 13px;
  margin-right: 5px;
}

.logo {
  display: inline-flex;
  font-weight: bolder;
  cursor: pointer;
  transition: color 1s;
}

.logo:hover,
.header-location:hover {
  color: #1848ff;
}

.left-side {
  display: flex;
  height: 100%;
  background-color: #f5f5f5;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
}

.left-side-inside {
  margin: auto 8%;
}

.left-side-inside h1 {
  font-size: clamp(15px, 2.5vw, 2.5rem);
  color: #1848ff;
  font-weight: bolder;
  margin-bottom: 30px;
}

.right-side-inside {
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  position: relative;
}

.right-side {
  height: 500px;
}

.right-side-inside img {
  @media (max-width: 768px) {
    height: 100%;
  }
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.7s ease, opacity 0.8s ease-in-out;
}

.right-side-inside img:hover {
  transform: scale(103%);
}

.service {
  display: inline-flex;
  background-color: #e6e6eb;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  align-items: center;
}

.service:hover {
  background-color: #dcd4d4;
}

.service span {
  font-size: clamp(10px, 1.1vw, 1.1rem);
  padding: 10px;
}

.call-to-action {
  background: #1848ff;
  color: #ffffff;
  border: none;
  @media (max-width: 768px) {
    padding: 10px 20px;
  }
  @media (min-width: 768px) {
    padding: 15px 30px;
  }
  font-size: clamp(15px, 1.3vw, 1.5rem);
  margin-top: 20px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.call-to-action:hover {
  background-color: #002cd2;
}

.call-to-action:active {
  background-color: #0025a9;
}

.construction {
  margin: 20px 0 !important;
}

.construction-banner {
  filter: grayscale(75%);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  height: 400px;
  color: white;
}

.banner-content {
  @media (max-width: 768px) {
    width: 90%;
  }
  @media (min-width: 768px) {
    width: 70%;
  }
  margin: 0 0;
  padding: 20px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  text-align: center;
  max-height: 100%;
}

.banner-content h1 {
  font-size: clamp(15px, 2.5%, 2rem);
  margin-bottom: 20px;
}

.banner-content p {
  font-size: clamp(12px, 1.75%, 1.3rem);
}

.advantage-card {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  height: 170px;
  align-items: center;
  justify-content: space-evenly;
  background-color: #1848ff;
  border-radius: 10px;
  color: white;
  transition: background-color 0.7s ease, color 0.7s ease;
}
@media (max-width: 768px) {
  #advantage1 {
    padding-right: 3px !important;
  }

  #advantage2 {
    padding: 0 3px !important;
  }

  #advantage3 {
    padding-left: 3px !important;
  }
}

.advantage-card:hover {
  background-color: #f5f5f5;
  color: black;
}

.card-number {
  line-height: 1;
  font-size: clamp(30px, 2.5vw, 2.5rem);
  color: #1848ff;
  -webkit-text-stroke: 1px white;
  transition: -webkit-text-stroke 0.5s ease, color 0.5s ease;
}

.advantage-card-text {
  @media (max-width: 768px) {
    width: 80%;
  }
  @media (min-width: 768px) {
    width: 60%;
  }
  font-size: clamp(9px, 1.1vw, 1.1rem);
  text-align: center;
}

.advantage-card:hover .card-number {
  -webkit-text-stroke: 1px #1848ff;
  color: #f5f5f5;
}

.list-card {
  @media (max-width: 768px) {
    height: 200px;
  }
  @media (min-width: 768px) {
    height: 245px;
  }
  border: 2px solid #e6e6eb;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.list-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.list-card:hover::before {
  opacity: 1;
}

.list-card:hover .list-card-number,
.list-card:hover .list-card-text {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 3);
}

.list-card-number,
.list-card-text {
  margin: 20px;
  font-weight: bolder;
  letter-spacing: 1px;
  transition: color 0.8s ease, text-shadow 1s ease;
}

.list-card-number {
  color: #1848ff;
}

.list-card.active::before {
  opacity: 1;
}

.list-card.active .list-card-number,
.list-card.active .list-card-text {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 3);
}

.map {
  border-radius: 10px;
  margin-bottom: 20px;
}

.contacts {
  margin-bottom: 20px;
}

.contacts-inside {
  padding: 20px 20px;
  align-items: normal;
  flex-direction: column;
}

.contacts-title {
  color: #1848ff;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contacts-subtitle {
  opacity: 0.5;
  font-weight: bold;
  font-size: 12px;
}

.contacts-content {
  font-weight: bolder;
  margin-bottom: 20px;
}

.contacts-content a {
  color: #1848ff;
  text-decoration: none;
}

.footer {
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer span {
  font-weight: bolder;
  font-size: larger;
  color: #1848ff;
  padding: 10px 0;
}
