:root {
  --text: #929aa5;
  --midnight-blue: #08305c;
  --white: white;
  --red: #e22e12;
  --slate-grey: #6d768d;
  --title: #678ac3;
  --button21: #6488c3;
  --button22: #4d93e0;
  --button11: #5bacd7;
  --button12: #8fc9e8;
  --buttontext: #105378;
  --salmon: #fe585d;
  --steel-blue: #1277e2;
  --white-smoke: #f7f8f8;
  --dim-grey: #56585a;
  --gold: #ffe100;
  --gold-2: #ffd75d;
  --snow: #fff9f9;
  --black: black;
  --light-green: #97d47d;
  --white-smoke-2: #ebebeb;
  --light-sky-blue: #9edafb;
  --khaki: #fbd872;
  --shadow: #010a301a;
  --alice-blue: #f6fcff;
  --light-sea-green: #00bab3;
}

.body {
  color: var(--text);
  font-family: Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

.text-span-3 {
  text-transform: uppercase;
  font-weight: 700;
}

.text-field-r {
  border: 1px solid var(--midnight-blue);
  background-color: var(--white);
  color: #9ea6b0;
  padding-left: 20px;
  padding-right: 20px;
}

.text-field-r.height {
  min-width: 100%;
  max-width: 75vw;
  height: 100px;
  min-height: 100px;
}

.form {
  grid-column-gap: 23px;
  grid-row-gap: 16px;
  flex-flow: column wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  place-items: start stretch;
  padding: 5vh 2vw;
  display: grid;
  overflow: hidden;
}

.titlebig {
  color: var(--midnight-blue);
  align-self: flex-start;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

.titlebig.last {
  color: var(--red);
}

.success-message {
  border-radius: 10px;
  margin-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.singel_item_div {
  flex-flow: column wrap;
  align-self: stretch;
  display: flex;
}

.multi_items_col {
  flex-direction: column;
  flex: 0 auto;
  align-items: flex-start;
  width: 48%;
}

.field-label {
  font-size: 17px;
  font-weight: 400;
}

.titlesmall {
  align-self: flex-start;
  margin-bottom: 0;
}

.titlesmall.last {
  color: var(--red);
  margin-bottom: 5px;
}

.titlesmall.last.hidden {
  display: none;
}

.multi_items_div {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center space-between;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.success-message-content {
  color: #3b97ff;
  text-align: center;
  align-self: center;
  font-size: 19px;
  line-height: 1.6em;
}

.formtitle {
  color: #7ebaff;
  text-align: center;
  align-self: center;
  font-size: 30px;
  line-height: 1.5em;
}

.navbar-dropdown {
  color: var(--slate-grey);
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 1.5vw;
  text-decoration: none;
  transition: color .35s;
  display: inline-block;
}

.navbar-dropdown:hover {
  color: var(--title);
  font-weight: 500;
}

.navbar-dropdown.w--current {
  color: var(--midnight-blue);
  font-weight: 500;
}

.navbar-dropdown.dropdpwn {
  display: inline;
}

.navbar-dropdown.dropdpwn:hover {
  font-style: normal;
}

.dropdown-list-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.dropdown-list-wrapper.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.w--open:hover {
  font-style: normal;
  font-weight: 400;
}

.navmenu {
  background-color: #0000;
  position: static;
  overflow: visible;
}

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

.brand {
  margin-left: -5px;
  margin-right: auto;
  transition: transform .3s;
}

.brand:hover {
  transform: scale(.96);
}

.button {
  background-color: #0000;
  background-image: linear-gradient(to bottom, var(--button21), var(--button22));
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform-style: preserve-3d;
  border-radius: 1000px;
  padding: 15px 35px;
  font-weight: 500;
  transition: background-color .3s, transform .3s;
}

.button:hover {
  background-image: linear-gradient(to bottom, var(--button11), var(--button12));
  color: var(--buttontext);
  transform: scale3d(.96, .96, 5);
}

.button.header-button {
  padding: 10px 30px;
  font-size: 16px;
}

.button.header-button.mobile {
  display: inline-block;
}

.button.header-button.hidden {
  background-color: #f5f7fa;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  display: block;
}

.button.header-button.hidden.b2 {
  margin-left: 2vw;
}

.button.whitehover:hover {
  border: 1px solid var(--button12);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.button.service {
  white-space: nowrap;
}

.button.make_a_wish_button {
  z-index: 2;
  background-color: var(--salmon);
  background-image: none;
  transition-property: none;
  position: relative;
  overflow: hidden;
}

.button.make_a_wish_button:hover {
  transform: ;
  color: var(--white);
}

.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;
}

.nav-container {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.nav-container.navtop-container {
  height: 100%;
}

.new-item-wrapper {
  justify-content: center;
  align-items: center;
  margin-right: 1.5vw;
  display: flex;
}

.new-item-wrapper.button-mobile {
  display: none;
}

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

.logo {
  height: 10vh;
}

.dropdown-link {
  white-space: nowrap;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color .3s;
}

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

.dropdown-list {
  display: none;
}

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

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

.navbar {
  z-index: 99;
  background-color: var(--white);
  perspective: 3000px;
  width: 100vw;
  max-width: 100vw;
  height: 13vh;
  margin-top: 5vh;
  transition: height .3s, background-color .3s;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.navbartop {
  background-color: var(--steel-blue);
  max-width: 100vw;
  height: 5vh;
  position: absolute;
  inset: 0% 0% auto;
}

.navtop-paragraph {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  font-size: 13px;
}

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

.link {
  color: var(--white);
  text-decoration: none;
}

.homes1 {
  padding-top: 20px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.container {
  flex-direction: column;
  width: 88vw;
  max-width: 105rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.container.homes1container {
  z-index: 5;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.container.homeaucontainer {
  z-index: 2;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: grid;
  position: relative;
}

.container.aboutuss1container {
  z-index: 3;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container.footercontainer {
  grid-column-gap: 2.3rem;
  grid-template-rows: auto auto;
  grid-template-columns: .8fr 1fr 1fr;
  grid-auto-flow: row;
  align-items: start;
}

.container.homeservicecontainer, .container.aboutuss2container, .container.servicecontainer {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container.pt {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.container.formcontainer {
  z-index: 5;
  background-color: #fff9f9;
  border-radius: 20px;
  max-width: none;
  margin-top: -70px;
  position: relative;
  box-shadow: 0 0 20px -3px #acacac;
}

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

.bg.gredient {
  z-index: 1;
  background-image: linear-gradient(90deg, #0000, #1277e2f2 53%, #0368d3 84%);
  width: 90%;
  inset: 0% 0% 0% auto;
}

.bg.gredient.blurbg {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-image: none;
  width: 50%;
}

.bg.star {
  width: 35%;
  top: -30%;
  left: auto;
  right: auto;
}

.bg.v2 {
  z-index: 3;
}

.bg.herobg {
  background-image: linear-gradient(#767da6d1, #fff), url('../images/bg_worldmap.webp');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bg.format1 {
  background-image: radial-gradient(circle at 0 100%, #ffffffe6, #fff 41% 67%, #ffffffd9), url('../images/bg_worldmap.webp');
  background-position: 0 0, 50%;
  background-size: auto, auto;
}

.s1c1bg {
  transform-origin: 0 0;
  width: 90%;
  position: absolute;
  inset: 0%;
}

.s1c1bg._1 {
  z-index: 0;
}

.s1c1bg._2 {
  z-index: 2;
}

.page-title {
  color: #000;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.3em;
}

.page-title.s1c1 {
  color: var(--white);
  text-align: left;
  font-size: 35px;
  font-weight: 500;
}

.top-text {
  color: #d77474;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.top-text.hero {
  color: var(--midnight-blue);
  text-align: left;
  margin-bottom: -20px;
}

.s1c1content {
  z-index: 4;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 70px;
  padding-bottom: 100px;
  padding-left: 65%;
  display: flex;
  position: relative;
}

.text-span-4 {
  color: #ffe100;
}

.mapsection {
  background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/annex7.jpeg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding-top: 7vh;
  padding-bottom: 7vh;
  overflow: hidden;
}

.container-8 {
  max-width: 90%;
}

.mapcontainer {
  justify-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
  position: relative;
}

.h2 {
  color: var(--midnight-blue);
  font-weight: 500;
  line-height: 1.3;
}

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

.h2.center.homes2title {
  color: var(--white-smoke);
  margin-top: 0;
  font-size: 45px;
  font-weight: 400;
}

.h2.center.autitle {
  color: var(--dim-grey);
  text-align: left;
  max-width: 300px;
  margin-top: 0;
  font-size: 45px;
  font-weight: 400;
}

.h2.center.autitlewide {
  color: var(--white);
  max-width: 700px;
  margin-top: 0;
  font-size: 45px;
  font-weight: 400;
}

.h2.center.auptitle {
  color: var(--dim-grey);
  text-align: center;
  margin-top: 0;
  font-size: 45px;
  font-weight: 400;
}

.h2.center.servicetitle {
  color: var(--steel-blue);
  margin-top: 0;
  font-size: 45px;
  font-weight: 400;
}

.h2.center.makeawishtitle {
  color: var(--dim-grey);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
  font-weight: 400;
}

.different-font {
  color: var(--midnight-blue);
  font-size: 56px;
  font-weight: 400;
  position: relative;
}

.different-font.yellow {
  color: var(--gold);
}

.homeau {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.topicon {
  width: 70px;
  height: auto;
}

.divider {
  background-color: var(--button21);
  width: 100px;
  height: 2px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.paragraph {
  text-align: center;
  max-width: 500px;
  font-weight: 300;
  line-height: 1.6;
}

.paragraph.align {
  text-align: left;
}

.guranteeswrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-width: 90%;
  padding: 50px 30px;
  transition: background-color .2s;
  display: grid;
}

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

.itemiconwrapper {
  background-color: var(--white);
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 13px;
  transition: transform .3s, box-shadow 2s cubic-bezier(.25, .46, .45, .94), background-color .3s;
  display: flex;
}

.itemiconwrapper:hover {
  background-color: var(--gold-2);
  box-shadow: 0 0 0 8px var(--white), 0 0 40px 10px var(--button11);
  transform: scale(.96);
}

.guranteetitle {
  z-index: 1;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}

.paragraph-2 {
  text-align: center;
  line-height: 1.9;
}

.aboutuss3 {
  background-color: var(--white-smoke);
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 40px;
  display: grid;
}

.auhomecontentwrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 30px;
  display: flex;
}

.aus3contentwrapper {
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  display: flex;
  position: relative;
}

.list {
  border-bottom: 1px solid #929aa559;
  margin-bottom: 0;
  padding-bottom: 18px;
}

.list.last {
  border-bottom-width: 0;
}

.check {
  color: var(--button22);
  margin-right: 20px;
}

.homes3 {
  background-color: var(--midnight-blue);
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.homeservicewrapper {
  background-color: var(--white-smoke);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 35vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.homeserviceswrapper {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding-top: 50px;
  padding-bottom: 50px;
  transition: background-color .2s;
  display: grid;
}

.topwrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 35vw;
  height: 35vw;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.image {
  position: absolute;
  inset: 0%;
}

.image-hight-wrapper {
  overflow: hidden;
}

.imageovertitle {
  z-index: 2;
  color: var(--snow);
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}

.imageovericon {
  z-index: 2;
  width: 70px;
  margin-bottom: auto;
  position: relative;
}

.highlight {
  z-index: 1;
  background-color: #ffffff4d;
  width: 200%;
  height: 90px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.serviceparag {
  color: var(--midnight-blue);
  text-align: center;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1.6;
}

.link-block {
  position: absolute;
  inset: 0%;
}

.footer {
  background-color: #e8f4fa;
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
}

.sub-footer {
  background-color: #dbdbdb1a;
  border-top: 1px solid #ebebeb;
  width: 100%;
  margin-top: 30px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.subfooterwrapper {
  z-index: 1;
  text-align: center;
  justify-content: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: relative;
}

.subfootertext {
  text-align: right;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.link-3 {
  color: var(--text);
  text-decoration: none;
  transition: color .4s;
}

.link-3:hover {
  color: #521975;
  text-decoration: underline;
}

.footerlink {
  color: var(--midnight-blue);
  text-decoration: none;
  transition: color .3s;
}

.footerlink:hover {
  font-weight: 500;
}

.footerlink.w--current {
  color: var(--black);
  font-weight: 500;
}

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

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

.footercontainer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: grid;
}

.rotate {
  display: inline-block;
}

.footertitle {
  color: var(--midnight-blue);
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color .3s;
}

.footertitle.w--current {
  color: var(--black);
  font-weight: 500;
}

.footeritemwrapper {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 13px;
  display: flex;
}

.image-2 {
  height: 18px;
  margin-top: 2px;
}

.footerparagraph {
  color: var(--midnight-blue);
  margin-bottom: 0;
  padding-left: 10px;
}

.footermenu {
  color: var(--midnight-blue);
  border-bottom: 1px solid #000;
  margin-bottom: 12px;
  padding-bottom: 7px;
  text-decoration: none;
  transition: color .3s;
}

.footermenu:hover {
  font-weight: 500;
}

.footermenu.w--current {
  color: var(--black);
  font-weight: 500;
}

.footermenu.title:hover {
  font-weight: 400;
}

.footermenu.sub {
  padding-left: 15px;
  font-size: 16px;
}

.image-3 {
  width: 100px;
  margin-left: -7px;
}

.paragraph-3 {
  margin-top: 10px;
}

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

.link-3-copy {
  color: var(--text);
  text-decoration: none;
  transition: color .4s;
}

.link-3-copy:hover {
  color: var(--midnight-blue);
  text-decoration: none;
}

.image-4 {
  z-index: -1;
  position: relative;
}

.aboutuss1 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.text-span-5 {
  color: var(--steel-blue);
}

.paragraph-copy {
  text-align: center;
  max-width: 500px;
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1.6;
}

.stickycontent {
  border-radius: 30px;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin-top: 30px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: sticky;
  top: 30vh;
}

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

.stickybgwrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.image-5 {
  object-fit: cover;
  width: 100%;
  position: sticky;
  top: 10vh;
}

.div-block {
  z-index: 2;
  background-color: #ffffffe6;
  border-radius: 30px;
  flex-direction: column;
  align-items: center;
  margin-top: 40vh;
  margin-bottom: 15vh;
  padding: 70px 10vw;
  display: flex;
  position: relative;
}

.services {
  background-color: var(--white-smoke);
  padding-top: 80px;
  padding-bottom: 100px;
}

.homeserviceswrapper-copy {
  grid-column-gap: 40px;
  grid-row-gap: 55px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 80vw;
  padding-top: 50px;
  padding-bottom: 50px;
  transition: background-color .2s;
  display: grid;
}

.servicecontentwrapper {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.servicewrapper {
  background-color: var(--white-smoke);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 35vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.paragraph-4 {
  color: var(--text);
  line-height: 1.6;
}

.utility-page-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: grid;
}

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

.image-6 {
  width: 90px;
}

.jobsection {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

.image-7 {
  width: 100vw;
  position: absolute;
  inset: 0% 0% auto;
}

.image-7._2 {
  z-index: 2;
}

.jobwrapper {
  z-index: 2;
  position: relative;
}

.heading {
  color: var(--midnight-blue);
  text-align: center;
}

.jobheader {
  flex-direction: column;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 70px;
  display: flex;
}

.jobcontentwrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: auto 40vw;
  grid-auto-columns: 1fr;
  max-width: 100vw;
  display: grid;
}

.jobapplyformwrapper {
  margin-left: 40px;
}

.job-apply-form-block {
  padding-left: 10px;
  padding-right: 10px;
  display: none;
}

.job-apply-form {
  grid-column-gap: 16px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.h4 {
  color: #120850;
  font-size: 18px;
  line-height: 1.3em;
}

.h4.jobformtitle {
  color: var(--midnight-blue);
  text-align: center;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}

.form-text {
  background-color: var(--white-smoke-2);
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-style: italic;
  font-weight: 300;
}

.form-text.message {
  height: 17vh;
}

.text-block-2 {
  color: #c24747;
  text-shadow: none;
  font-size: .8em;
  font-weight: 400;
}

.error-message {
  line-height: 2;
}

.submit-button {
  text-align: center;
  border-radius: 1000px;
  margin-top: 10px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 17px;
  font-style: normal;
  line-height: 1.3em;
  display: inline;
  position: relative;
}

.text-block {
  color: #001fef;
  text-shadow: none;
  font-size: 1em;
  line-height: 2;
  position: relative;
}

.divider-copy {
  background-color: var(--button21);
  width: 100px;
  height: 2px;
}

.apply-form-fileds-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  display: grid;
}

.formtitles {
  color: var(--midnight-blue);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.itemwrapper {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.h3 {
  color: #120850;
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.4em;
}

.h3.faq-title {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 22px;
}

.line-icon-1 {
  background-color: #120850;
  width: 18px;
  min-height: 3px;
  position: absolute;
}

.jobcomtent {
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  margin-right: 20px;
  display: flex;
}

.paragraph-6 {
  color: #6d768d;
  white-space: normal;
  margin-bottom: 20px;
}

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

.dropdowniconwrapper {
  background-color: #fff;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  position: absolute;
  inset: 10px 10px auto auto;
  overflow: hidden;
  box-shadow: 0 6px 20px #1f243233;
}

.line-icon-2 {
  background-color: #120850;
  width: 3px;
  min-height: 18px;
  position: absolute;
}

.jobdescriptionwrapper {
  cursor: pointer;
  background-color: #f5f7fa;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 10px 20px;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 7px #00000085;
}

.jobdescriptiondropdown {
  color: #6d768d;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  text-decoration: none;
  transition: color .35s;
  display: block;
  position: static;
}

.arrow {
  display: inline-block;
}

.job-dropdown-list.w--open {
  background-color: #0000;
  margin-top: 10px;
  position: relative;
}

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

.jobdropdowntitle {
  color: var(--slate-grey);
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  text-decoration: none;
  transition: color .35s;
  display: block;
}

.jobdropdowntitle:hover {
  font-style: normal;
}

.jobdropdowntitle.w--current {
  color: var(--midnight-blue);
  font-weight: 500;
}

.paragraph-7 {
  margin-bottom: 20px;
  line-height: 1.6;
}

.jobdescriptiondropdownwrapper {
  z-index: 5;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #6d768d;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  text-decoration: none;
  transition: color .35s;
  display: grid;
  position: relative;
}

.text-block-3 {
  white-space: normal;
  font-weight: 500;
  display: block;
}

.footermapwrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.map.hide, .mapcode.hide, .hidden {
  display: none;
}

.div-block-2 {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.image-8 {
  object-fit: cover;
  height: 75px;
  margin-left: 20px;
  padding-bottom: 5px;
}

.div-block-3 {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 30px;
  background-color: #f7f8f8b3;
  border-radius: 50px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  padding: 30px 20px;
  display: grid;
  position: relative;
}

.make_a_wish_section {
  background-color: var(--light-sky-blue);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.div-block-4 {
  background-image: url('../images/kid.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  width: 800px;
  height: 479px;
  overflow: hidden;
  box-shadow: inset 0 0 35px 10px #dceff9;
}

.bg-blur {
  filter: blur(5px);
  width: 100%;
  position: absolute;
  inset: 0%;
}

.blur-circles-block {
  width: 100%;
  height: 100%;
  position: relative;
}

.bg-2 {
  position: absolute;
  inset: auto;
}

.bg-2.moving-blur-circle-1 {
  background-color: #ffd1cd;
  border-radius: 1000px;
  width: 477px;
  min-width: 477px;
  min-height: 300px;
  top: 2%;
  left: 10vw;
  transform: rotate(30deg);
  box-shadow: 0 -20px 100px 110px #ffd1cd;
}

.bg-2.moving-blur-circle-1.right {
  background-color: var(--khaki);
  box-shadow: 0 -20px 100px 110px var(--khaki);
  width: 300px;
  min-width: 300px;
  min-height: 390px;
  top: 30%;
  left: auto;
  right: 10vw;
}

.bg-2.moving-blur-circle-2 {
  background-color: #d0f1ff;
  width: 300px;
  min-width: 300px;
  min-height: 200px;
  top: 30%;
  left: 20vw;
  transform: rotate(75deg);
  box-shadow: 0 -20px 100px 110px #d0f1ff;
}

.div-block-14 {
  align-items: flex-start;
  max-width: 80%;
  display: flex;
}

.paragraph-10 {
  text-align: center;
  max-width: 80%;
}

.image-10 {
  height: 70px;
  margin-right: 30px;
}

.paragraph-11 {
  z-index: 3;
  margin-bottom: 0;
  position: relative;
}

.paragraph-12 {
  line-height: 1.6;
}

.tripsection {
  z-index: 5;
  max-width: 100vw;
  margin-top: -70px;
  padding-bottom: 55px;
  padding-left: 10px;
  padding-right: 10px;
}

.formcontainer {
  z-index: 5;
  background-color: var(--white);
  box-shadow: 0 2px 40px -10px var(--shadow);
  width: 90vw;
  max-width: 105rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.2rem 1rem;
  position: relative;
}

.link-4 {
  color: var(--midnight-blue);
}


.iframecode.hide {
  display: block;
}

.div-block-15 {
  display: none;
}

.map-2 {
  width: 100%;
  max-width: 500px;
  height: 30vw;
  max-height: 400px;
}

@media screen and (min-width: 1440px) {
  .form {
    z-index: 5;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .navbar-dropdown {
    font-size: 20px;
  }

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

  .nav-link-drop-down {
    margin-top: 4px;
    line-height: 1em;
    display: inline-block;
  }

  .nav-container {
    padding-left: 36px;
    padding-right: 36px;
  }

  .dropdown-list {
    margin-top: 30px;
  }

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

  .container.homes1container {
    max-width: none;
  }

  .stickycontent {
    top: 40vh;
  }

  .div-block {
    margin-bottom: 20vh;
  }

  .jobdescriptiondropdown {
    margin-top: 4px;
    line-height: 1em;
    display: inline-block;
  }

  .job-dropdown-list {
    margin-top: 30px;
  }

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

  .jobdescriptiondropdownwrapper {
    margin-top: 4px;
    line-height: 1em;
    display: inline-block;
  }

  .blur-circles-block {
    padding-bottom: 0;
    padding-right: 0;
  }

  .bg-2.moving-blur-circle-2 {
    border-radius: 70px;
    transform: none;
  }
}

@media screen and (max-width: 991px) {
  .success-message-content {
    font-size: 24px;
  }

  .navbar-dropdown {
    font-size: 20px;
  }

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

  .dropdown-list-wrapper {
    align-items: stretch;
  }

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

  .navmenu {
    background-color: #fff;
    max-width: 100%;
    max-height: 88vh;
    padding-top: 10px;
    padding-bottom: 20px;
    position: absolute;
    overflow: hidden;
    box-shadow: 0 1px 9px -4px #1f243214, 0 24px 38px #1208501a;
  }

  .headernav {
    flex-direction: column;
    align-items: stretch;
    margin-left: 24px;
    margin-right: 24px;
  }

  .icon-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 4vh;
    min-height: 18px;
    display: flex;
  }

  .button.header-button.hidden {
    color: #f5f7fa;
    background-color: #110466;
    margin-right: 10px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .button.header-button.hidden.b2 {
    margin-left: 10px;
    margin-right: 20px;
  }

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

  .nav-link-drop-down {
    font-size: 25px;
  }

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

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

  .nav-menu-button {
    background-color: var(--midnight-blue);
    perspective: 10000px;
    color: #fff;
    border-radius: 1000px;
    width: 8vh;
    min-width: 8vh;
    min-height: 8vh;
    padding: 0;
    font-size: 30px;
    transition: background-color .3s, transform .3s;
  }

  .nav-menu-button:hover {
    background-image: linear-gradient(to bottom, var(--button21), var(--button22));
    transform: scale(.96);
  }

  .nav-menu-button.w--open {
    background-color: #0b98dc;
  }

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

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

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

  .dropdown-link {
    font-size: 18px;
  }

  .dropdown-list.w--open {
    box-shadow: none;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    padding: 20px 10px 10px;
    display: block;
    position: static;
  }

  .navbar {
    margin-top: 5vh;
  }

  .navbartop {
    height: 5vh;
  }

  .container.homeaucontainer {
    padding-left: 60px;
  }

  .container.footercontainer {
    grid-row-gap: 6vw;
    grid-template-columns: 1fr 1fr;
  }

  .s1c1bg {
    width: 80%;
  }

  .page-title {
    color: #000;
    margin-top: 0;
  }

  .page-title.s1c1 {
    font-size: 20px;
  }

  .top-text.hero {
    margin-bottom: 0;
  }

  .s1c1content {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .form-block {
    margin-left: 10px;
    margin-right: 10px;
  }

  .h2.center.servicetitle {
    font-size: 28px;
  }

  .different-font {
    font-size: 30px;
  }

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

  .homeservicewrapper {
    width: 45vw;
  }

  .homeserviceswrapper {
    grid-column-gap: 20px;
    padding-right: 0;
  }

  .topwrapper {
    width: 45vw;
    height: 45vw;
  }

  .subfooterwrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .subfootertext {
    text-align: right;
  }

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

  .footer-content-block.buttom {
    text-align: center;
    align-items: center;
  }

  .image-3 {
    margin-left: 0;
  }

  .stickycontent {
    width: 90%;
  }

  .image-5 {
    min-height: 90vh;
  }

  .services {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .homeserviceswrapper-copy {
    grid-column-gap: 20px;
    grid-row-gap: 45px;
    width: 95vw;
    padding-top: 20px;
    padding-bottom: 50px;
    padding-right: 0;
  }

  .servicewrapper {
    width: 45vw;
  }

  .utility-page-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .jobapplyformwrapper {
    margin-left: 30px;
  }

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

  .jobdescriptiondropdown {
    font-size: 25px;
  }

  .job-dropdown-list.w--open {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    display: block;
    position: static;
  }

  .jobdropdowntitle {
    font-size: 25px;
  }

  .jobdescriptiondropdownwrapper {
    grid-row-gap: 5px;
    font-size: 25px;
  }

  .text-block-3 {
    font-size: 18px;
  }

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

  .map {
    height: 200px;
    max-height: 50vh;
  }

  .div-block-4 {
    width: 80vw;
    height: 47.9vw;
  }

  .bg-2.moving-blur-circle-1 {
    width: 434px;
    min-width: 434px;
    min-height: 434px;
  }

  .image-10 {
    height: 50px;
  }

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

  .map-2 {
    height: 40vw;
    max-height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .form {
    grid-template-columns: 1fr;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .multi_items_col {
    width: 100%;
  }

  .success-message-content {
    font-size: 22px;
  }

  .formtitle {
    font-size: 25px;
  }

  .navbar-dropdown {
    font-size: 18px;
  }

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

  .navmenu {
    padding-top: 10px;
  }

  .headernav {
    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;
  }

  .brand {
    padding-left: 0;
  }

  .button.header-button.mobile {
    margin-right: 0;
    font-size: 15px;
    display: block;
  }

  .button.header-button.mobile.mobileb2 {
    margin-top: 10px;
  }

  .button.header-button.hidden {
    display: none;
  }

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

  .new-item-wrapper.button-mobile {
    display: block;
  }

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

  .dropdown-list.w--open {
    text-align: left;
    margin-left: 0;
    padding-top: 22px;
    padding-bottom: 23px;
  }

  .container.homeaucontainer {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1.5fr;
    padding-left: 30px;
  }

  .container.homeservicecontainer, .container.servicecontainer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container.pt {
    padding-top: 40px;
    padding-bottom: 45px;
  }

  .s1c1content {
    padding-top: 0;
    padding-left: 60%;
  }

  .form-block {
    margin-left: 0;
    margin-right: 0;
  }

  .h2 {
    font-size: 25px;
  }

  .h2.center.homes2title {
    font-size: 28px;
  }

  .h2.center.autitle, .h2.center.auptitle {
    font-size: 30px;
  }

  .h2.center.servicetitle {
    font-size: 28px;
  }

  .h2.center.makeawishtitle {
    font-size: 27px;
  }

  .topicon {
    margin-top: 30px;
  }

  .topicon.hero {
    margin-top: 0;
  }

  .paragraph.align {
    max-width: none;
  }

  .guranteeswrapper {
    max-width: none;
    padding-top: 30px;
  }

  .aboutuss3 {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .list-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: flex-start center;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
    display: grid;
  }

  .list {
    padding-bottom: 5px;
    font-size: 15px;
  }

  .list.last {
    border-bottom-width: 1px;
  }

  .check {
    margin-right: 8px;
  }

  .homes3 {
    padding-top: 60px;
    padding-bottom: 65px;
  }

  .homeserviceswrapper {
    grid-column-gap: 10px;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .imageovericon {
    width: 55px;
  }

  .serviceparag {
    line-height: 1.3;
  }

  .sub-footer {
    margin-top: 40px;
  }

  .subfooterwrapper {
    height: auto;
  }

  .subfootertext {
    text-align: center;
    flex: 1;
  }

  .footertitle {
    font-size: 18px;
  }

  .image-4 {
    max-height: 65vh;
  }

  .stickycontent {
    width: 100%;
  }

  .services {
    padding-top: 60px;
    padding-bottom: 65px;
  }

  .homeserviceswrapper-copy {
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    width: 90vw;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .servicewrapper {
    margin-bottom: 10px;
  }

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

  .utility-page-wrap {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .jobheader {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .jobcontentwrapper {
    grid-row-gap: 20px;
    flex-direction: column;
    grid-template-columns: auto;
  }

  .jobapplyformwrapper {
    margin-left: 0;
  }

  .form-text {
    line-height: 1.667em;
  }

  .apply-form-fileds-wrapper {
    line-height: 20px;
  }

  .h3 {
    margin-bottom: 13px;
    font-size: 22px;
  }

  .dropdowniconwrapper {
    width: 30px;
  }

  .job-dropdown-list.w--open {
    text-align: left;
  }

  .jobdropdowntitle {
    font-size: 23px;
  }

  .list-2 {
    margin-top: 5px;
  }

  .image-8 {
    height: 47px;
    margin-left: 4px;
    padding-bottom: 3px;
  }

  .div-block-3 {
    grid-row-gap: 20px;
  }

  .make_a_wish_section {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .bg-2.moving-blur-circle-1 {
    width: 230px;
    min-width: 230px;
    min-height: 280px;
  }

  .div-block-14 {
    flex-direction: column;
    align-items: center;
  }

  .paragraph-10 {
    max-width: none;
  }

  .image-10 {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .tripsection {
    padding-bottom: 30px;
  }

  .formcontainer {
    width: 95vw;
    padding: 1rem 3vw;
  }

  .map-2 {
    width: 100%;
    height: 55vw;
  }
}

@media screen and (max-width: 479px) {
  .text-span-3 {
    font-size: 15px;
  }

  .text-field-r {
    padding-left: 15px;
    padding-right: 15px;
  }

  .form {
    grid-row-gap: 10px;
    border-radius: 25px;
    padding-top: 3vh;
  }

  .titlebig {
    font-size: 14px;
  }

  .success-message {
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .field-label {
    font-size: 14px;
  }

  .titlesmall {
    font-size: 13px;
  }

  .success-message-content {
    font-size: 14px;
  }

  .formtitle {
    font-size: 20px;
  }

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

  .navmenu {
    max-height: 88vh;
    padding-top: 0;
    padding-bottom: 10px;
  }

  .headernav {
    margin-left: 16px;
    margin-right: 16px;
  }

  .button {
    padding: 20px 24px;
  }

  .button.whitehover, .button.service {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .button.make_a_wish_button {
    padding: 12px 30px;
    font-size: 17px;
  }

  .nav-container {
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .dropdown-link {
    text-align: center;
    white-space: normal;
  }

  .navbar {
    margin-top: 9vh;
  }

  .navbartop {
    height: 9vh;
  }

  .navtop-paragraph {
    display: none;
  }

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

  .container.homeaucontainer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.footercontainer {
    grid-template-columns: 1fr;
  }

  .bg.gredient {
    background-image: linear-gradient(to bottom, transparent, var(--steel-blue) 70%);
    width: 100%;
    height: 80%;
    inset: auto 0% 0%;
  }

  .s1c1bg {
    width: 100vw;
    min-width: 100vw;
  }

  .page-title {
    font-size: 30px;
  }

  .page-title.s1c1 {
    text-align: center;
    margin-top: 3px;
    font-size: 22px;
  }

  .top-text.hero {
    margin-bottom: 0;
  }

  .s1c1content {
    align-items: center;
    padding-top: 35vw;
    padding-bottom: 10vw;
    padding-left: 0%;
  }

  .text-span-4 {
    font-size: 45px;
  }

  .form-block {
    margin-bottom: 40px;
  }

  .mapsection {
    background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/van_mobile.jpeg');
    background-position: 0 0, 0 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    padding-top: 7px;
  }

  .container-8 {
    max-width: 95%;
  }

  .mapcontainer {
    height: 30vh;
  }

  .h2 {
    font-size: 22px;
  }

  .h2.center.autitlewide {
    font-size: 30px;
  }

  .h2.center.servicetitle {
    font-size: 24px;
  }

  .different-font {
    font-size: 40px;
  }

  .homeau {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .topicon.hero {
    width: 60px;
  }

  .guranteeswrapper {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .aboutuss3 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .list-wrapper {
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
  }

  .homes3 {
    padding-top: 40px;
  }

  .homeservicewrapper {
    width: 90vw;
  }

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

  .topwrapper {
    width: 90vw;
    height: 90vw;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .subfooterwrapper {
    height: auto;
  }

  .footer-content-block.buttom {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footerparagraph {
    font-size: 16px;
  }

  .footermenu {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .image-3 {
    width: 80px;
  }

  .div-block {
    padding: 30px 5vw;
  }

  .services {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .homeserviceswrapper-copy {
    grid-template-columns: 1fr;
  }

  .servicewrapper {
    width: 90vw;
  }

  .job-apply-form-block {
    font-size: 2.5em;
  }

  .form-text {
    font-size: 16px;
  }

  .form-text.message {
    white-space: normal;
  }

  .text-block-2 {
    font-size: 15px;
  }

  .apply-form-fileds-wrapper {
    grid-template-columns: 1fr;
  }

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

  .h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .line-icon-1 {
    width: 15px;
  }

  .jobcomtent {
    margin-right: 15px;
  }

  .paragraph-6 {
    margin-bottom: 10px;
  }

  .dropdowniconwrapper {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .line-icon-2 {
    min-height: 15px;
  }

  .jobdropdowntitle {
    font-size: 18px;
  }

  .jobdescriptiondropdownwrapper {
    max-width: 70vw;
  }

  .list-2 {
    padding-left: 25px;
  }

  .div-block-2 {
    flex-direction: column;
    align-items: center;
  }

  .div-block-3 {
    padding: 20px 10px;
  }

  .make_a_wish_section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .bg-2.moving-blur-circle-1 {
    width: 318px;
    min-width: 318px;
    min-height: 318px;
    top: -205px;
    left: -252px;
  }

  .bg-2.moving-blur-circle-1.right {
    width: 250px;
    min-width: 250px;
    min-height: 190px;
    right: -10vw;
  }

  .div-block-14 {
    max-width: 95%;
  }

  .image-10 {
    height: 35px;
  }

  .formcontainer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .map-2 {
    height: 65vw;
  }
}

#w-node-f1d7af3e-380f-4f0f-3f1f-98705ce28163-7353c8e3 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-f1d7af3e-380f-4f0f-3f1f-98705ce28164-7353c8e3 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-ce5fab9e-6260-0fc2-d345-131036e73b07-7353c8e3 {
  grid-area: 1 / 2 / 5 / 3;
  align-self: center;
}

#w-node-_59ba29d4-4f37-c814-24fd-92d9c8783e41-7353c8e3 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-f1d7af3e-380f-4f0f-3f1f-98705ce28195-7353c8e3 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-f15689d8-1a8e-d629-94fc-fd609f4440ad-9f4440ab {
  grid-area: 1 / 1 / 2 / 2;
}

#contact.w-node-f15689d8-1a8e-d629-94fc-fd609f4440ba-9f4440ab {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f15689d8-1a8e-d629-94fc-fd609f4440d4-9f4440ab {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-c7ffd5d1-2690-2c2f-cf2c-3acfa1d87673-9f4440ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d1f5ec12-2c3b-2fa6-e298-99bc7c18ec3a-bedec55a {
  justify-self: end;
}

#w-node-fda99f64-60e2-81e3-8528-a298ebeaef1e-bedec55a, #w-node-fda99f64-60e2-81e3-8528-a298ebeaef1e-8a1f26a5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-be8661fa-afbc-eea7-15f2-e566d36c95cc-c05155f9, #w-node-d8518cb7-f1d2-4b54-664a-8f91c6af7abe-c05155f9, #w-node-f29dc0f0-b293-96f2-3bdc-4259c7af9e39-c05155f9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-be3b25e2-56f8-ee7c-8b23-74080b347c6f-c05155f9 {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-ce5fab9e-6260-0fc2-d345-131036e73b07-7353c8e3 {
    grid-row-end: 3;
    align-self: end;
  }

  #w-node-_59ba29d4-4f37-c814-24fd-92d9c8783e41-7353c8e3 {
    grid-column-end: 3;
  }

  #w-node-f1d7af3e-380f-4f0f-3f1f-98705ce28195-7353c8e3 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-f15689d8-1a8e-d629-94fc-fd609f4440d4-9f4440ab {
    grid-row: 3 / 4;
  }

  #w-node-c7ffd5d1-2690-2c2f-cf2c-3acfa1d87673-9f4440ab {
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f1d7af3e-380f-4f0f-3f1f-98705ce28163-7353c8e3 {
    grid-row: 1 / 2;
    grid-column-end: 3;
    place-self: start end;
  }

  #w-node-f1d7af3e-380f-4f0f-3f1f-98705ce28164-7353c8e3 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: start;
  }

  #w-node-ce5fab9e-6260-0fc2-d345-131036e73b07-7353c8e3 {
    grid-area: 2 / 1 / 3 / 3;
    place-self: start center;
  }

  #w-node-_59ba29d4-4f37-c814-24fd-92d9c8783e41-7353c8e3 {
    grid-row-end: 3;
  }

  #w-node-_5842c9a9-633d-0dfa-9fa8-c6bc815983f0-815983d3 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-d1f5ec12-2c3b-2fa6-e298-99bc7c18ec3a-bedec55a {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_72258eed-5e82-5bb1-81d2-99604afc1cdd-bedec55a {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-fda99f64-60e2-81e3-8528-a298ebeaef1e-bedec55a {
    grid-column: span 1 / span 1;
    justify-self: center;
  }

  #w-node-_4ba95ba2-1881-d4e5-1c59-5ac37eea8f4a-8a1f26a5 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_72258eed-5e82-5bb1-81d2-99604afc1cdd-8a1f26a5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-fda99f64-60e2-81e3-8528-a298ebeaef1e-8a1f26a5 {
    grid-column: span 1 / span 1;
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #contact.w-node-f15689d8-1a8e-d629-94fc-fd609f4440ba-9f4440ab {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-f15689d8-1a8e-d629-94fc-fd609f4440d4-9f4440ab {
    grid-column-end: 2;
  }

  #w-node-c7ffd5d1-2690-2c2f-cf2c-3acfa1d87673-9f4440ab, #w-node-be8661fa-afbc-eea7-15f2-e566d36c95cc-c05155f9, #w-node-d8518cb7-f1d2-4b54-664a-8f91c6af7abe-c05155f9, #w-node-f29dc0f0-b293-96f2-3bdc-4259c7af9e39-c05155f9 {
    grid-column: span 1 / span 1;
  }
}


