html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

ul {
  margin: 0;
}

.container {
  width: auto;
  max-width: 100%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.container::after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 576px) {
  .container {
    width: auto;
    max-width: 536px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  .container::after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (min-width: 768px) {
  .container {
    width: auto;
    max-width: 728px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 80px;
    padding-right: 80px;
  }
  .container::after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (min-width: 1200px) {
  .container {
    width: auto;
    max-width: 1160px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 80px;
    padding-right: 80px;
  }
  .container::after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (min-width: 1600px) {
  .container {
    width: auto;
    max-width: 1560px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 80px;
    padding-right: 80px;
  }
  .container::after {
    content: "";
    display: table;
    clear: both;
  }
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}
@media (min-width: 768px) {
  body {
    font-size: 20px;
  }
}

::-moz-selection {
  color: white;
  background: #183b82;
}

::selection {
  color: white;
  background: #183b82;
}

/**************************************************************/
html, body {
  height: 100%;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  top: 0;
  left: 0;
  background: white;
  color: #191a1b;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #f36610;
  text-decoration: none;
  font-weight: 700;
}
a:hover {
  color: black;
}
a img {
  max-width: 30px;
}
a.button {
  background: #f36610;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 900;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
a.button:hover, a.button:focus {
  background: white;
  color: #f36610;
  -webkit-box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
          box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

a, button, input {
  outline: 0;
}

a:focus, a:active {
  text-decoration: none;
  outline: 0;
}

.centered {
  text-align: center;
}

p {
  margin: 0 0 25px;
}
p strong {
  font-weight: 700;
}

hr {
  margin: 30px 0 0;
  padding: 0 0 30px;
  border: 0;
  border-top: 1px solid #95b1eb;
}

/**************************************************************/
#top-part {
  position: relative;
  top: 0;
  left: 0;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 25px;
  overflow: hidden;
  color: white;
}
@media (min-width: 576px) {
  #top-part {
    padding: 100px 50px;
  }
}
#top-part:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.8);
}
@media (min-width: 576px) {
  #top-part:after {
    background: rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 1200px) {
  #top-part:after {
    background: rgba(0, 0, 0, 0.3);
  }
}
@media (min-width: 1600px) {
  #top-part:after {
    background: rgba(0, 0, 0, 0);
  }
}
#top-part .content {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (min-width: 1200px) {
  #top-part .content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    max-width: 800px;
  }
}
#top-part .content img {
  width: 200px;
  height: auto;
  margin: 0 0 60px;
}
@media (min-width: 576px) {
  #top-part .content img {
    width: 300px;
  }
}
#top-part .content h1 {
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 1px;
  margin: 0 0 25px;
  padding: 0;
}
@media (min-width: 576px) {
  #top-part .content h1 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  #top-part .content h1 {
    font-size: 60px;
  }
}
#top-part .video-container {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#top-part .video-container video {
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 25%;
  -webkit-transform: translate(-25%, -50%);
          transform: translate(-25%, -50%);
  z-index: 1;
}
#bottom-part {
  padding: 60px 0;
}
@media (min-width: 1200px) {
  #bottom-part {
    padding: 100px 0;
  }
}
#bottom-part .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 50px;
}
@media (min-width: 1200px) {
  #bottom-part .grid {
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
#bottom-part .grid .col > *:first-child {
  margin-top: 0;
  padding-top: 0;
}
#bottom-part .grid .col > *:last-child {
  padding-bottom: 0;
}
#bottom-part .grid .col h2 {
  color: #1c4598;
}
#bottom-part .grid .col p.title {
  margin-top: -25px;
}
#bottom-part .grid .col a {
  display: table;
}
#bottom-part .box {
  border-radius: 10px;
  background: #1c4598;
  background: linear-gradient(145deg, #1c4598 0%, #14316d 100%);
  padding: 30px 30px 10px !important;
  color: white;
}
@media (min-width: 1600px) {
  #bottom-part .box {
    padding: 50px 50px 30px !important;
  }
}
#bottom-part .box h2 {
  color: white !important;
  margin: 0 0 20px;
  padding: 0;
}
#bottom-part .box a:hover {
  color: white;
}
#bottom-part .box .grid {
  grid-gap: 0px;
}
@media (min-width: 1200px) {
  #bottom-part .box .grid {
    grid-gap: 30px;
  }
}
#bottom-part .small h2 {
  font-size: 22px;
}
@media (min-width: 576px) {
  #bottom-part .small p {
    font-size: 16px;
  }
}