@charset "UTF-8";
/* FONTS
   ========================================================================== */
/* 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: "Poppins", Helvetica, Arial, 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;
}
body ::-moz-selection {
  background: #053661;
  color: #ffffff;
}
body ::selection {
  background: #053661;
  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: none;
  border-bottom: 1px solid #053661;
  background: transparent;
  color: #053661;
  font-weight: 300;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 16px;
  height: 45px;
  padding: 0 5px 0 0;
  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: #053661;
  color: #ababab;
  font-family: "Poppins", Helvetica, Arial, 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: #053661;
  color: #ababab;
  font-family: "Poppins", Helvetica, Arial, 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: #053661;
  color: #ababab;
  font-family: "Poppins", Helvetica, Arial, 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: #053661;
}
textarea {
  resize: none;
  height: 100px;
  padding: 10px;
}
button[disabled], html input[disabled] {
  cursor: default;
}
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;
}
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;
}
h1 {
  font-size: 80px;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 46px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}
h2 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
h2 span {
  line-height: 1;
  display: inline-block;
  border-bottom: 1px solid #0E57F0;
}
h3 {
  font-size: 36px;
  font-weight: 500;
  color: #053661;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 26px;
  }
}
h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
p {
  padding-bottom: 20px;
  line-height: 1.5;
}
a {
  color: #053661;
  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: 1240px) {
  ::-webkit-scrollbar {
    width: 13px;
  }
  ::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #cccccc;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #053661;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #042949;
  }
}
.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, .main_nav .level_a > li > .sub-menu > li:nth-child(odd) {
  -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, .main_nav .level_a > li > .sub-menu > li:nth-child(even) {
  -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: 1024px) {
  .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: 1240px;
  max-width: 94%;
  position: relative;
}
.wrap1620 {
  margin: 0 auto;
  width: 1620px;
  max-width: 94%;
  position: relative;
}
#content {
  padding: 40px 0;
}
@media (max-width: 1240px) {
  #content {
    padding: 20px 0;
  }
}
#wrap {
  position: relative;
  width: 100%;
  min-height: 100%;
}
.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: #053661;
}
.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, .button {
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  text-transform: capitalize;
  color: #ffffff !important;
  border: none;
  outline: 0;
  background: #0E57F0 !important;
  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;
}
@media (max-width: 768px) {
  .btn, .button {
    font-size: 16px;
  }
}
.btn:hover, .button:hover {
  background: #0c49c9;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
}
.btn:active, .button:active {
  background: #0a3da8;
}
/* ==========================================================================
   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
   ========================================================================== */
.wysiwyg h1 {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
.wysiwyg p {
  font-size: 15px;
  line-height: 1.4;
  padding-bottom: 20px;
  word-break: break-word;
}
.wysiwyg ul {
  margin-left: 30px;
  padding-bottom: 20px;
}
.wysiwyg ul li {
  line-height: 1.4;
}
/* ==========================================================================
   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 "Poppins", Helvetica, Arial, sans-serif;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 45px;
  line-height: 45px;
  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 .ajax-loader {
  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 .ajax-loader {
  visibility: visible;
}
/* ==========================================================================
   SOCIAL LINK
   ========================================================================== */
.s-link {
  font-size: 0;
  display: inline-block;
  width: auto;
  cursor: pointer;
}
.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);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.s-link a:before {
  font-size: 20px;
  color: #ffffff;
  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%);
}
.s-link a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.s-link a.fa-facebook:hover {
  background: #3b5993;
}
.s-link a.fa-twitter:hover {
  background: #55acee;
}
.s-link a.fa-instagram:hover {
  background: #181818;
}
.s-link a.fa-linkedin:hover {
  background: #0177b5;
}
.s-link a.fa-youtube:hover {
  background: #f80000;
}
.s-link a.fa-pinterest:hover {
  background: #bd081c;
}
.s-link a.fa-vimeo:hover {
  background: #1bb7ea;
}
.s-link a.fa-yelp:hover {
  background: #d32323;
}
.s-link a.fa-google-plus:hover {
  background: #dd4c39;
}
.s-link a.fa-tiktok:hover {
  background: #000;
}
#top {
  min-height: 500px;
  text-align: center;
  color: #fff;
  position: relative;
  text-align: center;
  margin-top: -27px;
}
@media (max-width: 1024px) {
  #top {
    min-height: 450px;
  }
}
@media (max-width: 768px) {
  #top {
    min-height: 400px;
  }
}
@media (max-width: 480px) {
  #top {
    min-height: 350px;
  }
}
#top:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(5, 54, 97, 0.4);
}
#top .top-arrow {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 9;
  background: #fff;
}
@media (max-width: 1024px) {
  #top .top-arrow {
    display: none;
  }
}
#top .top-arrow img {
  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%);
}
@media (max-width: 1024px) {
  #top .transparent {
    display: none;
  }
}
#top .transparent:before {
  content: "";
  position: absolute;
  left: 150px;
  bottom: 0;
  height: 118px;
  width: 380px;
  background: rgba(255, 255, 255, 0.2);
}
#top .transparent:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 86px;
  width: 157px;
  height: 342px;
  background: rgba(255, 255, 255, 0.2);
}
#top h1 {
  position: relative;
  z-index: 9;
  font-size: 88px;
  display: inline-block;
  font-weight: 600;
}
@media (max-width: 1024px) {
  #top h1 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  #top h1 {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  #top h1 {
    font-size: 32px;
  }
}
#top h1:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 35px;
  background: #0E57F0;
  z-index: -1;
}
@media (max-width: 1024px) {
  #top h1:before {
    height: 18px;
  }
}
@media (max-width: 768px) {
  #top h1:before {
    height: 10px;
  }
}
.desctop_hide {
  display: none;
}
@media (max-width: 1180px) {
  /* resp_menu_active
========================================================================== */
  .mobile_hide {
    display: none;
  }
  .desctop_hide {
    display: block;
  }
  .burger {
    position: absolute;
    z-index: 101;
    top: 13px;
    right: 10px;
    margin-right: 10px;
    text-align: left;
  }
  .burger .burger-icon {
    display: inline-block;
    position: relative;
    margin-top: 6px;
    margin-bottom: 6px;
    user-select: none;
  }
  .burger .burger-icon, .burger .burger-icon::before, .burger .burger-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #053661;
    outline: 1px solid transparent;
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  .burger .burger-icon::before, .burger .burger-icon::after {
    position: absolute;
    content: "";
  }
  .burger .burger-icon::before {
    top: -6px;
  }
  .burger .burger-icon::after {
    top: 6px;
  }
  .burger.is-active .burger-icon {
    background-color: transparent;
  }
  .burger.is-active .burger-icon::before {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.is-active .burger-icon::after {
    transform: translateY(-6px) rotate(-45deg);
  }
  .burger.is-active .burger-icon::before, .burger.is-active .burger-icon::after {
    background: #ffffff;
  }
  .mobile_menu_container {
    font-size: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 80%;
    max-width: 480px;
    height: 100vh;
    padding: 5px;
    border-top: 40px solid #031b31;
    border-bottom: 3px solid #031b31;
    background: #053661;
    will-change: transform, opacity;
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -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;
  }
  .mobile_menu_container nav {
    margin-bottom: 40px;
  }
  .mobile_menu_container li {
    position: relative;
  }
  .mobile_menu_container a {
    z-index: 10;
    display: block;
  }
  .mobile_menu_container a:hover {
    text-decoration: none;
  }
  .mobile_menu_container .sub-anchor {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    width: 40px;
    height: 30px;
    cursor: pointer;
    background: #064479;
  }
  .mobile_menu_container .sub-anchor:hover {
    background: #042949;
  }
  .mobile_menu_container .sub-anchor:before {
    font-size: 20px;
    color: #ffffff;
    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%);
  }
  .mobile_menu_container .sub-menu {
    display: none;
  }
  .mobile_menu_container .sub-menu a {
    font-size: 13px;
    padding: 5px 30px;
    color: #ffffff;
  }
  .mobile_menu_container .sub-menu a:hover {
    background: #085192;
  }
  .mobile_menu_container .sub-menu .sub-menu {
    display: none;
    padding-left: 10px;
  }
  .mobile_menu_container .level_a > li {
    border-bottom: 1px solid #064479;
  }
  .mobile_menu_container .level_a > li > a {
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    padding-left: 20px;
    color: #ffffff;
  }
  .mobile_menu_container .level_a > li > a:hover {
    background: #064479;
  }
  .mobile_menu_active {
    overflow: hidden;
  }
  .mobile_menu_active:before {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    content: "";
    background: rgba(0, 0, 0, 0.7);
    -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;
  }
  .mobile_menu_active .burger {
    position: fixed;
  }
  .mobile_menu_active .burger span {
    position: relative;
    z-index: 101;
  }
  .mobile_menu_active .mobile_menu_container {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 1180px) and (max-width: 768px) {
  .mobile_menu_container {
    width: 100%;
    max-width: 100%;
  }
}
.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;
  }
}
/* ==========================================================================
   Global
   ========================================================================== */
.border-b {
  position: relative;
  display: inline;
}
.border-b:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 3px;
  right: 0;
  background-color: #0E57F0;
}
/* ==========================================================================
   Page
   ========================================================================== */
.about .title {
  text-align: center;
  padding: 73px 0;
}
@media (max-width: 1024px) {
  .about .title {
    padding: 45px 0;
  }
}
.about .title h2 {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #053661;
  text-transform: capitalize;
  font-size: clamp(35px, 11vw, 60px);
  font-weight: 500;
  line-height: 125%;
  margin: 0 auto;
}
.about .title h2:before {
  position: absolute;
  content: "";
  bottom: 10px;
  width: 100%;
  height: 2px;
  background-color: #0E57F0;
  left: 0;
}
.about .items.custom-wrap {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
}
.about .items .item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 115px 0;
  gap: 6.3%;
}
@media (max-width: 1024px) {
  .about .items .item {
    gap: 25px;
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    padding: 50px 0;
  }
}
.about .items .item:not(:last-child):after {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  content: "";
  background-image: url("../img/arrow-down.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 129px;
  bottom: -64px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .about .items .item:not(:last-child):after {
    height: 80px;
    bottom: -40px;
  }
}
.about .items .item:nth-child(1):before {
  position: absolute;
  content: "";
  background-color: #EDEDED;
  top: 0;
  width: 92%;
  height: 100%;
  left: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  .about .items .item:nth-child(1):before {
    width: 100%;
  }
}
.about .items .item:nth-child(3n):before {
  position: absolute;
  content: "";
  background-color: #EDEDED;
  top: 0;
  width: 92%;
  height: 100%;
  z-index: -1;
  right: 0;
}
@media (max-width: 1024px) {
  .about .items .item:nth-child(3n):before {
    width: 100%;
  }
}
.about .items .item:nth-child(even) {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
}
@media (max-width: 1024px) {
  .about .items .item:nth-child(even) {
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.about .items .item:nth-child(even) .text-content .date:after {
  right: 0;
  left: auto;
}
.about .items .item .text-content {
  -webkit-flex-basis: 434px;
  -moz-flex-basis: 434px;
  -ms-flex-basis: 434px;
  flex-basis: 434px;
}
@media (max-width: 1024px) {
  .about .items .item .text-content {
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
    max-width: 94%;
  }
}
.about .items .item .text-content .date {
  color: black;
  font-size: clamp(75px, 15vw, 200px);
  font-weight: 700;
  line-height: 125%;
  position: relative;
}
@media (max-width: 1024px) {
  .about .items .item .text-content .date {
    display: inline-block;
    line-height: 1;
  }
}
.about .items .item .text-content .date:after {
  position: absolute;
  content: "";
  bottom: 42px;
  height: 26px;
  width: 132%;
  left: 0;
  background-color: #0E57F0;
  z-index: 1;
}
@media (max-width: 1024px) {
  .about .items .item .text-content .date:after {
    width: 100%;
    bottom: 8px;
    height: 15px;
  }
}
.about .items .item .text-content .date .years {
  position: relative;
  z-index: 2;
}
@supports (-webkit-text-stroke: 2px #053661) {
  .about .items .item .text-content .date {
    -webkit-text-stroke: 2px #053661;
    /* width and color */
    color: transparent;
  }
}
.about .items .item .text-content p:last-child {
  padding-bottom: 0;
}
.about .items .item .image-content {
  -webkit-flex-basis: 46.8%;
  -moz-flex-basis: 46.8%;
  -ms-flex-basis: 46.8%;
  flex-basis: 46.8%;
  height: 573px;
  position: relative;
  z-index: 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .about .items .item .image-content {
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 600px) {
  .about .items .item .image-content {
    height: 300px;
  }
}
.about .items .item .image-content .image {
  height: 100%;
}
.about .items .item .image-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .items .item .image-content .date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: black;
  font-size: clamp(100px, 15vw, 200px);
  font-weight: 700;
  line-height: 0.9;
}
@supports (-webkit-text-stroke: 2px rgba(255, 255, 255, 0.26)) {
  .about .items .item .image-content .date {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.26);
    /* width and color */
    color: transparent;
  }
}
.about .wide-block {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .about .wide-block {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .about .wide-block {
    margin-bottom: 35px;
  }
}
.about .wide-block .wrap {
  width: 1620px;
}
.about .wide-block .wrap:before, .about .wide-block .wrap:after {
  position: absolute;
  content: "";
  height: 9px;
  width: 426px;
  background-color: #0E57F0;
}
.about .wide-block .wrap:before {
  top: 0;
  left: 107px;
  z-index: 1;
}
@media (max-width: 768px) {
  .about .wide-block .wrap:before {
    left: 0px;
    width: 100%;
  }
}
.about .wide-block .wrap:after {
  bottom: 0;
  right: 107px;
}
@media (max-width: 768px) {
  .about .wide-block .wrap:after {
    width: 100%;
    right: 0;
  }
}
.about .wide-block .wrap .image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about .wide-block .wrap .image:before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(5, 54, 97, 0.8);
}
.about .wide-block .wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .wide-block .wrap .text {
  position: relative;
  z-index: 1;
  width: 926px;
  max-width: 100%;
  margin: 0 auto;
  padding: 112px 20px;
}
@media (max-width: 1024px) {
  .about .wide-block .wrap .text {
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  .about .wide-block .wrap .text {
    padding: 35px 20px;
  }
}
.about .wide-block .wrap .text p {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.about .wide-block .wrap .text p:last-child {
  padding-bottom: 0;
}
.about .cards-about {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .about .cards-about {
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .about .cards-about {
    margin-bottom: 35px;
  }
}
.about .cards-about .wrap {
  width: 1240px;
}
.about .cards-about .wrapper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.5%;
  width: 101%;
}
.about .cards-about .wrapper > * {
  width: 32.3333333333%;
  margin: 0 0.5% 0.6666666667em;
}
@media (max-width: 1024px) {
  .about .cards-about .wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .about .cards-about .wrapper > * {
    width: 99%;
    margin: 0 0.5% 1em;
  }
}
.about .cards-about .wrapper .card-about {
  padding: 213px 28px 47px 21px;
  position: relative;
}
@media (max-width: 1024px) {
  .about .cards-about .wrapper .card-about {
    padding: 100px 28px 47px 21px;
  }
}
@media (max-width: 768px) {
  .about .cards-about .wrapper .card-about {
    padding: 50px 28px 47px 21px;
  }
}
.about .cards-about .wrapper .card-about:before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(5, 54, 97, 0) 0%, #053661 100%);
  bottom: 0;
  height: 20%;
  width: 100%;
  left: 0;
  z-index: 1;
}
.about .cards-about .wrapper .card-about .number-top {
  position: absolute;
  top: 0;
  right: 0;
  padding: 17px 20px;
  background-color: #0E57F0;
  z-index: 3;
  color: #fff;
  font-size: 20px;
}
.about .cards-about .wrapper .card-about .image {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 0;
}
.about .cards-about .wrapper .card-about .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about .cards-about .wrapper .card-about .image:before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  inset: 0;
}
.about .cards-about .wrapper .card-about .text {
  position: relative;
  z-index: 1;
}
.about .cards-about .wrapper .card-about .text h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 7px;
}
.about .cards-about .wrapper .card-about .text p {
  color: #fff;
}
.about .cards-about .wrapper .card-about .text p:last-child {
  padding-bottom: 0;
}
.about .location {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .about .location {
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .about .location {
    margin-bottom: 35px;
  }
}
.about .location .wrap {
  width: 1240px;
}
.about .location .wrap .title {
  padding: 0;
  margin-bottom: 34px;
}
.about .location .wrap .our-location-repeater {
  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;
  gap: 20px;
}
@media (max-width: 768px) {
  .about .location .wrap .our-location-repeater {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.about .location .wrap .our-location-repeater .our-location-item h4 {
  font-size: 20px;
  font-weight: 500;
  color: #053661;
}
.about .location .wrap .our-location-repeater .our-location-item p {
  font-family: "";
  font-size: 16px;
  font-weight: 300;
  color: #053661;
}
.testing-applications .choose-item {
  padding: 95px 0;
}
@media (max-width: 1024px) {
  .testing-applications .choose-item {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .testing-applications .choose-item {
    padding: 35px 0;
  }
}
.testing-applications .choose-item .wrap .wrapper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1%;
  width: 102%;
}
.testing-applications .choose-item .wrap .wrapper > * {
  width: 31.3333333333%;
  margin: 0 1% 1.3333333333em;
}
@media (max-width: 1024px) {
  .testing-applications .choose-item .wrap .wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .testing-applications .choose-item .wrap .wrapper > * {
    width: 49%;
    margin: 0 0.5% 0.75em;
  }
}
@media (max-width: 768px) {
  .testing-applications .choose-item .wrap .wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .testing-applications .choose-item .wrap .wrapper > * {
    width: 99%;
    margin: 0 0.5% 1em;
  }
}
.testing-applications .choose-item .wrap .wrapper .item {
  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;
}
.testing-applications .choose-item .wrap .wrapper .item .post-thumbnail {
  display: block;
  min-height: 264px;
  will-change: opacity;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  position: relative;
}
@media (max-width: 768px) {
  .testing-applications .choose-item .wrap .wrapper .item .post-thumbnail {
    min-height: 200px;
  }
}
.testing-applications .choose-item .wrap .wrapper .item .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);
}
.testing-applications .choose-item .wrap .wrapper .item .post-content {
  padding: 27px 22px 21px 26px;
  background-color: #053661;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}
@media (max-width: 1024px) {
  .testing-applications .choose-item .wrap .wrapper .item .post-content {
    padding: 20px;
  }
}
.testing-applications .choose-item .wrap .wrapper .item .post-content h3 {
  font-size: 24px;
  font-weight: 600;
}
.testing-applications .choose-item .wrap .wrapper .item .post-content a.read-more {
  color: #0E57F0;
  text-decoration: underline;
  text-transform: capitalize;
}
.testing-applications .choose-item .wrap .wrapper .item .post-content a.read-more:hover {
  color: #f1b820;
}
.testing-applications .choose-item .wrap .wrapper .item .post-content a {
  color: #fff;
}
.testing-applications .bottom-block {
  position: relative;
  margin-bottom: 95px;
}
@media (max-width: 1024px) {
  .testing-applications .bottom-block {
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .testing-applications .bottom-block {
    margin-bottom: 35px;
  }
}
.testing-applications .bottom-block:before {
  position: absolute;
  content: "";
  height: 100%;
  top: 0;
  left: 0;
  background-color: #EDEDED;
  width: 92%;
  z-index: 0;
}
@media (max-width: 1100px) {
  .testing-applications .bottom-block:before {
    width: 100%;
  }
}
.testing-applications .bottom-block:after {
  position: absolute;
  content: "";
  width: 380px;
  height: 115px;
  background-color: #fff;
  right: 8%;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 1440px) {
  .testing-applications .bottom-block:after {
    width: 200px;
    height: 55px;
  }
}
@media (max-width: 1100px) {
  .testing-applications .bottom-block:after {
    content: none;
  }
}
.testing-applications .bottom-block .wrap {
  padding: 68px 0 78px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .testing-applications .bottom-block .wrap {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .testing-applications .bottom-block .wrap {
    padding: 35px 0;
  }
}
.testing-applications .bottom-block .wrap h2, .testing-applications .bottom-block .wrap .wrapper {
  max-width: 939px;
}
.testing-applications .bottom-block .wrap h2 {
  font-size: clamp(35px, 5vw, 60px);
  font-weight: 500;
  line-height: 125%;
  color: #053661;
}
.testing-applications .bottom-block .wrap .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 112px;
}
@media (max-width: 1440px) {
  .testing-applications .bottom-block .wrap .wrapper {
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  .testing-applications .bottom-block .wrap .wrapper {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .testing-applications .bottom-block .wrap .wrapper {
    gap: 20px;
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.testing-applications .bottom-block .wrap .wrapper .content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.testing-applications .bottom-block .wrap .wrapper .content p {
  padding-bottom: 0;
}
.testing-applications .bottom-block .wrap .wrapper .btn-wrapper {
  -webkit-flex-basis: 237px;
  -moz-flex-basis: 237px;
  -ms-flex-basis: 237px;
  flex-basis: 237px;
}
@media (max-width: 768px) {
  .testing-applications .bottom-block .wrap .wrapper .btn-wrapper {
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
  }
}
.testing-applications .bottom-block .wrap .wrapper .btn-wrapper .btn {
  padding: 15px 20px;
}
.vacancies {
  padding: 104px 0;
}
@media (max-width: 1024px) {
  .vacancies {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .vacancies {
    padding: 35px 0;
  }
}
.vacancies .item-acc {
  background-color: #EDEDED;
  margin-bottom: 18px;
  padding: 24px 28px 24px 49px;
}
@media (max-width: 1024px) {
  .vacancies .item-acc {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .vacancies .item-acc {
    padding: 20px;
  }
}
.vacancies .item-acc .acc-title {
  cursor: pointer;
  position: relative;
}
.vacancies .item-acc .acc-title h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 155%;
  color: #053661;
}
.vacancies .item-acc .acc-title:before, .vacancies .item-acc .acc-title:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  width: 23px;
  height: 1px;
  background-color: #053661;
  right: 4px;
}
.vacancies .item-acc .acc-title:after {
  rotate: 90deg;
}
.vacancies .item-acc .info {
  margin-top: 22px;
}
.vacancies .item-acc .info p {
  color: #1a1a1a;
}
.vacancies .item-acc .info ul {
  padding-left: 20px;
  margin-bottom: 23px;
}
.vacancies .item-acc .info ul li {
  list-style: disc;
  font-size: 16px;
  font-weight: 300;
  color: #1a1a1a;
}
.vacancies .item-acc .info .btn {
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
  padding: 15px 20px;
}
.calibration .accredited-calibration {
  position: relative;
  padding: 116px 0;
}
@media (max-width: 1024px) {
  .calibration .accredited-calibration {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .calibration .accredited-calibration {
    padding: 35px 0;
  }
}
.calibration .accredited-calibration:before {
  position: absolute;
  content: "";
  width: 92%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #EDEDED;
}
@media (max-width: 1024px) {
  .calibration .accredited-calibration:before {
    width: 100%;
  }
}
.calibration .accredited-calibration:after {
  position: absolute;
  content: "";
  width: 383px;
  height: 69px;
  bottom: 0;
  right: 8%;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .calibration .accredited-calibration:after {
    content: none;
  }
}
.calibration .accredited-calibration .title {
  text-align: center;
  margin-bottom: 67px;
}
@media (max-width: 1024px) {
  .calibration .accredited-calibration .title {
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .calibration .accredited-calibration .title {
    margin-bottom: 35px;
  }
}
.calibration .accredited-calibration .title h2 {
  margin: 0 auto;
  font-size: clamp(35px, 5vw, 60px);
  font-weight: 500;
  line-height: 125%;
  color: #053661;
}
.calibration .accredited-calibration .items-wrapper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.5%;
  width: 101%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.calibration .accredited-calibration .items-wrapper > * {
  width: 32.3333333333%;
  margin: 0 0.5% 0.6666666667em;
}
@media (max-width: 1024px) {
  .calibration .accredited-calibration .items-wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .calibration .accredited-calibration .items-wrapper > * {
    width: 49%;
    margin: 0 0.5% 0.75em;
  }
}
@media (max-width: 650px) {
  .calibration .accredited-calibration .items-wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .calibration .accredited-calibration .items-wrapper > * {
    width: 99%;
    margin: 0 0.5% 1em;
  }
}
.calibration .accredited-calibration .items-wrapper .item {
  position: relative;
  padding: 70px 22px 20px;
}
.calibration .accredited-calibration .items-wrapper .item .image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.calibration .accredited-calibration .items-wrapper .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.calibration .accredited-calibration .items-wrapper .item .text {
  position: relative;
  z-index: 1;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: #fff;
}
.calibration .accredited-calibration .items-wrapper .item .top-number {
  position: absolute;
  top: 0;
  right: 0;
  padding: 17px 20px;
  background-color: #0E57F0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 125%;
  color: #fff;
}
@media (max-width: 650px) {
  .calibration .accredited-calibration .items-wrapper .item .top-number {
    padding: 10px 13px;
  }
}
.calibration .plan {
  padding: 91px 0;
}
@media (max-width: 1024px) {
  .calibration .plan {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .calibration .plan {
    padding: 35px 0;
  }
}
.calibration .plan .title {
  margin-bottom: 67px;
}
@media (max-width: 1024px) {
  .calibration .plan .title {
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .calibration .plan .title {
    margin-bottom: 35px;
  }
}
.calibration .plan .title h2 {
  margin: 0 auto;
  font-size: clamp(35px, 5vw, 60px);
  font-weight: 500;
  line-height: 125%;
  color: #053661;
}
.calibration .plan .items-wrapper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.5%;
  width: 101%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.calibration .plan .items-wrapper > * {
  width: 32.3333333333%;
  margin: 0 0.5% 0.6666666667em;
}
@media (max-width: 1024px) {
  .calibration .plan .items-wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .calibration .plan .items-wrapper > * {
    width: 49%;
    margin: 0 0.5% 0.75em;
  }
}
@media (max-width: 650px) {
  .calibration .plan .items-wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .calibration .plan .items-wrapper > * {
    width: 99%;
    margin: 0 0.5% 1em;
  }
}
.calibration .plan .items-wrapper .item {
  position: relative;
  padding: 70px 22px 20px;
  border: 1px solid #0E57F0;
}
.calibration .plan .items-wrapper .item .text {
  position: relative;
  z-index: 1;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: #053661;
}
.calibration .plan .items-wrapper .item .top-number {
  position: absolute;
  top: 0;
  right: 0;
  padding: 17px 20px;
  background-color: #0E57F0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 125%;
  color: #fff;
}
@media (max-width: 650px) {
  .calibration .plan .items-wrapper .item .top-number {
    padding: 10px 13px;
  }
}
.calibration .image-back .wrap-large {
  padding-top: 188px;
  width: 1620px;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .calibration .image-back .wrap-large {
    padding-top: 45px;
  }
}
@media (max-width: 768px) {
  .calibration .image-back .wrap-large {
    padding-top: 20px;
  }
}
.calibration .image-back .wrap-large .image {
  position: absolute;
  inset: 0;
}
.calibration .image-back .wrap-large .image:before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(5, 54, 97, 0.4);
}
.calibration .image-back .wrap-large .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.calibration .image-back .wrap-large .block-info {
  background-color: rgba(5, 54, 97, 0.8);
  max-width: 903px;
  position: relative;
  padding: 66px 68px 66px 68px;
}
@media (max-width: 1024px) {
  .calibration .image-back .wrap-large .block-info {
    padding: 45px;
  }
}
@media (max-width: 768px) {
  .calibration .image-back .wrap-large .block-info {
    padding: 20px;
  }
}
.calibration .image-back .wrap-large .block-info:before {
  position: absolute;
  content: "";
  height: 9px;
  width: 48%;
  background-color: #0E57F0;
  top: 0;
  right: 0;
}
.calibration .image-back .wrap-large .block-info .text-with-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
@media (max-width: 1024px) {
  .calibration .image-back .wrap-large .block-info .text-with-link {
    flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
}
.calibration .image-back .wrap-large .block-info .text-with-link .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.calibration .image-back .wrap-large .block-info h2 {
  font-size: clamp(35px, 5vw, 60px);
  font-weight: 500;
  line-height: 125%;
  color: #fff;
  margin-bottom: 17px;
}
.calibration .image-back .wrap-large .block-info p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 0;
}
.calibration .image-back .wrap-large .block-info a.btn {
  padding: 15px 20px;
  background-color: #fff;
  color: #0E57F0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.calibration .image-back .wrap-large .block-info a.btn:hover {
  color: #fff;
  background-color: #0E57F0;
}
.calibration .text-with-form {
  margin-top: 44px;
}
.calibration .text-with-form p {
  padding-bottom: 47px;
  max-width: 864px;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: #053661;
}
@media (max-width: 768px) {
  .calibration .text-with-form p {
    padding-bottom: 35px;
  }
}
.calibration .text-with-form form .wpforms-field .wpforms-field-label {
  font-size: 16px;
  font-weight: 300;
  color: #053661;
  margin-bottom: 3px;
}
.calibration .text-with-form form .wpforms-field .wpforms-field-description {
  color: #053661;
  font-size: 12px;
  font-weight: 200;
  margin-top: 8px;
}
.calibration .text-with-form form .wpforms-field fieldset .wpforms-field-description {
  font-size: 16px;
  color: #053661;
  margin-top: 14px;
}
/* ==========================================================================
   Home page
========================================================================== */
.home .join-block {
  margin: 120px 0 145px;
}
@media (max-width: 1024px) {
  .home .join-block {
    margin: 45px 0;
  }
}
@media (max-width: 768px) {
  .home .join-block {
    margin: 35px 0;
  }
}
.top-block-home {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
}
.top-block-home .top-arrow {
  width: 150px;
  display: grid;
  place-items: center;
}
@media (max-width: 1024px) {
  .top-block-home .top-arrow {
    width: 75px;
  }
}
@media (max-width: 768px) {
  .top-block-home .top-arrow {
    display: none;
  }
}
.top-block-home .wrapper {
  position: relative;
  width: calc(100% - 150px);
}
@media (max-width: 1024px) {
  .top-block-home .wrapper {
    width: calc(100% - 75px);
  }
}
@media (max-width: 768px) {
  .top-block-home .wrapper {
    width: 100%;
  }
}
.top-block-home .wrapper .swiper {
  width: 100%;
  height: 100%;
}
.top-block-home .wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  height: 822px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.top-block-home .wrapper .swiper-slide figure {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.top-block-home .wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-block-home .wrapper .swiper-slide figure:after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(5, 54, 97, 0.6);
}
.top-block-home .wrapper .swiper-slide .text {
  z-index: 1;
  color: #fff;
  padding: 0 85px 0 20px;
}
@media (max-width: 700px) {
  .top-block-home .wrapper .swiper-slide .text {
    padding: 0 20px;
  }
}
.top-block-home .wrapper .swiper-slide .text h1 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 600;
  line-height: 125%;
  position: relative;
  margin-bottom: 11px;
}
.top-block-home .wrapper .swiper-slide .text h1 span {
  position: relative;
}
.top-block-home .wrapper .swiper-slide .text h1 span:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 35px;
  background: #0E57F0;
  width: 100%;
  z-index: -1;
}
.top-block-home .wrapper .swiper-slide .text a.btn {
  margin-top: 25px;
  padding: 15px 20px;
  background: #fff !important;
  color: #053661 !important;
}
.top-block-home .wrapper .swiper-slide .text a.btn:hover {
  color: #fff !important;
  background-color: #0E57F0 !important;
}
.top-block-home .wrapper .navigations {
  width: 380px;
  max-width: 100%;
  position: absolute;
  background: #fff;
  display: grid;
  place-items: center;
  height: 115px;
  bottom: 0;
  z-index: 10;
}
@media (max-width: 1024px) {
  .top-block-home .wrapper .navigations {
    height: 65px;
  }
}
.top-block-home .wrapper .navigations .swiper-pagination-total {
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  color: rgba(5, 54, 97, 0.53);
}
@media (max-width: 1024px) {
  .top-block-home .wrapper .navigations {
    margin: 0 auto;
  }
}
.top-block-home .wrapper .navigations .swiper-button-next:after, .top-block-home .wrapper .navigations .swiper-button-prev:after {
  color: #000;
  font-size: 20px;
}
.top-block-home .wrapper .navigations .swiper-button-next {
  right: 110px;
}
.top-block-home .wrapper .navigations .swiper-button-prev {
  left: 110px;
}
.top-block-home .wrapper .navigations .swiper-pagination {
  color: #053661;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 125%;
  bottom: auto;
  top: auto;
  left: auto;
  width: auto;
}
.top-block-home .wrapper .social-home {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 157px;
  height: 467px;
  background-color: rgba(255, 255, 255, 0.2);
  right: 86px;
  z-index: 11;
  display: grid;
  place-items: center;
}
@media (max-width: 1580px) {
  .top-block-home .wrapper .social-home {
    right: 0;
  }
}
@media (max-width: 1440px) {
  .top-block-home .wrapper .social-home {
    width: 82px;
  }
}
@media (max-width: 700px) {
  .top-block-home .wrapper .social-home {
    top: 0;
    bottom: auto;
    width: 100%;
    height: 100px;
    transform: translate(0);
  }
}
.top-block-home .wrapper .social-home .wrapper-social {
  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;
  gap: 26px;
}
@media (max-width: 700px) {
  .top-block-home .wrapper .social-home .wrapper-social {
    flex-direction: row;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
  }
}
.top-block-home .wrapper .social-home .wrapper-social a:before {
  color: #fff;
  font-size: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-block-home .wrapper .social-home .wrapper-social a:hover {
  text-decoration: none;
}
.top-block-home .wrapper .social-home .wrapper-social a:hover:before {
  color: #f1b820;
  font-size: 25px;
}
.about-us-home {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto 120px;
  position: relative;
  padding: 116px 0 0;
}
@media (max-width: 1024px) {
  .about-us-home {
    padding: 45px 0 0;
    margin: 0 auto 45px;
  }
}
@media (max-width: 768px) {
  .about-us-home {
    padding: 35px 0 0;
    margin: 0 auto 35px;
  }
}
.about-us-home:before {
  position: absolute;
  top: 0;
  content: "";
  left: 0;
  height: 100%;
  width: 92%;
  background-color: #EDEDED;
}
@media (max-width: 1024px) {
  .about-us-home:before {
    width: 100%;
  }
}
.about-us-home .wrap {
  width: 1580px;
  margin: 0 0 0 auto;
}
@media (max-width: 1024px) {
  .about-us-home .wrap {
    margin: 0 auto;
  }
}
.about-us-home .swiper {
  width: 100%;
  height: 100%;
}
.about-us-home .swiper .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -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;
}
@media (max-width: 1440px) {
  .about-us-home .swiper .swiper-slide {
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  .about-us-home .swiper .swiper-slide {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .about-us-home .swiper .swiper-slide {
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.about-us-home .swiper .swiper-slide .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.about-us-home .swiper .swiper-slide .text h2 {
  color: #053661;
}
.about-us-home .swiper .swiper-slide .text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 155%;
  color: #1a1a1a;
}
.about-us-home .swiper .swiper-slide .text p:last-child {
  padding-bottom: 0;
}
.about-us-home .swiper .swiper-slide .text p strong {
  font-weight: 600;
}
.about-us-home .swiper .swiper-slide .text a.btn {
  padding: 15px 20px;
}
.about-us-home .swiper .swiper-slide .image {
  position: relative;
  height: 573px;
  -webkit-flex-basis: 56%;
  -moz-flex-basis: 56%;
  -ms-flex-basis: 56%;
  flex-basis: 56%;
}
@media (max-width: 1024px) {
  .about-us-home .swiper .swiper-slide .image {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 768px) {
  .about-us-home .swiper .swiper-slide .image {
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
    height: 400px;
  }
}
.about-us-home .swiper .swiper-slide .image .years {
  position: absolute;
  bottom: 0;
  left: -175px;
  color: #053661;
  font-size: clamp(80px, 11vw, 185px);
  font-weight: 700;
  line-height: 0.9;
}
@media (max-width: 1024px) {
  .about-us-home .swiper .swiper-slide .image .years {
    left: -90px;
  }
}
@media (max-width: 768px) {
  .about-us-home .swiper .swiper-slide .image .years {
    left: 20px;
  }
}
@supports (-webkit-text-stroke: 2px white) {
  .about-us-home .swiper .swiper-slide .image .years {
    -webkit-text-stroke: 2px white;
    /* width and color */
    color: transparent;
  }
}
.about-us-home .swiper .swiper-slide .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us-home .navigations {
  width: 376px;
  max-width: 100%;
  position: relative;
  background: #fff;
  margin: 0 8% 0 auto;
  display: grid;
  place-items: center;
  height: 115px;
}
@media (max-width: 1024px) {
  .about-us-home .navigations {
    height: 65px;
  }
}
.about-us-home .navigations .swiper-pagination-total {
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  color: rgba(5, 54, 97, 0.53);
}
@media (max-width: 1024px) {
  .about-us-home .navigations {
    margin: 0 auto;
  }
}
.about-us-home .navigations .swiper-button-next:after, .about-us-home .navigations .swiper-button-prev:after {
  color: #000;
  font-size: 20px;
}
.about-us-home .navigations .swiper-button-next {
  right: 110px;
}
.about-us-home .navigations .swiper-button-prev {
  left: 110px;
}
.about-us-home .navigations .swiper-pagination {
  color: #053661;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 125%;
  bottom: auto;
  top: auto;
  left: auto;
  width: auto;
}
.featured-products {
  position: relative;
  background: #E1E6E9;
  padding: 70px 0;
}
@media (max-width: 1024px) {
  .featured-products {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .featured-products {
    padding: 35px 0;
  }
}
.featured-products .text-bottom {
  position: absolute;
  inset: 0;
  width: 100%;
}
.featured-products .text-bottom:before {
  position: absolute;
  content: "";
  height: 196px;
  width: 150px;
  bottom: 0;
  left: 0;
  background-color: #0E57F0;
}
.featured-products .text-bottom:after {
  position: absolute;
  content: "";
  height: 196px;
  width: 150px;
  top: 0;
  right: 0;
  background-color: #fff;
}
.featured-products .text-bottom .left, .featured-products .text-bottom .right {
  position: absolute;
  bottom: 0;
  font-size: clamp(60px, 7vw, 143px);
  font-weight: 500;
  line-height: 125%;
  color: #fff;
}
@media (max-width: 700px) {
  .featured-products .text-bottom .left, .featured-products .text-bottom .right {
    display: none;
  }
}
@supports (-webkit-text-stroke: 2.4px rgba(255, 255, 255, 0.5)) {
  .featured-products .text-bottom .left, .featured-products .text-bottom .right {
    -webkit-text-stroke: 2.4px rgba(255, 255, 255, 0.5);
    /* width and color */
    color: transparent;
  }
}
.featured-products .text-bottom .left {
  left: 0;
}
.featured-products .text-bottom .right {
  right: 0;
}
.featured-products .title h2 {
  font-size: clamp(30px, 4vw, 60px);
  text-align: center;
  margin-bottom: 51px;
  color: #053661;
}
@media (max-width: 1024px) {
  .featured-products .title h2 {
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .featured-products .title h2 {
    margin-bottom: 25px;
  }
}
.featured-products .wrapper .swiper {
  width: 100%;
  height: 600px;
  margin-bottom: 51px;
}
@media (max-width: 1024px) {
  .featured-products .wrapper .swiper {
    margin-bottom: 35px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .featured-products .wrapper .swiper {
    margin-bottom: 25px;
    height: 300px;
  }
}
.featured-products .wrapper .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.featured-products .wrapper .swiper .swiper-slide:hover .image img {
  height: 110%;
  width: 110%;
}
.featured-products .wrapper .swiper .swiper-slide:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 175px;
  background: linear-gradient(180deg, rgba(5, 54, 97, 0) 0%, #053661 100%);
  bottom: 0;
  left: 0;
  z-index: 1;
}
.featured-products .wrapper .swiper .swiper-slide .image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.featured-products .wrapper .swiper .swiper-slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.featured-products .wrapper .swiper .swiper-slide .text {
  padding: 0 20px;
  position: absolute;
  z-index: 10;
  color: #fff;
  bottom: 28px;
}
.featured-products .wrapper .swiper .swiper-slide .text span {
  display: block;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
}
.featured-products .wrapper .swiper .swiper-slide .text a {
  position: relative;
  color: #0E57F0;
}
.featured-products .wrapper .swiper .swiper-slide .text a:after {
  content: "";
  position: relative;
  display: inline-block;
  background: url(../img/blue-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 8px;
  margin: 0 0 2px 15px;
}
@media (max-width: 768px) {
  .featured-products .wrapper .navigations {
    position: relative;
    height: 45px;
  }
}
.featured-products .wrapper .navigations .swiper-button-next, .featured-products .wrapper .navigations .swiper-button-prev {
  width: 100px;
  background: #fff;
  height: 100px;
}
.featured-products .wrapper .navigations .swiper-button-next.swiper-button-disabled, .featured-products .wrapper .navigations .swiper-button-prev.swiper-button-disabled {
  pointer-events: auto;
}
.featured-products .wrapper .navigations .swiper-button-next:after, .featured-products .wrapper .navigations .swiper-button-prev:after {
  color: #000;
  font-size: 20px;
}
@media (max-width: 1440px) {
  .featured-products .wrapper .navigations .swiper-button-next, .featured-products .wrapper .navigations .swiper-button-prev {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 768px) {
  .featured-products .wrapper .navigations .swiper-button-next, .featured-products .wrapper .navigations .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
}
.featured-products .wrapper .navigations .swiper-button-next {
  right: -10vw;
}
@media (max-width: 1700px) {
  .featured-products .wrapper .navigations .swiper-button-next {
    right: -4vw;
  }
}
@media (max-width: 1440px) {
  .featured-products .wrapper .navigations .swiper-button-next {
    right: -2vw;
  }
}
@media (max-width: 768px) {
  .featured-products .wrapper .navigations .swiper-button-next {
    margin: 0;
    top: 0;
    right: 0;
  }
}
.featured-products .wrapper .navigations .swiper-button-prev {
  left: -10vw;
}
@media (max-width: 1700px) {
  .featured-products .wrapper .navigations .swiper-button-prev {
    left: -4vw;
  }
}
@media (max-width: 1440px) {
  .featured-products .wrapper .navigations .swiper-button-prev {
    left: -2vw;
  }
}
@media (max-width: 768px) {
  .featured-products .wrapper .navigations .swiper-button-prev {
    margin: 0;
    top: 0;
    left: 0;
  }
}
.featured-products .wrapper .navigations .swiper-pagination {
  color: #053661;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 125%;
  bottom: auto;
  top: auto;
  left: auto;
  width: auto;
}
.featured-products .wrapper-button {
  text-align: center;
}
.featured-products .wrapper-button .see-more {
  position: relative;
  padding: 15px 20px;
}
.our-expertise {
  overflow: hidden;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .our-expertise {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .our-expertise {
    padding: 35px 0;
  }
}
.our-expertise h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #053661;
}
@media (max-width: 1024px) {
  .our-expertise h2 {
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .our-expertise h2 {
    margin-bottom: 25px;
  }
}
.our-expertise .wrapper-items {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1%;
  width: 102%;
}
.our-expertise .wrapper-items > * {
  width: 23%;
  margin: 0 1% 1.25em;
}
@media (max-width: 1024px) {
  .our-expertise .wrapper-items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -1%;
    width: 102%;
  }
  .our-expertise .wrapper-items > * {
    width: 48%;
    margin: 0 1% 1.5em;
  }
}
@media (max-width: 768px) {
  .our-expertise .wrapper-items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -1%;
    width: 102%;
  }
  .our-expertise .wrapper-items > * {
    width: 98%;
    margin: 0 1% 2em;
  }
}
.our-expertise .wrapper-items: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: "";
  width: 1620px;
  height: 280px;
  bottom: 0;
  background-color: rgba(225, 230, 233, 0.4);
}
.our-expertise .wrapper-items .item {
  position: relative;
  display: block;
  padding: 466px 21px 28px 21px;
}
@media (max-width: 1024px) {
  .our-expertise .wrapper-items .item {
    padding: 300px 20px 28px;
  }
}
@media (max-width: 768px) {
  .our-expertise .wrapper-items .item {
    padding: 100px 15px 28px;
  }
  .our-expertise .wrapper-items .item:last-child {
    margin-bottom: 0;
  }
}
.our-expertise .wrapper-items .item:hover .image:before {
  background-color: rgba(0, 0, 0, 0.6);
}
.our-expertise .wrapper-items .item:after {
  position: absolute;
  content: "";
  background: url("../img/arrow-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 39px;
  right: 21px;
  width: 63px;
  height: 8px;
}
.our-expertise .wrapper-items .item .number-top {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px 20px;
  color: #fff;
  background-color: #0E57F0;
  z-index: 3;
}
.our-expertise .wrapper-items .item .image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.our-expertise .wrapper-items .item .image:before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
}
.our-expertise .wrapper-items .item .image:after {
  position: absolute;
  content: "";
  height: 175px;
  width: 100%;
  bottom: 0;
  z-index: 4;
  left: 0;
  background: linear-gradient(180deg, rgba(5, 54, 97, 0) 0%, #053661 100%);
}
@media (max-width: 768px) {
  .our-expertise .wrapper-items .item .image:after {
    height: 100%;
  }
}
.our-expertise .wrapper-items .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.our-expertise .wrapper-items .item .text {
  position: absolute;
  bottom: 28px;
  z-index: 10;
  color: #fff;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  max-width: 169px;
}
.full-range {
  position: relative;
  width: 1920px;
  max-width: 100%;
  margin: 0 auto 120px;
}
@media (max-width: 1024px) {
  .full-range {
    margin: 0 auto 45px;
  }
}
@media (max-width: 768px) {
  .full-range {
    margin: 0 auto 35px;
  }
}
.full-range:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: min(6vw, 120px);
  height: min(6vw, 120px);
  background-color: rgba(5, 54, 97, 0.4);
}
@media (max-width: 1024px) {
  .full-range:after {
    content: none;
  }
}
.full-range .wrap {
  width: 1630px;
  margin: 0 auto 0 0;
}
@media (max-width: 1024px) {
  .full-range .wrap {
    max-width: 94%;
    margin: 0 auto;
  }
}
.full-range .wrap .wrapper {
  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;
  gap: 105px;
}
@media (max-width: 1440px) {
  .full-range .wrap .wrapper {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .full-range .wrap .wrapper {
    flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    gap: 20px;
  }
}
.full-range .wrap .wrapper .image {
  -webkit-flex-basis: 46%;
  -moz-flex-basis: 46%;
  -ms-flex-basis: 46%;
  flex-basis: 46%;
  position: relative;
}
@media (max-width: 1024px) {
  .full-range .wrap .wrapper .image {
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
  }
}
.full-range .wrap .wrapper .image .text-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 15px 20px;
  background-color: #0E57F0;
  color: #fff;
  width: 182px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.full-range .wrap .wrapper .image .text-bottom:hover {
  text-decoration: none;
  color: #f1b820;
}
.full-range .wrap .wrapper .image .text-bottom p {
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}
.full-range .wrap .wrapper .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.full-range .wrap .wrapper .text h2 {
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 500;
  color: #053661;
  margin-bottom: 19px;
}
@media (max-width: 1024px) {
  .full-range .wrap .wrapper .text h2 {
    text-align: center;
  }
}
.full-range .wrap .wrapper .text p {
  padding-bottom: 19px;
}
.full-range .wrap .wrapper .text p:last-child {
  padding-bottom: 0;
}
.blog-posts {
  margin-bottom: 170px;
}
@media (max-width: 1024px) {
  .blog-posts {
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .blog-posts {
    margin-bottom: 35px;
  }
}
.blog-posts .blog-title {
  text-align: center;
  margin-bottom: 39px;
}
.blog-posts .blog-title h2 {
  color: #053661;
  margin-bottom: 39px;
}
@media (max-width: 1024px) {
  .blog-posts .blog-title h2 {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .blog-posts .blog-title h2 {
    margin-bottom: 20px;
  }
}
.blog-posts .blog-title p:last-child {
  padding-bottom: 0;
}
.blog-posts .recent-posts {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1%;
  width: 102%;
}
.blog-posts .recent-posts > * {
  width: 48%;
  margin: 0 1% 1.5em;
}
@media (max-width: 1024px) {
  .blog-posts .recent-posts {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .blog-posts .recent-posts > * {
    width: 99%;
    margin: 0 0.5% 1em;
  }
}
.blog-posts .recent-posts .post {
  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;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  padding: 355px 65px 42px 31px;
}
@media (max-width: 1024px) {
  .blog-posts .recent-posts .post {
    padding: 200px 45px 42px 31px;
  }
}
@media (max-width: 768px) {
  .blog-posts .recent-posts .post {
    padding: 100px 20px 20px;
  }
}
.blog-posts .recent-posts .post .image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.blog-posts .recent-posts .post .image:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  inset: 0;
  z-index: 1;
}
.blog-posts .recent-posts .post .image:after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(5, 54, 97, 0) 0%, #053661 100%);
  inset: 0;
  z-index: 2;
}
.blog-posts .recent-posts .post .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-posts .recent-posts .post .category-cus {
  display: inline-block;
  position: absolute;
  top: 23px;
  left: 31px;
  padding: 5px 21px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background-color: #0E57F0;
  color: #fff;
  margin-bottom: 9px;
}
@media (max-width: 1024px) {
  .blog-posts .recent-posts .post .category-cus {
    padding: 5px 15px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .blog-posts .recent-posts .post .category-cus {
    padding: 5px 10px;
    font-size: 12px;
  }
}
.blog-posts .recent-posts .post .category-cus a {
  color: #fff;
}
.blog-posts .recent-posts .post .text {
  position: relative;
  z-index: 10;
}
.blog-posts .recent-posts .post .text h3 {
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0;
  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;
}
.blog-posts .recent-posts .post .text h3:hover {
  color: #f1b820;
}
.blog-posts .recent-posts .post .text time {
  font-size: 16px;
  font-weight: 400;
  color: #959EAD;
  margin-bottom: 10px;
}
.blog-posts .wrapper-btn {
  text-align: center;
}
.blog-posts .wrapper-btn .btn {
  padding: 15px 20px;
}
.swiper-block {
  overflow-x: clip;
  padding-top: 44px;
  position: relative;
  margin-bottom: 110px;
}
@media (max-width: 1024px) {
  .swiper-block {
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .swiper-block {
    margin-bottom: 35px;
  }
}
.swiper-block:before {
  position: absolute;
  content: "";
  background-color: #E1E6E9;
  width: 72px;
  height: 300px;
  left: 0;
  top: 0;
}
@media (max-width: 1024px) {
  .swiper-block:before {
    content: none;
  }
}
.swiper-block.gray {
  padding-top: 79px;
  background-color: #EDEDED;
}
@media (max-width: 1024px) {
  .swiper-block.gray {
    padding-top: 45px;
  }
}
@media (max-width: 768px) {
  .swiper-block.gray {
    padding-top: 35px;
  }
}
.swiper-block.gray:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  background-color: #053661;
  width: 70px;
  height: 675px;
  right: 0;
}
@media (max-width: 1024px) {
  .swiper-block.gray:after {
    content: none;
  }
}
.swiper-block.gray:before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 150px;
  height: 200px;
  left: 0;
  top: auto;
  bottom: 0;
}
@media (max-width: 1024px) {
  .swiper-block.gray:before {
    content: none;
  }
}
.swiper-block.compression-testers-wrapper .wrap: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: "";
  width: 1620px;
  height: 280px;
  bottom: 0;
  background-color: rgba(225, 230, 233, 0.4);
  z-index: 0;
}
.swiper-block .title {
  text-align: center;
  max-width: 943px;
  margin: 0 auto 34px;
}
.swiper-block .title h2 {
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 500;
  color: #053661;
  margin-bottom: 21px;
}
.swiper-block .title p:last-child {
  padding-bottom: 0;
}
.swiper-block .swiper {
  width: 100%;
  height: 500px;
  margin: 20px auto;
}
@media (max-width: 1024px) {
  .swiper-block .swiper {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .swiper-block .swiper {
    height: 300px;
  }
}
.swiper-block .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.swiper-block .swiper .swiper-slide:hover .image img {
  height: 110%;
  width: 110%;
}
.swiper-block .swiper .swiper-slide:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 175px;
  background: linear-gradient(180deg, rgba(5, 54, 97, 0) 0%, #053661 100%);
  bottom: 0;
  left: 0;
}
.swiper-block .swiper .swiper-slide .image {
  width: 100%;
  height: 100%;
}
.swiper-block .swiper .swiper-slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper-block .navigations {
  width: 450px;
  max-width: 100%;
  position: relative;
  background: #fff;
  margin: -53px -10vw 0 auto;
  display: grid;
  place-items: center;
  height: 125px;
  z-index: 10;
}
.swiper-block .navigations .swiper-pagination-total {
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  color: rgba(5, 54, 97, 0.53);
}
@media (max-width: 1440px) {
  .swiper-block .navigations {
    margin: -53px -8vw 0 auto;
  }
}
@media (max-width: 1024px) {
  .swiper-block .navigations {
    height: 65px;
  }
}
@media (max-width: 1024px) {
  .swiper-block .navigations {
    margin: 0 auto;
  }
}
.swiper-block .navigations .swiper-button-next:after, .swiper-block .navigations .swiper-button-prev:after {
  color: #000;
  font-size: 20px;
}
.swiper-block .navigations .swiper-button-next {
  right: 110px;
}
.swiper-block .navigations .swiper-button-prev {
  left: 110px;
}
.swiper-block .navigations .swiper-pagination {
  color: #053661;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 125%;
  bottom: auto;
  top: auto;
  left: auto;
  width: auto;
}
.swiper-block .see-more {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: -20px;
  padding: 15px 20px;
}
@media (max-width: 1024px) {
  .swiper-block .see-more {
    position: relative;
    margin: 20px 0;
    bottom: auto;
  }
}
.join-block {
  margin: 161px 0;
}
@media (max-width: 1024px) {
  .join-block {
    margin: 45px 0;
  }
}
@media (max-width: 768px) {
  .join-block {
    margin: 35px 0;
  }
}
.join-block .wrap-large {
  padding-top: 188px;
  width: 1620px;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .join-block .wrap-large {
    padding-top: 45px;
  }
}
@media (max-width: 768px) {
  .join-block .wrap-large {
    padding-top: 35px;
  }
}
.join-block .wrap-large .image {
  position: absolute;
  inset: 0;
}
.join-block .wrap-large .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.join-block .wrap-large .block-info {
  margin: 0 0 0 auto;
  background-color: rgba(5, 54, 97, 0.8);
  max-width: 903px;
  position: relative;
  padding: 66px 68px 66px 68px;
}
@media (max-width: 1024px) {
  .join-block .wrap-large .block-info {
    padding: 45px;
  }
}
@media (max-width: 768px) {
  .join-block .wrap-large .block-info {
    padding: 20px;
  }
}
.join-block .wrap-large .block-info:before {
  position: absolute;
  content: "";
  height: 9px;
  width: 48%;
  background-color: #0E57F0;
  top: 0;
  right: 0;
}
.join-block .wrap-large .block-info h2 {
  font-size: clamp(35px, 5vw, 60px);
  font-weight: 500;
  line-height: 125%;
  color: #fff;
  margin-bottom: 17px;
}
.join-block .wrap-large .block-info p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding-bottom: 0;
}
.join-block .wrap-large .block-info a.btn {
  margin-top: 17px;
  padding: 15px 20px;
  background-color: #fff !important;
  color: #0E57F0 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.join-block .wrap-large .block-info a.btn:hover {
  color: #fff !important;
  background-color: #0E57F0 !important;
}
/* ==========================================================================
   index-style
   ========================================================================== */
.index-main {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.5%;
  width: 101%;
}
.index-main > * {
  width: 32.3333333333%;
  margin: 0 0.5% 0.6666666667em;
}
@media (max-width: 1024px) {
  .index-main {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
  }
  .index-main > * {
    width: 49%;
    margin: 0 0.5% 0.75em;
  }
}
@media (max-width: 580px) {
  .index-main {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .index-main > * {
    width: 99%;
    margin: 0 0.5% 1em;
  }
}
.index-main .post-item {
  margin-bottom: 20px;
  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;
}
.index-main .post-item:first-child {
  -webkit-flex-basis: 65.33%;
  -moz-flex-basis: 65.33%;
  -ms-flex-basis: 65.33%;
  flex-basis: 65.33%;
}
@media (max-width: 1024px) {
  .index-main .post-item:first-child {
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
  }
}
.index-main .post-title {
  padding-bottom: 9px;
  font-size: 24px;
  font-weight: 600;
  line-height: 105%;
  color: #fff;
}
.index-main .post-title:hover {
  color: #f1b820;
}
.index-main .post-content {
  padding: 27px 22px 21px 26px;
  background-color: #053661;
  color: #fff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}
@media (max-width: 1024px) {
  .index-main .post-content {
    padding: 20px;
  }
}
.index-main .post-content .bottom p {
  padding-bottom: 0;
}
.index-main .post-content .bottom .read-more {
  color: #0E57F0;
  text-decoration: underline;
}
.index-main .post-content .bottom .read-more:hover {
  color: #f1b820;
}
.index-main .wrapper-image {
  position: relative;
}
.index-main .wrapper-image .addition-info {
  position: absolute;
  top: 23px;
  left: 26px;
  right: 26px;
  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-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.index-main .wrapper-image .addition-info .category-cus, .index-main .wrapper-image .addition-info time {
  display: inline-block;
  position: relative;
  padding: 5px 21px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 1024px) {
  .index-main .wrapper-image .addition-info .category-cus, .index-main .wrapper-image .addition-info time {
    padding: 5px 15px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .index-main .wrapper-image .addition-info .category-cus, .index-main .wrapper-image .addition-info time {
    padding: 5px 10px;
    font-size: 12px;
  }
}
.index-main .wrapper-image .addition-info .category-cus a, .index-main .wrapper-image .addition-info time a {
  color: #fff;
}
.index-main .wrapper-image .addition-info .category-cus {
  background-color: #0E57F0;
  color: #fff;
  margin-bottom: 9px;
}
.index-main .wrapper-image .addition-info time {
  background-color: #ACACAC;
}
.index-main .post-thumbnail {
  display: block;
  min-height: 264px;
  will-change: opacity;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  position: relative;
}
.index-main .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 {
  width: 100%;
  font-size: 0;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  font-size: 12px;
  font-weight: 500;
  margin: 0 3px;
  height: 23px;
  width: 23px;
  display: inline-block;
  border-radius: 50%;
  padding-top: 1px;
  background-color: #D9D9D9;
  color: #053661;
}
.wp-pagenavi a {
  border: 1px solid #cccccc;
  border-radius: 50%;
}
.wp-pagenavi .current, .wp-pagenavi a:hover {
  color: #ffffff;
  background: #0E57F0;
  text-decoration: none;
}
.single-main .title {
  text-align: center;
  padding: 73px 0;
}
@media (max-width: 1024px) {
  .single-main .title {
    padding: 45px 0;
  }
}
.single-main .title h1 {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #053661;
  text-transform: capitalize;
  font-size: clamp(35px, 15vw, 50px);
  font-weight: 500;
  line-height: 125%;
  margin: 0 auto;
}
.single-main .title h1:before {
  position: absolute;
  content: "";
  bottom: 7px;
  width: 100%;
  height: 16px;
  background-color: #0E57F0;
  left: 0;
  z-index: -1;
}
.single-main .top-image {
  margin-bottom: 27px;
}
.single-main .top-image img {
  width: 100%;
}
.single-main .addition-info {
  position: relative;
  margin-bottom: 58px;
}
.single-main .addition-info .category-cus, .single-main .addition-info time {
  display: inline-block;
  position: relative;
  padding: 5px 21px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 1024px) {
  .single-main .addition-info .category-cus, .single-main .addition-info time {
    padding: 5px 15px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .single-main .addition-info .category-cus, .single-main .addition-info time {
    padding: 5px 10px;
    font-size: 12px;
  }
}
.single-main .addition-info .category-cus a, .single-main .addition-info time a {
  color: #fff;
}
.single-main .addition-info .category-cus {
  background-color: #0E57F0;
  color: #fff;
  margin-bottom: 9px;
}
.single-main .addition-info time {
  background-color: #ACACAC;
}
.single-main .wysiwyg {
  color: #053661;
}
.single-main .wysiwyg img {
  width: 527px;
  max-width: 100%;
  margin: 0 auto 32px;
}
.single-main .wysiwyg h1, .single-main .wysiwyg h2 {
  text-align: center;
  margin-bottom: 24px;
}
.single-main .wysiwyg ul {
  margin-bottom: 24px;
  padding-bottom: 0;
}
.single-main .wysiwyg ul li {
  list-style: disc;
}
.single-main .wysiwyg ul li img {
  margin-top: 10px;
}
.single-main .wysiwyg ol {
  padding-left: 20px;
  margin-bottom: 24px;
  padding-bottom: 0;
}
.contact-us {
  padding: 80px 0 120px 0;
}
@media (max-width: 1024px) {
  .contact-us {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .contact-us {
    padding: 35px 0;
  }
}
.contact-us .cards {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .contact-us .cards {
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .contact-us .cards {
    margin-bottom: 35px;
  }
}
.contact-us .cards .items {
  counter-reset: section;
}
.contact-us .cards .items .item {
  margin-bottom: 25px;
  border: 1px solid #0E57F0;
  -webkit-flex-basis: 48.5%;
  -moz-flex-basis: 48.5%;
  -ms-flex-basis: 48.5%;
  flex-basis: 48.5%;
  position: relative;
  padding: 20px 100px 20px 20px;
}
@media (max-width: 768px) {
  .contact-us .cards .items .item {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    padding: 20px 70px 20px 20px;
  }
}
@media (max-width: 480px) {
  .contact-us .cards .items .item {
    padding: 15px 60px 15px 15px;
  }
}
.contact-us .cards .items .item:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 59px;
  height: 59px;
  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;
  background: #0E57F0;
  color: #FFF;
  font-size: 20px;
  color: #FFF;
  counter-increment: section;
  content: "0" counter(section);
}
.contact-us .cards .items .item p {
  color: #053661;
  font-size: 20px;
  font-weight: 600;
}
.contact-us .cards .items .item p:last-child {
  padding-bottom: 0;
}
.contact-us .cards .cards-bottom {
  text-align: center;
}
.contact-us .cards .cards-bottom p {
  font-size: 20px;
  font-weight: 600;
}
.contact-us .cards .cards-bottom p:last-child {
  padding-bottom: 0;
}
.contact-us .our-location {
  margin-bottom: 120px;
}
@media (max-width: 1024px) {
  .contact-us .our-location {
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .contact-us .our-location {
    margin-bottom: 35px;
  }
}
.contact-us .our-location .wrap {
  width: 1620px;
  padding: 60px;
  background: rgba(5, 54, 97, 0.8);
  background-image: url("../img/location.png");
  background-size: cover;
}
@media (max-width: 1024px) {
  .contact-us .our-location .wrap {
    padding: 45px;
  }
}
@media (max-width: 768px) {
  .contact-us .our-location .wrap {
    padding: 35px 0;
    margin: 0;
    max-width: 100%;
  }
}
.contact-us .our-location .wrap .content {
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-us .our-location .wrap .content {
    max-width: 94%;
  }
}
.contact-us .our-location .wrap .content .location-title {
  text-align: center;
  color: #FFF;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .contact-us .our-location .wrap .content .items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 1024px) {
  .contact-us .our-location .wrap .content .items .item {
    margin-bottom: 20px;
    -webkit-flex-basis: 32%;
    -moz-flex-basis: 32%;
    -ms-flex-basis: 32%;
    flex-basis: 32%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contact-us .our-location .wrap .content .items .item {
    -webkit-flex-basis: 49%;
    -moz-flex-basis: 49%;
    -ms-flex-basis: 49%;
    flex-basis: 49%;
  }
}
.contact-us .our-location .wrap .content .items .item h5 {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact-us .our-location .wrap .content .items .item p {
  color: #FFF;
  font-weight: 300;
  line-height: 25px;
}
.contact-us .our-location .wrap .content .items .item p:last-child {
  padding-bottom: 0;
}
.contact-us .contact-form h2 {
  color: #053661;
  text-align: center;
  margin-bottom: 20px;
}
.contact-us .contact-form .wpforms-container input, .contact-us .contact-form .wpforms-container textarea {
  border-bottom: 1px solid #053661 !important;
}
.contact-us .contact-form .wpforms-container input.wpforms-field-small, .contact-us .contact-form .wpforms-container textarea.wpforms-field-small {
  padding-left: 0;
  padding-right: 0;
}
.contact-us .contact-form .wpforms-container input::placeholder {
  color: #053661 !important;
}
.contact-us .contact-form .wpforms-container textarea::placeholder {
  color: #053661 !important;
}
.contact-us .contact-form .wpforms-container .wpforms-submit-container {
  text-align: center;
  margin-top: 20px;
}
.contact-us .contact-form .wpforms-container .wpforms-submit-container .wpforms-submit {
  background: #0E57F0;
  color: #FFF;
  font-size: 20px;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-us .contact-form .wpforms-container .wpforms-submit-container .wpforms-submit:hover {
  opacity: 0.7;
}
.employment {
  padding: 135px 0;
}
@media (max-width: 1024px) {
  .employment {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .employment {
    padding: 35px 0;
  }
}
.employment .box-content .wrap {
  background-position: center;
  background-size: cover;
  padding-top: 120px;
  width: 1620px;
}
@media (max-width: 1024px) {
  .employment .box-content .wrap {
    padding-top: 70px;
  }
}
@media (max-width: 768px) {
  .employment .box-content .wrap {
    padding-top: 40px;
    max-width: 100%;
  }
}
.employment .box-content .info {
  max-width: 1065px;
  padding: 40px 60px;
  background: rgba(5, 54, 97, 0.8);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .employment .box-content .info {
    padding: 35px;
  }
}
@media (max-width: 768px) {
  .employment .box-content .info {
    padding: 25px;
    max-width: 94%;
  }
}
.employment .box-content .info h2 {
  color: #FFF;
}
.employment .box-content .info p {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
}
.employment .box-content .info .btn {
  background: #FFF;
  color: #0E57F0;
  font-size: 20px;
}
.services-upgrades .image-text {
  overflow: hidden;
}
.services-upgrades .image-text .items .item {
  margin-bottom: 130px;
  position: relative;
}
@media (max-width: 1024px) {
  .services-upgrades .image-text .items .item {
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .services-upgrades .image-text .items .item {
    margin-bottom: 35px;
  }
}
.services-upgrades .image-text .items .item:last-child {
  margin-bottom: 0;
}
.services-upgrades .image-text .items .item:nth-child(odd):before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 20%;
  background: #EDEDED;
  content: "";
  z-index: -1;
}
@media (max-width: 1024px) {
  .services-upgrades .image-text .items .item:nth-child(odd):before {
    right: 0;
  }
}
.services-upgrades .image-text .items .item:nth-child(odd) .wrap {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: end;
  -moz-justify-content: end;
  justify-content: end;
  padding: 115px 0;
}
@media (max-width: 1024px) {
  .services-upgrades .image-text .items .item:nth-child(odd) .wrap {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .services-upgrades .image-text .items .item:nth-child(odd) .wrap {
    padding: 35px 0;
  }
}
.services-upgrades .image-text .items .item:nth-child(odd) .wrap .image {
  -webkit-flex-basis: 54%;
  -moz-flex-basis: 54%;
  -ms-flex-basis: 54%;
  flex-basis: 54%;
  margin-right: -6vw;
}
@media (max-width: 1024px) {
  .services-upgrades .image-text .items .item:nth-child(odd) .wrap .image {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    margin: 0 auto;
  }
}
.services-upgrades .image-text .items .item:nth-child(odd) .wrap .info {
  margin-right: 6%;
}
@media (max-width: 1366px) {
  .services-upgrades .image-text .items .item:nth-child(odd) .wrap .info {
    margin-right: 3%;
  }
}
@media (max-width: 1024px) {
  .services-upgrades .image-text .items .item:nth-child(odd) .wrap .info {
    margin-right: 0;
  }
}
.services-upgrades .image-text .items .item:nth-child(even):before {
  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;
  content: "";
  width: 150px;
  height: 120px;
  background: rgba(5, 54, 97, 0.4);
  z-index: -1;
}
@media (max-width: 768px) {
  .services-upgrades .image-text .items .item:nth-child(even):before {
    display: none;
  }
}
.services-upgrades .image-text .items .item:nth-child(even) .wrap {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
  -moz-justify-content: start;
  justify-content: start;
}
.services-upgrades .image-text .items .item:nth-child(even) .wrap .info {
  margin-left: 6%;
}
@media (max-width: 1366px) {
  .services-upgrades .image-text .items .item:nth-child(even) .wrap .info {
    margin-left: 3%;
  }
}
@media (max-width: 1024px) {
  .services-upgrades .image-text .items .item:nth-child(even) .wrap .info {
    margin-left: 0;
  }
}
.services-upgrades .image-text .items .item:nth-child(3):after {
  position: absolute;
  top: 0;
  left: 0;
  background: #FFF;
  width: 150px;
  height: 235px;
  z-index: -1;
  content: "";
}
.services-upgrades .image-text .items .item .wrap {
  width: 1710px;
}
.services-upgrades .image-text .items .item .wrap .image {
  -webkit-flex-basis: 44.5%;
  -moz-flex-basis: 44.5%;
  -ms-flex-basis: 44.5%;
  flex-basis: 44.5%;
}
@media (max-width: 1024px) {
  .services-upgrades .image-text .items .item .wrap .image {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    margin: 0 auto;
    max-width: 650px;
  }
}
.services-upgrades .image-text .items .item .wrap .image img {
  width: 100%;
}
.services-upgrades .image-text .items .item .wrap .info {
  -webkit-flex-basis: 46%;
  -moz-flex-basis: 46%;
  -ms-flex-basis: 46%;
  flex-basis: 46%;
  max-width: 630px;
}
@media (max-width: 1366px) {
  .services-upgrades .image-text .items .item .wrap .info {
    -webkit-flex-basis: 49%;
    -moz-flex-basis: 49%;
    -ms-flex-basis: 49%;
    flex-basis: 49%;
  }
}
@media (max-width: 1024px) {
  .services-upgrades .image-text .items .item .wrap .info {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.services-upgrades .image-text .items .item .wrap .info p {
  padding-bottom: 0;
  margin-bottom: 30px;
}
.services-upgrades .image-text .items .item .wrap .info h2 {
  font-weight: 500;
  display: inline-block;
}
.services-upgrades .image-text .items .item .wrap .info h2 span {
  text-decoration: none !important;
}
/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  position: relative;
  z-index: 10;
  padding: 37px 0 49px;
}
header .logo {
  opacity: 1;
  color: #181818;
  display: inline-block;
}
@media (max-width: 480px) {
  header .logo {
    max-width: 170px;
  }
}
header .logo:hover {
  opacity: 0.8;
}
@media (max-width: 480px) {
  header .logo-section > img {
    width: 60px;
  }
}
header .phone {
  margin-right: 57px;
  display: inline-block;
}
@media (max-width: 1024px) {
  header .phone {
    margin-right: 10px;
  }
}
header .bottom {
  line-height: 1;
}
@media (max-width: 1180px) {
  header .bottom {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media (max-width: 1024px) {
  header .bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
header .top {
  margin-bottom: 44px;
}
@media (max-width: 1024px) {
  header .top {
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  header .top > .flex {
    display: block;
    text-align: center;
  }
  header .top > .flex .header-contact-info {
    margin-top: 20px;
  }
}
header .gt_selector {
  border: 1px solid #053661;
  padding: 5px;
}
/* ==========================================================================
   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 {
  z-index: 0;
  display: inline-block;
}
.main_nav .level_a > li {
  margin-right: 40px;
}
@media (max-width: 1700px) {
  .main_nav .level_a > li {
    margin-right: 20px;
  }
}
@media (max-width: 1500px) {
  .main_nav .level_a > li {
    margin-right: 10px;
  }
}
.main_nav .level_a > li > a {
  font-size: 20px;
  color: #053661;
}
@media (max-width: 1500px) {
  .main_nav .level_a > li > a {
    font-size: 18px;
  }
}
@media (max-width: 1400px) {
  .main_nav .level_a > li > a {
    font-size: 16px;
  }
}
.main_nav .level_a > li.current-menu-item > a, .main_nav .level_a > li:hover > a {
  color: #053661;
}
.main_nav .level_a > li.menu-item-has-children {
  padding-bottom: 27px;
}
.main_nav .level_a > li.menu-item-has-children:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  content: "";
}
.main_nav .level_a > li.menu-item-has-children:hover > .sub-menu {
  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;
}
.main_nav .level_a > li > .sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  width: 100%;
  margin-top: 27px;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(3, 35, 70, 0.15);
  padding: 43px 10%;
}
.main_nav .level_a > li > .sub-menu > li:nth-child(2) .sub-menu {
  column-count: 3;
}
.main_nav .level_a > li > .sub-menu > li > a {
  color: #053661;
  font-size: 24px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #0E57F0;
}
.main_nav .level_a > li > .sub-menu li {
  display: block;
  list-style-type: none;
}
.main_nav .level_a > li > .sub-menu a {
  font-size: 16px;
  line-height: 1.3;
  padding: 3px;
  color: #053661;
}
.main_nav .level_a > li > .sub-menu a:hover {
  text-decoration: none;
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  padding: 80px 0 20px;
  background: #232323;
  color: #ffffff;
}
footer p {
  font-weight: 300;
}
footer input[type="text"], footer input[type="number"], footer input[type="email"], footer input[type="password"], footer input[type="search"], footer input[type="tel"], footer textarea {
  color: #fff;
  border-bottom: 1px solid #ababab;
}
footer input[type="text"]::-webkit-input-placeholder, footer input[type="number"]::-webkit-input-placeholder, footer input[type="email"]::-webkit-input-placeholder, footer input[type="password"]::-webkit-input-placeholder, footer input[type="search"]::-webkit-input-placeholder, footer input[type="tel"]::-webkit-input-placeholder, footer textarea::-webkit-input-placeholder {
  color: #ababab;
}
footer input[type="text"]::-moz-placeholder, footer input[type="number"]::-moz-placeholder, footer input[type="email"]::-moz-placeholder, footer input[type="password"]::-moz-placeholder, footer input[type="search"]::-moz-placeholder, footer input[type="tel"]::-moz-placeholder, footer textarea::-moz-placeholder {
  opacity: 1;
  color: #ababab;
}
footer input[type="text"]:-ms-input-placeholder, footer input[type="number"]:-ms-input-placeholder, footer input[type="email"]:-ms-input-placeholder, footer input[type="password"]:-ms-input-placeholder, footer input[type="search"]:-ms-input-placeholder, footer input[type="tel"]:-ms-input-placeholder, footer textarea:-ms-input-placeholder {
  color: #ababab;
}
footer textarea {
  height: 45px !important;
  line-height: 44px !important;
  padding: 0 5px 0 0;
}
footer .wpforms-container .wpforms-field {
  padding: 5px 0;
}
footer .wpforms-submit-container {
  margin-top: 36px;
}
footer .top {
  padding-bottom: 88px;
  margin-bottom: 74px;
  border-bottom: 1px solid #0E57F0;
}
@media (max-width: 1024px) {
  footer .top {
    padding-bottom: 44px;
    margin-bottom: 37px;
  }
}
@media (max-width: 768px) {
  footer .top {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
footer .privacy-menu a {
  color: #fff;
}
footer .copyright {
  text-align: right;
}
@media (max-width: 1024px) {
  footer .copyright {
    text-align: left;
  }
}
footer .bottom {
  margin-top: 120px;
}
@media (max-width: 1024px) {
  footer .bottom {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  footer .bottom {
    margin-top: 30px;
  }
}
.search-translate {
  position: relative;
  margin-bottom: 27px;
}
.search-translate .search-icon {
  font-size: 20px;
  margin-right: 40px;
  cursor: pointer;
}
#menu-footer-menu {
  column-count: 4;
}
@media (max-width: 768px) {
  #menu-footer-menu {
    column-count: 2;
  }
}
#menu-footer-menu li {
  break-inside: avoid;
}
#menu-footer-menu li a {
  color: #fff;
}
#searchform {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -59px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#searchform.active {
  opacity: 1;
  visibility: visible;
}
#searchform #searchsubmit {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.single_prod_cust {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  padding: 50px 0;
}
@media (max-width: 1024px) {
  .single_prod_cust {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    padding: 25px 0;
  }
}
.single_prod_cust img {
  width: 100%;
}
.single_prod_cust > div {
  -webkit-flex-basis: 49%;
  -moz-flex-basis: 49%;
  -ms-flex-basis: 49%;
  flex-basis: 49%;
}
@media (max-width: 1024px) {
  .single_prod_cust > div {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
}
.single_prod_cust .gallery-thumbs {
  padding: 10px 0;
}
.single_prod_cust .gallery-thumbs img {
  cursor: pointer;
  height: 132px;
}
.single_prod_cust .prod_desc .tar {
  text-align: right;
}
@media (max-width: 1024px) {
  .single_prod_cust .prod_desc .tar {
    text-align: left;
  }
}
.single_prod_cust .prod_desc .flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.single_prod_cust .prod_desc h2 {
  font-size: 44px;
  color: #053661;
  border-bottom: 4px solid #0E57F0;
  margin-bottom: 15px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .single_prod_cust .prod_desc h2 {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .single_prod_cust .prod_desc h2 {
    font-size: 28px;
  }
}
.single_prod_cust .prod_desc .button {
  padding: 15px;
}
.single_prod_cust .go_to_cart .button {
  margin-bottom: 15px;
}
.single_prod_cust .go_to_cart p {
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .single_prod_cust .prod_desc .flex {
    display: block;
  }
  .single_prod_cust .prod_desc .go_to_cart {
    text-align: left;
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .single_prod_cust {
    display: block;
  }
}
#wpgs-gallery.wcgs-woocommerce-product-gallery {
  margin-right: 0 !important;
}
.single-product .content {
  position: relative;
}
.single-product .content:before {
  content: "";
  position: absolute;
  right: 0;
  top: 350px;
  width: 150px;
  height: 120px;
  background: rgba(5, 54, 97, 0.4);
  z-index: -1;
}
@media (max-width: 1024px) {
  .single-product .content:before {
    display: none;
  }
}
.single-product .content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 600px;
  width: 150px;
  height: 134px;
  background: #ededed;
  z-index: -1;
}
@media (max-width: 1024px) {
  .single-product .content:after {
    display: none;
  }
}
.post-type-archive-product #top, .tax-product_cat #top {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .post-type-archive-product #top, .tax-product_cat #top {
    margin-bottom: 35px;
  }
}
.post-type-archive-product #top p, .tax-product_cat #top p {
  font-size: 20px;
}
@media (max-width: 1240px) {
  .post-type-archive-product #top p br, .tax-product_cat #top p br {
    display: none;
  }
}
@media (max-width: 768px) {
  .post-type-archive-product #top p, .tax-product_cat #top p {
    font-size: 16px;
  }
}
.tax-product_cat .widget_product_categories .lines {
  display: none;
}
.woocommerce ul.products li.product a img {
  aspect-ratio: 0.8;
  object-fit: cover;
  object-position: center;
}
.woocommerce-loop-category__title {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: 20px;
  font-size: 20px !important;
  text-align: center;
  color: #fff;
  z-index: 9;
  font-weight: 500;
  line-height: 30px;
}
.woocommerce-loop-category__title mark.count {
  display: none;
}
.title-border h3 {
  border-bottom: 2px solid #0E57F0;
  padding-bottom: 7px;
  margin-bottom: 30px;
}
.lines {
  border-bottom: 2px solid #0E57F0;
  padding-bottom: 7px;
  margin-bottom: 30px;
}
.custom_cats h3 {
  border-bottom: 2px solid #0E57F0;
  padding-bottom: 7px;
  margin-bottom: 30px;
}
.woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price {
  display: none;
}
.woocommerce ul.products li.product .image-title, .woocommerce-page ul.products li.product .image-title {
  position: relative;
}
.woocommerce ul.products li.product .image-title:before, .woocommerce-page ul.products li.product .image-title:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 54, 97, 0) 0%, #000000 100%);
}
.woocommerce ul.products li.product .image-title .woocommerce-loop-product__title, .woocommerce-page ul.products li.product .image-title .woocommerce-loop-product__title {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: 20px;
  font-size: 16px !important;
  text-align: center;
  width: 100%;
  padding: 0 10px;
  color: #fff;
  z-index: 9;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .woocommerce ul.products li.product .image-title .woocommerce-loop-product__title, .woocommerce-page ul.products li.product .image-title .woocommerce-loop-product__title {
    line-height: 20px;
  }
}
.woocommerce ul.products li.product .button {
  background: none !important;
  color: #0E57F0 !important;
  text-decoration: underline !important;
  display: block;
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  font-weight: 400;
}
.woocommerce ul.products li.product .button:after {
  content: "";
  font-family: "fontawesome";
  display: inline-block;
  margin-left: 5px;
  font-weight: 300;
}
.cats_wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1%;
  width: 102%;
}
.cats_wrap > * {
  width: 31.3333333333%;
  margin: 0 1% 1.3333333333em;
}
@media (max-width: 768px) {
  .cats_wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -1%;
    width: 102%;
  }
  .cats_wrap > * {
    width: 48%;
    margin: 0 1% 1.5em;
  }
}
.cats_wrap .item_cat {
  position: relative;
}
.cats_wrap .item_cat:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 118px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 54, 97, 0) 0%, #000000 100%);
}
.cats_wrap .item_cat img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.cats_wrap .item_cat h4 {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: 20px;
  font-size: 20px !important;
  text-align: center;
  color: #fff;
  z-index: 9;
  font-weight: 500;
  line-height: 30px;
  width: 100%;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  .cats_wrap .item_cat h4 {
    font-size: 18px !important;
  }
}
.product-categories .cat-parent {
  margin-top: 15px;
}
.product-categories .cat-parent > a {
  font-size: 20px;
  border-bottom: 1px solid #053661;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 12px;
  font-weight: 600;
}
.product-categories .cat-parent > a:hover {
  text-decoration: none;
}
.row_cats {
  margin-bottom: 130px;
}
.row_cats .widget-title {
  border-bottom: 2px solid #0E57F0;
  padding-bottom: 7px;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 500;
  display: inline-block;
}
@media (max-width: 1024px) {
  .mobile-hide {
    display: none;
  }
}
.sold_gallery {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1%;
  width: 102%;
}
.sold_gallery > * {
  width: 23%;
  margin: 0 1% 1.25em;
}
@media (max-width: 1024px) {
  .sold_gallery {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -1%;
    width: 102%;
  }
  .sold_gallery > * {
    width: 31.3333333333%;
    margin: 0 1% 1.3333333333em;
  }
}
@media (max-width: 768px) {
  .sold_gallery {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -1%;
    width: 102%;
  }
  .sold_gallery > * {
    width: 48%;
    margin: 0 1% 1.5em;
  }
}
.sold_gallery .item {
  position: relative;
}
.sold_gallery .item:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 118px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 54, 97, 0) 0%, #000000 100%);
}
.sold_gallery .item img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.sold_gallery .item h5 {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: 20px;
  font-size: 20px !important;
  text-align: center;
  color: #fff;
  z-index: 9;
  font-weight: 500;
  line-height: 30px;
  width: 100%;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  .sold_gallery .item h5 {
    font-size: 18px !important;
  }
}
.sold_product {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .sold_product {
    margin-top: 35px;
  }
}
.is_loading .wrap-loader {
  width: 100%;
  position: fixed;
  left: 50%;
  top: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.is_loading .loader-section {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  border: 5px solid #0E57F0;
  border-bottom-color: #053661;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}
.popAddProduct {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.popAddProduct h4 {
  margin-top: 10px;
  font-size: 18px;
}
.popAddProduct .button {
  margin: 5px 10px !important;
  font-size: 18px !important;
  font-weight: 400 !important;
}
.flex_start, .aparent {
  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;
}
.custom_cart {
  margin: 23px 0 30px;
}
.custom_cart h3 {
  -webkit-flex-basis: 23%;
  -moz-flex-basis: 23%;
  -ms-flex-basis: 23%;
  flex-basis: 23%;
  max-width: 23%;
  margin-bottom: 15px;
}
.custom_cart h3:nth-child(2) {
  -webkit-flex-basis: 48.77%;
  -moz-flex-basis: 48.77%;
  -ms-flex-basis: 48.77%;
  flex-basis: 48.77%;
  max-width: 48.77%;
}
.custom_cart .cart_item li {
  -webkit-flex-basis: 23%;
  -moz-flex-basis: 23%;
  -ms-flex-basis: 23%;
  flex-basis: 23%;
  max-width: 23%;
  background: #f0f0f0;
  margin-bottom: 10px;
  padding: 6px 15px;
  font-size: 14px;
}
.custom_cart .cart_item li.item_desc {
  -webkit-flex-basis: 48.77%;
  -moz-flex-basis: 48.77%;
  -ms-flex-basis: 48.77%;
  flex-basis: 48.77%;
  max-width: 48.77%;
}
.custom_cart .cart_item li.item_desc a {
  border-bottom: 1px solid transparent;
}
.custom_cart .cart_item li.item_desc a:hover {
  border-bottom-color: #053661;
}
.custom_cart .cart_item li.item_remove {
  font-weight: 700;
  text-align: center;
}
.custom_cart .cart_item li.item_remove a:hover {
  color: indianred;
}
.custom_cart .cart_item li.item_remove .fa-times {
  display: inline-block;
  margin-left: 6px;
}
h3.cart-lines {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 0;
  font-size: 18px;
}
h3.cart-lines span {
  background: #fff;
  padding: 0 13px;
  text-decoration: none !important;
}
h3.cart-lines:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 2px;
  background: #959595;
  z-index: -1;
}
.cart_body ul {
  margin-left: 0;
  padding-bottom: 0;
}
.cart_body .remove-item:hover {
  text-decoration: none;
}
.cart_body .item_desc a:hover {
  text-decoration: none;
}
.woocommerce-message::before {
  color: #0E57F0 !important;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce-message {
  border-top-color: #0E57F0 !important;
}
#cart_form {
  max-width: 768px;
}
#cart_form .wpforms-field-container {
  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;
}
.cart-popup-form .products-list-data {
  display: none;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22https%3A%2F%2Ffrankbacon-new.devpreviewr.com%2F%22%2C%22sources%22%3A%5B%22wp-content%2Fthemes%2Ffrankbacon-new%2Fscss%2Fmain.scss%22%2C%22wp-content%2Fthemes%2Ffrankbacon-new%2Fscss%2Fcomponents%2Freset.scss%22%2C%22wp-content%2Fthemes%2Ffrankbacon-new%2Fscss%2F_mixins.scss%22%2C%22wp-content%2Fthemes%2Ffrankbacon-new%2Fscss%2Fcomponents%2Fflexo.scss%22%2C%22wp-content%2Fthemes%2Ffrankbacon-new%2Fscss%2Fcomponents%2Fglobal.scss%22%2C%22wp-content%2Fthemes%2Ffrankbacon-new%2Fscss%2Fcomponents%2Fp.scss%22%2C%22wp-content%2Fthemes%2Ffrankbacon-new%2Fscss%2Fcomponents%2Fv.scss%22%2C%22wp-content%2Fthemes%2Ffrankbacon-new%2Fscss%2Fcomponents%2Fpages.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BADpCA%3BAAAA%3BAAAA%3BAC0CA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACiDE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADtCA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAD%2FFA%3BAAAA%3BAAAA%3BACsGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BACtEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADoFJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAChFI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADiGF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACpGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADqHJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAACE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAElMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADvBI%3BAC2BF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BADnEE%3BACwEF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BADhHE%3BACqHF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAHrLF%3BAAAA%3BAAAA%3BAIGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAFyBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEnBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF1DI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEgFF%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAJpHF%3BAAAA%3BAAAA%3BAI2HA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJpJA%3BAAAA%3BAAAA%3BAI8JE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAJ9KJ%3BAAAA%3BAAAA%3BAIsLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ7LF%3BAAAA%3BAAAA%3BAIyMA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBA%3BAAAA%3BAAAA%3BAJ9QA%3BAAAA%3BAAAA%3BAIgUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAQN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF7WI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEqYF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFtYE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEiZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFjZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEyZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF3aE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEkcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF1bA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEidJ%3BAAAA%3BAAAA%3BAFjcI%3BAAAA%3BAAAA%3BAEqcF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFlPF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAE0NI%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAsBE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAASR%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5lBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEmmBJ%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAFrmBI%3BAE2mBF%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAJhqBF%3BAAAA%3BAAAA%3BAKII%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALRR%3BAAAA%3BAAAA%3BAKuBI%3BAAAA%3BAAAA%3BAAAA%3BAHaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGLI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH1BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG2CY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH3CZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG%2BDY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH%2FDZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGgFY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHhFZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGgGQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHhGR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGyGoB%3BAAAA%3BAAAA%3BAAAA%3BAAQZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHjHR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGyHY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHzHZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGsIgB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHtIhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGuJgB%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH3KR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG%2BKY%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWhB%3BAAAA%3BAAAA%3BAH7NA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG4OI%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHxPR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGmQQ%3BAAAA%3BAAAA%3BAAAA%3BAHnQR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG6QQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH5RR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGgTY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAQhB%3BAAAA%3BAAAA%3BAH1TA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGyUI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH5CN%3BAAAA%3BAAAA%3BAAAA%3BAA7RE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6RF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGmDU%3BAAAA%3BAAAA%3BAAAA%3BAHhVR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGiWY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAASpB%3BAAAA%3BAAAA%3BAH9ZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG6aI%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHrbR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGgcgB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAahB%3BAAAA%3BAAAA%3BAH%2FcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG4dQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH3LV%3BAAAA%3BAAAA%3BAAAA%3BAA7RE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6RF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAjSE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiSF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGoMc%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHxehB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGifoB%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHlfhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG4foB%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAASpB%3BAAAA%3BAAAA%3BAAAA%3BAHjhBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG8hBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH9gBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG2hBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH3hBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG4iBI%3BAAAA%3BAAAA%3BAAAA%3BAHxjBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGqkBQ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH%2FjBR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG4lBY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHlmBZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGwmBgB%3BAAAA%3BAAAA%3BAAQpB%3BAAAA%3BAAAA%3BAH5mBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGwnBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHpnBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGkoBI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUR%3BAAAA%3BAAAA%3BAAAA%3BAH7qBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG0rBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHtrBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGksBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHlsBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG8sBI%3BAAAA%3BAAAA%3BAAAA%3BAH9sBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG2tBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHncN%3BAAAA%3BAAAA%3BAAAA%3BAA7RE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6RF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAjRE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiRF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG8cU%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHnvBZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGqwBA%3BAAAA%3BAAAA%3BAHjxBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG6xBI%3BAAAA%3BAAAA%3BAHzxBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGqyBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH7gBN%3BAAAA%3BAAAA%3BAAAA%3BAA7RE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6RF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAjRE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiRF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGwhBU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHpzBZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGu0BI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHn1BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGm2BQ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHl3BR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGi4BY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHt4BZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG64BgB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAQhB%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHj7BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG67BY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL1%2BBpB%3BAAAA%3BAAAA%3BAKw%2FBQ%3BAAAA%3BAAAA%3BAHp9BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGm%2BBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHp%2BBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGm%2FBI%3BAAAA%3BAAAA%3BAAAA%3BAH%2F%2BBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG4%2FBQ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHxgCZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG%2BgCgB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAOZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH5jCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGykCY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHzkCZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGolCgB%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH9lCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGonCY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHpnCZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG8nCoB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAUxB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH3pCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG6qCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHzqCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGsrCI%3BAAAA%3BAAAA%3BAAAA%3BAHtrCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG8rCI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHrrCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGmtCY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHpuCZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGovCgB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHhvChB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGmwCoB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH%2FwCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG2xCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH3xCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGsyCY%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH7zCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG20CI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHr1CR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGg2CY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH13CR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG44CQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHx4CR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGw5CY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASQ%3BAAAA%3BAAAA%3BAAAA%3BAAMN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH38CxB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGi%2BCY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAHz9ChB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAhBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGs%2FCY%3BAAAA%3BAAAA%3BAHt%2BCZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAhBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGogDY%3BAAAA%3BAAAA%3BAHp%2FCZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAhBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGkhDY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAHniDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGgjDQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH5iDR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG4jDQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH3xCV%3BAAAA%3BAAAA%3BAAAA%3BAA7RE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6RF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAjSE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiSF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGmyCc%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHxkDZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAGslDoB%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHroDpB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGmpDoB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAahB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHlqDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGirDI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH7qDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGyrDI%3BAAAA%3BAAAA%3BAAAA%3BAHzrDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGksDQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHtrDR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG8sDY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH9sDZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGotDgB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH3uDhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGovDgB%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAASpB%3BAAAA%3BAAAA%3BAH%2FvDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG2wDI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAH1wDR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGyxDY%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH7%2FCN%3BAAAA%3BAAAA%3BAAAA%3BAA7RE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6RF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGkgDU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH%2FxDR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG%2ByDY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHn0DZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG01DgB%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUZ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH53DA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG24DI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHv4DJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGm5DI%3BAAAA%3BAAAA%3BAAAA%3BAHn5DJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGg6DQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH55DR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGu6DQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHv6DR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGu7DY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHl9DJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGg%2BDQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASQ%3BAAAA%3BAAAA%3BAAAA%3BAAMN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH%2F%2FDR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG8hEY%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHpjEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGgkEA%3BAAAA%3BAAAA%3BAHhkEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG6kEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHzkEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGylEQ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH9lER%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG8mEY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAL1qEpB%3BAAAA%3BAAAA%3BAKqrEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHp3DE%3BAAAA%3BAAAA%3BAAAA%3BAA7RE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6RF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAjRE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiRF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG63DE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH9pEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGqqEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH%2FqEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG2rEQ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAMZ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHltER%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGwuEY%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAQR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAHpyEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG4yEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH70EJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGm2EQ%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACt6ER%3BAAAA%3BAAAA%3BAJoCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIrBA%3BAAAA%3BAAAA%3BAJyBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIVI%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJOR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIaY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAOZ%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAOZ%3BAAAA%3BAAAA%3BAJhDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI%2BDI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ3DJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIgFQ%3BAAAA%3BAAAA%3BAAAA%3BAJhFR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIwFY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJpFZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI8GoB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAWpB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAASpB%3BAAAA%3BAAAA%3BAJjLI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIiMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ7LJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIiNI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ7MJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIgOQ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUR%3BAAAA%3BAAAA%3BAAIQ%3BAAAA%3BAAAA%3BAAAA%3BAJpPR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIiQY%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJjQb%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI8QgB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ9QhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI6RoB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJzRpB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIkSoB%3BAAAA%3BAAAA%3BAJtRpB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIgTa%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJpTb%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIgUgB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAJpTpB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI8Uc%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWF%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ%2FVhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIsWoB%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ%2FVhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIsXoB%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BANna5B%3BAAAA%3BAAAA%3BAOGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALqBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKdA%3BAAAA%3BAAAA%3BALcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKHF%3BAAAA%3BAAAA%3BAAAA%3BALWE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKJF%3BAAAA%3BAAAA%3BALgBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKKF%3BAAAA%3BAAAA%3BALLE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKcI%3BAAAA%3BAAAA%3BAAAA%3BAAMN%3BAAAA%3BAAAA%3BAAAA%3BAPxDF%3BAAAA%3BAAAA%3BAOgEA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BALlCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK0CE%3BAAAA%3BAAAA%3BAAAA%3BAL1CF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKsDI%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAwBM%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAP%2FKV%3BAAAA%3BAAAA%3BAO6LA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BALpGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAKoGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALlLE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKoMA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BALrME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK4MF%3BAAAA%3BAAAA%3BAL5ME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK4NJ%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BALtOI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK2OF%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQE%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALnQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK0QF%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL7QC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKoRF%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAL7RA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKmSA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL1SA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAARA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK%2BTA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAL%2FTA%3BAKwUE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL%2FTF%3BAKwUF%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL%2FVE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK4WF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL5WE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK4XF%3BAAAA%3BAAAA%3BAL5XE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKiYA%3BAAAA%3BAAAA%3BAL7XA%3BAKgYI%3BAAAA%3BAAAA%3BAAAA%3BALxYJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKqZA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALvdA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKgfJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALlOE%3BAAAA%3BAAAA%3BAAAA%3BAAjSE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiSF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKuOA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL1hBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK6iBF%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAON%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL3jBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK2kBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL9SE%3BAAAA%3BAAAA%3BAAAA%3BAA7RE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6RF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAjSE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiSF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKsTA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALzmBF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK2nBJ%3BAAAA%3BAAAA%3BAL3nBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKmoBF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcE%3BAACA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAWR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYE%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAON%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%22%7D */