:root {
  --font-family: 'Roboto Condensed', sans-serif;
  --color-white: #fff;
  --color-pink: #693380;
  --color-girl: #AF3E7E;
  --color-gray: #3D3D3D;
  --color-gray-dark: #2D2D2D;
  --color-orange: #D45A2B;
  --color-red: #E35C70;
  --color-warm-yellow: #FFC058;
  --color-yellow: #f1d968;
  --color-heading-on-black-bg: #f6f2f8;
  --color-text-on-black-bg: #cec5d2;
}



/* General Normilize */
input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

button {
  cursor: pointer;
}



/* General */
html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-gray);
  box-sizing: border-box;
  height: 100vh;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  font-size: 1em;
}

@media (min-width: 825px) {
  html {
    font-size: 17px;
  }
}

@media (max-width: 1023px) {
  html.st--nav-open {
    overflow: hidden;
  }
}

@media (min-width: 1250px) {
  html {
    font-size: 18px;
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 19px;
  }
}



/* Typogrphy */
h1, .h1, h2, .h2,
h3, .h3, h4, .h4,
h5, .h5 {
  font-family: var(--font-family);
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-pink);
}

h1, .h1 {
  font-size: 2.3rem;
}
h2, .h2 {
  font-size: 1.95rem;
}
h3, .h3 {
  font-size: 1.75rem;
}
h4, .h4 {
  font-size: 1.5rem;
}
h5, .h5 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.image {
  display: block;
  width: 100%;
}

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color .2s ease-in-out;
}
a:hover {
  color: var(--color-red);
}

@media (min-width: 825px) {
  h1, .h1 {
    font-size: 3.75rem;
  }
  h2, .h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1250px) {
  h1, .h1 {
    font-size: 5rem;
    line-height: 1.1;
  }
  h2, .h2 {
    font-size: 3rem;
    line-height: 1.1;
  }
  h3, .h3 {
    font-size: 2.25rem;
  }
  h4, .h4 {
    font-size: 1.75rem;
  }
  h5, .h5 {
    font-size: 1.4rem;
  }
}



/* Components */
.section {
  padding-top: 30px;
  padding-bottom: 30px;
}
.container {
  padding-left: 12px;
  padding-right: 12px;
  max-width: 1304px;
  margin-left: auto;
  margin-right: auto;
}

.main {
  padding-top: 74px;
}

@media (min-width: 440px) {
  .section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .container {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1328px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section.section--calendly {
    padding-bottom: 10px;
  }
  .main {
    padding-top: 100px;
  }
}

@media (min-width: 1250px) {
  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .main {
    padding-top: 118px;
  }
}

@media (min-width: 1600px) {
  .main {
    padding-top: 138px;
  }
}



/* Custom Sections */
.section-triangle {
  background: linear-gradient(0deg, rgba(241,217,104,1) 0%, rgba(241,217,104,1) 74%, rgba(255,255,255,1) 76%, rgba(255,255,255,1) 100%);
}
.section-triangle__inner {
  background-image: url('/assets/images/bgs/bg-triangle.webp');
  background-repeat: repeat-x;
  background-position: center top;
  padding-top: 80px;
  padding-bottom: 30px;
  background-size: auto;
}

@media (min-width: 440px) {
  .section-triangle__inner {
    padding-top: 100px;
    padding-bottom: 45px;
  }
}

@media (min-width: 825px) {
  .section-triangle__inner {
    padding-top: 125px;
  }
}

@media (min-width: 1024px) {
  .section-triangle__inner {
    padding-bottom: 60px;
  }
}

@media (min-width: 1250px) {
  .section-triangle__inner {
    padding-top: 150px;
    padding-bottom: 75px;
  }
}


/* Section Footer */
.section-footer {
  text-align: center;
  margin-top: 28px;
}

@media (min-width: 825px) {
  .section-footer {
    margin-top: 36px;
  }
}

@media (min-width: 1250px) {
  .section-footer {
    margin-top: 48px;
  }
}


/* Lists */
.inline-list__item {
  margin-bottom: 4px;
}
.inline-list__item:last-child {
  margin-bottom: 0;
}

.social-list {
  display: inline-flex;
}
.social-list__item {
  margin-right: 12px;
}
.social-list__item:last-child {
  margin-right: 0;
}

.simple-list li {
  margin-bottom: 4px;
}

@media (min-width: 440px) {
  .inline-list {
    display: inline-flex;
  }
  .inline-list__item {
    margin-right: 22px;
    margin-bottom: 0;
  }
  .inline-list__item:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1250px) {
  .inline-list__item {
    margin-right: 26px;
  }
}

@media (min-width: 1600px) {
  .inline-list__item {
    margin-right: 32px;
  }
}


/* Text */
.text-box {
  padding-left: 12px;
  padding-right: 12px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.text-box > * {
  margin-bottom: 14px;
}
.text-box > *:last-child {
  margin-bottom: 0;
}
.text-box--header {
  margin-bottom: 28px;
}
.text-center {
  text-align: center;
}
.text-big {
  font-size: 1.17em;
}
.text-small {
  font-size: 0.87em;
  line-height: 1.4;
}
.card-title {
  margin-bottom: 10px;
}

@media (min-width: 440px) {
  .text-box {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 825px) {
  .text-box {
    max-width: 700px;
  }
  .text-box > * {
    margin-bottom: 18px;
  }
  .text-box--header {
    margin-bottom: 36px;
  }
  .card-title {
    margin-bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .card-title {
    margin-bottom: 14px;
  }
}

@media (min-width: 1250px) {
  .text-box {
    max-width: 820px;
  }
  .text-box > * {
    margin-bottom: 24px;
  }
  .text-box--header {
    margin-bottom: 48px;
  }
}


/* Button */
.button {
  display: inline-block;
  padding: 5px 15px;
  border: 2px solid var(--color-text-on-black-bg);
  border-radius: 23px;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: 0.9em;
  transition: all .2s ease;
}
.button:hover {
  background-color: var(--color-red);
  color: var(--color-white);
}
.button--big {
  font-size: 1.1em;
  padding: 11px 30px;
  border-radius: 30px;
}


/* Link With Icon */
.link-with-icon {
  display: flex;
  align-items: center;
  transition: color .3s ease-in-out;
}
.link-with-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--color-text-on-black-bg);
  margin-right: 7px;
  margin-top: -1px;
}

@media (min-width: 1024px) {
  .link-with-icon svg {
    width: 17px;
    height: 17px;
    margin-right: 8px;
  }
}

@media (min-width: 1250px) {
  .link-with-icon svg {
    width: 18px;
    height: 18px;
    margin-right: 9px;
  }
}



/* Link Title */
.link-title {
  display: block;
}
.link-title h1,
.link-title h2,
.link-title h3,
.link-title h4,
.link-title h5 {
  color: var(--color-pink);
  transition: color .2s ease;
}
.link-title:hover h1,
.link-title:hover h2,
.link-title:hover h3,
.link-title:hover h4,
.link-title:hover h5 {
  color: var(--color-red);
}



/* Icon Button */
.icon-button {
  padding: 4px 14px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--color-pink);
  border: 1px solid var(--color-pink);
  transition: all .2s ease;
}
.icon-button:hover {
  color: var(--color-pink);
}
.icon-button svg {
  width: 18px;
  height: 18px;
  fill: var(--color-pink);
  margin-right: 12px;
}


/* Social Button */
.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--color-text-on-black-bg);
  background-color: var(--color-orange);
  border-radius: 50%;
  transition: all .2s ease-in-out;
}
.social-button:hover {
  background-color: var(--color-red);
}
.social-button svg {
  width: 18px;
  height: 18px;
  fill: var(--color-heading-on-black-bg);
  transition: fill .2s ease-in-out;
}
.social-button:hover svg {
  fill: var(--color-white);
}


/* Header */
.header-observer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 138px;
  z-index: -1;
}
.header {
  background-color: var(--color-white);
  padding-top: 12px;
  padding-bottom: 12px;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  transition: all .33s ease-in-out;
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
.header__item {
  display: flex;
  align-items: center;
}
.header .social-button {
  border-color: var(--color-text-on-black-bg);
}

@media (min-width: 1024px) {
  .header__item:last-child {
    display: none;
  }
  .header .inline-list__item {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1250px) {
  .header {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (min-width: 1600px) {
  .header {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}



/* Logo */
.logo {
  position: relative;
  z-index: 12;
  display: block;
  width: 100px;
  height: 50px;
  background-color: var(--color-primary);
  opacity: .8;
  transition: opacity .2s ease-in-out;
}
.logo svg {
  width: 100px;
  height: 50px;
}
.logo:hover {
  opacity: 1;
}
.logo.active {
  opacity: 1;
  pointer-events: none;
  cursor: default;
}
.logo__tm {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 8px;
  color: var(--color-gray);
}
.logo__desc {
  position: absolute;
  bottom: -13px;
  left: 4px;
  width: 100%;
  font-size: 9px;
  color: var(--color-gray);
}

@media (min-width: 1024px) {
  .logo {
    width: 150px;
    height: 75px;
  }
  .logo svg {
    width: 150px;
    height: 75px;
  }
  .logo__tm {
    font-size: 10px;
    right: 17px;
  }
  .logo__desc {
    font-size: 11px;
    bottom: -18px;
    left: 17px;
  }
}

@media (min-width: 1600px) {
  .logo {
    width: 180px;
    height: 90px;
  }
  .logo svg {
    width: 180px;
    height: 90px;
  }
  .logo__tm {
    font-size: 11px;
  }
  .logo__desc {
    bottom: -21px;
    left: 21px;
    font-size: 13px;
  }
}



/* Navigation */
.nav {
  position: fixed;
  z-index: 11;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 74px;
  background: #f5f5f5;
  transition: top .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.st--nav-open .nav {
  top: 0;
}
.nav .inline-list {
  order: 2;
}
.nav-list {
  order: 1;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 45px;
}
.nav-list__item {
  margin-bottom: 10px;
}
.nav-link {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: .5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease-in-out;
}
.nav-link.active {
  pointer-events: none;
  cursor: default;
  color: #693380;
  font-weight: 600;
}

@media (max-width: 1023px) {
  .nav .inline-list__item:first-child .social-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav .inline-list__item:first-child {
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .nav {
    padding-top: 0;
    position: static;
    align-items: flex-end;
    background: transparent;
  }
  .nav .inline-list__item:first-child .social-list {
    display: inline-flex;
  }
  .nav .link-icon {
    font-size: .9em;
  }
  .nav .inline-list {
    order: 1;
    margin-bottom: 12px;
  }
  .nav__item:first-child {
    margin-right: 20px;
  }
  .nav-list {
    order: 2;
    display: flex;
    margin-bottom: 0;
  }
  .nav-list__item {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .nav-list__item:last-child {
    margin-right: 0;
  }
  .nav-link {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 500;
  }
  .nav-link:hover,
  .nav-link.active {
    color: #693380;
  }
  .st--header-sticky .nav-link {
    text-shadow: none;
  }
}

@media (min-width: 1250px) {
  .nav .inline-list {
    margin-bottom: 16px;
  }
  .nav__item:first-child {
    margin-right: 40px;
  }
  .nav-list__item {
    margin-right: 24px;
  }
  .nav-link {
    font-size: 17px;
  }
}

@media (min-width: 1600px) {
  .nav .inline-list {
    margin-bottom: 18px;
  }
  .nav__item:first-child {
    margin-right: 55px;
  }
  .nav-list__item {
    margin-right: 32px;
  }
  .nav-link {
    font-size: 18px;
  }
}



/* Burger */
.menu-button {
  position: relative;
  z-index: 11;
  padding: 0;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.burger {
  height: 15px;
  transition: 0.5s ease;
}
.burger__bar {
  display: block;
  width: 20px;
  height: 3px;
  background: #333;
  transition: 0.4s ease;
}
.burger__bar:not(:first-child) {
  margin-top: 3px;
}
.st--nav-open .burger {
  transform: translate(0%,-62%) rotatey(180deg);
}
.st--nav-open .burger__bar {
  transform: rotatey(180deg) rotatex(360deg);
}
.st--nav-open .burger__bar:nth-child(1) {
  transform: rotate(-45deg);
  margin-top: 15px;
}
.st--nav-open .burger__bar:nth-child(2) {
  opacity: 0;
}
.st--nav-open .burger__bar:nth-child(3) {
  margin-top: -9px;
  transform: rotate(45deg);
}

@media (min-width: 1024px) {
  .menu-button {
    display: none;
  }
}



/* Intro, Intro slider */
.intro__inner {
  position: relative;
}
.intro__inner img {
  display: none;
  width: 100%;
}
.intro__inner picture {
  display: none;
}
.intro__banner {
  width: 100%;
  background-color: rgba(67, 0, 100, 0.6);
  padding: 20px 20px;
  text-align: center;
}
.intro__title {
  color: var(--color-white);
}
.intro .tns-outer {
  display: none;
}
.intro .tns-outer > button {
  display: none;
}
.intro .tns-controls button {
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  background-image: url(../images/icons/icon-arrow-next.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-indent: -99999px;
}
.intro .tns-controls button:nth-child(1) {
  left: 8px;
  transform: rotate(180deg);
}
.intro .tns-controls button:nth-child(2) {
  right: 8px;
}
.intro-slider img {
  display: block;
  width: 100%;
}

@media (min-width: 825px) {
  .intro__banner {
    position: absolute;
    z-index: 1;
    left: 7.5%;
    height: 100%;
    width: 39%;
    text-align: left;
    padding: 20px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .intro__inner img {
    display: block;
    width: 100%;
  }
  .intro__inner {
    aspect-ratio: 21/9;
  }
  .intro__inner picture {
    display: block;
  }
  .intro__title {
    font-size: 36px;
  }
  .intro .tns-controls button {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .intro .tns-outer {
    display: block;
  }
}

@media (min-width: 1024px) {
  .intro__banner {
    width: 33%;
    padding: 20px 45px;
  }
  .intro__title {
    font-size: 42px;
  }
  .intro .tns-controls button {
    width: 56px;
    height: 56px;
    margin-top: -28px;
  }
}


/* Page Intro */
.page-intro {
  padding-top: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-intro__title {
  display: inline-block;
  padding: 3px 12px;
  background-color: var(--color-pink);
  color: var(--color-white);
}
.page-intro__title--small {
  font-size: 32px;
}

.page-intro--phone-booking {
  background-image: url('/assets/images/page-intros/intro-phone-booking-440.webp');
}
.page-intro--inhome-booking {
  background-image: url('/assets/images/page-intros/intro-inhome-booking-440.webp');
}
.page-intro--about {
  background-image: url('/assets/images/page-intros/intro-about-440.webp');
}
.page-intro--contact {
  background-image: url('/assets/images/page-intros/intro-contact-440.webp');
}
.page-intro--services {
  background-image: url('/assets/images/page-intros/intro-services-440.webp');
}
.page-intro--insurance {
  background-image: url('/assets/images/page-intros/intro-insurance-440.webp');
}
.page-intro--service-areas {
  background-image: url('/assets/images/page-intros/intro-service-areas-440.webp');
}
.page-intro--financing {
  background-image: url('/assets/images/page-intros/intro-financing-440.webp');
}

@media (min-width: 440px) {
  .page-intro {
    padding-top: 150px;
  }
  .page-intro--phone-booking {
    background-image: url('/assets/images/page-intros/intro-phone-booking-600.webp');
  }
  .page-intro--inhome-booking {
    background-image: url('/assets/images/page-intros/intro-inhome-booking-600.webp');
  }
  .page-intro--about {
    background-image: url('/assets/images/page-intros/intro-about-600.webp');
  }
  .page-intro--contact {
    background-image: url('/assets/images/page-intros/intro-contact-600.webp');
  }
  .page-intro--services {
    background-image: url('/assets/images/page-intros/intro-services-600.webp');
  }
  .page-intro--insurance {
    background-image: url('/assets/images/page-intros/intro-insurance-600.webp');
  }
  .page-intro--service-areas {
    background-image: url('/assets/images/page-intros/intro-service-areas-600.webp');
  }
  .page-intro--financing {
    background-image: url('/assets/images/page-intros/intro-financing-600.webp');
  }
}

@media (min-width: 600px) {
  .page-intro--phone-booking {
    background-image: url('/assets/images/page-intros/intro-phone-booking-825.webp');
  }
  .page-intro--inhome-booking {
    background-image: url('/assets/images/page-intros/intro-inhome-booking-825.webp');
  }
  .page-intro--about {
    background-image: url('/assets/images/page-intros/intro-about-825.webp');
  }
  .page-intro--contact {
    background-image: url('/assets/images/page-intros/intro-contact-825.webp');
  }
  .page-intro--services {
    background-image: url('/assets/images/page-intros/intro-services-825.webp');
  }
  .page-intro--insurance {
    background-image: url('/assets/images/page-intros/intro-insurance-825.webp');
  }
  .page-intro--service-areas {
    background-image: url('/assets/images/page-intros/intro-service-areas-825.webp');
  }
  .page-intro--financing {
    background-image: url('/assets/images/page-intros/intro-financing-825.webp');
  }
}

@media (min-width: 825px) {
  .page-intro--phone-booking {
    background-image: url('/assets/images/page-intros/intro-phone-booking-1024.webp');
  }
  .page-intro--inhome-booking {
    background-image: url('/assets/images/page-intros/intro-inhome-booking-1024.webp');
  }
  .page-intro--about {
    background-image: url('/assets/images/page-intros/intro-about-1024.webp');
  }
  .page-intro--contact {
    background-image: url('/assets/images/page-intros/intro-contact-1024.webp');
  }
  .page-intro--services {
    background-image: url('/assets/images/page-intros/intro-services-1024.webp');
  }
  .page-intro--insurance {
    background-image: url('/assets/images/page-intros/intro-insurance-1024.webp');
  }
  .page-intro--service-areas {
    background-image: url('/assets/images/page-intros/intro-service-areas-1024.webp');
  }
  .page-intro--financing {
    background-image: url('/assets/images/page-intros/intro-financing-1024.webp');
  }
  .page-intro__title--small {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .page-intro {
    padding-top: 180px;
  }
  .page-intro--phone-booking {
    background-image: url('/assets/images/page-intros/intro-phone-booking-1250.webp');
  }
  .page-intro--inhome-booking {
    background-image: url('/assets/images/page-intros/intro-inhome-booking-1250.webp');
  }
  .page-intro--about {
    background-image: url('/assets/images/page-intros/intro-about-1250.webp');
  }
  .page-intro--contact {
    background-image: url('/assets/images/page-intros/intro-contact-1250.webp');
  }
  .page-intro--services {
    background-image: url('/assets/images/page-intros/intro-services-1250.webp');
  }
  .page-intro--insurance {
    background-image: url('/assets/images/page-intros/intro-insurance-1250.webp');
  }
  .page-intro--service-areas {
    background-image: url('/assets/images/page-intros/intro-service-areas-1250.webp');
  }
  .page-intro--financing {
    background-image: url('/assets/images/page-intros/intro-financing-1250.webp');
  }
  .page-intro__title--small {
    font-size: 56px;
  }
}

@media (min-width: 1250px) {
  .page-intro {
    padding-top: 220px;
  }
  .page-intro--phone-booking {
    background-image: url('/assets/images/page-intros/intro-phone-booking-2000.webp');
  }
  .page-intro--inhome-booking {
    background-image: url('/assets/images/page-intros/intro-inhome-booking-2000.webp');
  }
  .page-intro--about {
    background-image: url('/assets/images/page-intros/intro-about-2000.webp');
  }
  .page-intro--contact {
    background-image: url('/assets/images/page-intros/intro-contact-2000.webp');
  }
  .page-intro--services {
    background-image: url('/assets/images/page-intros/intro-services-2000.webp');
  }
  .page-intro--insurance {
    background-image: url('/assets/images/page-intros/intro-insurance-2000.webp');
  }
  .page-intro--service-areas {
    background-image: url('/assets/images/page-intros/intro-service-areas-2000.webp');
  }
  .page-intro--financing {
    background-image: url('/assets/images/page-intros/intro-financing-2000.webp');
  }
  .page-intro__title--small {
    font-size: 64px;
  }
}

@media (min-width: 1600px) {
  .page-intro {
    padding-top: 300px;
  }
}


/* Testimonials, Testimonials Slider */
.testimonials {
  position: relative;
}
.testimonials .tns-outer > button {
  display: none;
}
.testimonials .tns-controls button {
  position: absolute;
  z-index: 1;
  top: 77%;
  margin-top: -16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  background-image: url(../images/icons/icon-arrow-next-black.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-indent: -99999px;
}
.testimonials .tns-controls button:nth-child(1) {
  left: 8px;
  transform: rotate(180deg);
}
.testimonials .tns-controls button:nth-child(2) {
  right: 8px;
}
.testimonial-card {
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
}
.testimonial-card__main {
  margin-bottom: 14px;
}
.testimonial-card__author {
  font-size: 0.87em;
  font-weight: 700;
}

@media (min-width: 440px) {
  .testimonial-card {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 825px) {
  .testimonial-card {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-card__main {
    margin-bottom: 18px;
  }
}

@media (min-width: 1024px) {
  .testimonials .tns-controls button {
    top: 50%;
  }
  .testimonials .tns-controls button:nth-child(1) {
    left: 6%;
  }
  .testimonials .tns-controls button:nth-child(2) {
    right: 6%;
  }
}

@media (min-width: 1250px) {
  .testimonial-card {
    max-width: 820px;
  }
  .testimonial-card__main {
    margin-bottom: 24px;
  }
}

/* Grid Serv */
.grid-serv {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
}
.grid-serv__item p {
  margin-bottom: 10px;
}
.grid-serv__item p:last-child {
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .grid-serv {
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
  }
  .grid-serv__item p {
    margin-bottom: 12px;
  }
}

@media (min-width: 825px) {
  .grid-serv {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid-serv {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1250px) {
  .grid-serv--text h2 {
    font-size: 2.25rem;
  }
  .grid-serv__item p {
    margin-bottom: 14px;
  }
}


/* Card Service */
.card-service {
  display: block;
  background-color: var(--color-pink);
  transition: all .2s ease;
}
.card-service:hover .button {
  background-color: var(--color-red);
}
.card-service img {
  display: block;
  width: 100%;
}
.card-service__main {
  padding: 24px 12px;
  text-align: center;
}
.card-service__title {
  color: #f6f2f8;
  margin-bottom: 10px;
}
.card-service__p {
  color: #cec5d2;
  line-height: 1.4;
}
.card-service__footer {
  padding: 0 12px 24px;
  text-align: center;
}

@media (min-width: 440px) {
  .card-service__main {
    padding: 36px 24px;
  }
  .card-service__footer {
    padding: 0 24px 36px;
  }
}

@media (min-width: 600px) {
  .card-service {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .card-service__main {
    flex: 1;
  }
}

@media (min-width: 825px) {
  .card-service__title {
    margin-bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .card-service:hover {
    transform: scale(1.05);
  }
  .card-service__title {
    margin-bottom: 14px;
  }
}


/* grid-classic-two-column */
.grid-classic-two-column__item {
  margin-bottom: 14px;
}
.grid-classic-two-column__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .grid-classic-two-column__item {
    margin-bottom: 18px;
  }
}

@media (min-width: 825px) {
  .grid-classic-two-column {
    display: flex;
    justify-content: space-between;
  }
  .grid-classic-two-column__item {
    width: 47.5%;
    margin-bottom: 0;
  }
}


/* Solution Card */
.solution-card {
  display: block;
  background-color: var(--color-yellow);
}
.solution-card img {
  display: block;
  width: 100%;
}
.solution-card__main {
  padding: 24px 12px;
  text-align: center;
}
.solution-card__title {
  color: var(--color-pink);
  margin-bottom: 10px;
}
.solution-card__p {
  color: var(--color-gray);
  line-height: 1.4;
  margin-bottom: 10px;
}
.solution-card__list {
  text-align: left;
  max-width: 450px;
}
.solution-card__list li {
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
}
.solution-card__list li:last-child {
  margin-bottom: 0;
}
.solution-card__list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--color-pink);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 2px;
}
.solution-card__footer {
  padding: 0 12px 24px;
  text-align: center;
}

@media (min-width: 440px) {
  .solution-card__main {
    padding: 36px 24px;
  }
  .solution-card__footer {
    padding: 0 24px 36px;
  }
}

@media (min-width: 825px) {
  .solution-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .solution-card__main {
    flex: 1;
  }
  .solution-card__title,
  .solution-card__p {
    margin-bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .solution-card__title,
  .solution-card__p {
    margin-bottom: 14px;
  }
  .solution-card__list li::before {
    top: 7px;
  }
}

@media (min-width: 1250px) {
  .solution-card__list li::before {
    top: 8px;
  }
}



/* Footer */
.footer {
  background-color: var(--color-gray-dark);
  color: var(--color-text-on-black-bg);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  padding-right: 12px;
}
.footer__item {
  margin-bottom: 28px;
}
.footer__item:first-child {
  order: 1;
  margin-bottom: 0;
}
.footer__item:last-child {
  margin-bottom: 28px;
}
.footer__title {
  color: var(--color-heading-on-black-bg);
  margin-bottom: 10px;
}
.footer__logo {
  margin-bottom: 10px;
}
.footer .simple-list {
  margin-top: 10px;
}

@media (min-width: 440px) {
  .footer__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 600px) {
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer__item {
    width: 47.5%;
  }
  .footer__item:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 825px) {
  .footer__title,
  .footer__logo {
    margin-bottom: 12px;
  }
  .footer .simple-list {
    margin-top: 12px;
  }
}

@media (min-width: 1024px) {
  .footer__item {
    margin-bottom: 0;
  }
  .footer__item:nth-child(1) {
    width: 21%;
    order: 0;
  }
  .footer__item:nth-child(2) {
    width: 15%;
  }
  .footer__item:nth-child(3) {
    width: 28.5%;
  }
  .footer__item:nth-child(4) {
    width: 28.5%;
  }
  .footer__title,
  .footer__logo {
    margin-bottom: 14px;
  }
  .footer .simple-list {
    margin-top: 14px;
  }
}

/* Service area inner pages css */
.service-area-block {
    display: flex;
    align-items: self-end;
    flex-wrap: wrap;
    justify-content: space-between;
}
.area-title {
    width: 60%;
}
.area-form {
    width: 40%;
}
.area-form .intro__banner {
    position: relative;
    width: 100%;
}
/* end service area inner pages css */

/* Contact Form CF */
.contact-form-wrapper {
  padding: 24px 12px;
  background-color: var(--color-yellow);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form-wrapper h2 {
  margin-bottom: 10px;
}
.cf {
  text-align: left;
  width: 100%;
}
.cf__label {
  display: block;
  color: var(--color-white)
}
.cf__input {
  padding: 10px;
  border: 2px solid var(--color-text-on-black-bg);
  width: 100%;
  transition: all 0.2s ease;
}
.cf__input--textarea {
  display: block;
  min-width: 100%;
  max-width: 100%;
  height: 180px;
  max-height: 180px;
  min-height: 180px;
}
.cf__input:focus {
  border-color: var(--color-orange);
}
.cf__row {
  margin-bottom: 6px;
}
.cf__row--message {
  margin-bottom: 12px;
}
.cf__row--buttons {
  display: flex;
  justify-content: space-between;
}
.cf__row--buttons button {
  width: 48%;
}
.cf__alert {
  font-size: 0.87em;
  color: var(--color-orange);
}
.cf__info {
  display: none;
  font-size: 1.37em;
}
.cf--sent .cf__info {
  display: block;
}
.cf--sent .cf__row-list {
  display: none;
}


@media (min-width: 440px) {
  .contact-form-wrapper {
    padding: 36px 24px;
  }
  .cf__input {
    padding: 11px;
  }
}

@media (min-width: 825px) {
  .contact-form-wrapper {
    max-width: 700px;
  }
  .contact-form-wrapper h2 {
    margin-bottom: 12px;
  }
  .cf__input {
    padding: 12px;
  }
  .cf__input--textarea {
    height: 80px;
    max-height: 80px;
    min-height: 80px;
  }
  .cf__row {
    margin-bottom: 8px;
  }
}

@media (min-width: 1024px) {
  .contact-form-wrapper h2 {
    margin-bottom: 14px;
  }
}

@media (min-width: 1150px) {
  .cf__input--textarea {
    height: 150px;
    max-height: 150px;
    min-height: 150px;
  }
}

@media (min-width: 1250px) {
  .contact-form-wrapper {
    max-width: 820px;
  }
  .cf__input {
    padding: 13px;
  }
  .cf__row {
    margin-bottom: 10px;
  }
}

/* Calendly Widget */
.calendly-inline-widget,
  .calendly-inline-widget *,
  .calendly-badge-widget,
  .calendly-badge-widget *,
  .calendly-overlay,
  .calendly-overlay * {
    font-size: 16px;
    line-height: 1.2em;
  }
.calendly-inline-widget iframe, .calendly-badge-widget iframe, .calendly-overlay iframe {
    /*
    Values other than `display: inline` cause a scrolling bug on iOS where the underlying page
    scrolls instead of the iframe
    */
    display: inline;
    width: 100%;
    height: 100%;
  }
.calendly-popup-content {
  /* Any updates in this section should be updated for inline mode */
  position: relative;
}
.calendly-popup-content.calendly-mobile {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }
.calendly-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 9999;
  background-color: #a5a5a5;
  background-color: rgba(31, 31, 31, .4);
}
.calendly-overlay .calendly-close-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
.calendly-overlay .calendly-popup {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 80%;
    min-width: 900px;
    max-width: 1000px;
    height: 90%;
    max-height: 680px;
  }
@media (max-width: 975px) {
.calendly-overlay .calendly-popup {
      position: fixed;
      top: 50px;
      left: 0;
      right: 0;
      bottom: 0;
      transform: none;
      width: 100%;
      height: auto;
      min-width: 0;
      max-height: none
  }
    }
.calendly-overlay .calendly-popup .calendly-popup-content {
      height: 100%;
    }
.calendly-overlay .calendly-popup-close {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #fff;
    width: 19px;
    height: 19px;
    cursor: pointer;
    background: url(../../assets/external/close-icon.svg) no-repeat;
    background-size: contain;
  }
@media (max-width: 975px) {
.calendly-overlay .calendly-popup-close {
      top: 15px;
      right: 15px
  }
    }
.calendly-badge-widget {
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 9998;
}
.calendly-badge-widget .calendly-badge-content {
    display: table-cell;
    width: auto;
    height: 45px;
    padding: 0 30px;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px;
    font-family: sans-serif;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
  }
.calendly-badge-widget .calendly-badge-content.calendly-white {
      color: #666a73;
    }
.calendly-badge-widget .calendly-badge-content span {
      display: block;
      font-size: 12px;
    }
.calendly-spinner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  z-index: -1;
}
.calendly-spinner > div {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #e1e1e1;
    border-radius: 50%;
    vertical-align: middle;
    animation: calendly-bouncedelay 1.4s infinite ease-in-out;
    animation-fill-mode: both;
  }
.calendly-spinner .calendly-bounce1 {
    animation-delay: -0.32s;
  }
.calendly-spinner .calendly-bounce2 {
    animation-delay: -0.16s;
  }
@keyframes calendly-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0.0);
  }
  40% {
    transform: scale(1.0);
  }
};



/* Calendly Widget, Calendly Toggler */
.calendly-widget-toggler {
  display: flex;
}
.calendly-widget-toggler__item {
  width: 50%;
  text-align: center;
}
.calendly-widget-toggler__item:first-child {
  border-right: 1px solid #e4e4e4;
}
.calendly-widget-link {
  display: block;
  padding: 20px;
  transition: all .2s easy;
  background-color: #fff;
}
.calendly-widget-toggler__item:first-child .calendly-widget-link {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.calendly-widget-toggler__item:last-child .calendly-widget-link {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.calendly-widget-link {
  color: #515151;
}
.calendly-widget-link:hover {
  color: #ff8a5f;
}
.calendly-widget-link.active {
  color: #ff8a5f;
  font-weight: bold;
  background-color: #fff9f7;
}
.calendly-widget {
	height: 860px;
}

@media (min-width: 825px) {
  /* .calendly-widget-toggler {
    margin-top: -110px;
  } */
}

@media (min-width: 1000px) {
	.calendly-widget {
		height: 860px;
	}
}

@media (min-width: 1024px) {
  /* .calendly-widget-toggler {
    margin-top: -124px;
  } */
}

@media (min-width: 1153px) {
  /* .calendly-widget-toggler {
    margin-top: -124px;
  } */
}



/* Service Area Section */
.map__image {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.map__image iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
.map__card-wrapper {
  padding: 30px 0;
  background-color: var(--color-white);
}
.map__card {
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 440px) {
  .map__card-wrapper {
    padding: 45px 0;
  }
  .map__card {
    padding-left: 24px;
    padding-right: 24px;
  }
  .map__card ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .map__card li {
    width: 40%;
  }
}

@media (min-width: 825px) {
  .map__card-wrapper {
    padding: 60px 0;
  }
  .map__image {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .map {
    position: relative;
  }
  .map__card-wrapper {
    padding: 0;
    background: none;
  }
  .map__card {
    position: absolute;
    z-index: 1;
    left: 12%;
    top: 50%;
    transform: translateY(-50%);
    width: 28%;
    background-color: var(--color-white);
    padding: 60px 40px;
  }
  .map__card li {
    width: 100%;
  }
}

@media (min-width: 1300px) {
  .map__card {
    width: 35%;
    padding: 60px;
  }
  .map__card.map__card--big {
    width: 48%;
  }
  .map__card li {
    width: 40%;
  }
}

@media (min-width: 1600px) {
  .map__card.map__card--big {
    width: 35%;
  }
}














/* Fix Horizontal scroll */
body,
html {
  max-width: 100%;
  overflow-x: hidden;
}




/* UG Card */
.ug-card img {
  display: block;
  width: 100%;
}
.ug-card h1,
.ug-card h2 {
  margin-bottom: 14px;
}
.ug-card__item:first-child {
  margin-bottom: 28px;
}

@media (min-width: 600px) {
  .ug-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ug-card__item {
    margin-bottom: 0;
    width: 48%;
  }
  .ug-card__item:first-child {
    order: 2;
  }
  .ug-card__item:last-child {
    order: 1;
  }
}

@media (min-width: 825px) {
  .ug-card h1,
  .ug-card h2 {
    margin-bottom: 18px;
  }
}

@media (min-width: 1250px) {
  .ug-card {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
  }
  .ug-card h1,
  .ug-card h2 {
    margin-bottom: 24px;
  }
}

@media (min-width: 1600px) {
  .ug-card {
    width: 80%;
  }
}




/* Yel List */
.yel-list li {
  padding-left: 17px;
  position: relative;
  margin-bottom: 7px;
}
.yel-list li:last-child {
  margin-bottom: 0;
}
.yel-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 2px;
  background-color: var(--color-pink);
}

@media (min-width: 825px) {
  .yel-list li {
    padding-left: 19px;
  }
  .yel-list li::before {
    top: 10px;
  }
}

@media (min-width: 1300px) {
  .yel-list li {
    padding-left: 26px;
  }
  .yel-list li::before {
    top: 12px;
    width: 15px;
  }
}


@media only screen and (max-width:767px) {
    .service-area-block {
	display:block;
    }
    .area-title {
        width: 100%;
    }
    .area-form {
        width: 100%;
    }
}




/* List */
.list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}

.list .list {
  margin-top: 5px;
}

.list li:last-child {
  margin-bottom: 0;
}

.list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  width: 11px;
  height: 2px;
  background-color: var(--color-pink);
}

@media (min-width: 1300px) {
  .list li {
    padding-left: 30px;
  }
  .list li::before {
    width: 16px;
  }
}


/* G Banner */
.g-banner {
  background-color: var(--color-pink);
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

.g-banner a {
  margin-top: 16px;
}

@media (min-width: 825px) {
  .g-banner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .g-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .g-banner a {
    margin-top: 0;
  }
}

@media (min-width: 1250px) {
  .g-banner__inner {
    max-width: 750px;
  }
}

/* Colors */
.c-white {
  color: #fff;
}




/* Modal */
html.modal-active,
body.modal-active {
  overflow: hidden;
}

#modal-container {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  z-index: 5;
}

.st--nav-open #modal-container {
  z-index: 1;
}

#modal-container h4 {
  margin-bottom: 22px;
}
#modal-container span {
  color: var(--color-orange);
}

#modal-container.one {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.one .modal-background .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.one.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.one.out .modal-background .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.two {
  transform: scale(1);
}

#modal-container.two .modal-background {
  background: rgba(0, 0, 0, .0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.two .modal-background .modal {
  opacity: 0;
  animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.two+.content {
  animation: scaleBack 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.two.out {
  animation: quickScaleDown 0s 0.5s linear forwards;
}

#modal-container.two.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.two.out .modal-background .modal {
  animation: scaleDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.two.out+.content {
  animation: scaleForward 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.three {
  z-index: 0;
  transform: scale(1);
}

#modal-container.three .modal-background {
  background: rgba(0, 0, 0, .6);
}

#modal-container.three .modal-background .modal {
  animation: moveUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.three+.content {
  z-index: 1;
  animation: slideUpLarge 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.three.out .modal-background .modal {
  animation: moveDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.three.out+.content {
  animation: slideDownLarge 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.four {
  z-index: 0;
  transform: scale(1);
}

#modal-container.four .modal-background {
  background: rgba(0, 0, 0, .7);
}

#modal-container.four .modal-background .modal {
  animation: blowUpModal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.four+.content {
  z-index: 1;
  animation: blowUpContent 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.four.out .modal-background .modal {
  animation: blowUpModalTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.four.out+.content {
  animation: blowUpContentTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.five {
  transform: scale(1);
}

#modal-container.five .modal-background {
  background: rgba(0, 0, 0, .0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.five .modal-background .modal {
  transform: translateX(-1500px);
  animation: roadRunnerIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.five.out {
  animation: quickScaleDown 0s 0.5s linear forwards;
}

#modal-container.five.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.five.out .modal-background .modal {
  animation: roadRunnerOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six {
  transform: scale(1);
}

#modal-container.six .modal-background {
  background: rgba(0, 0, 0, .0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six .modal-background .modal {
  background-color: transparent;
  animation: modalFadeIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six .modal-background .modal h2,
#modal-container.six .modal-background .modal p {
  opacity: 0;
  position: relative;
  animation: modalContentFadeIn 0.5s 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six .modal-background .modal .modal-svg rect {
  animation: sketchIn 0.5s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out {
  animation: quickScaleDown 0s 0.5s linear forwards;
}

#modal-container.six.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modal {
  animation: modalFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modal h2,
#modal-container.six.out .modal-background .modal p {
  animation: modalContentFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modal .modal-svg rect {
  animation: sketchOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.seven {
  transform: scale(1);
}

#modal-container.seven .modal-background {
  background: rgba(0, 0, 0, .0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.seven .modal-background .modal {
  height: 75px;
  width: 75px;
  border-radius: 75px;
  overflow: hidden;
  animation: bondJamesBond 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.seven .modal-background .modal h2,
#modal-container.seven .modal-background .modal p {
  opacity: 0;
  position: relative;
  animation: modalContentFadeIn 0.5s 1.4s linear forwards;
}

#modal-container.seven.out {
  animation: slowFade 0.5s 1.5s linear forwards;
}

#modal-container.seven.out .modal-background {
  background-color: rgba(0, 0, 0, .7);
  animation: fadeToRed 2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.seven.out .modal-background .modal {
  border-radius: 3px;
  height: 162px;
  width: 227px;
  animation: killShot 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.seven.out .modal-background .modal h2,
#modal-container.seven.out .modal-background .modal p {
  animation: modalContentFadeOut 0.5s 0.5 cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container .modal-background {
  display: table-cell;
  background: rgba(0, 0, 0, .8);
  text-align: center;
  vertical-align: middle;
}

#modal-container .modal {
  padding: 50px 20px;
  display: inline-block;
  position: relative;
  min-width: 320px;
  max-width: 700px;
  width: 100%;
}

#modal-container .modal-inner {
  background: var(--color-white);
  padding: 37px 20px;
  position: relative;
  border: 4px solid var(--color-text-on-black-bg);
}

#modal-container .modal-close {
  width: 34px;
  height: 34px;
  position: absolute;
  top: -17px;
  right: -17px;
  border-radius: 50%;
  background-color: var(--color-gray);
  border: 2px solid var(--color-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  padding: 0;
  margin: 0;
  transition: all .2s ease-in-out;
}

#modal-container .modal-close svg {
  fill: var(--color-white);
  width: 22px;
  height: 22px;
  transition: all .2s ease-in-out;
}

#modal-container .modal-close:hover {
  background-color: var(--color-gray-dark);
  border-color: var(--color-gray-dark);
}

#modal-container .modal-close:hover svg {
  fill: var(--color-white);
}

@media (min-width: 825px) {
  #modal-container .modal-inner {
    padding: 90px 60px;
  }
}

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, .0);
  }

  100% {
    background: rgba(0, 0, 0, .7);
  }
}

@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, .7);
  }

  100% {
    background: rgba(0, 0, 0, .0);
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}

@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }

  100% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}

@keyframes scaleBack {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.85);
  }
}

@keyframes scaleForward {
  0% {
    transform: scale(0.85);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes quickScaleDown {
  0% {
    transform: scale(1);
  }

  99.9% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes slideUpLarge {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes slideDownLarge {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes moveUp {
  0% {
    transform: translateY(150px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes moveDown {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(150px);
  }
}

@keyframes blowUpContent {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  99.9% {
    transform: scale(2);
    opacity: 0;
  }

  100% {
    transform: scale(0);
  }
}

@keyframes blowUpContentTwo {
  0% {
    transform: scale(2);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blowUpModal {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes blowUpModalTwo {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes roadRunnerIn {
  0% {
    transform: translateX(-1500px) skewX(30deg) scaleX(1.3);
  }

  70% {
    transform: translateX(30px) skewX(0deg) scaleX(0.9);
  }

  100% {
    transform: translateX(0px) skewX(0deg) scaleX(1);
  }
}

@keyframes roadRunnerOut {
  0% {
    transform: translateX(0px) skewX(0deg) scaleX(1);
  }

  30% {
    transform: translateX(-30px) skewX(-5deg) scaleX(0.9);
  }

  100% {
    transform: translateX(1500px) skewX(30deg) scaleX(1.3);
  }
}

@keyframes sketchIn {
  0% {
    stroke-dashoffset: 778;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes sketchOut {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 778;
  }
}

@keyframes modalFadeIn {
  0% {
    background-color: transparent;
  }

  100% {
    background-color: white;
  }
}

@keyframes modalFadeOut {
  0% {
    background-color: white;
  }

  100% {
    background-color: transparent;
  }
}

@keyframes modalContentFadeIn {
  0% {
    opacity: 0;
    top: -20px;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

@keyframes modalContentFadeOut {
  0% {
    opacity: 1;
    top: 0px;
  }

  100% {
    opacity: 0;
    top: -20px;
  }
}

@keyframes bondJamesBond {
  0% {
    transform: translateX(1000px);
  }

  80% {
    transform: translateX(0px);
    border-radius: 75px;
    height: 75px;
    width: 75px;
  }

  90% {
    border-radius: 3px;
    height: 182px;
    width: 247px;
  }

  100% {
    border-radius: 3px;
    height: 162px;
    width: 227px;
  }
}

@keyframes killShot {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(300px) rotate(45deg);
    opacity: 0;
  }
}

@keyframes fadeToRed {
  0% {
    background-color: rgba(0, 0, 0, .6);
  }

  100% {
    background-color: rgba(255, 0, 0, .8);
  }
}

@keyframes slowFade {
  0% {
    opacity: 1;
  }

  99.9% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

.mb--d {
  margin-bottom: 20px;
}
.d--n {
  display: none;
}
.fw--700,
.fw--700 strong,
.fw--700 b {
  font-weight: 700;
}

.ghl-wrapper {
  max-width: 800px;
  margin: 0 auto;
}





/* Margins
========================================================================== */

.mi_a {
  margin-inline: auto;
}

.mt_sec {
  margin-top: 2em;
}
.mb_sec {
  margin-bottom: 2em;
}

.mt_en {
  margin-top: .25em;
}
.mb_en {
  margin-bottom: .25em;
}

.mt_n {
  margin-top: .5em;
}
.mb_n {
  margin-bottom: .5em;
}

.mt_es {
  margin-top: .75em;
}
.mb_es {
  margin-bottom: .75em;
}

.mt_s {
  margin-top: 1em;
}
.mb_s {
  margin-bottom: 1em;
}

.mt_d {
  margin-top: 1.25em;
}
.mb_d {
  margin-bottom: 1.25em;
}

.mt_b {
  margin-top: 1.5em;
}
.mb_b {
  margin-bottom: 1.5em;
}

.mt_eb {
  margin-top: 1.75em;
}
.mb_eb {
  margin-bottom: 1.75em;
}

.mt_h {
  margin-top: 2em;
}
.mb_h {
  margin-bottom: 2em;
}

.mt_eh {
  margin-top: 2.5em;
}
.mb_eh {
  margin-bottom: 2.5em;
}

.mt_g {
  margin-top: 3em;
}
.mb_g {
  margin-bottom: 3em;
}

.mt_eg {
  margin-top: 3.5em;
}
.mb_eg {
  margin-bottom: 3.5em;
}

@media (min-width: 768px) {
  .mt_sec {
    margin-top: 3em;
  }
  .mb_sec {
    margin-bottom: 3em;
  }
}

@media (min-width: 1280px) {
  .mt_sec {
    margin-top: 3.5em;
  }
  .mb_sec {
    margin-bottom: 3.5em;
  }
}

@media (min-width: 1600px) {
  .mt_sec {
    margin-top: 4.5em;
  }
  .mb_sec {
    margin-bottom: 4.5em;
  }

  .mt_en {
    margin-top: .5em;
  }
  .mb_en {
    margin-bottom: .5em;
  }
  
  .mt_n {
    margin-top: .75em;
  }
  .mb_n {
    margin-bottom: .75em;
  }
  
  .mt_es {
    margin-top: 1em;
  }
  .mb_es {
    margin-bottom: 1em;
  }
  
  .mt_s {
    margin-top: 1.25em;
  }
  .mb_s {
    margin-bottom: 1.25em;
  }
  
  .mt_d {
    margin-top: 1.5em;
  }
  .mb_d {
    margin-bottom: 1.5em;
  }
  
  .mt_b {
    margin-top: 1.75em;
  }
  .mb_b {
    margin-bottom: 1.75em;
  }
  
  .mt_eb {
    margin-top: 2.5em;
  }
  .mb_eb {
    margin-bottom: 2.5em;
  }
  
  .mt_h {
    margin-top: 3em;
  }
  .mb_h {
    margin-bottom: 3em;
  }
  
  .mt_eh {
    margin-top: 3.5em;
  }
  .mb_eh {
    margin-bottom: 3.5em;
  }
  
  .mt_g {
    margin-top: 4em;
  }
  .mb_g {
    margin-bottom: 4em;
  }
  
  .mt_eg {
    margin-top: 4.5em;
  }
  .mb_eg {
    margin-bottom: 4.5em;
  }
}

@media (min-width: 2300px) {
  .mt_sec {
    margin-top: 5em;
  }
  .mb_sec {
    margin-bottom: 5em;
  }
}