/* /Components/Home/Home_AboutComponent.razor.rz.scp.css */
.about[b-maj2m2eden] {
  margin-top: 50px;
}
.about article[b-maj2m2eden] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: stretch;
}
.about-right[b-maj2m2eden] {
  width: 100%;
  height: 100%;
  background-color: var(--grayColor);
  min-height: 300px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-right img[b-maj2m2eden] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .about article[b-maj2m2eden] {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
/* /Components/Home/Home_CaseStudyComponent.razor.rz.scp.css */
.study article[b-xaq8vgl6r8] {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.study-list[b-xaq8vgl6r8] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.study-list .item[b-xaq8vgl6r8] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
}
.study-list .item-image[b-xaq8vgl6r8] {
  border-radius: var(--radius);
  width: 100%;
  height: 200px;
  background-color: var(--grayDark);
}
.study-list .item-info[b-xaq8vgl6r8] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.study-list .item-info h3[b-xaq8vgl6r8] {
  color: var(--black-text);
}
.study-list .item-info p[b-xaq8vgl6r8] {
  color: var(--black-text);
}
@media (min-width: 768px) {
  .study article[b-xaq8vgl6r8] {
    gap: 45px;
  }
  .study-list[b-xaq8vgl6r8] {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}
@media (min-width: 992px) {
  .study article[b-xaq8vgl6r8] {
    gap: 50px;
  }
  .study-list[b-xaq8vgl6r8] {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .study-list .item[b-xaq8vgl6r8] {
    max-width: 100%;
  }
}
/* /Components/Home/Home_ContactComponent.razor.rz.scp.css */
.contact[b-1s9a37qygh] {
  margin-bottom: 50px;
  margin-top: 100px;
}
.contact article[b-1s9a37qygh] {
  background: radial-gradient(189.56% 112.6% at 50% 112.6%, #4040CC 0%, #191919 52.66%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-inline: 20px;
}
.contact-title[b-1s9a37qygh] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
}
.contact-title h2[b-1s9a37qygh] {
  color: #fff;
  font-weight: bold;
}
.contact-title p[b-1s9a37qygh] {
  color: #fff;
}
.contact .--button[b-1s9a37qygh] {
  width: fit-content;
}
@media (min-width: 768px) {
  .contact article[b-1s9a37qygh] {
    padding-inline: 25px;
  }
  .contact-title[b-1s9a37qygh] {
    max-width: 700px;
  }
}
@media (min-width: 992px) {
  .contact article[b-1s9a37qygh] {
    padding-inline: 30px;
    border-radius: var(--radius);
  }
  .contact-title[b-1s9a37qygh] {
    max-width: 600px;
  }
}
/* /Components/Home/Home_FAQComponent.razor.rz.scp.css */
.faqs article[b-ql3fpmhmwt] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.faqs-right[b-ql3fpmhmwt] {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faqs-item[b-ql3fpmhmwt] {
  border-top: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  border-left: 3px solid var(--grayDark);
}
.faqs-item:last-child[b-ql3fpmhmwt] {
  border-bottom: 1px solid #e0e0e0;
}
.faqs-item .question[b-ql3fpmhmwt] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 24px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faqs-item .question:hover[b-ql3fpmhmwt] {
  background-color: var(--grayColor);
}
.faqs-item .question h3[b-ql3fpmhmwt] {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  padding-right: 20px;
  line-height: 1.4;
}
.faqs-item .question .icon[b-ql3fpmhmwt] {
  flex-shrink: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration);
}
.faqs-item .question .icon[b-ql3fpmhmwt]  svg .--svg-fill {
  fill: var(--black-text);
}
.faqs-item .answer[b-ql3fpmhmwt] {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0 15px;
}
.faqs-item .answer p[b-ql3fpmhmwt] {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black-text);
  margin: 0;
}
.faqs-item.active[b-ql3fpmhmwt] {
  border-left: 3px solid var(--primary-color);
}
.faqs-item.active .answer[b-ql3fpmhmwt] {
  max-height: 500px;
  opacity: 1;
  padding: 0 0 24px 15px;
}
.faqs-item.active .question .icon[b-ql3fpmhmwt] {
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .faqs article[b-ql3fpmhmwt] {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
/* /Components/Home/Home_HeroComponent.razor.rz.scp.css */
.hero[b-lg3aaduu4h] {
  min-height: 100vh;
  background: radial-gradient(117.65% 152.5% at 74.75% -14.88%, #191919 53.44%, #191A1C 59.42%, #4040CC 100%);
  padding-top: calc(var(--headerHeight));
}
.hero article[b-lg3aaduu4h] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 100%;
}
.hero-title[b-lg3aaduu4h] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-title .subtitle[b-lg3aaduu4h] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-title .subtitle[b-lg3aaduu4h]  svg {
  width: 18px;
}
.hero-title .subtitle[b-lg3aaduu4h]  svg .--svg-stroke {
  stroke: var(--cloud-accent-color);
}
.hero-title .subtitle > span[b-lg3aaduu4h] {
  color: #fff;
  text-transform: uppercase;
}
.hero-title h1[b-lg3aaduu4h] {
  color: #fff;
  font-weight: bold;
}
.hero-title h1 span[b-lg3aaduu4h] {
  color: #fff;
  font-size: inherit;
  font-weight: inherit;
  position: relative;
}
.hero-title h1 span[b-lg3aaduu4h]  svg {
  width: 60%;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-title h1 span[b-lg3aaduu4h]  svg .--svg-stroke {
  stroke: var(--cloud-accent-color);
}
.hero-title p[b-lg3aaduu4h] {
  margin-top: 20px;
  color: #fff;
  max-width: 90%;
}
.hero-title .buttons[b-lg3aaduu4h] {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  width: fit-content;
}
@media (min-width: 768px) {
  .hero[b-lg3aaduu4h] {
    padding-top: calc(var(--headerHeight) + 30px);
  }
  .hero article[b-lg3aaduu4h] {
    gap: 18px;
    max-width: 900px;
  }
  .hero-title[b-lg3aaduu4h] {
    gap: 10px;
  }
  .hero-title .subtitle[b-lg3aaduu4h] {
    gap: 10px;
  }
  .hero-title .subtitle[b-lg3aaduu4h]  svg {
    width: 20px;
  }
  .hero-title h1 span[b-lg3aaduu4h]  svg {
    bottom: -15px;
  }
  .hero-title p[b-lg3aaduu4h] {
    margin-top: 25px;
    max-width: 700px;
  }
  .hero-title .buttons[b-lg3aaduu4h] {
    flex-direction: row;
    gap: 18px;
    margin-top: 18px;
    width: auto;
  }
}
@media (min-width: 992px) {
  .hero article[b-lg3aaduu4h] {
    gap: 20px;
    max-width: 1000px;
  }
  .hero-title h1 span[b-lg3aaduu4h]  svg {
    bottom: -20px;
  }
  .hero-title p[b-lg3aaduu4h] {
    margin-top: 30px;
    max-width: 600px;
  }
  .hero-title .buttons[b-lg3aaduu4h] {
    gap: 20px;
    margin-top: 20px;
  }
}
/* /Components/Home/Home_ServicesComponent.razor.rz.scp.css */
.services article[b-oimlfba479] {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
}
.services-header[b-oimlfba479] {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.services-grid[b-oimlfba479] {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
.card[b-oimlfba479] {
  max-width: 260px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--duration);
  overflow: hidden;
}
.card-logo[b-oimlfba479] {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-top: 40px;
  background: #fff;
}
.card-logo[b-oimlfba479]  svg {
  width: 100%;
  object-fit: contain;
  max-width: 250px;
  height: 100%;
}
.card-content[b-oimlfba479] {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  padding: 10px 20px;
}
.card-content h3[b-oimlfba479] {
  color: var(--primary-color);
  font-weight: bold;
  margin: 0;
}
.card-content p[b-oimlfba479] {
  color: var(--black-text);
  margin: 0;
  font-size: 0.9rem;
}
.card-website a[b-oimlfba479] {
  font-size: 0.8rem;
}
.card-links[b-oimlfba479] {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  width: 100%;
  margin-top: auto;
  padding-inline: 20px;
  padding-bottom: 20px;
}
.social[b-oimlfba479] {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 10px;
  flex-wrap: wrap;
}
.social-icon[b-oimlfba479] {
  width: 30px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration);
  padding: 5px;
}
.social-icon[b-oimlfba479]  svg {
  width: 100%;
  height: 100%;
}
.social-icon[b-oimlfba479]  svg .--svg-fill {
  fill: #000;
  transition: fill var(--duration);
}
.social-icon:hover[b-oimlfba479]  svg .--svg-fill {
  fill: var(--primary-color);
}
.social-icon._webiste[b-oimlfba479] {
  width: 35px;
}
/* /Components/Home/Home_TimeComponent.razor.rz.scp.css */
.times article[b-l05sgxlajl] {
  overflow: visible;
  padding-top: 10px;
}
.times article > div[b-l05sgxlajl] {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius);
  box-shadow: 0 0px 2px #14142a3b;
}
.times .time[b-l05sgxlajl] {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  justify-content: center;
  border-bottom: 1px solid #E7E9EF;
}
.times .time:last-child[b-l05sgxlajl] {
  border-bottom: none;
}
.times .time-icon[b-l05sgxlajl] {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 0px 1px #14142a;
  align-self: center;
}
.times .time-icon[b-l05sgxlajl]  svg {
  width: 100%;
}
.times .time-icon[b-l05sgxlajl]  .--svg-stroke {
  stroke: var(--primary-color);
}
.times .time span[b-l05sgxlajl] {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black-text);
}
.times .time p[b-l05sgxlajl] {
  font-size: 1rem;
  color: var(--grayDarkColor);
}
@media (min-width: 768px) {
  .times article > div[b-l05sgxlajl] {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .times .time[b-l05sgxlajl] {
    border-bottom: none;
    border-right: 1px solid #E7E9EF;
  }
  .times .time:last-child[b-l05sgxlajl] {
    border-right: none;
  }
}
/* /Components/Home/Home_TrustedComponent.razor.rz.scp.css */
.trusted article[b-b0a0le5ltu] {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.trusted-list[b-b0a0le5ltu] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.trusted-list .video[b-b0a0le5ltu] {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  background-color: var(--grayColor);
  min-height: 300px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.trusted-list .video video[b-b0a0le5ltu] {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.trusted-list .list[b-b0a0le5ltu] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trusted-list .list > div[b-b0a0le5ltu] {
  box-shadow: 0 0px 2px #14142a3b;
  padding: 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.trusted-list .list > div > p[b-b0a0le5ltu] {
  color: var(--black-text);
}
.trusted-list .list > div .info[b-b0a0le5ltu] {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.trusted-list .list > div .info-image[b-b0a0le5ltu] {
  width: 40px;
  aspect-ratio: 1;
  background-color: var(--grayDark);
  border-radius: 5px;
}
.trusted-list .list > div .info-text[b-b0a0le5ltu] {
  display: flex;
  flex-direction: column;
}
.trusted-list .list > div .info-text span[b-b0a0le5ltu] {
  font-weight: bold;
  color: var(--black-text);
}
.trusted-list .list > div .info-text p[b-b0a0le5ltu] {
  color: var(--black-text);
}
@media (min-width: 768px) {
  .trusted article[b-b0a0le5ltu] {
    gap: 75px;
  }
  .trusted-list[b-b0a0le5ltu] {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
  .trusted-list .video[b-b0a0le5ltu] {
    min-height: 350px;
  }
}
@media (min-width: 992px) {
  .trusted article[b-b0a0le5ltu] {
    gap: 100px;
  }
  .trusted-list[b-b0a0le5ltu] {
    gap: 50px;
  }
  .trusted-list .video[b-b0a0le5ltu] {
    min-height: 400px;
  }
}
/* /Components/Shared/TitleComponent.razor.rz.scp.css */
.title[b-64hyhj7rgr] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
[b-64hyhj7rgr] .title-top,
[b-64hyhj7rgr] .title-paragraph {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
[b-64hyhj7rgr] .title-top span,
[b-64hyhj7rgr] .title-paragraph span {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-transform: capitalize;
  font-weight: bold;
}
[b-64hyhj7rgr] .title-top h2,
[b-64hyhj7rgr] .title-paragraph h2 {
  color: var(--black-text);
  font-weight: bold;
}
.title-paragraph p[b-64hyhj7rgr] {
  font-size: 1rem;
  color: var(--grayDarkColor);
}
.title-paragraph .link[b-64hyhj7rgr] {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transition: all var(--duration);
  color: var(--primary-color);
}
.title-paragraph .link[b-64hyhj7rgr]  svg {
  width: 20px;
  transition: all var(--duration);
}
.title-paragraph .link[b-64hyhj7rgr]  svg .--svg-fill {
  fill: var(--cloud-accent-color);
}
.title-paragraph .link:hover[b-64hyhj7rgr] {
  gap: 12px;
}
.title._left[b-64hyhj7rgr] {
  justify-content: flex-start;
  text-align: left;
  align-items: flex-start;
}
.title._justifed[b-64hyhj7rgr] {
  justify-content: space-between;
  align-items: center;
  text-align: left;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .title._justifed[b-64hyhj7rgr] {
    flex-wrap: nowrap;
  }
}
.title._left .title-top[b-64hyhj7rgr],
.title._justifed .title-top[b-64hyhj7rgr],
.title._left .title-paragraph[b-64hyhj7rgr],
.title._justifed .title-paragraph[b-64hyhj7rgr] {
  justify-self: flex-start;
  align-items: flex-start;
  text-align: left;
}
/* /Main/Layout/Footer.razor.rz.scp.css */
.footer[b-a5qgf4ai6v] {
  background-color: #000;
}
.footer article[b-a5qgf4ai6v] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-block: 40px;
}
.footer-left[b-a5qgf4ai6v] {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-left .logo[b-a5qgf4ai6v] {
  display: flex;
  flex-direction: column;
}
.footer-left .logo .copyright[b-a5qgf4ai6v] {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}
.footer-left .logo[b-a5qgf4ai6v]  svg {
  max-width: 120px;
  width: 100%;
}
.footer-left .logo[b-a5qgf4ai6v]  svg .--svg-fill,
.footer-left .logo[b-a5qgf4ai6v]  svg .--svg-fill-1 {
  fill: #fff;
}
.footer-left .logo[b-a5qgf4ai6v]  svg .--svg-stroke {
  stroke: #fff;
}
.footer-left .logo span[b-a5qgf4ai6v] {
  color: #fff;
}
.footer-left .brands[b-a5qgf4ai6v] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: flex-start;
  gap: 20px 5px;
  flex-wrap: wrap;
  max-width: 250px;
}
.footer-left .brands[b-a5qgf4ai6v]  li a {
  width: 30px;
}
.footer-left .brands[b-a5qgf4ai6v]  li a svg {
  width: 100%;
}
.footer-left .brands[b-a5qgf4ai6v]  li a svg .--svg-fill {
  fill: #fff;
  transition: all var(--duration);
}
.footer-left .brands[b-a5qgf4ai6v]  li a svg ._hidable {
  display: none;
}
.footer-left .brands[b-a5qgf4ai6v]  li a._ama:hover svg .--svg-fill {
  fill: var(--agency-accent-color);
}
.footer-left .brands[b-a5qgf4ai6v]  li a._amc:hover svg .--svg-fill {
  fill: var(--cloud-accent-color);
}
.footer-left .brands[b-a5qgf4ai6v]  li a._ame:hover svg .--svg-fill {
  fill: var(--express-accent-color);
}
.footer-left .brands[b-a5qgf4ai6v]  li a._ams:hover svg .--svg-fill {
  fill: var(--shield-accent-color);
}
.footer-left .brands[b-a5qgf4ai6v]  li a._csp:hover svg .--svg-fill {
  fill: var(--coconutsharp-accent-color);
}
.footer-left .brands[b-a5qgf4ai6v]  li a._mlc:hover svg .--svg-fill {
  fill: var(--meloncut-accent-color);
}
.footer-left .brands[b-a5qgf4ai6v]  li a._lzb:hover svg .--svg-fill {
  fill: var(--lazybanana-accent-color);
}
.footer-right[b-a5qgf4ai6v] {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-right .top[b-a5qgf4ai6v] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
.footer-right .top div[b-a5qgf4ai6v] {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-right .top div .title[b-a5qgf4ai6v] {
  color: #fff;
  font-weight: bold;
}
.footer-right .top div .region span[b-a5qgf4ai6v] {
  display: block;
  opacity: 0.6;
}
.footer-right .top div ul[b-a5qgf4ai6v] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-right .top div ul[b-a5qgf4ai6v]  li {
  padding-block: 5px;
}
.footer-right .top div ul[b-a5qgf4ai6v]  li a,
.footer-right .top div ul[b-a5qgf4ai6v]  li p {
  color: #fff;
  transition: all var(--duration);
  font-weight: 400;
}
.footer-right .top div ul[b-a5qgf4ai6v]  li a:hover,
.footer-right .top div ul[b-a5qgf4ai6v]  li p:hover {
  color: var(--primary-color);
}
.footer-right .botton[b-a5qgf4ai6v] {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer-right .botton .media[b-a5qgf4ai6v] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.footer-right .botton .media a[b-a5qgf4ai6v] {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration);
}
.footer-right .botton .media a:hover[b-a5qgf4ai6v]  svg .--svg-fill {
  fill: var(--primary-color);
}
.footer-right .botton .media a[b-a5qgf4ai6v]  svg {
  width: 100%;
  height: 100%;
}
.footer-right .botton .media a[b-a5qgf4ai6v]  svg .--svg-fill {
  fill: #fff;
  transition: fill var(--duration);
}
@media (min-width: 768px) {
  .footer article[b-a5qgf4ai6v] {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 60px;
  }
  .footer-left[b-a5qgf4ai6v] {
    gap: 20px;
  }
  .footer-left .logo[b-a5qgf4ai6v]  svg {
    max-width: 140px;
  }
  .footer-right[b-a5qgf4ai6v] {
    gap: 35px;
  }
  .footer-right .top[b-a5qgf4ai6v] {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .footer-right .top div[b-a5qgf4ai6v] {
    gap: 18px;
  }
  .footer-right .botton[b-a5qgf4ai6v] {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 25px;
  }
  .footer-right .botton .media[b-a5qgf4ai6v] {
    justify-content: flex-start;
    gap: 18px;
  }
  .footer-right .botton .media a[b-a5qgf4ai6v] {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 992px) {
  .footer article[b-a5qgf4ai6v] {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding-block: 80px;
  }
  .footer-left[b-a5qgf4ai6v] {
    gap: 25px;
  }
  .footer-left .logo[b-a5qgf4ai6v]  svg {
    max-width: 200px;
  }
  .footer-right[b-a5qgf4ai6v] {
    gap: 40px;
  }
  .footer-right .top[b-a5qgf4ai6v] {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .footer-right .top div[b-a5qgf4ai6v] {
    gap: 20px;
  }
  .footer-right .botton[b-a5qgf4ai6v] {
    padding-top: 30px;
  }
  .footer-right .botton .media[b-a5qgf4ai6v] {
    gap: 20px;
  }
  .footer-right .botton .media a[b-a5qgf4ai6v] {
    width: 30px;
    height: 30px;
  }
}
/* /Main/Layout/Header.razor.rz.scp.css */
.header[b-d8py5ux0xc] {
  background-color: transparent;
  position: fixed;
  z-index: 999;
  padding: 20px;
  padding-bottom: 0;
}
.header article[b-d8py5ux0xc] {
  background-color: transparent;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: var(--headerHeight);
  padding: 0 20px;
  transition: all var(--duration);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.header-logo[b-d8py5ux0xc] {
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.header-logo[b-d8py5ux0xc]  svg {
  height: 40%;
  width: 100%;
}
.header-logo[b-d8py5ux0xc]  .--svg-fill {
  fill: #fff;
}
.header-menu[b-d8py5ux0xc] {
  display: none;
  align-items: stretch;
  justify-content: center;
}
.header-menu:hover a[b-d8py5ux0xc],
.header-menu:has(:hover) a[b-d8py5ux0xc] {
  opacity: 0.6;
}
.header-menu a[b-d8py5ux0xc] {
  padding: 15px;
  transition: all var(--duration);
  color: #fff;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.header-menu a:hover:not(.active)[b-d8py5ux0xc] {
  opacity: 0.8 !important;
}
.header .buttons[b-d8py5ux0xc] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .buttons .--button[b-d8py5ux0xc] {
  display: none;
}
.header._scrolled[b-d8py5ux0xc] {
  padding-top: 10px;
}
.header._scrolled article[b-d8py5ux0xc] {
  background: #000;
  height: calc(var(--headerHeight) - 30px);
  border: none;
  max-width: 250px;
}
.header._scrolled .header-menu[b-d8py5ux0xc] {
  gap: 0;
}
.header._scrolled .header-menu a[b-d8py5ux0xc] {
  opacity: 0.6;
}
.header._scrolled .header-menu a.active[b-d8py5ux0xc] {
  opacity: 1;
}
.header._scrolled .buttons .--button[b-d8py5ux0xc] {
  opacity: 0.6;
}
.header._scrolled .buttons .--button:hover[b-d8py5ux0xc] {
  opacity: 1;
}
.burger-menu[b-d8py5ux0xc],
.close-menu[b-d8py5ux0xc] {
  width: 25px;
  height: 16px;
  cursor: pointer;
}
.burger-menu span[b-d8py5ux0xc],
.close-menu span[b-d8py5ux0xc] {
  background-color: #fff;
}
.burger-menu[b-d8py5ux0xc] {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger-menu span[b-d8py5ux0xc] {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all var(--duration);
  border-radius: 2px;
}
.close-menu[b-d8py5ux0xc] {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.close-menu span[b-d8py5ux0xc] {
  position: absolute;
  width: 100%;
  height: 2px;
  transition: all var(--duration);
  border-radius: 2px;
}
.close-menu span:first-child[b-d8py5ux0xc] {
  transform: rotate(45deg);
}
.close-menu span:last-child[b-d8py5ux0xc] {
  transform: rotate(-45deg);
}
.header._open article[b-d8py5ux0xc] {
  max-width: 100% !important;
  width: fit-content;
}
.header._open article .burger-menu[b-d8py5ux0xc] {
  opacity: 0;
  pointer-events: none;
}
.header._open article .close-menu[b-d8py5ux0xc] {
  display: flex;
}
.header._open .header-logo[b-d8py5ux0xc] {
  display: none;
}
.header._open .header-menu[b-d8py5ux0xc] {
  display: flex;
}
@media (min-width: 768px) {
  .burger-menu[b-d8py5ux0xc],
  .mobile-menu[b-d8py5ux0xc],
  .menu-overlay[b-d8py5ux0xc] {
    display: none;
  }
  .header-menu[b-d8py5ux0xc] {
    display: flex;
  }
  .header .buttons[b-d8py5ux0xc] {
    display: none;
  }
  .header._scrolled article[b-d8py5ux0xc] {
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .header-menu[b-d8py5ux0xc] {
    gap: 20px;
  }
}
