/* FONTS
   ========================================================================== */
@font-face {
  font-family: "CenturyOldStyleStd";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/CenturyOldStyleStd-Bold.woff") format("woff"), url("../fonts/CenturyOldStyleStd-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "CenturyOldStyleStd";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/CenturyOldStyleStd-Italic.woff") format("woff"), url("../fonts/CenturyOldStyleStd-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "CenturyOldStyleStd";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/CenturyOldStyleStd-Regular.woff") format("woff"), url("../fonts/CenturyOldStyleStd-Regular.woff2") format("woff2");
}
/* MAIN  FILES
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  height: auto;
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  background-color: #f7f7f7;
}
body ::-moz-selection {
  background: #162656;
  color: #ffffff;
}
body ::selection {
  background: #162656;
  color: #ffffff;
}

#wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

mark {
  background: none;
}

/* ==========================================================================
   FORMS & TABLE & NAVIGATION
   ========================================================================== */
input,
textarea,
select {
  outline: 0 none;
  padding: 0 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
textarea {
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  height: 40px;
  padding: 0 5px 0 10px;
  width: 100%;
}
input[type=text]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #4c4c4c;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  opacity: 1;
}
input[type=text]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #4c4c4c;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #4c4c4c;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  opacity: 1;
}
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: #162656;
}

textarea {
  resize: none;
  height: 100px;
  padding: 10px;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input.pending {
  background-image: url(../img/loading-dark.svg);
  background-position: calc(100% - 15px) center;
  background-repeat: no-repeat;
  background-size: auto 40%;
}

input[type=search],
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}

input[type=checkbox] {
  opacity: 0;
}
input[type=checkbox]:checked + span:before {
  opacity: 1;
}
input[type=checkbox] + span {
  position: relative;
  margin-left: 10px;
}
input[type=checkbox] + span:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: -25px;
  top: 0;
  background: #fff;
  border: 1px solid #c4c4c4;
  z-index: 2;
  border-radius: 2.5px;
}
input[type=checkbox] + span:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: -22px;
  top: 3px;
  background: #162656;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 3;
  border-radius: 2.5px;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "CenturyOldStyleStd", sans-serif;
}

h1 {
  font-size: 50px;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 40px;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 36px;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  h3 {
    font-size: 26px;
  }
}

h4 {
  font-size: 24px;
}
@media (max-width: 768px) {
  h4 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  h4 {
    font-size: 20px;
  }
}

p {
  padding-bottom: 20px;
  line-height: 1.5;
  font-size: 16px;
}

a {
  color: #162656;
  outline: 0;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  outline: 0;
  text-decoration: underline;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

strong,
b {
  font-weight: 700;
}

i {
  font-style: normal;
}

@media screen and (min-width: 1140px) {
  ::-webkit-scrollbar {
    width: 7px;
  }
  ::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #cccccc;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #162656;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(16.8055555556, 29.0277777778, 65.6944444444);
  }
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.flex.h_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.flex.v-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.flex.vh-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

[class*=col-] {
  width: 100%;
}

.col-1 {
  -webkit-flex-basis: 5.5833333333%;
  -moz-flex-basis: 5.5833333333%;
  -ms-flex-basis: 5.5833333333%;
  flex-basis: 5.5833333333%;
}

.col-2 {
  -webkit-flex-basis: 14.1666666667%;
  -moz-flex-basis: 14.1666666667%;
  -ms-flex-basis: 14.1666666667%;
  flex-basis: 14.1666666667%;
}

.col-3 {
  -webkit-flex-basis: 22.75%;
  -moz-flex-basis: 22.75%;
  -ms-flex-basis: 22.75%;
  flex-basis: 22.75%;
}

.col-4 {
  -webkit-flex-basis: 31.3333333333%;
  -moz-flex-basis: 31.3333333333%;
  -ms-flex-basis: 31.3333333333%;
  flex-basis: 31.3333333333%;
}

.col-5 {
  -webkit-flex-basis: 39.9166666667%;
  -moz-flex-basis: 39.9166666667%;
  -ms-flex-basis: 39.9166666667%;
  flex-basis: 39.9166666667%;
}

.col-6 {
  -webkit-flex-basis: 48.5%;
  -moz-flex-basis: 48.5%;
  -ms-flex-basis: 48.5%;
  flex-basis: 48.5%;
}

.col-7 {
  -webkit-flex-basis: 57.0833333333%;
  -moz-flex-basis: 57.0833333333%;
  -ms-flex-basis: 57.0833333333%;
  flex-basis: 57.0833333333%;
}

.col-8 {
  -webkit-flex-basis: 65.6666666667%;
  -moz-flex-basis: 65.6666666667%;
  -ms-flex-basis: 65.6666666667%;
  flex-basis: 65.6666666667%;
}

.col-9 {
  -webkit-flex-basis: 74.25%;
  -moz-flex-basis: 74.25%;
  -ms-flex-basis: 74.25%;
  flex-basis: 74.25%;
}

.col-10 {
  -webkit-flex-basis: 82.8333333333%;
  -moz-flex-basis: 82.8333333333%;
  -ms-flex-basis: 82.8333333333%;
  flex-basis: 82.8333333333%;
}

.col-11 {
  -webkit-flex-basis: 91.4166666667%;
  -moz-flex-basis: 91.4166666667%;
  -ms-flex-basis: 91.4166666667%;
  flex-basis: 91.4166666667%;
}

.col-12 {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-basis: 100%;
  flex-basis: 100%;
}

.col-50 {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
}

@media (max-width: 960px) {
  .md-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .md-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .md-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .md-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .md-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .md-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .md-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .md-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .md-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .md-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .md-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .md-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .md-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .sm-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .sm-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .sm-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .sm-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .sm-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .sm-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .sm-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .sm-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .sm-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .sm-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .sm-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .sm-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .sm-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .xs-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .xs-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .xs-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .xs-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .xs-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .xs-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .xs-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .xs-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .xs-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .xs-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .xs-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .xs-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .xs-bottom {
    margin-bottom: 15px;
  }
}
/* ==========================================================================
   HELPERS
   ========================================================================== */
.wrap {
  margin: 0 auto;
  width: 1140px;
  max-width: 94%;
  position: relative;
}

.row1540 {
  margin: 0 auto;
  width: 1540px;
  max-width: 96%;
  position: relative;
}

.row1320 {
  margin: 0 auto;
  width: 1320px;
  max-width: 96%;
  position: relative;
}

.row1200 {
  margin: 0 auto;
  width: 1200px;
  max-width: 96%;
  position: relative;
}

.row1130 {
  margin: 0 auto;
  width: 1130px;
  max-width: 96%;
  position: relative;
}

#content {
  padding: 40px 0;
}
@media (max-width: 1140px) {
  #content {
    padding: 20px 0;
  }
}

#wrap {
  position: relative;
  width: 100%;
  min-height: 100%;
  max-width: 1980px;
  margin: 0 auto;
  overflow-x: clip;
}

.c {
  font-size: 0;
  line-height: 0;
  display: block;
  clear: both;
  overflow: hidden;
}

.cfx:after, .cfx:before {
  display: table;
  clear: both;
  content: " ";
}

.bg-center {
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.underline {
  position: relative;
  display: inline-block;
}
.underline:after {
  display: block;
  width: 0;
  height: 1px;
  margin: auto;
  content: "";
  transition: width 0.5s ease, background-color 0.5s ease;
  background: transparent;
}
.underline:hover:after {
  width: 100%;
  background: #162656;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #0087ca;
}

.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0087ca;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  padding: 22px 40px;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  color: #ffffff;
  border: none;
  outline: 0;
  background: #162656;
  appearance: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn.pending {
  pointer-events: none;
  background-image: url(../img/loading-white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 40%;
  color: transparent;
}
.btn:hover {
  background: rgb(13.6888888889, 23.6444444444, 53.5111111111);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.btn:active {
  background: rgb(6.4166666667, 11.0833333333, 25.0833333333);
}

/* ==========================================================================
   WORDPRESS DEFAULT CLASSES
   ========================================================================== */
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.wp-caption {
  margin: 10px;
  padding-top: 4px;
  text-align: center;
  border: 1px solid #dddddd;
  border-radius: 3px;
  background-color: #f3f3f3;
}

.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* ==========================================================================
   WYSIWYG
   ========================================================================== */
.wys ul {
  padding-bottom: 20px;
}
.wys ul li {
  padding-left: 20px;
  padding-bottom: 20px;
  line-height: 1.5;
  font-size: 16px;
  position: relative;
}
.wys ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background-color: #333;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

/* ==========================================================================
   FULL FRAME
   ========================================================================== */
.fullframe {
  height: 0;
  margin: 0;
  overflow: hidden;
  padding-bottom: 56.5%;
  position: relative;
  z-index: 0;
}
.fullframe iframe,
.fullframe object,
.fullframe embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* ==========================================================================
   CONTACT FORM 7
   ========================================================================== */
.wpcf7 {
  width: 100%;
}
.wpcf7 .screen-reader-response {
  display: none;
}
.wpcf7 .wpcf7-form.invalid .wpcf7-response-output {
  display: block;
}
.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  display: block;
  background: #16a085;
}
.wpcf7 .wpcf7-not-valid-tip {
  font: 500 16px/1 "Montserrat", sans-serif;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #ff5f5f;
  background: #eeeeee;
}
.wpcf7 .wpcf7-response-output {
  display: none;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  padding: 15px 20px;
  cursor: pointer;
  text-align: center;
  color: white;
  background: #ff5f5f;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #1091ae;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #16a085;
}
.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block !important;
}

div.wpcf7 .wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-image: url(../img/ajax-loader.gif);
  width: 16px;
  height: 16px;
  border: none;
  margin: 0 0 0 4px;
  vertical-align: middle;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 50%;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

div.wpcf7 form.submitting .wpcf7-spinner {
  visibility: visible;
}

/* ==========================================================================
   SOCIAL LINK
   ========================================================================== */
.some .fa {
  display: inline-block;
  width: auto;
  cursor: pointer;
  text-align: center;
  font-size: 30px;
  text-decoration: none;
}

.s-link {
  font-size: 0;
  display: inline-block;
  width: auto;
  cursor: pointer;
  text-align: center;
}
.s-link a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 2px;
  color: #ffffff;
  border-radius: 50%;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.s-link a:before {
  font-size: 18px;
  color: #0080ff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.s-link a.fa-facebook:hover:before {
  color: #3b5993 !important;
}
.s-link a.fa-twitter:hover:before {
  color: #55acee !important;
}
.s-link a.fa-instagram:hover:before {
  color: #181818 !important;
}
.s-link a.fa-linkedin:hover:before {
  color: #0177b5 !important;
}
.s-link a.fa-youtube:hover:before {
  color: #f80000 !important;
}
.s-link a.fa-youtube-play:hover:before {
  color: #f80000 !important;
}
.s-link a.fa-pinterest:hover:before {
  color: #bd081c !important;
}
.s-link a.fa-vimeo:hover:before {
  color: #1bb7ea !important;
}
.s-link a.fa-yelp:hover:before {
  color: #d32323 !important;
}
.s-link a.fa-google-plus:hover:before {
  color: #dd4c39 !important;
}

/* ==========================================================================
   index-style
   ========================================================================== */
.index-style .post-item {
  margin-bottom: 20px;
}
.index-style .post-title {
  font-size: 18px;
  display: block;
  padding-bottom: 15px;
}
.index-style .post-title:hover {
  color: #0080ff;
}
.index-style .post-thumbnail {
  min-height: 160px;
  will-change: opacity;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.index-style .post-thumbnail:hover {
  opacity: 0.9;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wp-pagenavi {
  font-size: 0;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid #cccccc;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 14px;
  margin: 0 3px;
  padding: 3px 5px;
}
.wp-pagenavi a {
  border: 1px solid #cccccc;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover {
  color: #ffffff;
  border-color: #162656;
  background: #162656;
}

#top {
  min-height: 500px;
}

.menu-burger {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  border-radius: 4px;
  display: block;
}
.menu-burger:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: 2px;
  background: #333;
  -webkit-box-shadow: 0 7px 0 0 #333, 0 -7px 0 0 #333;
  box-shadow: 0 7px 0 0 #333, 0 -7px 0 0 #333;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-burger:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: 2px;
  background: #333;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-burger.open:before {
  -webkit-transform: translate(-50%, -50%) rotateZ(-45deg);
  -moz-transform: translate(-50%, -50%) rotateZ(-45deg);
  -ms-transform: translate(-50%, -50%) rotateZ(-45deg);
  transform: translate(-50%, -50%) rotateZ(-45deg);
  box-shadow: none;
  background: #fff;
}
.menu-burger.open:after {
  -webkit-transform: translate(-50%, -50%) rotateZ(45deg);
  -moz-transform: translate(-50%, -50%) rotateZ(45deg);
  -ms-transform: translate(-50%, -50%) rotateZ(45deg);
  transform: translate(-50%, -50%) rotateZ(45deg);
  background: #fff;
}

.mobile-main-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 480px;
  height: 100vh;
  background: #162656;
  z-index: 100;
  padding: 50px 15px;
  overflow: visible;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  row-gap: 20px;
  box-shadow: -15px 0px 20px -20px rgba(1, 2, 24, 0.15);
}
@media (max-width: 768px) {
  .mobile-main-menu {
    width: 100%;
    max-width: 100%;
  }
}
.mobile-main-menu .desktop-hide {
  display: none;
}
@media (max-width: 600px) {
  .mobile-main-menu .desktop-hide {
    display: block;
  }
}
.mobile-main-menu .menu-btn-wrapper {
  padding: 10px;
}
.mobile-main-menu .menu-btn-wrapper .btn {
  font-size: 14px;
  margin-right: 10px;
}
.mobile-main-menu .menu-btn-wrapper .btn:last-child {
  margin-right: 0;
}
.mobile-main-menu li a {
  display: inline-block;
  padding: 5px 15px;
  color: #fff;
}
.mobile-main-menu li a:hover {
  text-decoration: none;
}
.mobile-main-menu .sub-menu {
  display: none;
  padding-left: 20px;
}
.mobile-main-menu span {
  display: inline-block;
  padding: 5px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-main-menu .arrow {
  display: inline-block;
  height: 18px;
  width: 18px;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-main-menu .arrow path {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-main-menu .arrow.active {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.mobile-main-menu.open {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-main-menu.open .close-menu {
  opacity: 1;
  z-index: 100;
}
.mobile-main-menu .close-menu {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  border-radius: 4px;
  display: block;
  top: 5px;
  left: -40px;
  opacity: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .mobile-main-menu .close-menu {
    left: auto;
    right: 10px;
  }
}
.mobile-main-menu .close-menu:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: 2px;
  background: #162656;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate(-50%, -50%) rotateZ(-45deg);
  -moz-transform: translate(-50%, -50%) rotateZ(-45deg);
  -ms-transform: translate(-50%, -50%) rotateZ(-45deg);
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
@media (max-width: 768px) {
  .mobile-main-menu .close-menu:before {
    background: #162656;
  }
}
.mobile-main-menu .close-menu:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: 2px;
  background: #162656;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate(-50%, -50%) rotateZ(45deg);
  -moz-transform: translate(-50%, -50%) rotateZ(45deg);
  -ms-transform: translate(-50%, -50%) rotateZ(45deg);
  transform: translate(-50%, -50%) rotateZ(45deg);
}
@media (max-width: 768px) {
  .mobile-main-menu .close-menu:after {
    background: #162656;
  }
}

.mobile_menu_active {
  overflow: hidden;
}

.desctop_hide {
  display: none;
}

@media (max-width: 1140px) {
  .mobile_hide {
    display: none;
  }
  .desctop_hide {
    display: block;
  }
}
.alignleft {
  float: left;
  margin: 0 30px 10px 0;
}

.alignright {
  float: right;
  margin: 0 0 10px 30px;
}

.aligncenter {
  margin: 0 auto 20px;
}

.alignnone {
  margin: 0 0 20px;
}

.block-center {
  text-align: center;
  position: relative;
}

@media (max-width: 1024px) {
  .alignleft,
  .aligncenter,
  .alignright {
    float: none;
    margin: 0 auto 20px;
  }
  .alignnone {
    margin: 0 0 20px;
  }
}
/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  position: relative;
  z-index: 1000;
  padding: 35px 0;
}
@media (max-width: 1280px) {
  header {
    padding: 20px 0;
  }
}
@media (max-width: 1024px) {
  header {
    padding: 10px 0;
  }
}
header #logo {
  opacity: 1;
  color: #181818;
}
header #logo img,
header #logo svg {
  max-width: 100%;
}
header #logo:hover {
  opacity: 0.8;
}
header .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-basis: 220px;
  -moz-flex-basis: 220px;
  -ms-flex-basis: 220px;
  flex-basis: 220px;
  max-width: 220px;
  grid-gap: 20px;
}
@media (max-width: 576px) {
  header .right {
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
    max-width: auto;
  }
}
header .right .search-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
}
@media (max-width: 576px) {
  header .right .search-box {
    display: none;
  }
}
header .right .search-box .search-form {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
  width: 0;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}
header .right .search-box .search-form.active {
  opacity: 1;
  z-index: 10;
  width: 220px;
}
@media (max-width: 768px) {
  header .right .search-box .search-form.active {
    width: 160px;
  }
}
header .right .search-box .search-form input {
  padding: 0 50px 0 10px;
  height: 40px;
  border: none;
  border-bottom: 1px solid #162656;
}
header .right .search-box .search-icon {
  position: relative;
  z-index: 11;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .right .search-box .search-icon.close svg,
header .right .search-box .search-icon.close img {
  opacity: 0;
}
header .right .search-box .search-icon.close:after, header .right .search-box .search-icon.close:before {
  opacity: 1;
}
header .right .search-box .search-icon.close:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .right .search-box .search-icon.close:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .right .search-box .search-icon svg {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .right .search-box .search-icon svg path {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .right .search-box .search-icon svg:hover path {
  fill: #162656;
}
header .right .search-box .search-icon:after, header .right .search-box .search-icon:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  content: "";
  left: 2px;
  width: 18px;
  height: 2px;
  background-color: #333333;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

/* ==========================================================================
   Main Navigation
   ========================================================================== */
.main_nav {
  font-size: 0;
}
.main_nav * {
  line-height: 1;
}
.main_nav a {
  display: block;
}
.main_nav a:hover {
  text-decoration: none;
}
.main_nav .level_a {
  position: relative;
}
.main_nav .level_a li {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.main_nav .level_a > li > a {
  font-size: 18px;
  padding: 5px 20px;
  color: rgba(51, 51, 51, 0.7);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media (max-width: 1480px) {
  .main_nav .level_a > li > a {
    font-size: 16px;
  }
}
@media (max-width: 1180px) {
  .main_nav .level_a > li > a {
    font-size: 14px;
  }
}
.main_nav .level_a > li.current-menu-item > a, .main_nav .level_a > li:hover > a {
  color: #162656;
}
.main_nav .level_a > li.menu-item-has-children:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  content: "";
}
.main_nav .level_a > li.menu-item-has-children:hover > .sub-menu {
  display: block;
}
.main_nav .level_a > li > .sub-menu {
  position: absolute;
  z-index: 100;
  display: none;
  width: 220px;
  margin-top: 27px;
  padding: 10px 0;
  border-top: 3px solid rgb(32.3888888889, 55.9444444444, 126.6111111111);
  border-bottom: 3px solid rgb(32.3888888889, 55.9444444444, 126.6111111111);
  background: #162656;
}
.main_nav .level_a > li > .sub-menu .sub-menu {
  display: block;
  padding-left: 10px;
}
.main_nav .level_a > li > .sub-menu li {
  display: block;
  list-style-type: none;
}
.main_nav .level_a > li > .sub-menu a {
  font-size: 13px;
  line-height: 1.3;
  padding: 3px 15px;
  color: #ffffff;
}
.main_nav .level_a > li > .sub-menu a:hover {
  text-decoration: none;
  background: rgb(42.7777777778, 73.8888888889, 167.2222222222);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #162656;
  color: #ffffff;
}
footer .top-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  border-bottom: 1px solid #646464;
  padding: 90px 0 60px;
}
@media (max-width: 1024px) {
  footer .top-footer {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  footer .top-footer {
    padding: 40px 0 20px;
  }
}
footer .top-footer--logo {
  -webkit-flex-basis: 200px;
  -moz-flex-basis: 200px;
  -ms-flex-basis: 200px;
  flex-basis: 200px;
  max-width: 200px;
}
@media (max-width: 576px) {
  footer .top-footer--logo {
    margin: 0 auto 20px;
  }
}
footer .top-footer--logo a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .top-footer--logo a img,
footer .top-footer--logo a svg {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
footer .top-footer--logo a:hover {
  opacity: 0.8;
}
@media (max-width: 576px) {
  footer .top-footer--menu {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
footer .top-footer--menu ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
}
@media (max-width: 576px) {
  footer .top-footer--menu ul {
    justify-content: center;
  }
}
footer .top-footer--menu ul li {
  text-align: right;
}
@media (max-width: 576px) {
  footer .top-footer--menu ul li {
    text-align: center;
  }
}
footer .top-footer--menu ul li a {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 12px;
  position: relative;
  text-decoration: none;
}
footer .top-footer--menu ul li a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #f7f7f7;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .top-footer--menu ul li a:hover:after {
  width: 100%;
}
footer .bottom-footer {
  padding: 44px 0 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 15px;
}
@media (max-width: 1024px) {
  footer .bottom-footer {
    padding: 40px 0 60px;
  }
}
@media (max-width: 768px) {
  footer .bottom-footer {
    padding: 20px 0;
  }
}
@media (max-width: 576px) {
  footer .bottom-footer {
    grid-template-columns: repeat(1, auto);
  }
}
footer .bottom-footer--links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  grid-gap: 15px;
}
@media (max-width: 576px) {
  footer .bottom-footer--links {
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
footer .bottom-footer--links a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 15px;
  text-decoration: none;
  color: #f7f7f7;
  position: relative;
}
footer .bottom-footer--links a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f7f7f7;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .bottom-footer--links a:hover:after {
  width: 0;
}
@media (max-width: 576px) {
  footer .bottom-footer--copyright {
    text-align: center;
  }
}
footer .bottom-footer--copyright span {
  color: #97999b;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.articles-top__section {
  background-color: #efefef;
  padding: 50px 0;
}
.articles-top__wrapper .search-box .fields-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  grid-gap: 20px;
}
@media (max-width: 576px) {
  .articles-top__wrapper .search-box .fields-wrapper {
    grid-template-columns: repeat(1, auto);
  }
}
.articles-top__wrapper .search-box .fields-wrapper label input {
  height: 100%;
  box-shadow: 0px 2px 25px rgba(1, 2, 24, 0.15);
  border: none;
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 500;
  color: #8b8c8c;
}
.articles-top__wrapper .search-box .fields-wrapper label input::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #8b8c8c;
}
.articles-top__wrapper .search-box .fields-wrapper .submit-button .btn {
  width: 100%;
}

.archive-article-filter--pending .article-card {
  opacity: 0.8;
}

.load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.articles-cards__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 40px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow-x: clip;
  position: relative;
}
.articles-cards__wrapper.filter-active {
  grid-gap: 80px;
}
@media (max-width: 1024px) {
  .articles-cards__wrapper.filter-active {
    grid-gap: 40px;
  }
}
.articles-cards__wrapper.filter-active > .left {
  -webkit-flex-basis: 373px;
  -moz-flex-basis: 373px;
  -ms-flex-basis: 373px;
  flex-basis: 373px;
  max-width: 373px;
}
@media (max-width: 1024px) {
  .articles-cards__wrapper.filter-active > .left {
    -webkit-flex-basis: 300px;
    -moz-flex-basis: 300px;
    -ms-flex-basis: 300px;
    flex-basis: 300px;
    max-width: 300px;
  }
}
@media (max-width: 850px) {
  .articles-cards__wrapper.filter-active > .left {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    box-shadow: 15px 0px 15px -15px rgba(1, 2, 24, 0.15);
  }
}
.articles-cards__wrapper.filter-active > .left .title h4 {
  opacity: 1;
}
.articles-cards__wrapper.filter-active > .left .title .chevron-icon {
  position: relative;
  right: 0;
  transform: rotate(0);
}
.articles-cards__wrapper.filter-active > .left .filters {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.articles-cards__wrapper > div {
  padding: 25px 0 50px;
}
.articles-cards__wrapper > div .title h4 {
  font-size: 20px;
  font-style: italic;
  color: #162656;
}
.articles-cards__wrapper > div.left {
  box-shadow: 15px 0px 15px -15px rgba(1, 2, 24, 0.15);
  -webkit-flex-basis: 0%;
  -moz-flex-basis: 0%;
  -ms-flex-basis: 0%;
  flex-basis: 0%;
  max-width: 0%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  background-color: #f7f7f7;
  top: 0;
  min-height: 100vh;
}
@media (max-width: 850px) {
  .articles-cards__wrapper > div.left {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-flex-basis: 300px;
    -moz-flex-basis: 300px;
    -ms-flex-basis: 300px;
    flex-basis: 300px;
    max-width: 300px;
    width: 300px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    box-shadow: none;
    z-index: 100;
    height: 100%;
  }
}
.articles-cards__wrapper > div.left .articles-cards__filter {
  top: 20px;
  left: 0;
  position: sticky;
}
.articles-cards__wrapper > div.left .title {
  border-bottom: 1px solid #dcdcdc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  padding-bottom: 20px;
}
.articles-cards__wrapper > div.left .title h4 {
  font-size: 20px;
  font-style: italic;
  color: #162656;
  margin-bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.articles-cards__wrapper > div.left .title .chevron-icon {
  position: absolute;
  margin-right: 20px;
  cursor: pointer;
  right: -50px;
  transform: rotate(180deg);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(22, 38, 86, 0.06);
  padding-right: 3px;
}
.articles-cards__wrapper > div.left .title .chevron-icon:hover {
  background-color: rgba(22, 38, 86, 0.12);
}
@media (max-width: 850px) {
  .articles-cards__wrapper > div.left .title .chevron-icon {
    right: -43px;
    width: 25px;
    height: 25px;
  }
  .articles-cards__wrapper > div.left .title .chevron-icon img {
    max-width: 35%;
  }
}
.articles-cards__wrapper > div.left .filters {
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  max-height: 100vh;
}
.articles-cards__wrapper > div.left .filters .filter-type {
  padding: 20px 30px 20px 0;
  border-bottom: 1px solid #8b8c8c;
}
.articles-cards__wrapper > div.left .filters .filter-type:last-child {
  border-bottom: none;
}
.articles-cards__wrapper > div.left .filters .filter-type .name {
  font-size: 12px;
  color: #8b8c8c;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.articles-cards__wrapper > div.left .filters .filter-type .name.active {
  margin-bottom: 15px;
}
.articles-cards__wrapper > div.left .filters .filter-type .name.active i {
  transform: rotate(180deg);
}
.articles-cards__wrapper > div.left .filters .filter-type .name i {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #8b8c8c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.articles-cards__wrapper > div.left .filters .filter-type .fields input[type=text],
.articles-cards__wrapper > div.left .filters .filter-type .fields input[type=number],
.articles-cards__wrapper > div.left .filters .filter-type .fields input[type=email],
.articles-cards__wrapper > div.left .filters .filter-type .fields input[type=phone] {
  border: 1px solid #efefef;
  font-size: 16px;
  font-weight: 500;
  color: #8b8c8c;
  margin: 10px 0;
}
.articles-cards__wrapper > div.left .filters .filter-type .fields input[type=text]::placeholder,
.articles-cards__wrapper > div.left .filters .filter-type .fields input[type=number]::placeholder,
.articles-cards__wrapper > div.left .filters .filter-type .fields input[type=email]::placeholder,
.articles-cards__wrapper > div.left .filters .filter-type .fields input[type=phone]::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #8b8c8c;
}
.articles-cards__wrapper > div.left .filters .filter-type .fields.date-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  grid-gap: 20px;
}
.articles-cards__wrapper > div.left .filters .filter-type .fields.choise {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 15px;
}
.articles-cards__wrapper > div.left .filters .filter-type .fields.choise label {
  cursor: pointer;
}
.articles-cards__wrapper > div.left .filters .filter-type .fields.choise label span {
  color: #162656;
  font-size: 14px;
}
.articles-cards__wrapper > div.left .filters .filter-type .filter-block__box {
  display: none;
}
.articles-cards__wrapper > div.right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 850px) {
  .articles-cards__wrapper > div.right {
    padding: 25px 30px 50px;
  }
}
.articles-cards__wrapper > div.right .filters-choises {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  grid-gap: 15px;
  margin: 30px 0;
}
@media (max-width: 576px) {
  .articles-cards__wrapper > div.right .filters-choises {
    grid-template-columns: repeat(1, 1fr);
  }
}
.articles-cards__wrapper > div.right .filters-choises .choises {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  grid-gap: 15px;
}
.articles-cards__wrapper > div.right .filters-choises .choises span {
  font-size: 13px;
  background-color: #dcdcdc;
  color: #585858;
  padding: 8px;
  display: inline-flex;
  align-items: center;
}
.articles-cards__wrapper > div.right .filters-choises .clear span {
  font-size: 13px;
  color: #585858;
  display: inline-flex;
  align-items: center;
}
.articles-cards__wrapper > div.right .filters-choises .clear span i {
  margin-left: 10px;
}
.articles-cards__wrapper > div.right .cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
}
.articles-cards__wrapper > div.right .cards .article-card {
  background-color: #fff;
  padding: 25px 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  grid-gap: 25px;
}
.articles-cards__wrapper > div.right .cards .article-card--thumbnail {
  -webkit-flex-basis: 170px;
  -moz-flex-basis: 170px;
  -ms-flex-basis: 170px;
  flex-basis: 170px;
  max-width: 170px;
}
@media (max-width: 1024px) {
  .articles-cards__wrapper > div.right .cards .article-card--thumbnail {
    -webkit-flex-basis: 140px;
    -moz-flex-basis: 140px;
    -ms-flex-basis: 140px;
    flex-basis: 140px;
    max-width: 140px;
  }
}
.articles-cards__wrapper > div.right .cards .article-card--thumbnail img {
  max-width: 100%;
}
.articles-cards__wrapper > div.right .cards .article-card--info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 576px) {
  .articles-cards__wrapper > div.right .cards .article-card--info {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
.articles-cards__wrapper > div.right .cards .article-card--info .title a {
  text-decoration: none;
}
.articles-cards__wrapper > div.right .cards .article-card--info p {
  font-size: 15px;
  color: #717372;
}
.articles-cards__wrapper > div.right .cards .article-card--info .learn-more {
  text-align: right;
}
.articles-cards__wrapper > div.right .cards .article-card--info .learn-more a {
  color: #162656;
  font-family: "CenturyOldStyleStd", sans-serif;
  font-style: italic;
}
.articles-cards__wrapper > div.right .cards .article-card--bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  grid-gap: 10px;
}
.articles-cards__wrapper > div.right .cards .article-card--bottom .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  grid-gap: 20px;
}
.articles-cards__wrapper > div.right .cards .article-card--bottom .left > div span {
  font-size: 15px;
  color: #717372;
  position: relative;
}
.articles-cards__wrapper > div.right .cards .article-card--bottom .left > div span:after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  background-color: #717372;
  width: 1px;
  height: 100%;
}
.articles-cards__wrapper > div.right .cards .article-card--bottom .left > div:last-child span:after {
  display: none;
}

.remove-icon {
  background-color: transparent;
  outline: none;
  border: none;
  height: auto;
  position: relative;
  width: 12px;
  height: 12px;
  cursor: pointer;
  display: inline-block;
  margin-right: 7px;
}
.remove-icon:after, .remove-icon:before {
  position: absolute;
  left: 5px;
  top: -1px;
  content: " ";
  height: 100%;
  width: 1px;
  background-color: #333;
}
.remove-icon:before {
  transform: rotate(45deg);
}
.remove-icon:after {
  transform: rotate(-45deg);
}

.top-page__section {
  margin: 50px 0;
  padding: 0;
}
@media (max-width: 768px) {
  .top-page__section {
    margin: 30px 0;
  }
}
.top-page__section.colored {
  background-color: #efefef;
  padding: 50px 0;
  margin: 0;
}
@media (max-width: 768px) {
  .top-page__section.colored {
    padding: 30px 0;
  }
}
.top-page__wrapper {
  text-align: center;
}
.top-page__wrapper .page-title {
  margin-bottom: 0;
}

.default-page__content {
  margin: 70px 0 90px;
}
@media (max-width: 1024px) {
  .default-page__content {
    margin: 60px 0 80px;
  }
}
@media (max-width: 768px) {
  .default-page__content {
    margin: 60px 0;
  }
}
@media (max-width: 576px) {
  .default-page__content {
    margin: 40px 0;
  }
}
.default-page__wrapper .wys {
  max-width: 900px;
  margin: 0 auto;
}

.what-we-do__section {
  margin: 140px 0;
}
@media (max-width: 1024px) {
  .what-we-do__section {
    margin: 60px 0;
  }
}
@media (max-width: 768px) {
  .what-we-do__section {
    margin: 40px 0;
  }
}
.what-we-do__wrapper {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 15%, rgb(255, 255, 255) 15%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  grid-gap: 30px;
  padding: 50px 0 30px;
}
@media (max-width: 1024px) {
  .what-we-do__wrapper {
    background-color: #fff;
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .what-we-do__wrapper {
    padding: 15px;
  }
}
.what-we-do__wrapper .left {
  -webkit-flex-basis: 49.5%;
  -moz-flex-basis: 49.5%;
  -ms-flex-basis: 49.5%;
  flex-basis: 49.5%;
  max-width: 49.5%;
}
@media (max-width: 768px) {
  .what-we-do__wrapper .left {
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media (max-width: 576px) {
  .what-we-do__wrapper .left {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
.what-we-do__wrapper .left .image {
  aspect-ratio: 1;
  position: relative;
}
.what-we-do__wrapper .left .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: -100px;
}
@media (max-width: 1024px) {
  .what-we-do__wrapper .left .image img {
    margin: 0;
  }
}
.what-we-do__wrapper .right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 50px;
}
@media (max-width: 1024px) {
  .what-we-do__wrapper .right {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }
}

.who-we-are__section {
  margin: 120px 0;
}
@media (max-width: 1024px) {
  .who-we-are__section {
    margin: 80px 0;
  }
}
@media (max-width: 768px) {
  .who-we-are__section {
    margin: 60px 0;
  }
}
@media (max-width: 576px) {
  .who-we-are__section {
    margin: 40px 0;
  }
}
.who-we-are__title {
  text-align: center;
}
.who-we-are__title h3 {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.who-we-are__title h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 200px;
  background: linear-gradient(to right, rgba(22, 38, 86, 0) 0%, rgb(22, 38, 86) 50%, rgba(22, 38, 86, 0) 100%);
}
.who-we-are__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 90px;
}
@media (max-width: 1200px) {
  .who-we-are__wrapper {
    grid-gap: 50px;
  }
}
@media (max-width: 768px) {
  .who-we-are__wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
  }
}
@media (max-width: 576px) {
  .who-we-are__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.who-we-are__wrapper .card {
  border-bottom: 1px solid #bbbbbb;
  padding: 20px;
}
.who-we-are__wrapper .card--name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2.6px;
  display: block;
  margin-bottom: 10px;
}
.who-we-are__wrapper .card--position {
  font-size: 14px;
  letter-spacing: 2.7px;
  color: #585858;
  text-transform: uppercase;
}

.contact-content__section {
  margin: 100px 0 80px;
}
@media (max-width: 1024px) {
  .contact-content__section {
    margin: 60px 0;
  }
}
@media (max-width: 576px) {
  .contact-content__section {
    margin: 40px 0;
  }
}
.contact-content__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  grid-gap: 100px;
}
@media (max-width: 1024px) {
  .contact-content__wrapper {
    grid-gap: 40px;
  }
}
.contact-content__wrapper .left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 100px;
}
@media (max-width: 1024px) {
  .contact-content__wrapper .left {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding-top: 0;
  }
}
.contact-content__wrapper .right {
  -webkit-flex-basis: 630px;
  -moz-flex-basis: 630px;
  -ms-flex-basis: 630px;
  flex-basis: 630px;
  max-width: 630px;
  padding: 70px 60px;
  background-color: #efefef;
}
@media (max-width: 1024px) {
  .contact-content__wrapper .right {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .contact-content__wrapper .right {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding: 30px;
  }
}
.contact-content__wrapper .right .form form {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}
.contact-content__wrapper .right .form form label span {
  font-size: 20px;
  color: #585858;
  font-family: "CenturyOldStyleStd", sans-serif;
  display: inline-block;
  margin-bottom: 3px;
}
.contact-content__wrapper .right .form form label input {
  height: 65px;
}
@media (max-width: 768px) {
  .contact-content__wrapper .right .form form label input {
    height: 40px;
  }
}
.contact-content__wrapper .right .form form label textarea {
  min-height: 155px;
}
.contact-content__wrapper .right .form form label input,
.contact-content__wrapper .right .form form label textarea {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
}
.contact-content__wrapper .right .form form label .selectric {
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 5px;
}
.contact-content__wrapper .right .form form label .selectric .button {
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .contact-content__wrapper .right .form form label .selectric {
    height: 40px;
  }
}
.contact-content__wrapper .right .form form .submit-wrapper {
  position: relative;
  text-align: right;
}

.hp-main__section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 90px 0 180px;
  min-height: 600px;
}
.hp-main__section .icon-bg {
  position: absolute;
  top: -50px;
  right: 10%;
  z-index: -1;
}
@media (max-width: 1450px) {
  .hp-main__section .icon-bg {
    right: 0;
  }
}
.hp-main__wrapper .search-box {
  max-width: 650px;
  margin: 0 auto;
}
.hp-main__wrapper .search-box form .fields-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.29fr;
  align-items: stretch;
  grid-gap: 5px;
}
@media (max-width: 576px) {
  .hp-main__wrapper .search-box form .fields-wrapper {
    grid-template-columns: repeat(1, auto);
  }
}
.hp-main__wrapper .search-box form .fields-wrapper label input {
  height: 100%;
  box-shadow: 0px 2px 25px rgba(1, 2, 24, 0.15);
  border: none;
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 500;
  color: #8b8c8c;
}
.hp-main__wrapper .search-box form .fields-wrapper label input::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #8b8c8c;
}
.hp-main__wrapper .search-box form .fields-wrapper .submit-button .btn {
  width: 100%;
}
.hp-main__wrapper .advanced-search-wrapper {
  text-align: center;
  margin-top: 24px;
}

.single-articles .top-page__wrapper {
  text-align: left;
}
.single-articles .top-page__wrapper .back {
  margin-bottom: 50px;
}
.single-articles .top-page__wrapper .back a {
  font-size: 16px;
  font-family: "CenturyOldStyleStd", sans-serif;
  font-style: italic;
  color: #162656;
  display: inline-flex;
  align-items: center;
}
.single-articles .top-page__wrapper .back a img {
  margin-right: 10px;
}
.single-articles .top-page__wrapper .page-title {
  margin-bottom: 20px;
}
.single-articles .top-page__wrapper .citation span {
  font-family: "CenturyOldStyleStd", sans-serif;
  font-size: 24px;
  color: #585858;
}

.article-content__section {
  margin: 60px 0;
}
@media (max-width: 768px) {
  .article-content__section {
    margin: 40px 0;
  }
}
.article-content__wrapper {
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: flex-start;
  grid-gap: 70px;
}
@media (max-width: 850px) {
  .article-content__wrapper {
    grid-template-columns: repeat(1, auto);
  }
}
.article-content__wrapper main .content-title {
  overflow: hidden;
}
.article-content__wrapper main .content-title h4 {
  color: #162656;
  display: inline-block;
  position: relative;
}
.article-content__wrapper main .content-title h4:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  right: -15px;
  width: 5000px;
  height: 1px;
  background-color: #c3c3c3;
  opacity: 0.5;
}
.article-content__wrapper main .view-it {
  margin: 40px 0;
}
.article-content__wrapper main .view-it--text {
  background-color: #fff;
  padding: 16px;
  border: 1px solid #ededed;
  border-radius: 3px;
}
.article-content__wrapper main .view-it--text a {
  color: #2c85d4;
  font-family: 600;
}
.article-content__wrapper main .details--list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
}
.article-content__wrapper main .details--list .list-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-gap: 20px;
}
.article-content__wrapper main .details--list .list-item span {
  font-size: 15px;
  font-weight: 600;
  color: #585858;
}
.article-content__wrapper main .details--list .list-item span.name {
  font-weight: 600;
}
.article-content__wrapper main .details--list .list-item span.desc {
  font-weight: 400;
}
.article-content__wrapper aside {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}
.article-content__wrapper aside .aside-box {
  border: 1px solid #dcdcdc;
}
.article-content__wrapper aside .aside-box .title {
  padding: 20px 30px;
  border-bottom: 1px solid #dcdcdc;
}
.article-content__wrapper aside .aside-box .title h4 {
  font-size: 20px;
  font-style: italic;
  color: #162656;
  margin-bottom: 0;
}
.article-content__wrapper aside .aside-box .inner {
  padding: 35px;
}
.article-content__wrapper aside .aside-box .inner--item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  grid-gap: 15px;
  margin-bottom: 20px;
  text-decoration: none;
  cursor: pointer;
}
.article-content__wrapper aside .aside-box .inner--item:last-child {
  margin-bottom: 0;
}
.article-content__wrapper aside .aside-box .inner--item span {
  font-size: 20px;
  color: #585858;
  font-family: "CenturyOldStyleStd", sans-serif;
}
.article-content__wrapper aside .aside-box .inner--item.share, .article-content__wrapper aside .aside-box .inner--item.print {
  cursor: pointer;
}
.article-content__wrapper aside .aside-box .inner--item .share-icons {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-basis: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding-left: 20px;
  display: none;
}
.article-content__wrapper aside .aside-box .inner--item .share-icons a {
  font-size: 20px;
  color: #585858;
  display: grid;
  grid-template-columns: 15px 1fr;
  grid-gap: 10px;
  text-decoration: none;
  margin-bottom: 10px;
}
.article-content__wrapper aside .aside-box .inner--item .share-icons a:last-child {
  margin-bottom: 0;
}
.article-content__wrapper aside .aside-box .inner--item .share-icons a:hover {
  color: #162656;
}
.article-content__wrapper aside .aside-box .inner--tag a {
  color: #162656;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 600;
}

.filter-block__choices {
  max-height: 160px;
  overflow: auto;
}
.filter-block__choices--full .filter-block__choice:nth-child(n+5) {
  display: block;
}
.filter-block__choices--full .filter-block__search {
  display: block;
}
.filter-block__choices--full .filter-block__toggle--less {
  display: inline-block;
}
.filter-block__choices--full .filter-block__toggle--more {
  display: none;
}
.filter-block__search {
  display: none;
  width: 100%;
  height: 30px;
  margin-bottom: 16px;
}
.filter-block__actions {
  margin-top: 16px;
}
.filter-block__choice:nth-child(n+5) {
  display: none;
}
.filter-block__toggle {
  display: inline-block;
  font-size: 14px;
  text-decoration: underline;
}
.filter-block__toggle--less {
  display: none;
}
#citate_text {
  max-width: 700px;
}

/* Articles archive: saved filters + section activity
   ========================================================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.armsdb-filter-persist-banner {
  background: #f3f3f5;
  border: 1px solid #8b8c8c;
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.armsdb-filter-persist-banner[hidden] {
  display: none !important;
}
.armsdb-filter-persist-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 14px;
  width: 100%;
}
.armsdb-filter-persist-banner__title {
  align-self: center;
  color: #162656;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
.armsdb-filter-persist-banner__msg {
  width: 100%;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  text-align: center;
}
.armsdb-filter-persist-banner__clear {
  align-self: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 4px;
  border: 2px solid #162656;
  background: #fff;
  color: #162656;
  white-space: nowrap;
}
.armsdb-filter-persist-banner__clear:hover:not(:disabled) {
  background: #162656;
  color: #fff;
}
.armsdb-filter-persist-banner__clear:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.articles-cards__filter--active .armsdb-filters-active-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 50%;
  background: #0080ff;
  vertical-align: middle;
}

.armsdb-filters-active-dot {
  display: none;
}

.filter-type--has-selection > .name {
  position: relative;
  padding-left: 14px;
}
.filter-type--has-selection > .name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0080ff;
}

.filter-block__clear {
  display: inline-block;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: none;
  color: #0080ff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.filter-block__clear:hover {
  color: #162656;
}

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