/* =========================================================
   Contact
========================================================= */

body .rt-top .rt-contact {
  position: relative !important;
  z-index: 2 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

body .rt-top .rt-contact-panel {
  z-index: 5 !important;
  min-height: clamp(300px, 21vw, 405px) !important;
  margin: 0 !important;
  padding: 0 clamp(82px, 6.6vw, 132px) !important;
  display: grid !important;
  grid-template-columns: max-content max-content !important;
  column-gap: clamp(72px, 7vw, 120px) !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  width: 100% !important;
  max-width: none !important;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #ffffff !important;
  color: #333333 !important;
  transition: color 0.32s ease !important;
}

body .rt-top .rt-contact-panel::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: linear-gradient(90deg, var(--rt-blue) 0%, var(--rt-sky) 100%) !important;
  transform: translateX(-115%) skewX(-12deg) !important;
  transform-origin: left center !important;
  transition: transform 0.66s cubic-bezier(0.76, 0, 0.24, 1) !important;
}

body .rt-top .rt-contact-panel:hover::before,
body .rt-top .rt-contact-panel:focus-visible::before {
  transform: translateX(0) skewX(0deg) !important;
}

body .rt-top .rt-contact-panel__head,
body .rt-top .rt-contact-panel__arrow {
  position: relative !important;
  z-index: 1 !important;
}

body .rt-top .rt-contact-panel__head {
  width: max-content !important;
  justify-self: end !important;
  align-self: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
}

body .rt-top .rt-contact-panel__head p {
  margin: 0 0 clamp(10px, 0.9vw, 18px) !important;
  color: currentColor !important;
  font-size: clamp(14px, 0.95vw, 18px) !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}

body .rt-top .rt-contact-panel__head strong {
  display: block !important;
  color: currentColor !important;
  font-size: clamp(36px, 2.9vw, 54px) !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
}

body .rt-top .rt-contact-panel__arrow {
  width: clamp(64px, 5vw, 86px) !important;
  height: clamp(64px, 5vw, 86px) !important;
  display: block !important;
  justify-self: start !important;
  align-self: center !important;
  border: 1px solid currentColor !important;
  border-radius: 50% !important;
  color: currentColor !important;
  transition: transform 0.35s ease, border-color 0.35s ease, color 0.35s ease !important;
}

body .rt-top .rt-contact-panel__arrow::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 12px !important;
  height: 12px !important;
  border-top: 2px solid currentColor !important;
  border-right: 2px solid currentColor !important;
  transform: translate(-62%, -50%) rotate(45deg) !important;
}

body .rt-top .rt-contact-panel:hover,
body .rt-top .rt-contact-panel:focus-visible {
  color: #ffffff !important;
}

body .rt-top .rt-contact-panel:hover .rt-contact-panel__arrow,
body .rt-top .rt-contact-panel:focus-visible .rt-contact-panel__arrow {
  transform: translateX(6px) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

@media (max-width: 960px) {
  body .rt-top .rt-contact-panel {
    min-height: 240px !important;
    grid-template-columns: max-content max-content !important;
    column-gap: 48px !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 42px !important;
  }
}

@media (max-width: 640px) {
  body .rt-top .rt-contact-panel {
    min-height: 240px !important;
    grid-template-columns: max-content max-content !important;
    column-gap: 48px !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 42px !important;
  }

  body .rt-top .rt-contact-panel__head {
    width: max-content !important;
    justify-self: end !important;
  }

  body .rt-top .rt-contact-panel__head p {
    margin-bottom: 10px !important;
    font-size: 13px !important;
  }

  body .rt-top .rt-contact-panel__head strong {
    font-size: clamp(34px, 10vw, 44px) !important;
    letter-spacing: 0.12em !important;
  }

  body .rt-top .rt-contact-panel__arrow {
    width: 54px !important;
    height: 54px !important;
  }
}