@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700;900&display=swap");
html, body {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Raleway";
  color: #000000;
  line-height: 21px;
  font-size: 11px;
}

html {
  background: #ffffff;
}

body {
  margin: auto;
}

::-moz-selection {
  color: #ffffff;
  background: #0C063C;
}

::selection {
  color: #ffffff;
  background: #0C063C;
}

section, header, main {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
section .bg-maroon, header .bg-maroon, main .bg-maroon {
  background-color: #E4DBD2 !important;
}
section.full, header.full, main.full {
  width: 100%;
  padding: 0;
}
section.full-right, header.full-right, main.full-right {
  width: 100%;
  padding: 0;
}
section.relative, header.relative, main.relative {
  position: relative;
}
section.half, header.half, main.half {
  width: 100%;
  max-width: 50%;
  position: relative;
}

strong {
  font-weight: 900;
}

em {
  font-style: italic;
}

ul {
  padding-left: 30px;
}
ul li {
  color: #000000;
}

ol {
  padding-left: 26px;
}
ol li {
  color: #000000;
  padding-left: 4px;
}

u {
  text-decoration: underline;
}

strike {
  text-decoration: line-through;
}

img, video, embed, iframe {
  max-width: 100%;
  border-radius: 25px;
}

blockquote {
  position: relative;
  margin: 40px auto;
  font-style: italic;
  background: linear-gradient(to bottom, rgba(228, 219, 210, 0.25), rgba(228, 219, 210, 0.5), rgba(228, 219, 210, 0.75), rgba(228, 219, 210, 0.5), rgba(228, 219, 210, 0.25));
  opacity: 0.5;
  border-radius: 15px;
  font-size: 1.5em;
  font-weight: normal;
  padding: 15px 15px 40px 45px;
  margin-left: 30px;
}
blockquote span.author {
  display: block;
  font-style: normal;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  font-weight: 900;
  padding: 15px 0;
  font-size: 1.2em;
}
blockquote:after {
  content: "“";
  display: block;
  font-size: 120px;
  position: absolute;
  font-family: "serif", "sans serif";
  left: 10px;
  top: 20px;
}

hr {
  background-image: linear-gradient(to right, rgba(228, 219, 210, 0), rgba(228, 219, 210, 0.75), rgba(228, 219, 210, 0));
  height: 1px;
  border: 0;
  position: relative;
  font-family: serif;
  margin-top: 50px;
  margin-bottom: 50px;
}
hr:before {
  content: "§";
  color: #E4DBD2;
  font-size: 3rem;
  position: absolute;
  top: -11px;
  left: 50%;
  transform: rotate(90deg);
  transform-origin: center;
  opacity: 1;
}

h1 {
  font-size: 37px;
  overflow-wrap: break-word;
}

h2 {
  font-size: 35px;
  overflow-wrap: break-word;
}

h3 {
  font-size: 30px;
  overflow-wrap: break-word;
}

h4 {
  font-size: 25px;
  line-height: 33px;
  letter-spacing: 0.38px;
  overflow-wrap: break-word;
}

h5 {
  font-size: 20px;
  overflow-wrap: break-word;
}

h6 {
  font-size: 15px;
  overflow-wrap: break-word;
}

.container {
  max-width: 100%;
}
.container.no-padding {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #0C063C;
  font-weight: bold;
}

p {
  color: #000000;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
}

a {
  color: #0C063C;
}

.form-check {
  position: relative;
}
.form-check label {
  width: 26px;
  height: 26px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background: #0C063C;
  border-radius: 4px;
}
.form-check label:after {
  content: "";
  width: 15px;
  height: 6px;
  position: absolute;
  top: 8px;
  left: 6px;
  border: 2px solid #ffffff;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.form-check label:hover::after {
  opacity: 0.3;
}
.form-check input[type=checkbox] {
  visibility: hidden;
}
.form-check input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.halfwidth {
  width: 100%;
}

@media only screen and (min-width: 992px) {
  body {
    max-width: 1440px;
  }
  .container {
    width: 100%;
    max-width: 100%;
  }
  .btn-primary {
    background: #0C063C;
    border: none;
  }
  .btn-primary.pills {
    border-radius: 35px;
  }
  section, header, main {
    max-width: 100%;
    margin: 0;
    padding: 0 114px;
  }
  section.full-right, header.full-right, main.full-right {
    padding: 0 0 0 114px;
  }
  section.bg-khaki, header.bg-khaki, main.bg-khaki {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  section.bg-khaki .overlay, header.bg-khaki .overlay, main.bg-khaki .overlay {
    width: 100%;
    height: 100%;
    background: #E4DBD2;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.94;
  }
  strong {
    font-weight: 900;
  }
  em {
    font-style: italic;
  }
  ul {
    padding-left: 30px;
  }
  ul li {
    color: #000000;
  }
  ol {
    padding-left: 26px;
  }
  ol li {
    color: #000000;
    padding-left: 4px;
  }
  li {
    line-height: 20px;
    font-size: 10px;
  }
  u {
    text-decoration: underline;
  }
  strike {
    text-decoration: line-through;
  }
  img, video, embed {
    max-width: 100%;
    border-radius: 25px;
    width: 100%;
  }
  blockquote {
    position: relative;
    margin: 40px auto;
    font-style: italic;
    background: linear-gradient(to bottom, rgba(228, 219, 210, 0.25), rgba(228, 219, 210, 0.5), rgba(228, 219, 210, 0.75), rgba(228, 219, 210, 0.5), rgba(228, 219, 210, 0.25));
    opacity: 0.5;
    border-radius: 15px;
    font-size: 1.5em;
    font-weight: normal;
    padding: 15px 15px 40px 45px;
    margin-left: 30px;
  }
  blockquote span.author {
    display: block;
    font-style: normal;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    font-weight: 900;
    padding: 15px 0;
    font-size: 1.2em;
  }
  blockquote:after {
    content: "“";
    display: block;
    font-size: 120px;
    position: absolute;
    font-family: "serif", "sans serif";
    left: 10px;
    top: 20px;
  }
  hr {
    background-image: linear-gradient(to right, rgba(228, 219, 210, 0), rgba(228, 219, 210, 0.75), rgba(228, 219, 210, 0));
    height: 1px;
    border: 0;
    position: relative;
    font-family: serif;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  hr:before {
    content: "§";
    color: #E4DBD2;
    font-size: 3rem;
    position: absolute;
    top: -11px;
    left: 50%;
    transform: rotate(90deg);
    transform-origin: center;
    opacity: 1;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.28px;
  }
  h5 {
    font-size: 14px;
    line-height: 17px;
  }
  h6 {
    font-size: 10px;
  }
  p {
    font-family: "Raleway";
    color: #000000;
    line-height: 20px;
    font-size: 10px;
  }
  a {
    color: #0C063C;
  }
  a.active, a:hover, a:focus {
    color: #0C063C;
  }
  .custom-row {
    justify-content: space-between;
    flex: 0 0 100%;
    flex-wrap: wrap;
    display: flex;
    flex-flow: row;
  }
  .controllers {
    position: absolute;
    display: flex;
    justify-content: space-between;
    font-size: 25px;
  }
  .controllers .next {
    flex: 1;
    background: #0C063C;
    color: #ffffff;
    padding: 11px;
    cursor: pointer;
    right: unset;
    position: relative;
    width: 100%;
    opacity: 1;
  }
  .controllers .next:hover {
    background: #83776D;
  }
  .controllers .prev {
    flex: 1;
    background: #ffffff;
    color: #000000;
    padding: 11px;
    cursor: pointer;
    left: unset;
    position: relative;
    width: 100%;
    opacity: 1;
  }
  .controllers .prev:hover {
    background: #83776D;
    color: #ffffff;
  }
  .controllers.vertical {
    flex-flow: column;
    width: 47px;
    height: 94px;
  }
  .controllers.horizontal {
    flex-flow: row;
    width: 94px;
    height: 47px;
  }
  .form-check {
    position: relative;
  }
  .form-check label {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    background: #0C063C;
    border-radius: 4px;
  }
  .form-check label:after {
    content: "";
    width: 12px;
    height: 6px;
    position: absolute;
    top: 4px;
    left: 3px;
    border: 2px solid #ffffff;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .form-check label:hover::after {
    opacity: 0.3;
  }
  .form-check input[type=checkbox] {
    visibility: hidden;
  }
  .form-check input[type=checkbox]:checked + label:after {
    opacity: 1;
  }
  .halfwidth {
    width: calc(50% - 15px);
  }
}
@media only screen and (min-width: 1700px) {
  body {
    max-width: 2160px;
  }
  section, header, main {
    max-width: 100%;
    margin: 0;
    padding: 0 160px;
  }
  section.full-right, header.full-right, main.full-right {
    padding: 0 0 0 160px;
  }
  ul {
    padding-left: 60px;
  }
  ul li {
    color: #000000;
  }
  ol {
    padding-left: 52px;
  }
  ol li {
    padding-left: 8px;
  }
  li {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  blockquote {
    margin: 80px auto;
    padding: 25px 25px 55px 70px;
    margin-left: 50px;
    font-size: 1.7em;
  }
  blockquote span.author {
    padding: 25px 0;
    font-size: 1.2em;
  }
  blockquote:after {
    font-size: 200px;
    left: 20px;
    top: 40px;
  }
  hr {
    background-image: linear-gradient(to right, rgba(228, 219, 210, 0), rgba(228, 219, 210, 0.75), rgba(228, 219, 210, 0));
    height: 1.5px;
    margin-top: 75px;
    margin-bottom: 75px;
  }
  hr:before {
    font-size: 4.5rem;
    top: -10px;
    opacity: 1;
  }
  h1 {
    font-size: 37px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 25px;
    line-height: 33px;
    letter-spacing: 0.38px;
  }
  h5 {
    font-size: 20px;
    line-height: 25px;
  }
  h6 {
    font-size: 15px;
    line-height: 19px;
  }
  p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .controllers {
    font-size: 32px;
  }
  .controllers .next {
    padding: 11px 22px;
  }
  .controllers .prev {
    padding: 11px 22px;
  }
  .controllers.vertical {
    width: 66px;
    height: 132px;
  }
  .controllers.horizontal {
    width: 132px;
    height: 66px;
  }
  .form-check {
    position: relative;
  }
  .form-check label {
    width: 26px;
    height: 26px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    background: #0C063C;
    border-radius: 4px;
  }
  .form-check label:after {
    content: "";
    width: 15px;
    height: 6px;
    position: absolute;
    top: 8px;
    left: 6px;
    border: 2px solid #ffffff;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .form-check label:hover::after {
    opacity: 0.3;
  }
  .form-check input[type=checkbox] {
    visibility: hidden;
  }
  .form-check input[type=checkbox]:checked + label:after {
    opacity: 1;
  }
}
.form-check {
  position: relative;
}
.form-check label {
  width: 26px;
  height: 26px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background: #0C063C;
  border-radius: 4px;
}
.form-check label:after {
  content: "";
  width: 15px;
  height: 6px;
  position: absolute;
  top: 8px;
  left: 6px;
  border: 2px solid #ffffff;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.form-check label:hover::after {
  opacity: 0.3;
}
.form-check input[type=checkbox] {
  visibility: hidden;
}
.form-check input[type=checkbox]:checked + label:after {
  opacity: 1;
}

@keyframes pulsered {
  0% {
    background-color: #0C063C;
  }
  50% {
    background-color: #83776D;
  }
  100% {
    background-color: #0C063C;
  }
}
@keyframes pulsebeige {
  0% {
    background-color: #83776D;
  }
  50% {
    background-color: #E4DBD2;
  }
  100% {
    background-color: #83776D;
  }
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf");
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Italic.ttf");
  src: url("../fonts/Lato-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.ttf");
  src: url("../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-BoldItalic.ttf");
  src: url("../fonts/Lato-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Black.ttf");
  src: url("../fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-BlackItalic.ttf");
  src: url("../fonts/Lato-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Light.ttf");
  src: url("../fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-LightItalic.ttf");
  src: url("../fonts/Lato-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Thin.ttf");
  src: url("../fonts/Lato-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-ThinItalic.ttf");
  src: url("../fonts/Lato-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
.btn {
  font-family: "Lato";
  font-size: 12px;
  letter-spacing: 0.36px;
  padding: 13px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff;
  padding: 14px 40px;
}
.btn.btn-red {
  background: #0C063C;
  min-width: 110px;
}
.btn.btn-red:hover, .btn.btn-red:focus {
  background: #83776D;
  color: #ffffff;
  animation-name: pulsered;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
}
.btn.btn-red.teko {
  font-family: Teko;
  font-weight: 500;
}
.btn.btn-beige {
  background: #83776D;
}
.btn.btn-beige.small {
  font-size: 8px;
  line-height: 1.2em;
  padding: 6px 12px;
}
.btn.btn-beige:hover, .btn.btn-beige:focus {
  background: #E4DBD2;
  color: #0C063C;
  animation-name: pulsebeige;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
}
.btn.btn-black {
  background: #000000;
}
.btn.btn-black:hover, .btn.btn-black:focus {
  background: #83776D;
  color: #ffffff;
  animation-name: pulsered;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
}

@media only screen and (min-width: 992px) {
  .btn {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.3px;
    border-radius: 22px;
    padding: 10px 15px;
  }
  .btn.btn-red.teko {
    font-size: 12px;
    line-height: 13px;
    letter-spacing: 0.36px;
  }
  .btn.btn-beige.small {
    font-size: 7px;
    line-height: 1.5em;
    padding: 5px 14px;
  }
}
@media only screen and (min-width: 1700px) {
  .btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.42px;
    border-radius: 22px;
    padding: 12px 20px;
  }
  .btn.btn-red.teko {
    font-size: 17px;
    line-height: 13px;
    letter-spacing: 0.36px;
  }
  .btn.btn-beige.small {
    font-size: 11px;
    line-height: 1.5em;
    padding: 6px 14px;
  }
}
.navbar-expand-lg {
  padding: 15px;
  min-height: 100px;
  max-height: 100vh;
  overflow-y: scroll;
}
.navbar-expand-lg .navbar-brand .logo {
  width: 110px;
  height: 72px;
  object-fit: contain;
  border-radius: 0;
}
.navbar-expand-lg .navbar-nav .nav-item {
  padding: 9px 15px;
}
.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  display: inline-block;
  color: #0C063C;
  font-size: 25px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0;
}
.navbar-expand-lg .navbar-nav .nav-item .nav-link.active, .navbar-expand-lg .navbar-nav .nav-item .nav-link:hover, .navbar-expand-lg .navbar-nav .nav-item .nav-link:focus {
  color: #0C063C;
}
.navbar-expand-lg .navbar-nav .nav-item:last-child {
  padding: 9px 15px 18px 15px;
}
.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
  color: #000000;
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-menu {
  border: none;
  border-radius: 0;
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li {
  border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  padding: 5px 0 5px 25px;
  white-space: pre-wrap;
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover, .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item:focus {
  color: #ffffff;
  background-color: #0C063C;
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover::after, .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item:focus::after {
  color: #ffffff;
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li.dropdown-submenu {
  position: relative;
  color: #000000;
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li.dropdown-submenu .dropdown-menu li {
  color: #000000;
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li.dropdown-submenu .dropdown-menu li .dropdown-item {
  padding: 5px 0 5px 50px;
  white-space: pre-wrap;
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li:first-child {
  border-top: 1px solid rgba(112, 112, 112, 0.15);
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-menu .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: 0.55em;
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-menu .dropdown-submenu .dropdown-menu {
  top: -7px;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
  border: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 0;
}
.navbar-expand-lg .navbar-nav .nav-item .dropdown-toggle::after {
  color: #0C063C;
}
.navbar-expand-lg .navbar-nav.sub-main {
  float: left;
  padding-top: 0;
  align-items: normal;
  width: 100%;
  margin-top: 0 !important;
}
.navbar-expand-lg .navbar-nav.sub-main .nav-item {
  padding: 9px 15px;
}
.navbar-expand-lg .navbar-nav.sub-main .nav-item:first-child {
  padding-top: 0;
}
.navbar-expand-lg .navbar-nav.sub-main .nav-item:last-child {
  padding: 65px 15px 15px 15px;
}
.navbar-expand-lg .navbar-nav.sub-main .nav-link {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.navbar-expand-lg .navbar-nav.sub-main form {
  width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.navbar-expand-lg .navbar-nav.sub-main form input {
  height: 63px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
}
.navbar-expand-lg .navbar-nav.sub-main form input:focus {
  box-shadow: none;
}
.navbar-expand-lg .navbar-nav.sub-main form .btn {
  height: 63px;
  width: 63px;
  border: none;
  border-radius: 0 5px 5px 0;
  color: #73616E;
  font-size: 28px;
}
.navbar-expand-lg .navbar-nav.sub-main form .btn:focus, .navbar-expand-lg .navbar-nav.sub-main form .btn:hover {
  box-shadow: none;
  border: none;
  color: #ffffff;
  background: #83776D;
}
.navbar-expand-lg .btn {
  line-height: unset;
  letter-spacing: unset;
  min-width: 0;
  padding: 2px 5px;
  text-transform: none;
  margin: auto;
}
.navbar-expand-lg .btn.pills {
  font-family: "Lato";
  padding: 5px 8px;
  width: 196px;
  height: 46px;
  color: #ffffff;
  align-items: center;
  display: flex;
}
.navbar-expand-lg .btn.pills span {
  display: flex;
  flex-wrap: wrap;
}
.navbar-expand-lg .btn.pills span.break {
  flex-basis: 100%;
  height: 0;
}
.navbar-expand-lg .btn.pills .first-btn-text {
  font-size: 28px;
}
.navbar-expand-lg .btn.pills .second-btn-text {
  padding: 0 4px;
}
.navbar-expand-lg .btn.pills .second-btn-text .big {
  font-size: 16px;
  line-height: 18px;
}
.navbar-expand-lg .btn.pills .second-btn-text .small {
  font-size: 8px;
  line-height: 11px;
}
.navbar-expand-lg .btn.pills .third-btn-text {
  padding: 0 4px;
}
.navbar-expand-lg .btn.pills .third-btn-text .big {
  font-size: 10px;
  line-height: 11px;
  margin-top: 7px;
}
.navbar-expand-lg .btn.pills .third-btn-text .small {
  font-size: 8px;
  line-height: 11px;
  margin-top: 0;
}
.navbar-expand-lg .btn:hover, .navbar-expand-lg .btn:focus {
  color: #ffffff;
  background: #83776D;
}
.navbar-expand-lg .divider-vertical {
  display: none;
  width: 0px;
  height: 48px;
  border: 1px solid #000000;
  margin-left: 25px;
  margin-right: 25px;
}
.navbar-expand-lg .divider-vertical:before {
  display: none;
}
.navbar-expand-lg .navbar-collapse {
  z-index: 1;
  background: #ffffff;
  padding-top: 60px;
  max-width: 100%;
  width: 100%;
}
.navbar-expand-lg .navbar-collapse.collapse.show {
  border-bottom: 8pt solid #0C063C;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn {
  line-height: unset;
  letter-spacing: unset;
  min-width: 0;
  padding: 2px 5px;
  text-transform: none;
  margin: auto;
  border: none;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn.pills {
  padding: 5px 8px;
  width: 196px;
  height: 46px;
  color: #ffffff;
  background: #0C063C;
  align-items: center;
  display: flex;
  margin-bottom: 35px;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn.pills span {
  display: flex;
  flex-wrap: wrap;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn.pills span.break {
  flex-basis: 100%;
  height: 0;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn.pills .first-btn-text {
  font-size: 28px;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn.pills .second-btn-text {
  padding: 0 4px;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn.pills .second-btn-text .big {
  font-size: 16px;
  line-height: 18px;
  font-weight: normal;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn.pills .second-btn-text .small {
  font-size: 8px;
  line-height: 11px;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn.pills .third-btn-text {
  padding: 0 4px;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn.pills .third-btn-text .big {
  font-size: 10px;
  line-height: 11px;
  margin-top: 7px;
  font-weight: normal;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn.pills .third-btn-text .small {
  font-size: 8px;
  line-height: 11px;
  margin-top: 0;
}
.navbar-expand-lg .navbar-collapse.collapse.show .btn:hover, .navbar-expand-lg .navbar-collapse.collapse.show .btn:focus {
  color: #ffffff;
  background: #83776D;
}
.navbar-expand-lg .toggler-wrapper .navbar-toggler.menu-toggler {
  border-color: none;
  float: right;
  margin-top: 15px;
}
.navbar-expand-lg .toggler-wrapper .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(12, 6, 60, 1)' stroke-width='4' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.navbar-expand-lg .toggler-wrapper .btn {
  display: flex;
}
.navbar-expand-lg .toggler-wrapper .btn.pills {
  background: #0C063C;
  border: none;
  box-shadow: none;
  color: #ffffff;
  font-weight: normal;
}
.navbar-expand-lg .toggler-wrapper .btn.pills:hover, .navbar-expand-lg .toggler-wrapper .btn.pills:focus {
  color: #ffffff;
  background: #83776D;
}
.navbar-expand-lg.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 3;
}
.navbar-expand-lg.sticky .divider-vertical {
  margin-top: 10px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
  .navbar-expand-lg {
    padding: 0 114px 0px 114px;
    max-height: unset;
    overflow-y: unset;
  }
  .navbar-expand-lg .navbar-brand .logo {
    width: 240px;
    height: 72px;
    border-radius: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 25px;
  }
  .navbar-expand-lg .navbar-nav .nav-item .nav-link {
    color: #0C063C;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    display: block;
    padding: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item .nav-link.active, .navbar-expand-lg .navbar-nav .nav-item .nav-link:hover, .navbar-expand-lg .navbar-nav .nav-item .nav-link:focus {
    color: #000000;
    padding: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item:last-child {
    padding: 0 0 0 25px;
  }
  .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: #000000;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu {
    border: none;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border-radius: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li {
    border-bottom: 1px solid rgba(112, 112, 112, 0.15);
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
    text-transform: uppercase;
    font-size: 10px;
    line-height: 12px;
    padding: 10px 15px;
    white-space: nowrap;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover, .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item:focus {
    color: #ffffff;
    background-color: #0C063C;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover::after, .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item:focus::after {
    color: #ffffff;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li.dropdown-submenu {
    position: relative;
    color: #000000;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li.dropdown-submenu .dropdown-menu li {
    color: #000000;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li.dropdown-submenu .dropdown-menu li .dropdown-item {
    padding: 10px 15px;
    white-space: nowrap;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li:last-child {
    border-bottom: none;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li:first-child {
    border-top: none;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 1.6em;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu .dropdown-submenu .dropdown-menu {
    top: -7px;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
    border: none;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border-radius: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-toggle::after {
    color: #0C063C;
  }
  .navbar-expand-lg .navbar-nav.sub-main {
    float: right;
    padding-top: 15px;
    align-items: center;
    width: unset;
  }
  .navbar-expand-lg .navbar-nav.sub-main .nav-item {
    padding: 0 15px;
  }
  .navbar-expand-lg .navbar-nav.sub-main .nav-item:last-child {
    padding-right: 0;
    padding: 0;
  }
  .navbar-expand-lg .navbar-nav.sub-main .nav-link {
    font-size: 10px;
    line-height: 12px;
  }
  .navbar-expand-lg .navbar-nav.sub-main form {
    width: 228px;
    margin-bottom: 0 !important;
    margin: 0;
    margin-left: 15px;
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
  .navbar-expand-lg .navbar-nav.sub-main form input {
    height: 23px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 10px;
    line-height: 19px;
    letter-spacing: 0.2px;
  }
  .navbar-expand-lg .navbar-nav.sub-main form input:focus {
    box-shadow: none;
  }
  .navbar-expand-lg .navbar-nav.sub-main form .btn {
    width: auto;
    height: 23px;
    border: none;
    border-radius: 0 5px 5px 0;
    color: #0C063C;
    font-size: 12px;
  }
  .navbar-expand-lg .navbar-nav.sub-main form .btn:focus, .navbar-expand-lg .navbar-nav.sub-main form .btn:hover {
    box-shadow: none;
    border: none;
    color: #ffffff;
    background: #83776D;
  }
  .navbar-expand-lg .btn {
    line-height: unset;
    letter-spacing: unset;
    min-width: 0;
    padding: 2px 5px;
    text-transform: none;
    margin: 0;
  }
  .navbar-expand-lg .btn.pills {
    padding: 5px 8px;
    width: 183px;
    height: 46px;
    color: #ffffff;
    display: flex;
    align-items: center;
    font-weight: normal;
  }
  .navbar-expand-lg .btn.pills span {
    display: flex;
    flex-wrap: wrap;
  }
  .navbar-expand-lg .btn.pills span.break {
    flex-basis: 100%;
    height: 0;
  }
  .navbar-expand-lg .btn.pills .first-btn-text {
    font-size: 28px;
  }
  .navbar-expand-lg .btn.pills .second-btn-text {
    padding: 0 4px;
  }
  .navbar-expand-lg .btn.pills .second-btn-text .big {
    font-size: 22px;
    line-height: 23px;
  }
  .navbar-expand-lg .btn.pills .second-btn-text .small {
    font-size: 9px;
    line-height: 13px;
  }
  .navbar-expand-lg .btn.pills .third-btn-text {
    padding: 0 4px;
  }
  .navbar-expand-lg .btn.pills .third-btn-text .big {
    font-size: 12px;
    line-height: 13px;
    margin-top: 7px;
  }
  .navbar-expand-lg .btn.pills .third-btn-text .small {
    font-size: 10px;
    line-height: 12px;
    margin-top: 0;
  }
  .navbar-expand-lg .btn:hover, .navbar-expand-lg .btn:focus {
    color: #ffffff;
    background: #83776D;
  }
  .navbar-expand-lg .divider-vertical {
    display: block;
    width: 0px;
    height: 48px;
    border: 1px solid #000000;
    margin-left: 25px;
    margin-right: 25px;
  }
  .navbar-expand-lg .navbar-collapse {
    padding-top: unset;
  }
  .navbar-expand-lg .toggler-wrapper {
    display: none;
  }
  .navbar-expand-lg.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 3;
  }
  .navbar-expand-lg.sticky .divider-vertical {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .navbar-expand-lg {
    padding: 0 40px 0px 40px;
    max-height: unset;
    overflow-y: unset;
  }
  .navbar-expand-lg .navbar-brand .logo {
    width: 240px;
    height: 89px;
    border-radius: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 10px;
  }
  .navbar-expand-lg .navbar-nav .nav-item .nav-link {
    font-size: 10px;
  }
  .navbar-expand-lg .navbar-nav .nav-item:last-child {
    padding: 0 0 0 15px;
  }
  .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: #0C063C;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu {
    border: none;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border-radius: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li {
    border-bottom: 1px solid rgba(112, 112, 112, 0.15);
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
    font-size: 10px;
    padding: 10px 15px;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li.dropdown-submenu .dropdown-menu li .dropdown-item {
    padding: 10px 15px;
  }
  .navbar-expand-lg .navbar-nav.sub-main .nav-item {
    padding: 0 10px;
  }
  .navbar-expand-lg .navbar-nav.sub-main .nav-link {
    font-size: 9px;
  }
  .navbar-expand-lg .btn {
    padding: 2px 5px;
  }
  .navbar-expand-lg .btn.pills {
    padding: 5px 8px;
    width: 183px;
    height: 46px;
  }
  .navbar-expand-lg .btn.pills .first-btn-text {
    font-size: 24px;
  }
  .navbar-expand-lg .btn.pills .second-btn-text {
    padding: 0 4px;
  }
  .navbar-expand-lg .btn.pills .second-btn-text .big {
    font-size: 18px;
    line-height: 23px;
  }
  .navbar-expand-lg .btn.pills .second-btn-text .small {
    font-size: 9px;
    line-height: 13px;
  }
  .navbar-expand-lg .btn.pills .third-btn-text {
    padding: 0 4px;
  }
  .navbar-expand-lg .btn.pills .third-btn-text .big {
    font-size: 12px;
    line-height: 13px;
    margin-top: 7px;
  }
  .navbar-expand-lg .btn.pills .third-btn-text .small {
    font-size: 10px;
    line-height: 12px;
    margin-top: 0;
  }
  .navbar-expand-lg .divider-vertical {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1280px) {
  .navbar-expand-lg {
    padding: 0 40px 0px 40px;
  }
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 10px;
  }
  .navbar-expand-lg .btn.pills {
    padding: 5px 8px;
    width: 153px;
    height: 56px;
    color: #ffffff;
    display: flex;
    align-items: center;
    font-weight: normal;
  }
  .navbar-expand-lg .btn.pills .third-btn-text {
    padding: 0 4px;
  }
  .navbar-expand-lg .btn.pills .third-btn-text .big {
    font-size: 12px;
    line-height: 13px;
    margin-top: 0px;
    padding-bottom: 10px;
  }
  .navbar-expand-lg .btn.pills .third-btn-text .small {
    font-size: 10px;
    line-height: 12px;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1700px) {
  .navbar-expand-lg {
    padding: 20px 160px 30px 160px;
    left: 0;
  }
  .navbar-expand-lg .navbar-brand .logo {
    width: 244px;
    height: 89px;
  }
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 32px;
  }
  .navbar-expand-lg .navbar-nav .nav-item .nav-link {
    font-size: 17px;
    line-height: 21px;
  }
  .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link {
    padding: 0 0 0 32px;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu {
    border: none;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border-radius: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
    font-size: 14px;
    line-height: 17px;
    padding: 15px 25px;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu .dropdown-submenu .dropdown-menu li .dropdown-item {
    padding: 5px 0 5px 50px;
  }
  .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu .dropdown-submenu a:after {
    top: 1.4em;
  }
  .navbar-expand-lg .navbar-nav.sub-main {
    padding-top: 20px;
  }
  .navbar-expand-lg .navbar-nav.sub-main .nav-item {
    padding: 0 27px;
  }
  .navbar-expand-lg .navbar-nav.sub-main .nav-item:last-child {
    padding-right: 0;
  }
  .navbar-expand-lg .navbar-nav.sub-main .nav-link {
    font-size: 14px;
    line-height: 17px;
  }
  .navbar-expand-lg .navbar-nav.sub-main form {
    width: 321px;
    margin-left: 0;
  }
  .navbar-expand-lg .navbar-nav.sub-main form input {
    height: 32px;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .navbar-expand-lg .navbar-nav.sub-main form .btn {
    height: 32px;
    font-size: 16px;
  }
  .navbar-expand-lg .btn.pills {
    padding: 8px 12px;
    width: 257px;
    height: 65px;
    color: #ffffff;
    display: flex;
    align-items: center;
  }
  .navbar-expand-lg .btn.pills span {
    display: flex;
    flex-wrap: wrap;
  }
  .navbar-expand-lg .btn.pills span.break {
    flex-basis: 100%;
    height: 0;
  }
  .navbar-expand-lg .btn.pills .first-btn-text {
    font-size: 34px;
  }
  .navbar-expand-lg .btn.pills .second-btn-text {
    padding: 0 11px;
  }
  .navbar-expand-lg .btn.pills .second-btn-text .big {
    font-size: 29px;
    line-height: 18px;
    margin-top: 6px;
  }
  .navbar-expand-lg .btn.pills .second-btn-text .small {
    font-size: 13px;
    line-height: 18px;
    margin-top: 3px;
  }
  .navbar-expand-lg .btn.pills .third-btn-text {
    padding: 0 4px;
  }
  .navbar-expand-lg .btn.pills .third-btn-text .big {
    font-size: 17px;
    line-height: 18px;
  }
  .navbar-expand-lg .btn.pills .third-btn-text .small {
    font-size: 14px;
    line-height: 17px;
  }
  .navbar-expand-lg .divider-vertical {
    height: 67px;
    margin-left: 35px;
    margin-right: 35px;
  }
  .navbar-expand-lg .toggler-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 1700px) and (max-width: 1919px) {
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 24px;
  }
  .navbar-expand-lg .navbar-nav .nav-item:last-child {
    padding: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }
  .navbar-expand-lg .navbar-nav.sub-main form {
    width: 228px;
  }
  .navbar-expand-lg .divider-vertical {
    margin-left: 20px;
    margin-right: 20px;
  }
}
footer {
  padding: 35px 0 15px 0;
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
footer .overlay {
  background-color: #EFEFEF;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
footer .widget h4 {
  color: #0C063C;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 26px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 0.66px;
}
footer .widget ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
footer .widget ul li {
  list-style: none;
}
footer .widget ul li a {
  color: #0C063C;
  text-decoration: none;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 0.28px;
}
footer .widget ul li a:hover, footer .widget ul li a:focus {
  color: #83776D;
  text-decoration: none;
}
footer .widget.info h4 {
  line-height: 26px;
  letter-spacing: 0.66px;
  text-align: center;
}
footer .widget.info h4 img {
  max-width: 250px;
  height: auto;
}
footer .widget.info .icons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
footer .widget.info .icons li {
  font-size: 12px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  width: 60%;
}
footer .widget.info .icons li span {
  font-size: 22px;
  margin-right: 10px;
  color: #0C063C;
}
footer .widget.info .icons li a {
  font-size: 12px;
  line-height: 45px;
  text-decoration: underline;
}
footer .widget.info .icons li:first-child {
  flex-direction: column-reverse;
  align-items: flex-start;
  margin-bottom: 17px;
}
footer .widget.info .icons li:last-child {
  margin-bottom: 0;
  flex-direction: unset;
}
footer .widget.info .icons .shift {
  display: flex;
  width: 50%;
  flex-wrap: wrap;
  position: relative;
  left: 0;
}
footer .widget.info .icons .shift li {
  width: 100%;
}
footer .widget.info .icons .shift li:first-child {
  flex-direction: unset;
  align-items: center;
  margin-bottom: 0;
}
footer .widget .footer-logo {
  max-width: 188px;
  margin-bottom: 30px;
  display: block;
  border-radius: 0px;
}
footer .container {
  max-width: 480px;
  padding: 0 28px;
}
footer .container .footer-nav .row {
  display: flex;
  justify-content: space-between;
  row-gap: 20px;
}
footer .container .footer-nav .row .widget {
  flex: 0 0 50%;
  padding-left: 0;
}
footer .container .footer-nav .row .widget:nth-child(2) {
  padding-left: 0;
}
footer .copyright {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  display: flex;
  /*justify-content: space-between;
  background: $link-footer-color;*/
}
footer .copyright .menu {
  width: auto;
  padding-left: 0;
  display: inline-flex;
  list-style-type: none;
}
footer .copyright .menu a {
  color: #0C063C;
  margin-right: 22px;
}
footer .copyright a {
  margin: 0;
  color: #0C063C;
  font-size: 11px;
  line-height: 13px;
}
footer .copyright a:first-child {
  margin-left: 0;
}
footer .copyright span {
  display: none;
  margin-right: 0;
  margin-left: 22px;
  color: #0C063C;
  font-size: 11px;
  line-height: 13px;
}
footer .copyright .copy-d-none {
  display: inline;
}
footer .copyright .copy-m-none {
  display: hidden;
}

@media only screen and (min-width: 992px) {
  footer {
    padding: 35px 0 15px 0;
    margin: 0;
    width: 100%;
    min-height: 250px;
    position: relative;
  }
  footer .overlay {
    background-color: #EFEFEF;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  footer .widget h4 {
    color: #0C063C;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 25px;
    font-weight: 900;
    margin-bottom: 10px;
  }
  footer .widget ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
  }
  footer .widget ul li {
    list-style: none;
  }
  footer .widget ul li a {
    color: #0C063C;
    text-decoration: none;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  footer .widget ul li a:hover, footer .widget ul li a:focus {
    color: #83776D;
    text-decoration: none;
  }
  footer .widget.info h4 {
    line-height: 33px;
    letter-spacing: 0.51px;
    text-align: left;
  }
  footer .widget.info h4 img {
    max-width: 200px;
  }
  footer .widget.info .icons {
    display: block;
    justify-content: unset;
    margin-bottom: 0;
  }
  footer .widget.info .icons li {
    font-size: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  footer .widget.info .icons li span {
    font-size: 22px;
    color: #0C063C;
  }
  footer .widget.info .icons li a {
    font-size: 8px;
    line-height: 30px;
    text-decoration: underline;
  }
  footer .widget.info .icons li:first-child {
    flex-direction: unset;
    margin-bottom: 0;
  }
  footer .widget.info .icons li:last-child {
    margin-bottom: 0;
  }
  footer .widget.info .icons .shift {
    display: block;
    flex-wrap: unset;
    position: relative;
    left: 0;
  }
  footer .widget.info .icons .shift li {
    width: 100%;
  }
  footer .widget.info .icons .shift li:first-child {
    flex-direction: unset;
  }
  footer .container {
    max-width: 100%;
    padding: 0 114px;
  }
  footer .container .footer-nav .row {
    justify-content: unset;
    flex-wrap: wrap;
  }
  footer .container .footer-nav .row .widget {
    flex: 0 0 100%;
  }
  footer .container .footer-nav .row .widget:first-child {
    padding-right: 15px;
  }
  footer .container .footer-nav .row .widget:nth-child(2) {
    padding-left: 0;
  }
  footer .copyright {
    position: relative;
    z-index: 1;
    margin-top: 15px;
    justify-content: unset; /*putu*/
    background: unset; /*putu*/
    display: table;
    /*putu*/
    /*putu*/
  }
  footer .copyright a {
    margin: 0 22px 0 0; /*putu*/
    color: #0C063C;
    font-size: 11px;
    line-height: 13px;
  }
  footer .copyright a:first-child {
    margin-left: 0;
  }
  footer .copyright span {
    margin-right: 0;
    margin-left: 22px;
    color: #0C063C;
    font-size: 11px;
    line-height: 13px;
  }
  footer .copyright .copy-d-none {
    display: hidden;
  }
  footer .copyright .copy-m-none {
    display: inline;
    margin-left: 0;
    display: table-cell;
  }
  footer .copyright .menu {
    width: auto;
    padding-left: 0;
    display: inline-flex;
    list-style-type: none;
  }
}
@media only screen and (min-width: 1700px) {
  footer {
    padding: 35px 0 15px 0;
    margin: 0;
    width: 100%;
    min-height: 250px;
    position: relative;
  }
  footer .overlay {
    background-color: #EFEFEF;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  footer .widget h4 {
    color: #0C063C;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 48px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  footer .widget ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
  }
  footer .widget ul li {
    list-style: none;
  }
  footer .widget ul li a {
    color: #0C063C;
    text-decoration: none;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  footer .widget ul li a:hover, footer .widget ul li a:focus {
    color: #83776D;
    text-decoration: none;
  }
  footer .widget.info {
    margin-left: 4rem;
  }
  footer .widget.info h4 {
    line-height: 33px;
    letter-spacing: 0.51px;
    text-align: left;
  }
  footer .widget.info h4.widget-title img {
    max-width: 300px;
  }
  footer .widget.info .icons {
    display: block;
    justify-content: unset;
    margin-bottom: 0;
  }
  footer .widget.info .icons li {
    font-size: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  footer .widget.info .icons li span {
    font-size: 22px;
    color: #0C063C;
  }
  footer .widget.info .icons li a {
    font-size: 12px;
    line-height: 45px;
    text-decoration: underline;
  }
  footer .widget.info .icons li:first-child {
    flex-direction: unset;
  }
  footer .widget.info .icons li:last-child {
    margin-bottom: 0;
  }
  footer .widget.info .icons .shift {
    display: block;
    flex-wrap: unset;
    position: relative;
    left: 0;
  }
  footer .widget.info .icons .shift li {
    width: 100%;
  }
  footer .widget.info .icons .shift li:first-child {
    flex-direction: unset;
  }
  footer .container {
    max-width: 100%;
    padding: 0 114px;
  }
  footer .container .footer-nav .row {
    justify-content: unset;
    flex-wrap: wrap;
  }
  footer .container .footer-nav .row .widget {
    flex: 0 0 100%;
  }
  footer .container .footer-nav .row .widget:first-child {
    padding-right: 15px;
  }
  footer .container .footer-nav .row .widget:nth-child(2) {
    padding-left: 0;
  }
  footer .copyright {
    position: relative;
    z-index: 1;
    margin-top: 15px;
    margin-left: 4rem;
  }
  footer .copyright a {
    margin: 0 22px;
    color: #0C063C;
    font-size: 11px;
    line-height: 13px;
  }
  footer .copyright a:first-child {
    margin-left: 0;
  }
  footer .copyright span {
    margin-right: 0;
    margin-left: 22px;
    color: #0C063C;
    font-size: 11px;
    line-height: 13px;
  }
  footer .copyright .copy-d-none {
    display: hidden;
  }
  footer .copyright .copy-m-none {
    display: inline;
  }
}
@media only screen and (max-width: 991px) {
  .overlijden-melden footer .copyright .menu, .contact footer .copyright .menu {
    min-height: 80px;
  }
}
header {
  width: 100%;
  min-height: 230px;
}
header .header {
  margin: 0;
  padding: 0 15px;
}
header .header-row {
  flex-direction: row;
  justify-content: center;
  max-width: 100%;
  margin: 0;
  position: relative;
}
header .header-row .text-box-wrapper {
  margin-top: 160px;
  position: relative;
  padding: 0 25px;
  transition: background-color 500ms ease-out 1s;
}
header .header-row .text-box-wrapper .header-text-box {
  min-height: 200px;
  position: relative;
  bottom: 0;
  left: 0;
  background: #ffffff;
  border-radius: 25px;
  z-index: 1;
  padding: 20px;
  /*box-shadow: 0px 9px 24px #00000029;*/
  width: 100%;
  margin: 0;
  text-align: center;
  transition: background-color 500ms ease-out 1s;
}
header .header-row .text-box-wrapper .header-text-box h1 {
  font-size: 20px;
  line-height: 24px;
  color: #0C063C;
  font-weight: bold;
  margin-bottom: 10px;
  margin-bottom: 20px;
}
header .header-row .text-box-wrapper .header-text-box h2 {
  font-size: 20px;
  line-height: 24px;
  color: #0C063C;
  font-weight: bold;
  margin-bottom: 10px;
  margin-bottom: 20px;
}
header .header-row .text-box-wrapper .header-text-box h3 {
  font-size: 18px;
  line-height: 22px;
  color: #0C063C;
  font-weight: bold;
  margin-bottom: 10px;
  margin-bottom: 20px;
}
header .header-row .text-box-wrapper .header-text-box h5 {
  font-size: 18px;
  line-height: 22px;
  color: #B9A37F;
  font-weight: normal;
}
header .header-row .text-box-wrapper .header-text-box p {
  font-size: 12px;
  letter-spacing: 0.24px;
  line-height: 22px;
  text-align: left;
}
header .header-row .text-box-wrapper .header-text-box p.intro {
  font-weight: normal;
}
header .header-row .text-box-wrapper .header-text-box a.btn {
  margin-top: 5px;
}
header .header-row .header-images {
  position: absolute;
  top: 0;
  width: 100%;
  display: block;
  height: 100%;
}
header .header-row .header-images .main {
  flex: 1;
  width: 100%;
  max-height: 100%;
  height: 235px;
}
header .header-row .header-images .main img {
  object-position: center;
  object-fit: cover;
  border-radius: 25px;
  width: 100%;
  height: 100%;
}
header .header-row .header-images .main .caption {
  bottom: 15px;
  position: absolute;
  left: 252px;
}
header .header-row .header-images .main .caption h5 {
  font-size: 45px;
  line-height: 56px;
  font-style: italic;
  font-weight: bold;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6509803922);
  color: #ffffff;
}
header .header-row .header-images .main .caption p {
  font-size: 17px;
  line-height: 64px;
  font-weight: bold;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6509803922);
  color: #ffffff;
}
header .header-row .header-images .thumbs {
  border: 1px solid blue;
  flex: 1;
  margin-top: 7.5px;
  border: 1px solid blue;
}
header .header-row.sliding .header-images .main {
  max-height: 100%;
}
header .header-row.sliding .header-images .main .hidden-header-text-box {
  display: none;
}
header .header-row.sliding.tagged.tags-bottom .header-images .tags-list {
  position: absolute;
  top: 125px;
  width: 100%;
  padding: 0 25px;
  text-align: center;
}
header .header-row.sliding.tagged.tags-bottom .header-images .tags-list .btn {
  margin-right: 15px;
  text-transform: none;
  font-weight: normal;
}
header .header-row.sliding.tagged.tags-bottom .header-images .tags-list.tgrows {
  top: 105px;
}
header .header-row.sliding.tagged.tags-bottom .header-images .main {
  height: 235px;
}
header .header-row.sliding.tagged.tags-bottom .header-images .main img {
  height: 235px;
}
header .header-row.sliding.tagged.tags-bottom .header-images .main .hidden-header-text-box {
  display: none;
}
header .header-row.sliding.tagged.tags-bottom .header-images .main .hidden-tags {
  display: none;
}
header .header-row.sliding.thumbed.thumbs-right .header-images .tags-list {
  width: 100%;
}
header .header-row.sliding.thumbed.thumbs-right .header-images .tags-list .btn {
  font-weight: normal;
  margin-bottom: 5px;
}
header .header-row.sliding.thumbed.thumbs-right .header-text-box h1 {
  font-family: "Lato";
}
header .header-row.sliding.thumbed.thumbs-right .header-text-box h1 span {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
  color: #B9A37F;
  font-weight: bold;
  font-family: "Lato";
}
header .header-row.sliding.thumbed.thumbs-right .header-text-box h5 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
  color: #B9A37F;
  font-weight: bold;
  font-family: "Lato";
}
header .header-row.sliding.thumbed.thumbs-right .header-text-box h3 {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 25px;
  font-weight: bold;
}
header .header-row.sliding.thumbed.thumbs-right .header-text-box p {
  font-size: 12px;
  line-height: 22px;
  font-weight: 0.32px;
}
header .header-row.sliding.thumbed.thumbs-right .header-text-box p.intro {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  font-weight: bold;
}
header .header-row.sliding.thumbed.thumbs-right .thumbs-wrapper {
  display: none;
}
header .header-row.sliding.thumbed.thumbs-bottom .header-text-box h5 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
  color: #0C063C;
  font-weight: bold;
}
header .header-row.sliding.thumbed.thumbs-bottom .header-text-box h3 {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 25px;
  font-weight: bold;
}
header .header-row.sliding.thumbed.thumbs-bottom .header-text-box p {
  font-size: 12px;
  line-height: 22px;
  font-weight: 0.32px;
}
header .header-row.sliding.thumbed.thumbs-bottom .header-text-box p.intro {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  font-weight: bold;
  color: #B9A37F;
}
header .header-row.sliding.thumbed.thumbs-bottom .thumbs-wrapper {
  display: none;
}
header .header-row.sliding.not-found .text-box-wrapper {
  display: flex;
  justify-content: center;
  flex-flow: column;
  width: 100%;
}
header .header-row.sliding.not-found .text-box-wrapper .header-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 30px;
  top: 0;
}
header .header-row.sliding.not-found .text-box-wrapper .header-text-box h1 {
  font-size: 38px;
  line-height: 24px;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
header .header-row.sliding.not-found .text-box-wrapper .header-text-box h2 {
  font-size: 38px;
  line-height: 24px;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
header .header-row.sliding.not-found .text-box-wrapper .header-text-box p {
  font-size: 18px;
  line-height: 18px;
  font-weight: normal;
  text-align: center;
}
header .header-row.sliding.not-found .text-box-wrapper .header-text-box a.btn {
  margin-top: 15px;
}
header .header-row.sliding.not-found .header-images {
  height: auto;
}
header .header-row.sliding.not-found .header-images .main {
  height: 200px;
}
header .header-row.sliding.not-found .header-images .main img {
  height: 200px;
}
header .header-row.sliding.not-found .header-images .main .caption {
  top: 70px;
  display: none;
}
header .header-row.sticky-limit.padding-top-sticky {
  padding-top: 0px;
}

@media only screen and (min-width: 992px) {
  header .header {
    padding: 0;
    margin-bottom: 0;
  }
  header .header-row {
    flex-direction: row;
    justify-content: unset;
  }
  header .header-row .text-box-wrapper {
    width: 13%;
    margin: 0;
    padding: 0;
  }
  header .header-row .text-box-wrapper .header-text-box {
    position: relative;
    top: 25px;
    left: 0;
    bottom: unset;
    width: 360px;
    margin: 0;
    text-align: left;
  }
  header .header-row .text-box-wrapper .header-text-box h1 {
    font-size: 25px;
    line-height: 30px;
    text-align: left;
    margin-bottom: 5px;
  }
  header .header-row .text-box-wrapper .header-text-box h2 {
    font-size: 25px;
    line-height: 30px;
    text-align: left;
    margin-bottom: 5px;
  }
  header .header-row .text-box-wrapper .header-text-box h3 {
    font-size: 21px;
    line-height: 34px;
    text-align: left;
    margin-bottom: 5px;
  }
  header .header-row .text-box-wrapper .header-text-box h5 {
    font-size: 17px;
    line-height: 23px;
    text-align: left;
    color: #B9A37F;
    font-weight: normal;
    margin-top: -5px;
    margin-bottom: 15px;
  }
  header .header-row .text-box-wrapper .header-text-box p {
    font-size: 10px;
    letter-spacing: 0.8px;
    line-height: 18px;
  }
  header .header-row .text-box-wrapper .header-text-box p.intro {
    font-weight: bold;
  }
  header .header-row .header-images {
    position: relative;
    width: 87%;
    min-height: 230px;
    height: 525px;
    display: flex;
    flex: 1;
    align-self: flex-start;
    flex-direction: column;
  }
  header .header-row .header-images .main {
    height: 525px;
  }
  header .header-row .header-images .main .caption {
    left: 230px;
  }
  header .header-row .header-images .main .caption h5 {
    font-size: 45px;
    line-height: 56px;
  }
  header .header-row .header-images .main .caption p {
    font-size: 17px;
    line-height: 64px;
  }
  header .header-row .header-images .main img {
    height: 525px;
  }
  header .header-row .header-images .thumbs {
    border: 1px solid blue;
    flex: 1;
    margin-top: 7.5px;
    border: 1px solid blue;
  }
  header .header-row.sliding .header-images .carousel-inner {
    height: 100%;
  }
  header .header-row.sliding .header-images .main {
    height: 502px;
    max-height: unset;
  }
  header .header-row.sliding .controllers {
    right: 0;
    bottom: 0;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images {
    height: 477px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images .carousel-inner {
    min-height: 425px;
    height: 425px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images .tags-list {
    width: calc(100% - 220px);
    align-self: flex-end;
    padding: 15px 15px 0 0;
    position: relative;
    top: 0;
    text-align: left;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images .tags-list .btn {
    margin-right: 15px;
    margin-bottom: 5px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images .tags-list.tgrows {
    top: 0;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images .main {
    height: 425px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images .main img {
    height: 425px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-text-box .controllers {
    right: unset;
    left: -47px;
    bottom: 0;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-images {
    width: 61%;
    height: 572px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-images .carousel-inner {
    min-height: 528px;
    height: 528px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-images .carousel-inner .carousel-item {
    height: 528px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-images .carousel-inner .carousel-item img {
    height: 528px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-images .tags-list {
    width: 100%;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box {
    width: 280px;
    padding: 25px 45px 50px 30px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box h1 span {
    font-size: 17px;
    line-height: 23px;
    font-weight: 500;
    color: #B9A37F;
    margin-bottom: 5px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box h5 {
    font-size: 17px;
    line-height: 23px;
    font-weight: 500;
    color: #B9A37F;
    margin-bottom: 5px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box h3 {
    font-size: 28px;
    line-height: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box p {
    font-size: 12px;
    line-height: 20px;
    font-weight: 0.18px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box p.intro {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.22px;
    font-weight: 900;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box .controllers {
    display: none !important;
  }
  header .header-row.sliding.thumbed.thumbs-right .thumbs-wrapper {
    width: 26%;
    padding-left: 12px;
    display: flex;
    flex-flow: column;
    height: 492px;
  }
  header .header-row.sliding.thumbed.thumbs-right .thumbs-wrapper .thumb {
    width: 100%;
    max-height: 25%;
    flex: 1;
    flex-grow: 1;
    border-radius: 25px;
    margin-bottom: 12px;
    cursor: pointer;
  }
  header .header-row.sliding.thumbed.thumbs-right .thumbs-wrapper .thumb img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
  }
  header .header-row.sliding.thumbed.thumbs-right .thumbs-wrapper .thumb:last-child {
    margin-bottom: 0;
  }
  header .header-row.sliding.thumbed.thumbs-right .thumbs-wrapper .thumb.active img {
    filter: grayscale(100%);
    transition: all 0.5s linear;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-images {
    width: calc(100% - 56px);
    height: 100%;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-images .carousel-inner {
    min-height: 315px;
    height: 315px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-images .carousel-inner .carousel-item {
    height: 315px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-images .carousel-inner .carousel-item img {
    height: 315px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .text-box-wrapper {
    width: 56px;
    max-height: 584.33px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box {
    width: 280px;
    padding: 57px 35px 57px 40px;
    max-height: 584.33px;
    height: 100%;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box .text-item {
    display: flex;
    flex-flow: column;
    height: 100%;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box .text-item .btn {
    width: max-content;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box h5 {
    font-size: 17px;
    line-height: 23px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 5px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box h3 {
    font-size: 26px;
    line-height: 24px;
    font-weight: 900;
    text-transform: none;
    margin-bottom: 15px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 0.18px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box p.intro {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.22px;
    font-weight: 900;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box p:last-of-type {
    flex-grow: 1;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .thumbs-wrapper {
    display: flex;
    width: calc(100% - 224px);
    flex-flow: row;
    align-self: flex-end;
    padding-top: 20px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .thumbs-wrapper .thumb {
    width: 100%;
    max-height: 275.33px;
    height: 100%;
    margin-left: 35px;
    flex: 1;
    flex-grow: 1;
    border-radius: 25px;
    margin-bottom: 12px;
    cursor: pointer;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .thumbs-wrapper .thumb img {
    height: 275.33px;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    transition: all 0.5s linear;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .thumbs-wrapper .thumb.active img {
    filter: grayscale(100%);
    transition: all 0.5s linear;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .thumbs-wrapper .thumb:last-child {
    margin-bottom: 0;
  }
  header .header-row.sliding.not-found .text-box-wrapper {
    display: flex;
    justify-content: center;
    flex-flow: column;
    width: 13%;
  }
  header .header-row.sliding.not-found .text-box-wrapper .header-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    top: 0;
  }
  header .header-row.sliding.not-found .text-box-wrapper .header-text-box h1 {
    font-size: 38px;
    line-height: 24px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  header .header-row.sliding.not-found .text-box-wrapper .header-text-box h2 {
    font-size: 38px;
    line-height: 24px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  header .header-row.sliding.not-found .text-box-wrapper .header-text-box p {
    font-size: 18px;
    line-height: 18px;
    font-weight: normal;
    text-align: center;
  }
  header .header-row.sliding.not-found .text-box-wrapper .header-text-box a.btn {
    margin-top: 15px;
  }
  header .header-row.sliding.not-found .header-images {
    height: 590px;
  }
  header .header-row.sliding.not-found .header-images .main {
    height: 590px;
  }
  header .header-row.sliding.not-found .header-images .main img {
    height: 590px;
  }
  header .header-row.sliding.not-found .header-images .main .caption {
    top: 70px;
  }
  header.sticky-limit.padding-top-sticky {
    padding-top: 60px;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1280px) {
  header .header-row .text-box-wrapper .header-text-box {
    width: 340px;
  }
  header .header-row .header-images .main .caption {
    left: 250px;
  }
}
@media only screen and (min-width: 1700px) {
  header .header-row .text-box-wrapper .header-text-box {
    top: 35px;
    width: 500px;
    padding: 25px;
  }
  header .header-row .text-box-wrapper .header-text-box h1 {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 15px;
  }
  header .header-row .text-box-wrapper .header-text-box h2 {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 15px;
  }
  header .header-row .text-box-wrapper .header-text-box h3 {
    font-size: 30px;
    line-height: 34px;
  }
  header .header-row .text-box-wrapper .header-text-box h5 {
    font-size: 25px;
    line-height: 34px;
  }
  header .header-row .text-box-wrapper .header-text-box p {
    font-size: 14px;
    letter-spacing: 0.28px;
    line-height: 26px;
  }
  header .header-row .header-images {
    height: 652px;
  }
  header .header-row .header-images .main {
    height: 652px;
  }
  header .header-row .header-images .main .caption {
    left: 333px;
    bottom: 60px;
  }
  header .header-row .header-images .main .caption h5 {
    font-size: 64px;
    line-height: 79px;
  }
  header .header-row .header-images .main .caption p {
    font-size: 25px;
    line-height: 94px;
  }
  header .header-row .header-images .main img {
    height: 652px;
  }
  header .header-row .header-images .thumbs {
    border: 1px solid blue;
    flex: 1;
    margin-top: 7.5px;
    border: 1px solid blue;
  }
  header .header-row.sliding .header-images .main {
    height: 692px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images {
    height: 595px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images .carousel-inner {
    min-height: 595px;
    height: 595px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images .tags-list {
    width: calc(100% - 335px);
  }
  header .header-row.sliding.tagged.tags-bottom .header-images .tags-list .btn {
    margin-right: 15px;
    margin-bottom: 10px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images .main {
    height: 595px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-images .main img {
    height: 595px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-text-box {
    width: 500px;
    top: 80px;
  }
  header .header-row.sliding.tagged.tags-bottom .header-text-box .controllers {
    left: -66px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-images {
    height: 785px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-images .carousel-inner {
    min-height: 740px;
    height: 740px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-images .carousel-inner .carousel-item {
    height: 740px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-images .carousel-inner .carousel-item img {
    height: 740px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-images .tags-list {
    width: 100%;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box {
    width: 430px;
    padding: 35px 45px 35px 45px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box h1 span {
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box h5 {
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box h3 {
    font-size: 40px;
    line-height: 34px;
    margin-bottom: 25px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 0.32px;
  }
  header .header-row.sliding.thumbed.thumbs-right .header-text-box p.intro {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  header .header-row.sliding.thumbed.thumbs-right .thumbs-wrapper {
    padding-left: 15px;
    height: 704px;
  }
  header .header-row.sliding.thumbed.thumbs-right .thumbs-wrapper .thumb {
    margin-bottom: 15px;
  }
  header .header-row.sliding.thumbed.thumbs-right .thumbs-wrapper .thumb img {
    border-radius: 25px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-images {
    width: calc(100% - 80px);
    height: 100%;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-images .carousel-inner {
    min-height: 445px;
    height: 445px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-images .carousel-inner .carousel-item {
    height: 445px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-images .carousel-inner .carousel-item img {
    height: 445px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .text-box-wrapper {
    width: 80px;
    max-height: 755.67px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box {
    width: 395px;
    padding: 57px 40px 57px 40px;
    max-height: 755.67px;
    height: 100%;
    top: 70px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box .text-item {
    display: flex;
    flex-flow: column;
    height: 100%;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box .text-item .btn {
    width: max-content;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box h5 {
    font-size: 37px;
    line-height: 34px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 5px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box h3 {
    font-size: 26px;
    line-height: 24px;
    font-weight: 900;
    margin-bottom: 15px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 0.18px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box p.intro {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.32px;
    font-weight: bold;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .header-text-box p:last-of-type {
    flex-grow: 1;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .thumbs-wrapper {
    display: flex;
    width: calc(100% - 315px);
    flex-flow: row;
    align-self: flex-end;
    padding-top: 30px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .thumbs-wrapper .thumb {
    width: 100%;
    max-height: 351.67px;
    height: 100%;
    margin-left: 50px;
    flex: 1;
    flex-grow: 1;
    border-radius: 25px;
    margin-bottom: 12px;
    cursor: pointer;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .thumbs-wrapper .thumb img {
    height: 351.67px;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
  }
  header .header-row.sliding.thumbed.thumbs-bottom .thumbs-wrapper .thumb:last-child {
    margin-bottom: 0;
  }
  header .header-row.sliding.not-found .text-box-wrapper {
    display: flex;
    justify-content: center;
    flex-flow: column;
  }
  header .header-row.sliding.not-found .text-box-wrapper .header-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    top: 0;
  }
  header .header-row.sliding.not-found .text-box-wrapper .header-text-box h1 {
    font-size: 55px;
    line-height: 34px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  header .header-row.sliding.not-found .text-box-wrapper .header-text-box h2 {
    font-size: 55px;
    line-height: 34px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  header .header-row.sliding.not-found .text-box-wrapper .header-text-box p {
    font-size: 27px;
    line-height: 26px;
    font-weight: normal;
    text-align: center;
  }
  header .header-row.sliding.not-found .text-box-wrapper .header-text-box a.btn {
    margin-top: 15px;
  }
  header .header-row.sliding.not-found .header-images {
    height: 822px;
  }
  header .header-row.sliding.not-found .header-images .main {
    height: 822px;
  }
  header .header-row.sliding.not-found .header-images .main img {
    height: 822px;
  }
  header .header-row.sliding.not-found .header-images .main .caption {
    top: 100px;
  }
  header.sticky-limit.padding-top-sticky {
    padding-top: 60px;
  }
}
.separator {
  padding: 0;
}
.separator.arrow {
  padding: 0;
  text-align: center;
}
.separator.arrow span {
  display: block;
  height: 45px;
  font-size: 20px;
  color: #0C063C;
}
.separator.arrow span i, .separator.arrow span svg {
  display: none;
}
.separator.plain {
  width: 100%;
  height: 45px;
  background: #ffffff;
}
.separator.mobile-short {
  height: 20px;
}

@media only screen and (min-width: 992px) {
  .separator.arrow {
    display: flex;
    padding: 60px 0;
    justify-content: center;
  }
  .separator.arrow span {
    height: 30px;
    font-size: 26px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .separator.arrow span i, .separator.arrow span svg {
    display: block;
  }
  .separator.plain {
    height: 60px;
  }
  .separator.mobile-short {
    height: 60px;
  }
  .separator.mobile-short.padding-top-sticky {
    padding-top: 0px;
  }
  .separator.short {
    height: 25px;
  }
}
@media only screen and (min-width: 1700px) {
  .separator.arrow {
    padding: 45px 0;
  }
  .separator.arrow span {
    height: 129px;
    font-size: 36px;
  }
  .separator.plain {
    height: 80px;
  }
  .separator.mobile-short {
    height: 80px;
  }
  .separator.mobile-short.padding-top-sticky {
    padding-top: 0px;
  }
  .separator.short {
    height: 30px;
  }
}
.teams-intro {
  flex-wrap: nowrap;
  overflow: scroll;
  padding: 0;
  margin: 0 15px;
}
.teams-intro .persons {
  display: flex;
  height: 100%;
  padding: 0;
}
.teams-intro .persons .person {
  display: inline-block;
  position: relative;
  height: 500px;
  margin-bottom: 15px;
  margin-right: 15px;
  border-radius: 25px;
  cursor: default;
  overflow: hidden;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.teams-intro .persons .person img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 500px;
  border-radius: 25px;
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  filter: grayscale(0);
  transition: all 0.5s ease;
}
.teams-intro .persons .person .meta {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
  padding: 15px;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.75) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.75) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#a6000000",GradientType=0 );
}
.teams-intro .persons .person .meta p {
  color: #ffffff;
  margin-bottom: 0;
}
.teams-intro .persons .person .meta p.name {
  font-size: 22px;
  line-height: 26px;
  font-weight: bold;
}
.teams-intro .persons .person .meta p.city {
  font-size: 19px;
  line-height: 27px;
}
.teams-intro .persons .person .meta p.tags {
  margin-top: 20px;
  margin-bottom: 20px;
}
.teams-intro .persons .person .meta p.tags .btn.btn-beige {
  margin-right: 5px;
  text-transform: none;
  font-weight: normal;
  padding: 6px 12px;
  margin-bottom: 5px;
}
.teams-intro .persons .person .meta p.testimony {
  font-size: 11px;
  line-height: 16px;
  font-style: italic;
}
.teams-intro .persons .person .meta a.btn.btn-red {
  font-family: Teko;
  font-weight: 500;
  margin-top: 20px;
}
.teams-intro .persons .person:last-child {
  margin-bottom: 15px;
}
.teams-intro .persons .person:hover img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  transform: scale(1.5);
  transition: all 0.5s ease;
}
.teams-intro .persons.person-1 {
  width: 290px;
  max-width: 290px;
}
.teams-intro .persons.person-1 .person {
  width: 290px;
}
.teams-intro .persons.person-3 {
  width: 915px;
  max-width: 915px;
  margin-right: 15px;
}
.teams-intro .persons.person-3 .person {
  width: 290px;
}
.teams-intro .persons.person-3 .person:last-child {
  margin-right: 0;
}
.teams-intro .persons.person-4 {
  width: 1200px;
  max-width: 1200px;
}
.teams-intro .persons.person-4 .person {
  width: 290px;
}
.teams-intro .persons:last-child .person {
  margin-right: 15px;
}

.block-title.teams-intro-title {
  color: #0C063C;
  font-size: 35px;
  line-height: 42px;
  margin-bottom: 18px;
  text-align: center;
  font-weight: bold;
}

@media only screen and (min-width: 992px) {
  .teams-intro {
    flex-wrap: wrap;
    overflow: hidden;
    padding: 0;
    margin: 0;
    height: 585px;
  }
  .teams-intro .persons {
    display: flex;
    flex-flow: column;
    max-height: 100%;
    height: unset;
  }
  .teams-intro .persons .person {
    height: 100%;
    margin-right: 0;
    cursor: pointer;
  }
  .teams-intro .persons .person img {
    height: 100%;
    max-height: 100%;
  }
  .teams-intro .persons .person .meta p {
    margin-bottom: 0.5rem;
  }
  .teams-intro .persons .person .meta p.name {
    font-size: 12px;
    line-height: 1.1em;
  }
  .teams-intro .persons .person .meta p.city {
    font-size: 10px;
    line-height: 12px;
  }
  .teams-intro .persons .person .meta p.tags {
    margin: 0;
  }
  .teams-intro .persons .person .meta p.tags .btn:not(:first-child) {
    display: none;
  }
  .teams-intro .persons .person .meta p.testimony {
    display: none;
  }
  .teams-intro .persons .person .meta a.btn.btn-red {
    display: none;
  }
  .teams-intro .persons .person:last-child {
    margin-bottom: 7px;
  }
  .teams-intro .persons.person-1 {
    width: unset;
    max-width: 24%;
  }
  .teams-intro .persons.person-1 .person {
    width: unset;
    cursor: default;
  }
  .teams-intro .persons.person-1 .person p.testimony {
    display: block;
  }
  .teams-intro .persons.person-1 .person .meta {
    text-align: center;
    width: 100%;
    padding: 15px;
  }
  .teams-intro .persons.person-1 .person .meta p.name {
    font-size: 17px;
    line-height: unset;
    font-weight: bold;
  }
  .teams-intro .persons.person-1 .person .meta p.city {
    font-size: 14px;
    line-height: 20px;
  }
  .teams-intro .persons.person-1 .person .meta p.tags {
    margin: 0;
  }
  .teams-intro .persons.person-1 .person .meta p.tags .btn:not(:first-child) {
    display: inline-block;
  }
  .teams-intro .persons.person-1 .person .meta p.testimony {
    margin-top: 5px;
    display: block;
  }
  .teams-intro .persons.person-1 .person .meta a.btn.btn-red {
    display: inline-block;
    margin-top: 10px;
  }
  .teams-intro .persons.person-3 {
    width: unset;
    max-width: 24%;
    margin-right: unset;
  }
  .teams-intro .persons.person-3 .person {
    width: unset;
  }
  .teams-intro .persons.person-3 .person img {
    height: 100%;
  }
  .teams-intro .persons.person-4 {
    width: unset;
    max-width: 24%;
  }
  .teams-intro .persons.person-4 .person {
    width: unset;
  }
  .teams-intro .persons.person-4 .person img {
    height: 100%;
  }
  .teams-intro .persons:last-child .person {
    margin-right: 0;
  }
  .block-title.teams-intro-title {
    font-size: 35px;
    line-height: 42px;
    text-align: left;
  }
}
@media only screen and (min-width: 1700px) {
  .teams-intro {
    height: 800px;
  }
  .teams-intro .persons .person {
    margin-bottom: 20px;
  }
  .teams-intro .persons .person:last-child {
    margin-bottom: 0;
  }
  .teams-intro .persons .person img {
    height: 100%;
    max-height: unset;
  }
  .teams-intro .persons .person .meta {
    margin-bottom: 0;
    padding: 15px;
  }
  .teams-intro .persons .person .meta p.name {
    font-size: 18px;
    line-height: unset;
  }
  .teams-intro .persons .person .meta p.city {
    font-size: 15px;
    line-height: 18px;
  }
  .teams-intro .persons .person .meta p.tags {
    margin: 0;
  }
  .teams-intro .persons .person .meta p.tags .btn:not(:first-child) {
    display: none;
  }
  .teams-intro .persons .person .meta p.testimony {
    display: none;
  }
  .teams-intro .persons .person .meta a.btn.btn-red {
    display: none;
  }
  .teams-intro .persons.person-1 .person .meta {
    margin-bottom: 0;
  }
  .teams-intro .persons.person-1 .person .meta p.name {
    font-size: 24px;
  }
  .teams-intro .persons.person-1 .person .meta p.city {
    font-size: 20px;
  }
  .teams-intro .persons.person-1 .person .meta p.testimony {
    margin-top: 5px;
  }
  .teams-intro .persons.person-1 .person .meta a.btn.btn-red {
    margin-top: 10px;
  }
  .teams-intro .persons.person-3 .person {
    width: unset;
  }
  .teams-intro .persons.person-4 .person {
    width: unset;
  }
  .block-title.teams-intro-title {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 38px;
  }
}
.notification {
  text-align: center;
}
.notification h3 {
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #0C063C;
}
.notification h4.title {
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #0C063C;
}
.notification h5 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.4px;
  font-weight: normal;
  color: #000000;
}
.notification h5.heading {
  font-weight: bold;
}
.notification p {
  font-family: "Lato";
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.28px;
  margin-bottom: 0;
}
.notification p strong {
  font-weight: bold;
}
.notification p.heading {
  font-weight: bold;
}
.notification p.brown {
  color: #B9A37F;
  font-weight: bold;
}
.notification p.brown a {
  color: #B9A37F;
  text-decoration: underline;
}
.notification .btn {
  margin-top: 35px;
}
.notification .plain {
  /*background: $secondary-card-bg-color;*/
  padding: 25px 15px;
}
.notification .round {
  background: #ffffff;
  padding: 25px 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.notification .image {
  padding: 0;
}
.notification .image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

@media only screen and (min-width: 992px) {
  .notification h3 {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 20px;
  }
  .notification h4.title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .notification h5 {
    font-size: 17px;
    line-height: 21px;
  }
  .notification h5.heading {
    font-weight: normal;
  }
  .notification p {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.22px;
  }
  .notification p.heading {
    font-weight: normal;
  }
  .notification .btn {
    margin-top: 15px;
  }
  .notification .plain {
    padding: 50px 115px 50px 115px;
  }
  .notification .round {
    padding: 50px 115px 50px 115px;
    border-radius: 25px;
  }
  .notification .image img {
    min-height: 270px;
    max-height: 370px;
  }
}
@media only screen and (min-width: 1700px) {
  .notification h3 {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 25px;
  }
  .notification h4.title {
    font-size: 29px;
    line-height: 35px;
  }
  .notification h5 {
    font-size: 25px;
    line-height: 30px;
  }
  .notification p {
    font-size: 19px;
    line-height: 26px;
    letter-spacing: 0.38px;
  }
  .notification .btn {
    margin-top: 20px;
  }
  .notification .plain {
    padding: 58px 125px 44px 125px;
  }
  .notification .round {
    padding: 58px 125px 44px 125px;
  }
  .notification .image img {
    max-height: 380px;
  }
}
.grid-slider-controller {
  right: 67px;
  top: 25px;
}

.common-grid-container {
  margin: 0;
}
.common-grid-container .sorting-control {
  display: none;
}
.common-grid-container .loader {
  width: 100%;
  text-align: center;
}
.common-grid-container h3.block-title {
  font-size: 24px;
  line-height: 29px;
  color: #0C063C;
  text-align: center;
  font-weight: bold;
}
.common-grid-container.sliding {
  overflow: hidden;
  padding: 0 16px 7px 16px;
  position: relative;
}
.common-grid-container.sliding .carousel-inner {
  overflow: unset;
}
.common-grid-container #sortable-carousel .controllers {
  display: none;
}
.common-grid-container #sortable-carousel .carousel-inner {
  padding: 10px 16px;
}
.common-grid-container #sortable-carousel .carousel-inner .grid-wrapper {
  padding-bottom: 0;
  margin-bottom: 20px;
  margin-right: 0;
}
.common-grid-container.uitvaartverzorger-grid .common-grid .grid {
  box-shadow: none;
}
.common-grid-container.uitvaartverzorger-grid .common-grid .grid .image img {
  border-radius: 25px;
}
.common-grid-container.addshadow .common-grid.column2 .grid-wrapper.fulltext .grid {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.common-grid .grid-wrapper {
  padding: 0 15px 15px 15px;
}
.common-grid .grid-wrapper .grid {
  position: relative;
  min-height: 20px;
  width: 100%;
  border-radius: 25px;
  /*box-shadow: 0px 3px 6px #00000029;*/
  position: relative;
  overflow: hidden;
}
.common-grid .grid-wrapper .grid .image {
  height: 159px;
  width: 100%;
}
.common-grid .grid-wrapper .grid .image img {
  width: 100%;
  max-height: 159px;
  object-fit: cover;
  object-position: top center;
  /*border-radius: 25px 25px 0 0;*/
  border-radius: 25px;
}
.common-grid .grid-wrapper .grid .meta {
  position: relative;
  min-height: 95px;
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 15px 15px 17px 15px;
}
.common-grid .grid-wrapper .grid .meta .title {
  font-size: 22px;
  line-height: 27px;
  font-weight: bold;
  text-transform: uppercase;
  color: #0C063C;
}
.common-grid .grid-wrapper .grid .meta .title.black {
  color: #000000;
}
.common-grid .grid-wrapper .grid .meta .job-meta {
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: center;
}
.common-grid .grid-wrapper .grid .meta .job-meta .item {
  margin-right: 25px;
  font-size: 15px;
  line-height: 34px;
  font-weight: bold;
}
.common-grid .grid-wrapper .grid .meta .job-meta .item svg {
  margin-right: 5px;
  color: #0C063C;
}
.common-grid .grid-wrapper .grid .meta .subtitle {
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.39px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.common-grid .grid-wrapper:last-child {
  padding-bottom: 0;
}
.common-grid.column3 .grid-wrapper {
  max-width: 100%;
}
.common-grid.column3 .grid-wrapper .grid .image {
  height: 188px;
}
.common-grid.column3 .grid-wrapper .grid .image img {
  max-height: 188px;
  height: 188px;
}
.common-grid.column3 .grid-wrapper .grid .meta {
  padding: 15px;
}
.common-grid.column3 .grid-wrapper .grid .meta .title {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 0;
  font-weight: normal;
  letter-spacing: 0.42px;
}
.common-grid.column3 .grid-wrapper .grid .meta .subtitle {
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.45px;
  font-weight: 300;
  flex-grow: 0;
}
.common-grid.column3 .grid-wrapper .grid .meta .subtitle.date {
  font-size: 14px;
  margin-top: 10px;
  line-height: 14px;
  letter-spacing: 0.42px;
  color: #B9A37F;
}
.common-grid.column3 .grid-wrapper .grid .meta .tags .btn {
  margin-right: 10px;
}
.common-grid.column3 .grid-wrapper .grid .meta .excerpt {
  flex-grow: 1;
  font-size: 12px;
  line-height: 22px;
  font-weight: bold;
  letter-spacing: 0.24px;
}
.common-grid.column3.multi-row {
  margin-bottom: 15px;
}
.common-grid.column3.multi-row .grid-wrapper {
  max-width: 100%;
}
.common-grid.column3.multi-row .grid-wrapper .grid .meta {
  padding: 18px 15px 20px 15px;
}
.common-grid.column3.multi-row .grid-wrapper .grid .meta h5.title {
  font-size: 18px;
  line-height: 19px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
}
.common-grid.column3.multi-row .grid-wrapper .grid .meta h5.title.black.locatie {
  color: #0C063C;
}
.common-grid.column3.multi-row .grid-wrapper .grid .meta .subtitle {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 10px;
}
.common-grid.column3.multi-row .grid-wrapper .grid .meta .excerpt {
  flex-grow: 1;
  font-weight: bold;
  font-style: italic;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.18px;
  margin-bottom: 20px;
}
.common-grid.column3.multi-row .grid-wrapper .grid .meta .excerpt.locatie {
  font-style: normal;
  display: none;
}
.common-grid.column3.multi-row:last-child {
  justify-content: flex-start;
  margin-bottom: 0;
}
.common-grid.column3.multi-row:last-child .grid-wrapper {
  margin-right: 2%;
}
.common-grid.column3.multi-row.profile {
  align-items: center;
  margin-bottom: 0;
}
.common-grid.column3.multi-row.profile .grid-wrapper {
  max-width: 100%;
  padding: 0 15px 55px 15px;
}
.common-grid.column3.multi-row.profile .grid-wrapper .grid {
  height: auto;
  overflow: visible;
  box-shadow: 0px 9px 24px rgba(0, 0, 0, 0.1607843137);
}
.common-grid.column3.multi-row.profile .grid-wrapper .grid .image {
  height: 65px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.common-grid.column3.multi-row.profile .grid-wrapper .grid .image img {
  max-height: 95px;
  position: relative;
  top: -22px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6784313725);
  height: 95px;
  width: 95px;
  border-radius: 50%;
}
.common-grid.column3.multi-row.profile .grid-wrapper .grid .meta {
  padding: 18px 15px 20px 15px;
}
.common-grid.column3.multi-row.profile .grid-wrapper .grid .meta h5.title {
  font-size: 26px;
  line-height: 27px;
  letter-spacing: 0.79px;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 15px;
  margin-top: 10px;
  color: #000000;
}
.common-grid.column3.multi-row.profile .grid-wrapper .grid .meta .subtitle {
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0.45px;
  color: #0C063C;
  margin-bottom: 10px;
  font-weight: normal;
}
.common-grid.column3.multi-row.profile .grid-wrapper .grid .meta .excerpt {
  flex-grow: unset;
  font-weight: bold;
  font-style: normal;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  margin-bottom: 20px;
}
.common-grid.column3.multi-row.profile:first-of-type {
  margin-top: unset;
}
.common-grid.column3.multi-row.profile:last-child {
  margin-bottom: 0;
}
.common-grid.column3.multi-row.profile:last-child .grid-wrapper {
  padding-bottom: 0;
}
.common-grid.column3.multi-row.masonry, .common-grid.column3.multi-row.sortable {
  align-items: center;
  margin-bottom: 0;
}
.common-grid.column3.multi-row.masonry .grid-wrapper, .common-grid.column3.multi-row.sortable .grid-wrapper {
  max-width: 100%;
  padding: 0 15px 15px 15px;
}
.common-grid.column3.multi-row.masonry .grid-wrapper .grid, .common-grid.column3.multi-row.sortable .grid-wrapper .grid {
  height: auto;
  overflow: visible;
  /*box-shadow: 0px 9px 24px #00000029;*/
}
.common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta {
  padding: 18px 15px 20px 15px;
}
.common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta h5.title, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta h5.title {
  font-size: 24px;
  line-height: 27px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 15px;
  margin-top: 10px;
  color: #000000;
}
.common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta .subtitle, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta .subtitle {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.42px;
  color: #B9A37F;
  margin-bottom: 15px;
  font-weight: normal;
}
.common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta p, .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta p.excerpt, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta p, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta p.excerpt {
  flex-grow: unset;
  font-weight: bold;
  font-style: normal;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  margin-bottom: 20px;
}
.common-grid.column3.multi-row.masonry:first-of-type, .common-grid.column3.multi-row.sortable:first-of-type {
  margin-top: unset;
}
.common-grid.column3.multi-row.masonry:last-child, .common-grid.column3.multi-row.sortable:last-child {
  margin-bottom: 0;
}
.common-grid.column3.multi-row.masonry:last-child .grid-wrapper, .common-grid.column3.multi-row.sortable:last-child .grid-wrapper {
  padding-bottom: 0;
}
.common-grid.column2 {
  /*&.custom-row{
  	-ms-flex-align: center;
  	align-items: center;
  }*/
}
.common-grid.column2 .grid-wrapper {
  max-width: 100%;
  padding: 0;
}
.common-grid.column2 .grid-wrapper .grid {
  min-height: 188px;
  background: #E4DBD2;
  border-radius: 0;
  box-shadow: none;
}
.common-grid.column2 .grid-wrapper .grid .image {
  height: 188px;
}
.common-grid.column2 .grid-wrapper .grid .image img {
  max-height: 188px;
  height: 188px;
  flex-grow: 1;
}
.common-grid.column2 .grid-wrapper .grid .meta {
  padding: 15px 15px;
}
.common-grid.column2 .grid-wrapper .grid .meta .title {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.42;
  text-transform: none;
}
.common-grid.column2 .grid-wrapper .grid .meta p {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
}
.common-grid.column2 .grid-wrapper .grid .meta p.intro {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  flex-grow: 0;
  font-weight: normal;
  margin-bottom: 0;
}
.common-grid.column2 .grid-wrapper.fulltext {
  padding: 0 15px;
}
.common-grid.column2 .grid-wrapper.fulltext .grid {
  background: #ffffff;
  border-radius: 25px;
  /*box-shadow: 0px 3px 6px #00000029;*/
}
.common-grid.column2 .grid-wrapper.fulltext .grid .meta {
  text-align: left;
}
.common-grid.column2 .grid-wrapper.fulltext .grid .meta .title {
  font-size: 25px;
  line-height: 34px;
}
.common-grid.column2 .grid-wrapper.fulltext .grid .meta .people-name {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
}
.common-grid.column2 .grid-wrapper.fulltext .grid .meta p {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  font-weight: bold;
}
.common-grid.column2 .grid-wrapper.fulltext .grid .meta p.intro {
  color: #B9A37F;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  flex-grow: 0;
  font-weight: bold;
  margin-bottom: 0;
}
.common-grid.column2 .grid-wrapper.fulltext .grid .meta .btn {
  margin-top: 20px;
}
.common-grid.column2 .grid-wrapper.fulltext.right-image .image {
  display: none;
}
.common-grid.column2 .grid-wrapper:first-child {
  order: 2;
}
.common-grid.column2 .grid-wrapper:last-child {
  order: 1;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) {
  .common-grid-container h3.block-title {
    font-size: 24px;
    line-height: 29px;
    color: #0C063C;
    text-align: center;
    margin-bottom: 40px;
  }
  .common-grid-container .sorting-control {
    width: 50%;
    background: #EFEFEF;
    border-radius: 25px;
    padding: 20px 45px;
    margin-bottom: 20px;
  }
  .common-grid-container .sorting-control input {
    position: relative;
    display: inline-block;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    width: 100%;
    border: none;
    height: 33px;
    color: rgba(0, 0, 0, 0.3);
    padding: 0 15px;
    margin-bottom: 10px;
  }
  .common-grid-container .sorting-control .dropdown-toggle::before {
    position: absolute;
    content: " ↓";
    top: 0px;
    right: -8px;
    height: 20px;
    width: 20px;
  }
  .common-grid-container #sortable-carousel .controllers {
    right: -47px;
    top: 10px;
  }
  .common-grid-container #sortable-carousel .carousel-inner {
    padding: 10px 16px;
  }
  .common-grid-container #sortable-carousel .carousel-inner .grid-wrapper {
    padding-bottom: 2%;
    margin-bottom: 0%;
  }
  .common-grid .grid-wrapper {
    max-width: 24%;
    flex-flow: column;
    flex: 1;
    display: flex;
    padding: 0;
  }
  .common-grid .grid-wrapper .grid {
    display: flex;
    flex-flow: column;
    height: 100%;
  }
  .common-grid .grid-wrapper .grid .image {
    height: 125px;
  }
  .common-grid .grid-wrapper .grid .image img {
    max-height: 125px;
    object-position: center center;
  }
  .common-grid .grid-wrapper .grid .meta {
    padding: 10px 15px 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }
  .common-grid .grid-wrapper .grid .meta .title {
    font-size: 17px;
    line-height: 21px;
  }
  .common-grid .grid-wrapper .grid .meta .subtitle {
    font-size: 14px;
    line-height: 20px;
    flex-grow: 1;
  }
  .common-grid .grid-wrapper .grid .meta .excerpt {
    font-size: 12px;
    line-height: 20px;
  }
  .common-grid .grid-wrapper .grid .meta .excerpt.locatie {
    font-family: "Lato";
    color: #B9A37F;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.45px;
  }
  .common-grid .grid-wrapper .grid .meta .tags a {
    margin-right: 5px;
    text-transform: none;
  }
  .common-grid .grid-wrapper .grid .meta .job-meta {
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: center;
  }
  .common-grid .grid-wrapper .grid .meta .job-meta .item {
    margin-right: 25px;
    font-size: 12px;
    line-height: 23px;
    font-weight: bold;
  }
  .common-grid .grid-wrapper .grid .meta .job-meta .item svg {
    margin-right: 5px;
    color: #0C063C;
  }
  .common-grid .grid-wrapper:last-child {
    padding-right: 0;
  }
  .common-grid.column3 .grid-wrapper {
    max-width: 29.5%;
  }
  .common-grid.column3 .grid-wrapper .grid .image {
    height: 214px;
  }
  .common-grid.column3 .grid-wrapper .grid .image img {
    max-height: 214px;
    height: 214px;
  }
  .common-grid.column3 .grid-wrapper .grid .meta {
    padding: 18px 15px 20px 15px;
  }
  .common-grid.column3 .grid-wrapper .grid .meta p.title {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.51px;
    margin-bottom: 0;
    font-weight: normal;
  }
  .common-grid.column3 .grid-wrapper .grid .meta h5.title {
    font-size: 17px;
    line-height: 21px;
    text-transform: none;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .common-grid.column3 .grid-wrapper .grid .meta .subtitle {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.45px;
    flex-grow: 0;
  }
  .common-grid.column3 .grid-wrapper .grid .meta .subtitle.date {
    font-size: 17px;
    line-height: 20px;
    font-weight: normal;
    font-weight: 300;
    margin-top: 5px;
  }
  .common-grid.column3 .grid-wrapper .grid .meta .excerpt {
    flex-grow: 1;
    font-weight: normal;
  }
  .common-grid.column3.multi-row {
    margin-bottom: 25px;
  }
  .common-grid.column3.multi-row .grid-wrapper {
    max-width: 32%;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .image {
    height: 214px;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .image img {
    max-height: 214px;
    height: 214px;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta {
    padding: 18px 15px 20px 15px;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta h5.title {
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta h5.title.black.locatie {
    color: #000000;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta .subtitle {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta .subtitle.locatie {
    display: none;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta .excerpt {
    flex-grow: 1;
    font-weight: bold;
    font-style: italic;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.18px;
    margin-bottom: 20px;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta .excerpt.locatie {
    display: block;
    font-weight: normal;
  }
  .common-grid.column3.multi-row:last-child {
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .common-grid.column3.multi-row:last-child .grid-wrapper {
    margin-right: 2%;
  }
  .common-grid.column3.multi-row:last-child .grid-wrapper:last-child {
    margin-right: 0;
  }
  .common-grid.column3.multi-row.profile {
    align-items: center;
    margin-bottom: 55px;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper {
    max-width: 32%;
    padding: 0 15px 0 15px;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid {
    height: auto;
    overflow: visible;
    box-shadow: 0px 9px 24px rgba(0, 0, 0, 0.1607843137);
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .image {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .image img {
    max-height: 90px;
    position: relative;
    top: -22px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6784313725);
    height: 90px;
    width: 90px;
    border-radius: 50%;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .meta {
    padding: 18px 15px 20px 15px;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .meta h5.title {
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 10px;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .meta .subtitle {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.42px;
    color: #0C063C;
    margin-bottom: 10px;
    font-weight: normal;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .meta .excerpt {
    flex-grow: unset;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.18px;
    margin-bottom: 20px;
  }
  .common-grid.column3.multi-row.profile:first-of-type {
    margin-top: 30px;
  }
  .common-grid.column3.multi-row.profile:last-child {
    margin-bottom: unset;
  }
  .common-grid.column3.multi-row.masonry, .common-grid.column3.multi-row.sortable {
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper, .common-grid.column3.multi-row.sortable .grid-wrapper {
    max-width: 32%;
    width: 32%;
    display: flex;
    padding: 0;
    flex: 0 0 100%;
    flex-direction: column;
    margin-right: 0;
    min-height: unset;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid, .common-grid.column3.multi-row.sortable .grid-wrapper .grid {
    flex: 1;
    height: auto;
    overflow: visible;
    /*box-shadow: 0px 9px 24px #00000029;*/
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .image, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .image {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .image img, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .image img {
    max-height: 90px;
    position: relative;
    top: -22px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6784313725);
    height: 90px;
    width: 90px;
    border-radius: 50%;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta {
    padding: 18px 15px 20px 15px;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta h5.title, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta h5.title {
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 10px;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta .subtitle, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta .subtitle {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.42px;
    color: #B9A37F;
    margin-bottom: 10px;
    font-weight: normal;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta .excerpt, .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta p.excerpt, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta .excerpt, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta p.excerpt {
    flex-grow: unset;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.18px;
    margin-bottom: 20px;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta p.excerpt, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta p.excerpt {
    margin-bottom: 0;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper:nth-child(3n+3), .common-grid.column3.multi-row.sortable .grid-wrapper:nth-child(3n+3) {
    margin-right: 0;
  }
  .common-grid.column3.multi-row.masonry:before, .common-grid.column3.multi-row.masonry:after, .common-grid.column3.multi-row.sortable:before, .common-grid.column3.multi-row.sortable:after {
    content: "";
    width: 100%;
    order: 1;
  }
  .common-grid.column3.multi-row.masonry:first-of-type, .common-grid.column3.multi-row.sortable:first-of-type {
    margin-top: 0;
  }
  .common-grid.column3.multi-row.masonry:last-child, .common-grid.column3.multi-row.sortable:last-child {
    margin-bottom: unset;
  }
  .common-grid.column3.multi-row.sortable {
    padding: 0;
    justify-content: space-between;
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper {
    display: flex;
    align-self: stretch;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper .grid {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper .grid .image {
    width: 100%;
    max-height: 115px;
    height: 115px;
    box-shadow: none;
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper .grid .image img {
    border-radius: 25px 25px 0 0;
    top: 0;
    height: 115px;
    max-height: 115px;
    width: 100%;
    box-shadow: none;
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta {
    padding: 0px 15px 20px 15px;
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta h5.title {
    margin-bottom: 5px;
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta .subtitle {
    font-size: 17px;
    line-height: 17px;
    color: #000000;
    font-weight: 300;
    margin-bottom: 15px;
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta p.excerpt:last-of-type {
    flex-grow: 1;
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta .btn {
    margin-top: 15px;
  }
  .common-grid.column3.short-image .grid-wrapper .grid .image {
    height: 165px;
  }
  .common-grid.column3.short-image .grid-wrapper .grid .image img {
    max-height: 165px;
  }
  .common-grid.column2 .grid-wrapper {
    max-width: 49%;
  }
  .common-grid.column2 .grid-wrapper .grid {
    background: none;
    border-radius: 25px;
  }
  .common-grid.column2 .grid-wrapper .grid .image {
    height: 100%;
  }
  .common-grid.column2 .grid-wrapper .grid .image img {
    max-height: 100%;
    height: 100%;
    flex-grow: 1;
  }
  .common-grid.column2 .grid-wrapper .grid .meta {
    align-items: flex-start;
    text-align: left;
    padding: 30px 35px;
  }
  .common-grid.column2 .grid-wrapper .grid .meta .title {
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: none;
  }
  .common-grid.column2 .grid-wrapper .grid .meta .people-name {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 10px;
  }
  .common-grid.column2 .grid-wrapper .grid .meta p {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.18px;
  }
  .common-grid.column2 .grid-wrapper .grid .meta p.intro {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.2px;
    flex-grow: 0;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .common-grid.column2 .grid-wrapper.fulltext {
    padding: 0;
  }
  .common-grid.column2 .grid-wrapper.fulltext .grid .meta {
    text-align: left;
  }
  .common-grid.column2 .grid-wrapper.fulltext .grid .meta .title {
    font-size: 26px;
    line-height: 24px;
  }
  .common-grid.column2 .grid-wrapper.fulltext .grid .meta p {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.18px;
    font-weight: normal;
  }
  .common-grid.column2 .grid-wrapper.fulltext .grid .meta p.intro {
    font-size: 14px;
    line-height: 20x;
    letter-spacing: 0.22px;
    flex-grow: 0;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .common-grid.column2 .grid-wrapper.fulltext .grid .meta p:last-of-type {
    /*flex-grow: 1;*/
  }
  .common-grid.column2 .grid-wrapper.fulltext .grid .meta .btn {
    margin: unset;
    margin-top: 20px;
  }
  .common-grid.column2 .grid-wrapper.fulltext.right-image .grid {
    display: flex;
    flex-flow: row;
  }
  .common-grid.column2 .grid-wrapper.fulltext.right-image .meta {
    width: calc(100% - 200px);
  }
  .common-grid.column2 .grid-wrapper.fulltext.right-image .image {
    max-width: 200px;
    display: block;
  }
  .common-grid.column2 .grid-wrapper.fulltext.right-image .image img {
    width: 200px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: unset;
  }
  .common-grid.column2 .grid-wrapper:first-child {
    order: unset;
  }
  .common-grid.column2 .grid-wrapper:last-child {
    order: unset;
    margin-bottom: 0;
  }
  .common-grid.align-left .meta {
    align-items: flex-start !important;
    text-align: left !important;
  }
}
@media only screen and (min-width: 1700px) {
  .common-grid-container h3.block-title {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 60px;
  }
  .common-grid-container #sortable-carousel .controllers {
    right: -47px;
    top: 10px;
  }
  .common-grid-container #sortable-carousel .carousel-inner {
    padding: 30px 15px 10px 16px;
  }
  .common-grid-container #sortable-carousel .carousel-inner .grid-wrapper {
    padding-bottom: 1.5%;
    margin-bottom: 2%;
  }
  .grid-slider-controller {
    right: 94px;
    top: 25px;
  }
  .common-grid .grid-wrapper .grid .image {
    height: 176px;
  }
  .common-grid .grid-wrapper .grid .image img {
    max-height: 176px;
  }
  .common-grid .grid-wrapper .grid .meta {
    padding: 18px 15px 25px 15px;
  }
  .common-grid .grid-wrapper .grid .meta .title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .common-grid .grid-wrapper .grid .meta .subtitle {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.45px;
  }
  .common-grid .grid-wrapper .grid .meta .job-meta {
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: center;
  }
  .common-grid .grid-wrapper .grid .meta .job-meta .item {
    margin-right: 25px;
    font-size: 15px;
    line-height: 34px;
    font-weight: bold;
  }
  .common-grid .grid-wrapper .grid .meta .job-meta .item svg {
    margin-right: 5px;
    color: #0C063C;
  }
  .common-grid.column3 .grid-wrapper {
    max-width: 32%;
  }
  .common-grid.column3 .grid-wrapper .grid .image {
    height: 224px;
  }
  .common-grid.column3 .grid-wrapper .grid .image img {
    max-height: 224px;
    height: 224px;
  }
  .common-grid.column3 .grid-wrapper .grid .meta {
    padding: 18px 20px 25px 20px;
  }
  .common-grid.column3 .grid-wrapper .grid .meta p.title {
    font-size: 25px;
    line-height: 25px;
    font-weight: normal;
    letter-spacing: 0.75px;
  }
  .common-grid.column3 .grid-wrapper .grid .meta .subtitle {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.45px;
    flex-grow: 0;
  }
  .common-grid.column3 .grid-wrapper .grid .meta .subtitle.date {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.6px;
  }
  .common-grid.column3 .grid-wrapper .grid .meta .excerpt {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .common-grid.column3.multi-row {
    margin-bottom: 30px;
  }
  .common-grid.column3.multi-row .grid-wrapper {
    max-width: 32%;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .image {
    height: 214px;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .image img {
    max-height: 214px;
    height: 214px;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta {
    padding: 18px 20px 20px 20px;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta h5.title {
    font-size: 35px;
    line-height: 36px;
    font-weight: 400;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta .subtitle {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta .excerpt {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.28px;
  }
  .common-grid.column3.multi-row:last-child {
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .common-grid.column3.multi-row:last-child .grid-wrapper {
    margin-right: 2%;
  }
  .common-grid.column3.multi-row.profile {
    margin-bottom: 55px;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper {
    max-width: 32%;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid {
    height: auto;
    overflow: visible;
    box-shadow: 0px 9px 24px rgba(0, 0, 0, 0.1607843137);
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .image {
    height: 94px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .image img {
    max-height: 124px;
    position: relative;
    top: -22px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6784313725);
    height: 124px;
    width: 124px;
    border-radius: 50%;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .meta {
    padding: 18px 15px 20px 15px;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .meta h5.title {
    font-size: 35px;
    line-height: 36px;
    letter-spacing: 1.05px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 15px;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .meta .subtitle {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
    font-weight: normal;
  }
  .common-grid.column3.multi-row.profile .grid-wrapper .grid .meta .excerpt {
    flex-grow: unset;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
    margin-bottom: 20px;
  }
  .common-grid.column3.multi-row.profile:first-of-type {
    margin-top: 30px;
  }
  .common-grid.column3.multi-row.profile:last-child {
    margin-bottom: unset;
  }
  .common-grid.column3.multi-row.masonry, .common-grid.column3.multi-row.sortable {
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper, .common-grid.column3.multi-row.sortable .grid-wrapper {
    max-width: 32%;
    width: 32%;
    display: flex;
    padding: 0;
    flex: 0 0 100%;
    flex-direction: column;
    margin-right: 0;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid, .common-grid.column3.multi-row.sortable .grid-wrapper .grid {
    flex: 1;
    height: auto;
    overflow: visible;
    /*box-shadow: 0px 9px 24px #00000029;*/
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .image, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .image {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .image img, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .image img {
    max-height: 90px;
    position: relative;
    top: -22px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6784313725);
    height: 90px;
    width: 90px;
    border-radius: 50%;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta {
    padding: 25px;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta h5.title, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta h5.title {
    font-size: 35px;
    line-height: 36px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1.05;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta .subtitle, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta .subtitle {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.6px;
    color: #B9A37F;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta .excerpt, .common-grid.column3.multi-row.masonry .grid-wrapper .grid .meta p.excerpt, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta .excerpt, .common-grid.column3.multi-row.sortable .grid-wrapper .grid .meta p.excerpt {
    flex-grow: unset;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
    margin-bottom: 20px;
  }
  .common-grid.column3.multi-row.masonry .grid-wrapper:nth-child(3n+3), .common-grid.column3.multi-row.sortable .grid-wrapper:nth-child(3n+3) {
    margin-right: 0;
  }
  .common-grid.column3.multi-row.masonry:before, .common-grid.column3.multi-row.masonry:after, .common-grid.column3.multi-row.sortable:before, .common-grid.column3.multi-row.sortable:after {
    content: "";
    width: 100%;
    order: 1;
  }
  .common-grid.column3.multi-row.masonry:first-of-type, .common-grid.column3.multi-row.sortable:first-of-type {
    margin-top: 0;
  }
  .common-grid.column3.multi-row.masonry:last-child, .common-grid.column3.multi-row.sortable:last-child {
    margin-bottom: unset;
  }
  .common-grid.column3.multi-row.sortable {
    padding: 0;
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper {
    display: flex;
    align-self: stretch;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0 15px;
    margin: 0 0 2% 0;
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper .grid .image {
    max-height: 163px;
    height: 100%;
    width: 100%;
  }
  .common-grid.column3.multi-row.sortable .grid-wrapper .grid .image img {
    max-height: 163px;
    height: 100%;
    width: 100%;
    border-radius: 25px 25px 0 0;
    box-shadow: none;
    top: 0;
  }
  .common-grid.column2 .grid-wrapper .grid .meta {
    padding: 35px 50px;
  }
  .common-grid.column2 .grid-wrapper .grid .meta .title {
    font-size: 25px;
    line-height: 34px;
  }
  .common-grid.column2 .grid-wrapper .grid .meta .people-name {
    font-size: 18px !important;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 10px;
  }
  .common-grid.column2 .grid-wrapper .grid .meta p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .common-grid.column2 .grid-wrapper .grid .meta p.intro {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .common-grid.column2 .grid-wrapper.fulltext .grid .meta .title {
    font-size: 37px;
    line-height: 34px;
    margin-bottom: 35px;
  }
  .common-grid.column2 .grid-wrapper.fulltext .grid .meta p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .common-grid.column2 .grid-wrapper.fulltext .grid .meta p.intro {
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0.32px;
    margin-bottom: 15px;
  }
  .common-grid.column2 .grid-wrapper.fulltext .grid .meta .btn {
    margin: unset;
    margin-top: 25px;
  }
  .common-grid.column2 .grid-wrapper.fulltext.right-image .meta {
    width: calc(100% - 280px);
  }
  .common-grid.column2 .grid-wrapper.fulltext.right-image .image {
    display: block;
    max-width: 280px;
  }
  .common-grid.column2 .grid-wrapper.fulltext.right-image .image img {
    width: 280px;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1280px) {
  .common-grid.column3 .grid-wrapper .grid .meta p.title {
    font-size: 18px;
  }
  .common-grid.column3.multi-row .grid-wrapper .grid .meta h5.title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .columns-container {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0;
    margin: 0;
  }
  .columns-container .grid {
    width: 100%;
    max-width: calc(50% - 7.5px);
    min-height: 70px;
    padding: 25px 50px;
    border-radius: 25px;
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.1607843137);
  }
  .columns-container .grid .meta {
    display: flex;
    flex-flow: column;
  }
  .columns-container .grid .meta img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
  }
  .columns-container .grid .meta p {
    line-height: 18px;
    letter-spacing: 0.2px;
  }
  .columns-container .grid .meta p.tags a {
    text-transform: none;
    font-weight: normal;
  }
  .columns-container .grid .meta p.intro {
    font-weight: bold;
    margin-top: 20px;
  }
  .columns-container .grid .meta p:last-of-type {
    flex-grow: 1;
  }
  .columns-container .grid .meta strong {
    line-height: 18px;
    letter-spacing: 0.2px;
    font-weight: bold;
    margin-top: 20px;
  }
  .columns-container .grid .meta a.btn {
    align-self: flex-start;
    margin-top: 25px;
  }
  .columns-container .grid.background-right {
    display: flex;
    flex-flow: row-reverse;
    padding: 0;
  }
  .columns-container .grid.background-right .image {
    padding: 0;
    background-position: center;
    background-size: cover;
    width: 35%;
    height: 100%;
    border-radius: 0 25px 25px 0;
  }
  .columns-container .grid.background-right .meta {
    padding: 25px 50px;
    width: 65%;
  }
  .columns-container .grid.background-right.wide .image {
    width: 44%;
  }
  .columns-container .grid.background-right.wide .meta h4 {
    color: #000000;
    text-transform: uppercase;
  }
  .columns-container .grid.background-right.wide .meta h6 {
    color: #000000;
    font-weight: normal;
  }
  .columns-container .grid.image {
    padding: 0;
    background-position: center;
    background-size: cover;
  }
}
@media only screen and (min-width: 1700px) {
  .columns-container .grid {
    max-width: calc(50% - 10px);
    padding: 30px 50px;
  }
  .columns-container .grid .meta p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .columns-container .grid .meta p.intro {
    margin-top: 20px;
  }
  .columns-container .grid .meta strong {
    line-height: 18px;
    letter-spacing: 0.2px;
    margin-top: 20px;
  }
  .columns-container .grid .meta a.btn {
    margin-top: 25px;
  }
  .columns-container .grid.background-right .meta {
    padding: 25px 50px;
  }
  .columns-container .grid.background-right.wide .meta h4 {
    color: #000000;
    text-transform: uppercase;
  }
  .columns-container .grid.background-right.wide .meta h6 {
    color: #000000;
    font-weight: normal;
  }
}
.location-grid {
  padding: 0;
}
.location-grid .location-grid-title {
  color: #0C063C;
  font-size: 35px;
  line-height: 42px;
  margin-bottom: 18px;
  text-align: center;
  font-weight: bold;
}
.location-grid .block-item {
  display: flex;
}
.location-grid .block-item .locations.minor {
  flex-wrap: nowrap;
  flex-flow: row;
  display: flex;
  overflow: scroll;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  padding-bottom: 7px;
}
.location-grid .block-item .locations.minor .location-wrapper {
  display: flex;
  width: 969px;
  margin: 0;
  flex-flow: row;
  flex: 0 0 auto;
}
.location-grid .block-item .locations.minor .location-wrapper .location {
  flex-flow: column;
  max-width: 32%;
  padding: 0;
  margin-right: 15px;
  border-radius: 25px;
  display: flex;
  flex: 1;
}
.location-grid .block-item .locations.minor .location-wrapper .location .image {
  width: 100%;
  height: 280px;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
}
.location-grid .block-item .locations.minor .location-wrapper .location .image img {
  width: 100%;
  height: 280px;
  max-height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 25px 25px 0 0;
}
.location-grid .block-item .locations.minor .location-wrapper .location .meta {
  position: relative;
  min-height: 95px;
  width: 100%;
  text-align: center;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.location-grid .block-item .locations.minor .location-wrapper .location .meta .city {
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0.33px;
  font-weight: normal;
  text-transform: uppercase;
  color: #0C063C;
  margin-bottom: 3px;
}
.location-grid .block-item .locations.minor .location-wrapper .location .meta .type {
  font-size: 14px;
  letter-spacing: 0.42px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.location-grid .block-item .locations.minor .location-wrapper .location .meta .description {
  font-size: 12px;
  line-height: 22px;
  font-weight: bold;
  letter-spacing: 0.24px;
  flex-grow: 1;
}
.location-grid .block-item .locations.minor .location-wrapper .location .meta .tags {
  margin: 0;
  margin-bottom: 10px;
  margin-top: 10px;
}
.location-grid .block-item .locations.minor .location-wrapper .location .meta .tags .btn.btn-beige {
  margin-right: 5px;
  text-transform: none;
  font-weight: normal;
  margin-bottom: 5px;
}
.location-grid .block-item .locations.minor .location-wrapper .location .meta .btn.btn-red {
  margin-top: 25px;
}

@media only screen and (min-width: 992px) {
  .location-grid .block-item .locations.main {
    width: 350px;
    min-height: 522px;
    margin-right: 40px;
    float: left;
    border-radius: 25px;
  }
  .location-grid .block-item .locations.main .image {
    height: 100%;
  }
  .location-grid .block-item .locations.main .image img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
  .location-grid .block-item .locations.minor {
    display: block;
    flex-wrap: unset;
    flex-flow: unset;
    overflow: unset;
    padding: 0;
    float: left;
    margin: 0;
    width: calc(100% - 390px);
  }
  .location-grid .block-item .locations.minor .location-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    flex: 0 0 100%;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location {
    margin: 0;
    margin-bottom: 8px;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .image {
    height: 125px;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .image img {
    cursor: pointer;
    height: 125px;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    filter: grayscale(0%);
    transition: all 0.5s ease;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .image img:hover {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    transform: scale(1.5);
    transition: all 0.5s ease;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .meta .city {
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    flex-grow: 1;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .meta .type {
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 0.39px;
    margin-bottom: 0;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .meta .tags {
    margin: 15px 0;
    flex-grow: 1;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .meta .btn.btn-red {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .location-grid .block-item .locations.minor .location-wrapper:nth-child(2) .location {
    margin-bottom: 0;
    margin-top: 8px;
  }
}
@media only screen and (min-width: 1700px) {
  .location-grid .block-item .locations.main {
    width: 492px;
    min-height: 600px;
    margin-right: 23px;
  }
  .location-grid .block-item .locations.minor {
    width: calc(100% - 515px);
  }
  .location-grid .block-item .locations.minor .location-wrapper .location {
    margin: 0;
    margin-bottom: 20px;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .image {
    height: 177px;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .image img {
    height: 177px;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .meta {
    padding: 20px 15px 20px 15px;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .meta .city {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 3rem;
    flex-grow: 1;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .meta .type {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.48px;
    margin-bottom: 5px;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .meta .tags {
    margin-bottom: 15px;
  }
  .location-grid .block-item .locations.minor .location-wrapper .location .meta .tags .btn.btn-beige {
    margin-bottom: 5px;
  }
  .location-grid .block-item .locations.minor .location-wrapper:nth-child(2) .location {
    margin-top: 4px;
  }
}
.ratings-title {
  color: #0C063C;
  font-size: 35px;
  line-height: 42px;
  margin-bottom: 18px;
  text-align: center;
  font-weight: bold;
}

.ratings .sliding {
  position: relative;
  width: 71%;
  min-height: 200px;
  border-radius: 25px 0 0 25px;
  padding: 0 15px;
  display: flex;
  flex: 1;
  justify-content: space-between;
}
.ratings .sliding .controllers {
  left: -47px;
  bottom: 0;
}
.ratings .sliding .carousel {
  overflow: hidden;
}
.ratings .sliding .carousel-inner {
  overflow: scroll;
  display: flex;
  flex-wrap: nowrap;
  padding-right: 15px;
  padding-left: 0;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: row;
}
.ratings .sliding .carousel-inner .items {
  margin-right: 15px;
}
.ratings .sliding .carousel-inner .items.carousel-item {
  width: 100%;
  max-width: 310px;
  min-height: 460px;
  flex: 0 0 100%;
  float: unset;
  margin-right: 15px;
  padding: 15px;
  align-self: stretch;
  justify-content: space-between;
  border-radius: 25px;
  background: #E4DBD2;
}
.ratings .sliding .carousel-inner .items.carousel-item .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  flex: 1;
  padding-right: 0;
  float: left;
  position: relative;
}
.ratings .sliding .carousel-inner .items.carousel-item .text h3 {
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 0;
  font-weight: 400;
  color: #0C063C;
  text-transform: uppercase;
}
.ratings .sliding .carousel-inner .items.carousel-item .text p {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
}
.ratings .sliding .carousel-inner .items.carousel-item .text p.title {
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 0;
  font-weight: 400;
  color: #0C063C;
  text-transform: uppercase;
  letter-spacing: 0;
}
.ratings .sliding .carousel-inner .items.carousel-item .text p.location {
  font-size: 23px;
  line-height: 25px;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #B9A37F;
}
.ratings .sliding .carousel-inner .items.carousel-item .text p:last-of-type {
  flex-grow: 1;
}
.ratings .sliding .carousel-inner .items.carousel-item .text .btn {
  margin-top: 25px;
}
.ratings .sliding .carousel-inner .items.carousel-item .image {
  flex: 1;
  padding-left: 25px;
  width: 50%;
  float: left;
}
.ratings .sliding .carousel-inner .items.carousel-item .image img {
  width: 100%;
  object-fit: cover;
  max-height: 183px;
  object-position: center center;
  border-radius: 25px;
}

@media only screen and (min-width: 992px) {
  .ratings .scores {
    position: relative;
    width: 24%;
    height: 300px;
    padding: 25px 25px 25px 0;
  }
  .ratings .scores p {
    font-size: 21px;
    line-height: 41px;
    font-weight: bold;
    margin-bottom: 0;
  }
  .ratings .scores p.title {
    font-size: 12px;
    line-height: 37px;
    letter-spacing: 0.36px;
  }
  .ratings .scores p.score {
    font-size: 100px;
    line-height: 42px;
    letter-spacing: -5.2px;
    font-weight: 900;
    color: #0C063C;
    min-height: unset;
    margin: 30px 0;
    width: unset;
  }
  .ratings .scores p.title {
    font-size: 12px;
    line-height: 37px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
  }
  .ratings .scores .btn {
    position: absolute;
    bottom: 25px;
    left: 0;
  }
  .ratings .sliding {
    position: relative;
    width: 76%;
    min-height: 200px;
    background: #ffffff;
    border-radius: 25px 0 0 25px;
    padding: 50px 60px;
    display: flex;
    flex: 1;
    justify-content: space-between;
  }
  .ratings .sliding .controllers {
    left: -47px;
    bottom: 0;
  }
  .ratings .sliding .carousel-inner {
    overflow: hidden;
    display: block;
    flex-wrap: unset;
    padding-right: unset;
    padding-left: unset;
    justify-content: unset;
    align-items: unset;
    flex-flow: unset;
  }
  .ratings .sliding .carousel-inner .items {
    margin-right: 0;
  }
  .ratings .sliding .carousel-inner .items.carousel-item {
    position: relative;
    float: left;
    width: 100%;
    margin-right: -100%;
    max-width: unset;
    min-height: unset;
    flex: unset;
    padding: unset;
    align-self: unset;
    justify-content: unset;
    border-radius: unset;
    background: unset;
  }
  .ratings .sliding .carousel-inner .items.carousel-item.active {
    display: block;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text {
    width: 50%;
    flex: 1;
    padding-right: 25px;
    float: left;
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
    position: unset;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text h3 {
    font-size: 25px;
    line-height: 42px;
    color: #0C063C;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text p {
    font-size: 11px;
    line-height: 21px;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text p.title {
    font-size: 25px;
    line-height: 42px;
    color: #0C063C;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text p.location {
    text-transform: uppercase;
    font-size: 17px;
    line-height: 37px;
    margin-bottom: 0;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text p:last-of-type {
    flex-grow: unset;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text .btn {
    display: none;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .image {
    flex: 1;
    padding-left: 25px;
    width: 50%;
    float: left;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .image img {
    width: 100%;
    object-fit: cover;
    max-height: 183px;
    object-position: center center;
    border-radius: 25px;
  }
}
@media only screen and (min-width: 1700px) {
  .ratings .scores {
    height: 400px;
  }
  .ratings .scores p {
    font-size: 25px;
    line-height: 58px;
  }
  .ratings .scores p.title {
    font-size: 17px;
    line-height: 53px;
    letter-spacing: 0.51px;
    text-transform: uppercase;
  }
  .ratings .scores p.score {
    font-size: 140px;
    line-height: 102px;
    letter-spacing: -7.28px;
    margin: 35px 0;
  }
  .ratings .sliding {
    padding: 70px 85px;
  }
  .ratings .sliding .controllers {
    left: -66px;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text {
    padding-right: 25px;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text h3 {
    font-size: 25px;
    line-height: 54px;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text p {
    font-size: 16px;
    line-height: 30px;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text p.title {
    font-size: 25px;
    line-height: 54px;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .text p.location {
    font-size: 25px;
    line-height: 54px;
    margin-bottom: 0;
  }
  .ratings .sliding .carousel-inner .items.carousel-item .image img {
    max-height: 257px;
  }
}
@media only screen and (min-width: 1920px) {
  .ratings .scores p {
    font-size: 30px;
  }
}
.maps {
  width: 100%;
  height: 310px;
  padding: 0;
  margin: 0;
}
.maps iframe {
  border-radius: 0;
}

@media only screen and (min-width: 992px) {
  .maps {
    height: 220px;
  }
}
@media only screen and (min-width: 1700px) {
  .maps {
    height: 310px;
  }
}
.virtual-tour-title {
  color: #0C063C;
  font-size: 35px;
  line-height: 42px;
  margin-bottom: 18px;
  text-align: center;
  font-weight: bold;
}

.virtual-tour {
  flex-flow: column;
}
.virtual-tour .tour-frame-wrapper {
  position: relative;
  width: 100%;
  min-height: 215px;
  padding: 0;
  order: 2;
}
.virtual-tour .tour-frame-wrapper iframe {
  border-radius: 0;
  min-height: 215px;
}
.virtual-tour .tour-description {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: 15px 15px 25px 15px;
  display: flex;
  flex: 1;
  justify-content: space-between;
  order: 1;
}
.virtual-tour .tour-description .text-box {
  width: 100%;
  height: 100%;
  background: #E4DBD2;
  text-align: center;
  padding: 20px 15px;
  border-radius: 25px;
  box-shadow: 0px 9px 24px rgba(0, 0, 0, 0.1607843137);
}
.virtual-tour .tour-description .text-box p {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  font-weight: bold;
}

@media only screen and (min-width: 992px) {
  .virtual-tour-title {
    margin-bottom: 7px;
    text-align: left;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 24px;
    font-weight: 900;
    margin-left: -15px;
  }
  .virtual-tour {
    flex-flow: row;
  }
  .virtual-tour .tour-frame-wrapper {
    position: relative;
    width: 58%;
    min-height: 392px;
    padding: 0 25px 0 0;
    order: unset;
  }
  .virtual-tour .tour-frame-wrapper iframe {
    border-radius: 25px;
    min-height: unset;
  }
  .virtual-tour .tour-description {
    position: relative;
    width: 42%;
    min-height: 392px;
    padding: 75px 60px 75px 25px;
    display: flex;
    flex: 1;
    justify-content: space-between;
    order: unset;
  }
  .virtual-tour .tour-description .text-box {
    width: 100%;
    height: 100%;
    background: #E4DBD2;
    text-align: center;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0px 9px 24px rgba(0, 0, 0, 0.1607843137);
  }
  .virtual-tour .tour-description .text-box p {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.26px;
    font-weight: bold;
  }
}
@media only screen and (min-width: 1700px) {
  .virtual-tour-title {
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 34px;
  }
  .virtual-tour .tour-frame-wrapper {
    min-height: 550px;
    padding: 0 40px 0 0;
  }
  .virtual-tour .tour-frame-wrapper iframe {
    border-radius: 25px;
  }
  .virtual-tour .tour-description {
    padding: 130px 85px 130px 40px;
  }
  .virtual-tour .tour-description .text-box {
    padding: 130px 60px 130px 40px;
  }
  .virtual-tour .tour-description .text-box p {
    font-size: 19px;
    line-height: 26px;
    letter-spacing: 0.38px;
  }
}
.teams-grid-container {
  text-align: center;
}
.teams-grid-container h3.block-title {
  font-size: 35px;
  line-height: 42px;
  font-weight: bold;
  color: #0C063C;
  text-align: center;
  margin-bottom: 30px;
}
.teams-grid-container .btn {
  margin-top: 30px;
}

.teams-grid {
  flex-wrap: wrap;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 15px;
}
.teams-grid .teams-grid-wrapper {
  flex: 1 0 auto;
  height: auto;
  border-radius: 25px;
  flex-grow: 1;
  margin-bottom: 15px;
  width: 100%;
  position: relative;
}
.teams-grid .teams-grid-wrapper:before {
  content: "";
  display: none;
}
.teams-grid .teams-grid-wrapper .hover {
  height: 146px;
  width: 100%;
}
.teams-grid .teams-grid-wrapper .hover img {
  height: 146px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 25px;
}
.teams-grid .teams-grid-wrapper .hover .caption {
  display: none;
}
.teams-grid .teams-grid-wrapper .hover .meta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 15px;
  visibility: visible;
}
.teams-grid .teams-grid-wrapper .hover .meta span {
  margin-bottom: 0;
  color: #ffffff;
}
.teams-grid .teams-grid-wrapper .hover .meta span.name {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.28px;
  font-weight: bold;
}
.teams-grid .teams-grid-wrapper .hover .meta span.position {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.26px;
  margin-top: 5px;
}
.teams-grid .teams-grid-wrapper:nth-child(1n+4) ~ .teams-grid-wrapper {
  display: none;
}

@media only screen and (min-width: 992px) {
  .teams-grid-container h3.block-title {
    font-size: 38px;
    line-height: 46px;
    font-weight: bold;
    color: #0C063C;
    text-align: left;
    margin-bottom: 50px;
  }
  .teams-grid-container .btn {
    display: none;
  }
  .teams-grid {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0;
  }
  .teams-grid .teams-grid-wrapper {
    position: relative;
    flex: 1 0 auto;
    height: auto;
    border-radius: 25px;
    max-width: 256px;
    min-width: 256px;
    flex-grow: 1;
    margin-bottom: calc((100% - 1024px) / 3);
    overflow: hidden;
  }
  .teams-grid .teams-grid-wrapper .overlay {
    max-height: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    visibility: hidden;
    display: block;
    left: 0;
    border-radius: 25px;
  }
  .teams-grid .teams-grid-wrapper:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .teams-grid .teams-grid-wrapper .hover {
    height: 256px;
    width: 256px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .teams-grid .teams-grid-wrapper .hover img {
    height: 256px;
    width: 256px;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
  }
  .teams-grid .teams-grid-wrapper .hover .caption {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    bottom: 0;
    transition: all 0.5s ease;
    position: absolute;
    bottom: -100%;
    width: 100%;
    max-height: 0;
    text-align: center;
    padding: 15px;
  }
  .teams-grid .teams-grid-wrapper .hover .caption span {
    margin-bottom: 0;
    color: #ffffff;
  }
  .teams-grid .teams-grid-wrapper .hover .caption span a {
    color: #ffffff;
  }
  .teams-grid .teams-grid-wrapper .hover .caption span .quotes {
    font-style: italic;
  }
  .teams-grid .teams-grid-wrapper .hover .caption span.name {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.28px;
    font-weight: bold;
  }
  .teams-grid .teams-grid-wrapper .hover .caption span.position {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.26px;
    margin-top: 5px;
  }
  .teams-grid .teams-grid-wrapper .hover .meta {
    position: absolute;
    left: 0;
    bottom: 35px;
    width: 100%;
    max-height: 0;
    text-align: center;
    padding: 15px;
    width: 100%;
  }
  .teams-grid .teams-grid-wrapper .hover .meta span {
    margin-bottom: 0;
    color: #ffffff;
  }
  .teams-grid .teams-grid-wrapper .hover .meta span.name {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.28px;
    font-weight: bold;
  }
  .teams-grid .teams-grid-wrapper .hover .meta span.position {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.26px;
    margin-top: 5px;
  }
  .teams-grid .teams-grid-wrapper .hover:hover .overlay {
    max-height: 100%;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 1;
  }
  .teams-grid .teams-grid-wrapper .hover:hover .caption {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-height: 100%;
    height: 100%;
    bottom: 0;
    transition: all 0.5s ease;
    z-index: 2;
  }
  .teams-grid .teams-grid-wrapper:nth-child(1n+4) ~ .teams-grid-wrapper {
    display: flex;
  }
  .teams-grid .teams-grid-wrapper:nth-child(4n+1):nth-last-child(-n+4), .teams-grid .teams-grid-wrapper:nth-child(4n+1):nth-last-child(-n+4) ~ .teams-grid-wrapper {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1170px) {
  .teams-grid .teams-grid-wrapper {
    max-width: 190px;
    min-width: 190px;
    margin-bottom: calc((100% - 760px) / 3);
  }
  .teams-grid .teams-grid-wrapper .hover {
    height: 190px;
    width: 190px;
  }
  .teams-grid .teams-grid-wrapper .hover img {
    height: 190px;
    width: 190px;
  }
}
@media only screen and (min-width: 1171px) and (max-width: 1399px) {
  .teams-grid .teams-grid-wrapper {
    max-width: 210px;
    min-width: 210px;
    margin-bottom: calc((100% - 840px) / 3);
  }
  .teams-grid .teams-grid-wrapper .hover {
    height: 210px;
    width: 210px;
  }
  .teams-grid .teams-grid-wrapper .hover img {
    height: 210px;
    width: 210px;
  }
}
@media only screen and (min-width: 1270px) and (max-width: 1440px) {
  .teams-grid .teams-grid-wrapper {
    max-width: 250px;
    min-width: 250px;
    margin-bottom: calc((100% - 1000px) / 3);
  }
  .teams-grid .teams-grid-wrapper .hover {
    height: 250px;
    width: 250px;
  }
  .teams-grid .teams-grid-wrapper .hover img {
    height: 250px;
    width: 250px;
  }
}
@media only screen and (min-width: 1700px) {
  .teams-grid-container h3.block-title {
    font-size: 55px;
    line-height: 66px;
    margin-bottom: 80px;
  }
  .teams-grid .teams-grid-wrapper {
    max-width: 358px;
    min-width: 358px;
    margin-bottom: calc((100% - 1432px) / 3);
  }
  .teams-grid .teams-grid-wrapper .hover {
    height: 358px;
    width: 358px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .teams-grid .teams-grid-wrapper .hover img {
    height: 358px;
    width: 358px;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
  }
  .teams-grid .teams-grid-wrapper .hover .caption span.name {
    font-size: 22px;
    line-height: 26px;
  }
  .teams-grid .teams-grid-wrapper .hover .caption span.position {
    font-size: 20px;
    line-height: 26px;
    margin-top: 10px;
  }
  .teams-grid .teams-grid-wrapper .hover .meta {
    bottom: 50px;
  }
  .teams-grid .teams-grid-wrapper .hover .meta span.name {
    font-size: 22px;
    line-height: 26px;
  }
  .teams-grid .teams-grid-wrapper .hover .meta span.position {
    font-size: 20px;
    line-height: 26px;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1700px) and (max-width: 1919px) {
  .teams-grid .teams-grid-wrapper {
    max-width: 320px;
    min-width: 320px;
    margin-bottom: calc((100% - 1240px) / 3);
  }
  .teams-grid .teams-grid-wrapper .hover {
    height: 320px;
    width: 320px;
  }
  .teams-grid .teams-grid-wrapper .hover img {
    height: 320px;
    width: 320px;
  }
}
@media only screen and (min-width: 2100px) {
  .teams-grid .teams-grid-wrapper {
    max-width: 400px;
    min-width: 400px;
    margin-bottom: calc((100% - 1600px) / 3);
  }
  .teams-grid .teams-grid-wrapper .hover {
    height: 400px;
    width: 400px;
  }
  .teams-grid .teams-grid-wrapper .hover img {
    height: 400px;
    width: 400px;
  }
}
.overlapping-grid {
  width: 100%;
  margin: 0;
  padding: 0 15px;
}
.overlapping-grid .text-grid {
  max-width: 100%;
  flex-flow: column;
  flex: 1;
  display: flex;
  padding: 0;
  z-index: 1;
}
.overlapping-grid .text-grid .text-box {
  height: 100%;
  width: 100%;
  border-radius: 25px;
  background: #ffffff;
  position: relative;
  /*box-shadow: 0px 3px 6px #00000029;*/
  padding: 20px 30px;
}
.overlapping-grid .text-grid .text-box .title {
  font-size: 20px;
  line-height: 24px;
  color: #0C063C;
  margin-bottom: 26px;
  text-align: center;
  font-weight: bold;
}
.overlapping-grid .text-grid .text-box .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.overlapping-grid .text-grid .text-box .content-wrapper .content-column {
  flex-grow: 1;
  max-width: 100%;
}
.overlapping-grid .text-grid .text-box .content-wrapper .content-column h4 {
  font-size: 14px;
  line-height: 17px;
  color: #0C063C;
  font-weight: bold;
  margin-bottom: 5px;
}
.overlapping-grid .text-grid .text-box .content-wrapper .content-column p {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  margin-bottom: 25px;
  font-weight: bold;
}
.overlapping-grid .image-grid {
  display: none;
}
.overlapping-grid.overlapping-header {
  display: flex;
  flex-flow: column;
}
.overlapping-grid.overlapping-header .image-grid {
  max-width: 100%;
  padding: 0;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  display: flex;
  min-height: 265px;
  order: 1;
  position: relative;
  z-index: 0;
}
.overlapping-grid.overlapping-header .image-grid .carousel {
  width: 100%;
  height: 360px;
}
.overlapping-grid.overlapping-header .image-grid .carousel .carousel-inner {
  width: inherit;
  height: inherit;
}
.overlapping-grid.overlapping-header .image-grid .carousel .carousel-inner .carousel-item {
  width: inherit;
  height: inherit;
}
.overlapping-grid.overlapping-header .image-grid .carousel .carousel-inner .carousel-item .image {
  height: inherit;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
  border-radius: 25px;
}
.overlapping-grid.overlapping-header .text-grid {
  max-width: 100%;
  min-height: 230px;
  padding: 0 40px;
  order: 2;
  margin-top: -30px;
}
.overlapping-grid.overlapping-header .text-grid .text-box {
  width: 100%;
  /*box-shadow: 0px 6px 24px #00000029;*/
  background: #ffffff;
  padding: 25px 20px;
}
.overlapping-grid.overlapping-header .text-grid .text-box .content-column {
  max-width: 100%;
}
.overlapping-grid.overlapping-header .text-grid .text-box .content-column h1 {
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 30px;
  color: #0C063C;
  font-weight: bold;
}
.overlapping-grid.overlapping-header .text-grid .text-box .content-column h3 {
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 30px;
  color: #0C063C;
  font-weight: bold;
}
.overlapping-grid.overlapping-header .text-grid .text-box .content-column p {
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 15px;
  font-weight: normal;
}
.overlapping-grid.overlapping-header .text-grid .text-box .content-column p.intro {
  margin-bottom: 15px;
}
.overlapping-grid.overlapping-header .text-grid .text-box .content-column p:last-child {
  margin-bottom: 0;
}
.overlapping-grid.overlapping-header.sliding .text-grid {
  display: none;
}
.overlapping-grid.overlapping-header.sliding .text-grid .text-box .content-column h1 {
  font-weight: bold;
  font-size: 26px;
  line-height: 24px;
}
.overlapping-grid.overlapping-header.sliding .text-grid .text-box .content-column h3 {
  font-weight: bold;
  font-size: 26px;
  line-height: 24px;
}

@media only screen and (min-width: 720px) {
  .overlapping-grid .text-grid {
    flex-flow: row;
  }
  .overlapping-grid .text-grid .text-box .content-wrapper {
    flex-direction: row;
  }
  .overlapping-grid .text-grid .text-box .content-wrapper .content-column {
    max-width: 31%;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box .content-wrapper .content-column {
    max-width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .overlapping-grid {
    padding: 0;
  }
  .overlapping-grid .text-grid {
    max-width: 58%;
    padding: 70px 0;
    flex-flow: column;
  }
  .overlapping-grid .text-grid .text-box {
    width: 115%;
    padding: 25px 45px;
  }
  .overlapping-grid .text-grid .text-box .title {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 900;
  }
  .overlapping-grid .text-grid .text-box .content-wrapper {
    flex-direction: row;
  }
  .overlapping-grid .text-grid .text-box .content-wrapper .content-column {
    max-width: 32%;
  }
  .overlapping-grid .text-grid .text-box .content-wrapper .content-column h4 {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.22px;
    margin-bottom: 14px;
  }
  .overlapping-grid .text-grid .text-box .content-wrapper .content-column p {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.18px;
    margin-bottom: 15px;
    font-weight: normal;
  }
  .overlapping-grid .text-grid.multi-column .text-box {
    width: 120%;
    background: none;
    box-shadow: none;
    padding: 0;
  }
  .overlapping-grid .text-grid.multi-column .text-box .title {
    margin-bottom: 15px;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper .content {
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.1607843137);
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.horizontal .content {
    padding: 25px 30px;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.horizontal .content p.strong {
    font-weight: bold;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 0.2px;
    margin-bottom: 0;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.vertical .content {
    max-width: 32%;
    width: 32%;
    padding: 20px 25px;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.vertical .content h4 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.28px;
    color: #0C063C;
    font-weight: bold;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.vertical .content p {
    font-weight: normal;
    font-size: 10px;
    line-height: 18px;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.vertical .content p.strong {
    font-weight: bold;
    margin-bottom: 0;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.vertical .content.carousel .controllers {
    bottom: 0;
    right: 0;
  }
  .overlapping-grid .image-grid {
    max-width: 42%;
    flex-flow: column;
    flex: 1;
    display: flex;
    padding: 0;
  }
  .overlapping-grid .image-grid img {
    height: 100%;
    max-height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
  }
  .overlapping-grid.overlapping-header {
    flex-flow: row;
  }
  .overlapping-grid.overlapping-header .image-grid {
    max-width: 70%;
    order: 2;
  }
  .overlapping-grid.overlapping-header .image-grid .carousel {
    width: 100%;
    height: 100%;
  }
  .overlapping-grid.overlapping-header .image-grid .carousel .carousel-inner {
    width: inherit;
    height: inherit;
  }
  .overlapping-grid.overlapping-header .image-grid .carousel .carousel-inner .carousel-item {
    width: inherit;
    height: inherit;
  }
  .overlapping-grid.overlapping-header .image-grid .carousel .carousel-inner .carousel-item .image {
    height: inherit;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
    border-radius: 25px;
  }
  .overlapping-grid.overlapping-header .text-grid {
    max-width: 30%;
    padding: 30px 0;
    order: 1;
    margin-top: unset;
    position: relative;
    z-index: 1;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box {
    width: 125%;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box .content-column h1 {
    font-size: 24px;
    line-height: 23px;
    font-weight: 900;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box .content-column h3 {
    font-size: 24px;
    line-height: 23px;
    font-weight: 900;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box .content-column p {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.18px;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box .content-column p.intro {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.22px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box .content-column .btn {
    padding: 12px 40px;
  }
  .overlapping-grid.overlapping-header.sliding .text-grid {
    display: flex;
  }
  .overlapping-grid.overlapping-header.sliding .text-grid .text-box .content-column h3 {
    font-weight: bold;
    font-size: 26px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1700px) {
  .overlapping-grid .text-grid {
    padding: 100px 0;
  }
  .overlapping-grid .text-grid .text-box {
    padding: 40px 60px;
  }
  .overlapping-grid .text-grid .text-box .title {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 40px;
  }
  .overlapping-grid .text-grid .text-box .content-wrapper .content-column h4 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.36px;
  }
  .overlapping-grid .text-grid .text-box .content-wrapper .content-column p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
    margin-bottom: 15px;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.horizontal .content {
    padding: 30px 50px;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.horizontal .content p.strong {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.vertical .content {
    max-width: 32%;
    width: 32%;
    padding: 25px 35px;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.vertical .content h4 {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .overlapping-grid .text-grid.multi-column .text-box .content-wrapper.vertical .content p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .overlapping-grid.overlapping-header .image-grid .carousel {
    width: 100%;
    height: 100%;
  }
  .overlapping-grid.overlapping-header .image-grid .carousel .carousel-inner {
    width: inherit;
    height: inherit;
  }
  .overlapping-grid.overlapping-header .image-grid .carousel .carousel-inner .carousel-item {
    width: inherit;
    height: inherit;
  }
  .overlapping-grid.overlapping-header .image-grid .carousel .carousel-inner .carousel-item .image {
    height: inherit;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
    border-radius: 25px;
  }
  .overlapping-grid.overlapping-header .text-grid {
    min-height: 230px;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box {
    padding: 35px 30px;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box .content-column h1 {
    margin-bottom: 15px;
    font-size: 35px;
    line-height: 34px;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box .content-column h3 {
    margin-bottom: 15px;
    font-size: 35px;
    line-height: 34px;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box .content-column p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box .content-column p.intro {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.32px;
  }
  .overlapping-grid.overlapping-header .text-grid .text-box .content-column .btn {
    padding: 12px 40px;
  }
  .overlapping-grid.overlapping-header.sliding .text-grid .text-box .content-column h3 {
    font-weight: bold;
    font-size: 26px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 390px) {
  .overlapping-grid.overlapping-header .text-grid {
    padding: 0 20px;
  }
}
.form-container {
  padding: 30px 225px;
}
.form-container .common-grid.column2 .grid-wrapper .grid {
  background: unset;
  box-shadow: unset;
}
.form-container .common-grid.column2 .grid-wrapper .grid .meta h3 {
  line-height: 30px;
}
.form-container .common-grid.column2 .grid-wrapper .grid .meta form {
  width: 100%;
}
.form-container .common-grid.column2 .grid-wrapper .grid .meta form .form-row {
  margin-bottom: 5px;
}
.form-container .common-grid.column2 .grid-wrapper .grid .meta form label {
  font-size: 10px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 0;
}
.form-container .common-grid.column2 .grid-wrapper .grid .meta form input {
  height: 33px;
  border-radius: 5px;
  font-size: 10px;
  line-height: 19px;
  letter-spacing: 0.2px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: none;
}
.form-container .common-grid.column2 .grid-wrapper .grid .meta form input.btn {
  border-radius: 25px;
  padding: 7px 15px;
  box-shadow: unset;
}
.form-container .common-grid.column2 .grid-wrapper .grid .meta form textarea {
  min-height: 65px;
  border-radius: 5px;
  font-size: 10px;
  line-height: 19px;
  letter-spacing: 0.2px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: none;
}

.with_frm_style .ervform {
  margin-top: 30px;
}
.with_frm_style .ervform .frm_form_fields .frm_fields_container .form-field {
  margin-bottom: 10px;
  color: #0C063C;
  font-size: 12px;
}
.with_frm_style .ervform .frm_form_fields .frm_fields_container .form-field.frm_fourth {
  grid-column: span 6/span 6 !important;
}
.with_frm_style .ervform .frm_form_fields .frm_fields_container .form-field .frm_primary_label {
  display: none;
}
.with_frm_style .ervform .frm_form_fields .frm_fields_container .form-field input {
  height: 40px;
  border-radius: 5px;
  line-height: 20px;
  letter-spacing: 0.22px;
  border: none;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.1607843137);
}
.with_frm_style .ervform .frm_form_fields .frm_fields_container .form-field input.frm_date {
  background-image: url(../img/icon-awesome-calendar-alt.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 15px;
}
.with_frm_style .ervform .frm_form_fields .frm_fields_container .form-field select {
  height: 40px;
  border-radius: 5px;
  line-height: 20px;
  letter-spacing: 0.22px;
  border: none;
  appearance: none;
  background-image: url(../img/icon-dropdown-red.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 10px;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.1607843137);
}
.with_frm_style .ervform .frm_form_fields .frm_fields_container .form-field select option {
  color: #555;
}
.with_frm_style .ervform .frm_form_fields .frm_fields_container .form-field textarea {
  border-radius: 5px;
  line-height: 20px;
  letter-spacing: 0.22px;
  border: none;
  height: 150px;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.1607843137);
}
.with_frm_style .ervform .frm_form_fields .frm_fields_container .form-row button.btn {
  margin-top: 0;
}
.with_frm_style .cform .frm_form_fields .frm_fields_container .form-field {
  margin-bottom: 10px;
}
.with_frm_style .cform .frm_form_fields .frm_fields_container .form-field label {
  font-family: "Lato";
}
.with_frm_style .cform .frm_form_fields .frm_fields_container .form-row:last-child {
  margin-top: 0;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone.frm_single_upload {
  max-width: 100%;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone.dz-clickable {
  min-height: calc(2.25rem + 2px);
}
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-message {
  position: relative;
  padding: 0;
  border: 0;
  margin: 0;
  height: 33px;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-message .frm_icon_font,
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-message .frm_small_text {
  display: none;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-message .frm_upload_text {
  position: absolute;
  right: 0;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-message .frm_upload_text button {
  visibility: hidden;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-message .frm_upload_text button:after {
  content: "Geen bestand gekozen";
  visibility: visible;
  color: #000000 !important;
  opacity: 30%;
  font-size: 11px !important;
  position: absolute;
  top: 0;
  right: 0;
  margin: 5px 10px 5px 0;
  text-align: right;
  width: 100%;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-message .frm_compact_text {
  display: block;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-message .frm_compact_text button {
  visibility: hidden;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-message .frm_compact_text button:after {
  content: "Bestand kiezen";
  visibility: visible;
  background-color: #0C063C !important;
  color: #ffffff !important;
  font-family: "Teko", sans-serif;
  font-size: 12px !important;
  font-weight: 600;
  border-radius: 15px;
  padding: 0px 12px !important;
  position: absolute;
  left: 0;
  margin: 5px;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-preview .dz-image {
  margin-right: 0;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-preview .dz-column {
  margin-right: 5px;
}
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-preview .dz-column .dz-details .dz-filename span,
.with_frm_style .custom-upload-vacatures .frm_dropzone .dz-preview .dz-column .dz-details .dz-size span {
  font-size: 10px;
}
.with_frm_style .custom-checkboxes .frm_checkbox label {
  line-height: 0 !important;
}
.with_frm_style .custom-checkboxes .frm_checkbox label input[type=checkbox] {
  height: auto !important;
}
.with_frm_style.frm_style_formidable-style, .with_frm_style.frm_style_formidable-style-4 {
  font-family: "Raleway";
  width: 100%;
}
.with_frm_style.frm_style_formidable-style label.frm_primary_label, .with_frm_style.frm_style_formidable-style-4 label.frm_primary_label {
  color: #0C063C;
}
.with_frm_style.frm_style_formidable-style input[type=text],
.with_frm_style.frm_style_formidable-style input[type=tel],
.with_frm_style.frm_style_formidable-style input[type=email], .with_frm_style.frm_style_formidable-style-4 input[type=text],
.with_frm_style.frm_style_formidable-style-4 input[type=tel],
.with_frm_style.frm_style_formidable-style-4 input[type=email] {
  height: 40px;
  border-radius: 5px;
  line-height: 20px;
  letter-spacing: 0.22px;
}
.with_frm_style.frm_style_formidable-style textarea, .with_frm_style.frm_style_formidable-style-4 textarea {
  height: 40px;
  border-radius: 5px;
  line-height: 20px;
  letter-spacing: 0.22px;
}
.with_frm_style.frm_style_formidable-style iframe, .with_frm_style.frm_style_formidable-style-4 iframe {
  border-radius: 0;
}
.with_frm_style.frm_style_formidable-style .frm_submit button.btn, .with_frm_style.frm_style_formidable-style-4 .frm_submit button.btn {
  background: #0C063C;
  font-family: "Teko";
  color: #fff;
  border-radius: 22px;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 35% !important;
}

@media only screen and (min-width: 992px) {
  .form-container {
    padding: 30px 225px;
  }
  .form-container .common-grid.column2 .grid-wrapper .grid {
    background: unset;
    box-shadow: unset;
  }
  .form-container .common-grid.column2 .grid-wrapper .grid .meta h3 {
    line-height: 30px;
  }
  .form-container .common-grid.column2 .grid-wrapper .grid .meta form {
    width: 100%;
  }
  .form-container .common-grid.column2 .grid-wrapper .grid .meta form .form-row {
    margin-bottom: 5px;
  }
  .form-container .common-grid.column2 .grid-wrapper .grid .meta form label {
    font-size: 10px;
    line-height: 19px;
    letter-spacing: 0.2px;
    color: #000000;
    font-weight: bold;
    margin-bottom: 0;
  }
  .form-container .common-grid.column2 .grid-wrapper .grid .meta form input {
    height: 33px;
    border-radius: 5px;
    font-size: 10px;
    line-height: 19px;
    letter-spacing: 0.2px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border: none;
  }
  .form-container .common-grid.column2 .grid-wrapper .grid .meta form input.btn {
    border-radius: 25px;
    padding: 7px 15px;
    box-shadow: unset;
  }
  .form-container .common-grid.column2 .grid-wrapper .grid .meta form textarea {
    min-height: 65px;
    border-radius: 5px;
    font-size: 10px;
    line-height: 19px;
    letter-spacing: 0.2px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border: none;
  }
  .with_frm_style#frm_form_7_container {
    max-width: 80%;
    margin: 0 auto;
  }
  .with_frm_style .ervform .frm_form_fields .frm_fields_container {
    grid-gap: 0 1%;
    grid-template-columns: repeat(12, 7.4%);
  }
  .with_frm_style .ervform .frm_form_fields .frm_fields_container .form-field {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .with_frm_style .ervform .frm_form_fields .frm_fields_container .form-field.frm_fourth {
    grid-column: span 3/span 3 !important;
  }
  .with_frm_style .ervform .frm_form_fields .frm_fields_container .form-field textarea {
    height: 90px;
  }
}
.contact-container {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  padding: 0 15px !important;
}
.contact-container aside {
  display: none;
}
.contact-container.contact-branch .main {
  width: 100%;
  margin-top: -100px;
  z-index: 1;
}
.contact-container.contact-branch .main .contact-form p {
  font-family: "Lato";
}
.contact-container.contact-branch .main .contact-info {
  background: #ffffff;
  z-index: 1;
  border-radius: 25px;
  margin-top: 30px;
}
.contact-container.contact-branch .main .contact-info .contact-icons {
  display: block;
  padding-left: 0px;
  list-style: none;
}
.contact-container.contact-branch .main .contact-info .contact-icons li {
  display: flex;
  font-size: 12px;
  font-weight: bold;
  color: #0C063C;
  margin-top: 20px;
  align-items: center;
}
.contact-container.contact-branch .main .contact-info .contact-icons li span {
  font-size: 22px;
  margin-right: 20px;
}
.contact-container.contact-branch .main .contact-info .contact-icons li a {
  color: #000000;
  text-decoration: none;
}
.contact-container.contact-branch .main .contact-info .upper {
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.1607843137);
}
.contact-container.contact-branch .main .contact-info .lower {
  box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.1607843137);
}
.contact-container .main {
  flex-flow: column;
  width: 100%;
  display: flex;
  padding: 0;
}
.contact-container .main .contact-header {
  margin-bottom: 15px;
  margin-right: -30px;
  position: relative;
  height: 100%;
  left: -15px;
}
.contact-container .main .contact-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
}
.contact-container .main .contact-content {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  flex-grow: 1;
}
.contact-container .main .contact-content .contact-form {
  background: #EFEFEF;
  border-radius: 25px;
  width: 100%;
  padding: 15px;
  position: relative;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.1607843137);
}
.contact-container .main .contact-content .contact-form h1 {
  font-size: 20px;
  line-height: 24px;
  color: #0C063C;
  margin-bottom: 5px;
}
.contact-container .main .contact-content .contact-form h2 {
  font-size: 20px;
  line-height: 24px;
  color: #0C063C;
  margin-bottom: 5px;
}
.contact-container .main .contact-content .contact-form p {
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 0.22px;
  margin-bottom: 5px;
  font-weight: bold;
}
.contact-container .main .contact-content .contact-form form {
  width: 100%;
}
.contact-container .main .contact-content .contact-form form .form-row {
  margin-bottom: 5px;
}
.contact-container .main .contact-content .contact-form form .form-row:last-child {
  margin-top: 15px;
  text-align: center;
}
.contact-container .main .contact-content .contact-form form .form-row .col {
  flex-basis: unset;
}
.contact-container .main .contact-content .contact-form form label {
  font-size: 11px;
  line-height: 20px;
  letter-spacing: 0.22px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 0;
}
.contact-container .main .contact-content .contact-form form input {
  height: 37px;
  border-radius: 5px;
  font-size: 11px;
  line-height: 20px;
  letter-spacing: 0.22px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: none;
}
.contact-container .main .contact-content .contact-form form input.btn {
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.3px;
  border-radius: 22px;
  padding: 10px 15px;
  height: unset;
}
.contact-container .main .contact-content .contact-form form textarea {
  min-height: 150px;
  border-radius: 5px;
  font-size: 11px;
  line-height: 20px;
  letter-spacing: 0.22px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: none;
}
.contact-container .main .contact-content .contact-info {
  width: 100%;
  display: flex;
  flex-flow: column;
}
.contact-container .main .contact-content .contact-info .upper {
  /*box-shadow: 0px 6px 24px #00000029;*/
  border-radius: 25px;
  padding: 25px;
  flex-grow: 1;
}
.contact-container .main .contact-content .contact-info .upper h1 {
  font-size: 20px;
  line-height: 24px;
  color: #0C063C;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 10px;
}
.contact-container .main .contact-content .contact-info .upper p {
  font-size: 12px;
  line-height: 26px;
  letter-spacing: 0.24px;
}
.contact-container .main .contact-content .contact-info .upper p.intro {
  color: #B9A37F;
  font-weight: bold;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 0.26px;
}
.contact-container .main .contact-content .contact-info .lower {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 4;
  background: #E4DBD2;
  width: 100%;
  border-radius: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  /*box-shadow: 0px -3px 6px #00000029;*/
}
.contact-container .main .contact-content .contact-info .lower .meta {
  max-width: 375px;
  display: flex;
  padding: 10px;
}
.contact-container .main .contact-content .contact-info .lower .meta h3 {
  display: none;
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info {
  display: flex;
  flex-flow: row;
  align-items: flex-end;
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info p {
  font-family: "Lato";
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info span {
  color: #0C063C;
  font-size: 40px;
  width: 20%;
  margin-bottom: 4px;
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info .left {
  width: 30%;
  margin: 0 10px;
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info .left p {
  margin-bottom: 0;
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info .left .big {
  font-size: 32px;
  line-height: 32px;
  color: #B9A37F;
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info .left .small {
  font-size: 14px;
  line-height: 18px;
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info .right {
  width: 100%;
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info .right p {
  margin-bottom: 0;
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info .right p.small {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 13px;
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info .right p.big {
  font-size: 17px;
  line-height: 18px;
  font-weight: 900;
}
.contact-container .main .contact-content .contact-info .lower .meta .sub-info .right p.big a {
  color: #B9A37F;
}
.contact-container .main .contact-content .contact-info .lower .image {
  display: none;
  width: 50%;
  padding: 0;
  margin: 0;
}
.contact-container .main .contact-content .contact-info .lower .image img {
  max-width: 100%;
  width: 100%;
  height: 126px;
  object-fit: cover;
  border-radius: 25px;
}
.contact-container .main .contact-content .contact-address {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-top: 20px;
  font-family: "Lato";
}
.contact-container .main .contact-content .contact-address .address-box {
  width: 49%;
  max-width: 49%;
  min-height: 160px;
  height: auto;
  align-self: stretch;
  flex: 0 0 100%;
  border-radius: 25px;
  margin-bottom: 2%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 15px 23px;
}
.contact-container .main .contact-content .contact-address .address-box p {
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 0;
}
.contact-container .main .contact-content .contact-address .address-box p.type {
  font-size: 8px;
  line-height: 10px;
  color: #0C063C;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.contact-container .main .contact-content .contact-address .address-box p.name {
  font-size: 12px;
  line-height: 15px;
  font-weight: normal;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.contact-container .main .contact-content .contact-address .address-box p.name span {
  font-weight: bold;
}
.contact-container .main .contact-content .contact-address .address-box p.address, .contact-container .main .contact-content .contact-address .address-box p.email {
  font-size: 11px;
  line-height: 13px;
  font-weight: normal;
  margin-bottom: 5px;
}
.contact-container .main .contact-content .contact-address .address-box p.address {
  position: relative;
  padding-left: 15px;
}
.contact-container .main .contact-content .contact-address .address-box p.addressspan {
  font-size: 10px;
  line-height: 12px;
}
.contact-container .main .contact-content .contact-address .address-box p.address:before {
  content: "\f3c5";
  font-size: 11px;
  font-family: "Font Awesome 5 Pro";
  left: 0;
  top: 2px;
  position: absolute;
  color: #0C063C;
}
.contact-container .main .contact-content .contact-address .address-box p.email {
  font-size: 10px;
  line-height: 12px;
  padding-left: 15px;
  position: relative;
}
.contact-container .main .contact-content .contact-address .address-box p.email a {
  color: #000000;
}
.contact-container .main .contact-content .contact-address .address-box p.email:before {
  content: "\f0e0";
  font-size: 11px;
  font-family: "Font Awesome 5 Pro";
  left: 0;
  top: 2px;
  position: absolute;
  color: #0C063C;
}
.contact-container .main .contact-content .contact-address .address-box p.phone {
  margin-top: 10px;
  font-size: 11px;
  line-height: 13px;
  padding-left: 15px;
  position: relative;
}
.contact-container .main .contact-content .contact-address .address-box p.phone a {
  font-weight: bold;
  text-decoration: underline;
  color: #0C063C;
}
.contact-container .main .contact-content .contact-address .address-box p.phone:before {
  content: "\f879";
  font-size: 11px;
  font-family: "Font Awesome 5 Pro";
  left: 0;
  top: 2px;
  position: absolute;
  color: #0C063C;
}
.contact-container .main .contact-content .contact-address .address-box.red-box {
  display: none;
}
.contact-container .main .contact-content .contact-address .accordion {
  width: 100%;
}
.contact-container .main .contact-content .contact-address .accordion .accordion-header {
  width: 100%;
  height: 55px;
  border-radius: 25px 25px 0 0;
  background: #0C063C;
  padding: 12px 20px;
  margin-bottom: 5px;
}
.contact-container .main .contact-content .contact-address .accordion .accordion-header h2 {
  font-weight: bold;
  font-size: 25px;
  line-height: 30px;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 0;
}
.contact-container .main .contact-content .contact-address .accordion .card {
  margin-bottom: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: none;
}
.contact-container .main .contact-content .contact-address .accordion .card .card-header {
  position: relative;
  background-color: #ffffff;
  padding: 15px 20px;
}
.contact-container .main .contact-content .contact-address .accordion .card .card-header a {
  display: inline-block;
  color: #000000;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  width: 100%;
}
.contact-container .main .contact-content .contact-address .accordion .card .card-header:before {
  position: absolute;
  content: "\f107";
  right: 20px;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  color: #B9A37F;
  font-size: 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
}
.contact-container .main .contact-content .contact-address .accordion .card .collapse .card-body {
  font-size: 12px;
  line-height: 26px;
  color: #000000;
  padding: 15px 20px;
}
.contact-container .main .contact-content .contact-address .accordion .card .collapse:last-child .card-body {
  border-radius: 0 0 25px 25px;
}
.contact-container .main .contact-content .contact-address .accordion .card:last-child {
  border-radius: 0 0 25px 25px;
}
.contact-container.no-padding.padding-top-sticky {
  padding-top: 0px !important;
}

@media only screen and (min-width: 992px) {
  .contact-container {
    padding: 0;
  }
  .contact-container aside {
    flex-flow: column;
    width: 225px;
    display: flex;
    flex: 1;
  }
  .contact-container aside .widget {
    display: flex;
    flex-grow: 1;
    position: relative;
    max-width: calc(100% - 15px);
  }
  .contact-container aside .widget img {
    max-width: 225px;
    min-height: 584px;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
  }
  .contact-container aside .widget .meta {
    text-align: center;
    width: 100%;
    padding: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .contact-container aside .widget .meta p {
    color: #ffffff;
    margin-bottom: unset;
  }
  .contact-container aside .widget .meta .name {
    font-size: 17px;
    line-height: unset;
    font-weight: bold;
  }
  .contact-container aside .widget .meta .city {
    font-size: 14px;
    line-height: 20px;
  }
  .contact-container aside .widget .meta .tags .btn {
    margin-right: 5px;
    text-transform: none;
    font-weight: normal;
    padding: 6px 12px;
    margin-bottom: 5px;
  }
  .contact-container aside .widget .meta .testimony {
    margin-top: 5px;
    display: block;
    font-size: 11px;
    line-height: 16px;
    font-style: italic;
    margin-bottom: 0.5rem;
  }
  .contact-container aside .widget .meta .btn {
    display: inline-block;
    margin-top: 10px;
  }
  .contact-container.contact-branch {
    padding: 0 100px !important;
  }
  .contact-container.contact-branch .main {
    width: 100%;
    margin-top: -150px;
    z-index: 1;
  }
  .contact-container.contact-branch .main .contact-form {
    width: calc(50% - 20px);
    padding: 20px;
  }
  .contact-container.contact-branch .main .contact-form p {
    font-size: 12px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .contact-container.contact-branch .main .contact-content .contact-info {
    margin-top: 0px;
    width: calc(50% - 6px);
  }
  .contact-container.contact-branch .main .contact-content .contact-info .contact-icons li a {
    font-size: 14px;
  }
  .contact-container.contact-branch .main .contact-content .contact-info .upper {
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.1607843137);
    padding: 25px;
  }
  .contact-container.contact-branch .main .contact-content .contact-info .upper .intro {
    color: #0C063C;
  }
  .contact-container.contact-branch .main .contact-content .contact-info .lower {
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.1607843137);
    padding-right: 0;
  }
  .contact-container.contact-branch .main .contact-content .contact-info .lower .meta {
    width: 50%;
    max-width: 50%;
    padding: 20px 10px 20px 20px;
  }
  .contact-container.contact-branch .main .contact-content .contact-info .lower .meta .sub-info .left .small {
    color: #B9A37F;
  }
  .contact-container .main {
    width: calc(100% - 240px);
  }
  .contact-container .main.full {
    width: 100%;
  }
  .contact-container .main .contact-header {
    margin-right: 0;
    left: 0;
  }
  .contact-container .main .contact-header img {
    height: 161px;
  }
  .contact-container .main .contact-content {
    flex-grow: 1;
    flex-flow: row;
  }
  .contact-container .main .contact-content .contact-form {
    width: calc(50% - 6px);
    box-shadow: none;
  }
  .contact-container .main .contact-content .contact-form p {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.18px;
    font-weight: normal;
  }
  .contact-container .main .contact-content .contact-form form {
    width: 100%;
    margin-top: 2rem;
  }
  .contact-container .main .contact-content .contact-form form .form-row:last-child {
    text-align: left;
  }
  .contact-container .main .contact-content .contact-form form .form-row .col {
    flex-basis: 50%;
  }
  .contact-container .main .contact-content .contact-form form label {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.14px;
  }
  .contact-container .main .contact-content .contact-form form input {
    height: 26px;
    font-size: 14px;
    line-height: 13px;
    letter-spacing: 0.14px;
  }
  .contact-container .main .contact-content .contact-form form textarea {
    min-height: 100px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 13px;
    letter-spacing: 0.14px;
  }
  .contact-container .main .contact-content .contact-info {
    width: calc(60% - 6px);
    display: flex;
    flex-flow: column;
  }
  .contact-container .main .contact-content .contact-info .upper {
    /*box-shadow: 0px 6px 24px #00000029;*/
    border-radius: 25px;
    padding: 25px 25px 25px 0;
    flex-grow: 1;
  }
  .contact-container .main .contact-content .contact-info .upper h1 {
    font-size: 25px;
    line-height: 30px;
    color: #0C063C;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .contact-container .main .contact-content .contact-info .upper p {
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.24px;
  }
  .contact-container .main .contact-content .contact-info .upper p.intro {
    font-weight: bold;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.22px;
  }
  .contact-container .main .contact-content .contact-info .lower {
    /*box-shadow: 0px 6px 24px #00000029;*/
    border-radius: 25px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin-top: 15px;
    position: unset;
    bottom: unset;
    left: unset;
    z-index: unset;
    background: #ffffff;
    width: 100%;
    text-align: left;
    padding-right: 25px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta {
    width: 35%;
    max-width: 35%;
    padding: 20px 10px 20px 0;
    display: flex;
    justify-content: space-between;
    flex-flow: column;
  }
  .contact-container .main .contact-content .contact-info .lower .meta h3 {
    display: block;
  }
  .contact-container .main .contact-content .contact-info .lower .meta h3.title {
    font-size: 17px;
    line-height: 21px;
    font-weight: 900;
    color: #0C063C;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info {
    display: flex;
    flex-flow: row;
    align-items: flex-end;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info span {
    color: #0C063C;
    font-size: 30px;
    width: 20%;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .left {
    width: 30%;
    margin: 0 10px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .left p {
    margin-bottom: 0;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .left .big {
    font-size: 24px;
    line-height: 24px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .left .small {
    font-size: 11px;
    line-height: 15px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .right {
    width: 50%;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .right p {
    margin-bottom: 0;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .right p.small {
    font-size: 11px;
    line-height: 13px;
    margin-bottom: 10px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .right p.big {
    font-size: 14px;
    line-height: 15px;
    font-weight: 900;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .right p.big a {
    text-decoration: underline;
    color: #B9A37F;
  }
  .contact-container .main .contact-content .contact-info .lower .image {
    display: block;
    width: 65%;
    padding: 0;
    margin: 0;
  }
  .contact-container .main .contact-content .contact-info .lower .image img {
    max-width: 100%;
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 25px;
  }
  .contact-container .main .contact-content .contact-address {
    width: calc(40% - 6px);
    margin-top: unset;
  }
  .contact-container .main .contact-content .contact-address .address-box {
    width: 32%;
    max-width: 32%;
    height: 32%;
    min-height: unset;
    padding: 12px;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  .contact-container .main .contact-content .contact-address .address-box p {
    font-size: 14px;
    line-height: 17px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.type {
    font-size: 7px;
    line-height: 8px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.name {
    font-size: 10px;
    line-height: 12px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.availability {
    font-size: 9px;
    line-height: 11px;
    text-transform: uppercase;
  }
  .contact-container .main .contact-content .contact-address .address-box p.address, .contact-container .main .contact-content .contact-address .address-box p.email {
    font-size: 10px;
    line-height: 12px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.address {
    position: relative;
    padding-left: 15px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.addressspan {
    font-size: 10px;
    line-height: 12px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.address:before {
    font-size: 9px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.email:before {
    font-size: 9px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.phone a {
    font-weight: 900;
  }
  .contact-container .main .contact-content .contact-address .address-box p.phone:before {
    font-size: 9px;
  }
  .contact-container .main .contact-content .contact-address .address-box.red-box {
    display: flex;
    flex-flow: column;
    justify-content: center;
    box-shadow: none;
    background: #0C063C;
    text-align: center;
  }
  .contact-container .main .contact-content .contact-address .address-box.red-box p {
    color: #ffffff;
    padding-left: 0;
  }
  .contact-container .main .contact-content .contact-address .address-box.red-box p.phone {
    margin-top: 5px;
  }
  .contact-container .main .contact-content .contact-address .address-box.red-box p.phone a {
    font-weight: 900;
    text-decoration: underline;
    color: #ffffff;
  }
  .contact-container .main .contact-content .contact-address .address-box:nth-child(3n) {
    margin-right: 0;
    page-break-after: always;
  }
  .contact-container .main .contact-content .contact-address .address-box:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  .contact-container .main .contact-content .contact-address .accordion {
    width: 100%;
    padding-top: 1rem;
  }
  .contact-container .main .contact-content .contact-address .accordion .accordion-header {
    width: 100%;
    height: 55px;
    border-radius: 25px 25px 0 0;
    background: #0C063C;
    padding: 22px 20px;
    margin-bottom: 5px;
  }
  .contact-container .main .contact-content .contact-address .accordion .accordion-header h2 {
    font-weight: 900;
    font-size: 17px;
    line-height: 21px;
    text-transform: none;
    color: #ffffff;
  }
  .contact-container .main .contact-content .contact-address .accordion .card {
    margin-bottom: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
  .contact-container .main .contact-content .contact-address .accordion .card .card-header {
    position: relative;
    background-color: #ffffff;
    padding: 20px 20px;
  }
  .contact-container .main .contact-content .contact-address .accordion .card .card-header a {
    display: inline-block;
    color: #000000;
    font-size: 10px;
    line-height: 12px;
    font-weight: 900;
    width: 100%;
  }
  .contact-container .main .contact-content .contact-address .accordion .card .card-header:before {
    position: absolute;
    content: "\f107";
    right: 20px;
    top: 0;
    font-family: "Font Awesome 5 Pro";
    color: #B9A37F;
    font-size: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .contact-container .main .contact-content .contact-address .accordion .card .collapse .card-body {
    font-size: 9px;
    line-height: 17px;
    color: #000000;
    padding: 15px 20px;
  }
  .contact-container .main .contact-content .contact-address .accordion .card .collapse:last-child .card-body {
    border-radius: 0 0 25px 25px;
  }
  .contact-container .main .contact-content .contact-address .accordion .card:last-child {
    border-radius: 0 0 25px 25px;
  }
  .contact-container.no-padding.padding-top-sticky {
    padding-top: 0px !important;
  }
}
@media only screen and (min-width: 1700px) {
  .contact-container aside {
    width: 225px;
  }
  .contact-container aside .widget img {
    max-width: 315px;
    min-height: 788px;
  }
  .contact-container aside .widget .meta {
    padding: 15px 20px 20px 15px;
  }
  .contact-container aside .widget .meta .name {
    font-size: 24px;
  }
  .contact-container aside .widget .meta .city {
    font-size: 20px;
    line-height: 20px;
  }
  .contact-container aside .widget .meta .tags .btn {
    font-size: 11px;
    line-height: 1.5em;
  }
  .contact-container .main {
    width: calc(100% - 330px);
  }
  .contact-container .main.full {
    width: 100%;
  }
  .contact-container .main .contact-header img {
    height: 225px;
  }
  .contact-container .main .contact-content .contact-form {
    width: calc(50% - 10px);
  }
  .contact-container .main .contact-content .contact-form h1 {
    font-size: 28px;
    line-height: 34px;
  }
  .contact-container .main .contact-content .contact-form h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .contact-container .main .contact-content .contact-form p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.22px;
  }
  .contact-container .main .contact-content .contact-form form label {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.22px;
  }
  .contact-container .main .contact-content .contact-form form input {
    height: 37px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.22px;
  }
  .contact-container .main .contact-content .contact-form form textarea {
    min-height: 150px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.22px;
  }
  .contact-container .main .contact-content .contact-form form input.btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.42px;
    border-radius: 22px;
    padding: 12px 20px;
    margin-top: 10px;
  }
  .contact-container .main .contact-content .contact-info .upper {
    padding: 35px 35px 35px 0;
  }
  .contact-container .main .contact-content .contact-info .upper p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.32px;
  }
  .contact-container .main .contact-content .contact-info .upper p.intro {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.32px;
  }
  .contact-container .main .contact-content .contact-info .lower {
    min-height: 178px;
    padding-right: 35px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta {
    padding: 20px 15px 20px 0;
  }
  .contact-container .main .contact-content .contact-info .lower .meta h3.title {
    font-size: 24px;
    line-height: 30px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info span {
    font-size: 40px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .left {
    width: 30%;
    margin: 0 10px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .left .big {
    font-size: 30px;
    line-height: 30px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .left .small {
    font-size: 15px;
    line-height: 21px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .right p.small {
    font-size: 16px;
    line-height: 19px;
  }
  .contact-container .main .contact-content .contact-info .lower .meta .sub-info .right p.big {
    font-size: 20px;
    line-height: 21px;
  }
  .contact-container .main .contact-content .contact-info .lower .image {
    width: 70%;
    padding: 0;
    margin: 0;
  }
  .contact-container .main .contact-content .contact-info .lower .image img {
    max-width: 100%;
    width: 100%;
    min-height: 174px;
    object-fit: cover;
    border-radius: 25px;
  }
  .contact-container .main .contact-content .contact-address {
    width: calc(40% - 10px);
  }
  .contact-container .main .contact-content .contact-address .address-box {
    padding: 12px;
  }
  .contact-container .main .contact-content .contact-address .address-box p {
    font-size: 14px;
    line-height: 17px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.type {
    font-size: 10px;
    line-height: 12px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.name {
    font-size: 15px;
    line-height: 18px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.availability {
    font-size: 13px;
    line-height: 16px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.address, .contact-container .main .contact-content .contact-address .address-box p.email {
    font-size: 14px;
    line-height: 17px;
    padding-left: 20px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.address {
    padding-left: 20px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.addressspan {
    font-size: 14px;
    line-height: 17px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.address:before {
    font-size: 12px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.email {
    padding-left: 20px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.email:before {
    font-size: 12px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.phone {
    padding-left: 20px;
    font-size: 16px;
    line-height: 19px;
  }
  .contact-container .main .contact-content .contact-address .address-box p.phone:before {
    font-size: 12px;
  }
  .contact-container .main .contact-content .contact-address .address-box.red-box p.phone {
    margin-top: 5px;
  }
  .contact-container .main .contact-content .contact-address .address-box:nth-child(3n) {
    margin-right: 0;
    page-break-after: always;
  }
  .contact-container .main .contact-content .contact-address .address-box:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  .contact-container .main .contact-content .contact-address .accordion {
    width: 100%;
  }
  .contact-container .main .contact-content .contact-address .accordion .accordion-header {
    height: 78px;
    padding: 25px 20px;
    margin-bottom: 10px;
  }
  .contact-container .main .contact-content .contact-address .accordion .accordion-header h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .contact-container .main .contact-content .contact-address .accordion .card {
    margin-bottom: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
  .contact-container .main .contact-content .contact-address .accordion .card .card-header {
    height: unset;
  }
  .contact-container .main .contact-content .contact-address .accordion .card .card-header a {
    font-size: 15px;
    line-height: 18px;
  }
  .contact-container .main .contact-content .contact-address .accordion .card .card-header:before {
    position: absolute;
    content: "\f107";
    right: 20px;
    top: 0;
    font-family: "Font Awesome 5 Pro";
    color: #B9A37F;
    font-size: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .contact-container .main .contact-content .contact-address .accordion .card .collapse .card-body {
    font-size: 14px;
    line-height: 26px;
    padding: 25px;
  }
  .contact-container.contact-branch {
    padding: 0 50px !important;
  }
  .contact-container.contact-branch .main .contact-content .contact-form {
    width: calc(50% - 25px);
    padding: 25px;
  }
  .contact-container.contact-branch .main .contact-content .contact-form p {
    font-size: 14px;
  }
  .contact-container.contact-branch .main .contact-content .contact-info .lower .meta {
    padding: 20px 15px 20px 25px;
  }
  .contact-container.contact-branch .main .contact-content .contact-info .lower .image {
    width: 50%;
  }
  .contact-container.contact-branch .main .contact-content .contact-info .lower .image img {
    min-height: 178px;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1280px) {
  .contact-container.contact-branch .main .contact-info {
    margin-top: 0px;
  }
  .contact-container .main .contact-content .contact-address .address-box {
    width: 49%;
    max-width: 49%;
    min-height: 160px;
    height: auto;
    align-self: stretch;
    flex: 0 0 100%;
    margin-bottom: 3%;
  }
  .contact-container .main .contact-content .contact-address .address-box:nth-child(3n) {
    page-break-after: unset;
  }
  .contact-container .main .contact-content .contact-info .lower {
    display: block;
  }
  .contact-container .main .contact-content .contact-info .lower .meta {
    width: 100%;
    max-width: 100%;
    display: block;
  }
  .contact-container .main .contact-content .contact-info .lower .image {
    width: 100%;
  }
  .contact-container .main .contact-content .contact-info .lower .image img {
    border-radius: 25px;
  }
}
@media only screen and (min-device-width: 1920px) {
  .contact-container.contact-branch {
    padding: 0 150px !important;
  }
}
.cookie-container {
  display: flex;
  flex-flow: column;
  position: fixed;
  max-width: 380px;
  width: 100%;
  min-height: 310px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 25px;
  padding: 20px 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  z-index: 1;
}
.cookie-container h5 {
  color: #0C063C;
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
}
.cookie-container p {
  font-size: 11px;
  line-height: 21px;
}
.cookie-container .form-check {
  margin-bottom: 10px;
}
.cookie-container .form-check label {
  font-size: 11px;
  line-height: 21px;
  color: #000000;
}
.cookie-container .form-check input[type=checkbox] {
  width: 26px;
  height: 26px;
}
.cookie-container .form-check span {
  font-size: 11px;
  line-height: 21px;
  color: #000000;
  padding-left: 20px;
}
.cookie-container .form-control {
  position: relative;
  border: none;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  height: 100%;
  flex: 1;
  margin-top: 15px;
}
.cookie-container .form-control button {
  float: left;
}
.cookie-container .form-control a {
  position: absolute;
  display: flex;
  flex-flow: row-reverse;
  right: 0;
  width: 50%;
  font-weight: bold;
  text-decoration: underline;
  text-transform: uppercase;
  color: #0C063C;
}

@media only screen and (min-width: 992px) {
  .cookie-container {
    display: flex;
    flex-flow: column;
    position: fixed;
    width: 250px;
    min-height: 220px;
    max-width: 100%;
    top: unset;
    left: unset;
    transform: unset;
    bottom: 15px;
    right: 15px;
    background: #ffffff;
    border-radius: 25px;
    padding: 20px 15px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    z-index: 1;
  }
  .cookie-container h5 {
    color: #0C063C;
    font-size: 11px;
    line-height: 13px;
    font-weight: bold;
  }
  .cookie-container p {
    font-size: 8px;
    line-height: 15px;
  }
  .cookie-container .form-check {
    margin-bottom: 15px;
  }
  .cookie-container .form-check label {
    font-size: 8px;
    line-height: 15px;
    color: #000000;
  }
  .cookie-container .form-check input[type=checkbox] {
    width: 18px;
    height: 18px;
  }
  .cookie-container .form-check span {
    font-size: 8px;
    line-height: 15px;
    color: #000000;
    padding-left: 20px;
    display: flex;
    margin-top: 5px;
  }
  .cookie-container .form-control {
    position: relative;
    border: none;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    height: 100%;
    flex: 1;
    margin-top: 15px;
  }
  .cookie-container .form-control button {
    float: left;
  }
  .cookie-container .form-control a {
    position: absolute;
    display: flex;
    flex-flow: row-reverse;
    right: 0;
    width: 50%;
    font-weight: bold;
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 8px;
    line-height: 15px;
  }
}
@media only screen and (min-width: 1700px) {
  .cookie-container {
    display: flex;
    flex-flow: column;
    position: fixed;
    width: 320px;
    min-height: 310px;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    border-radius: 25px;
    padding: 20px 15px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    z-index: 1;
  }
  .cookie-container h5 {
    color: #0C063C;
    font-size: 16px;
    line-height: 19px;
    font-weight: bold;
  }
  .cookie-container p {
    font-size: 11px;
    line-height: 21px;
  }
  .cookie-container .form-check {
    margin-bottom: 10px;
  }
  .cookie-container .form-check label {
    font-size: 11px;
    line-height: 21px;
    color: #000000;
  }
  .cookie-container .form-check input[type=checkbox] {
    width: 26px;
    height: 26px;
  }
  .cookie-container .form-check span {
    font-size: 11px;
    line-height: 21px;
    color: #000000;
    padding-left: 20px;
  }
  .cookie-container .form-control {
    position: relative;
    border: none;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    height: 100%;
    flex: 1;
    margin-top: 15px;
  }
  .cookie-container .form-control button {
    float: left;
  }
  .cookie-container .form-control a {
    position: absolute;
    display: flex;
    flex-flow: row-reverse;
    right: 0;
    width: 50%;
    font-weight: bold;
    text-decoration: underline;
    text-transform: uppercase;
  }
}
.teams-column-container {
  padding: 0 15px;
  margin: 0;
  background: #E4DBD2;
  min-height: 200px;
  width: 100%;
}
.teams-column-container .common-grid.column3.multi-row.teams-column {
  max-width: 100%;
  margin-left: 0;
  padding: 35px 0;
  position: relative;
}
.teams-column-container .common-grid.column3.multi-row.teams-column .carousel-indicators {
  margin-bottom: 35px;
}
.teams-column-container .common-grid.column3.multi-row.teams-column .carousel-indicators li {
  width: 8px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #0C063C;
  background: #E4DBD2;
  opacity: 1;
}
.teams-column-container .common-grid.column3.multi-row.teams-column .carousel-indicators li.active {
  background: #0C063C;
}
.teams-column-container .common-grid.column3.multi-row.teams-column .carousel {
  width: 100%;
}
.teams-column-container .common-grid.column3.multi-row.teams-column .carousel .carousel-inner .carousel-item {
  margin-bottom: 45px;
}
.teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid {
  box-shadow: none;
}
.teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .image {
  display: flex;
  justify-content: center;
  height: 227px;
}
.teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .image img {
  width: 227px;
  height: 100%;
  max-height: 227px;
  border-radius: 25px;
  box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.3490196078);
}
.teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .meta {
  padding: 18px 15px 0px 15px;
}
.teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .meta h4 {
  margin-bottom: 12px;
}
.teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .meta .excerpt {
  font-style: normal;
  font-weight: normal;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) {
  .teams-column-container {
    padding: 0 114px;
    margin: 0;
    background: #E4DBD2;
    min-height: 200px;
    width: 100%;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column {
    max-width: 100%;
    margin-left: 0;
    padding: 35px 0;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .carousel-indicators {
    display: none;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .carousel {
    width: 100%;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .carousel .carousel-inner {
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .carousel .carousel-inner .carousel-item {
    display: flex;
    max-width: 32%;
    margin-right: 2%;
    margin-bottom: 0;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .carousel .carousel-inner .carousel-item:last-child {
    margin-right: 0;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper {
    max-width: 100%;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid {
    box-shadow: none;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .image {
    display: flex;
    justify-content: center;
    height: 227px;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .image img {
    width: 227px;
    height: 100%;
    max-height: 227px;
    border-radius: 25px;
    box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.3490196078);
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .meta {
    padding: 18px 15px 0px 15px;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .meta h4 {
    margin-bottom: 12px;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .meta .excerpt {
    font-style: normal;
    font-weight: normal;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1700px) {
  .teams-column-container {
    padding: 0 160px;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column {
    padding: 35px 0;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .image {
    height: 320px;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .image img {
    width: 320px;
    max-height: 320px;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .meta {
    padding: 18px 15px 0px 15px;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .meta h4 {
    margin-bottom: 25px;
  }
  .teams-column-container .common-grid.column3.multi-row.teams-column .grid-wrapper .grid .meta .excerpt {
    margin-bottom: 25px;
  }
}
main {
  max-width: 100%;
  display: flex;
  flex-flow: column;
  padding: 0 15px;
}
main .article-wrapper {
  max-width: 100%;
  display: flex;
  flex-flow: column;
}
main .article-wrapper .featured-image {
  display: block;
}
main .article-wrapper .featured-image img {
  min-height: 257px;
}
main .article-wrapper .detail {
  margin-bottom: 15px;
}
main .article-wrapper .product-box {
  margin-top: 20px;
  padding: 0;
}
main .article-wrapper .product-box .grid-wrapper {
  max-width: 100%;
  padding: 0;
  display: flex;
  flex-flow: row;
}
main .article-wrapper .product-box .grid-wrapper .meta {
  padding: 15px 25px;
}
main .article-wrapper .product-box .grid-wrapper .meta p {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
}
main .article-wrapper .product-box .grid-wrapper .meta p.intro {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  flex-grow: 0;
  font-weight: normal;
  margin-bottom: 20px;
}
main .article-wrapper .product-box .grid-wrapper.right-image .image {
  display: none;
}
main .article-wrapper .article-meta {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.1607843137);
  border-radius: 25px;
  margin-bottom: 25px;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
main .article-wrapper .article-meta h1 {
  font-size: 35px;
  margin-bottom: 5px;
}
main .article-wrapper .article-meta h2 {
  margin-bottom: 5px;
}
main .article-wrapper .article-meta .job-meta {
  margin-bottom: 0;
}
main .article-wrapper .article-meta .job-meta .item {
  margin-right: 25px;
  font-size: 13px;
  line-height: 30px;
  font-weight: bold;
}
main .article-wrapper .article-meta .job-meta .item svg {
  margin-right: 5px;
  color: #0C063C;
}
main .article-wrapper .category-box {
  min-height: 200px;
}
main .article-wrapper .half-container {
  max-width: 100%;
  width: 100%;
}
main .featured-image {
  display: block;
  max-width: 100%;
  width: 100%;
  margin-bottom: 15px;
}
main .featured-image img {
  max-width: 100%;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.half-container {
  max-width: 100%;
  min-height: 200px;
  margin: 0;
  padding: 20px 25px;
  background: #ffffff;
  /*box-shadow: 0px 6px 24px #00000029;*/
  border-radius: 25px;
}
.half-container h2, .half-container h3, .half-container h4, .half-container h5, .half-container h6 {
  margin-bottom: 15px;
  margin-top: 20px;
}
.half-container h1 {
  font-size: 20px;
  line-height: 24px;
}
.half-container h1.title {
  text-align: center;
}
.half-container h1.btitle {
  font-size: 35px;
  margin-bottom: 15px;
  margin-top: 20px;
  line-height: 1.2;
}
.half-container h5.subtitle {
  margin-top: 0;
  color: #000000;
  text-align: center;
  font-size: 14px;
  line-height: 17px;
}
.half-container h6.date {
  font-family: "Lato";
  font-size: 1.65rem;
  line-height: 22px;
  color: #B9A37F;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.half-container p.intro {
  font-weight: bold;
}
.half-container p.tags .btn {
  margin-right: 15px;
  margin-bottom: 10px;
  text-transform: none;
}
.half-container ul, .half-container ol {
  margin-bottom: 15px;
}
.half-container img, .half-container video, .half-container embed, .half-container iframe {
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) {
  main {
    max-width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    padding: 0 114px;
  }
  main .article-wrapper {
    max-width: 50%;
    display: flex;
    flex-flow: column;
  }
  main .article-wrapper .featured-image {
    display: block;
  }
  main .article-wrapper .featured-image img {
    min-height: 257px;
  }
  main .article-wrapper .product-box {
    margin-top: 20px;
    padding: 0;
  }
  main .article-wrapper .product-box .grid-wrapper {
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-flow: row;
  }
  main .article-wrapper .product-box .grid-wrapper .meta {
    padding: 15px 25px;
  }
  main .article-wrapper .product-box .grid-wrapper .meta p {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.24px;
  }
  main .article-wrapper .product-box .grid-wrapper .meta p.intro {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.24px;
    flex-grow: 0;
    font-weight: normal;
    margin-bottom: 20px;
  }
  main .article-wrapper .product-box .grid-wrapper.right-image .meta {
    width: calc(100% - 200px);
  }
  main .article-wrapper .product-box .grid-wrapper.right-image .image {
    max-width: 200px;
    display: block;
  }
  main .article-wrapper .product-box .grid-wrapper.right-image .image img {
    width: 200px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: unset;
  }
  main .article-wrapper .article-meta {
    padding: 20px;
    background: #ffffff;
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.1607843137);
    border-radius: 25px;
    margin-bottom: 25px;
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  main .article-wrapper .article-meta h1 {
    font-size: 25px;
    margin-bottom: 5px;
  }
  main .article-wrapper .article-meta h2 {
    margin-bottom: 5px;
  }
  main .article-wrapper .article-meta .job-meta {
    margin-bottom: 0;
  }
  main .article-wrapper .article-meta .job-meta .item {
    margin-right: 25px;
    font-size: 13px;
    line-height: 30px;
    font-weight: bold;
  }
  main .article-wrapper .article-meta .job-meta .item svg {
    margin-right: 5px;
    color: #0C063C;
  }
  main .article-wrapper .category-box {
    min-height: 200px;
  }
  main .article-wrapper .half-container {
    max-width: 100%;
    width: 100%;
  }
  main .featured-image {
    display: none;
  }
  .half-container {
    max-width: 100%;
    min-height: 200px;
    margin: 0;
    padding: 20px 25px;
    background: #ffffff;
    /*box-shadow: 0px 6px 24px #00000029;*/
    border-radius: 25px;
  }
  .half-container h2, .half-container h3, .half-container h4, .half-container h5, .half-container h6 {
    margin-bottom: 15px;
    margin-top: 20px;
  }
  .half-container h1 {
    font-size: 29px;
    line-height: 35px;
  }
  .half-container h1.title {
    text-align: left;
  }
  .half-container h1.btitle {
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 20px;
  }
  .half-container h5.subtitle {
    margin-top: 0;
    color: #000000;
    text-align: left;
  }
  .half-container p.intro {
    font-weight: bold;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 0.22px;
  }
  .half-container p.tags .btn {
    margin-right: 15px;
    margin-bottom: 10px;
  }
  .half-container ul, .half-container ol {
    margin-bottom: 15px;
  }
  .half-container img, .half-container video, .half-container embed, .half-container iframe {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1700px) {
  main {
    padding: 0 160px;
  }
  main .article-wrapper .category-box {
    min-height: 320px;
  }
  main .article-wrapper .article-meta h1 {
    font-size: 35px;
  }
  .half-container {
    padding: 20px 25px;
    border-radius: 25px;
  }
  .half-container h2, .half-container h3, .half-container h4, .half-container h5, .half-container h6 {
    margin-bottom: 15px;
    margin-top: 20px;
  }
  .half-container h1 {
    font-size: 37px;
    line-height: 42px;
  }
  .half-container h1.title {
    font-size: 41px;
    line-height: 49px;
  }
  .half-container h1.btitle {
    font-size: 35px;
    margin-bottom: 15px;
    margin-top: 20px;
  }
  .half-container h5.subtitle {
    font-size: 20px;
    line-height: 25px;
  }
  .half-container p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.32px;
  }
  .half-container p.intro {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0;
  }
  .half-container p.tags .btn {
    margin-right: 25px;
    margin-bottom: 15px;
  }
  .half-container p strong {
    color: #0C063C;
  }
  .half-container ul, .half-container ol {
    margin-bottom: 15px;
  }
  .half-container img, .half-container video, .half-container embed, .half-container iframe {
    margin-bottom: 15px;
  }
}
.chat-container {
  width: 100%;
  max-width: 300px;
  position: fixed;
  bottom: 0px;
  right: 5px;
  z-index: 4;
  border-radius: 16px 16px 0px 0px;
  box-sizing: border-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.chat-container#chat-trigger {
  cursor: pointer;
}
@media (min-width: 922px) {
  .chat-container {
    right: 20px;
  }
}
.chat-container .chat-header {
  background: #0C063C;
  margin: 0;
  width: 100%;
  height: 60px;
  border-radius: 16px 16px 0px 0px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: flex-start;
}
.chat-container .chat-header img {
  max-width: 42px;
  height: 42px;
  border-radius: 50%;
}
.chat-container .chat-header .chat-title {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.18px;
  align-self: center;
}
@media (min-width: 922px) {
  .chat-container .chat-header .chat-title {
    font-size: 13px;
  }
}
.chat-container .chat-header span {
  font-size: 16px;
  color: #ffffff;
}
.chat-container .chat-header span.chat-close-button {
  cursor: pointer;
}
.chat-container .chat-area {
  width: 100%;
  background: #ffffff;
  min-height: 250px;
  padding: 0px;
  margin: 0;
  overflow: auto;
}
.chat-container .chat-area .chat-message-group {
  padding: 10px;
}
.chat-container .chat-area .chat-message-group .chat-thumb {
  float: left;
  width: 20%;
}
.chat-container .chat-area .chat-message-group .chat-thumb img {
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
}
.chat-container .chat-area .chat-message-group .chat-messages {
  float: left;
  width: 80%;
  margin-bottom: 20px;
}
.chat-container .chat-area .chat-message-group .chat-messages .message {
  float: left;
  padding: 10px;
  background: #ecf1f8;
  font-size: 13px;
  border-radius: 5px;
  margin-bottom: 3px;
}
.chat-container .chat-area .chat-message-group .chat-messages .from {
  float: left;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 11px;
}
.chat-container .chat-area .chat-message-group.writer-user .chat-messages {
  float: right;
  width: 100%;
}
.chat-container .chat-area .chat-message-group.writer-user .chat-messages .message {
  float: right;
  background: #0C063C;
  color: #FFF;
}
.chat-container .chat-area .chat-message-group.writer-user .chat-messages .from {
  float: left;
  display: block;
  width: 100%;
  text-align: right;
}
.chat-container .chat-footer {
  width: 100%;
  margin: 0;
  background: #EEEEEE;
  min-height: 80px;
  padding: 20px;
}
.chat-container .chat-footer .chat-form {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
}
.chat-container .chat-footer .chat-form .chat-input {
  height: calc(1.5em + 0.75rem + 25px);
  border-radius: 8px;
  font-size: 1.2rem;
  width: 100%;
  line-height: 1;
  box-sizing: border-box;
  outline: none;
}
.chat-container .chat-footer .chat-form .chat-button {
  min-width: 80px;
  position: absolute;
  right: 10px;
  max-height: 36px;
  padding: 8px 20px;
}
@media (min-width: 922px) {
  .chat-container .chat-footer .chat-form .chat-button {
    max-height: 46px;
    padding: 10px 30px;
  }
}

.static-grid {
  padding: 0;
}
.static-grid .static-grid-title {
  color: #0C063C;
  font-size: 35px;
  line-height: 42px;
  margin-bottom: 18px;
  text-align: center;
  font-weight: bold;
}
.static-grid .static-item {
  display: flex;
}
.static-grid .static-item .statics.minor {
  flex-wrap: nowrap;
  flex-flow: row;
  display: flex;
  overflow: scroll;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  padding-bottom: 7px;
}
.static-grid .static-item .statics.minor .static-wrapper {
  display: flex;
  width: 969px;
  margin: 0;
  flex-flow: row;
  flex: 0 0 auto;
}
.static-grid .static-item .statics.minor .static-wrapper .static {
  flex-flow: column;
  max-width: 32%;
  padding: 0;
  margin-right: 15px;
  border-radius: 25px;
  display: flex;
  flex: 1;
}
.static-grid .static-item .statics.minor .static-wrapper .static .image {
  width: 100%;
  height: 280px;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
}
.static-grid .static-item .statics.minor .static-wrapper .static .image img {
  width: 100%;
  height: 280px;
  max-height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 25px 25px 0 0;
}
.static-grid .static-item .statics.minor .static-wrapper .static .meta {
  position: relative;
  min-height: 95px;
  width: 100%;
  text-align: center;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.static-grid .static-item .statics.minor .static-wrapper .static .meta .city {
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0.33px;
  font-weight: normal;
  text-transform: uppercase;
  color: #0C063C;
  margin-bottom: 3px;
}
.static-grid .static-item .statics.minor .static-wrapper .static .meta .type {
  font-size: 14px;
  letter-spacing: 0.42px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.static-grid .static-item .statics.minor .static-wrapper .static .meta .description {
  font-size: 12px;
  line-height: 22px;
  font-weight: bold;
  letter-spacing: 0.24px;
  flex-grow: 1;
}
.static-grid .static-item .statics.minor .static-wrapper .static .meta .tags {
  margin: 0;
  margin-bottom: 10px;
  margin-top: 10px;
}
.static-grid .static-item .statics.minor .static-wrapper .static .meta .tags .btn.btn-beige {
  margin-right: 5px;
  text-transform: none;
  font-weight: normal;
  margin-bottom: 5px;
}
.static-grid .static-item .statics.minor .static-wrapper .static .meta .btn.btn-red {
  margin-top: 25px;
}

@media only screen and (min-width: 992px) {
  .static-grid .static-item .statics.main {
    width: 350px;
    min-height: 522px;
    margin-right: 40px;
    float: left;
    border-radius: 25px;
  }
  .static-grid .static-item .statics.main .image {
    height: 100%;
  }
  .static-grid .static-item .statics.main .image img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
  .static-grid .static-item .statics.minor {
    display: block;
    flex-wrap: unset;
    flex-flow: unset;
    overflow: unset;
    padding: 0;
    float: left;
    margin: 0;
    width: calc(100% - 390px);
  }
  .static-grid .static-item .statics.minor .static-wrapper {
    flex-wrap: wrap;
    width: 100%;
    flex: 0 0 100%;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static {
    margin: 0;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 8px;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .image {
    height: 125px;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .image img {
    cursor: pointer;
    height: 125px;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    filter: grayscale(0%);
    transition: all 0.5s ease;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .image img:hover {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    transform: scale(1.5);
    transition: all 0.5s ease;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .meta .city {
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    flex-grow: 1;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .meta .type {
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 0.39px;
    margin-bottom: 0;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .meta .tags {
    margin: 15px 0;
    flex-grow: 1;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .meta .btn.btn-red {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .static-grid .static-item .statics.minor .static-wrapper:nth-child(2) .location {
    margin-bottom: 0;
    margin-top: 8px;
  }
}
@media only screen and (min-width: 1700px) {
  .static-grid .static-item .statics.main {
    width: 492px;
    min-height: 600px;
    margin-right: 23px;
  }
  .static-grid .static-item .statics.minor {
    width: calc(100% - 515px);
  }
  .static-grid .static-item .statics.minor .static-wrapper .static {
    margin: 0;
    margin-bottom: 20px;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .image {
    height: 177px;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .image img {
    height: 177px;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .meta {
    padding: 20px 15px 20px 15px;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .meta .city {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 3rem;
    flex-grow: 1;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .meta .type {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.48px;
    margin-bottom: 5px;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .meta .tags {
    margin-bottom: 15px;
  }
  .static-grid .static-item .statics.minor .static-wrapper .static .meta .tags .btn.btn-beige {
    margin-bottom: 5px;
  }
  .static-grid .static-item .statics.minor .static-wrapper:nth-child(2) .location {
    margin-top: 4px;
  }
}
.middle-grid .mg-row {
  display: flex;
  flex-flow: column;
}
.middle-grid .mg-row .image-grid {
  max-width: 100%;
  padding: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  min-height: 265px;
  order: 1;
  position: relative;
  z-index: 0;
}
.middle-grid .mg-row .text-area {
  max-width: 100%;
  min-height: 230px;
  padding: 0 40px;
  order: 2;
  margin-top: -30px;
  z-index: 1;
}
.middle-grid .mg-row .text-area .text-box {
  width: 100%;
  background: #fff;
  padding: 25px 20px;
}
.middle-grid .mg-row .text-area .text-box h3 {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 30px;
  color: #0C063C;
  font-weight: bold;
}
.middle-grid .mg-row .text-area .text-box p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 15px;
  font-weight: normal;
}
.middle-grid .mg-row .text-area .text-box p.intro {
  margin-bottom: 15px;
}
.middle-grid .mg-row .text-area .text-box p:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
  .middle-grid .mg-container {
    width: 80%;
    max-width: 1080px;
  }
  .middle-grid .mg-row {
    flex-flow: row;
  }
  .middle-grid .mg-row .image-grid {
    max-width: 70%;
    order: 2;
    flex-flow: column;
    flex: 1;
  }
  .middle-grid .mg-row .text-area {
    max-width: 30%;
    padding: 30px 20px;
    order: 1;
    margin-top: unset;
    position: relative;
    z-index: 1;
  }
  .middle-grid .mg-row .text-area .text-box {
    width: 200%;
  }
  .middle-grid .mg-row .text-area .text-box h3 {
    font-size: 24px;
    line-height: 23px;
    font-weight: 900;
  }
  .middle-grid .mg-row .text-area .text-box p {
    font-size: 16px;
  }
  .middle-grid .mg-row .text-area .text-box p.intro {
    font-size: 16px;
    font-weight: bold;
  }
}
@media only screen and (min-width: 1700px) {
  .middle-grid .mg-row .text-area {
    min-height: 230px;
  }
  .middle-grid .mg-row .text-area .text-box {
    padding: 35px 30px;
  }
  .middle-grid .mg-row .text-area .text-box h3 {
    margin-bottom: 24px;
    font-size: 35px;
    line-height: 34px;
  }
  .middle-grid .mg-row .text-area .text-box p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
  .middle-grid .mg-row .text-area .text-box p.intro {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.32px;
  }
}
aside {
  display: flex;
  margin-top: 15px;
}
aside.halfwidth {
  min-height: 0;
  position: relative;
}
aside.halfwidth .widget-wrapper {
  max-width: 100%;
  width: 100%;
  position: sticky;
  top: 0;
}
aside.halfwidth .widget-wrapper .widget {
  /* AJ */
}
aside.halfwidth .widget-wrapper .widget img {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
  max-height: 400px;
  margin-bottom: 25px;
}
aside.halfwidth .widget-wrapper .widget.contact-form {
  width: 100%;
  box-shadow: none;
  background: #E4DBD2;
  padding: 20px;
  border-radius: 25px;
  margin-bottom: 15px;
}
aside.halfwidth .widget-wrapper .widget.contact-form p {
  font-size: 9px;
  line-height: 17px;
  letter-spacing: 0.18px;
  font-weight: normal;
}
aside.halfwidth .widget-wrapper .widget.contact-form h2 {
  margin-bottom: 10px;
}
aside.halfwidth .widget-wrapper .widget.contact-form form {
  width: 100%;
}
aside.halfwidth .widget-wrapper .widget.contact-form form .form-row {
  margin-bottom: 5px;
  align-items: center;
  flex-flow: row;
}
aside.halfwidth .widget-wrapper .widget.contact-form form .form-row:last-child {
  text-align: left;
}
aside.halfwidth .widget-wrapper .widget.contact-form form .form-row .col {
  flex-basis: 50%;
}
aside.halfwidth .widget-wrapper .widget.contact-form form .form-row.check {
  margin-bottom: 15px;
  margin-top: 10px;
}
aside.halfwidth .widget-wrapper .widget.contact-form form label {
  font-size: 10px;
  line-height: 19px;
  letter-spacing: 0.2px;
  font-weight: bold;
  margin-bottom: 0;
}
aside.halfwidth .widget-wrapper .widget.contact-form form label.form-check-label {
  margin-left: 25px;
}
aside.halfwidth .widget-wrapper .widget.contact-form form input {
  height: 33px;
  font-size: 10px;
  line-height: 19px;
  letter-spacing: 0.2px;
  border: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
aside.halfwidth .widget-wrapper .widget.contact-form form input[type=checkbox] {
  box-shadow: none;
  margin-left: 5px;
}
aside.halfwidth .widget-wrapper .widget.contact-form form textarea {
  min-height: 100px;
  border-radius: 5px;
  font-size: 10px;
  line-height: 19px;
  letter-spacing: 0.2px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
aside.halfwidth .widget-wrapper .widget .ads {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
  min-height: 190px;
  display: flex;
  flex-flow: row;
  /*box-shadow: 0px 3px 6px #00000029;*/
  /** Putu **/
  /** End Putu **/
}
aside.halfwidth .widget-wrapper .widget .ads .image {
  background-size: cover;
  background-position: center;
  min-height: 190px;
  width: 100%;
  max-width: 30%;
  /*border-radius: 25px 0 0 25px;*/
  border-radius: 25px;
}
aside.halfwidth .widget-wrapper .widget .ads .meta {
  width: 70%;
  background: #0C063C;
  border-radius: 0 25px 25px 0;
  padding: 15px 25px;
  align-items: center;
  justify-content: center;
  flex: 1;
  display: flex;
  flex-flow: column;
}
aside.halfwidth .widget-wrapper .widget .ads .meta p {
  text-align: center;
}
aside.halfwidth .widget-wrapper .widget .ads .meta p.message {
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  color: #ffffff;
}
aside.halfwidth .widget-wrapper .widget .ads .meta .btn {
  margin-top: 25px;
  color: #0C063C;
  background: #ffffff;
}
aside.halfwidth .widget-wrapper .widget .ads .meta .btn:hover, aside.halfwidth .widget-wrapper .widget .ads .meta .btn:focus {
  background: #0C063C;
  color: #ffffff;
}
aside.halfwidth .widget-wrapper .widget .ads .meta .btn.btn-beige {
  background: #83776D;
  color: #fff;
}
aside.halfwidth .widget-wrapper .widget .ads .meta .btn.btn-beige.small {
  font-size: 8px;
  line-height: 1.2em;
  padding: 6px 12px;
}
aside.halfwidth .widget-wrapper .widget .ads.right-image .image {
  background-size: cover;
  background-position: center;
  min-height: 190px;
  width: 100%;
  max-width: 30%;
  border-radius: 0 25px 25px 0;
}
aside.halfwidth .widget-wrapper .widget .ads.right-image .meta {
  width: 70%;
  align-items: start;
  background: #fff;
  border-radius: 25px 0 0 25px;
}
aside.halfwidth .widget-wrapper .widget .ads.right-image .meta p {
  text-align: left;
  text-transform: uppercase;
}
aside.halfwidth .widget-wrapper .widget .ads.right-image .meta p.message {
  text-transform: capitalize;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: #0C063C;
}
aside.halfwidth .widget-wrapper .widget .ads.right-image .meta h3 {
  font-size: 17px;
  line-height: 21px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}
aside.halfwidth .widget-wrapper .widget.multi {
  display: flex;
  flex-flow: column;
}
aside.halfwidth .widget-wrapper .widget.multi .ads {
  max-width: 100%;
  margin-bottom: 15px;
}
aside.halfwidth .widget-wrapper .widget.multi .ads.plain {
  box-shadow: none;
}
aside.halfwidth .widget-wrapper .widget.multi .ads.plain .meta {
  padding: 15px 25px;
  background: #EFEFEF;
  border-radius: 25px;
  align-items: center;
}
aside.halfwidth .widget-wrapper .widget.multi .ads.plain .meta p {
  text-align: center;
  font-size: 12px;
  line-height: 26px;
}
aside.halfwidth .widget-wrapper .widget.multi .ads.plain .meta p.message {
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  color: #0C063C;
}
aside.halfwidth .widget-wrapper .widget.multi .ads.plain .meta p.black {
  color: #000000;
}
aside.halfwidth .widget-wrapper .widget.multi.white {
  display: block;
}
aside.halfwidth .widget-wrapper .widget.multi.white .ads {
  border-radius: 25px;
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.1607843137);
  background: #ffffff;
}
aside.halfwidth .widget-wrapper .widget.multi.white .ads .meta {
  background: #ffffff;
}
aside.halfwidth .widget-wrapper .widget .usefull-links {
  width: 100%;
  object-fit: cover;
  min-height: 190px;
  display: flex;
  flex-flow: column;
  background: #EFEFEF 0% 0% no-repeat padding-box;
  border-radius: 24px;
  opacity: 1;
  padding: 25px 25px;
}
aside.halfwidth .widget-wrapper .widget .usefull-links .title {
  font-size: 20px;
}
aside.halfwidth .widget-wrapper .widget .usefull-links .items {
  padding-top: 20px;
}
aside.halfwidth .widget-wrapper .widget .usefull-links .items h4 {
  font-size: 17px;
}
aside.halfwidth .widget-wrapper .widget .usefull-links .items a {
  text-decoration: underline;
}
aside.halfwidth .widget-wrapper .widget.featured-slider {
  margin-top: 20px;
  overflow: hidden;
  padding: 5px 3px;
}
aside.halfwidth .widget-wrapper .widget.featured-slider .carousel-inner {
  overflow: unset;
}
aside.halfwidth .widget-wrapper .widget.featured-slider .carousel-inner .ads {
  display: none;
}
aside.halfwidth .widget-wrapper .widget.featured-slider .carousel-inner .ads.active {
  display: flex;
}
aside.halfwidth .widget-wrapper .widget.featured-slider .carousel-inner .ads .meta {
  border-radius: 25px 0 0 25px;
}
aside.halfwidth .widget-wrapper .widget .content-slider {
  /* End AJ */
}
aside.halfwidth .widget-wrapper .widget .content-slider.ads.white {
  min-height: 150px;
}
aside.halfwidth .widget-wrapper .widget .content-slider.ads.white .meta {
  width: 100%;
  border-radius: 25px;
  padding-bottom: 5px;
  background: #FFFFFF;
}
aside.halfwidth .widget-wrapper .widget .content-slider.ads.white .meta p.message {
  color: #0C063C;
}
aside.halfwidth .widget-wrapper .widget .content-slider.ads.white .meta .btn {
  margin-top: 0;
}

.fixed-block {
  display: flex;
  background: #ffffff;
  width: 100%;
  bottom: 0;
  position: sticky;
  z-index: 2;
  flex-flow: row;
  padding: 25px 0;
  justify-content: center;
}
.fixed-block .btn {
  margin: 0;
}

@media only screen and (min-width: 481px) {
  aside.halfwidth .widget-wrapper .widget .ads .image {
    max-width: 60%;
  }
  aside.halfwidth .widget-wrapper .widget .ads .meta {
    max-width: 40%;
  }
}
@media only screen and (min-width: 992px) {
  aside {
    display: block;
    margin-top: 0;
  }
  aside.halfwidth {
    min-height: 300px;
    position: relative;
  }
  aside.halfwidth .widget-wrapper {
    max-width: 100%;
    width: 100%;
    position: sticky;
    top: 0;
  }
  aside.halfwidth .widget-wrapper .widget {
    /*AJ*/
    /* End AJ */
  }
  aside.halfwidth .widget-wrapper .widget img {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    height: 575px;
    margin-bottom: 25px;
  }
  aside.halfwidth .widget-wrapper .widget .ads {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    min-height: 190px;
    display: flex;
    flex-flow: row;
    /*box-shadow: 0px 3px 6px #00000029;*/
    /** Putu **/
    /** End Putu **/
  }
  aside.halfwidth .widget-wrapper .widget .ads .image {
    background-size: cover;
    background-position: center;
    min-height: 190px;
    width: 100%;
    max-width: 60%;
    /*border-radius: 25px 0 0 25px;*/
    border-radius: 25px;
  }
  aside.halfwidth .widget-wrapper .widget .ads .meta {
    width: 40%;
    background: #ffffff;
    border-radius: 0 25px 25px 0;
    padding: 15px 25px;
    align-items: center;
    justify-content: center;
    flex: 1;
    display: flex;
    flex-flow: column;
  }
  aside.halfwidth .widget-wrapper .widget .ads .meta p {
    text-align: center;
  }
  aside.halfwidth .widget-wrapper .widget .ads .meta p.message {
    font-size: 17px;
    line-height: 21px;
    font-weight: bold;
    color: #0C063C;
  }
  aside.halfwidth .widget-wrapper .widget .ads .meta .btn {
    margin-top: 25px;
    color: #ffffff;
    background: #0C063C;
  }
  aside.halfwidth .widget-wrapper .widget .ads .meta .btn:hover, aside.halfwidth .widget-wrapper .widget .ads .meta .btn:focus {
    background: #ffffff;
    color: #0C063C;
  }
  aside.halfwidth .widget-wrapper .widget .ads.right-image .image {
    background-size: cover;
    background-position: center;
    min-height: 190px;
    width: 50%;
    max-width: 40%;
    border-radius: 0 25px 25px 0;
  }
  aside.halfwidth .widget-wrapper .widget .ads.right-image .meta {
    width: 60%;
    background: #ffffff;
    border-radius: 25px 0 0 25px;
    padding: 15px 25px;
    align-items: start;
    max-width: 60%;
  }
  aside.halfwidth .widget-wrapper .widget .ads.right-image .meta p {
    text-align: left;
    text-transform: uppercase;
  }
  aside.halfwidth .widget-wrapper .widget .ads.right-image .meta p.message {
    text-transform: capitalize;
    font-size: 17px;
    line-height: 21px;
    font-weight: bold;
    color: #0C063C;
  }
  aside.halfwidth .widget-wrapper .widget .ads.right-image .meta h3 {
    font-size: 14px;
    line-height: 21px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
  }
  aside.halfwidth .widget-wrapper .widget .ads.right-image .meta .btn {
    margin-top: 25px;
    color: #ffffff;
  }
  aside.halfwidth .widget-wrapper .widget .ads.right-image .meta .btn:hover, aside.halfwidth .widget-wrapper .widget .ads.right-image .meta .btn:focus {
    background: #ffffff;
  }
  aside.halfwidth .widget-wrapper .widget .ads.right-image .meta .btn.btn-beige.small {
    font-size: 7px;
    line-height: 1.5em;
    padding: 5px 14px;
  }
  aside.halfwidth .widget-wrapper .widget.featured-image img {
    max-height: 400px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  aside.halfwidth .widget-wrapper .widget.multi {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
  }
  aside.halfwidth .widget-wrapper .widget.multi .ads {
    max-width: 49%;
  }
  aside.halfwidth .widget-wrapper .widget.multi .ads.plain {
    box-shadow: none;
  }
  aside.halfwidth .widget-wrapper .widget.multi .ads.plain .meta {
    padding: 15px 25px;
    background: #EFEFEF;
    border-radius: 25px;
    align-items: flex-start;
    max-width: 100%;
  }
  aside.halfwidth .widget-wrapper .widget.multi .ads.plain .meta p {
    text-align: left;
  }
  aside.halfwidth .widget-wrapper .widget.multi .ads.plain .meta p.message {
    font-size: 17px;
    line-height: 21px;
    text-align: left;
  }
  aside.halfwidth .widget-wrapper .widget.multi .ads.plain .meta p.black {
    color: #000000;
  }
  aside.halfwidth .widget-wrapper .widget.multi.white {
    display: none;
  }
  aside.halfwidth .widget-wrapper .widget .usefull-links {
    width: 100%;
    object-fit: cover;
    min-height: 190px;
    display: flex;
    flex-flow: column;
    background: #EFEFEF 0% 0% no-repeat padding-box;
    border-radius: 24px;
    opacity: 1;
    padding: 25px 25px;
  }
  aside.halfwidth .widget-wrapper .widget .usefull-links .title {
    margin-bottom: 20px;
  }
  aside.halfwidth .widget-wrapper .widget .usefull-links .items {
    padding-top: 20px;
  }
  aside.halfwidth .widget-wrapper .widget .usefull-links .items a {
    text-decoration: underline;
  }
  aside.halfwidth .widget-wrapper .widget .content-slider.ads.white .meta {
    align-items: normal;
    max-width: unset; /*Putu */
  }
  aside.halfwidth .widget-wrapper .widget .content-slider.ads.white .meta p {
    text-align: left;
  }
  aside.halfwidth .widget-wrapper .widget .content-slider.ads.white .meta p.message {
    text-align: left;
  }
  .fixed-block {
    display: none;
  }
}
@media only screen and (min-width: 1700px) {
  aside {
    display: block;
  }
  aside.halfwidth {
    min-height: 300px;
    position: relative;
  }
  aside.halfwidth .widget-wrapper {
    max-width: 100%;
    width: 100%;
  }
  aside.halfwidth .widget-wrapper .widget img {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    max-height: 400px;
    margin-bottom: 25px;
  }
  aside.halfwidth .widget-wrapper .widget .ads {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    min-height: 275px;
    display: flex;
    flex-flow: row;
    /*box-shadow: 0px 3px 6px #00000029;*/
  }
  aside.halfwidth .widget-wrapper .widget .ads .image {
    background-size: cover;
    background-position: center;
    min-height: 275px;
    width: 100%;
    max-width: 60%;
    /*border-radius: 25px 0 0 25px;*/
    border-radius: 25px;
  }
  aside.halfwidth .widget-wrapper .widget .ads .meta {
    width: 40%;
    background: #ffffff;
    border-radius: 0 25px 25px 0;
    padding: 15px 30px;
    align-items: center;
    justify-content: center;
    flex: 1;
    display: flex;
    flex-flow: column;
  }
  aside.halfwidth .widget-wrapper .widget .ads .meta p {
    text-align: center;
  }
  aside.halfwidth .widget-wrapper .widget .ads .meta p.message {
    font-size: 25px;
    line-height: 30px;
    font-weight: bold;
    color: #0C063C;
  }
  aside.halfwidth .widget-wrapper .widget .ads .meta .btn {
    margin-top: 25px;
    color: #ffffff;
    background: #0C063C;
  }
  aside.halfwidth .widget-wrapper .widget .ads .meta .btn:hover, aside.halfwidth .widget-wrapper .widget .ads .meta .btn:focus {
    background: #ffffff;
    color: #0C063C;
  }
  aside.halfwidth .widget-wrapper .widget.featured-image img {
    max-height: 550px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  aside.halfwidth .widget-wrapper .widget .usefull-links {
    width: 100%;
    object-fit: cover;
    min-height: 190px;
    display: flex;
    flex-flow: column;
    background: #EFEFEF 0% 0% no-repeat padding-box;
    border-radius: 24px;
    opacity: 1;
    padding: 25px 25px;
  }
  aside.halfwidth .widget-wrapper .widget .usefull-links .title {
    margin-bottom: 20px;
  }
  aside.halfwidth .widget-wrapper .widget .usefull-links .items {
    padding-top: 20px;
  }
  aside.halfwidth .widget-wrapper .widget .usefull-links .items a {
    text-decoration: underline;
  }
}
.faq {
  width: 100%;
}
.faq .accordion {
  width: 100%;
}
.faq .accordion .accordion-header {
  width: 100%;
  background: #0C063C;
  border-radius: 25px 25px 0 0;
  padding: 12px 20px;
  margin-bottom: 5px;
}
.faq .accordion .accordion-header h2 {
  font-weight: bold;
  font-size: 25px;
  line-height: 30px;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: none;
}
.faq .accordion .card {
  margin-bottom: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.faq .accordion .card .card-header {
  position: relative;
  background-color: #ffffff;
  padding: 15px 20px;
}
.faq .accordion .card .card-header h2 {
  margin: 0;
}
.faq .accordion .card .card-header a {
  display: block;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  width: 100%;
  position: relative;
  z-index: 1;
}
.faq .accordion .card .card-header:before {
  position: absolute;
  content: "\f0d7";
  right: 20px;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  color: #0C063C;
  font-size: 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
}
.faq .accordion .card .collapse .card-body {
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  padding: 15px 20px;
}
.faq.use_for_post {
  padding: 0;
}
.faq.use_for_post .container {
  padding: 0;
}
.faq.use_for_post .container .col-12 {
  padding: 0;
}

@media only screen and (min-width: 992px) {
  .faq .accordion .accordion-header {
    padding: 22px 20px;
  }
  .faq .accordion .accordion-header h2 {
    font-size: 17px;
    line-height: 21px;
  }
  .faq .accordion .card .card-header a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 900;
  }
  .faq .accordion .card .collapse .card-body {
    font-size: 16px;
    line-height: 20px;
    padding: 15px 20px;
  }
}
@media only screen and (min-width: 1700px) {
  .faq .accordion .accordion-header {
    padding: 17px 20px;
    margin-bottom: 10px;
  }
  .faq .accordion .accordion-header h2 {
    font-size: 25px;
    line-height: 30px;
  }
  .faq .accordion .card .card-header {
    height: unset;
  }
  .faq .accordion .card .card-header a {
    font-size: 16px;
    line-height: 20px;
  }
  .faq .accordion .card .card-header:before {
    font-size: 30px;
  }
  .faq .accordion .card .collapse .card-body {
    font-size: 16px;
    line-height: 26px;
    padding: 25px;
  }
}

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