:root {
  --paragraphs: #475874;
  --heading: #0a2046;
  --blue: #27b1d9;
  --green: #15be7d;
  --background: #eaf9fa;
  --white: white;
  --shadow: #0a20464d;
  --light-gradient-1: #eaf9fa;
  --dark-border: #11365f;
  --light-border: #d9f3f5;
  --border: #caebed;
  --white-paragraphs: #9da5b5;
  --dark-gradient-1: #132f5f;
  --dark-gradient-2: #2d4d86;
  --light-gradient-2: #a3ebf0;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--paragraphs);
  font-family: Nunito, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8em;
}

h1 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 35px;
  font-family: DM Serif Display, sans-serif;
  font-size: 71px;
  font-weight: 400;
  line-height: 1.05em;
}

h2 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-family: Droid Serif, serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15em;
}

h3 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Droid Sans, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15em;
}

h4 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Droid Sans, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
}

h5 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 15px;
  font-family: DM Serif Display, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2em;
}

h6 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45em;
}

p {
  text-align: justify;
  margin-top: 0;
  margin-bottom: 39px;
  padding-top: 8px;
  padding-bottom: 8px;
}

a {
  color: var(--blue);
  text-decoration: underline;
  transition: color .3s cubic-bezier(.215, .61, .355, 1);
}

a:hover {
  color: var(--green);
}

ul, ol {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 35px;
  padding-left: 35px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5em;
}

li {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 8px;
}

strong {
  color: var(--heading);
  font-weight: 700;
}

blockquote {
  background-color: var(--background);
  color: var(--heading);
  border-left: 5px #e2e2e2;
  border-radius: 5px;
  margin-bottom: 35px;
  padding: 23px 35px;
  font-family: DM Serif Display, sans-serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.4em;
}

figure {
  border-radius: 5px;
  margin-bottom: 35px;
  overflow: hidden;
}

figcaption {
  background-color: var(--background);
  color: var(--heading);
  text-align: center;
  margin-top: 5px;
  padding: 12px;
  font-size: 16px;
  line-height: 1.2em;
}

.navbar {
  z-index: 100;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 26px;
  padding-right: 26px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.block-navbar {
  z-index: 100;
  background-color: var(--white);
  width: 100%;
  max-width: 1416px;
  box-shadow: 0 20px 30px -30px var(--shadow);
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  display: flex;
  position: relative;
}

.white-fill-navbar {
  background-color: var(--white);
  width: 0%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.brand {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px;
  display: flex;
}

.menu {
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link {
  color: #000;
  padding: 13px 22px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2em;
  text-decoration: none;
}

.nav-link:hover {
  color: #0ebfb1;
}

.nav-link.w--current {
  color: #e5322c;
}

.nav-link.w--current:hover {
  color: #ee8025;
}

.nav-button {
  color: var(--white);
  text-align: center;
  background-color: #fc4131;
  border-radius: 7px;
  margin-left: 10px;
  padding: 16px 30px 13px;
  font-family: Nunito, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2em;
  text-decoration: none;
  transition: background-color .3s cubic-bezier(.215, .61, .355, 1);
}

.nav-button:hover {
  color: var(--white);
  background-color: #14ce91;
}

.nav-button.topb {
  border-radius: 7px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.dropdown-toggle {
  color: var(--heading);
  padding: 13px 37px 13px 22px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2em;
}

.icon-dropdown {
  margin-right: 20px;
  font-size: 12px;
}

.dropdown-list {
  background-color: var(--white);
  box-shadow: 0 20px 30px -30px var(--shadow);
  border-radius: 5px;
  margin-bottom: 10px;
  margin-left: -10px;
  padding: 10px;
  overflow: hidden;
}

.dropdown-list.w--open {
  transform-origin: 50% 0;
}

.dropdown-link {
  color: var(--heading);
  padding: 10px 22px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2em;
}

.dropdown-link:hover {
  color: var(--green);
}

.dropdown-link.w--current {
  color: var(--heading);
}

.dropdown-link.w--current:hover {
  color: var(--green);
}

.section-hero {
  background-color: #ee2c25;
  background-image: url('../images/home-banner-plus.png'), url('../images/home-banner-dollar_1home-banner-dollar.png'), url('../images/home-banner-plus.png'), linear-gradient(to right, #fff0 80%, #ffa434c2 80%);
  background-position: 77% 0, 87% 64%, 50%, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  background-size: auto, auto, auto, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 26px 60px;
  display: flex;
  position: relative;
  overflow: visible;
}

.section-hero.alternative {
  padding-top: 155px;
  padding-bottom: 0;
  overflow: visible;
}

.section-hero.overflow {
  background-color: #004fa8;
  overflow: visible;
}

.section-hero.overflow.serv {
  padding-bottom: 90px;
}

.section-hero.overflow.contact {
  background-color: #1474df;
  background-image: url('../images/home-banner-plus.png'), url('../images/home-banner-dollar_1home-banner-dollar.png'), url('../images/home-banner-plus.png');
  background-position: 77% 0, 87% 64%, 50%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto;
  padding-top: 161px;
}

.section-hero.overflow.c2 {
  background-image: url('../images/home-banner-plus.png'), url('../images/home-banner-dollar_1home-banner-dollar.png');
  background-position: 77% 0, 87% 64%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
}

.section-hero.gradient {
  background-image: linear-gradient(to top, var(--white), #5ac5dd);
  overflow: visible;
}

.section-hero.gradient._100vh {
  min-height: 100vh;
}

.section-hero.gradient.cus {
  background-color: #ee2c2500;
  background-image: linear-gradient(to top, var(--white), #278ddccf), linear-gradient(to bottom, transparent, transparent), linear-gradient(to bottom, transparent, transparent), linear-gradient(to bottom, transparent, transparent);
  padding-top: 39px;
  padding-bottom: 109px;
}

.section-hero.cover {
  background-image: linear-gradient(#54119b80, #54119b80), url('../images/home-banner-plus.png'), url('../images/home-banner-dollar_1home-banner-dollar.png'), url('../images/home-banner-plus.png'), linear-gradient(to right, #fff0 80%, #ffa434c2 80%);
  background-position: 0 0, 77% 0, 87% 64%, 50%, 0 0;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, repeat;
  background-size: auto, auto, auto, auto, auto;
}

.section-hero.homryop {
  background-color: #eb4e51;
  background-image: url('../images/background.jpg'), url('../images/home-banner-plus.png'), url('../images/home-banner-dollar_1home-banner-dollar.png'), url('../images/home-banner-plus.png'), linear-gradient(to right, #fff0 80%, #ffa434c2 80%);
  background-position: 0 0, 77% 0, 87% 64%, 50%, 0 0;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, repeat;
  background-size: cover, auto, auto, auto, auto;
  height: 100vh;
  overflow: hidden;
}

.content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1416px;
  margin-top: 28px;
  margin-bottom: 60px;
  display: flex;
  position: relative;
}

.content.small {
  margin-top: 24px;
  margin-bottom: 24px;
}

.content.zero {
  margin-top: 0;
  margin-bottom: 0;
}

.content.zero.notready {
  display: none;
}

.content.full {
  max-width: none;
}

.content.single-page {
  margin-top: -90px;
}

.content.hc {
  flex-direction: row;
  align-items: flex-start;
  margin-top: 46px;
  margin-bottom: 46px;
}

.content.c2 {
  margin-top: 0;
}

.hero-title {
  margin-bottom: 20px;
  font-size: 88px;
}

.hero-title.small {
  color: #000;
  font-family: Droid Sans, sans-serif;
  font-size: 46px;
  font-weight: 700;
}

.hero-title.small.bar {
  color: #fff;
  font-size: 33px;
  font-weight: 700;
}

.hero-title.small.a1 {
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 20px #00000047;
  font-family: Montserrat, sans-serif;
  font-size: 50px;
  font-weight: 600;
}

.hero-title.small.consulta {
  color: #fff;
}

.block-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.paragraph-large {
  color: #3d3d3d;
  max-width: none;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6em;
}

.paragraph-large.max-w {
  max-width: 730px;
}

.button {
  color: var(--white);
  text-align: center;
  background-color: #e5322c;
  border-radius: 7px;
  padding: 19px 44px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.215, .61, .355, 1);
}

.button:hover {
  color: var(--white);
  background-color: #ee8025;
}

.button.green {
  background-color: #fc4131;
  border-radius: 7px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 0 15px #4dedff;
}

.button.green:hover {
  background-color: #15cf8c;
}

.img-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-style {
  border: 2px solid var(--white);
  background-color: var(--white);
  width: 100%;
  height: 100%;
  box-shadow: 0 20px 70px -10px var(--shadow);
  object-fit: cover;
  border-radius: 5px;
}

.text-hero {
  z-index: 20;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.text-hero.left {
  text-align: left;
  background-color: #ffffffc2;
  border-radius: 10px;
  align-items: flex-start;
  padding: 39px 30px 29px;
}

.img-hero-1-3 {
  width: 320px;
  height: 380px;
  position: absolute;
  right: -693px;
}

.img-hero-1-5 {
  width: 320px;
  height: 380px;
  position: absolute;
  top: -413px;
  left: -44px;
}

.img-hero-1-7 {
  width: 320px;
  height: 380px;
  position: absolute;
  bottom: -225px;
  left: -347px;
}

.img-hero-1-4 {
  width: 320px;
  height: 380px;
  position: absolute;
  top: -187px;
  left: -499px;
}

.img-hero-1-6 {
  width: 320px;
  height: 380px;
  position: absolute;
  bottom: -3px;
  left: -766px;
}

.img-hero-1-2 {
  width: 320px;
  height: 380px;
  position: absolute;
  top: -135px;
  right: -489px;
}

.img-hero-1-1 {
  width: 320px;
  height: 380px;
  position: absolute;
  bottom: -258px;
  right: -307px;
}

.section-icons {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 26px;
  padding-right: 26px;
  display: flex;
}

.grid-5-columns {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  width: 100%;
  display: grid;
}

.link-icon-service {
  background-color: var(--white);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 34px 20px 20px;
  text-decoration: none;
  transition: background-color .3s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.link-icon-service:hover {
  background-color: var(--background);
}

.link-icon-service.dark {
  background-color: var(--heading);
}

.link-icon-service.dark:hover {
  background-color: var(--dark-border);
}

.icon-service {
  object-fit: contain;
  width: 34px;
  height: 34px;
  margin-bottom: 17px;
  margin-left: 7px;
  margin-right: 7px;
}

.heading-service-small {
  max-width: 130px;
}

.heading-service-small.white {
  color: var(--white);
}

.section-background {
  background-color: #fdffff;
  border-top: 5px solid #e5322c;
  border-bottom: 5px solid #dbdbdb;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 26px;
  display: flex;
}

.grid-2-columns {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
}

.image-style-grid {
  border: 2px solid var(--white);
  background-color: var(--white);
  width: 100%;
  height: 100%;
  min-height: 600px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  object-fit: cover;
  border-radius: 20px;
}

.block-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 12%;
  display: flex;
}

.title {
  color: #3a3a3a;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 42px;
}

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

.title.redtitle {
  color: #e5322c;
}

.subtitle {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em;
}

.subtitle.green {
  color: #1b1b1b;
  text-transform: uppercase;
  padding-top: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  font-weight: 800;
  position: static;
}

.section-white {
  background-color: var(--white);
  background-image: linear-gradient(#ffffffc4, #ffffffc4), url('../images/bg.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 26px;
  display: flex;
}

.section-white.icos {
  background-image: linear-gradient(101deg, #ffffff59, #ffffffa3 62%, #fff6), linear-gradient(#ffffffd1, #ffffffd1), url('../images/bg.jpg');
  background-position: 0 0, 0 0, 0 0;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, cover;
  border-top: 1px #b3b3b3;
  border-radius: 5px;
  padding-top: 120px;
  padding-bottom: 56px;
}

.section-white.bgcool {
  background-image: linear-gradient(to top, #0000001a, #0000 9%), linear-gradient(#ffffff78, #ffffff78), url('../images/double-bubble-outline.png');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, contain;
  padding-top: 30px;
  padding-bottom: 0;
}

.section-white.contacto {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
}

.block-center {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 80%;
  padding-bottom: 44px;
  display: flex;
  position: relative;
}

.block-center.large {
  max-width: 1300px;
}

.block-center.topb {
  background-color: #fff0;
  border-radius: 20px;
  max-width: 920px;
  padding-top: 22px;
  padding-bottom: 22px;
  box-shadow: 0 0 20px 12px #ffffff85;
}

.grid-3-columns {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 50px;
}

.grid-3-columns.margin {
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.grid-3-columns.hidem1 {
  display: none;
}

.link-service {
  width: 100%;
  text-decoration: none;
}

.image-style-service {
  border: 2px solid var(--white);
  background-color: var(--white);
  width: 100%;
  height: 260px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  object-fit: cover;
  border-radius: 5px;
  transition: filter .3s cubic-bezier(.215, .61, .355, 1);
  transform: perspective(1000px);
}

.image-style-service:hover {
  filter: brightness(108%);
}

.heading-service-cms {
  color: var(--heading);
  margin-top: 36px;
  margin-bottom: 20px;
  padding-left: 16px;
  padding-right: 16px;
  font-family: DM Serif Display, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .3s cubic-bezier(.215, .61, .355, 1);
}

.heading-service-cms:hover {
  color: var(--green);
}

.collection-list-wrapper-service {
  align-items: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 25px;
}

.collection-list-wrapper-service.zero {
  margin-top: 0;
  margin-bottom: 0;
}

.collection-list-service {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.collection-list-service.small {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.paragraph-service-cms {
  margin-bottom: 28px;
  padding-left: 28px;
  padding-right: 28px;
}

.collection-item-service {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.empty-state {
  border: 2px solid var(--light-border);
  background-color: var(--white);
  text-align: center;
  border-radius: 5px;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
}

.text-empty {
  color: var(--heading);
  font-weight: 600;
  line-height: 1.2em;
}

.grid-full {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}

.block-full {
  background-color: #ebebeb;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 15%;
  display: flex;
}

.block-full.dark {
  background-color: var(--heading);
}

.block-full-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 620px;
  display: flex;
}

.paragraph-white {
  color: #b8b8b8;
}

.paragraph-white.pwd {
  color: #bebebe;
  margin-bottom: 0;
  padding-left: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
}

.single-form {
  grid-column-gap: 10px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.text-field {
  border: 1px solid var(--border);
  background-color: var(--white);
  height: 58px;
  color: var(--heading);
  border-radius: 100px;
  margin-bottom: 0;
  padding: 20px 25px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.215, .61, .355, 1);
}

.text-field:focus {
  border-color: var(--white-paragraphs);
}

.text-field::placeholder {
  color: var(--white-paragraphs);
}

.submit-button {
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
  border-radius: 100px;
  padding: 19px 44px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.215, .61, .355, 1);
}

.submit-button:hover {
  background-color: var(--green);
  color: var(--white);
}

.submit-button.green {
  background-color: #e5322c;
}

.submit-button.green:hover {
  background-color: #d15641;
}

.single-form-block {
  max-width: 510px;
}

.success-message {
  border: 2px solid var(--light-border);
  background-color: var(--white);
  border-radius: 5px;
}

.text-success {
  color: var(--heading);
  font-weight: 600;
  line-height: 1.2em;
}

.error-message {
  border: 2px solid var(--dark-border);
  background-color: var(--heading);
  text-align: center;
  border-radius: 5px;
  margin-top: 12px;
}

.text-error {
  color: var(--white);
  font-weight: 600;
  line-height: 1.2em;
}

.testimonial {
  background-color: var(--background);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  padding-bottom: 45px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.avatar {
  border: 2px solid var(--white);
  width: 78px;
  height: 78px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  border-radius: 100px;
  margin-top: -40px;
}

.heading-testimonial {
  margin-top: 22px;
  font-family: Droid Sans, sans-serif;
}

.paragraph-italic {
  margin-bottom: 18px;
  font-style: italic;
}

.icon-star {
  width: 14px;
  height: 14px;
  margin-left: 4px;
  margin-right: 4px;
}

.stars {
  justify-content: center;
  display: flex;
}

.block-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 12% 50px 0%;
  display: flex;
}

.contact {
  background-color: var(--white);
  border-radius: 5px;
  align-items: center;
  padding: 30px 50px 30px 30px;
  display: flex;
}

.circle-contact {
  background-color: #ffffff1a;
  border-radius: 100px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
}

.icon-contact {
  filter: hue-rotate(333deg) grayscale(0%);
  width: 20px;
  max-width: none;
  height: 20px;
}

.heading-contact {
  margin-bottom: 0;
  margin-left: 18px;
}

.heading-contact.white {
  color: #ffffffdb;
  margin-top: 3px;
  margin-left: 7px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
}

.block-image {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  position: relative;
}

.absolute-phone {
  position: absolute;
  inset: auto auto 7% -8%;
}

.image-grid {
  object-fit: cover;
  width: 100%;
  min-height: 600px;
}

.title-italic {
  color: #181818;
  font-style: italic;
}

.title-italic.green {
  color: var(--green);
}

.title-italic.bar2 {
  color: #fff;
  font-style: normal;
}

.circle-check {
  background-color: #27b1d91a;
  border-radius: 100px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
  display: flex;
}

.icon-check {
  width: 13px;
  max-width: none;
  height: 13px;
}

.check {
  align-items: center;
  margin-top: 5px;
  margin-bottom: 5px;
  display: flex;
}

.heading-check {
  margin-bottom: 0;
  margin-left: 14px;
}

.grid-4-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 50px;
}

.image-style-staff {
  border: 2px solid var(--white);
  background-color: var(--white);
  width: 100%;
  height: 320px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  object-fit: cover;
  border-radius: 5px;
}

.staff {
  text-align: center;
}

.staff.hde {
  display: none;
}

.heading-staff {
  margin-top: 34px;
  margin-bottom: 10px;
}

.text-staff {
  font-size: 16px;
  line-height: 1.2em;
}

.block-image-staff {
  position: relative;
}

.block-link-social {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.link-social {
  background-color: var(--white);
  border-radius: 100px;
  flex-direction: column;
  flex: none;
  justify-content: space-around;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 4px;
}

.icon-social {
  opacity: .5;
  width: 18px;
  height: 18px;
  margin-top: 11px;
  margin-bottom: 11px;
}

.grid-banner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
}

.image-banner {
  object-fit: cover;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 100%;
}

.block-banner {
  background-color: var(--heading);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 70px 12%;
  display: flex;
}

.collection-list-wrapper-blog {
  width: 100%;
  margin-top: 10px;
}

.collection-list-blog {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-blog._3-columns {
  grid-template-columns: 1fr 1fr 1fr;
}

.collection-item-blog {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.link-blog {
  width: 100%;
}

.image-style-blog {
  border: 2px solid var(--white);
  background-color: var(--white);
  width: 100%;
  max-width: none;
  height: 180px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  object-fit: cover;
  border-radius: 5px;
  transition: filter .3s cubic-bezier(.215, .61, .355, 1);
  transform: perspective(1000px);
}

.image-style-blog:hover {
  filter: brightness(108%);
}

.heading-blog {
  color: var(--heading);
  padding-left: 10px;
  padding-right: 10px;
  font-family: DM Serif Display, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
}

.post-date {
  margin-top: 34px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.2em;
}

.post-date.margin {
  margin-top: 0;
}

.section-footer {
  background-color: #070707;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 36px;
  padding-left: 26px;
  padding-right: 26px;
  display: flex;
}

.section-footer.promo {
  background-color: #000;
  padding-top: 10px;
  padding-bottom: 10px;
}

.section-footer-top {
  color: var(--dark-gradient-1);
  background-image: linear-gradient(#000000a3, #000000a3), linear-gradient(145deg, #b6137b, #482ce5);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 26px;
  display: flex;
}

.section-footer-top.asp {
  color: #251810;
  background-color: #e62d1e;
  background-image: none;
  padding-top: 0;
  padding-bottom: 8px;
}

.footer-top {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.contact-footer {
  align-items: center;
  margin-right: 38px;
  display: flex;
}

.block-footer-top {
  align-items: center;
  display: flex;
}

.heading-contact-footer {
  max-width: 290px;
  color: var(--white);
  margin-bottom: 0;
  margin-right: 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.grid-footer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-bottom: 1px #3f3f3f;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 90px;
}

.block-footer {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.block-footer.hide {
  opacity: 0;
}

.heading-footer {
  color: var(--white);
  margin-top: 8px;
  margin-bottom: 23px;
}

.link-footer {
  color: #b8b8b8;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  text-decoration: none;
  display: block;
}

.link-footer:hover {
  color: #0fc1ae;
}

.link-footer.copyright {
  color: #ffffff7a;
  font-size: 13px;
}

.brand-footer {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.white-semi-bold {
  color: var(--white);
  font-weight: 600;
}

.footer-down {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 22px;
  margin-bottom: 22px;
  display: flex;
}

.block-footer-down {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.link-social-footer {
  background-color: #27b1d91a;
  border-radius: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin-left: 7px;
  transition-property: background-color;
  display: flex;
}

.link-social-footer:hover {
  background-color: #ec4f7a;
}

.icon-social-footer {
  width: 17px;
  height: 17px;
}

.grid-hero {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 50px;
}

.bg-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-png {
  object-fit: contain;
  object-position: 0% 100%;
  width: 870px;
  max-width: none;
  height: 100%;
  position: relative;
  left: 300px;
}

.bg-smile {
  width: 1090px;
  max-width: none;
  height: 480px;
  position: absolute;
  top: 25%;
  left: 52%;
}

.icons-dark {
  z-index: 20;
  background-color: var(--heading);
  border-radius: 5px;
  width: 100%;
  max-width: 1416px;
  margin-top: -50px;
  padding: 10px;
  position: relative;
}

.grid-image {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.book-now {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.block-book-now {
  z-index: 20;
  background-color: var(--white);
  max-width: 420px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  text-align: center;
  border-radius: 5px;
  padding: 40px;
  position: absolute;
}

.form {
  grid-column-gap: 10px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.form-block {
  width: 100%;
  max-width: 510px;
}

.heading-form {
  margin-bottom: 30px;
}

.img-hero-2-1 {
  width: 200px;
  height: 250px;
  position: absolute;
  bottom: -246px;
  left: 796px;
}

.img-hero-2-2 {
  width: 320px;
  height: 380px;
  position: absolute;
  top: -179px;
  left: 494px;
}

.img-hero-2-3 {
  width: 240px;
  height: 270px;
  position: absolute;
  top: 78px;
  left: 619px;
}

.img-hero-2-4 {
  width: 280px;
  height: 330px;
  position: absolute;
  top: -4px;
  left: 144px;
}

.img-hero-2-5 {
  width: 320px;
  height: 380px;
  position: absolute;
  top: -413px;
  left: 40px;
}

.img-hero-2-6 {
  width: 320px;
  height: 380px;
  position: absolute;
  bottom: -258px;
  left: -92px;
}

.img-hero-2-7 {
  width: 320px;
  height: 380px;
  position: absolute;
  bottom: -365px;
  left: 350px;
}

.background-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.button-small {
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
  border-radius: 100px;
  padding: 13px 30px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2em;
  text-decoration: none;
  transition: background-color .3s cubic-bezier(.215, .61, .355, 1);
}

.button-small:hover {
  background-color: var(--green);
  color: var(--white);
}

.button-small.green {
  background-color: var(--green);
}

.button-small.green:hover {
  background-color: var(--blue);
}

.paragraph-service {
  margin-bottom: 22px;
}

.collection-list-wrapper {
  width: 100%;
}

.collection-item-service-icon {
  border: 2px solid var(--light-border);
  background-color: var(--white);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 45px 40px;
  display: flex;
}

.collection-item-service-icon.small {
  border-style: none;
  border-width: 0;
  border-radius: 0;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
}

.collection-item-service-icon.left {
  text-align: left;
  align-items: flex-start;
  margin-top: -25px;
  margin-left: -25px;
  padding: 65px 55px 65px 75px;
}

.heading-service-icon-cms {
  color: var(--heading);
  margin-bottom: 15px;
  font-family: DM Serif Display, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .3s cubic-bezier(.215, .61, .355, 1);
}

.heading-service-icon-cms:hover {
  color: var(--green);
}

.link-icon-service-cms {
  border: 2px solid var(--light-border);
  background-color: var(--white);
  width: 100%;
  color: var(--paragraphs);
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 35px 25px 10px;
  text-decoration: none;
  transition: border-color .3s cubic-bezier(.215, .61, .355, 1), background-color .3s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.link-icon-service-cms:hover {
  border-color: var(--background);
  background-color: var(--background);
  color: var(--paragraphs);
}

.heading-service-icon-cms-small {
  margin-top: 3px;
  margin-bottom: 18px;
}

.contact-location {
  background-color: var(--white);
  border-radius: 5px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 370px;
  padding: 30px 50px 30px 30px;
  display: flex;
}

.location {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 25px;
  display: flex;
}

.paragraph-hours {
  margin-bottom: 0;
}

.semi-bold {
  color: var(--heading);
  font-weight: 600;
}

.absolute-location {
  position: absolute;
  inset: auto auto 7% -6%;
}

.banner-large {
  background-color: var(--heading);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 120px 256px;
  display: flex;
  position: relative;
}

.block-banner-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.img-banner-large-1 {
  width: 190px;
  height: 190px;
  position: absolute;
  bottom: -28px;
  right: 52px;
}

.img-banner-large-2 {
  width: 290px;
  height: 170px;
  position: absolute;
  bottom: -39px;
  left: 55px;
}

.img-banner-large-3 {
  width: 200px;
  height: 235px;
  position: absolute;
  top: 32px;
  right: -33px;
}

.img-banner-large-4 {
  width: 210px;
  height: 210px;
  position: absolute;
  top: -42px;
  left: 42px;
}

.img-banner-large-5 {
  width: 175px;
  height: 210px;
  position: absolute;
  top: 110px;
  left: -35px;
}

.grid-hero-alternative {
  grid-column-gap: 30px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1.1fr;
  width: 100%;
  margin-bottom: -40px;
}

.block-book-now-hero {
  z-index: 20;
  background-color: var(--white);
  box-shadow: 0 20px 70px -10px var(--shadow);
  text-align: center;
  border-radius: 5px;
  margin-top: -70px;
  padding: 40px;
}

.block-video {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  position: relative;
}

.background-video-style {
  z-index: 10;
  border: 2px solid var(--white);
  background-color: var(--white);
  width: 108%;
  height: 490px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  object-fit: cover;
  border-radius: 5px;
}

.absolute-phone-hero {
  z-index: 15;
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.grid-request {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--background);
  border-radius: 5px;
  grid-template-rows: auto;
  width: 100%;
}

.request {
  z-index: 20;
  background-color: var(--white);
  width: 100%;
  max-width: 460px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  text-align: center;
  border-radius: 5px;
  margin-bottom: -25px;
  padding: 40px;
}

.block-request {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 25px;
  padding-left: 0;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.smile-single {
  position: absolute;
  top: -60px;
  left: -43px;
}

.collection-list-service-large {
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-service-large {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 2.2fr 1fr;
  align-items: start;
  width: 100%;
}

.image-style-service-large {
  border: 2px solid var(--white);
  background-color: var(--white);
  width: 100%;
  height: 500px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  object-fit: cover;
  border-radius: 5px;
  transition: filter .3s cubic-bezier(.215, .61, .355, 1);
  transform: perspective(1000px);
}

.image-style-service-large:hover {
  filter: brightness(108%);
}

.block-single-page {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  margin-bottom: -125px;
  position: relative;
}

.image-style-grid-single {
  border: 1px solid var(--white);
  background-color: var(--white);
  width: 100%;
  min-height: 350px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  filter: hue-rotate();
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 0;
}

.absolute-about {
  position: absolute;
  inset: auto 3% -4% auto;
}

.block-number {
  background-color: #316194;
  background-image: none;
  border: 1px solid #fff98bab;
  border-radius: 5px;
  align-items: center;
  padding: 30px 50px 30px 30px;
  display: flex;
}

.number {
  color: #cdf5ff;
  background-color: #0000;
  margin-left: 15px;
  font-family: DM Serif Display, sans-serif;
  font-size: 68px;
  line-height: 1.05em;
}

.page-content-large {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 92%;
  display: flex;
}

.grid-single {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
}

.block-margin {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-bottom: 70px;
  position: relative;
}

.rich-text-block {
  margin-bottom: 40px;
  padding-top: 51px;
  font-family: Droid Sans, sans-serif;
}

.rich-text-block.margin {
  margin-bottom: 0;
}

.grid-partition {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 2px solid var(--white);
  background-color: var(--white);
  box-shadow: 0 20px 70px -10px var(--shadow);
  border-radius: 5px;
  grid-template-rows: auto;
}

.grid-partition.dark {
  background-color: var(--heading);
  border-style: none;
}

.grid-partition.background {
  background-color: var(--background);
  box-shadow: none;
  border-style: none;
}

.image-partition {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  min-height: 500px;
}

.block-partition {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 12%;
  display: flex;
}

.grid-image-about {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  height: 420px;
  margin-top: 35px;
  margin-bottom: -100px;
}

.image-style-about {
  border: 2px solid var(--white);
  background-color: var(--white);
  width: 100%;
  height: 100%;
  box-shadow: 0 20px 70px -10px var(--shadow);
  object-fit: cover;
  border-radius: 5px;
}

.collection-list-wrapper-blog-large {
  width: 100%;
}

.collection-list-blog-large {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-blog-large {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 5px;
  grid-template-rows: auto;
  width: 100%;
}

.image-style-blog-large {
  border: 2px solid var(--white);
  background-color: var(--white);
  width: 100%;
  max-width: none;
  height: 350px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  object-fit: cover;
  border-radius: 5px;
  transition: filter .3s cubic-bezier(.215, .61, .355, 1);
  transform: perspective(1000px);
}

.image-style-blog-large:hover {
  filter: brightness(108%);
}

.block-blog {
  border: 2px solid var(--light-border);
  background-color: var(--white);
  text-align: left;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 34px 10%;
  display: flex;
}

.heading-blog-large {
  color: var(--heading);
  margin-bottom: 24px;
  font-family: DM Serif Display, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15em;
  text-decoration: none;
}

.heading-blog-large:hover {
  color: #6ebfc2;
}

.page-content {
  width: 100%;
  max-width: 880px;
}

.icon-service-single {
  width: 34px;
  height: 34px;
  display: inline-block;
}

.block-icon-service-single {
  background-color: var(--white);
  width: 88px;
  height: 88px;
  box-shadow: 0 20px 70px -10px var(--shadow);
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: -44px auto;
  display: flex;
  position: relative;
}

.block-contact {
  text-align: center;
  background-color: #ffffff40;
  border: 0 solid #f8f8f8;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 35px 22px;
  display: flex;
  position: relative;
  box-shadow: 0 0 14px -2px #00000012;
}

.paragraph-contact {
  text-align: center;
  margin-bottom: 22px;
}

.heading-contact-large {
  font-family: Droid Sans, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.block-icon-contact {
  background-color: var(--white);
  border: 2px solid #a8d2f1;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  margin-top: -30px;
  margin-bottom: 18px;
  display: flex;
}

.form-block-contact {
  width: 100%;
}

.textarea {
  border: 1px solid var(--border);
  background-color: var(--white);
  min-width: 100%;
  max-width: 100%;
  min-height: 140px;
  max-height: 300px;
  color: var(--heading);
  border-radius: 29px;
  margin-bottom: 0;
  padding: 18px 25px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.215, .61, .355, 1);
}

.textarea:focus {
  border-color: var(--white-paragraphs);
}

.textarea::placeholder {
  color: var(--white-paragraphs);
}

.block-map {
  border-radius: 5px;
  width: 100%;
  overflow: hidden;
}

.image-map {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.form-block-book-now {
  width: 100%;
  max-width: 840px;
}

.form-book-now {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.checkbox-label {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
}

.checkbox-field {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 0;
  display: flex;
}

.checkbox {
  border-color: var(--border);
  background-color: var(--white);
  border-radius: 20px;
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 10px;
  transition: border-color .3s cubic-bezier(.215, .61, .355, 1), border-radius .3s cubic-bezier(.215, .61, .355, 1), background-color .3s cubic-bezier(.215, .61, .355, 1);
}

.checkbox.w--redirected-checked {
  border: 4px solid var(--blue);
  background-color: var(--blue);
}

.icon-license {
  border: 2px solid var(--light-border);
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 15px;
  margin-right: 15px;
  padding: 26px;
  display: inline-block;
}

.block-icon-license {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
}

.space {
  background-color: var(--border);
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.grid-image-license {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.image-license {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 220px;
}

.map-image {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 350px;
}

.style-buttons {
  background-color: var(--background);
  border-radius: 5px;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  display: flex;
}

.grid-buttons {
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-items: center start;
}

.grid-style-colors {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.style-color {
  background-color: var(--blue);
  text-align: center;
  border-radius: 5px;
  padding: 25px 20px;
}

.style-color.white {
  border: 1px solid var(--border);
  background-color: var(--white);
}

.style-color.green {
  background-color: var(--green);
}

.style-color.dark-gradient {
  background-color: #0000;
  background-image: linear-gradient(145deg, var(--dark-gradient-1), var(--dark-gradient-2));
}

.style-color.light-gradient {
  background-color: #0000;
  background-image: linear-gradient(145deg, var(--light-gradient-1), var(--light-gradient-2));
}

.style-color.heading {
  background-color: var(--heading);
}

.style-color.paragraphs {
  background-color: var(--paragraphs);
}

.style-color.border {
  background-color: var(--border);
}

.style-color.light-border {
  background-color: var(--light-border);
}

.style-color.dark-border {
  background-color: var(--dark-border);
}

.style-color.white-paragraphs {
  background-color: var(--white-paragraphs);
}

.style-color.background {
  background-color: var(--background);
}

.text-style-color {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  display: inline-block;
}

.text-style-color.dark {
  color: var(--heading);
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 260px;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.block-text-request {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 12% 45px;
  display: flex;
}

.block-img-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.grid-2-splash {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  width: 100%;
}

.image-splash {
  border: 2px solid var(--white);
  background-color: var(--white);
  width: 100%;
  box-shadow: 0 20px 70px -10px var(--shadow);
  object-fit: cover;
  border-radius: 5px;
  transition: filter .3s cubic-bezier(.215, .61, .355, 1);
  transform: perspective(1000px);
}

.image-splash:hover {
  filter: brightness(108%);
}

.link-block-splash {
  width: 100%;
}

.block-splash {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.link-splash {
  color: var(--heading);
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3em;
  text-decoration: none;
}

.grid-3-splash {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 60px;
}

.image {
  opacity: .4;
  padding-bottom: 4px;
}

.sect {
  text-align: left;
}

.paragraph {
  padding-left: 8px;
  padding-right: 8px;
}

.paragraph.hp1 {
  color: #001a44;
  text-align: center;
  margin-bottom: 9px;
}

.paragraph-2 {
  padding-left: 24px;
  padding-right: 24px;
}

.paragraph-3 {
  padding-left: 26px;
  padding-right: 26px;
}

.pricing-table-container {
  perspective: 1000px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 63px;
  padding-bottom: 125px;
  display: flex;
}

.pricing-button {
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #6ebfc2;
  border-radius: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-decoration: none;
  transition: transform .2s;
  display: block;
  transform: translate(0);
  box-shadow: 0 20px 35px -10px #506a7980;
}

.pricing-button:hover {
  color: #fff;
  background-color: #d15641;
  transform: translate3d(0, 0, 20px);
}

.pricing-button.smll {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 13px;
}

.plan-name {
  color: #00000080;
  letter-spacing: .1em;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7em;
}

.pricing-plan {
  z-index: 1;
  perspective: 1000px;
  perspective-origin: 50%;
  background-color: #fff;
  border-width: 1px;
  border-color: #dddeeb;
  border-radius: 9px;
  width: 33.3333%;
  min-height: 0;
  margin-left: 20px;
  padding: 35px 61px 40px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 50px 100px -25px #506a7980;
}

.pricing-plan.advanced {
  flex-direction: column;
  justify-content: space-between;
  margin-left: 0;
  display: flex;
}

.plan-price-wrapper {
  z-index: 2;
  width: 50%;
  margin-left: auto;
  position: relative;
}

.pricing-header-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8em;
}

.pricing-header-text.mms {
  margin-bottom: 21px;
  font-size: 13px;
}

.feature {
  background-image: url('../images/Path.svg');
  background-position: 0 31%;
  background-repeat: no-repeat;
  background-size: 13px;
  margin-bottom: 16px;
  padding-left: 22px;
  line-height: 24px;
}

.pricing-header-container {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-header-container.scont {
  max-width: 622px;
}

.ms-iframe {
  z-index: 2147483647;
  justify-content: flex-end;
  align-items: flex-end;
  height: 70px;
  display: flex;
  position: fixed;
  inset: auto auto 0% 0%;
}

.pricing-image {
  z-index: 0;
  min-width: 220px;
  position: absolute;
  inset: -102px auto auto -19%;
}

.pricing-h1 {
  letter-spacing: -.01em;
  font-size: 35px;
  font-weight: 600;
}

.plan-duration {
  color: #0009;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 400;
}

.feature-wrap {
  margin-bottom: 24px;
  padding-top: 20px;
}

.feature-wrap.serviwrap {
  text-align: left;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.pricing-section {
  color: #000;
  background-color: #eef8ff;
  min-height: 100vh;
  padding: 80px 50px 96px;
  font-family: Open Sans, sans-serif;
}

.pricing-section:hover {
  transform: translate(0);
}

.plan-price {
  font-size: 50px;
  font-weight: 700;
  line-height: 40px;
}

.plan-price.v2 {
  margin-top: -15px;
  font-size: 33px;
}

.button-class1:hover {
  color: #fff;
}

.heading-2 {
  font-family: Droid Sans, sans-serif;
  font-weight: 700;
}

.column5 {
  width: 100%;
  min-height: 190px;
}

.div-block {
  justify-content: center;
  width: 100%;
  min-height: 240px;
  margin-top: 34px;
  display: flex;
}

.service {
  background-color: #ffffffe0;
  border-radius: 19px;
  min-width: 130px;
  margin-right: 10px;
  padding: 11px 14px;
}

.service.last {
  margin-right: 0;
}

.high {
  color: #e5322c;
}

.yel {
  color: #ee8025;
}

.heading-3 {
  font-family: Droid Sans, sans-serif;
}

.heading-4, .heading-5, .heading-6, .heading-7, .heading-8 {
  font-family: Droid Sans, sans-serif;
  font-weight: 700;
}

.heading-9 {
  font-family: Droid Sans, sans-serif;
}

.text-span, .bold-text {
  color: #e62d1e;
}

.title-grid-couple {
  max-width: none;
  margin-top: 0;
  margin-bottom: 22px;
  font-family: Montserrat, sans-serif;
  font-size: 29px;
  font-weight: 500;
}

.block-grid-couple {
  background-color: #ececec75;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 35px 15% 35px 12%;
  display: flex;
}

.icon-arrow-2-green {
  max-width: none;
  margin-right: 15px;
  display: none;
  position: absolute;
  right: 0%;
}

.paragraph-services {
  color: #000;
  text-align: center;
  max-width: 340px;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.7em;
}

.icon-services {
  filter: hue-rotate(250deg);
  max-width: none;
}

.service-block {
  background-color: #ececec75;
  border-radius: 18px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 52px;
  padding: 50px 15px;
  display: flex;
}

.button-green {
  color: #fff;
  text-transform: capitalize;
  background-color: #4eaf4e;
  border-radius: 30px;
  padding: 13px 86px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3em;
  transition: background-color .3s ease-out;
}

.button-green:hover {
  color: #fff;
  background-color: #5ede5e;
}

.paragraph-4 {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
}

.image-grid-couple {
  object-fit: cover;
  border: 1px solid #f585a5;
  border-radius: 9px;
  width: 100%;
  min-height: 430px;
  box-shadow: 6px 6px 20px -12px #000000a3;
}

.text-link-button-green {
  color: #4eaf4e;
  padding-right: 33px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3em;
}

.icon-arrow-1-green {
  max-width: none;
  margin-right: 15px;
  position: absolute;
  right: 0%;
}

.grid-couple {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  border-radius: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

.grid-couple.margin-30 {
  background-color: #ffffff61;
  border-radius: 7px;
  margin-top: 0;
  margin-bottom: 30px;
  padding: 14px;
  overflow: visible;
}

.link-button-green {
  color: #202a3b;
  flex-direction: row;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  text-decoration: none;
  display: none;
  position: relative;
}

.grid-services {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 100px;
}

.title-services {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.content-2 {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center start;
  width: 100%;
  max-width: 1300px;
  display: flex;
  position: relative;
}

.content-2.mid-servicios-2 {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  max-width: 100%;
  padding-top: 108px;
}

.div-block-2 {
  height: 80px;
}

.link-block {
  text-decoration: none;
}

.column-2 {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 22px;
  display: flex;
}

.nav {
  background-color: #eed1e1;
  flex-direction: row;
  padding-top: 10px;
  display: block;
}

.text-block {
  color: #e5d1ad;
  letter-spacing: 1px;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
}

.button-2 {
  text-align: center;
  background-color: #b78846;
  border-radius: 5px;
  width: auto;
  min-width: 230px;
  font-family: Montserrat, sans-serif;
}

.button-2.mob {
  margin-bottom: 8px;
}

.button-2.mob.best {
  min-width: 170px;
  margin-right: 10px;
  box-shadow: 0 0 20px -6px #a59652;
}

.footer-flex-container {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.column-3 {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 35px;
  display: flex;
}

.column-3.se {
  padding-left: 0;
}

.columns-2 {
  align-items: center;
  width: 73%;
  display: flex;
}

.columns-2.sel {
  align-items: center;
  width: 90%;
}

.paragraph-6 {
  color: #470847;
  max-width: 100%;
  padding-bottom: 20px;
  padding-right: 0;
  font-family: Montserrat, sans-serif;
  line-height: 21px;
}

.heading {
  color: #f8cc7f;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 600;
}

.heading.h3 {
  color: #fafafa;
  margin-top: -11px;
  margin-bottom: 19px;
  font-size: 19px;
  font-weight: 500;
}

.heading.h3.gold {
  color: #1f7e3a;
  margin-top: 0;
}

.heading.wh {
  color: #af1467;
  text-transform: none;
  padding-right: 34px;
}

.mob.mbdeck {
  display: none;
}

.footer-logo-link {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  max-height: 150px;
  display: flex;
}

.footer {
  text-align: center;
  background-color: #111;
  background-image: linear-gradient(#0000009e, #0000009e), url('../images/bg-dark.jpg');
  background-position: 0 0, 0 100%;
  background-size: auto, auto;
  border-top: 4px #f8cc7f;
  align-items: flex-start;
  padding-top: 90px;
  padding-bottom: 40px;
}

.nav-link-4 {
  color: #f8cc7f;
  font-family: Montserrat, sans-serif;
}

.section-2 {
  background-color: #000;
  background-image: linear-gradient(#ffffffc9, #ffffffc9), url('../images/bg2.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  border-top: 5px solid #470847;
  border-bottom: 5px solid #470847;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 73px;
  padding-bottom: 73px;
  display: flex;
}

.footer-image {
  object-fit: contain;
  object-position: 0% 50%;
  width: 240px;
  max-width: 60px;
  height: 100%;
}

.container-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 21px;
  padding-bottom: 26px;
  display: flex;
}

.body-2 {
  text-align: center;
  background-color: #ebebed;
  background-image: linear-gradient(#09002082, #09002082), url('../images/WhatsApp-Image-2022-03-11-at-6.57.43-PM.jpeg'), url('../images/qrbg.jpg'), linear-gradient(#e0e0e099, #e0e0e099);
  background-position: 0 0, 50%, 0 0, 0 0;
  background-size: auto, cover, auto, auto;
  background-attachment: scroll, fixed, scroll, scroll;
}

.body-2.omar {
  background-image: linear-gradient(#0a2446eb, #0a2446eb), url('../images/home.jpg'), url('../images/qrbg.jpg'), linear-gradient(#0000, #0000);
  background-position: 0 0, 50%, 0 0, 0 0;
  background-size: auto, cover, auto, auto;
  background-attachment: scroll, fixed, scroll, scroll;
}

.button-contain {
  text-align: center;
  min-width: 570px;
  max-width: 570px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.link_btn1 {
  text-align: center;
  background-color: #ec3838;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  margin-top: 10px;
  margin-bottom: 2px;
  font-weight: 500;
}

.link_btn1:hover {
  color: #fff;
}

.section-3 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.image-8 {
  padding-top: 36px;
  padding-bottom: 20px;
}

.image-9 {
  max-width: 31%;
  padding-top: 25px;
  padding-bottom: 8px;
}

.name {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
}

.name.h2 {
  opacity: .81;
  font-size: 26px;
  font-weight: 600;
}

.name.s2 {
  padding-top: 11px;
  font-size: 19px;
  line-height: 1.8em;
}

.name.s2.bre {
  font-weight: 600;
}

.text-span-3 {
  opacity: .61;
}

.g {
  text-shadow: 4px 4px 18px #8a0c0c;
}

.section {
  background-color: #fff;
  margin-left: 0;
  margin-right: 0;
}

.container-4 {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrap {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.paragraph-tiny {
  color: #0f3981;
  padding-top: 3px;
  padding-left: 18px;
  font-size: 12px;
  line-height: 20px;
}

.link-block-2 {
  text-decoration: none;
  display: flex;
}

.bold-text-2 {
  color: #a3c4f0;
}

.div-block-6 {
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  display: flex;
}

.div-block-8 {
  text-align: center;
}

.image-12 {
  margin-top: 60px;
  padding-top: 0;
}

.image-12.m1 {
  border-radius: 12px;
  margin-top: 60px;
  padding-top: 0;
}

.image-12.m3 {
  filter: brightness(129%);
  margin-bottom: 40px;
  box-shadow: 0 0 20px 3px #6874ffe0;
}

.input {
  background-color: #0000;
  border-color: #000 #000 #ccd0d9;
  border-top-style: none;
  border-top-width: 1px;
  border-left-style: none;
  border-left-width: 1px;
  border-right-style: none;
  border-right-width: 1px;
  border-radius: 0;
  height: 48px;
  margin-bottom: 32px;
  padding-top: 7px;
  padding-left: 0;
  padding-right: 0;
  font-size: 15px;
  line-height: 24px;
  transition: border-color .3s;
}

.input:hover {
  border-bottom-color: #9096a4;
}

.input:focus {
  border-bottom-color: #ffa535;
}

.input.subscribe-input {
  background-image: linear-gradient(#ffffffab, #ffffffab), url('../images/paper-plane.svg');
  background-position: 0 0, 8px;
  background-repeat: repeat, no-repeat;
  background-size: auto, 33px;
  flex: 1;
  margin-bottom: 0;
  padding-left: 56px;
  display: none;
}

.float-card-2 {
  z-index: 250;
  color: #9096a4;
  text-align: left;
  background-color: #fff;
  border-radius: 8px;
  width: auto;
  margin-bottom: 0;
  padding: 24px;
  font-size: 14px;
  line-height: 24px;
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  overflow: hidden;
  box-shadow: 0 5px 18px #2e323c2e;
}

.form-error {
  color: #f34568;
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  line-height: 24px;
}

.float-subscribe-form {
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 392px;
  margin-top: 16px;
  margin-bottom: 4px;
  display: none;
}

.button-4 {
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid #ffffff30;
  border-radius: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 50px;
  margin-top: 15px;
  margin-bottom: 10px;
  padding: 2px 35px 4px;
  font-family: Lato, sans-serif;
  font-size: 13px;
  font-weight: 400;
  transition: background-color .2s, all .2s;
  display: flex;
  box-shadow: 0 0 42px -12px #000;
}

.button-4:hover {
  background-color: #30aaea;
}

.button-4.floating {
  margin-top: -1px;
  margin-bottom: 0;
  padding: 3px 31px;
}

.black-text {
  color: #2e323c;
  font-family: Droid Sans, sans-serif;
}

.form-success {
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
}

.float-card-close {
  z-index: 1;
  opacity: .6;
  background-image: url('../images/close-small-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  transition: opacity .2s;
  position: absolute;
  top: 0;
  right: 0;
}

.float-card-close:hover {
  opacity: 1;
}

.text-block-2 {
  min-width: 9%;
}

.bold-text-3 {
  font-weight: 400;
}

.image-13 {
  border-radius: 20px;
  max-width: none;
}

.link-block-4 {
  text-align: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .section-hero.homryop {
    background-image: url('../images/background.jpg'), url('../images/home-banner-plus.png'), url('../images/home-banner-dollar_1home-banner-dollar.png'), url('../images/home-banner-plus.png'), linear-gradient(to right, #fff0 80%, #ffa434c2 80%);
    background-position: 0 0, 77% 0, 87% 64%, 50%, 0 0;
    background-repeat: repeat, no-repeat, no-repeat, no-repeat, repeat;
    background-size: cover, auto, auto, auto, auto;
  }

  .button.green {
    background-color: #e62d1e;
  }

  .text-hero.left {
    box-shadow: 6px 19px 20px 20px #0000001f;
  }

  .section-background {
    background-color: #f4f6f6;
    border-top-style: none;
  }

  .title.redtitle {
    color: #fc4131;
  }

  .section-white.icos {
    padding-top: 60px;
    padding-bottom: 10px;
  }

  .paragraph-white.pwd {
    margin-bottom: 0;
    padding: 0 10px;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 400;
  }

  .title-italic.bar2 {
    color: #fff;
  }

  .section-footer {
    flex-direction: row;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .section-footer.promo {
    background-color: #000;
  }

  .section-footer-top.asp {
    background-color: #e62d1e;
  }

  .text-span, .bold-text {
    color: #fd5329;
  }

  .nav {
    background-color: #eed1e1;
    padding-top: 0;
    display: block;
  }

  .text-block {
    color: #fff;
  }

  .button-2.mob.best {
    margin-right: 10px;
  }

  .footer {
    border-top-color: #bd0003;
  }

  .nav-link-4 {
    color: #af1467;
    font-family: Montserrat, sans-serif;
  }

  .nav-link-4:hover {
    color: #c7371a;
  }

  .nav-menu-2 {
    background-color: #0000;
  }

  .image-7 {
    padding-top: 5px;
  }

  .section-2 {
    background-color: #fff;
    background-image: linear-gradient(#ffffffd9, #ffffffd9), url('../images/bg2.jpg'), linear-gradient(#0000, #0000);
    background-position: 0 0, 50%, 0 0;
    background-repeat: repeat, repeat, repeat;
    background-size: auto, cover, auto;
    background-attachment: scroll, scroll, scroll;
    border-top-style: solid;
    border-bottom-style: solid;
    min-height: 120px;
  }

  .nav-link-3 {
    color: #af1467;
    background-color: #ffffff1a;
    font-family: Montserrat, sans-serif;
  }

  .nav-link-3:hover {
    color: #c7371a;
  }

  .footer-image {
    width: 140%;
    max-width: none;
  }

  .container-3 {
    padding-bottom: 34px;
  }

  .body-2 {
    text-align: center;
    background-color: #101b5c;
    background-image: linear-gradient(#00000061, #00000061), linear-gradient(#09053a61, #09053a61), url('../images/WhatsApp-Image-2022-03-11-at-6.57.43-PM.jpeg'), url('../images/qrbg.jpg');
    background-position: 0 0, 0 0, 50%, 50%;
    background-size: auto, auto, cover, auto;
    background-attachment: scroll, scroll, fixed, fixed;
    padding-top: 50px;
  }

  .link_btn1 {
    max-width: 500px;
  }

  .section-3 {
    padding-top: 20px;
  }

  .image-9 {
    max-width: 27%;
    padding-top: 23px;
  }

  .name {
    color: #fff;
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
  }

  .name.h2 {
    font-size: 150%;
  }

  .div-block-5 {
    background-color: #0041f300;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 24px;
    display: flex;
  }

  .bold-text-2 {
    color: #38ceec;
  }

  .div-block-8 {
    text-align: center;
  }

  .link-block-4 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
  }

  .dropdown-list {
    margin-left: 0;
  }

  .menu-button {
    background-color: var(--background);
    color: var(--heading);
    border-radius: 100px;
    margin-left: 6px;
    padding: 12px;
    font-size: 22px;
    line-height: 1.2em;
    transition: background-color .2s ease-in-out, color .2s ease-in-out;
  }

  .menu-button.w--open {
    background-color: var(--heading);
    color: var(--white);
  }

  .section-hero {
    padding-top: 125px;
    padding-bottom: 45px;
  }

  .section-hero.alternative {
    padding-top: 140px;
  }

  .section-hero.gradient.cus {
    padding-top: 67px;
    padding-bottom: 55px;
  }

  .nav-menu {
    background-color: var(--white);
    box-shadow: 0 20px 30px -30px var(--shadow);
    border-radius: 5px;
    margin-top: 10px;
    margin-left: 26px;
    margin-right: 26px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .content {
    margin-top: 45px;
    margin-bottom: 45px;
  }

  .content.small {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .content.single-page {
    margin-top: -75px;
  }

  .content.hc {
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 71px;
  }

  .hero-title.small {
    font-size: 58px;
  }

  .hero-title.small.bar {
    text-align: center;
    padding-left: 48px;
    padding-right: 48px;
  }

  .block-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .paragraph-large {
    margin-bottom: 20px;
  }

  .img-hero-1-3 {
    width: 220px;
    height: 280px;
    right: -337px;
  }

  .img-hero-1-5 {
    width: 220px;
    height: 280px;
    top: -308px;
    left: -21px;
  }

  .img-hero-1-7 {
    width: 220px;
    height: 280px;
    bottom: -261px;
    left: -135px;
  }

  .img-hero-1-4 {
    width: 220px;
    height: 280px;
    top: -190px;
    left: -274px;
  }

  .img-hero-1-6 {
    width: 220px;
    height: 280px;
    bottom: -52px;
    left: -319px;
  }

  .img-hero-1-2 {
    width: 220px;
    height: 280px;
    top: -264px;
    right: -230px;
  }

  .img-hero-1-1 {
    width: 220px;
    height: 280px;
    bottom: -270px;
    right: -129px;
  }

  .grid-5-columns {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .link-icon-service {
    padding: 24px 10px 10px;
  }

  .section-background {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .grid-2-columns {
    grid-column-gap: 20px;
  }

  .image-style-grid {
    min-height: 510px;
  }

  .block-right {
    padding: 25px 6%;
  }

  .section-white {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .block-center {
    max-width: 640px;
    padding-bottom: 0;
  }

  .grid-3-columns {
    grid-column-gap: 15px;
    margin-bottom: 40px;
  }

  .grid-3-columns.margin {
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .image-style-service {
    height: 210px;
  }

  .heading-service-cms {
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 26px;
  }

  .collection-list-wrapper-service {
    margin-bottom: 15px;
  }

  .collection-list-service {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .collection-list-service.small {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .paragraph-service-cms {
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .block-full {
    padding: 90px 10%;
  }

  .testimonial {
    padding-bottom: 35px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .block-left {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 6%;
  }

  .contact {
    padding: 25px 35px 25px 25px;
  }

  .block-image {
    flex-direction: row;
    justify-content: center;
  }

  .absolute-phone {
    left: -5%;
  }

  .image-grid {
    min-height: 510px;
  }

  .check {
    margin-top: 3px;
    margin-bottom: 3px;
  }

  .grid-4-columns {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-bottom: 40px;
  }

  .image-style-staff {
    height: 250px;
  }

  .heading-staff {
    margin-top: 20px;
  }

  .block-link-social {
    margin-bottom: 10px;
  }

  .link-social {
    width: 36px;
    height: 36px;
    margin: 3px;
  }

  .icon-social {
    width: 15px;
    height: 15px;
  }

  .block-banner {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .collection-list-blog {
    grid-column-gap: 15px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .image-style-blog {
    height: 170px;
  }

  .heading-blog {
    font-size: 22px;
  }

  .post-date {
    margin-top: 25px;
  }

  .section-footer {
    padding-top: 80px;
  }

  .contact-footer {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .block-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .heading-contact-footer {
    margin-bottom: 14px;
    margin-right: 0;
  }

  .grid-footer {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-bottom: 80px;
  }

  .grid-hero {
    margin-top: 15px;
    margin-bottom: 30px;
    display: flex;
  }

  .image-png {
    width: 800px;
  }

  .icons-dark {
    margin-top: -40px;
    padding: 5px;
  }

  .grid-image {
    grid-column-gap: 15px;
  }

  .block-book-now {
    padding: 35px;
  }

  .img-hero-2-1 {
    width: 100px;
    height: 150px;
    bottom: -113px;
    left: 414px;
  }

  .img-hero-2-2 {
    width: 220px;
    height: 280px;
    top: -130px;
    left: 277px;
  }

  .img-hero-2-3 {
    width: 150px;
    height: 190px;
    top: 105px;
    left: 238px;
  }

  .img-hero-2-4 {
    width: 180px;
    height: 230px;
    top: -13px;
    left: 79px;
  }

  .img-hero-2-5 {
    width: 220px;
    height: 280px;
    top: -325px;
    left: 22px;
  }

  .img-hero-2-6 {
    width: 220px;
    height: 280px;
    bottom: -279px;
  }

  .img-hero-2-7 {
    width: 220px;
    height: 280px;
    bottom: -196px;
    left: 162px;
  }

  .background-video {
    min-height: 510px;
  }

  .collection-item-service-icon {
    padding: 30px 20px;
  }

  .collection-item-service-icon.left {
    margin-top: -15px;
    padding: 35px 30px 35px 55px;
  }

  .heading-service-icon-cms {
    font-size: 26px;
  }

  .contact-location {
    padding: 25px 35px 25px 25px;
  }

  .absolute-location {
    bottom: 4%;
    left: -2%;
  }

  .banner-large {
    padding: 90px 125px;
  }

  .img-banner-large-1 {
    width: 140px;
    height: 140px;
  }

  .img-banner-large-2 {
    width: 210px;
    height: 130px;
    bottom: -45px;
    left: 21px;
  }

  .img-banner-large-3 {
    width: 130px;
    height: 150px;
    top: 11px;
    right: -13px;
  }

  .img-banner-large-4 {
    width: 130px;
    height: 130px;
    top: -38px;
  }

  .img-banner-large-5 {
    width: 110px;
    height: 140px;
    top: 53px;
    left: -18px;
  }

  .grid-hero-alternative {
    grid-column-gap: 15px;
    grid-row-gap: 30px;
    grid-template-columns: 1.7fr 1.1fr;
    margin-bottom: -25px;
  }

  .block-book-now-hero {
    padding: 25px;
  }

  .block-video {
    flex-direction: row;
    justify-content: center;
  }

  .background-video-style {
    height: 420px;
  }

  .absolute-phone-hero {
    bottom: 20px;
    left: 20px;
  }

  .grid-request {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .request {
    max-width: 400px;
    padding: 25px;
  }

  .block-request {
    padding-top: 15px;
    padding-right: 15px;
  }

  .smile-single {
    top: -42px;
    left: -41px;
  }

  .grid-service-large {
    grid-template-columns: 1.7fr 1fr;
  }

  .image-style-service-large {
    height: 430px;
  }

  .block-single-page {
    flex-direction: row;
    justify-content: center;
    margin-top: 45px;
    margin-bottom: -100px;
  }

  .block-number {
    padding: 25px 35px 25px 25px;
  }

  .block-margin {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 60px;
  }

  .rich-text-block {
    margin-bottom: 25px;
  }

  .block-partition {
    padding: 45px 10%;
  }

  .grid-image-about {
    grid-column-gap: 15px;
    height: 280px;
    margin-top: 15px;
    margin-bottom: -80px;
  }

  .collection-list-blog-large {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .block-blog {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .heading-blog-large {
    font-size: 32px;
  }

  .block-contact {
    margin-top: 22px;
    margin-bottom: 22px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .block-text-request {
    padding: 40px 10% 25px;
  }

  .grid-2-splash {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
  }

  .grid-3-splash {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .pricing-table-container {
    flex-direction: column;
    place-content: center;
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
    padding-top: 25px;
  }

  .plan-name {
    margin-bottom: 20px;
  }

  .pricing-plan {
    flex-direction: column;
    width: 100%;
    max-width: none;
    min-height: auto;
    margin: 33px 0 14px;
    padding-top: 56px;
    padding-left: 27px;
    padding-right: 27px;
    display: flex;
  }

  .pricing-plan.advanced {
    margin-right: 0;
  }

  .plan-price-wrapper {
    width: 150px;
    margin-left: 130px;
  }

  .pricing-row {
    display: flex;
  }

  .pricing-image {
    padding-bottom: 1px;
    left: -10%;
  }

  .feature-wrap {
    margin-bottom: 40px;
    padding-top: 0;
  }

  .pricing-section {
    padding: 70px 5% 62px;
  }

  .block-grid-couple {
    padding: 20px 38px;
  }

  .grid-services {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .column-2 {
    align-items: stretch;
  }

  .button-2.mob {
    display: none;
  }

  .button-2.mob.best {
    margin-right: 0;
    display: block;
  }

  .columns-2 {
    width: 90%;
  }

  .columns-2.sel {
    flex-direction: column-reverse;
    align-items: center;
    display: block;
  }

  .paragraph-6 {
    max-width: 100%;
    line-height: 23px;
  }

  .heading.h3.gold {
    margin-top: -12px;
    font-size: 16px;
  }

  .heading.wh {
    font-size: 21px;
  }

  .menu-button-2.w--open {
    background-color: #303030;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-menu-2 {
    background-color: #1f1f1ff5;
  }

  .section-2 {
    background-image: linear-gradient(#00000047, #00000047), url('../images/bg-dark.jpg');
    background-position: 0 0, 100% 100%;
    background-size: auto, auto;
    height: auto;
  }

  .icon {
    color: #f8cc7f;
  }

  .container-4 {
    margin-left: 0;
    margin-right: 0;
  }

  .image-13 {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 30px;
    font-size: 48px;
  }

  h2 {
    margin-bottom: 27px;
    font-size: 36px;
  }

  h3 {
    margin-bottom: 18px;
    font-size: 28px;
  }

  h4 {
    margin-bottom: 14px;
    font-size: 24px;
  }

  h5 {
    margin-bottom: 14px;
    font-size: 21px;
  }

  h6 {
    font-size: 17px;
  }

  p {
    margin-bottom: 30px;
  }

  ul, ol {
    margin-bottom: 30px;
    padding-left: 30px;
  }

  li {
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 5px;
  }

  blockquote {
    margin-bottom: 30px;
    padding: 20px 30px;
    font-size: 20px;
  }

  .navbar {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
  }

  .section-hero {
    padding: 115px 15px 35px;
  }

  .section-hero.alternative {
    padding-top: 130px;
  }

  .section-hero.overflow.serv {
    padding-bottom: 42px;
  }

  .nav-menu {
    margin-left: 15px;
    margin-right: 15px;
  }

  .content {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .content.small {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .content.single-page {
    margin-top: -55px;
  }

  .content.hc {
    flex-direction: column;
  }

  .hero-title {
    font-size: 58px;
  }

  .hero-title.small {
    font-size: 48px;
  }

  .paragraph-large {
    font-size: 18px;
  }

  .img-hero-1-3 {
    width: 170px;
    height: 230px;
    right: -193px;
  }

  .img-hero-1-5 {
    width: 170px;
    height: 230px;
    top: -243px;
    left: 22px;
  }

  .img-hero-1-7 {
    width: 170px;
    height: 230px;
    bottom: -229px;
    left: 0;
  }

  .img-hero-1-4 {
    width: 170px;
    height: 230px;
    top: -142px;
    left: -159px;
  }

  .img-hero-1-6 {
    width: 170px;
    height: 230px;
    bottom: -37px;
    left: -188px;
  }

  .img-hero-1-2 {
    width: 170px;
    height: 230px;
    top: -221px;
    right: -108px;
  }

  .img-hero-1-1 {
    width: 170px;
    height: 230px;
    bottom: -213px;
    right: -18px;
  }

  .section-icons {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-5-columns {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
  }

  .section-background {
    padding: 35px 15px;
  }

  .grid-2-columns {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .image-style-grid {
    min-height: 300px;
  }

  .block-right {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .section-white {
    padding: 35px 15px;
  }

  .section-white.icos {
    flex-direction: column;
  }

  .grid-3-columns {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 30px;
  }

  .image-style-service {
    height: 290px;
  }

  .heading-service-cms {
    margin-top: 20px;
    font-size: 24px;
  }

  .collection-list-service {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .collection-item-service {
    max-width: 500px;
  }

  .grid-full {
    grid-template-columns: 1fr;
  }

  .block-full {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .testimonial {
    max-width: 500px;
  }

  .block-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 6%;
  }

  .contact {
    padding: 8px 24px 8px 18px;
  }

  .circle-contact {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .heading-contact.white {
    margin-left: 0;
  }

  .absolute-phone {
    left: -1%;
  }

  .image-grid {
    min-height: 300px;
  }

  .title-italic.bar2 {
    color: #ffe675;
  }

  .grid-4-columns {
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .image-style-staff {
    height: 300px;
  }

  .heading-staff {
    margin-top: 18px;
    margin-bottom: 5px;
  }

  .collection-list-blog {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .collection-list-blog._3-columns {
    grid-template-columns: 1fr;
  }

  .collection-item-blog {
    max-width: 500px;
  }

  .image-style-blog {
    height: 36vw;
  }

  .heading-blog {
    font-size: 21px;
  }

  .post-date {
    margin-top: 18px;
    margin-bottom: 4px;
  }

  .section-footer {
    padding-top: 29px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-footer-top {
    padding: 15px;
  }

  .footer-top {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .contact-footer {
    flex-direction: column;
    margin-bottom: 25px;
  }

  .block-footer-top {
    align-items: center;
    margin-bottom: 15px;
  }

  .grid-footer {
    grid-template-columns: 1fr 1fr;
    place-content: center;
    justify-items: start;
    padding-bottom: 60px;
    padding-left: 10px;
  }

  .block-footer {
    text-align: left;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .block-footer.hide {
    display: none;
  }

  .brand-footer {
    padding-left: 0;
  }

  .footer-down {
    flex-direction: column;
  }

  .block-footer-down {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .link-social-footer {
    margin-left: 4px;
    margin-right: 4px;
  }

  .grid-hero {
    grid-template-columns: 6fr 1fr;
    padding-left: 25px;
    padding-right: 0;
  }

  .bg-hero {
    display: none;
  }

  .icons-dark {
    margin-top: -30px;
  }

  .grid-image {
    grid-template-columns: 1fr 1fr;
  }

  .block-book-now {
    padding: 25px;
  }

  .img-hero-2-1 {
    bottom: -165px;
    left: 20px;
  }

  .img-hero-2-2 {
    width: 120px;
    height: 180px;
    top: -101px;
    left: 7px;
  }

  .img-hero-2-3 {
    width: 120px;
    height: 180px;
    top: 44px;
    left: 36px;
  }

  .img-hero-2-4 {
    width: 100px;
    height: 130px;
    top: -241px;
    left: 9px;
  }

  .img-hero-2-5 {
    width: 120px;
    height: 180px;
    top: -221px;
    left: -138px;
  }

  .img-hero-2-6 {
    width: 140px;
    height: 160px;
    bottom: -176px;
    left: -230px;
  }

  .img-hero-2-7 {
    width: 120px;
    height: 180px;
    bottom: -121px;
    left: -60px;
  }

  .background-video {
    min-height: 420px;
  }

  .collection-item-service-icon {
    max-width: 500px;
  }

  .collection-item-service-icon.left {
    text-align: center;
    align-items: center;
    margin-top: 5px;
    margin-left: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-service-icon-cms {
    font-size: 24px;
  }

  .contact-location {
    padding: 8px 24px 18px 18px;
  }

  .location {
    margin-bottom: 0;
  }

  .absolute-location {
    left: -6px;
  }

  .banner-large {
    padding: 70px 40px;
  }

  .img-banner-large-1 {
    width: 120px;
    height: 120px;
    bottom: -47px;
    right: 17px;
  }

  .img-banner-large-2 {
    width: 180px;
    height: 110px;
    bottom: -52px;
    left: 10px;
  }

  .img-banner-large-3 {
    width: 110px;
    height: 130px;
    top: -51px;
    right: 8px;
  }

  .img-banner-large-4 {
    width: 110px;
    height: 110px;
    top: -51px;
    left: 90px;
  }

  .img-banner-large-5 {
    width: 90px;
    height: 120px;
    top: -30px;
    left: 18px;
  }

  .grid-hero-alternative {
    grid-row-gap: 15px;
    grid-template-columns: 1.7fr;
  }

  .block-book-now-hero {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
  }

  .block-video {
    align-items: center;
  }

  .background-video-style {
    width: 100%;
    height: 300px;
  }

  .grid-request {
    grid-template-columns: 1fr;
  }

  .block-request {
    padding-right: 0;
  }

  .smile-single {
    left: 1px;
  }

  .collection-list-service-large {
    grid-row-gap: 40px;
    justify-items: center;
  }

  .grid-service-large {
    grid-template-columns: 1fr;
  }

  .image-style-service-large {
    height: 320px;
  }

  .block-single-page {
    margin-top: 30px;
    margin-bottom: -70px;
  }

  .image-style-grid-single {
    min-height: 300px;
  }

  .number {
    margin-right: 18px;
  }

  .grid-partition {
    grid-template-columns: 1fr;
  }

  .image-partition {
    min-height: 300px;
  }

  .grid-image-about {
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
    height: 430px;
    margin-bottom: -70px;
  }

  .collection-list-blog-large {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-items: center;
  }

  .grid-blog-large {
    grid-template-columns: 1fr;
  }

  .block-blog {
    text-align: center;
    align-items: center;
    margin-top: 5px;
    padding: 30px 7%;
  }

  .heading-blog-large {
    font-size: 28px;
  }

  .block-icon-service-single {
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-bottom: -35px;
  }

  .block-contact {
    width: 100%;
    max-width: 500px;
  }

  .image-map {
    height: 480px;
  }

  .grid-image-license {
    grid-template-columns: 1fr 1fr;
  }

  .map-image {
    height: 250px;
  }

  .grid-style-colors {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2-splash {
    grid-template-columns: 1fr;
  }

  .link-splash {
    font-size: 17px;
  }

  .pricing-button {
    z-index: 2;
    position: relative;
  }

  .pricing-plan {
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .plan-price-wrapper {
    width: 33%;
    margin-left: 20%;
  }

  .pricing-row {
    padding-left: 0%;
  }

  .pricing-image {
    width: 160px;
    min-width: 0;
    top: -13%;
    right: -80px;
  }

  .pricing-h1 {
    font-size: 30px;
  }

  .div-block {
    flex-direction: column;
  }

  .service {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 18px;
    display: flex;
  }

  .text-span, .bold-text {
    color: #fc4131;
  }

  .title-grid-couple {
    margin-bottom: 11px;
  }

  .block-grid-couple {
    padding: 30px;
  }

  .service-block {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .image-grid-couple {
    height: 300px;
    min-height: auto;
  }

  .grid-couple, .grid-services {
    grid-template-columns: 1fr;
  }

  .title-services {
    margin-top: 18px;
    margin-bottom: 10px;
  }

  .column-2 {
    flex-direction: column;
  }

  .button-2.mob.best {
    margin-right: 0;
    display: block;
  }

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

  .column-3.se {
    flex-direction: row;
  }

  .columns-2 {
    display: block;
  }

  .footer {
    padding: 40px 20px;
  }

  .section-2 {
    background-position: 100% 0;
    height: auto;
    padding-top: 51px;
    padding-bottom: 51px;
  }

  .footer-image {
    object-fit: contain;
  }

  .section {
    margin-left: 15px;
    margin-right: 15px;
  }

  .container-4 {
    text-align: center;
    padding-left: 9px;
    padding-right: 9px;
  }

  .float-card-2 {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 19px;
  }

  .navbar {
    margin-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    position: sticky;
    top: 1%;
  }

  .block-navbar {
    padding: 10px;
  }

  .nav-link {
    color: #00000073;
    text-transform: uppercase;
    font-size: 27px;
    line-height: 1.3em;
  }

  .nav-link:hover {
    color: #fc4131;
  }

  .nav-link:visited {
    color: #ffffffb8;
    background-color: #4d0000b3;
    font-weight: 700;
  }

  .nav-button {
    margin-left: 3px;
    padding-top: 16px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
  }

  .nav-button.topb {
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
  }

  .section-hero {
    padding: 110px 10px 30px;
  }

  .section-hero.alternative {
    padding-top: 110px;
  }

  .section-hero.overflow {
    padding-top: 131px;
  }

  .section-hero.overflow.contact {
    background-image: url('../images/home-banner-plus.png'), url('../images/home-banner-dollar_1home-banner-dollar.png'), url('../images/home-banner-plus.png');
    background-position: 77% 0, 87% 64%, 50%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto;
    margin-top: -89px;
    padding-top: 114px;
  }

  .section-hero.gradient.cus {
    padding-bottom: 0;
  }

  .section-hero.cover {
    padding-top: 54px;
  }

  .section-hero.homryop {
    height: 70vh;
    margin-top: -83px;
  }

  .nav-menu {
    background-color: #fff;
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 48px;
    padding-bottom: 48px;
    transform: translate(0, 35px);
    box-shadow: 0 20px 30px -30px #0a2046d6;
  }

  .content {
    max-width: none;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .content.small {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .content.single-page {
    margin-top: -45px;
  }

  .content.hc {
    flex-direction: column;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-title.small {
    text-align: center;
    margin-bottom: 15px;
    font-family: Montserrat, sans-serif;
    font-size: 27px;
  }

  .hero-title.small.bar {
    text-align: center;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
  }

  .hero-title.small.a1 {
    font-size: 25px;
  }

  .hero-title.small.consulta {
    padding-left: 0;
    padding-right: 0;
    font-size: 22px;
  }

  .paragraph-large {
    font-size: 16px;
  }

  .button {
    border-radius: 7px;
    width: 100%;
  }

  .button.green {
    border-radius: 7px;
    width: 100%;
    padding-top: 20px;
  }

  .text-hero.left {
    border-radius: 20px;
    align-items: stretch;
    padding: 33px 18px;
  }

  .section-icons {
    padding-left: 10px;
    padding-right: 10px;
  }

  .grid-5-columns {
    grid-template-columns: 1fr 1fr;
  }

  .section-background {
    padding: 30px 10px;
  }

  .grid-2-columns {
    grid-row-gap: 30px;
  }

  .image-style-grid {
    min-height: 230px;
  }

  .block-right {
    padding-left: 1%;
    padding-right: 1%;
  }

  .title {
    padding-left: 0;
    padding-right: 0;
    font-size: 30px;
  }

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

  .section-white {
    padding: 30px 10px;
  }

  .section-white.icos {
    padding-top: 89px;
    padding-bottom: 64px;
  }

  .section-white.bgcool {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .grid-3-columns {
    margin-top: 0;
  }

  .image-style-service {
    height: 250px;
  }

  .heading-service-cms {
    font-size: 22px;
  }

  .collection-list-service {
    grid-row-gap: 20px;
  }

  .collection-list-service.small {
    grid-template-columns: 1fr;
  }

  .block-full {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .paragraph-white.pwd {
    font-family: Montserrat, sans-serif;
    font-size: 11px;
  }

  .single-form {
    grid-template-columns: 1fr;
  }

  .text-field, .submit-button.green {
    border-radius: 7px;
  }

  .single-form-block {
    width: 100%;
  }

  .circle-contact.f1 {
    background-color: #fff;
    padding-right: 0;
  }

  .icon-contact {
    filter: hue-rotate(303deg) grayscale(0%);
    color: #000;
  }

  .heading-contact.white {
    padding-left: 0;
  }

  .heading-contact.white.mobw {
    color: #ffffffba;
    text-align: left;
    margin-top: -6px;
    padding-bottom: 0;
    padding-left: 20px;
    font-size: 19px;
    line-height: 25px;
  }

  .title-italic.bar2 {
    color: #fcbc31;
  }

  .grid-4-columns, .grid-banner {
    grid-template-columns: 1fr;
  }

  .image-banner {
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
  }

  .block-banner {
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    padding: 35px 10%;
  }

  .image-style-blog {
    height: 46vw;
  }

  .heading-blog {
    font-size: 19px;
  }

  .section-footer {
    padding: 35px 10px;
  }

  .section-footer.promo {
    padding-bottom: 137px;
  }

  .section-footer-top {
    background-image: linear-gradient(#00000080, #00000080), linear-gradient(145deg, #b6137b, #482ce5);
    padding: 10px;
  }

  .section-footer-top.asp {
    background-color: #1d3d72;
    padding: 8px 18px;
  }

  .contact-footer {
    width: 100%;
    margin-bottom: 10px;
    position: sticky;
  }

  .contact-footer.call-now {
    z-index: 1000;
    background-color: var(--green);
    border-radius: 41px;
    flex-direction: row;
    justify-content: flex-start;
    width: 88%;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    padding: 9px 0 9px 24px;
    position: fixed;
    inset: auto 0% 0%;
    transform: scale(.8);
  }

  .grid-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-left: 20px;
  }

  .block-footer {
    align-items: flex-start;
  }

  .footer-down {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .grid-hero {
    padding-left: 0;
    display: flex;
  }

  .grid-image {
    grid-row-gap: 15px;
  }

  .block-book-now {
    margin-bottom: 15px;
    position: relative;
  }

  .img-hero-2-7 {
    bottom: -166px;
  }

  .background-video {
    min-height: 250px;
  }

  .button-small {
    padding-left: 20px;
    padding-right: 20px;
  }

  .collection-item-service-icon.left {
    padding: 25px 20px;
  }

  .heading-service-icon-cms {
    font-size: 22px;
  }

  .contact-location {
    max-width: none;
    margin-top: 10px;
    padding-top: 15px;
    padding-left: 24px;
  }

  .absolute-location {
    position: relative;
    bottom: auto;
    left: auto;
  }

  .banner-large {
    padding: 60px 30px;
  }

  .img-banner-large-1 {
    width: 110px;
    height: 80px;
    bottom: -45px;
    right: -6px;
  }

  .img-banner-large-2 {
    width: 160px;
    height: 90px;
    bottom: -38px;
    left: -4px;
  }

  .img-banner-large-3 {
    width: 90px;
    height: 100px;
    top: -48px;
  }

  .img-banner-large-4 {
    width: 90px;
    height: 100px;
    left: 62px;
  }

  .img-banner-large-5 {
    width: 80px;
    height: 100px;
    top: -33px;
    left: -5px;
  }

  .background-video-style {
    height: 250px;
  }

  .absolute-phone-hero {
    bottom: 12px;
    left: -4px;
  }

  .collection-list-service-large {
    grid-row-gap: 20px;
  }

  .image-style-service-large {
    height: 250px;
  }

  .block-single-page {
    margin-top: 25px;
    margin-bottom: -65px;
  }

  .image-style-grid-single {
    min-height: 180px;
  }

  .block-number {
    margin-bottom: -41px;
    padding: 15px 25px 15px 15px;
  }

  .number {
    font-size: 54px;
  }

  .page-content-large {
    max-width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .grid-single {
    grid-column-gap: 10px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .block-margin {
    margin-bottom: 50px;
  }

  .image-partition {
    min-height: 250px;
  }

  .block-partition {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-image-about {
    height: 350px;
    margin-bottom: -65px;
  }

  .image-style-blog-large {
    height: 250px;
  }

  .heading-blog-large {
    font-size: 26px;
  }

  .page-content {
    padding-left: 5px;
    padding-right: 5px;
  }

  .paragraph-contact, .heading-contact-large {
    font-size: 16px;
  }

  .textarea {
    border-radius: 7px;
  }

  .image-map {
    height: 300px;
  }

  .form-book-now {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    justify-items: stretch;
    padding-top: 40px;
  }

  .checkbox-field {
    justify-content: center;
  }

  .grid-image-license {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .style-buttons {
    margin-bottom: 10px;
    padding: 10px;
  }

  .grid-buttons {
    grid-auto-flow: row;
  }

  .grid-style-colors {
    grid-template-columns: 1fr;
  }

  .grid-2-splash {
    grid-row-gap: 30px;
  }

  .link-splash {
    margin-top: 10px;
    font-size: 16px;
  }

  .grid-3-splash {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

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

  .pricing-table-container {
    padding-bottom: 65px;
  }

  .pricing-button {
    margin-right: 5%;
  }

  .pricing-plan {
    padding-bottom: 15%;
    padding-right: 5%;
  }

  .pricing-plan.advanced {
    padding-left: 7%;
  }

  .plan-price-wrapper {
    margin-left: 0%;
  }

  .pricing-row {
    flex-direction: column;
    padding-right: 11px;
  }

  .pricing-image {
    width: 52%;
    top: 0;
    left: auto;
    right: -10%;
  }

  .pricing-image.starter-image {
    top: -51px;
  }

  .service {
    padding-left: 18px;
    padding-right: 18px;
  }

  .italic-text {
    text-align: left;
  }

  .text-span-2 {
    color: #fff;
    font-size: 23px;
  }

  .block-grid-couple {
    padding-left: 8px;
    padding-right: 8px;
  }

  .paragraph-services {
    color: #050505;
    font-size: 16px;
  }

  .service-block {
    background-color: #f5f5f5a6;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .button-green {
    justify-content: flex-start;
    align-self: auto;
    margin-left: 18px;
    margin-right: 18px;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 22px;
    display: flex;
  }

  .paragraph-4 {
    text-align: left;
    font-size: 16px;
  }

  .grid-couple {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .grid-couple.margin-30 {
    padding-left: 0;
    padding-right: 0;
  }

  .content-2.mid-servicios-2 {
    padding-top: 3px;
  }

  .paragraph-5 {
    text-align: left;
  }

  .body {
    background-color: #c24646;
  }

  .column-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 18px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .nav {
    padding-top: 0;
    display: block;
  }

  .text-block {
    color: #ffffff69;
    text-align: center;
  }

  .button-2 {
    background-color: #881321;
    min-width: 100%;
    font-size: 18px;
    font-weight: 600;
  }

  .button-2.mob {
    width: 64%;
    min-width: 0;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 18px;
    font-weight: 600;
    display: block;
  }

  .button-2.mob.w--current {
    display: block;
  }

  .button-2.mob.best {
    width: 100%;
  }

  .container-2 {
    background-color: #000;
  }

  .footer-flex-container {
    text-align: center;
    flex-direction: column;
  }

  .column-3 {
    clear: none;
    padding-left: 0;
    padding-right: 0;
  }

  .column-3.se {
    flex-direction: row;
  }

  .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-4 {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .columns-2 {
    width: 94%;
    display: block;
  }

  .paragraph-6 {
    text-align: center;
    font-size: 13px;
  }

  .heading {
    color: #f0c87d;
    text-align: center;
    text-shadow: 1px 1px 6px #000;
    margin-bottom: 0;
    padding-bottom: 11px;
    font-size: 25px;
  }

  .heading.h3 {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .heading.h3.gold {
    margin-top: -4px;
    margin-bottom: 0;
    font-size: 21px;
  }

  .heading.wh {
    padding-right: 0;
    font-size: 28px;
  }

  .mob.mbdeck {
    display: block;
  }

  .menu-button-2 {
    background-color: #1a1a1a;
  }

  .menu-button-2.w--open {
    background-color: #111;
  }

  .footer-logo-link {
    text-align: center;
    flex-direction: column;
    height: 60px;
  }

  .footer {
    text-align: left;
    border-top: 4px #f8cc7f;
    padding: 75px 20px 57px;
  }

  .nav-link-4 {
    color: #ffedd3;
    font-family: Montserrat, sans-serif;
    text-decoration: none;
  }

  .nav-menu-2 {
    background-color: #181818e8;
  }

  .section-2 {
    background-image: linear-gradient(#c5c5c5, #c5c5c5), url('../images/bg2.jpg');
    background-size: auto, cover;
    border-bottom-style: solid;
    height: auto;
    padding-top: 35px;
    padding-bottom: 67px;
  }

  .brand-2 {
    padding-top: 5px;
  }

  .mhid {
    display: none;
  }

  .icon {
    color: #ffdea4;
  }

  .nav-link-3 {
    color: #b78846;
  }

  .footer-image {
    width: auto;
    max-width: none;
    height: 100%;
    display: block;
  }

  .container-3 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 0;
  }

  .body-2 {
    text-align: center;
    background-color: #0000006e;
    background-image: linear-gradient(#102a727d, #102a727d), url('../images/WhatsApp-Image-2022-03-11-at-6.57.43-PM.jpeg'), linear-gradient(#000c507a, #000c507a), url('../images/qrbg.jpg');
    background-position: 0 0, 50% 30px, 0 0, 50%;
    background-repeat: repeat, no-repeat, repeat, repeat;
    background-size: auto, cover, auto, auto;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    display: flex;
  }

  .body-2.marvin {
    background-image: linear-gradient(#0a2046e6, #0a2046e6), linear-gradient(#102a727d, #102a727d), url('../images/WhatsApp-Image-2022-03-11-at-6.57.43-PM.jpeg'), linear-gradient(#000c507a, #000c507a), url('../images/qrbg.jpg');
    background-position: 0 0, 0 0, 50% 30px, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat, repeat, repeat;
    background-size: auto, auto, cover, auto, auto;
    background-attachment: scroll, scroll, scroll, scroll, scroll;
  }

  .button-contain {
    text-align: center;
    background-image: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 0;
    max-width: none;
    padding: 0 6px 4px;
    display: flex;
  }

  .link_btn1 {
    background-color: #fa2d3a;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    position: static;
    top: 1vh;
    bottom: auto;
  }

  .link_btn1.f2 {
    background-color: #00df21e3;
    background-image: linear-gradient(#84ff843b, #00000085 70%);
    border-bottom-right-radius: 0;
    width: auto;
    margin-bottom: -7px;
    margin-right: 12px;
    padding: 16px 22px;
    font-size: 17px;
    top: auto;
    bottom: 1vh;
    box-shadow: 0 0 20px 6px #07af6e;
  }

  .section-3 {
    padding-top: 10px;
  }

  .image-8 {
    width: 100%;
    padding-top: 0;
    padding-bottom: 14px;
  }

  .image-9 {
    filter: brightness(135%);
    border: 1px #fff;
    border-radius: 18px;
    max-width: 100%;
    margin-top: 2px;
    margin-bottom: 12px;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 0 20px 20px #2768d926;
  }

  .name {
    color: #fff;
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;
    font-size: 170%;
    font-weight: 400;
  }

  .name.h2 {
    letter-spacing: 2px;
    border-bottom: 1px solid #ffffff30;
    margin-bottom: 48px;
    padding-top: 5px;
    padding-bottom: 24px;
    font-size: 100%;
  }

  .name.h2.mmm {
    border-bottom-style: none;
    margin-bottom: 0;
    padding-bottom: 10px;
  }

  .name.s2 {
    opacity: .87;
    background-color: #14237e00;
    margin-bottom: 5px;
    padding: 13px 15px 0;
    font-size: 17px;
    line-height: 1.3em;
  }

  .name.s2.sc {
    background-color: #14237e00;
    padding-top: 0;
    font-weight: 600;
  }

  .name.s2.sc.sc2 {
    margin-top: 33px;
  }

  .name.s2.sc.sc2.c2 {
    color: #fff;
  }

  .name.s2.sc.c3 {
    color: #fff;
    margin-bottom: -9px;
  }

  .name.s2.sc.c3.d2 {
    color: #d0ff9a;
    margin-bottom: 40px;
    padding-bottom: 25px;
  }

  .name.s2.bre {
    background-color: #14237e00;
    margin-top: -43px;
    padding-bottom: 13px;
  }

  .name.toph {
    margin-bottom: 10px;
    padding-top: 0;
    font-size: 201%;
    font-weight: 200;
  }

  .div-block-5 {
    z-index: 99;
    color: #4591fe;
    background-color: #041f4bba;
    border-bottom: 1px solid #27b1d924;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 22px;
    padding-top: 5px;
    padding-bottom: 0;
    display: flex;
    position: fixed;
    inset: 0% 0% auto;
    box-shadow: 0 0 20px #0a2046a1;
  }

  .text-span-3, .g {
    font-weight: 600;
  }

  .section {
    margin-left: 0;
    margin-right: 0;
    position: sticky;
    bottom: 0;
  }

  .container-4 {
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: static;
    inset: auto 0% 0%;
  }

  .footer-wrap {
    width: 100vw;
  }

  .paragraph-tiny {
    color: #0f1a2c;
    padding-top: 0;
    padding-left: 0;
    font-size: 14px;
  }

  .image-10 {
    margin-right: 6px;
    padding-right: 0;
  }

  .image-10.v2 {
    margin: -68px 0 18px;
    padding-top: 9px;
    position: relative;
    inset: auto auto 4% -37%;
  }

  .link-block-2 {
    color: var(--heading);
    flex: 1;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    text-decoration: none;
    display: flex;
  }

  .bold-text-2 {
    color: #fff;
  }

  .bc {
    font-size: 26px;
    line-height: 1.2em;
  }

  .div-block-6 {
    filter: none;
    background-color: #9edef178;
    background-image: linear-gradient(#0000001c, #0000001c), linear-gradient(#5da3fe4f, #000d5fd6), url('../images/qrbg.jpg');
    background-position: 0 0, 0 0, 0 0;
    background-size: auto, auto, cover;
    border: 7px solid #ec3838;
    border-radius: 12px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 29px;
    padding: 0 26px 50px;
    display: flex;
    box-shadow: 0 0 20px 20px #257ffe8a;
  }

  .div-block-6.v2 {
    filter: none;
    background-image: linear-gradient(#dadadac4, #dadadac4), url('../images/map.jpg'), linear-gradient(#0000001c, #0000001c), linear-gradient(#5da3fe4f, #000d5fd6), url('../images/qrbg.jpg');
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    background-size: auto, auto, auto, auto, cover;
    border-color: #ec8038;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .div-block-7 {
    z-index: 999;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    padding-bottom: 32px;
    padding-left: 6px;
    display: flex;
    position: fixed;
    inset: auto 0% 6%;
  }

  .image-11 {
    opacity: .62;
    filter: brightness(92%) hue-rotate(241deg);
  }

  .div-block-8 {
    text-align: center;
    background-color: #14237e00;
    padding: 0 7px 9px;
  }

  .link-block-3 {
    text-decoration: none;
  }

  .image-12 {
    padding-top: 105px;
    padding-bottom: 45px;
    display: block;
  }

  .image-12.m3 {
    border-radius: 11px;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    display: block;
  }

  .html-embed {
    padding-top: 51px;
  }

  .float-card-2 {
    z-index: 1400;
    margin-right: 15px;
    display: none;
  }

  .float-subscribe-form {
    width: 247px;
  }

  .button-4 {
    width: 100%;
    height: auto;
    box-shadow: none;
    color: #ffffffe0;
    border-radius: 52px;
    align-items: center;
    margin-top: 13px;
    margin-bottom: 15px;
    padding: 20px;
    font-size: 14px;
    line-height: .6;
  }

  .link-block-4 {
    text-align: center;
    flex-direction: column;
    text-decoration: none;
  }
}

#w-node-f89b3e2e-5382-f5d0-2f58-ef2e3ab42a68-3ab42a65 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#Details.w-node-cf6b7806-6823-4586-4fd4-02d9fe52b2c2-9a0b9179, #w-node-d2dc4b41-7602-0e81-c082-4544730edf5a-9a0b9179, #w-node-db5e5638-3eb3-9d7d-ef0f-8c3071d70dfb-9a0b9179 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_67c5b7ed-8fd4-3c82-5364-f6f787cc1010-02316e83 {
  align-self: stretch;
}

@media screen and (max-width: 991px) {
  #w-node-f89b3e2e-5382-f5d0-2f58-ef2e3ab42a68-3ab42a65 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f89b3e2e-5382-f5d0-2f58-ef2e3ab42a68-3ab42a65 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f89b3e2e-5382-f5d0-2f58-ef2e3ab42a68-3ab42a65, #Details.w-node-cf6b7806-6823-4586-4fd4-02d9fe52b2c2-9a0b9179, #w-node-d2dc4b41-7602-0e81-c082-4544730edf5a-9a0b9179, #w-node-db5e5638-3eb3-9d7d-ef0f-8c3071d70dfb-9a0b9179 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


