:root {
  --cadet-blue: #679cb4;
  --white: white;
  --sky-blue-2: #89cff0;
  --indian-red: #e7514e;
  --black-2: #0000007a;
  --white-smoke: #f7f8f8;
  --deep-sky-blue: deepskyblue;
  --black: black;
  --dark-slate-grey: #3e5d6c;
  --salmon: #f37269;
  --medium-blue: mediumblue;
  --light-sky-blue: lightskyblue;
  --royal-blue: royalblue;
  --blue: blue;
  --medium-blue-2: mediumblue;
  --navy: navy;
  --midnight-blue: midnightblue;
  --pale-turquoise: paleturquoise;
  --steel-blue: steelblue;
  --sky-blue: skyblue;
  --light-blue: lightblue;
  --silver: #c2c2c2;
}

.body {
  font-family: Noto Sans Display, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.navbartop {
  z-index: 99;
  background-color: var(--cadet-blue);
  max-width: 100vw;
  height: 35px;
  position: absolute;
  inset: 0% 0% auto;
}

.nav-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 95%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.nav-container.navtop-container {
  justify-content: flex-start;
  height: 100%;
}

.navtop-paragraph {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 15.5px;
}

.navtop-paragraph.mobile {
  display: none;
}

.link {
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}

.header-arrow {
  display: inline-block;
}

.nav-link-drop-down {
  color: #6d768d;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  text-decoration: none;
  transition: color .35s;
  display: inline;
  position: static;
}

.nav-link-drop-down:hover {
  color: #0b98dc;
  font-style: italic;
  font-weight: 700;
}

.nav-link-drop-down.dropdown {
  margin-top: 0;
  display: block;
  position: relative;
}

.nav-link-drop-down.dropdown:hover {
  font-style: normal;
  font-weight: 400;
}

.navbar {
  z-index: 999;
  background-color: var(--white);
  perspective: 3000px;
  transform-origin: 50% 0;
  width: 100vw;
  max-width: 100vw;
  height: 15vh;
  margin-top: 5vh;
  transition: height .3s, background-color .3s;
  position: sticky;
  top: 0;
}

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

.bg.black {
  background-color: #00008033;
  border-radius: 25px;
  display: none;
}

.bg.white {
  background-color: #f7f8f8cc;
}

.bg.navbarlinkicon {
  max-width: 90%;
  height: 25px;
  display: none;
  inset: -8px auto auto -12px;
}

.bg.herobg {
  background-color: #3e5d6cdb;
  flex: none;
  width: 100%;
  left: auto;
  right: auto;
}

.bg.serviceblockcover {
  background-image: linear-gradient(#0000 67%, #3e5d6ced);
}

.bg.defaultbg {
  background-color: #3e5d6c96;
}

.yellowbutton {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transform-style: preserve-3d;
  background-color: #ffd103;
  border-radius: 1000px;
  align-self: center;
  padding: 10px 35px;
  transition: background-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.yellowbutton:hover {
  background-color: #0f2b5a;
  transform: scale3d(.96, .96, 5);
  box-shadow: 0 0 3px #0f2b5ae6, inset 0 0 0 2px #ffd103;
}

.yellowbutton.navbarbutton {
  margin-left: auto;
}

._30_25 {
  color: var(--sky-blue-2);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

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

._30_25.center.servicesub, ._30_25.center.formtitle, ._30_25.center.formtitle-copy {
  text-align: left;
  align-self: auto;
  margin-top: 10px;
  margin-bottom: 0;
}

._30_25.center.et {
  color: var(--indian-red);
  align-self: auto;
  margin-top: 10px;
  margin-bottom: 20px;
}

.container-2 {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.container-2._84vw {
  padding-left: 8vw;
  padding-right: 8vw;
  position: relative;
}

._3050_2535 {
  padding-top: 30px;
  padding-bottom: 50px;
  padding-left: 0;
  position: relative;
  overflow: hidden;
}

.button {
  border: 2px solid var(--white);
  background-color: var(--cadet-blue);
  box-shadow: 0 1px 7px 0 var(--black-2);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  transition: color .3s, background-color .35s;
  position: relative;
  overflow: hidden;
}

.button:hover {
  color: var(--sky-blue-2);
  background-color: #0000;
}

.button.hero {
  background-color: #385263;
}

.button.hero:hover {
  background-color: var(--cadet-blue);
  color: var(--white-smoke);
}

.button.hero.dc:hover {
  background-color: var(--indian-red);
  color: var(--white);
}

.button.navbutton {
  background-color: var(--deep-sky-blue);
  background-image: radial-gradient(circle at 100% 100%, #0000000d, #0000);
  border-style: none;
  border-radius: 5px;
  padding-left: 17px;
  padding-right: 17px;
  font-size: 17px;
  line-height: 1.5;
}

.button.navbutton:hover {
  background-color: #1f4455;
}

.button.sbb {
  background-color: #0000;
}

.button.sbb:hover {
  background-color: var(--indian-red);
  color: var(--white);
}

.div-block-7 {
  grid-column-gap: 16px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.paragraphy {
  line-height: 1.6;
}

.pagewrapper {
  background-color: var(--white);
  transform-origin: 100% 0;
  overflow: hidden;
}

.pagewrapper.homep {
  margin-top: -85px;
}

.trianglebutton {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transform-style: preserve-3d;
  background-image: url('../images/warnningsign.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 8vh;
  height: 7.12vh;
  margin-left: 1.5vw;
  transition: background-color .3s, transform .3s;
  position: relative;
}

.trianglebutton:hover {
  transform: scale3d(.96, .96, 5);
}

.div-block-13 {
  z-index: 1000;
  background-color: #fffaa0;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 10px 12px;
  display: none;
  position: absolute;
  inset: 0% 23vw auto auto;
  box-shadow: 0 1px 8px #000;
}

.text-span-12 {
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 700;
}

.paragraph-14 {
  text-align: center;
  margin-bottom: 0;
}

._20_50 {
  padding-top: 20px;
  padding-bottom: 50px;
}

._20_50.dbg1 {
  background-image: linear-gradient(#e2e9ec 50%, #fff 50%);
}

.homefeaturewrapper {
  perspective: 1000px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  width: 295px;
  height: 370px;
  margin: 6px 12px;
  transition: transform 1s;
  display: flex;
  position: relative;
}

.homefeaturecontentwrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.homefeatureswrapper {
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  transition: background-color .2s;
  display: flex;
}

.featurefront {
  backface-visibility: hidden;
  perspective: 1000px;
  border-radius: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-2 {
  filter: blur(2px);
  object-fit: cover;
  object-position: 55% 50%;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-2.leftp {
  object-position: 0% 50%;
}

.image-2.ra {
  object-position: 60% 50%;
}

.image-3 {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  height: 70px;
  margin-bottom: 3vw;
  display: none;
  position: relative;
  transform: translate3d(0, 0, 25px);
}

.paragraph-15 {
  backface-visibility: hidden;
  color: var(--black);
  text-align: center;
  transform-style: preserve-3d;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  transform: translate3d(0, 0, 25px);
}

.paragraph-15.back {
  backface-visibility: hidden;
  color: var(--white-smoke);
  text-align: center;
  transform-style: preserve-3d;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  transform: translate3d(0, 0, 25px);
}

.featureback {
  background-color: var(--dark-slate-grey);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  border: 10px solid #fff;
  border-radius: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
}

.divblock {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.slideright {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: grid;
}

.slideleft {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.servicetop {
  background-image: url('../images/e70455c326020fd8646ee38a6499d920.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 30px;
  padding-bottom: 50px;
  padding-left: 0;
  position: relative;
  overflow: hidden;
}

.slideitem-copy {
  perspective: 1000px;
  background-image: linear-gradient(#00f3, #00f3), url('../images/passenger.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25vw;
  max-width: 350px;
  height: 15vw;
  max-height: 350px;
  padding: 15px 10px;
  transition: background-color .7s;
  display: flex;
  position: relative;
}

.slideitem-copy:hover {
  background-image: linear-gradient(#84a8bf80, #84a8bf80), url('../images/passenger.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-bottom-color: #81c4ee;
  box-shadow: 0 20px 10px -10px #0000004d;
}

.div-block-31 {
  grid-column-gap: 10px;
  grid-row-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-columns: 1fr;
  align-self: flex-start;
  margin-top: 6px;
  display: grid;
}

.div-block-31.hide {
  display: none;
}

.paymenticon {
  object-fit: contain;
  border-radius: 3px;
  height: 34px;
  overflow: hidden;
  box-shadow: 1px 1px 4px #00000052;
}

.space-2 {
  font-size: 14px;
}

.divider60 {
  background-image: linear-gradient(to right, #f05526e6, #e62332);
  width: 60%;
  height: 5px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.divider60.footerd {
  background-color: #e5e7e84f;
  background-image: none;
  width: 80%;
  margin-bottom: 0;
  position: relative;
}

.div-block-36 {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  margin-top: 20px;
  display: flex;
}

.div-block-37 {
  display: flex;
}

.footer_icon-2 {
  height: 18px;
  margin-top: 4px;
  margin-right: 10px;
}

.footertitle-2 {
  color: #fcfdff;
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.footertitle-2.w--current {
  color: #000;
  font-weight: 500;
}

.footerparagraph-2 {
  color: #e5e7e8;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.5;
}

.footerparagraph-2.main {
  font-size: 17px;
  line-height: 1.6;
}

.footerparagraph-2.titlenop {
  color: #fcfdff;
  margin-bottom: 3px;
  font-size: 20px;
  font-weight: 600;
}

.footer-2 {
  background-color: #558ca4;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 -2px 20px #4f5a6624;
}

.footer-content-block-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 0;
  padding-bottom: 0;
  text-decoration: none;
  display: flex;
  position: relative;
}

.link-5 {
  color: #e5e7e8;
  text-decoration: none;
  transition: color .4s;
}

.link-5:hover {
  color: #fcfdff;
  text-decoration: underline;
}

.footeritemwrapper-2 {
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 35vw;
  margin-bottom: 10px;
  margin-right: 2%;
  display: flex;
}

.footerwrapper {
  z-index: 5;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.footerlink-2 {
  color: #e5e7e8;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
}

.footerlink-2:hover {
  color: #fcfdff;
}

.footerlink-2.w--current {
  font-weight: 500;
}

.footerlink-2._20left {
  margin-right: 40px;
  line-height: 1.6;
}

.sub-footer-4 {
  z-index: 4;
  width: 100%;
  padding: 15px 10%;
  position: relative;
}

.subfooterwrapper-2 {
  z-index: 1;
  text-align: center;
  justify-content: flex-start;
  max-width: 100%;
  display: flex;
  position: relative;
}

.subfootertext-3 {
  color: #e5e7e8;
  text-align: left;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  display: inline-block;
}

.div-block-39 {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 10px;
  display: flex;
}

.navbarlinkwrapper-2 {
  position: relative;
}

.new-item-wrapper-2 {
  padding-left: 10px;
  padding-right: 10px;
}

.new-item-wrapper-2.main {
  align-items: center;
  margin-left: 1vw;
  display: flex;
}

.logo-2 {
  object-fit: contain;
  height: 45%;
  position: relative;
  bottom: 0;
}

.brand-2 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-right: auto;
  display: flex;
}

.dropdownlink {
  color: var(--dark-slate-grey);
  text-align: left;
  white-space: nowrap;
  margin-left: 0;
  margin-right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.2vw;
  text-decoration: none;
  transition: color .3s;
}

.dropdownlink:hover {
  background-color: var(--salmon);
  color: #fcfdff;
}

.dropdownlink.w--current {
  color: #000;
}

.dropdownlink.w--current:hover {
  color: #fff;
}

.bg-2 {
  position: absolute;
  inset: 0%;
}

.bg-2.image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.headernav-2 {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.navbar-2 {
  z-index: 999;
  perspective: 3000px;
  transform-origin: 50% 0;
  background-color: #0000;
  width: 100vw;
  max-width: 100vw;
  height: 85px;
  margin-top: 35px;
  transition: height .3s, background-color .3s;
  position: sticky;
  inset: 0% 0% auto;
}

.dropdown-list-wrapper-2 {
  background-color: #fff;
  flex-direction: column;
  align-items: stretch;
  margin-top: 10px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 3px #00000080;
}

.dropdown-list-wrapper-2.w--open {
  background-color: #f5f7fa;
  margin-top: 30px;
  padding: 30px 20px;
  line-height: 1em;
  right: -150px;
  box-shadow: 0 1px 9px #0907180d, 0 24px 38px #1208501a;
}

.dropdown-list-wrapper-2.w--open:hover {
  font-style: normal;
  font-weight: 400;
}

.navbarlink-2 {
  color: #000;
  white-space: nowrap;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 1.35vw;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  transition: color .35s;
  display: block;
  position: relative;
}

.navbarlink-2.w--current {
  color: #f74d00;
  font-weight: 800;
}

.navbarlink-2.dropdpwn:hover {
  font-style: normal;
}

.div-block-41 {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.nav-container-2 {
  background-color: #ffffff96;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  height: 100%;
  padding-left: 2.5vw;
  padding-right: 2vw;
  display: flex;
  box-shadow: 0 1px 3px #00000080;
}

.dropdown-list-2 {
  background-color: #0000;
  inset: 100% auto auto 0%;
}

.dropdown-list-2.w--open {
  background-color: #0000;
  display: block;
  position: absolute;
}

.navmenu-2 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-3:hover {
  background-color: #ad1115;
}

.paragraph {
  color: #6c6c6c;
  font-size: 16px;
}

.paragraph.main {
  background-color: var(--white);
  color: #e6413d;
  text-align: center;
  max-width: 85%;
  margin-bottom: 30px;
  padding: 10px 15px;
  font-weight: 700;
}

.hero-title {
  z-index: 2;
  color: var(--white-smoke);
  text-align: center;
  margin-top: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}

.container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
  display: flex;
  position: relative;
}

.container.special, .container.servicebc {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.top-text {
  color: var(--deep-sky-blue);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.3;
}

.div-block-56 {
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  max-width: 100%;
  margin-top: 15px;
  display: grid;
}

.homesection1 {
  color: #0000;
  align-items: center;
  padding-top: 187px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.homes1content {
  z-index: 1;
  color: #fff;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 24px;
  font-weight: 500;
  display: flex;
  position: relative;
}

.image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.div-block-57 {
  flex-direction: column;
  align-items: stretch;
  width: 85%;
  display: flex;
  position: relative;
}

.text-span-20 {
  letter-spacing: 0;
  text-shadow: 0 0 2px var(--black-2);
  font-size: 17px;
  font-weight: 700;
}

.paragraph-23 {
  margin-bottom: 25px;
}

.link-7 {
  color: var(--medium-blue);
}

.spacer-15 {
  width: 100%;
  height: 15px;
}

.mainbutton {
  cursor: pointer;
  background-color: #fad29a;
  flex: none;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding-left: 20px;
  padding-right: 70px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mainwrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: 100%;
  display: grid;
  position: relative;
}

._25_20 {
  color: var(--sky-blue-2);
  text-align: left;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 25px;
  line-height: 1.6;
  position: relative;
}

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

.whitedivider {
  z-index: 2;
  background-color: #fff;
  width: .5px;
  height: 100%;
  position: relative;
}

.content-container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: auto;
}

.content-container.default {
  left: 0%;
}

.paragraph-2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 17px;
  position: relative;
}

.hidecontent {
  transform-origin: 50% 100%;
  flex-direction: column;
  max-height: 34%;
  margin-bottom: 20px;
  display: flex;
}

.hidecontent.default, .hidecontent.second, .hidecontent.thrid {
  align-items: flex-start;
}

.contentwrapper {
  z-index: 3;
  transform-origin: 50% 100%;
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  height: 40vw;
  padding-bottom: 30px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contentwrapper:hover {
  background-color: #3e5d6c96;
}

.pageloadcover {
  z-index: 1000;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.image-12 {
  object-fit: contain;
  width: 200px;
}

.list-copy {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 80%;
  padding-left: 20px;
  display: grid;
}

.special {
  display: inline-block;
}

.spacehide {
  font-size: 1px;
}

.imagediv {
  perspective: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80vw;
  max-width: 900px;
  height: 30vw;
  max-height: 337.5px;
  display: flex;
  position: relative;
}

.servicecontainer {
  grid-column-gap: 16px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: center;
  display: grid;
}

.borderp {
  border: 12px solid #ecf0f1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.imagep {
  object-fit: cover;
  width: 96%;
  height: 90%;
  display: block;
  position: relative;
}

._32_25 {
  color: #0e6dad;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.hollow-button {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  border: 1.5px solid #fff;
  border-radius: 4px;
  align-self: center;
  padding: 5px 30px;
  font-size: 17px;
  font-weight: 300;
  transition: background-color .3s, border .3s, color .3s;
  display: block;
}

.hollow-button:hover {
  color: #2e9dff;
  border-color: #2e9dff;
}

.hollow-button.blackbutton {
  color: #6a859c;
  transform-style: preserve-3d;
  border-color: #6a859c;
  align-self: auto;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  transition: transform .3s, background-color .3s, color .3s;
  display: block;
  transform: perspective(500px);
}

.hollow-button.blackbutton:hover {
  transform: translate3d(0, -5px, 2px);
  box-shadow: 0 4px 7px 1px #192024b3;
}

._4050_1030 {
  text-align: center;
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 50px;
  position: relative;
}

.imagecover {
  z-index: 2;
  background-color: #fff;
  width: 110%;
  height: 110%;
  display: none;
  position: absolute;
  inset: -5% 0% auto -5%;
}

.paragraph-24 {
  text-align: left;
  margin-bottom: 0;
}

.div-block-58 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: flex-start start;
  max-width: 80vw;
  display: grid;
}

.div-block-17 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  display: grid;
}

.div-block-18 {
  align-items: center;
  display: flex;
}

.image-6 {
  object-fit: contain;
  width: 80px;
  margin-right: 20px;
}

.image-6.speical {
  width: 62px;
  height: 62px;
  margin-right: 0;
  display: block;
  position: relative;
}

.image-6.speical._1 {
  align-self: flex-start;
  bottom: -10px;
  right: 5px;
}

.image-6.speical._2 {
  align-self: flex-end;
  position: relative;
  top: -10px;
  left: 5px;
}

.paragraph-3 {
  text-align: left;
  margin-bottom: 0;
}

.div-block-42 {
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: center;
  width: 80px;
  margin-right: 30px;
  display: flex;
}

.blockwrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 5px;
  display: flex;
}

.list {
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 20px;
  list-style-type: disc;
}

.list-item-2 {
  text-align: left;
  list-style-type: disc;
}

.div-block-18-copy {
  background-color: var(--cadet-blue);
  color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.div-block-18-copy:hover {
  box-shadow: 0 3px 5px 0 var(--black-2);
  background-color: #79abc2;
  top: -2px;
}

.div-block-17-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-bottom: 15px;
  display: grid;
}

.paragraph-8 {
  text-align: left;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.paragraph-9 {
  text-align: left;
  margin-bottom: 0;
  font-size: 16px;
}

.link-8 {
  color: var(--dark-slate-grey);
}

.formwrapper {
  flex-direction: column;
  align-items: stretch;
  width: 80vw;
  display: flex;
}

.html-embed-2 {
  display: none;
}

.div-block-58-copy {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: flex-start start;
  width: 80vw;
  display: flex;
}

.formsection {
  text-align: center;
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 50px;
  position: relative;
}


.iframecode.hide {
  display: block;
}

@media screen and (min-width: 1440px) {
  .nav-link-drop-down {
    margin-top: 4px;
    line-height: 1em;
    display: inline-block;
  }

  .dropdownlink {
    border-radius: 0;
    line-height: 1.6;
  }

  .dropdown-list-wrapper-2:hover {
    font-style: normal;
    font-weight: 400;
  }

  .navbarlink-2 {
    font-size: 18px;
  }

  .dropdown-list-2:hover {
    font-style: normal;
    font-weight: 400;
  }

  .homesection1 {
    padding-bottom: 200px;
  }

  .hidecontent {
    max-height: 35%;
  }

  .contentwrapper {
    height: 30vw;
  }
}

@media screen and (max-width: 991px) {
  .nav-link-drop-down {
    font-size: 25px;
  }

  .nav-link-drop-down.dropdown {
    text-align: center;
    width: 100%;
  }

  .navbar {
    margin-top: 5vh;
  }

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

  .bg.serviceblockcover {
    background-image: linear-gradient(#0000 59%, #3e5d6ced 94%);
  }

  .yellowbutton.navbarbutton {
    margin-right: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
  }

  ._30_25.center.servicesub, ._30_25.center.formtitle, ._30_25.center.formtitle-copy, ._30_25.center.et {
    margin-top: 0;
  }

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

  ._3050_2535 {
    padding-bottom: 35px;
  }

  .button.navbutton {
    font-size: 16px;
  }

  .trianglebutton {
    margin-left: 10px;
    margin-right: 20px;
  }

  .div-block-13 {
    right: 30vw;
  }

  .homefeaturewrapper {
    margin: 4px 8px 8px;
  }

  .homefeaturecontentwrapper {
    align-items: center;
  }

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

  .paragraph-15.back {
    font-size: 15px;
  }

  .slideright, .slideleft {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .servicetop {
    padding-top: 20px;
  }

  .slideitem-copy {
    border-radius: 20px;
    width: 35vw;
    height: 20vw;
    margin-top: 10px;
  }

  .space-2 {
    font-size: 10px;
  }

  .divider60.footerd {
    margin-top: 25px;
  }

  .div-block-37 {
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .footertitle-2 {
    font-size: 35px;
  }

  .footerparagraph-2.main {
    font-size: 16.5px;
  }

  .footerparagraph-2.titlenop {
    margin-bottom: 0;
  }

  .footer-2 {
    padding-top: 35px;
  }

  .footer-content-block-2 {
    text-align: left;
    margin-bottom: 0;
  }

  .navbuttonicons-2 {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 60%;
    min-height: 18px;
    display: flex;
  }

  .hearder-button-line-top-2 {
    background-color: #000;
    width: 100%;
    min-height: 2px;
    max-height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .new-item-wrapper-2 {
    justify-content: center;
    margin-right: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
  }

  .new-item-wrapper-2.main {
    margin-left: 0;
  }

  .nav-menu-button-2 {
    perspective: 10000px;
    color: #fff;
    width: 45px;
    min-width: 45px;
    min-height: 45px;
    padding: 0;
    font-size: 30px;
    transition: background-color .3s, transform .3s;
  }

  .nav-menu-button-2:hover {
    transform: scale(.96);
  }

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

  .dropdownlink {
    color: #e5e7e8;
    text-align: center;
    white-space: normal;
    padding: 5px 10px;
    font-size: 17px;
  }

  .dropdownlink.w--current {
    color: #fcfdff;
  }

  .headernav-2 {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
  }

  .hearder-button-line-bottom-2 {
    background-color: #000;
    width: 100%;
    min-height: 2px;
    max-height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .dropdown-list-wrapper-2 {
    background-color: #ffffff17;
    margin-top: 1px;
    margin-bottom: 5px;
  }

  .dropdown-list-wrapper-2.w--open {
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    padding: 25px 10px;
    display: flex;
    position: static;
  }

  .navbarlink-2 {
    color: #e5e7e8;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
  }

  .navbarlink-2.w--current {
    color: #fcfdff;
  }

  .navbarlink-2.dropdpwn {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-41 {
    flex-direction: column;
    justify-content: space-between;
    width: 60vw;
    height: 100vh;
    padding-top: 30px;
    display: flex;
    position: relative;
  }

  .dropdown-list-2 {
    position: relative;
    top: 0%;
    left: auto;
  }

  .dropdown-list-2.w--open {
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    display: block;
    position: static;
  }

  .navmenu-2 {
    background-color: #4485a3;
    width: auto;
    height: 100vh;
    max-height: 100vh;
    margin-top: -35px;
    padding-left: 3%;
    padding-right: 3%;
    position: fixed;
    inset: 0% 0% 0% auto;
    overflow: hidden;
    box-shadow: 0 1px 9px -4px #1f243214, 0 24px 38px #1208501a;
  }

  .hearder-button-line-medium-2 {
    background-color: #000;
    width: 100%;
    min-height: 2px;
    max-height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

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

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

  .container.heroc {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-56 {
    grid-column-gap: 2vw;
  }

  .homesection1 {
    flex-direction: column;
    padding-top: 176px;
    padding-bottom: 100px;
  }

  .homes1content {
    align-items: center;
    width: 100%;
  }

  .div-block-57 {
    width: 100%;
  }

  ._25_20 {
    font-size: 24px;
    line-height: 1.3;
  }

  .paragraph-2 {
    line-height: 1.4;
  }

  .hidecontent {
    max-height: 45%;
    margin-bottom: 10px;
  }

  .contentwrapper {
    height: 45vw;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .list-copy {
    width: 100%;
  }

  .imagediv {
    width: 90vw;
    height: 33.8vw;
  }

  .imagep {
    width: 95%;
    height: 88%;
  }

  .div-block-58 {
    max-width: 90vw;
  }

  .formwrapper, .div-block-58-copy {
    width: 85vw;
  }
}

@media screen and (max-width: 767px) {
  .body {
    line-height: 1.5;
  }

  .navtop-paragraph {
    font-size: 15px;
  }

  .bg.serviceblockcover, .bg.defaultbg, .yellowbutton.navbarbutton {
    display: none;
  }

  ._30_25 {
    margin-top: 0;
    font-size: 28px;
  }

  ._30_25.center.et {
    margin-bottom: 10px;
  }

  .container-2 {
    height: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .button {
    font-size: 16px;
  }

  .div-block-7 {
    grid-template-columns: 1fr;
  }

  .pagewrapper.homep {
    margin-top: -75px;
  }

  .trianglebutton {
    display: none;
  }

  .div-block-13 {
    padding: 5px 8px;
    top: 5vh;
    right: 15vw;
  }

  .text-span-12 {
    font-size: 17px;
  }

  .paragraph-14 {
    font-size: 13px;
  }

  ._20_50 {
    padding-bottom: 30px;
  }

  .homefeaturewrapper {
    width: 280px;
    height: 360px;
  }

  .homefeatureswrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .paragraph-15.back {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16.5px;
    line-height: 1.5;
  }

  .servicetop {
    padding-bottom: 30px;
  }

  .slideitem-copy {
    margin-bottom: 0;
    padding-top: 1.3vh;
    padding-bottom: 1.3vh;
  }

  .slideitem-copy:hover {
    padding-top: 1.25vh;
    padding-bottom: 1.35vh;
  }

  .div-block-31 {
    margin-top: 9px;
  }

  .divider60.footerd {
    width: 90%;
    margin-top: 20px;
  }

  .div-block-37 {
    flex-wrap: wrap;
  }

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

  .footertitle-2 {
    font-size: 30px;
  }

  .footerparagraph-2.main {
    line-height: 1.5;
  }

  .footer-2 {
    padding-top: 27px;
  }

  .footeritemwrapper-2 {
    min-width: 0;
    margin-bottom: 10px;
    margin-right: 10%;
  }

  .sub-footer-4 {
    padding-top: 13px;
    padding-bottom: 10px;
  }

  .subfooterwrapper-2 {
    height: auto;
  }

  .subfootertext-3 {
    flex: 1;
  }

  .new-item-wrapper-2 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

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

  .dropdownlink {
    margin-bottom: 0;
    padding-top: 6px;
    padding-bottom: 5px;
    font-size: 16px;
  }

  .headernav-2 {
    grid-column-gap: 16px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
  }

  .navbar-2 {
    height: 75px;
  }

  .dropdown-list-wrapper-2.w--open {
    text-align: left;
    margin-left: 0;
  }

  .navbarlink-2 {
    font-size: 17px;
  }

  .nav-container-2 {
    padding-left: 27px;
    padding-right: 18px;
  }

  .dropdown-list-2.w--open {
    text-align: left;
    padding-top: 5px;
  }

  .navmenu-2 {
    flex-direction: row;
    align-items: stretch;
  }

  .button-3 {
    font-size: 16px;
  }

  .paragraph.main {
    max-width: 100%;
  }

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

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .div-block-56 {
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .homesection1 {
    padding-top: 160px;
    padding-bottom: 78px;
  }

  .homes1content {
    padding-left: 17px;
    padding-right: 17px;
  }

  .mainwrapper {
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
  }

  ._25_20 {
    font-size: 22px;
    line-height: 1.3;
  }

  .whitedivider {
    width: 100%;
    height: .5px;
    display: none;
  }

  .content-container {
    border-bottom: 1px solid #fff;
    position: relative;
  }

  .paragraph-2 {
    line-height: 1.4;
  }

  .hidecontent {
    margin-bottom: 0;
  }

  .contentwrapper {
    background-color: #3e5d6c96;
    height: auto;
    min-height: 30vh;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .list-copy {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .special {
    margin-top: 5px;
  }

  .imagediv {
    perspective: 1000px;
  }

  .servicecontainer {
    grid-row-gap: 10px;
  }

  .borderp {
    border-width: 8px;
  }

  ._32_25 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  .hollow-button.blackbutton {
    margin-top: 15px;
  }

  ._4050_1030 {
    padding-top: 23px;
    padding-bottom: 38px;
  }

  .div-block-58 {
    grid-row-gap: 10px;
  }

  .div-block-17 {
    margin-top: 4px;
  }

  .div-block-18 {
    align-items: flex-start;
  }

  .image-6 {
    margin-right: 20px;
  }

  .blockwrapper {
    margin-top: 5px;
  }

  .blockwrapper.first {
    margin-top: 0;
  }

  .div-block-18-copy {
    align-items: flex-start;
    padding: 15px 17px;
  }

  .div-block-17-copy {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .formwrapper {
    width: 95vw;
    margin-top: 5px;
  }

  .formwrapper.first {
    margin-top: 0;
  }

  .div-block-58-copy {
    grid-row-gap: 10px;
    width: 90vw;
  }

  .formsection {
    padding-top: 23px;
    padding-bottom: 38px;
  }
}

@media screen and (max-width: 479px) {
  .body {
    font-size: 17px;
  }

  .navbartop {
    height: 55px;
  }

  .nav-container {
    justify-content: space-between;
    max-width: 90%;
  }

  .nav-container.navtop-container {
    justify-content: center;
  }

  .navtop-paragraph {
    display: none;
  }

  .navtop-paragraph.mobile {
    flex-direction: column;
    display: flex;
  }

  .link {
    display: inline-block;
  }

  .navbar {
    margin-top: 9vh;
  }

  .yellowbutton {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 3.8vw;
  }

  ._30_25 {
    font-size: 25px;
  }

  ._30_25.center.servicesub, ._30_25.center.formtitle, ._30_25.center.formtitle-copy, ._30_25.center.et {
    margin-top: 0;
  }

  .container-2 {
    height: auto;
    padding-left: 11px;
    padding-right: 11px;
  }

  .button {
    margin-bottom: 0;
  }

  .pagewrapper.homep {
    margin-top: -70px;
  }

  .div-block-13 {
    top: 9vh;
    right: 20vw;
  }

  .text-span-12 {
    font-size: 3.5vw;
  }

  .paragraph-14 {
    font-size: 3vw;
  }

  .homefeaturewrapper {
    width: 90vw;
    max-width: 350px;
    height: 101.87vw;
    max-height: 390px;
  }

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

  .paragraph-15.back {
    font-size: 4vw;
  }

  .slideitem-copy {
    width: 80vw;
    height: 50vw;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .slideitem-copy:hover {
    padding-top: 9px;
    padding-bottom: 11px;
  }

  .div-block-31 {
    grid-column-gap: 2vw;
  }

  .paymenticon {
    max-width: 18vw;
  }

  .divider60 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .divider60.footerd {
    margin-top: 10px;
  }

  .div-block-37 {
    flex-flow: column;
  }

  .footertitle-2 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  .footer-2 {
    padding-top: 10px;
  }

  .footer-content-block-2 {
    max-width: 95%;
  }

  .footeritemwrapper-2 {
    margin-bottom: 5px;
    margin-right: 0%;
  }

  .footerwrapper {
    padding-left: 8%;
    padding-right: 8%;
  }

  .footerlink-2._20left {
    margin-right: 0;
  }

  .sub-footer-4 {
    padding-top: 10px;
    padding-left: 8%;
    padding-right: 8%;
  }

  .subfooterwrapper-2 {
    height: auto;
  }

  .div-block-39 {
    flex-flow: column;
  }

  .new-item-wrapper-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .brand-2 {
    box-shadow: none;
    background-color: #0000;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .dropdownlink {
    text-align: center;
    white-space: normal;
    font-size: 15px;
  }

  .headernav-2 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .navbar-2 {
    height: 70px;
    margin-top: 55px;
  }

  .dropdown-list-wrapper-2.w--open {
    padding-top: 30px;
  }

  .navbarlink-2 {
    text-align: center;
    font-size: 15.5px;
  }

  .div-block-41 {
    width: 70vw;
    padding-top: 20px;
  }

  .nav-container-2 {
    justify-content: space-between;
    padding-left: 17.55px;
    padding-right: 11.7px;
  }

  .navmenu-2 {
    margin-top: -55px;
  }

  .button-3 {
    margin-bottom: 0;
  }

  .paragraph.main {
    width: 100vw;
    max-width: none;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .hero-title {
    margin-bottom: 7px;
    font-size: 30px;
    line-height: 1.2;
  }

  .container {
    padding-left: 13px;
    padding-right: 13px;
  }

  .div-block-56 {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .homesection1 {
    padding-top: 137px;
    padding-bottom: 60px;
  }

  .homes1content {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .spacer-15 {
    display: none;
  }

  ._25_20 {
    font-size: 20px;
  }

  .paragraph-2 {
    font-size: 16px;
  }

  .list-copy {
    grid-template-columns: 1fr;
    display: none;
  }

  ._32_25 {
    font-size: 25px;
  }

  .hollow-button {
    white-space: nowrap;
    font-size: 3.5vw;
  }

  .hollow-button.blackbutton {
    font-size: 17px;
  }

  ._4050_1030 {
    padding-top: 15px;
    padding-bottom: 30px;
  }

  .div-block-17 {
    margin-top: 9px;
  }

  .div-block-18 {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-6 {
    width: 70px;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .image-6.speical {
    width: 70px;
    height: 70px;
    margin-right: 5px;
  }

  .image-6.speical._1, .image-6.speical._2 {
    position: static;
  }

  .div-block-42 {
    flex-direction: row;
    align-items: flex-start;
    width: auto;
    margin-bottom: 5px;
    margin-right: 0;
  }

  .div-block-18-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .div-block-17-copy {
    margin-top: 9px;
  }

  .formsection {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

#w-node-_08c7210b-d155-8115-81d1-7a223a2b6c04-3cf0838b, #w-node-_9610b80b-4164-b7b3-ecee-4328b8088a3f-3cf0838b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_2d48b4a1-0d8b-5b21-36d6-b5882a4f25de-2a4f25cc {
  place-self: stretch stretch;
}

@media screen and (max-width: 991px) {
  #w-node-_1586a353-1488-928f-7af0-1f03c6eb36be-3cf0838b {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_08c7210b-d155-8115-81d1-7a223a2b6c04-3cf0838b, #w-node-_9610b80b-4164-b7b3-ecee-4328b8088a3f-3cf0838b, #w-node-_1586a353-1488-928f-7af0-1f03c6eb36be-3cf0838b {
    grid-column: span 1 / span 1;
  }
}


