.standard_btn {
  background-color: #f7323f;
  color: #fff;
  padding: 10px 60px 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
  display: inline-block;
  position: relative;
  box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.2);
  font-family: Grotesk_Light;
  border-color: transparent;
  transition: all 0.3s ease 0s;
}
.standard_btn:after {
  content: '';
  width: 26px;
  height: 20px;
  background-image: url("../img/white_arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 20px;
  top: 10px;
  background-position: center;
}
.standard_btn:visited,
.standard_btn:link,
.standard_btn:active {
  color: #fff;
  text-decoration: none;
}
.standard_btn:visited:hover,
.standard_btn:link:hover,
.standard_btn:active:hover {
  box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.3);
  transform: translateY(-2px);
  transition: all 0.3s ease 0s;
}
.standard_btn[type="submit"] {
  padding: 10px 30px 10px 30px;
}
.standard_btn[type="submit"]:after {
  display: none;
}
.standard_btn[type="submit"]:hover {
  cursor: pointer;
}
.standard_btn.white {
  background-color: #fff;
  color: #0b1f2c;
  box-shadow: 0 10px 30px 0 rgba(0,47,86,0.2);
}
.standard_btn.white:after {
  background-image: url("../img/blue_arrow.svg");
}
.circle_arrow {
  display: block;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.circle_arrow.full {
  background-image: url("../img/control_arrow_circle.svg");
}
.circle_arrow.empty {
  background-image: url("../img/control_arrow_circle_empty.svg");
}
.circle_arrow.next { /* IE 9 */ /* Chrome, Safari, Opera */
  transform: rotate(180deg);
}
.circle_arrow.down { /* IE 9 */ /* Chrome, Safari, Opera */
  transform: rotate(270deg);
}
input[type="text"] {
  background-color: rgba(11,31,44,0.1);
  border-radius: 100px;
  font-size: 16px;
  line-height: 1.25;
  height: 50px;
  box-shadow: none;
  border: none;
  padding: 15px 30px;
  margin-bottom: 20px;
  outline: none;
  max-width: 100%;
  font-family: Grotesk_Light;
}
input[type="text"]::-webkit-input-placeholder {
  color: #8691a4;
}
input[type="text"]::-moz-placeholder {
  color: #8691a4;
}
input[type="text"]::-moz-placeholder {
  color: #8691a4;
}
input[type="text"]:-ms-input-placeholder {
  color: #8691a4;
}
input[type="text"]:-moz-placeholder {
  color: #8691a4;
}
input[type="text"]::focus {
  outline: none;
}
input[type="file"] {
  cursor: inherit;
  display: block;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  visibility: hidden;
  font-size: 0px;
}
.file_label {
  border-bottom: 1px solid rgba(11,31,44,0.1);
  position: relative;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
  padding-left: 20px;
  min-width: 200px;
  padding: 5px;
}
.file_label:after {
  content: '';
  width: 35px;
  height: 35px;
  background-image: url("../img/attach.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -5px;
  right: 0;
}
.file_label .text_label {
  max-width: 90%;
  display: block;
  height: 22px;
  overflow: hidden;
}
@font-face {
  font-family: Grotesk_Light;
  font-style: normal;
  font-weight: lighter;
  src: url("../fonts/PxGrotesk-Light.otf");
}
@font-face {
  font-family: Grotesk_Regular;
  font-style: normal;
  src: url("../fonts/PxGrotesk-Regular.otf");
}
@font-face {
  font-family: Grotesk_Bold;
  font-style: normal;
  src: url("../fonts/PxGrotesk-Bold.otf");
}
html {
  color: #000;
  background: #fff;
}
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure,
section.contact_form h2 {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
li {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6,
section.contact_form h2 {
  font-size: 100%;
  font-weight: normal;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
input,
textarea,
select {
  *font-size: 100%;
}
legend {
  color: #000;
}
a img {
  border: none;
}
blockquote,
q {
  quotes: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
.clear {
  margin: 0 0 -1px 0;
  line-height: 1px;
  display: block;
  font-size: 1px;
  clear: both;
  height: 1px;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  line-height: 0;
  content: " ";
  clear: both;
  height: 0;
}
* html .clearfix {
  zoom: 1;
}
*:first-child+html .clearfix {
  zoom: 1;
}
.pad_left {
  padding-left: 15px;
}
@media screen and (min-width: 601px) {
  .pad_left {
    padding-left: 135px;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .pad_left {
    padding-left: 40px;
  }
}
.pad_right {
  padding-right: 15px;
}
@media screen and (min-width: 601px) {
  .pad_right {
    padding-right: 135px;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .pad_right {
    padding-right: 40px;
  }
}
html,
body {
  font-family: Grotesk_Regular, Verdana, Geneva, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
}
h1,
section.contact_form h2 {
  font-size: 1.9em;
}
@media screen and (min-width: 601px) {
  h1,
  section.contact_form h2 {
    font-size: 2.3em;
  }
}
h2 {
  font-size: 1.4em;
}
@media screen and (min-width: 601px) {
  h2 {
    font-size: 1.8em;
  }
}
h3 {
  font-size: 1.4em;
}
h4 {
  font-size: 1.2em;
}
h5 {
  font-size: 1.1em;
}
h6 {
  font-size: 1em;
  font-weight: bold;
}
p {
  font-size: 16px;
  margin-bottom: 1em;
  font-family: Grotesk_Regular, Verdana, Geneva, sans-serif;
}
@media screen and (min-width: 601px) {
  p {
    font-size: 18px;
  }
}
b,
strong {
  font-weight: bold;
  font-family: Grotesk_Bold;
}
a {
  color: #f7323f;
  text-decoration: none;
  outline: none;
}
a:hover,
a:focus {
  color: #f7323f;
  text-decoration: underline;
}
ul,
ol {
  margin: 0 0 1em;
  padding: 0 0 0 25px;
}
ul li,
ol li {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: disc;
}
ol li {
  list-style: decimal;
}
.blog_section {
  padding-top: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(11,31,44,0.1);
}
.blog_section .page_title {
  width: 470px;
  color: #002f56;
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.33;
  text-align: left;
  max-width: 100%;
}
@media screen and (min-width: 601px) {
  .blog_section .page_title {
    margin-bottom: 100px;
  }
}
.blog_section .list_posts .post {
  display: block;
  font-size: 20px;
  line-height: 1.25;
  text-align: left;
  color: #002f56;
  text-decoration: none;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(11,31,44,0.1);
}
.blog_section .list_posts .post:hover {
  text-decoration: underline;
}
@media screen and (min-width: 601px) {
  .blog_section .list_posts .post {
    font-size: 24px;
  }
}
.list_cases {
  padding-top: 120px;
}
@media screen and (min-width: 601px) {
  .list_cases {
    padding-top: 0px;
  }
}
.list_cases article.row {
  margin: 0;
  margin-bottom: 10px;
  max-width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 601px) {
  .list_cases article.row {
    height: 400px;
  }
}
.list_cases article.row .text {
  border-bottom: 1px solid rgba(11,31,44,0.1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: left;
  align-items: left;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 601px) {
  .list_cases article.row .text {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.list_cases article.row .text .title,
.list_cases article.row .text .excerpt {
  color: #002f56;
  font-size: 18px;
  line-height: 1.39;
  text-align: left;
  margin-bottom: 30px;
}
.list_cases article.row .text .title {
  font-weight: bold;
}
.list_cases article.row .image {
  padding: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 601px) {
  .list_cases article.row .image {
    max-width: 750px !important;
    height: auto;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .list_cases article.row .image {
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.list_cases article.row .image img {
  width: 100%;
  height: auto;
  max-height: 400px;
}
@media screen and (min-width: 601px) {
  .list_cases article.row .image img {
    max-height: none;
  }
}
@media screen and (min-width: 1024px) {
  .list_cases article.row .image img {
    max-width: 67%;
  }
}
.list_cases article.row .standard_btn {
  max-width: 270px;
}
.cookie-box {
  position: fixed;
  bottom: 0px;
  z-index: 99;
  background-color: #fff;
  width: 370px;
  max-width: 100%;
  left: 0px;
}
@media screen and (min-width: 601px) {
  .cookie-box {
    left: 135px;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .cookie-box {
    left: 40px;
  }
}
.cookie-box .cookie-box-inner {
  padding: 10px 20px;
}
.cookie-box .cookie-box-inner p {
  font-family: Grotesk_Regular, Verdana, Geneva, sans-serif;
  font-size: 12px;
  text-align: left;
  color: #0b1f2c;
}
.cookie-box .cookie-allow {
  padding: 10px;
  width: 100%;
  border: none;
  background-color: #f7323f;
  color: #fff;
  font-size: 12px;
  text-align: center;
  font-family: Grotesk_Regular, Verdana, Geneva, sans-serif;
  outline: none;
  cursor: pointer;
}
footer {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #0b1f2c;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  footer {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
footer .info {
  -ms-flex-direction: column;
  flex-direction: column;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  footer .info {
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
  }
}
footer .info .address {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  footer .info .address {
    margin-right: 50px;
    margin-bottom: 0px;
  }
}
footer .info .address * {
  font-size: 16px;
  line-height: 1.25;
  color: #62676d;
}
footer .info .address p:last-child {
  margin-bottom: 0px;
}
footer .info .other_info {
  margin-bottom: 70px;
}
@media screen and (min-width: 1024px) {
  footer .info .other_info {
    margin-bottom: 0px;
  }
}
footer .info .other_info * {
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}
footer .info .other_info p:last-child {
  margin-bottom: 0px;
}
footer .info .other_info a:hover {
  color: #fff !important;
}
footer .info a {
  text-decoration: none;
}
footer .certificates {
  margin-right: 40px;
  margin-bottom: 70px;
}
@media screen and (min-width: 1024px) {
  footer .certificates {
    margin-bottom: 0px;
  }
}
footer .certificates:last-child {
  margin-right: 0px;
}
footer .social_networks {
  -ms-flex-direction: row;
  flex-direction: row;
  display: -ms-flexbox;
  display: flex;
}
footer .social_networks .social_icon {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  opacity: 0.5;
}
footer .social_networks .social_icon.youtube {
  background-image: url("../img/youtube.svg");
}
footer .social_networks .social_icon.facebook {
  background-image: url("../img/facebook.svg");
}
footer .social_networks .social_icon.linkedin {
  background-image: url("../img/linkedin.svg");
}
footer .social_networks .social_icon.twitter {
  background-image: url("../img/twitter.svg");
  background-size: 30px;
}
footer .social_networks .social_icon.instagram {
  background-image: url("../img/instagram.svg");
  background-size: 30px;
}
footer .social_networks .social_icon:hover {
  opacity: 1;
}
.input-text-color span input {
  color: #fff;
}
section.accordion form input[type="text"] {
  margin-bottom: 30px;
  width: 270px;
  margin-right: 30px;
}
section.accordion form > p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.accordion form > p * {
  max-width: 100%;
}
section.accordion form .file_label {
  width: 270px;
  margin-right: 30px;
  margin-bottom: 30px;
}
.one_column_section form input[type="text"] {
  margin-bottom: 30px;
  width: 220px;
  margin-right: 30px;
}
.one_column_section form > p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.one_column_section form > p * {
  max-width: 100%;
}
.one_column_section form .file_label {
  width: 220px;
  margin-right: 30px;
  margin-bottom: 30px;
}
.one_column_section form #field_terms input[type="checkbox"] {
  margin: 4px 1rem 0 0;
}
.one_column_section form #field_terms span.wpcf7-list-item-label {
  margin: 1rem 0;
  font-size: 16px;
  top: -16px;
}
.one_column_section form #field_terms span.wpcf7-list-item-label a {
  font-size: 16px;
}
.one_column_section form .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.one_column_section form .container input {
  position: absolute;
  opacity: 0;
}
.one_column_section form .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}
.one_column_section form .container:hover input ~ .checkmark {
  background-color: #ccc;
}
.one_column_section form .container input:checked ~ .checkmark {
  background-color: #2196f3;
}
.one_column_section form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.one_column_section form .container input:checked ~ .checkmark:after {
  display: block;
}
.one_column_section form .container .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
header {
  height: 70px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  width: 100%;
  z-index: 99;
}
@media screen and (min-width: 601px) {
  header {
    position: relative;
    height: 100px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  header {
    width: 95%;
  }
}
@media screen and (min-width: 1024px) {
  header {
    width: 100%;
  }
}
header .logo {
  width: 50px;
  height: 50px;
  float: left;
  margin-left: 10px;
}
@media screen and (min-width: 601px) {
  header .logo {
    width: 155px;
    height: 50px;
    margin-left: 135px;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  header .logo {
    margin-left: 40px;
  }
}
header .logo img {
  width: 100%;
  height: 100%;
}
header .logo img.logo_desktop {
  display: none;
}
@media screen and (min-width: 601px) {
  header .logo img.logo_desktop {
    display: block;
  }
}
header .logo img.logo_mobile {
  display: block;
}
@media screen and (min-width: 601px) {
  header .logo img.logo_mobile {
    display: none;
  }
}
.top_right_elements {
  position: relative;
  height: 100%;
  float: right;
  margin-right: 100px;
}
@media screen and (min-width: 601px) {
  .top_right_elements {
    margin-right: 0px;
  }
}
.top_right_elements .language-chooser {
  float: right;
  padding-top: 20px;
  position: relative;
}
.top_right_elements .language-chooser .current-language {
  color: #fff;
  text-transform: uppercase;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-top: -9px;
  cursor: pointer;
}
.top_right_elements .language-chooser .current-language .shape {
  display: block;
  width: 19px;
  height: 2px;
  float: left;
  background-color: #fff;
  margin-right: 10px;
  margin-top: 6px;
}
.top_right_elements .language-chooser .current-language .arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  float: right;
  margin-left: 15px;
  margin-top: 5px;
}
.top_right_elements .language-chooser ul {
  display: none;
  width: 60px;
  background-color: #fff;
  padding: 5px 0px;
  margin: 0px;
  text-align: center;
  position: absolute;
  right: -20px;
  margin-top: 15px;
  z-index: 999;
}
.top_right_elements .language-chooser ul.shown {
  display: block;
}
.top_right_elements .language-chooser ul li {
  list-style-type: none;
}
.top_right_elements .language-chooser ul li:after {
  content: '';
  width: 30px;
  height: 1px;
  opacity: 0.1;
  background-color: #0b1f2c;
  display: block;
  margin: auto;
}
.top_right_elements .language-chooser ul li:last-child:after {
  display: none;
}
.top_right_elements .language-chooser ul li a {
  text-transform: uppercase;
  color: #0b1f2c;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
  margin: auto;
}
.top_right_elements .language-chooser ul li.active a {
  color: #f7323f;
}
.top_right_elements .single-menu-item {
  display: none;
}
@media screen and (min-width: 601px) {
  .top_right_elements .single-menu-item {
    display: block;
    float: right;
    margin-top: 16px;
    margin-right: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }
}
-webkit-scrollbar {
  display: none;
  background-color: #f7323f;
}
.menu_overlay {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: #f7323f;
  width: 935px;
  max-width: 100%;
  right: -935px;
  z-index: 10; /* Safari */
  transition: right 0.5s;
  padding-bottom: 50px;
  position: fixed;
  height: 100vh;
}
@media screen and (min-width: 1024px) {
  .menu_overlay {
    overflow-y: hidden;
  }
}
.menu_overlay::-webkit-scrollbar {
  display: none;
  background-color: #f7323f;
}
.menu_overlay::-moz-scrollbar {
  display: none;
  background-color: #f7323f;
}
.menu_overlay.shown {
  position: fixed;
  padding-bottom: 0px;
  height: 100vh;
  right: 0px !important;
  top: 0;
  bottom: 0;
}
.menus_box {
  padding-top: 100px;
  padding-bottom: 100px;
  color: #fff;
}
.menus_box a {
  color: #fff;
}
@media screen and (min-width: 601px) {
  .menus_box {
    padding-top: 185px;
  }
}
.menus_box .menu.main {
  margin-bottom: 50px;
}
@media screen and (min-width: 601px) {
  .menus_box .menu.main {
    margin-bottom: 50px;
  }
}
.menus_box .subtitle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.04;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
  padding-left: 15px;
}
@media screen and (min-width: 601px) {
  .menus_box .subtitle {
    padding-left: 0px;
  }
}
.menus_box ul {
  margin: 0px;
  padding: 0px;
  width: 240px;
}
.menus_box ul li {
  list-style-type: none;
}
.menus_box ul li a {
  padding: 15px;
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.menus_box ul li a:hover {
  text-decoration: underline;
}
body,
html {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  overflow-y: scroll;
}
body .menu_burger,
html .menu_burger {
  width: 100px;
  height: 100px;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 20;
  background-color: #f7323f;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  body .menu_burger,
  html .menu_burger {
    height: 70px;
    width: 83px;
  }
}
@media screen and (min-width: 1224px) {
  body .menu_burger,
  html .menu_burger {
    width: 83px;
  }
}
body .menu_burger .menu_text,
html .menu_burger .menu_text {
  display: none;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 601px) {
  body .menu_burger .menu_text,
  html .menu_burger .menu_text {
    display: -ms-flexbox;
    display: flex;
    margin-left: 5px;
  }
}
body .menu_burger .menu_text p,
html .menu_burger .menu_text p {
  text-transform: uppercase;
  color: #ededed;
  font-size: 16px;
  margin: 0;
  text-align: top;
  height: 18px;
  line-height: 15px;
  margin-top: 5px;
}
body .menu_burger #nav-icon1,
html .menu_burger #nav-icon1,
body .menu_burger #nav-icon2,
html .menu_burger #nav-icon2,
body .menu_burger #nav-icon3,
html .menu_burger #nav-icon3,
body .menu_burger #nav-icon4,
html .menu_burger #nav-icon4 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 25px auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 601px) {
  body .menu_burger #nav-icon1,
  html .menu_burger #nav-icon1,
  body .menu_burger #nav-icon2,
  html .menu_burger #nav-icon2,
  body .menu_burger #nav-icon3,
  html .menu_burger #nav-icon3,
  body .menu_burger #nav-icon4,
  html .menu_burger #nav-icon4 {
    margin: 46px 0 46px 10px;
    width: 20px;
  }
}
body .menu_burger #nav-icon1 span,
html .menu_burger #nav-icon1 span,
body .menu_burger #nav-icon2 span,
html .menu_burger #nav-icon2 span,
body .menu_burger #nav-icon3 span,
html .menu_burger #nav-icon3 span,
body .menu_burger #nav-icon4 span,
html .menu_burger #nav-icon4 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: #fff;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
@media screen and (min-width: 601px) {
  body .menu_burger #nav-icon1 span,
  html .menu_burger #nav-icon1 span,
  body .menu_burger #nav-icon2 span,
  html .menu_burger #nav-icon2 span,
  body .menu_burger #nav-icon3 span,
  html .menu_burger #nav-icon3 span,
  body .menu_burger #nav-icon4 span,
  html .menu_burger #nav-icon4 span {
    height: 2px;
  }
}
body .menu_burger #nav-icon2 span:nth-child(even),
html .menu_burger #nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}
body .menu_burger #nav-icon2 span:nth-child(odd),
html .menu_burger #nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}
body .menu_burger #nav-icon2 span:nth-child(1),
html .menu_burger #nav-icon2 span:nth-child(1),
body .menu_burger #nav-icon2 span:nth-child(2),
html .menu_burger #nav-icon2 span:nth-child(2) {
  top: 0px;
}
body .menu_burger #nav-icon2 span:nth-child(3),
html .menu_burger #nav-icon2 span:nth-child(3),
body .menu_burger #nav-icon2 span:nth-child(4),
html .menu_burger #nav-icon2 span:nth-child(4) {
  top: 6px;
}
@media screen and (min-width: 601px) {
  body .menu_burger #nav-icon2 span:nth-child(3),
  html .menu_burger #nav-icon2 span:nth-child(3),
  body .menu_burger #nav-icon2 span:nth-child(4),
  html .menu_burger #nav-icon2 span:nth-child(4) {
    top: 5px;
  }
}
body .menu_burger #nav-icon2 span:nth-child(5),
html .menu_burger #nav-icon2 span:nth-child(5),
body .menu_burger #nav-icon2 span:nth-child(6),
html .menu_burger #nav-icon2 span:nth-child(6) {
  top: 12px;
}
@media screen and (min-width: 601px) {
  body .menu_burger #nav-icon2 span:nth-child(5),
  html .menu_burger #nav-icon2 span:nth-child(5),
  body .menu_burger #nav-icon2 span:nth-child(6),
  html .menu_burger #nav-icon2 span:nth-child(6) {
    top: 10px;
  }
}
body .menu_burger #nav-icon2.open span:nth-child(1),
html .menu_burger #nav-icon2.open span:nth-child(1),
body .menu_burger #nav-icon2.open span:nth-child(6),
html .menu_burger #nav-icon2.open span:nth-child(6) {
  transform: rotate(45deg);
}
body .menu_burger #nav-icon2.open span:nth-child(2),
html .menu_burger #nav-icon2.open span:nth-child(2),
body .menu_burger #nav-icon2.open span:nth-child(5),
html .menu_burger #nav-icon2.open span:nth-child(5) {
  transform: rotate(-45deg);
}
body .menu_burger #nav-icon2.open span:nth-child(1),
html .menu_burger #nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}
@media screen and (min-width: 601px) {
  body .menu_burger #nav-icon2.open span:nth-child(1),
  html .menu_burger #nav-icon2.open span:nth-child(1) {
    left: 2px;
    top: 2px;
  }
}
body .menu_burger #nav-icon2.open span:nth-child(2),
html .menu_burger #nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}
@media screen and (min-width: 601px) {
  body .menu_burger #nav-icon2.open span:nth-child(2),
  html .menu_burger #nav-icon2.open span:nth-child(2) {
    left: calc(50% - 2px);
    top: 2px;
  }
}
body .menu_burger #nav-icon2.open span:nth-child(3),
html .menu_burger #nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
body .menu_burger #nav-icon2.open span:nth-child(4),
html .menu_burger #nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
body .menu_burger #nav-icon2.open span:nth-child(5),
html .menu_burger #nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 13px;
}
@media screen and (min-width: 601px) {
  body .menu_burger #nav-icon2.open span:nth-child(5),
  html .menu_burger #nav-icon2.open span:nth-child(5) {
    left: 2px;
    top: 8px;
  }
}
body .menu_burger #nav-icon2.open span:nth-child(6),
html .menu_burger #nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 13px;
}
@media screen and (min-width: 601px) {
  body .menu_burger #nav-icon2.open span:nth-child(6),
  html .menu_burger #nav-icon2.open span:nth-child(6) {
    left: calc(50% - 2px);
    top: 8px;
  }
}
.opened_menu {
  overflow-y: scroll;
}
@media screen and (min-width: 601px) {
  .opened_menu {
    overflow-y: hidden;
  }
}
.opened_menu .menu_burger { /* Safari */
  transition-delay: 0s;
}
.opened_menu:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  z-index: 9;
  opacity: 0.3;
}
#page {
  width: 100vw;
  padding-right: 0px; /* Safari */
  transition: margin-left 0.5s;
  height: 100vh;
  position: absolute;
}
@-moz-document url-prefix() {
  #page #page {
    position: absolute !important;
  }
}
@media screen and (min-width: 601px) {
  #page {
    padding-right: 100px;
  }
}
#page.closed_menu {
  margin-left: 0px !important;
}
@media screen and (min-width: 601px) {
  #page:before {
    content: '';
    max-width: 635px;
    width: 70%;
    height: 100px;
    background-color: #f7323f;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
  }
}
@media screen and (min-width: 601px) {
  #page:after {
    content: '';
    width: 100px;
    height: 600px;
    background-color: #f7323f;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    visibility: visible;
  }
}
#page .wpb_text_column.wpb_content_element.vc_custom_1496001363020 {
  width: 100%;
}
section.accordion {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #0b1f2c;
}
section.accordion .card {
  border: none;
  border-bottom: 1px solid #283f4e;
  background: transparent;
}
section.accordion .card .card-header {
  background-color: #0b1f2c;
  border: none;
  padding-top: 0px;
  padding-bottom: 0px;
}
section.accordion .card .card-header a {
  font-size: 24px;
  line-height: 1.25;
  text-align: left;
  color: #fff;
  text-decoration: none;
  padding-top: 40px;
  padding-bottom: 40px;
  display: block;
  font-family: Grotesk_Light;
}
section.accordion .card .card-header a span {
  float: right;
}
section.accordion .card .card-block {
  background-color: #0b1f2c;
  padding-bottom: 60px;
  color: #fff;
  font-size: 18px;
  line-height: 1.39;
  text-align: left;
}
section.accordion .card .card-block p {
  font-family: Grotesk_Light;
}
section.accordion .card .card-block img {
  max-width: 100%;
  margin-bottom: 5px;
}
section.accordion .card .card-block a:not(.standard_btn):hover {
  color: #f7323f;
}
section.accordion.white_accordion {
  background-color: #fff;
}
section.accordion.white_accordion .card {
  border-color: rgba(11,31,44,0.1);
}
section.accordion.white_accordion .card .card-header {
  background-color: #fff;
}
section.accordion.white_accordion .card .card-header a {
  color: #002f56;
}
section.accordion.white_accordion .card-block {
  background-color: #fff;
  color: #002f56;
}
section.contact_form {
  padding-top: 100px;
  padding-bottom: 100px;
}
section.contact_form .text {
  text-align: center;
}
@media screen and (min-width: 601px) {
  section.contact_form .text {
    text-align: left;
  }
}
section.contact_form .text * {
  color: #0b1f2c;
}
section.contact_form .text p {
  font-size: 18px;
  line-height: 1.39;
}
section.contact_form form {
  text-align: center;
}
@media screen and (min-width: 601px) {
  section.contact_form form {
    text-align: left;
  }
}
section.contact_form form input[type="submit"] {
  letter-spacing: 0.5px;
  font-family: Grotesk_Light;
}
section.contact_form strong {
  display: inline-block;
}
.wpcf7-response-output {
  font-family: Grotesk_Regular, Verdana, Geneva, sans-serif;
  border: none !important;
  padding: 0 !important;
}
.wpcf7-mail-sent-ok {
  color: #2e7d32 !important;
}
.wpcf7-validation-errors {
  color: #f00 !important;
}
section.cta_section .row {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin: 0px;
}
section.cta_section .image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
section.cta_section .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: left;
  align-items: left;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  section.cta_section .text {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 50px;
  }
}
section.cta_section .text .inner {
  width: 400px;
  font-size: 18px;
  line-height: 1.39;
  text-align: left;
  max-width: 100%;
}
section.cta_section .text .inner p {
  font-family: Grotesk_Regular, Verdana, Geneva, sans-serif;
  max-width: 100%;
}
section.cta_section .text .inner a {
  color: inherit;
}
section.cta_section .text .inner a.standard_btn {
  color: #fff;
}
section.cta_section .standard_btn {
  max-width: 250px;
}
section.employees_section .department {
  padding-top: 60px;
  padding-bottom: 0px;
}
@media screen and (min-width: 601px) {
  section.employees_section .department {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
section.employees_section .department .title {
  margin-bottom: 40px;
  color: #0b1f2c;
  font-family: Grotesk_Regular, Verdana, Geneva, sans-serif;
  letter-spacing: 0.5px;
  font-size: 1.8em;
}
@media screen and (min-width: 601px) {
  section.employees_section .department .title {
    margin-bottom: 50px;
  }
}
section.employees_section .department .single_employee {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (min-width: 601px) {
  section.employees_section .department .single_employee {
    text-align: left;
  }
}
section.employees_section .department .single_employee img {
  margin-bottom: 40px;
}
section.employees_section .department .single_employee .name,
section.employees_section .department .single_employee .role,
section.employees_section .department .single_employee .telephone,
section.employees_section .department .single_employee .email {
  line-height: 1;
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 601px) {
  section.employees_section .department .single_employee .name,
  section.employees_section .department .single_employee .role,
  section.employees_section .department .single_employee .telephone,
  section.employees_section .department .single_employee .email {
    text-align: left;
  }
}
section.employees_section .department .single_employee .name {
  font-weight: bold;
  font-family: Grotesk_Bold;
}
section.employees_section .department .single_employee .role {
  margin-bottom: 15px;
  font-family: Grotesk_Regular, Verdana, Geneva, sans-serif;
}
section.employees_section .department .single_employee .name,
section.employees_section .department .single_employee .telephone {
  margin-bottom: 10px;
}
section.employees_section .department .single_employee .email,
section.employees_section .department .single_employee .telephone {
  color: #f7323f;
  font-family: Grotesk_Regular, Verdana, Geneva, sans-serif;
}
section.image_section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 55vh;
  padding-bottom: 25px;
}
@media screen and (min-width: 601px) {
  section.image_section.full_height {
    height: calc(100vh - 100px);
  }
}
section.image_section .container {
  height: 100%;
}
section.image_section .text {
  height: 100%;
  padding-top: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 601px) {
  section.image_section .text {
    padding-top: 0px;
  }
}
section.image_section .text * {
  color: #fff;
  width: 100%;
  display: block;
  line-height: 1.39;
}
section.image_section .text p {
  font-family: Grotesk_Light;
  opacity: 0.9;
}
section.image_text_section .row {
  max-width: 100%;
  margin: 0;
}
section.image_text_section .row.f_right {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
section.image_text_section .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  color: #002f56;
  font-size: 16px;
  line-height: 1.67;
  text-align: left;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (min-width: 601px) {
  section.image_text_section .text {
    font-size: 16px;
  }
}
@media $desktopMQMQ {
  section.image_text_section .text {
    font-size: 18px;
  }
}
section.image_text_section .text h2,
section.image_text_section .text h3 {
  padding-bottom: 15px;
}
section.image_text_section .text h4 {
  padding-bottom: 5px;
}
section.image_text_section .text p {
  padding: 0;
  margin: 0;
}
section.image_text_section .text .standard_btn {
  margin-top: 15px;
}
section.image_text_section .text p {
  max-width: 100%;
}
section.image_text_section .text table {
  width: 100%;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  section.image_text_section .text table {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  section.image_text_section .text table {
    width: 200%;
  }
}
@media screen and (min-width: 1224px) {
  section.image_text_section .text table {
    width: 100%;
  }
}
section.image_text_section .image {
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -ms-flex-pack: center;
  justify-content: center;
}
section.image_text_section .image img {
  width: 100%;
  height: 320px;
}
@media screen and (min-width: 601px) {
  section.image_text_section .image img {
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  section.image_text_section .image img {
    width: 100%;
  }
}
.map_section {
  height: 500px;
/* fixes potential theme css conflict */
/*style the box which holds the text of the information window*/
/*style the paragraph tag*/
/*style the annoying little arrow at the bottom*/
/*style the link*/
}
.map_section .acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
  margin: 20px 0;
}
.map_section .acf-map img {
  max-width: inherit !important;
}
.map_section .gm-style .gm-style-iw {
  background-color: #f7323f !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 157px !important;
  min-height: 100px !important;
  padding-top: 10px;
  padding-left: 10px;
  display: block !important;
  color: #fff;
}
.map_section .gm-style .gm-style-iw #google-popup p {
  padding: 10px;
}
.map_section .gm-style div div div div div div div div {
  background-color: #f7323f !important;
  padding: 0;
  margin: 0;
  padding: 0;
  top: 0;
  color: #fff;
}
.map_section .gm-style .gm-style-iw p {
  font-family: Grotesk_Light;
  font-size: 16px;
}
.map_section .gm-style div div div div div div div div a {
  color: #f1f1f1;
  font-weight: bold;
}
.map_section div > div > div:nth-child(1) > div:nth-child(4) > div:nth-child(4) > div > div:nth-child(1) > div:nth-child(4) {
  background-color: #f7323f !important;
  width: 207px !important;
  left: 0px !important;
  top: 0px !important;
}
section.one_column_section .content {
  width: 770px;
  display: block;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
  color: #002f56;
  max-width: 100%;
}
@media screen and (min-width: 601px) {
  section.one_column_section .content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
section.one_column_section .content img {
  max-width: 100%;
  height: auto;
}
section.one_column_section .content a {
  color: #f7323f;
  text-decoration: none;
}
section.one_column_section .content a.standard_btn {
  color: #fff;
}
@media screen and (min-width: 601px) {
  .slider_with_images {
    height: 700px;
  }
}
.slider_with_images .custom-carousel,
.slider_with_images .custom-carousel-inner,
.slider_with_images .custom-carousel-item {
  -ms-flex-direction: column;
  flex-direction: column;
  height: 200px;

}
@media screen and (min-width: 601px) {
  .slider_with_images .custom-carousel,
  .slider_with_images .custom-carousel-inner,
  .slider_with_images .custom-carousel-item {
    height: 200px;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.slider_with_images .slick-initialized .slick-slide {
  display: -ms-flexbox;
  display: flex;
}
.image-side {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 400px;
}
@media screen and (min-width: 601px) {
  .image-side {
    height: 699px;
  }
}
@media screen and (max-width: 600px) {
  .image-side {
    -ms-flex: none;
    flex: none;
  }
}
.text-side {
  background-color: #ededed;
  box-shadow: inset 0 -1px 0 0 #fff;
  padding: 0px;
  height: 500px;
}
@media screen and (min-width: 601px) {
  .text-side {
    padding-top: 0px;
    padding-bottom: 0px;
    position: relative;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .text-side {
    -ms-flex: none;
    flex: none;
  }
}
.text-side .custom-inner-slide {
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 500px;
}
@media screen and (min-width: 601px) {
  .text-side .custom-inner-slide {
    height: 700px;
    -ms-flex-align: left;
    align-items: left;
  }
}
.text-side .custom-inner-slide .text {
  font-size: 18px;
  line-height: 1.39;
  text-align: center;
  color: #002f56;
  margin-bottom: 20px;
  max-width: 100%;
}
@media screen and (min-width: 601px) {
  .text-side .custom-inner-slide .text {
    margin-bottom: 45px;
    height: auto;
  }
}
@media screen and (min-width: 601px) {
  .text-side .custom-inner-slide .text {
    text-align: left;
  }
}
.text-side .custom-inner-slide .text p:last-child {
  margin-bottom: 0px;
}
.text-side .custom-inner-slide .text h2,
.text-side .custom-inner-slide .text h3 {
  margin-bottom: 20px;
}
.box-controlers {
  margin-top: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -ms-flexbox;
  display: flex;
}
.box-controlers .custom-carousel-control-prev {
  margin-right: 30px;
}
.box-controlers .carousel-control-next,
.box-controlers .carousel-control-prev {
  position: relative;
}
.testimonial_slider {
  padding-top: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(128,128,128,0.2);
}
@media screen and (min-width: 601px) {
  .testimonial_slider {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.testimonial_slider .custom-carousel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 601px) {
  .testimonial_slider .custom-carousel {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.testimonial_slider .custom-carousel .custom-carousel-inner {
  max-width: 730px;
  width: 75%;
  margin: auto;
  height:200px;
}
.testimonial_slider .custom-carousel .custom-carousel-item {
  display: none;
}
.testimonial_slider .custom-carousel .custom-carousel-item.active {
  display: -ms-flexbox;
  display: flex;
}
.testimonial_slider .custom-carousel .custom-carousel-control-next,
.testimonial_slider .custom-carousel .custom-carousel-control-prev {
  position: relative;
  display: -ms-flexbox;
  display: flex;
}
.testimonial_slider .custom-carousel .custom-carousel-control-prev.desktop {
  display: none !important;
}
@media screen and (min-width: 601px) {
  .testimonial_slider .custom-carousel .custom-carousel-control-prev.desktop {
    display: block !important;
  }
}
.testimonial_slider .custom-carousel .custom-carousel-control-prev.mobile {
  display: block;
  margin-right: 30px;
}
@media screen and (min-width: 601px) {
  .testimonial_slider .custom-carousel .custom-carousel-control-prev.mobile {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .testimonial_slider .custom-carousel .box_controls {
    -ms-flex-direction: row;
    flex-direction: row;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
  }
}
.testimonial_slider .custom-carousel .single-slide {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}
.testimonial_slider .custom-carousel .single-slide img {
  margin-bottom: 40px;
}
.testimonial_slider .custom-carousel .single-slide .description {
  width: 100%;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}
.testimonial_slider .custom-carousel .single-slide .description p {
  margin-bottom: 0px;
}
.testimonial_slider .custom-carousel .single-slide .name {
  font-size: 16px;
  font-family: Grotesk_Bold;
  line-height: 1.56;
  margin-bottom: 5px;
}
.testimonial_slider .custom-carousel .single-slide .link {
  color: #62676d;
  font-size: 16px;
  line-height: 1.56;
}
.testimonial_slider .custom-carousel .single-slide .link p {
  font-family: Grotesk_Light;
}
.testimonial_slider .custom-carousel .single-slide .link a {
  color: #f7323f;
  text-decoration: none;
}
section.text_section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  margin: 0 -1px;
}
@media screen and (min-width: 601px) {
  section.text_section {
    background-size: cover;
    padding-top: 150px;
    padding-bottom: 150px;
    background-position: center right;
  }
}
section.text_section .row {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 601px) {
  section.text_section .row {
    padding-left: 0px;
    padding-right: 0px;
  }
}
section.text_section .title {
  color: #f7323f;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  section.text_section .title {
    font-size: 15px;
  }
}
@media screen and (min-width: 1024px) {
  section.text_section .title {
    font-size: 15px;
  }
}
@media screen and (min-width: 1224px) {
  section.text_section .title {
    font-size: 18px;
  }
}
section.text_section table {
  width: 100%;
}
section.text_section table tbody tr td {
  padding: 5px 0;
  display: block;
}
@media screen and (min-width: 769px) {
  section.text_section table tbody tr td {
    display: table-cell;
  }
}
@media screen and (min-width: 1024px) {
  section.text_section table tbody tr td {
    display: table-cell;
  }
}
section.text_section.error_page .title {
  font-size: 100px;
  font-family: Grotesk_Bold;
}
section.text_section .text {
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
  color: #002f56;
  margin-bottom: 50px;
  font-family: Grotesk_Light;
}
section.text_section .text p {
  font-family: Grotesk_Light;
}
section.text_section .text p:last-child {
  margin-bottom: 0px;
}
section.text_section.white_bullets ul li {
  color: #fff;
}
section.video_section {
  position: relative;
}
section.video_section iframe {
  min-width: 100% !important;
  max-width: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
}
.content_post {
  width: 770px;
  display: block;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 769px) {
  .content_post {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.content_post .post_title {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.25;
  text-align: left;
  margin-bottom: 40px;
  color: #002f56;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
@media screen and (min-width: 601px) {
  .content_post .post_title {
    font-size: 40px;
    overflow-wrap: unset;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
  }
}
.content_post .description {
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
  color: #002f56;
}
.content_post a {
  color: #f7323f;
  text-decoration: none;
}
.content_post a.standard_btn {
  color: #fff;
}
.content_post p img {
  max-width: 100%;
  height: auto;
}

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