@import url('typography.css');

:root {
  --color-black: #202123;
  --color-dark-gray: #32373e;
  --color-gray: #697a90;
  --color-light-gray: #b4bcc7;
  --color-very-light-gray: #e7ebed;
  --color-white: #ffffff;
  --color-accent: #29B1ED;
  --color-primary: #00326D;
  --color-accent-purple: #18112B;
  --theme-light-background: #FAFAFA;
  --theme-light-text-on-background: #000000;
  --wm-theme-primary: var(--color-primary);
}

*:not(:defined) {
  display: none;
}

body[no-scroll] {
  overflow: hidden;
}

html {
  background-color: var(--theme-light-background);
}

body,
main {
  -webkit-font-smoothing: antialiased;
  background: var(--theme-light-background);
  color: var(--theme-light-text-on-background);
  margin: 0 auto;
  /* max-width: 1920px; */
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  height: 100%;
}

a {
  color: inherit;
}

a.link--underlined {
  text-decoration: underline;
}

.color--white {
  color: var(--color-white);
}

.color--primary {
  color: var(--color-primary);
}

.color--accent {
  color: var(--color-accent);
}

button {
  cursor: pointer;
}

.fullscreen-modal--open {
  overflow: hidden;
}

.btn-outlined {
  padding: 0.5rem 1rem;
  display: inline-block;
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 1.5rem;
  font-family: var(--font-family-sans);
  font-weight: 900;
  transition: 150ms ease-in;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outlined:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-filled {
  padding: 0.5rem 1rem;
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 900;
  transition: 150ms ease-in;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-filled:hover {
  opacity: 0.9;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

.btn--constrainted {
  width: fit-content;
}

.btn-outlined.overlay--primary {
  background-color: rgba(0, 50, 109, 0.6);
}

.btn-outlined--white {
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-outlined--white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-outlined--accent {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-outlined--accent:hover {
  background-color: var(--color-accent);
  color: var(--color-white);

}

.btn-filled--white {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn-filled--white:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  opacity: 0.8;
}

.btn-plain {
  display: inline-block;
  width: fit-content;
  padding: 0.5rem 0.75rem;
  background-color: #d3d3d3;
  border: none;
  border-radius: 0.5rem;
  color: #606060;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1rem;
}

.btn-plain:hover {
  text-decoration: underline;
}

.text-align-center {
  text-align: center;
}

/* Phone Links */


.phone-link {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin: 0;
}

.phone-link a {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-left: 0.5rem;
}

.phone-link a:hover+.material-icons {
  animation: shake 0.25s;
}

.phone-link .material-icons {
  font-size: 1.2em;
}


@keyframes shake {
  0% {
    transform: rotate(-1deg);
  }

  10% {
    transform: rotate(-2deg);
  }

  20% {
    transform: rotate(-4deg);
  }

  30% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(0deg);
  }

  60% {
    transform: rotate(-5deg);
  }

  70% {
    transform: rotate(0deg);
  }

  80% {
    transform: rotate(5deg);
  }

  90% {
    transform: rotate(2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@media only screen and (max-width: 768px) {
  .responsive__img-m {
    width: 100%;
  }

  .btn--mobile-small-text {
    font-size: 1rem;
  }
}

.responsive__img {
  width: 100%;
}

.responsive__picture {
  display: flex;
}

.responsive__picture.portrait {
  max-width: 50%;
  margin: 0 auto;
}

.responsive__picture img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .responsive__picture.portrait {
    max-width: 100%;
    margin: 0;
  }

}

.embed__container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed__container iframe,
.embed__container object,
.embed__container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.resp-video__container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.resp-video__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}