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

body {
  color: #0b2526;
  font-family: apparat, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  color: #009639;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  color: #316a3d;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  color: #316a3d;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 20px;
}

a {
  color: #316a3d;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: color 1s;
}

a:hover {
  color: #47942a;
}

ul {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

ol {
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

li {
  margin-bottom: 14px;
  position: relative;
}

strong {
  color: #316a3d;
  font-weight: 700;
}

.spacer {
  height: 30px;
}

.spacer.small {
  height: 10px;
}

.spacer.larger {
  height: 50px;
}

.spacer.hidden {
  display: none;
}

.colours-box {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.body-container {
  z-index: 4;
  max-width: 1200px;
  position: relative;
}

.body-container.centered {
  text-align: center;
}

.colour-example {
  width: 18%;
  height: 120px;
  color: #fff;
  background-color: #fdd600;
  justify-content: center;
  align-items: center;
  display: flex;
}

.colour-example._1 {
  background-color: #316a3d;
}

.colour-example._4 {
  color: #000;
  background-color: #f7fdfd;
}

.colour-example._3 {
  color: #000;
  background-color: #d6e2d8;
}

.colour-example._2 {
  background-color: #47942a;
}

.ul-point {
  margin-bottom: 14px;
  padding-left: 40px;
}

.body-section {
  z-index: 1;
  width: 100%;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 100px 10%;
  position: relative;
  overflow: hidden;
}

.body-section.light-green {
  background-color: #f7fdfd;
}

.body-section.inner-shadow {
  box-shadow: inset 0 2px 12px 2px rgba(0, 0, 0, .2);
}

.body-section.green {
  color: #fff;
  background-color: #316a3d;
}

.body-section.download {
  z-index: 9;
}

.body-section.thin {
  padding-top: 60px;
  padding-bottom: 60px;
}

.body-section.reviews {
  background-color: #f4f4f4;
  padding-top: 60px;
  padding-bottom: 60px;
}

.body-section.blog {
  background-color: #f4f4f4;
  padding-top: 30px;
}

.header-button {
  color: #fff;
  letter-spacing: 2px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  padding: 22px 30px;
  font-size: 21px;
  line-height: 1.2;
  transition: color 1s, border-color 1s, background-color 1s;
  display: inline-block;
}

.header-button:hover {
  color: #fff;
  background-color: #316a3d;
  background-image: none;
  text-decoration: none;
}

.header-button.alt {
  color: #142036;
  background-color: #c3c3c3;
  background-image: none;
  border-color: #c3c3c3;
  transition: color 1s, border-color 1s, background-color 1s;
}

.header-button.alt:hover {
  color: #142036;
  background-color: #fff;
  border-color: #142036;
}

.header-button.grey {
  background-color: #142036;
  background-image: none;
  transition: color 1s, background-color 1s, border-color 1s;
}

.header-button.grey:hover {
  color: #142036;
  background-color: #fff;
  border-color: #142036;
}

.header-button.yellow {
  color: #0b2526;
  background-color: #fdd600;
  font-weight: 600;
}

.header-button.yellow:hover {
  background-color: #fff;
}

.main-button {
  color: #316a3d;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid #316a3d;
  border-radius: 6px;
  padding: 9px 22px;
  font-size: 16px;
  transition: background-color 1s, color 1s;
}

.main-button:hover {
  color: #fff;
  background-color: #316a3d;
}

.main-button.alt {
  color: #0b2526;
  cursor: pointer;
  background-color: #fdd600;
  border-width: 2px;
  border-color: #0b2526;
  font-weight: 700;
}

.main-button.alt:hover {
  color: #fdd600;
  background-color: #0b2526;
}

.main-tabs {
  width: 100%;
  max-width: 900px;
  text-align: left;
  background-color: #fff;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 50px;
  display: flex;
  box-shadow: 0 2px 12px 2px rgba(0, 0, 0, .2);
}

.main-tabs-menu {
  width: 30%;
  height: auto;
  color: #d6e2d8;
  background-color: #d6e2d8;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.main-tabs-option {
  width: 100%;
  height: auto;
  min-height: 70px;
  color: #316a3d;
  background-color: #d6e2d8;
  border-bottom: 1px solid rgba(11, 37, 38, .25);
  border-left: 8px solid rgba(0, 0, 0, 0);
  justify-content: flex-start;
  align-items: center;
  padding: 18px 26px;
  font-size: 21px;
  transition: color 1s, background-color 1s;
  display: flex;
}

.main-tabs-option:hover {
  background-color: #cae4cf;
}

.main-tabs-option.w--current {
  background-color: #fff;
  border-left-color: #009639;
}

.main-tabs-content {
  width: 70%;
  height: 100%;
  background-color: #fff;
  padding: 50px;
  overflow: scroll;
}

.main-tabs-content-tab {
  width: 100%;
  height: auto;
}

.explanation-links {
  grid-column-gap: 20px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.faq-grid {
  grid-column-gap: 60px;
  grid-row-gap: 50px;
  margin-top: 40px;
}

.faq-option {
  width: 100%;
  height: auto;
  cursor: pointer;
  border: 2px solid #009639;
  border-radius: 12px;
  position: relative;
}

.faq-button {
  width: 20%;
  height: 20px;
  cursor: pointer;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: -12px;
  left: 40%;
  right: 40%;
  overflow: hidden;
}

.faq-button-arrow {
  width: 26px;
  height: 26px;
  background-color: #009639;
  position: absolute;
  top: -14px;
  transform: rotate(45deg);
}

.faq-title {
  color: #009639;
  padding: 20px;
  font-weight: 700;
}

.faq-answer {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
}

.home-header-section {
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #0b2526;
  padding: 100px 10% 35px;
  position: relative;
  overflow: hidden;
}

.home-header-section.light-green {
  background-color: #f7fdfd;
}

.home-header-section.inner-shadow {
  box-shadow: inset 0 2px 12px 2px rgba(0, 0, 0, .2);
}

.header-div {
  height: 44px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header-div-border {
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.ratings-block {
  grid-column-gap: 40px;
  grid-row-gap: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 16px;
  display: flex;
}

.star-holder {
  width: auto;
  height: auto;
  grid-column-gap: 6px;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
  display: flex;
}

.ratings-star {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ratings-star.sm {
  width: 18px;
  height: 18px;
}

.header-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 50px;
}

.header-grid._3-cols {
  grid-column-gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
}

.header-grid-item {
  width: 100%;
  height: 100%;
  color: #fff;
  letter-spacing: 1px;
  background-color: #347e44;
  border-radius: 6px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 20px 36px;
  font-size: 21px;
  font-weight: 600;
  transition-property: background-color;
  transition-duration: 1s;
  display: flex;
  position: relative;
  box-shadow: 0 10px #d6e2d8;
}

.header-grid-item:hover {
  color: #fff;
  background-color: #47942a;
}

.header-item-icon {
  width: 46%;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}

.header-grid-item-border {
  width: 40px;
  height: 40px;
  background-color: #316a3d;
  border-radius: 6px;
  position: absolute;
  bottom: -16px;
  transform: rotate(45deg);
  box-shadow: 7px 7px #d6e2d8;
}

.header-bottom-border {
  z-index: 2;
  width: 100%;
  height: 165px;
  background-color: #fff;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.header-holder {
  z-index: 998;
  width: 100%;
  height: auto;
  min-height: 143px;
  background-color: #fff;
  padding-top: 34px;
  position: relative;
  box-shadow: 0 2px 12px 2px rgba(0, 0, 0, .2);
}

.menu-holder {
  width: 100%;
  height: auto;
  color: #f7fdfd;
  background-color: #347e44;
  justify-content: center;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.menu-holder-inner {
  width: 100%;
  height: auto;
  grid-column-gap: 4px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.menu-item {
  width: auto;
  height: 100%;
  padding: 6px 0;
  position: relative;
}

.menu-item.child {
  padding: 0;
}

.menu-item.child.wide {
  width: 100%;
  min-width: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: block;
}

.menu-item.wide {
  position: static;
}

.menu-link {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.menu-link:hover {
  color: #d6e2d8;
}

.menu-link.child {
  width: 100%;
  color: #316a3d;
  text-transform: none;
  border-bottom: 1px solid rgba(11, 37, 38, .25);
  padding: 8px 20px;
  font-size: 14px;
  transition: background-color 1s, color 1s;
  display: block;
}

.menu-link.child:hover {
  color: #316a3d;
  background-color: #d6e2d8;
  border-bottom: 1px solid #316a3d;
}

.menu-link.child.wide {
  height: 100%;
  max-height: none;
  min-height: 100%;
  text-align: center;
  border: 1px solid rgba(11, 37, 38, .25);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.menu-drop-holder {
  width: auto;
  height: auto;
  max-width: 360px;
  min-width: 260px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #f7fdfd;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
}

.menu-drop-holder.wide {
  width: 100vw;
  max-width: none;
  min-width: auto;
  grid-column-gap: 1.66%;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px 5%;
  display: none;
  left: 0;
  right: 0;
}

.mobile-menu-button {
  display: none;
}

.header-content-holder {
  width: 100%;
  height: auto;
  justify-content: space-between;
  align-items: flex-end;
  padding: 8px 5% 16px;
  display: flex;
}

.header-button-holder {
  grid-column-gap: 1px;
  display: flex;
  position: absolute;
  top: 0;
  right: 5%;
}

.header-buttons {
  width: auto;
  height: auto;
  min-height: 34px;
  color: #316a3d;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #d6e2d8;
  padding: 8px 16px;
  font-size: 12px;
  transition: background-color 1s, color 1s;
}

.header-buttons:hover {
  color: #0b2526;
  background-color: #fdd600;
}

.home-background-image {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.brand-link {
  width: auto;
  height: auto;
}

.brand-logo {
  width: auto;
  height: auto;
  max-height: 50px;
  min-height: 30px;
  min-width: 160px;
  object-fit: contain;
  object-position: 0% 50%;
}

.header-contact-links {
  grid-column-gap: 30px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.header-contact-link {
  grid-column-gap: 8px;
  color: #009639;
  letter-spacing: .5px;
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.header-contact-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact-background-image {
  z-index: 1;
  width: 75%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 80px;
  bottom: 0;
  right: 0;
}

.contact-text-background {
  z-index: 2;
  width: 50%;
  height: auto;
  object-fit: cover;
  background-color: #d6e2d8;
  position: absolute;
  top: 160px;
  bottom: 0;
  left: 0;
}

.contact-links-holder {
  width: 50%;
  text-align: left;
  margin-right: 50%;
  padding-top: 90px;
  padding-right: 40px;
  font-size: 21px;
}

.contact-item-holder {
  width: auto;
  height: auto;
  grid-column-gap: 20px;
  color: #009639;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 700;
  display: flex;
}

.contact-item-holder.alt {
  grid-column-gap: 10px;
  font-size: 1.1vw;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.contact-item-icon.alt {
  width: 26px;
  height: 26px;
}

.contact-item-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.contact-link {
  color: #0b2526;
  font-weight: 400;
}

.contact-link:hover {
  color: #316a3d;
}

.contact-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 30px;
}

.footer-section {
  z-index: 1;
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #0b2526;
  border-top: 10px solid #347e44;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 10%;
  position: relative;
  overflow: hidden;
}

.footer-section.light-green {
  background-color: #f7fdfd;
}

.footer-section.inner-shadow {
  box-shadow: inset 0 2px 12px 2px rgba(0, 0, 0, .2);
}

.footer-links-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 40px;
}

.column {
  width: 100%;
  height: auto;
}

.column.relative {
  position: relative;
}

.column.centered {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer-title {
  text-transform: uppercase;
  font-weight: 600;
}

.footer-div {
  width: 30%;
  height: 1px;
  background-color: #316a3d;
  margin-top: 14px;
  margin-bottom: 16px;
}

.footer-link-list {
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  font-size: 16px;
  font-weight: 400;
}

.footer-link {
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
}

.footer-link:hover {
  color: #47942a;
}

.footer-link-border {
  width: 20px;
  height: 20px;
  background-color: #316a3d;
  position: absolute;
  left: -16px;
  transform: rotate(45deg);
}

.footer-link-item {
  justify-content: flex-start;
  align-items: center;
  padding-left: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.white {
  color: #fff;
}

.contact-form-block {
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  margin-top: 30px;
  display: flex;
}

.contact-form-block.alt {
  background-color: #316a3d;
  margin-top: 0;
  padding: 20px;
}

.contact-form-block.small {
  margin-top: 0;
}

.contact-form-block.page {
  background-color: #009639;
  border: 1px solid #d6e2d8;
  border-radius: 12px;
  margin-top: 0;
  margin-bottom: 40px;
  padding: 20px;
}

.main-contact-form {
  width: 100%;
  max-width: 1000px;
}

.form-grid {
  grid-column-gap: 24px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
}

.form-grid.small {
  grid-template-columns: 1fr;
}

.form-grid.alt {
  grid-column-gap: 14px;
  grid-row-gap: 12px;
  font-size: 14px;
}

.text-field {
  height: 52px;
  color: #0b2526;
  cursor: text;
  border: 1px solid #fff;
  border-radius: 16px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  transition: border-color 1s;
  box-shadow: inset 1px 1px 12px 2px #d6e2d8;
}

.text-field:hover {
  border-color: #fdd600;
}

.text-field.area {
  height: 100%;
  max-height: 184px;
  min-height: 110px;
}

.text-field.area.alty {
  max-height: 154px;
  min-height: 52px;
  font-size: 14px;
}

.text-field.mini {
  width: 30%;
}

.text-field.alt {
  height: 42px;
  box-shadow: none;
  background-color: #f7fdfd;
  border-color: #d6e2d8;
  font-size: 14px;
}

.text-field.alt.half {
  width: 50%;
}

.form-spacer {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-top: 24px;
  margin-bottom: 24px;
}

.form-spacer.alt {
  background-color: #d6e2d8;
  margin-top: 14px;
  margin-bottom: 14px;
}

.form-submit {
  color: #0b2526;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fdd600;
  border: 1px solid #fdd600;
  border-radius: 8px;
  padding: 9px 40px;
  font-weight: 700;
  transition: color 1s, background-color 1s;
}

.form-submit:hover {
  color: #fdd600;
  background-color: #0b2526;
}

.form-item {
  grid-column-gap: 5%;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  display: flex;
}

.form-item.alt {
  padding-left: 0;
  font-size: 12px;
}

.application-pack {
  z-index: 9;
  width: 100%;
  color: #0b2526;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #fdd600;
  border: 1px solid #fdd600;
  border-radius: 12px;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  padding: 16px 27% 16px 16px;
  font-size: 17px;
  line-height: 1.1;
  transition: color 1s, background-color 1s;
  display: flex;
  position: relative;
}

.application-pack:hover {
  color: #fff;
  background-color: #0b2526;
}

.application-pack.alt {
  padding-left: 10px;
  padding-right: 27%;
  font-size: 16px;
}

.app-pack-title {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
}

.app-pack-title.alt {
  font-size: 24px;
}

.app-pack-icon {
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.app-pack-button {
  width: 25%;
  height: auto;
  border-left: 1px solid rgba(255, 255, 255, .5);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.large-image-background {
  z-index: 1;
  width: 70%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 30%;
}

.absolute-text-background {
  z-index: 2;
  width: 65%;
  background-color: #d6e2d8;
  border-bottom: 10px solid #009639;
  position: absolute;
  top: 70px;
  bottom: 70px;
  right: 0;
}

.text-holder {
  width: 100%;
  text-align: left;
  padding-left: 40%;
}

.faq-question {
  width: 100%;
  height: auto;
  min-height: 52px;
  color: #1d2c35;
  text-align: left;
  background-color: #d6e2d8;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 60px 8px 20px;
  display: flex;
}

.faq-question.alt {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 2px;
  padding-bottom: 12px;
  padding-left: 90px;
  position: relative;
}

.faq-answer-2 {
  color: #1d2c35;
  text-align: left;
  background-color: #fff;
  padding: 0;
}

.faq-item-start {
  width: 76px;
  height: 46px;
  background-color: #d39b0d;
  position: absolute;
  top: 22px;
  left: 0;
  transform: skew(0deg, -30deg);
}

.faq-item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #0b2526;
  position: relative;
  overflow: hidden;
}

.faq-button-shadow {
  z-index: 1;
  width: 20px;
  height: 20px;
  background-color: #009639;
  position: absolute;
  transform: rotate(45deg);
}

.faq-button-2 {
  z-index: 2;
  width: 26px;
  height: 26px;
  background-color: #d6e2d8;
  position: absolute;
  top: -13px;
  transform: rotate(45deg);
}

.faq-block-holder {
  grid-row-gap: 14px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 40px;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.faq-block-holder.page {
  padding-left: 0%;
  padding-right: 0%;
}

.faq-answer-inner {
  padding: 20px 20px 10px;
}

.faq-button-holder {
  width: 40px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
  overflow: hidden;
}

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

.app-pack-full-screen {
  z-index: 999;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, .65);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 200px 20%;
  font-size: 16px;
  line-height: 1.5;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.app-pack-form-inner {
  width: 100%;
  height: 100%;
  color: #0b2526;
  text-align: center;
  text-transform: none;
  background-color: #fff;
  padding: 30px;
  position: relative;
  overflow: scroll;
  box-shadow: 0 2px 12px 2px rgba(0, 0, 0, .2);
}

.app-pack-form-title {
  color: #316a3d;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}

.app-pack-close {
  z-index: 998;
  text-align: right;
  cursor: pointer;
  font-size: 14px;
  position: absolute;
  top: 4px;
  right: 4px;
}

.app-pack-close:hover {
  color: #316a3d;
}

.contact-background {
  z-index: 1;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-contact-link {
  grid-column-gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  font-size: 14px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-link-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-top: 1px;
}

.accreds-icon {
  height: 54px;
}

.social-media-holder {
  grid-column-gap: 14px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.social-icon-link {
  width: 34px;
  height: 34px;
}

.social-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 1s;
}

.social-icon:hover {
  filter: brightness(50%);
}

.disclaimer-text {
  margin-left: 5%;
  margin-right: 5%;
  font-size: 14px;
}

.copywrite-holder {
  background-color: #347e44;
  padding: 14px 10%;
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.title-border {
  width: 80px;
  height: 3px;
  max-width: 25%;
  background-color: #595857;
  margin-top: 10px;
}

.column-image {
  width: 100%;
  height: 100%;
  max-height: 540px;
  min-height: 480px;
  object-fit: cover;
  border-right: 8px solid #009639;
}

.column-2 {
  width: 100%;
  height: auto;
  position: relative;
}

.column-2.centered {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.column-2.left-border {
  padding-top: 0;
  padding-left: 30px;
}

.main-button-2 {
  z-index: 3;
  color: #ebf4fe;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #00adef;
  border: 1px solid #00adef;
  border-radius: 50px;
  padding: 9px 36px;
  font-size: 24px;
  font-weight: 400;
  transition: background-color 1s, color 1s;
  position: relative;
}

.main-button-2:hover {
  color: #00adef;
  background-color: #fff;
}

.title-holder {
  color: #00adef;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.title-holder.left {
  text-align: left;
  align-items: flex-start;
}

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

.columns {
  grid-column-gap: 60px;
  grid-row-gap: 20px;
  text-align: left;
  grid-template-rows: auto;
}

.columns.right {
  grid-template-columns: 1fr 1.35fr;
}

.column-image-2 {
  width: 100%;
  height: 100%;
  max-height: 540px;
  min-height: 480px;
  object-fit: cover;
  border-right: 8px solid #00adef;
}

.columns-2 {
  grid-column-gap: 60px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.column-border {
  width: 1px;
  height: 200%;
  background-color: #316a3d;
  position: absolute;
  top: 0;
  left: 0;
}

.app-process-holder {
  width: 100%;
  height: auto;
  cursor: pointer;
  margin-bottom: 14px;
  padding-left: 58px;
  position: relative;
  overflow: hidden;
}

.app-process-main {
  width: 100%;
  height: auto;
  position: relative;
}

.app-process-border {
  width: 1px;
  height: auto;
  background-color: #316a3d;
  position: absolute;
  top: 0;
  bottom: 40px;
  left: 22px;
}

.app-process-no {
  width: 44px;
  height: 44px;
  color: #316a3d;
  text-align: center;
  background-color: #f4f4f4;
  border: 1px solid #316a3d;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 4px 0 0 4px #fff;
}

.app-process-title {
  width: 100%;
  height: 44px;
  color: #316a3d;
  justify-content: flex-start;
  align-items: center;
  padding-right: 30px;
  font-weight: 600;
  display: flex;
}

.app-process-answer {
  width: 100%;
  opacity: 0;
  margin-top: 4px;
  font-size: 16px;
}

.app-button-holder {
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
  display: flex;
  position: absolute;
  right: 12px;
  overflow: hidden;
}

.app-button-shadow {
  z-index: 1;
  width: 16px;
  height: 16px;
  background-color: #316a3d;
  position: absolute;
  transform: rotate(45deg);
}

.app-button {
  z-index: 2;
  width: 24px;
  height: 24px;
  background-color: #fff;
  position: absolute;
  top: 11px;
  transform: rotate(45deg);
}

.home-image-overlay {
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .65);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.option-text-wrap {
  width: 65%;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.option-text-wrap.alt {
  width: 50%;
  font-size: 12px;
}

.body-title {
  color: #009639;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}

.body-title.slim {
  margin-top: 10px;
  margin-bottom: 4px;
}

.body-title.caps {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.visa-heading {
  color: #009639;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
}

.page-header-section {
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #0b2526;
  border-bottom: 10px solid #009639;
  padding: 60px 10% 40px;
  position: relative;
  overflow: hidden;
}

.page-header-section.light-green {
  background-color: #f7fdfd;
}

.page-header-section.inner-shadow {
  box-shadow: inset 0 2px 12px 2px rgba(0, 0, 0, .2);
}

.page-grid {
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr;
}

.text-section {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.text-section.download {
  color: #fff;
  background-color: #347e44;
  border-radius: 20px;
  padding: 10px 30px 30px;
  box-shadow: 0 2px 12px 2px rgba(0, 0, 0, .25);
}

.page-content {
  width: 100%;
  height: auto;
}

.sidebar-column {
  width: 100%;
  height: auto;
  background-color: #f7fdfd;
  padding: 68px 20px 30px;
  position: relative;
  box-shadow: 0 2px 12px 2px rgba(0, 0, 0, .1);
}

.sidebar-title {
  width: 100%;
  height: auto;
  min-height: 60px;
  color: #fff;
  text-align: left;
  background-color: #347e44;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 20px;
  font-size: 26px;
  line-height: 1;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.download-h2 {
  color: #fff;
  font-size: 36px;
}

.review-holder {
  width: 25%;
  grid-column-gap: 12px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 70px;
  line-height: 1.3;
  display: flex;
  position: relative;
}

.ratings-total {
  width: 25%;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.review-thumbs {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #316a3d;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.review-title {
  font-weight: 600;
}

.header-grid-text {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 300;
}

.embassy-grid {
  border: 1px solid #316a3d;
  grid-template-rows: auto;
  grid-template-columns: .65fr 1fr;
  margin-bottom: 20px;
  padding: 20px;
}

.embassy-holder {
  width: 100%;
  height: auto;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.embassy-holder.bold {
  font-weight: 600;
}

.list-grid {
  border: 1px solid #316a3d;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 20px;
  padding: 20px;
}

.grid {
  grid-template-rows: auto;
}

.alt-ratings-block {
  width: 100%;
  height: auto;
  grid-column-gap: 20px;
  grid-row-gap: 12px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  font-size: 16px;
  display: flex;
}

.header-proof-holder {
  width: 100%;
  height: auto;
  grid-column-gap: 20px;
  background-color: #f4f4f4;
  justify-content: space-between;
  align-items: flex-end;
  padding: 8px 5%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  display: flex;
}

.alt-review-holder {
  width: 50%;
  grid-column-gap: 12px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 70px;
  line-height: 1.3;
  display: flex;
  position: relative;
}

.alt-ratings-total {
  width: 50%;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.header-proof-item {
  width: 15%;
  height: auto;
  min-height: 42px;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-weight: 300;
  display: flex;
}

.header-proof-item.top {
  flex-direction: column;
  justify-content: center;
}

.alt-star-holder {
  width: auto;
  height: auto;
  grid-column-gap: 3px;
  justify-content: center;
  align-items: center;
  margin-bottom: 2px;
  display: flex;
}

.alt-star-holder.abs {
  max-width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}

.table-sizer {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.app-pack-restrain {
  width: 500px;
  max-width: 500px;
}

.app-pack-restrain.top {
  width: 100%;
}

.title-text {
  color: #009639;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
}

.home-content-form {
  z-index: 4;
  width: 110%;
  position: relative;
}

.header-form-background {
  z-index: -1;
  width: auto;
  height: auto;
  background-color: #347e44;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: -10px;
  left: -20px;
  right: -20px;
}

.reviews-grid {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 3fr;
}

.review-item {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 36px;
  padding-bottom: 36px;
  font-size: 14px;
  display: flex;
  position: relative;
}

.review-item.lead {
  border-right: 1px solid #b4b4b4;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 600;
}

.review-name {
  width: auto;
  height: auto;
  max-width: 50%;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
}

.review-date {
  width: auto;
  height: auto;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.reviews-total {
  width: 100%;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

.mini-reviews-grid {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.faq-icon {
  z-index: 2;
  width: 69.5938px;
  height: 69.5938px;
  background-color: #009639;
  border-radius: 8px;
  padding: 8px;
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
}

.faq-inner-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-proof-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 10px;
}

.div-link {
  color: #f7fdfd;
}

.div-link:hover {
  color: #fdd600;
}

.number-list {
  width: 100%;
  min-height: 34px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
  padding-top: 5px;
  padding-left: 46px;
  display: flex;
  position: relative;
}

.number-holder {
  width: 34px;
  height: 34px;
  color: #347e44;
  text-align: center;
  background-color: #d6e2d8;
  border: 2px solid #347e44;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.pricing-grid {
  border: 1px solid #316a3d;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
  padding: 14px 20px;
}

.pricing-holder {
  width: 100%;
  height: auto;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.pricing-holder.bold {
  font-weight: 600;
}

.notice {
  width: 100%;
  height: auto;
  color: #000;
  background-color: rgba(0, 150, 57, .5);
  border: 2px solid #316a3d;
  border-radius: 12px;
  padding: 24px;
}

.notice.red {
  color: #000;
  background-color: rgba(255, 9, 0, .5);
  border-color: #ff0900;
}

.notice.yellow {
  background-color: rgba(253, 214, 0, .5);
  border-color: #fdd600;
}

.first-app-process-no {
  width: 44px;
  height: 44px;
  color: #316a3d;
  text-align: center;
  background-color: #f4f4f4;
  border: 1px solid #316a3d;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 4px 0 0 4px #fff;
}

.first-app-button-shadow {
  z-index: 1;
  width: 16px;
  height: 16px;
  background-color: #316a3d;
  position: absolute;
  transform: rotate(45deg);
}

.first-app-process-answer {
  margin-top: 4px;
  font-size: 16px;
}

.blog-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.blog-item {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  padding: 200px 20px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px 2px rgba(0, 0, 0, .25);
}

.blog-item-image-link {
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.blog-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 26px;
  transition: filter 1s;
}

.blog-item-image:hover {
  filter: saturate(85%) brightness(85%);
}

.blog-item-title {
  text-transform: capitalize;
  font-size: 26px;
}

.blog-item-title-link {
  color: #009639;
}

.blog-item-title-link:hover {
  color: #316a3d;
}

.faq-note {
  width: 100%;
  height: auto;
  color: #316a3d;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #f4f4f4;
  border: 2px solid #316a3d;
  border-radius: 12px;
  padding: 10px;
  font-size: 18px;
  transition: background-color 1s, color 1s;
}

.faq-note:hover {
  color: #fff;
  background-color: #316a3d;
}

.faq-note.red {
  color: #000;
  background-color: rgba(255, 9, 0, .5);
  border-color: #ff0900;
}

.faq-note.yellow {
  background-color: rgba(253, 214, 0, .5);
  border-color: #fdd600;
}

.mofa-pack-full-screen {
  z-index: 999;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, .65);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 200px 20%;
  font-size: 16px;
  line-height: 1.5;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 62px;
  }

  .faq-block-holder.page {
    padding-right: 5%;
  }

  .header-grid-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 1440px) {
  h2, h3 {
    font-size: 40px;
  }

  h4 {
    font-size: 34px;
  }

  .body-container {
    max-width: 1250px;
  }

  .body-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .faq-grid {
    margin-left: 5%;
    margin-right: 5%;
  }

  .home-header-section {
    padding-top: 100px;
  }

  .header-contact-icon {
    width: 22px;
    height: 22px;
  }

  .contact-item-icon {
    width: 50px;
    height: 50px;
  }

  .footer-section {
    padding-bottom: 100px;
  }

  .footer-link {
    font-size: 16px;
  }

  .faq-block-holder.page {
    padding-right: 10%;
  }

  .header-proof-holder {
    line-height: 1.2;
  }

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

  .blog-grid {
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 64px;
  }

  h3 {
    font-size: 42px;
  }

  .body-container {
    max-width: 1400px;
  }

  .body-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .body-section.thin {
    padding-top: 80px;
  }

  .body-section.blog {
    padding-top: 40px;
  }

  .header-button {
    font-size: 18px;
  }

  .faq-grid {
    margin-left: 8%;
    margin-right: 8%;
  }

  .home-header-section {
    padding-top: 120px;
  }

  .header-holder {
    min-height: 159.5px;
  }

  .menu-holder-inner {
    max-width: none;
  }

  .menu-item {
    padding-top: 4px;
    padding-bottom: 6px;
  }

  .menu-link {
    font-size: 14px;
  }

  .menu-drop-holder {
    min-width: 320px;
  }

  .header-content-holder {
    padding-top: 16px;
    padding-bottom: 22px;
  }

  .header-contact-link {
    grid-column-gap: 10px;
  }

  .contact-item-icon {
    width: 58px;
    height: 58px;
  }

  .footer-section {
    padding-bottom: 120px;
  }

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

  .contact-form-block.page {
    padding: 30px;
  }

  .faq-block-holder.page {
    padding-right: 15%;
  }

  .footer-contact-link {
    font-size: 16px;
  }

  .columns.right {
    grid-template-columns: 1fr 1.2fr;
  }

  .body-title {
    font-size: 32px;
  }

  .visa-heading {
    font-size: 26px;
  }

  .page-header-section {
    padding-top: 80px;
  }

  .page-grid {
    grid-column-gap: 60px;
  }

  .text-section.download {
    padding: 10px 30px 30px;
  }

  .sidebar-title {
    height: 66px;
    font-size: 34px;
  }

  .header-proof-holder {
    font-size: 16px;
  }

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

  .review-item.lead {
    font-size: 21px;
  }

  .header-proof-icon {
    width: 26px;
    height: 26px;
  }

  .blog-grid {
    margin-left: 8%;
    margin-right: 8%;
  }
}

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

  h2, h3 {
    font-size: 36px;
  }

  h4 {
    font-size: 30px;
  }

  .spacer.hidden {
    height: 40px;
    display: block;
  }

  .body-section {
    text-align: left;
    padding: 80px 5%;
  }

  .body-section.reviews {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .main-tabs-option {
    height: auto;
    min-height: 56px;
    padding: 12px 18px;
    font-size: 18px;
  }

  .main-tabs-content {
    padding: 30px;
  }

  .explanation-links {
    grid-row-gap: 8px;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-break {
    display: none;
  }

  .faq-grid {
    grid-column-gap: 30px;
    grid-row-gap: 40px;
  }

  .faq-button {
    left: 20px;
  }

  .home-header-section {
    text-align: center;
    margin-top: 73px;
    padding: 80px 5% 30px;
  }

  .header-grid {
    grid-row-gap: 50px;
    text-align: center;
    grid-template-columns: 1fr 1fr;
  }

  .header-grid._3-cols {
    grid-template-columns: 1fr;
  }

  .header-grid-item {
    font-size: 21px;
  }

  .header-bottom-border {
    height: 360px;
  }

  .header-holder {
    height: auto;
    min-height: 75px;
    border-bottom: 3px solid #316a3d;
    padding-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .menu-holder {
    z-index: 997;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 84px 5% 40px;
    display: none;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: scroll;
  }

  .menu-holder-inner {
    display: block;
  }

  .menu-item {
    height: auto;
    margin-bottom: 30px;
    padding: 0;
  }

  .menu-item.child {
    margin-bottom: 0;
  }

  .menu-link {
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    padding-bottom: 12px;
    font-size: 18px;
    display: block;
  }

  .menu-link.child {
    color: #fff;
    border-bottom: 0 rgba(0, 0, 0, 0);
    padding: 0;
    font-size: 16px;
    display: inline-block;
  }

  .menu-link.child:hover {
    color: #d6e2d8;
    background-color: rgba(0, 0, 0, 0);
    border-bottom: 0 rgba(0, 0, 0, 0);
  }

  .menu-link.child.wide {
    height: auto;
    min-height: auto;
    color: #fff;
    text-align: left;
    border: 0 rgba(0, 0, 0, 0);
    padding-left: 0;
    padding-right: 0;
    display: inline-block;
  }

  .menu-drop-holder {
    width: 100%;
    max-width: none;
    min-width: auto;
    grid-column-gap: 20px;
    grid-row-gap: 14px;
    background-color: rgba(0, 0, 0, 0);
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 14px;
    display: grid;
    position: static;
  }

  .menu-drop-holder.wide {
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 14px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 0 0%;
    display: grid;
  }

  .menu-div {
    display: none;
  }

  .mobile-menu-button {
    z-index: 998;
    width: 38px;
    height: 26px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 23px;
    right: 20px;
    overflow: hidden;
  }

  .menu-bar-bottom {
    width: 42px;
    height: 2px;
    background-color: #316a3d;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .menu-bar-mid {
    width: 42px;
    height: 2px;
    background-color: #316a3d;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-bar-top {
    width: 42px;
    height: 2px;
    background-color: #316a3d;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  .header-content-holder {
    z-index: 998;
    height: 72px;
    align-items: center;
    padding-bottom: 4px;
    padding-left: 20px;
    padding-right: 78px;
    position: relative;
  }

  .header-button-holder {
    grid-column-gap: 3px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
    position: static;
  }

  .header-buttons {
    font-size: 14px;
  }

  .brand-logo {
    max-height: 44px;
    max-width: 180px;
    min-height: 30px;
    min-width: auto;
  }

  .header-contact-link {
    grid-column-gap: 8px;
    font-size: 0;
  }

  .header-contact-link.times {
    font-size: 14px;
    display: none;
  }

  .header-contact-icon {
    width: 28px;
    height: 28px;
  }

  .contact-text-background {
    width: 55%;
  }

  .contact-links-holder {
    padding-right: 0;
    font-size: 18px;
  }

  .contact-item-holder.alt {
    font-size: 16px;
  }

  .contact-grid.alt {
    grid-template-columns: 1fr 1fr;
  }

  .footer-section {
    text-align: left;
    padding: 50px 5% 80px;
  }

  .column.centered {
    justify-content: flex-start;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-link-list {
    font-size: 14px;
  }

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

  .text-field.mini {
    width: 40%;
  }

  .form-item {
    padding-left: 0;
  }

  .large-image-background {
    width: 80%;
  }

  .absolute-text-background {
    width: 80%;
    top: 50px;
    bottom: 50px;
  }

  .text-holder {
    width: 80%;
    margin-left: 20%;
    padding-left: 30px;
  }

  .faq-block-holder {
    padding-left: 0%;
    padding-right: 0%;
  }

  .app-pack-full-screen {
    padding: 120px 10%;
  }

  .app-pack-form-inner {
    text-align: left;
  }

  .contact-background {
    width: auto;
    height: 80%;
    object-fit: cover;
    object-position: 50% 100%;
  }

  .social-media-holder {
    justify-content: flex-start;
  }

  .social-icon-link {
    width: 44px;
    height: 44px;
  }

  .disclaimer-text {
    margin-left: 0%;
    margin-right: 0%;
  }

  .copywrite-holder {
    padding-left: 5%;
    padding-right: 5%;
  }

  .column-image {
    height: 350px;
    max-height: none;
    min-height: auto;
    margin-bottom: 20px;
  }

  .column-2.left-border {
    padding-top: 0;
  }

  .title-holder {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .columns {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .columns.reverse {
    flex-direction: column-reverse;
    display: flex;
  }

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

  .column-image-2 {
    height: 350px;
    max-height: none;
    min-height: auto;
    margin-bottom: 20px;
  }

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

  .columns-2.reverse {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column-reverse;
    display: flex;
  }

  .column-border {
    height: 100%;
    top: 0;
  }

  .app-process-main {
    margin-top: 40px;
  }

  .body-title {
    font-size: 26px;
  }

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

  .page-header-section {
    text-align: center;
    margin-top: 73px;
    padding-left: 5%;
    padding-right: 5%;
  }

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

  .review-holder, .ratings-total {
    width: 40%;
  }

  .header-proof-holder {
    z-index: 998;
    height: 72px;
    align-items: center;
    padding-bottom: 4px;
    padding-left: 20px;
    padding-right: 78px;
    display: none;
    position: relative;
  }

  .alt-review-holder, .alt-ratings-total {
    width: 40%;
  }

  .table-sizer {
    align-items: flex-start;
  }

  .title-text {
    font-size: 36px;
  }

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

  .review-item.lead {
    border-bottom: 1px solid #b4b4b4;
    border-right: 0 rgba(0, 0, 0, 0);
    padding-bottom: 20px;
    padding-right: 0;
  }

  .reviews-total {
    width: 40%;
  }

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

  .mofa-pack-full-screen {
    padding: 120px 10%;
  }
}

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

  h2, h3 {
    font-size: 34px;
  }

  h4 {
    font-size: 28px;
  }

  a {
    overflow-wrap: anywhere;
  }

  li {
    padding-left: 30px;
  }

  .body-container {
    padding-left: 0;
  }

  .body-section {
    text-align: left;
    padding-left: 30px;
    padding-right: 30px;
  }

  .body-section.reviews {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .body-section.blog {
    padding-top: 40px;
  }

  .main-tabs {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    flex-direction: column;
  }

  .main-tabs-menu {
    width: 100%;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-color: rgba(0, 0, 0, 0);
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    display: grid;
  }

  .main-tabs-content {
    width: 100%;
    margin-top: 20px;
    padding: 20px 20px 20px 30px;
    box-shadow: 0 2px 12px 2px rgba(0, 0, 0, .2);
  }

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

  .home-header-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-grid-item {
    font-size: 18px;
  }

  .header-holder {
    height: auto;
    min-height: 75px;
  }

  .menu-holder {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-drop-holder {
    grid-template-columns: 1fr 1fr;
  }

  .menu-drop-holder.wide {
    grid-column-gap: 20px;
    grid-row-gap: 14px;
    grid-template-columns: 1fr 1fr;
  }

  .header-contact-links {
    grid-column-gap: 12px;
  }

  .header-contact-link {
    grid-column-gap: 0px;
    font-size: 0;
  }

  .header-contact-link.times {
    width: 80px;
    text-align: right;
    font-size: 12px;
    line-height: 1.2;
    display: none;
  }

  .header-contact-icon {
    width: 32px;
    height: 32px;
  }

  .contact-text-background {
    width: auto;
    right: 40px;
  }

  .contact-links-holder {
    width: 100%;
    margin-right: 0%;
    padding-right: 40px;
  }

  .contact-item-holder.alt {
    font-size: 18px;
  }

  .contact-grid.alt {
    grid-template-columns: 1fr;
  }

  .footer-section {
    text-align: left;
    padding-bottom: 70px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .text-field.area {
    min-height: 140px;
  }

  .text-field.area.alty {
    min-height: 110px;
  }

  .text-field.alt {
    height: 48px;
    font-size: 16px;
  }

  .absolute-text-background {
    width: 90%;
  }

  .text-holder {
    width: 90%;
    margin-left: 10%;
  }

  .app-pack-full-screen {
    padding: 30px;
  }

  .app-pack-form-title {
    font-size: 28px;
  }

  .social-media-holder {
    grid-column-gap: 16px;
  }

  .copywrite-holder {
    padding-left: 30px;
    padding-right: 30px;
  }

  .column-image, .column-image-2 {
    height: 280px;
  }

  .option-text-wrap {
    width: 55%;
    font-size: 14px;
  }

  .page-header-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-section.download {
    padding: 2px 20px 20px;
  }

  .download-h2 {
    font-size: 32px;
  }

  .review-holder, .ratings-total {
    width: 45%;
  }

  .embassy-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
    padding: 12px;
  }

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

  .alt-review-holder, .alt-ratings-total {
    width: 45%;
  }

  .alt-star-holder.abs {
    height: 20px;
    max-width: 100%;
    margin-bottom: 6px;
    position: static;
    left: 0;
    right: auto;
  }

  .app-pack-restrain {
    width: 100%;
  }

  .title-text {
    font-size: 34px;
  }

  .review-item {
    padding-top: 0;
    padding-bottom: 0;
  }

  .review-name {
    max-width: 100%;
    margin-bottom: 12px;
    position: static;
    top: 24px;
  }

  .review-date {
    margin-top: 12px;
    position: static;
  }

  .reviews-total {
    width: 45%;
  }

  .pricing-grid {
    grid-column-gap: 12px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }

  .notice {
    padding: 20px;
  }

  .blog-item {
    padding-bottom: 14px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 14px;
  }

  .blog-item-title {
    font-size: 21px;
  }

  .faq-note {
    padding: 20px;
  }

  .mofa-pack-full-screen {
    padding: 30px;
  }
}

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

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  li {
    padding-left: 20px;
  }

  .spacer {
    height: 20px;
  }

  .ul-point {
    padding-left: 20px;
  }

  .body-section {
    padding: 40px 20px 50px;
  }

  .body-section.reviews {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .header-button {
    width: 100%;
    min-width: auto;
    text-align: center;
    padding: 17px 4px;
  }

  .main-tabs {
    border-bottom: 1px solid rgba(11, 37, 38, .25);
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .main-tabs-menu {
    grid-template-columns: 1fr;
  }

  .main-tabs-content {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
  }

  .main-tabs-content-tab {
    font-size: 16px;
  }

  .home-header-section {
    margin-top: 66px;
    padding: 40px 20px 50px;
  }

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

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

  .header-holder {
    height: auto;
    min-height: 69px;
  }

  .menu-holder {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-drop-holder, .menu-drop-holder.wide {
    grid-template-columns: 1fr;
  }

  .mobile-menu-button {
    top: 21px;
    right: 14px;
  }

  .header-content-holder {
    height: 66px;
    padding-top: 4px;
    padding-bottom: 2px;
  }

  .header-button-holder {
    grid-row-gap: 4px;
    flex-direction: column;
    align-items: stretch;
  }

  .brand-logo {
    max-width: 160px;
    min-height: 20px;
  }

  .header-contact-links {
    display: none;
  }

  .contact-text-background {
    right: 20px;
  }

  .contact-links-holder {
    padding-top: 150px;
    padding-right: 20px;
  }

  .contact-item-holder {
    grid-column-gap: 12px;
  }

  .contact-item-holder.alt {
    font-size: 4.5vw;
  }

  .contact-item-icon {
    width: 30px;
    height: 30px;
  }

  .contact-link:hover {
    color: #00adef;
  }

  .contact-grid {
    font-size: 16px;
  }

  .footer-section {
    padding: 40px 20px 100px;
  }

  .footer-links-grid {
    grid-column-gap: 16px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .contact-form-block.page {
    padding: 12px;
  }

  .text-field.mini, .text-field.alt.half, .form-submit {
    width: 100%;
  }

  .form-item {
    grid-row-gap: 14px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .application-pack {
    padding-left: 8px;
  }

  .absolute-text-background {
    width: auto;
    top: 30px;
    bottom: 30px;
    left: 10px;
  }

  .text-holder {
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }

  .faq-question {
    padding-left: 14px;
  }

  .faq-item-start {
    display: none;
  }

  .faq-item {
    padding-left: 0;
  }

  .faq-block-holder {
    font-size: 16px;
  }

  .faq-answer-inner {
    padding-top: 14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .app-pack-full-screen, .app-pack-form-inner {
    padding: 20px;
  }

  .app-pack-form-title {
    font-size: 26px;
  }

  .social-media-holder {
    grid-column-gap: 18px;
  }

  .copywrite-holder {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column-image {
    height: 220px;
  }

  .column-2.left-border {
    padding-left: 0;
  }

  .main-button-2 {
    width: 100%;
    text-align: center;
  }

  .spacer-2 {
    height: 20px;
  }

  .column-image-2 {
    height: 220px;
  }

  .column-border {
    display: none;
  }

  .app-process-holder {
    padding-left: 36px;
  }

  .app-process-border {
    left: 14px;
  }

  .app-process-no {
    width: 29px;
    height: 29px;
  }

  .app-process-title {
    height: auto;
    min-height: 44px;
    padding-right: 34px;
  }

  .app-button-holder {
    top: 5px;
    right: 0;
  }

  .option-text-wrap {
    width: 100%;
    font-size: 16px;
  }

  .option-text-wrap.alt {
    width: 100%;
  }

  .body-title {
    font-size: 24px;
  }

  .page-header-section {
    margin-top: 66px;
    padding: 40px 20px 50px;
  }

  .text-section.download {
    padding: 2px 12px 12px;
  }

  .download-h2 {
    font-size: 28px;
  }

  .review-holder {
    width: 100%;
    align-items: flex-start;
  }

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

  .embassy-grid {
    padding: 8px;
  }

  .list-grid {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .alt-ratings-block {
    flex-direction: column;
  }

  .header-proof-holder {
    height: 66px;
    padding-top: 4px;
    padding-bottom: 2px;
  }

  .alt-review-holder {
    width: 100%;
    align-items: flex-start;
  }

  .alt-ratings-total {
    width: 100%;
    align-items: center;
  }

  .title-text {
    font-size: 32px;
  }

  .reviews-total {
    width: 100%;
  }

  .mini-reviews-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .notice {
    padding: 14px;
  }

  .first-app-process-no {
    width: 29px;
    height: 29px;
  }

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

  .blog-item {
    padding-top: 180px;
  }

  .blog-item-image-link {
    height: 180px;
  }

  .faq-note {
    padding: 14px;
  }

  .link {
    overflow-wrap: anywhere;
  }

  .mofa-pack-full-screen {
    padding: 20px;
  }
}

#field-5.w-node-c20139bd-82dd-692e-2b4d-bd40dc9d4b94-dc1d219d, #field-6.w-node-_0bd59dd6-a5ee-65f2-59d3-69c6f7324051-dc1d219d, #field-4.w-node-_0bd59dd6-a5ee-65f2-59d3-69c6f7324052-dc1d219d, #field-3.w-node-_0bd59dd6-a5ee-65f2-59d3-69c6f7324053-dc1d219d, #field-5.w-node-_0bd59dd6-a5ee-65f2-59d3-69c6f7324054-dc1d219d, #w-node-_1b1cd902-456b-eb6f-02f1-b57de0e1a132-dc1d219d, #w-node-_527669b1-390d-6409-f1e4-3afbee8abebc-dc1d219d, #w-node-_496d07aa-8fe6-17b2-8ad4-d2a49e3275b4-dc1d219d, #w-node-_085d5f62-6371-5053-5d50-3ee01962821f-dc1d219d, #w-node-bd0325e3-c7fe-42d0-a889-38508425f71e-dc1d219d, #w-node-bd0325e3-c7fe-42d0-a889-38508425f721-dc1d219d, #w-node-_1b285616-7c10-5771-175a-32507128f37b-dc1d219d, #w-node-_1b285616-7c10-5771-175a-32507128f37e-dc1d219d, #w-node-d8f23979-fd1c-b588-04c5-aa3a010906c3-dc1d219d, #w-node-ca902581-5358-fa3b-311f-e0f30d8859a6-dc1d219d, #field-8.w-node-_9df33173-0f80-3e4e-d72a-e43ab47ba5eb-dc1d219d, #field-4.w-node-_9df33173-0f80-3e4e-d72a-e43ab47ba5ec-dc1d219d, #field-5.w-node-_9df33173-0f80-3e4e-d72a-e43ab47ba5f3-dc1d219d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e64b7050-fe2b-04a7-182b-e2239be722fa-dc1d219d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
  justify-self: stretch;
}

#w-node-_0bd59dd6-a5ee-65f2-59d3-69c6f7324039-dc1d219d, #w-node-_8a0d97b0-6272-57e8-26fd-2ebf2b25fd80-dc1d219d, #w-node-d3fa6a9e-d2ed-f6bd-762f-b3394437a37f-dc1d219d, #w-node-b475f8a2-ac89-3531-f4ed-4da453b2be22-dc1d219d, #w-node-_2c293983-62e8-d7d3-4214-35f8f11d82a7-dc1d219d, #w-node-c0e6cd06-e49d-eca6-5807-bd146603a2d4-dc1d219d, #w-node-c0e6cd06-e49d-eca6-5807-bd146603a2d9-dc1d219d, #w-node-c0e6cd06-e49d-eca6-5807-bd146603a2de-dc1d219d, #w-node-c0e6cd06-e49d-eca6-5807-bd146603a2e3-dc1d219d, #w-node-b21d014f-f9a0-fe5d-8691-d1114e385e5d-dc1d219d, #w-node-_7d9e0d2f-2951-adb4-8ed0-b0296f7531b6-dc1d219d, #field-7.w-node-_6f541d86-b802-64c4-c219-ab6e59030967-dc1d219d, #field-4.w-node-_6f541d86-b802-64c4-c219-ab6e59030968-dc1d219d, #field-3.w-node-_6f541d86-b802-64c4-c219-ab6e59030969-dc1d219d, #field-5.w-node-_6f541d86-b802-64c4-c219-ab6e5903096f-dc1d219d, #w-node-_543e56ba-e5db-608a-91be-44b7396d19b2-dc1d219d, #w-node-_543e56ba-e5db-608a-91be-44b7396d19b7-dc1d219d, #w-node-_543e56ba-e5db-608a-91be-44b7396d19bc-dc1d219d, #w-node-_543e56ba-e5db-608a-91be-44b7396d19c1-dc1d219d, #w-node-_049c9368-221c-bcb2-dec7-e800e7ec529e-dc1d219d, #w-node-_011b8fdf-ec84-806c-09e8-90b97dba12ec-dc1d219d, #w-node-_049c9368-221c-bcb2-dec7-e800e7ec529c-dc1d219d, #w-node-d79edad1-7396-3de7-5492-976a9145b677-dc1d219d, #w-node-_6f942198-00a2-f699-7dfc-147fecf4dc6a-dc1d219d, #w-node-f32fd21f-72e1-14d4-c1e1-6d264e0c06e2-dc1d219d, #w-node-af675a96-a432-0ca5-9633-b25d60c0c5b6-dc1d219d, #w-node-_6a7a6017-74f2-2d37-9899-9b9c5a3879b1-dc1d219d, .custom_grid_span_s {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_499a51c7-1c7c-f33a-fd2e-cd8bda660518-dc1d219d, .custom_grid_span_s_aj {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
  justify-self: stretch;
}

#w-node-_499a51c7-1c7c-f33a-fd2e-cd8bda660519-dc1d219d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0d047d01-5696-6cc9-a182-2b948a0bbdca-dc1d219d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
  justify-self: stretch;
}

#w-node-_0d047d01-5696-6cc9-a182-2b948a0bbdcb-dc1d219d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_491d5ff8-219a-cf97-1f1c-eb603d1cb4e1-dc1d219d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
  justify-self: stretch;
}

#w-node-_491d5ff8-219a-cf97-1f1c-eb603d1cb4e2-dc1d219d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ba541167-25db-2b88-4b8d-4cbea6ef1ff6-dc1d219d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
  justify-self: stretch;
}

#w-node-ba541167-25db-2b88-4b8d-4cbea6ef1ff7-dc1d219d, #field.w-node-_09312e44-22a5-a70b-c525-adc1ec5848e0-dc1d219d, #field-4.w-node-_2fa844b9-d33c-cafd-5e4a-cc52bf3f85aa-dc1d219d, #field-3.w-node-_50e6b7b6-2546-10d2-e370-477071dcf835-dc1d219d, #field-5.w-node-_16943825-c9b9-c9fc-9831-a4bc4f2b9ce7-dc1d219d, #w-node-ffb572ca-206b-435e-b623-db545822564e-dc1d219d, #w-node-_007d5b14-ed23-3950-7aba-842b00cf2a38-dc1d219d, #w-node-d0356801-805f-6dbd-ec06-cd8fafd68ee0-dc1d219d, #w-node-_425096f0-4aa4-c226-068a-72692f2217d0-dc1d219d, #w-node-_2aef8ba8-8fd2-5a19-4a40-8864198ff99e-dc1d219d, #w-node-aca0f88d-5928-d0b6-6a14-e850a48c6636-dc1d219d, #w-node-_6da87d86-0a46-9689-c9c2-6cd80e1167e5-dc1d219d, #w-node-_9dff1de1-f0a8-c81e-65f5-fa2e478d89de-dc1d219d, #w-node-_0c4fbb6c-4a05-ea2c-5bb0-c6a864c15627-dc1d219d, #w-node-b36ee465-2996-53e9-cd82-23b091057481-dc1d219d, #w-node-_2ab5d95e-e037-3ca0-11fb-6af788747414-dc1d219d, #w-node-_2ab5d95e-e037-3ca0-11fb-6af788747418-dc1d219d, #w-node-_2ab5d95e-e037-3ca0-11fb-6af78874741c-dc1d219d, #w-node-_2ab5d95e-e037-3ca0-11fb-6af788747420-dc1d219d, #w-node-_2ab5d95e-e037-3ca0-11fb-6af788747424-dc1d219d, #w-node-f1b560b4-d0bf-7cc4-d340-4e41d2df3e02-dc1d219d, #w-node-_690779b5-4021-d64a-9f2f-3e53248354ce-dc1d219d, #w-node-_690779b5-4021-d64a-9f2f-3e53248354d2-dc1d219d, #w-node-_690779b5-4021-d64a-9f2f-3e53248354d6-dc1d219d, #w-node-_690779b5-4021-d64a-9f2f-3e53248354da-dc1d219d, #w-node-_690779b5-4021-d64a-9f2f-3e53248354de-dc1d219d, #w-node-_2f7a234f-eddc-f7f4-442c-8ba817e2a592-dc1d219d, #w-node-_2f7a234f-eddc-f7f4-442c-8ba817e2a594-dc1d219d, #w-node-_0de9489f-4c8d-8b9b-3803-442ad1654653-dc1d219d, #w-node-_55514a75-d1f6-b029-ae43-3474c92675f1-dc1d219d, #w-node-_0de9489f-4c8d-8b9b-3803-442ad1654651-dc1d219d, #w-node-c6f77275-7c18-880a-1de1-49b5016a97dd-dc1d219d, #w-node-_8eaf87a7-5bb6-888b-36e1-0eefbed324c4-dc1d219d, #w-node-_8986de6e-a38f-1fd7-5fa1-1cbdb688c400-dc1d219d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}
/* New Changes from DOC */
.home-header-section .alt-ratings-block a.rating_google{
	color:#ffffff;
	font-weight:500 !important;
}
a.rating_google{
	font-weight:500 !important;
}
a.rating_google.white{
	color:#ffffff;
	font-weight:500 !important;
}
a.rating_google:hover{
	color:#47942a !important;
}
.our_team_s h4{
	font-weight:600;
	font-size:26px;
	color:#009639;
}
.our_team_s p{
	margin:0;
}
.our_team_s .name{
		color: #262D36;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 0px;
	border-bottom:1px solid #C6C7C9;
	padding-bottom:10px;
}
.our_team_s .flex{
	margin-bottom:8px;
	display:flex;
	align-items:center;
	gap:10px;
	color: #676767;
}
.our_team_s svg{
	width:18px;
	height:18px;
}

.our_team_s .flex svg path{
	fill:#969DA1;
}
.our_team_s .flex:hover svg path{
	fill:#316a3d;
}
.our_team_s a{
	font-weight:500;
	cursor:pointer !important;
	color: #676767;
	transition-duration:0ms;
}
.our_team_s a:hover{
	color: #316a3d;
}
.our_team_s img{
	max-height:200px;
	height:100%;
	width:auto;
}
.member_body{
	display:flex;
	flex-wrap:wrap;
	gap:25px;
}
.member_info{
	max-width:305px;
	width:100%
}
