@font-face {
  font-family: 'Gotham Light';
  src: url('/fonts/Gotham-Light.eot');
  src: url('/fonts/Gotham-Light.eot?#iefix') format('embedded-opentype'),
      url('/fonts/Gotham-Light.woff2') format('woff2'),
      url('/fonts/Gotham-Light.woff') format('woff'),
      url('/fonts/Gotham-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Book';
  src: url('/fonts/Gotham-Book.eot');
  src: url('/fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
      url('/fonts/Gotham-Book.woff2') format('woff2'),
      url('/fonts/Gotham-Book.woff') format('woff'),
      url('/fonts/Gotham-Book.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Medium';
  src: url('/fonts/Gotham-Medium.eot');
  src: url('/fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
      url('/fonts/Gotham-Medium.woff2') format('woff2'),
      url('/fonts/Gotham-Medium.woff') format('woff'),
      url('/fonts/Gotham-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Bold';
  src: url('/fonts/Gotham-Bold.eot');
  src: url('/fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
      url('/fonts/Gotham-Bold.woff2') format('woff2'),
      url('/fonts/Gotham-Bold.woff') format('woff'),
      url('/fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

:root {
  --color-teal: #00BAB3;
  --color-black: #1C1D26;
  --color-grey: #606B79;
  --color-blue: #485DE6;
  --color-purple: #7D5CFF;
  --color-light-grey: #F8F9FA;
  --color-white: #FFFFFF;
}

body {
  font-family: "Gotham Book", sans-serif;
}

.text-bold {
  font-family: "Gotham Bold", sans-serif;
}

.text-medium {
  font-family: "Gotham Medium", sans-serif;
}

.text-primary {
  color: var(--color-teal) !important;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.h1, .h2 , .h3 , .h4, .h5, .h6, h1, h2 , h3 , h4, h5, h6 {
  font-family: "Gotham Light", sans-serif;
}

.btn-primary {
  background-color: var(--color-black);
  border-color: var(--color-black);
  border-radius: 50rem;
  color: var(--bs-white);
  font-family: "Gotham Medium", sans-serif;
  font-size: .85rem;
  line-height: 1.25rem;
  letter-spacing: .2px;
  padding: .75rem 1.5rem;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: var(--color-teal);
  border-color: var(--color-teal);
}

.bg-primary {
  background-color: var(--color-teal) !important;
}

.bg-secondary {
  background-color: var(--color-blue) !important;
}

.header {
  background-color: var(--color-white);
  padding: .5rem 0;
}

.fixed-top {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 8%);
  top: -40px;
  transform: translateY(40px);
  -webkit-transition: transform .3s ease-in-out;
  -moz-transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
}

.nav-link {
  display: flex;
  align-items: center;
  color: var(--color-black);
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--color-teal);
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle svg {
  width: 1.25rem;
  height: auto;
  margin-left: .25rem;
}

.dropdown-menu {
  background-color: var(--color-black);
  border: none;
  border-radius: 0;
}

.dropdown-item {
  color: var(--color-white);
  min-width: 240px;
  padding: .5rem 1rem;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.dropdown-item:hover {
  background-color: transparent;
  color: var(--color-teal);
}

.navbar-toggler {
  border: none;
  background: none;
  height: 2.5rem;
  padding: 0 .25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 50rem;
  background-color: var(--color-black);
}

.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 6px
}

.navbar-toggler.active .icon-bar+.icon-bar {
  margin-top: 5px
}

.navbar-toggler .icon-bar {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}

.navbar-toggler.active .icon-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg)
}

.navbar-toggler.active .icon-bar:nth-child(2) {
  opacity: 0
}

.navbar-toggler.active .icon-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg)
}

@media screen and (max-width: 992px) {
  .navbar-collapse {
    position: absolute;
    top: 4rem;
    left: 0;
    background-color: #303a44;
    padding: 1.5rem;
    width: 100%;
    z-index: 100;
  }
  .nav-link {
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: var(--color-white);
    justify-content: space-between;
  }
  .nav-link:focus, .nav-link:hover {
    color: var(--color-teal);
  }
  .dropdown-menu {
    background-color: inherit;
    padding: 0;
  }
  .dropdown-item {
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: .5rem .75rem;
  }
  .dropdown-toggle svg {
    transform: rotate(-90deg);
  }
  .dropdown-toggle.show svg {
    transform: rotate(0deg);
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 30rem;
  padding: 6rem 0;
}

@media screen and (max-width: 992px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 0;
  }
}

.hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 992px) {
  .hero-img {
    width: 40vw;
  }
}

@media screen and (max-width: 992px) {
  .hero-img {
    position: static;
    width: 100%;
    height: 40vh;
  }
}

.hero-img:before {
  content: "";
  display: block;
  background: url(../img/svg/mask.svg) 0 0 no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 0;
}

@media screen and (max-width: 992px) {
  .hero-img:before {
    display: none;
  }
}

.hero-img img {
  object-fit: cover;
  width: 100%;
}

.section {
  width: 100%;
  padding: 6rem 0;
}

.blockquote p {
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.blockquote:before {
  content: "";
  display: block;
  position: absolute;
  top: .75rem;
  left: 1rem;
  width: 140px;
  height: 140px;
  background-image: url(../img/svg/quote-mark.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.testimonial-logo {
  max-width: 120px;
  height: fit-content;
} 

.share-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: 0;
  padding: 0;
}

.share-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.share-links a svg {
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}

.share-links a:nth-child(1) {
  fill: #1877F2;
  border-color: #b7d4fb;
}

.share-links a:nth-child(1):hover {
  background: #1877F2;
}

.share-links a:nth-child(2) {
  fill: #46C1F6;
  border-color: #b6e7fc;
}

.share-links a:nth-child(2):hover {
  background: #46C1F6;
}

.share-links a:nth-child(3) {
  fill: #0A66C2;
  border-color: #bed9f4;
}

.share-links a:nth-child(3):hover {
  background: #0A66C2;
}

.share-links a:nth-child(4) {
  fill: #e1306c;
  border-color: #f5bccf;
}

.share-links a:nth-child(4):hover {
  background: #e1306c;
}

.share-links a:hover {
  fill: var(--color-white);
  border-color: transparent;
}

.share-links a:hover svg {
  transform: scale(1.2);
}

.clipboard {
  position: relative;
}

.tooltip {
  display: none;
  color: var(--bs-tooltip-color);
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-border-radius);
  position: absolute;
  top: -12px;
  text-align: center;
  min-width: 100px;
}

.tooltip:after {
  content: "";
  position: absolute;
  top: 98%;
  left: 50%;
  margin-left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #000;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.tooltip.show {
  display: block;
  -webkit-animation: slide-up 0.15s cubic-bezier(.51, .92, 0.265, 1.55) both;
  animation: slide-up 0.15s cubic-bezier(.51, .92, 0.265, 1.55) both;
}

.form-control {
  font-size: .85rem;
  line-height: 1.25rem;
  padding: 0.5rem 0.75rem;
}

.footer .nav-link {
  color: inherit;
  font-size: .75rem;
  margin-bottom: 1rem;
}

.footer .nav-link:hover {
  color: var(--color-teal);
}

.social-link {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--color-grey);
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.social-link:hover {
  fill: var(--color-black);
}

.sticky-xl-top {
  top: 12%;
}

.img-box {
  position: relative;
  margin: auto;
  overflow: hidden;
}

.img-box img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  transform: scale(1);
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.img-box:hover img {
  transform: scale(1.1);
}

.legal-text {
  font-size: .75rem;
}

@keyframes slide-up {
  0% {
    -webkit-transform: translateY(0) scale(.8);
    transform: translateY(0) scale(.8);
    opacity: 0;         
  }
  100% {
    -webkit-transform: translateY(-35px) scale(1);
    transform: translateY(-35px) scale(1);
    opacity: 1;
  }
}