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

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
}

p {
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

.container {
  position: static;
  display: block;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.container.navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #000;
}

.container.section-1 {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container.grey-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #4e4e4e;
}

.container.grey-bar.copyright {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.body {
  font-family: 'Open Sans', sans-serif;
}

.navbar {
  background-color: #000;
  color: #fff;
}

.nav-link {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 10px;
  padding: 0px;
  border-radius: 4px;
  background-color: #358fc3;
  color: #fff;
  text-decoration: none;
}

.text-block {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}

.button-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px 15px;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #358fc3;
  text-decoration: none;
}

.button-nav.small-width {
  display: inline-block;
}

.section.heading {
  position: relative;
  height: 100vh;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url('../images/background.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/background.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.section.grey-bar {
  padding: 5px;
  background-color: #4e4e4e;
}

.section.black-background {
  background-color: #131212;
}

.announcement-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
}

.announcement {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
}

.left-columns {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.left-columns.mobile {
  display: none;
}

.grid {
  display: -ms-grid;
  display: grid;
  justify-items: stretch;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto auto auto;
  grid-template-rows: auto auto auto auto;
}

.column-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 15px 15px 10px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0px 5px 5px 0px;
  background-color: #131212;
  box-shadow: 3px 3px 4px -2px rgba(0, 0, 0, 0.66);
}

.text-column-left {
  margin-left: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.image {
  margin-right: 15px;
}

.image-2 {
  margin-right: 15px;
}

.image-3 {
  margin-right: 15px;
}

.image-4 {
  margin-right: 10px;
}

.image-5 {
  margin-right: 5px;
}

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

.div-block {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 45%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

.heading-2 {
  margin-bottom: 25px;
  font-size: 30px;
  line-height: 30px;
}

.heading-2.align-middle {
  margin-top: 0px;
  padding-top: 40px;
  text-align: center;
}

.paragraph.black {
  margin-bottom: 30px;
  color: #4e4e4e;
}

.text-grey-bar {
  color: #b4b4b4;
  font-size: 16px;
}

.black-heading {
  margin-top: 40px;
  margin-bottom: 30px;
  color: #000;
  font-size: 30px;
  text-align: center;
}

.grid-2 {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  justify-items: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.heading3 {
  margin-bottom: 20px;
}

.divider {
  width: 25%;
  height: 3px;
  margin-right: auto;
  margin-left: auto;
  background-color: #4e4e4e;
}

.divider.white-color {
  width: 15%;
  background-color: #cacaca;
}

.divider.white-color.margin-top {
  display: none;
}

.form-block {
  max-width: 65%;
  margin: 50px auto 0px;
  padding-bottom: 30px;
}

.label-form {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.text-span {
  color: #358fc3;
}

@media screen and (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }
  .nav-link {
    font-size: 20px;
  }
  .text-block {
    font-size: 30px;
  }
  .button-nav.small-width {
    max-width: 37%;
    padding: 17px 19px;
  }
  .section {
    padding: 30px;
  }
  .section.grey-bar {
    padding: 10px;
  }
  .announcement {
    font-size: 25px;
  }
  .text-column-left {
    font-size: 23px;
  }
  .div-block {
    max-width: 45%;
  }
  .heading-2 {
    font-size: 45px;
    line-height: 45px;
  }
  .paragraph {
    font-size: 25px;
    line-height: 25px;
  }
  .paragraph.black {
    font-size: 30px;
    line-height: 35px;
  }
  .text-grey-bar {
    font-size: 25px;
  }
  .black-heading {
    font-size: 40px;
  }
  .heading3 {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .container.grey-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .nav-link {
    text-align: center;
  }
  .button-nav {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .button-nav.mobile {
    display: none;
  }
  .section.heading {
    height: auto;
    padding: 86px;
  }
  .left-columns {
    display: none;
  }
  .left-columns.mobile {
    position: static;
    display: block;
  }
  .div-block.mobile {
    position: static;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    max-width: 95%;
    margin-right: auto;
    margin-left: auto;
  }
  .div-block.computer {
    position: static;
    display: block;
    max-width: 95%;
  }
  .heading-2.mobile {
    text-align: center;
  }
  .paragraph.mobile {
    display: none;
  }
  .grid-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .divider.white-color.margin-top {
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .div-block-2 {
    padding: 15px;
  }
}

@media screen and (max-width: 479px) {
  .container.grey-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .button-nav.small-width {
    max-width: 60%;
  }
  .button-nav.mobile {
    display: none;
  }
  .section.heading {
    height: auto;
    padding: 29px;
  }
  .announcement {
    display: block;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
  }
  .left-columns {
    position: static;
    display: none;
    margin-top: 10px;
  }
  .left-columns.mobile {
    display: block;
  }
  .div-block {
    position: static;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 95%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .div-block.computer {
    display: block;
  }
  .heading-2.mobile {
    font-size: 20px;
    text-align: center;
  }
  .paragraph.mobile {
    display: none;
  }
  .black-heading {
    font-size: 20px;
    line-height: 20px;
  }
  .grid-2 {
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .divider.white-color.margin-top {
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .image-7 {
    padding: 0px;
  }
  .div-block-2 {
    padding: 15px;
  }
}

#w-node-5fe95abfbefc-e2bd4208 {
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-b0796aa9e1c2-e2bd4208 {
  -ms-grid-column-align: auto;
  justify-self: auto;
}

@media screen and (max-width: 479px) {
  #w-node-5fe95abfbefc-e2bd4208 {
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row: span 2;
    grid-row-start: span 2;
    -ms-grid-row-span: 2;
    grid-row-end: span 2;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}