.vg_body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.vg_card {
  border: 1px solid #bbdefb;
  border-radius: 0.5rem;
}
.vg_card:hover {
  background-color: #e2f2fd;
  transition: background-color 0.2s ease-in-out;
}
.vg_card-section {
  padding-top: 5rem;
}
.vg_card-section--top {
  padding-top: 3rem;
}
.vg_card-title {
  color: #235892;
  text-align: center;
  font-weight: 500;
}
.vg_card-subtitle {
  color: #235892;
  font-weight: 600;
}
.vg_card-row {
  display: flex;
}
.vg_card-row--fill {
  padding: 0 1rem;
}
.vg_card-rowitem {
  flex: 1 50%;
  padding: 1rem;
}
.vg_card-rowitem--column {
  display: flex;
  flex-direction: column;
}
.vg_card-image {
  display: inline;
  text-align: center;
  max-width: 100%;
  height: auto;
}
.vg_card-video {
  background-color: yellow;
  object-fit: fill;
}
.vg_card-element--nomargin {
  margin: 0;
}
.vg_card-element--nomargin-bottom {
  margin-bottom: 0;
}
.vg_card-element--margin-top-small {
  margin-top: 0.5rem;
}
.vg_card-element--margin-top-medium {
  margin-top: 1rem;
}
.vg_card-element--margin-bottom-medium {
  margin-bottom: 1rem;
}

/* Small screens - mobiles and tablets */
@media (width <= 30em) {
  .vg_card-row {
    flex-direction: column;
  }
  .vg_card-rowitem {
    padding-top: 0;
  }
  .vg_card-section {
    padding-top: 3rem;
  }
  .vg_card-section--top {
    padding-top: 2rem;
  }
}
.vg_cardbox {
  display: flex;
  flex-direction: column;
  padding-top: 4.5rem;
  padding-bottom: 1rem;
  padding-left: 10rem;
  padding-right: 10rem;
}

/* Small screens - mobiles and tablets */
@media (width <= 30em) {
  .vg_cardbox {
    padding-top: 4.5rem;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.vg_contact-form {
  display: grid;
  column-gap: 0.5rem;
  row-gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-areas: "name name email email" "phone phone phone phone" "message message message message" "submit submit submit submit";
}
.vg_contact-control {
  display: flex;
  flex-direction: column;
  position: relative;
}
.vg_contact-control--hide {
  display: none;
}
.vg_contact-control-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.vg_contact-control-row-btn {
  margin-left: 1rem;
  color: #ffffff;
  background-color: #5cb85c;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  font-weight: 500;
}
.vg_contact-control-row-btn:hover {
  background-color: #449d44;
  transition: background-color 0.2s ease-in-out;
}
.vg_contact-control-row-btn:disabled {
  opacity: 0.5;
}
.vg_contact--email {
  grid-area: email;
}
.vg_contact--message {
  grid-area: message;
}
.vg_contact--name {
  grid-area: name;
}
.vg_contact--phone {
  grid-area: phone;
}
.vg_contact--submit {
  grid-area: submit;
}

/* Small screens - mobiles and tablets */
@media (width <= 30em) {
  .vg_contact-form {
    grid-template-columns: 1fr;
    grid-template-areas: "name" "email" "phone" "message" "submit";
  }
}
.vg_displayinfo {
  display: flex;
  flex-direction: column;
}
.vg_displayinfo-header {
  color: #bbdefb;
  background-color: #235892;
  padding: 1rem;
  font-size: 1.2rem;
}
.vg_displayinfo-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #bbdefb;
  padding: 0.5rem;
}
.vg_displayinfo-row-col-date {
  min-width: 30%;
}

.vg_header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4rem;
  position: fixed;
  top: 0;
  overflow: hidden;
  background-color: #235892;
  color: #bbdefb;
  z-index: 1000;
}
.vg_header-dropdown {
  display: inline-block;
}
.vg_header-dropdown-btn {
  border: 1px solid #bbdefb;
  border-radius: 0.5rem;
  padding: 0.3rem;
  color: #bbdefb;
  background-color: transparent;
  text-align: right;
  font-size: 1rem;
}
.vg_header-dropdown-btn:hover {
  color: #ffffff;
}
.vg_header-dropdown-content {
  display: none;
  position: fixed;
  color: #bbdefb;
  background-color: #235892;
  text-decoration: none;
}
.vg_header-dropdown-content--show {
  display: block;
}
.vg_header-dropdown-content a {
  text-decoration: none;
  display: block;
  padding: 0.5rem;
  color: #bbdefb;
  background-color: #235892;
}
.vg_header-hamburger {
  display: none;
  font-size: 2rem;
  font-weight: 800;
  color: #bbdefb;
}
.vg_header-menu {
  display: none;
  position: fixed;
  right: 0;
  top: 4rem;
  list-style-type: none;
  padding: 0.5rem;
  color: #bbdefb;
  background-color: #235892;
}
.vg_header-menu-item {
  padding: 0.3rem;
  color: #bbdefb;
  text-align: right;
}
.vg_header-menu-link {
  color: #bbdefb;
  text-decoration: none;
}
.vg_header-menu-link:hover {
  color: #ffffff;
}
.vg_header-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}
.vg_header-nav-items {
  display: flex;
  gap: 3rem;
}
.vg_header-nav-item {
  color: #bbdefb;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}
.vg_header-nav-item:hover {
  color: #ffffff;
}
.vg_header-navmenu {
  display: flex;
}
.vg_header-logo-container {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  background-color: #235892;
}
.vg_header-logo-container > a {
  color: #bbdefb;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}
.vg_header-logo-container > a:hover {
  color: #ffffff;
}
.vg_header-logo {
  width: 3rem;
  height: auto;
  border-radius: 50%;
  vertical-align: middle;
}

/* Small screens - mobiles and narrow tablets */
@media screen and (max-width: 768px) {
  .vg_header-hamburger {
    display: flex;
    cursor: pointer;
  }
  .vg_header-hamburger #closeHam {
    display: none;
  }
  .vg_header-menu {
    display: none;
  }
  .vg_header-navmenu {
    display: none;
  }
}
/* Large screens - desktop and wide tablets */
/*
@media screen and (min-width: 769px) {
	.sc_header-menu {
		display: flex;
		position: unset;
	}
}
*/
.vg_intro {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "im-1 im-2 im-3" "im-4 im-5 im-6";
}
.vg_intro-image {
  display: inline;
  width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
.vg_intro--im-1 {
  grid-area: im-1;
}
.vg_intro--im-2 {
  grid-area: im-2;
}
.vg_intro--im-3 {
  grid-area: im-3;
}
.vg_intro--im-4 {
  grid-area: im-4;
}
.vg_intro--im-5 {
  grid-area: im-5;
}
.vg_intro--im-6 {
  grid-area: im-6;
}

/* Small screens - mobiles and tablets */
.vg_top {
  display: flex;
  justify-content: space-between;
}
.vg_top-image {
  max-width: auto;
  height: 5rem;
}
.vg_top-banner--left {
  display: flex;
  background-color: #000000;
}
.vg_top-banner--mid {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #bbdefb;
  background-color: #000000;
}
.vg_top-banner--right {
  display: flex;
  background-color: #000000;
}
.vg_top-banner--title {
  text-align: center;
}

/* Small screens - mobiles and tablets */
@media (width <= 30em) {
  .vg_top-banner--left {
    flex-direction: column;
    justify-content: center;
  }
  .vg_top-banner--right {
    flex-direction: column;
    justify-content: center;
  }
}

/*# sourceMappingURL=main.css.map */
