﻿@charset "UTF-8";
/* STYLES CSS >>> */
/* FONT >>> */
@import url("/content/fonts/_fonts.css");
@import url("/content/lib/icofont/icofont.min.css");
@import url("/content/lib/bootstrap/bootstrap.min.css");
@import url("/content/lib/swiperjs/swiper-bundle.min.css");
@import url("/content/lib/animete/animate.min.css");
@import url("/content/lib/fancybox/jquery.fancybox.min.css");
.font-1 {
  font-family: "Graphik", Arial, Helvetica, sans-serif !important;
}
.deLogoA:hover {
    cursor: pointer;
}
.cookie-popup {
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    bottom: -6.25rem;
    left: 1.25rem;
    right: 1.25rem;
    padding: 0.625rem 0.9375rem;
    box-shadow: 0 0 2rem 0 #26368b;
    line-height: 150%;
    transition: opacity .5s;
    opacity: 0;
    z-index: 222;
}

.cookie-popup--short {
    width: 30.875rem;
}

.cookie-popup--dark {
    background: #26368b;
    color: #fff;
}

.cookie-popup--not-accepted {
    opacity: 1;
    animation: cookie-popup-in .5s ease forwards;
}

.cookie-popup--accepted {
    opacity: 0;
}

.cookie-popup a {
    color: skyblue;
}

    .cookie-popup a:visited {
        color: skyblue;
        text-decoration: none;
    }

.cookie-popup-actions {
    flex: 1;
    text-align: right;
}

    .cookie-popup-actions button {
        color: #dbdcdd;
        border: none;
        background: none;
        font-family: inherit;
        font-style: inherit;
        font-size: inherit;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 0.75rem;
        padding: 0;
        cursor: pointer;
    }

        .cookie-popup-actions button:hover {
            text-decoration: underline;
        }

@keyframes cookie-popup-in {
    from {
        bottom: -6.25rem;
    }

    to {
        bottom: 1.25rem;
    }
}

/* <<< FONT */
/* --- */
/* GLOBAL --->>> */
/* ABSTRACTS --->>> */
/* LIBRARY >>> */
/* <<< LIBRARY */
/* --- */
/* COLORS >>> */
/* <<< COLORS */
/* --- */
/* VARIABLE >>> */
/* <<< VARIABLE */
/* --- */
/* MIXIN >>> */
/* <<< MIXIN */
/* --- */
/* FUNCTIONS >>> */
/* <<< FUNCTIONS */
/* --- */
/* ANIMATE >>> */
@-webkit-keyframes shake {
  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}
@keyframes shake {
  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}

.anim-shake {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@-webkit-keyframes mymove {
  0% {
    top: 0px;
  }
  25% {
    top: 200px;
  }
  50% {
    top: 100px;
  }
  75% {
    top: 200px;
  }
  100% {
    top: 0px;
  }
}

@keyframes mymove {
  0% {
    top: 0px;
  }
  25% {
    top: 200px;
  }
  50% {
    top: 100px;
  }
  75% {
    top: 200px;
  }
  100% {
    top: 0px;
  }
}

@-webkit-keyframes sliderBullet {
  from {
    padding-right: 0%;
  }
  to {
    padding-right: 2%;
  }
}

@keyframes sliderBullet {
  from {
    padding-right: 0%;
  }
  to {
    padding-right: 2%;
  }
}

@-webkit-keyframes playIconBreath {
  0% {
    width: 40px;
    height: 40px;
    left: 0%;
    top: 0%;
  }
  50% {
    width: 50px;
    height: 50px;
    left: -13%;
    top: -11%;
  }
  100% {
    width: 40px;
    height: 40px;
    left: 0%;
    top: 0%;
  }
}

@keyframes playIconBreath {
  0% {
    width: 40px;
    height: 40px;
    left: 0%;
    top: 0%;
  }
  50% {
    width: 50px;
    height: 50px;
    left: -13%;
    top: -11%;
  }
  100% {
    width: 40px;
    height: 40px;
    left: 0%;
    top: 0%;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes dropdownIn {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes dropdownIn {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

/* <<< ANIMATE */
/* --- */
/* RESET >>> */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0-modified | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: none;
  outline-style: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: none;
  outline-style: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
  outline: none;
  outline-style: none;
  box-shadow: none;
  border-color: transparent;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

img {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* <<< RESET */
/* <<<--- ABSTRACTS */
/* UTILITIES --->>> */
/* U-FONT >>> */
.fsize-0 {
  font-size: 0px !important;
}

.fsize-2 {
  font-size: 2px !important;
}

.fsize-4 {
  font-size: 4px !important;
}

.fsize-6 {
  font-size: 6px !important;
}

.fsize-8 {
  font-size: 8px !important;
}

.fsize-10 {
  font-size: 10px !important;
}

.fsize-12 {
  font-size: 12px !important;
}

.fsize-14 {
  font-size: 14px !important;
}

.fsize-16 {
  font-size: 16px !important;
}

.fsize-18 {
  font-size: 18px !important;
}

.fsize-20 {
  font-size: 20px !important;
}

.fsize-22 {
  font-size: 22px !important;
}

.fsize-24 {
  font-size: 24px !important;
}

.fsize-26 {
  font-size: 26px !important;
}

.fsize-28 {
  font-size: 28px !important;
}

.fsize-30 {
  font-size: 30px !important;
}

.fsize-32 {
  font-size: 32px !important;
}

.fsize-34 {
  font-size: 34px !important;
}

.fsize-36 {
  font-size: 36px !important;
}

.fsize-38 {
  font-size: 38px !important;
}

.fsize-40 {
  font-size: 40px !important;
}

.fsize-42 {
  font-size: 42px !important;
}

.fsize-44 {
  font-size: 44px !important;
}

.fsize-46 {
  font-size: 46px !important;
}

.fsize-48 {
  font-size: 48px !important;
}

.fsize-50 {
  font-size: 50px !important;
}

.fsize-52 {
  font-size: 52px !important;
}

.fsize-54 {
  font-size: 54px !important;
}

.fsize-56 {
  font-size: 56px !important;
}

.fsize-58 {
  font-size: 58px !important;
}

.fsize-60 {
  font-size: 60px !important;
}

.fsize-62 {
  font-size: 62px !important;
}

.fsize-64 {
  font-size: 64px !important;
}

.fsize-66 {
  font-size: 66px !important;
}

.fsize-68 {
  font-size: 68px !important;
}

.fsize-70 {
  font-size: 70px !important;
}

.fsize-72 {
  font-size: 72px !important;
}

.fsize-74 {
  font-size: 74px !important;
}

.fsize-76 {
  font-size: 76px !important;
}

.fsize-78 {
  font-size: 78px !important;
}

.fsize-80 {
  font-size: 80px !important;
}

.fsize-82 {
  font-size: 82px !important;
}

.fsize-84 {
  font-size: 84px !important;
}

.fsize-86 {
  font-size: 86px !important;
}

.fsize-88 {
  font-size: 88px !important;
}

.fsize-90 {
  font-size: 90px !important;
}

.fsize-92 {
  font-size: 92px !important;
}

.fsize-94 {
  font-size: 94px !important;
}

.fsize-96 {
  font-size: 96px !important;
}

.fsize-98 {
  font-size: 98px !important;
}

.fsize-100 {
  font-size: 100px !important;
}

/* <<< U-FONT */
/* U-COLORS >>> */
:root {
  --clr-white: #ffffff;
  --clr-black: #000000;
  --clr-yellow: #f9423a;
  --clr-orange: #f79420;
  --clr-green: #7fc03a;
  --clr-red: #f9423a;
  --clr-blue: #0071c0;
  --clr-blue-text: #233383;
  --clr-gray-text: #777677;
  --clr-gray-aside: #f8f8f8;
  --clr-gray-aside-border: #e8e8e8;
  --clr-gray-content-text: #666;
  --clr-gray-border: #d6d6d6;
  --clr-gradient-bgy-horizontal: linear-gradient(270deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%);
  --clr-gradient-bgy: linear-gradient(0deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%);
}

.clr-white {
  color: #ffffff !important;
}

.bg-clr-white {
  background-color: #ffffff !important;
}

.bg-img-clr-white {
  background: #ffffff !important;
}

.border-clr-white {
  border-color: #ffffff !important;
}

.border-img-clr-white {
  border-color: transparent !important;
  -o-border-image: #ffffff !important;
     border-image: #ffffff !important;
}

.clr-black {
  color: #000000 !important;
}

.bg-clr-black {
  background-color: #000000 !important;
}

.bg-img-clr-black {
  background: #000000 !important;
}

.border-clr-black {
  border-color: #000000 !important;
}

.border-img-clr-black {
  border-color: transparent !important;
  -o-border-image: #000000 !important;
     border-image: #000000 !important;
}

.clr-yellow {
  color: #f9423a !important;
}

.bg-clr-yellow {
  background-color: #f9423a !important;
}

.bg-img-clr-yellow {
  background: #f9423a !important;
}

.border-clr-yellow {
  border-color: #f9423a !important;
}

.border-img-clr-yellow {
  border-color: transparent !important;
  -o-border-image: #f9423a !important;
     border-image: #f9423a !important;
}

.clr-orange {
  color: #f79420 !important;
}

.bg-clr-orange {
  background-color: #f79420 !important;
}

.bg-img-clr-orange {
  background: #f79420 !important;
}

.border-clr-orange {
  border-color: #f79420 !important;
}

.border-img-clr-orange {
  border-color: transparent !important;
  -o-border-image: #f79420 !important;
     border-image: #f79420 !important;
}

.clr-green {
  color: #7fc03a !important;
}

.bg-clr-green {
  background-color: #7fc03a !important;
}

.bg-img-clr-green {
  background: #7fc03a !important;
}

.border-clr-green {
  border-color: #7fc03a !important;
}

.border-img-clr-green {
  border-color: transparent !important;
  -o-border-image: #7fc03a !important;
     border-image: #7fc03a !important;
}

.clr-red {
  color: #f9423a !important;
}

.bg-clr-red {
  background-color: #f9423a !important;
}

.bg-img-clr-red {
  background: #f9423a !important;
}

.border-clr-red {
  border-color: #f9423a !important;
}

.border-img-clr-red {
  border-color: transparent !important;
  -o-border-image: #f9423a !important;
     border-image: #f9423a !important;
}

.clr-blue {
  color: #0071c0 !important;
}

.bg-clr-blue {
  background-color: #0071c0 !important;
}

.bg-img-clr-blue {
  background: #0071c0 !important;
}

.border-clr-blue {
  border-color: #0071c0 !important;
}

.border-img-clr-blue {
  border-color: transparent !important;
  -o-border-image: #0071c0 !important;
     border-image: #0071c0 !important;
}

.clr-blue-text {
  color: #233383 !important;
}

.bg-clr-blue-text {
  background-color: #233383 !important;
}

.bg-img-clr-blue-text {
  background: #233383 !important;
}

.border-clr-blue-text {
  border-color: #233383 !important;
}

.border-img-clr-blue-text {
  border-color: transparent !important;
  -o-border-image: #233383 !important;
     border-image: #233383 !important;
}

.clr-gray-text {
  color: #777677 !important;
}

.bg-clr-gray-text {
  background-color: #777677 !important;
}

.bg-img-clr-gray-text {
  background: #777677 !important;
}

.border-clr-gray-text {
  border-color: #777677 !important;
}

.border-img-clr-gray-text {
  border-color: transparent !important;
  -o-border-image: #777677 !important;
     border-image: #777677 !important;
}

.clr-gray-aside {
  color: #f8f8f8 !important;
}

.bg-clr-gray-aside {
  background-color: #f8f8f8 !important;
}

.bg-img-clr-gray-aside {
  background: #f8f8f8 !important;
}

.border-clr-gray-aside {
  border-color: #f8f8f8 !important;
}

.border-img-clr-gray-aside {
  border-color: transparent !important;
  -o-border-image: #f8f8f8 !important;
     border-image: #f8f8f8 !important;
}

.clr-gray-aside-border {
  color: #e8e8e8 !important;
}

.bg-clr-gray-aside-border {
  background-color: #e8e8e8 !important;
}

.bg-img-clr-gray-aside-border {
  background: #e8e8e8 !important;
}

.border-clr-gray-aside-border {
  border-color: #e8e8e8 !important;
}

.border-img-clr-gray-aside-border {
  border-color: transparent !important;
  -o-border-image: #e8e8e8 !important;
     border-image: #e8e8e8 !important;
}

.clr-gray-content-text {
  color: #666 !important;
}

.bg-clr-gray-content-text {
  background-color: #666 !important;
}

.bg-img-clr-gray-content-text {
  background: #666 !important;
}

.border-clr-gray-content-text {
  border-color: #666 !important;
}

.border-img-clr-gray-content-text {
  border-color: transparent !important;
  -o-border-image: #666 !important;
     border-image: #666 !important;
}

.clr-gray-border {
  color: #d6d6d6 !important;
}

.bg-clr-gray-border {
  background-color: #d6d6d6 !important;
}

.bg-img-clr-gray-border {
  background: #d6d6d6 !important;
}

.border-clr-gray-border {
  border-color: #d6d6d6 !important;
}

.border-img-clr-gray-border {
  border-color: transparent !important;
  -o-border-image: #d6d6d6 !important;
     border-image: #d6d6d6 !important;
}

.clr-gradient-bgy-horizontal {
  color: linear-gradient(270deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
}

.bg-clr-gradient-bgy-horizontal {
  background-color: linear-gradient(270deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
}

.bg-img-clr-gradient-bgy-horizontal {
  background: -webkit-gradient(linear, right top, left top, color-stop(40%, #7fc03a), color-stop(40%, #0071c0), color-stop(70%, #0071c0), color-stop(70%, #f9423a)) !important;
  background: linear-gradient(270deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
}

.border-clr-gradient-bgy-horizontal {
  border-color: linear-gradient(270deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
}

.border-img-clr-gradient-bgy-horizontal {
  border-color: transparent !important;
  -o-border-image: linear-gradient(270deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
     border-image: -webkit-gradient(linear, right top, left top, color-stop(40%, #7fc03a), color-stop(40%, #0071c0), color-stop(70%, #0071c0), color-stop(70%, #f9423a)) !important;
     border-image: linear-gradient(270deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
}

.clr-gradient-bgy {
  color: linear-gradient(0deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
}

.bg-clr-gradient-bgy {
  background-color: linear-gradient(0deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
}

.bg-img-clr-gradient-bgy {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #7fc03a), color-stop(40%, #0071c0), color-stop(70%, #0071c0), color-stop(70%, #f9423a)) !important;
  background: linear-gradient(0deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
}

.border-clr-gradient-bgy {
  border-color: linear-gradient(0deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
}

.border-img-clr-gradient-bgy {
  border-color: transparent !important;
  -o-border-image: linear-gradient(0deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
     border-image: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #7fc03a), color-stop(40%, #0071c0), color-stop(70%, #0071c0), color-stop(70%, #f9423a)) !important;
     border-image: linear-gradient(0deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%) !important;
}

/* <<< U-COLORS */
/* <<<--- UTILITIES --->>> */
/* LAYOUT --->>> */
/* NAV >>> */
.menu-main {
  position: relative;
  padding: 20px 3.47222vw;
  width: 100%;
}

.menu-main.homepage {
  z-index: 150;
  position: absolute;
  background-color: transparent;
  color: #ffffff;
}

.menu-main.homepage .nav-link {
  color: white !important;
}

    .menu-main.homepage .nav-link:hover {
        color: rgba(255,255,255,0.6) !important;
    }

@media (max-width: 768px) {
  .menu-main.homepage .navbar-collapse {
    background-color: #233383;
  }
}

.menu-main.homepage .navbar-toggler {
  margin-right: 25px;
  border: 1px solid #ffffff;
}

.menu-main.homepage .navbar-toggler-icon {
  -webkit-filter: invert(100%) sepia(0%) saturate(7494%) hue-rotate(356deg) brightness(99%) contrast(103%);
          filter: invert(100%) sepia(0%) saturate(7494%) hue-rotate(356deg) brightness(99%) contrast(103%);
}

@media (max-width: 820px) {
  .menu-main {
    padding-left: 0;
    padding-right: 0;
  }
}

.menu-main .nav-link {
  font-size: 14px;
  font-size: clamp(13, 0.90278vw, 15);
  color: #000000 !important;
  margin: 0 1rem;
  font-weight:bold;
}

.menu-main .nav-link:hover {
  color: #233383 !important;
}

@media (max-width: 820px) {
  .menu-main .nav-link {
    font-size: 18px;
  }
}

.menu-main .logo {
  max-height: 60px;
  height: 4.86111vw;
  min-height: 90px;
  margin-right: 6.25vw;
  width: auto;
}

@media (max-width: 768px) {
  .menu-main .logo {
    margin-left: 25px;
  }
}

.menu-main .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;

}

.menu-main .navbar-collapse {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .menu-main .navbar-collapse {
    padding: 25px 0;
  }
}

.menu-main .navbar-collapse > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 990px) {
    .menu-main .navbar-collapse > ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: rgba(35,51,131,0.8);
        padding-top: 10px;
    }
}

.menu-main .navbar-toggler {
  margin-right: 25px;
  border: 1px solid #000000;
}

.menu-main .navbar-toggler-icon {
  background-image: url(/content/images/icon/navigation-menu.svg);
}

.menu-main .dropdown:nth-last-child(-n+3) .dropdown-menu {
  left: -5.5rem;
}

.menu-main .dropdown-menu {
  top: 3rem;
  left: 2.5rem;
  border-radius: 0 !important;
  padding-left: 53px;
  padding-right: 106px;
  padding-top: 27px;
  padding-bottom: 33px;
}

.menu-main .dropdown-menu:after {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #7fc03a), color-stop(40%, #0071c0), color-stop(70%, #0071c0), color-stop(70%, #f9423a));
  background: linear-gradient(0deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%);
  width: 1rem;
  height: 100%;
  top: 0;
  left: -1rem;
  z-index: 150;
}

@media (max-width: 990px) {
  .menu-main .dropdown-menu:after {
    left: -0.8rem;
  }
}

.menu-main .dropdown-menu.show {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-animation: fadeIn 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: fadeIn 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@media (max-width: 820px) {
  .menu-main .dropdown-menu.show {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.menu-main .dropdown-menu ul + ul {
  margin-left: 127px;
}

@media (max-width: 990px) {
  .menu-main .dropdown-menu ul + ul {
    margin-left: 0;
  }
}

.menu-main .dropdown-item {
  padding: 0;
  margin: 7.5px 0;
  padding: 7.5px 0;
  border-bottom: 1px solid #d6d6d6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  -webkit-transition: .2s;
  transition: .2s;
}

.menu-main .dropdown-item:before {

  display: block;
  font-size: 8px;
  margin-right: 5px;
  line-height: 0;
}

.menu-main .dropdown-item:hover, .menu-main .dropdown-item:focus {
  background: transparent;
  border-color: #233383;
  color: #233383;
  -webkit-transition: .2s;
  transition: .2s;
}
.menu-main .dropdown-item2 {
  width:200px;
  padding: 0;
  margin: 7.5px 0;
  padding: 7.5px 0;
  border-bottom: 1px solid #d6d6d6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  -webkit-transition: .2s;
  transition: .2s;
}

.menu-main .dropdown-item2:before {
  content: "►";
  display: block;
  font-size: 8px;
  margin-right: 5px;
  line-height: 0;
}

.menu-main .dropdown-item2:hover, .menu-main .dropdown-item:focus {
  background: transparent;
  border-color: #233383;
  color: #233383;
  -webkit-transition: .2s;
  transition: .2s;
}

.menu-main .dropdown-item:hover:before, .menu-main .dropdown-item:focus:before {
  color: #233383;
}

.menu-main .dropdown-in-dropdown {
  cursor: pointer;
}

.menu-main .dropdown-in-dropdown ul {
  position: relative;
  display: none;
  background: #f8f8f8;
  padding: 15px;
  padding-top: 0;
  margin-left: 1rem;
}

.menu-main .dropdown-in-dropdown ul::after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #7fc03a), color-stop(40%, #0071c0), color-stop(70%, #0071c0), color-stop(70%, #f9423a));
  background: linear-gradient(0deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%);
  position: absolute;
  left: 0;
  width: 1rem;
  height: 100%;
  top: 0;
}

.menu-main .dropdown-in-dropdown ul li {
  padding: 10px 0;
}

.menu-main .dropdown-in-dropdown.active {
  -webkit-transition: .2s;
  transition: .2s;
}

.menu-main .dropdown-in-dropdown.active ul {
  display: block;
  padding-left: 2rem;
}

.menu-main .dropdown-in-dropdown.active > a::before {
  content: "▼";
}

.menu-aside {
  height: 100%;
  background: #f8f8f8;
  padding-left: 10.41667vw;
  padding-right: 4.16667vw;
  padding-top: 45px;
}

@media (max-width: 820px) {
  .menu-aside {
    padding: 15px;
  }
}

.menu-aside-item {
  padding: 15px 0;
  border-bottom: 1px solid #e8e8e8;
}

.menu-aside-item a {
  color: #777677;
}

.menu-aside-item a.active {
  color: #233383;
}

.menu-aside-item:hover {
  border-bottom: 1px solid #233383;
}

.menu-aside-item:hover a {
  color: #233383;
}

.menu-aside-item--dropdown {
  cursor: pointer;
  position: relative;
}

.menu-aside-item--dropdown .menu-aside-dropdown {
  display: none;
}

.menu-aside-item--dropdown.active .menu-aside-dropdown {
  display: block;
}

.menu-aside-item--dropdown.active > a {
  margin-bottom: 1.5rem;
  display: block;
}

.menu-aside-item--dropdown.active::after {
  content: "▲";
}

.menu-aside-item--dropdown a {
  color: #777677 !important;
}

.menu-aside-item--dropdown::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 1rem;
  color: #233383;
}

.menu-aside-dropdown li {
  padding: 1rem 0;
  padding-left: 30px;
}

/* <<< NAV  */
/* --- */
/* HEADER >>> */
/* <<< HEADER */
/* --- */
/* BODY >>> */
img {
  width: 100%;
}

strong {
  font-weight: bold !important;
}

.bgy-horizontal-line {
  background: -webkit-gradient(linear, right top, left top, color-stop(40%, #7fc03a), color-stop(40%, #0071c0), color-stop(70%, #0071c0), color-stop(70%, #f9423a));
  background: linear-gradient(270deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%);
  height: 16px;
  width: 100%;
}

.bgy-vertical-line {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #7fc03a), color-stop(40%, #0071c0), color-stop(70%, #0071c0), color-stop(70%, #f9423a));
  background: linear-gradient(0deg, #7fc03a 40%, #0071c0 40%, #0071c0 70%, #f9423a 70%);
  height: 100%;
  width: 16px;
}

/* <<< BODY */
/* --- */
/* SECTION >>> */
@media (max-width: 820px) {
  .boxes {
    padding: 2rem !important;
  }
}

.boxes-contact {
  padding-left: 3.54167vw;
  padding-top: 4.02778vw;
  padding-right: 6.31944vw;
  padding-bottom: 7.98611vw;
}

.boxes-file {
  padding-left: 0vw;
  padding-top: 2.77778vw;
  padding-bottom: 7.98611vw;
  padding-right: 6.31944vw;
}

.boxes-file__title {
  padding-bottom: 1rem;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 3.47222vw;
}

.boxes-person {
  padding-left: 3.33333vw;
  padding-top: 2.77778vw;
  padding-bottom: 7.98611vw;
  padding-right: 6.31944vw;
}

.boxes-person__title {
  padding-bottom: 1rem;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 3.47222vw;
}

.boxes-news {
  padding-left: 3.33333vw;
  padding-top: 2.77778vw;
  padding-bottom: 7.98611vw;
  padding-right: 6.31944vw;
}

.blog-content__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 820px) {
  .blog-content__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.blog-content__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.blog-content__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2rem;
}

.blog-content__right--pr {
  padding-right: 17.36111vw;
}

.blog-content-gallery__top img {
  padding: 0 !important;
}

.blog-content-gallery__top a {
  padding-bottom: 3px !important;
}

.blog-content-gallery__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-content-gallery__bottom img {
  padding: 0 !important;
}

.blog-content-gallery__bottom a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 32%;
  padding: 3px !important;
}

.blog-content-gallery__bottom a:first-child {
  padding-left: 0 !important;
}

.blog-content-gallery__bottom a:last-child {
  padding-right: 0 !important;
}

.blog-content__text {
  padding-bottom: 8.68056vw;
  padding-top: 26px;
  padding-left: 3rem;
}

@media (max-width: 820px) {
  .blog-content__text {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.blog-content__title {
  padding: 0.5rem 0;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 1rem;
}

.blog-content__title--accordion {
  margin-top: 3.5rem;
  margin-bottom: 2rem;
  border: none;
}

.blog-content__detail {
  padding-right: 6.59722vw;
}

@media (max-width: 820px) {
  .blog-content__detail {
    padding-right: 0;
  }
}

.accordion--pr {
  padding-right: 6.59722vw;
}

@media (max-width: 820px) {
  .accordion--pr {
    padding: 0 15px;
  }
}

.accordion-item {
  border-left: none !important;
  border-right: none !important;
}

.accordion-button {
  outline: none !important;
  border: none !important;
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #233383 !important;
  font-weight: 500;
}

.accordion-button.collapsed {
  color: #000000 !important;
}

.accordion-button:hover, .accordion-button:focus {
  outline: none !important;
  border: none !important;
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: "\ef9a";
  background-image: none;
}

.accordion-button::after {
  content: "\efc2";
  font-family: "IcoFont" !important;
  background-image: none;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: #233383;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #ffffff !important;
  font-size: 8px !important;
}

.accordion__title {
  color: #233383 !important;
}

.list-arrow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6px;
  position: relative;
}

.list-arrow__num {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0071c0;
  padding-top: 35px;
  width: 100px;
  height: 135px;
  position: relative;
}

.list-arrow__num::after {
  content: "";
  position: absolute;
  bottom: -35px;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 35px solid #0071c0;
  z-index: 2;
}

.list-arrow__num::before {
  content: "";
  position: absolute;
  top: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 35px solid #fff;
}

.list-arrow__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 35px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  z-index: -1;
  min-width: 25rem;
}

.list-arrow__right:after {
  content: "";
  width: 15px;
  height: 55%;
  -webkit-box-shadow: 4px 0px 25px 0px #000000;
          box-shadow: 4px 0px 25px 0px #000000;
  top: 47px;
  left: -15px;
  position: absolute;
  z-index: 1;
}

.list-arrow__text {
  display: block;
  width: 100%;
  background: #0071c0;
  padding: 2rem;
}

.list-arrow__title {
  margin-bottom: 0.5rem;
}

.list-arrow__desc {
    font-size: 14px;
    font-size: clamp(14, 0.97222vw, 16);
    font-weight: normal;
    width: 600px
}

.timeline-color {
  width: 100%;
  height: 100%;
  position: relative;
}

.timeline-color .center-line {
  width: 1px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='2' stroke-dasharray='9' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  position: absolute;
  z-index: -1;
  left: 50%;
}

.timeline-color__item {
  padding: 2rem 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 820px) {
  .timeline-color__item {
    padding: 2rem 5%;
  }
}

.timeline-color__item--left {
  text-align: right;
}

.timeline-color__item--right {
  text-align: left;
}

.timeline-color__item > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.timeline-color__circle {
  width: 25px;
  max-width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 5px solid #0071c0;
  margin: 0 4rem;
  background: #f8f8f8;
}

.timeline-color__title {
  font-weight: bold;
  line-height: 1.25;
  font-size: 22px;
}

@media (max-width: 820px) {
  .timeline-color__title {
    font-size: 1rem;
  }
}

.timeline-color__text {
  width: 50%;
  position: relative;
  padding: 2rem 0;
  line-height: 1.5;
}

.timeline-color__text--left {
  text-align: right;
}

.timeline-color__text--right {
  text-align: left;
}

.timeline-color__border {
  width: 10px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
}

.timeline-color__border--left {
  left: -25px;
  right: unset;
}

.timeline-color__border--right {
  right: -25px;
  left: unset;
}

.timeline-color__triangle {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
}

.timeline-color__triangle--left {
  left: -10px;
  right: unset;
}

.timeline-color__triangle--right {
  left: unset;
  right: -10px;
}

/* <<< SECTION */
/* --- */
/* FOOTER >>> */
.footer {
  font-size: 12px;
  font-size: clamp(12, 0.83333vw, 14);
  color: #777677;
}

@media (max-width: 820px) {
  .footer {
    text-align: center;
  }
}

#cookiePolicyPage a {
    color: skyblue;
    text-decoration: underline skyblue;
    font-weight: bold;
}

#cookiePolicyPage a:hover {
    color: white;
    text-decoration: underline white;
    font-weight: bold;
}

#cookiePolicyDetail {
    color: skyblue;
    text-decoration: underline skyblue;
    font-weight: bold;
}

#cookiePolicyDetail:hover {
    color: white;
    text-decoration: underline white;
    font-weight: bold;
}

.footer a {
    color: #777677;
}

.footer__title {
  font-size: 14px;
  font-size: clamp(12, 0.97222vw, 16);
  margin-bottom: 1rem;
  font-weight: bold;
}

@media (max-width: 820px) {
  .footer__title {
    margin: 1rem 0;
  }
}

.footer-menu {
  padding: 3rem 0;
  padding-bottom: 2.5rem;
  border-top: 1px solid #d6d6d6;
}

.footer-menu ul li {
  line-height: 2.08;
}

.footer-logo {
  padding: 2.1rem 0;
}

.footer-logo__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 820px) {
  .footer-logo__company {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-logo__cert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 820px) {
  .footer-logo__cert {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 1rem;
  }
}

.footer-logo__cert img {
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  margin: 0 5px;
}

.footer-logo__social {
  padding: 12px 28px;
  border-radius: 38px;
  border: 1px solid #233383;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.footer-logo__social a {
  color: #233383;
}

.footer-last {
  padding: 1.2rem 0;
  border-top: 1px solid #d6d6d6;
  font-size: 10px;
  font-size: clamp(10, 0.69444vw, 12);
}

@media (max-width: 820px) {
  .footer-last p {
    margin: 1rem;
  }
}

/* <<< FOOTER */
/* <<<--- LAYOUT */
/* COMPONENTS --->>> */
/* TEXT >>> */
.text {
  color: #000;
  line-height: 1.5;
}

.desc {
  font-size: 14px;
  font-size: clamp(12, 0.97222vw, 16);
}

.date {
  font-size: 14px;
  font-size: clamp(12, 0.97222vw, 16);
}

.detail {
  color: #666;
  line-height: 1.57;
}

.detail p,
.detail img,
.detail ul {
  padding: 1rem 0;
}

.title {
  font-size: 32px;
  font-size: clamp(24, 2.22222vw, 40);
  font-weight: bold;
}

.title--underline {
  text-decoration: underline;
}

.title--blue {
  color: #233383 !important;
}

.title--mid {
  font-size: 26px;
  font-size: clamp(22, 1.80556vw, 30);
}

.title--small {
  font-size: 22px;
  font-size: clamp(18, 1.52778vw, 26);
}

.title--under-border {
  padding: 0.5rem 0;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 1rem;
}

.title--top-line {
  color: #233383;
  border: none;
  position: relative;
}

.title--top-line::before {
  content: "";
  max-width: 64px;
  width: 2.91667vw;
  min-width: 42px;
  height: 1px;
  background: #233383;
  position: absolute;
  top: 0;
}

.title--radio {
  color: #666;
  margin-bottom: 1rem;
  font-size: 10px;
  font-size: clamp(10, 0.69444vw, 10);
}

.textbox {
  border: 1px solid #000;
  height: 35px;
  padding: 4px 16px;
  color: #000;
  -webkit-transition: .2s;
  transition: .2s;
}

.textbox:focus {
  border-color: #000;
  border-left: 3px solid #000;
  color: #000;
  -webkit-transition: .2s;
  transition: .2s;
}

/* <<< TEXT  */
/* --- */
/*  BANNERS >>> */
.banner {
  max-height: 520px;
  height: 32.29167vw;
  min-height: 400px;
  position: relative;
  color: #ffffff;
}

.banner__bg {
  height: 100%;
  position: relative;
}

.banner__bg:after {
  content: '';
  position: absolute;
  background-image: -webkit-gradient(linear, right top, left top, from(#0e174700), color-stop(99%, #0e1747));
  background-image: linear-gradient(to left, #0e174700, #0e1747 99%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.banner__bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner__icon {
  height: 40px;
  margin-bottom: 1.5rem;
}

.banner__icon img {
  height: inherit;
  width: auto;
}

.banner__text {
  font-size: 14px;
  font-size: clamp(12, 0.97222vw, 16);
  line-height: 1.45;
  letter-spacing: -0.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 10.41667vw;
  top: 0;
  height: 100%;
  padding-right: 52.08333vw;
}

@media (max-width: 820px) {
  .banner__text {
    padding-right: 0;
    left: unset;
    padding: 0 2rem;
  }
}

.banner__title {
  line-height: 1.2;
  letter-spacing: -1px;
  font-size: 34px;
  font-size: clamp(28, 2.36111vw, 42);
  margin-bottom: 1.5rem;
}

.banner__desc {
  padding-right: 7.98611vw;
  line-height: 1.57;
  margin-bottom: 1.5rem;
}

.banner-hero {
  max-height: 316px;
  height: 16.38889vw;
  min-height: 200px;
  position: relative;
}

.banner-hero .bgy-horizontal-line {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.banner-hero__text {
  padding-top: 16px;
  color: #ffffff;
}

.banner-hero__title {
  font-size: 32px;
  font-size: clamp(26, 2.22222vw, 38);
  font-weight: 600;
}

.banner-hero__breadcrumb span {
  margin: 0 1rem;
}

/* <<< BANNERS  */
/* --- */
/* BUTTONS >>> */
.btn {
  font-weight: 500;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding: 15px 55px;
  border-radius: 8px;
  display: inline-block;
  -webkit-transition: .2s;
  transition: .2s;
  font-weight: 500;
}

.btn:hover {
  -webkit-transition: .2s;
  transition: .2s;
}

.btn:disabled {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  cursor: not-allowed;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn--radius {
  border-radius: 30px !important;
}

.btn--sharp {
  border-radius: 0;
}

.btn--white {
    background: #fff;
    color: #000;
    border: solid 1px #fff;
    width: 35%;
    min-width: 200px;
}

.btn--white:hover {
  background: #233383;
  color: #fff !important;
  border: solid 1px #000;
}

.btn--blue {
  background: #000;
  color: #fff;
  border: solid 1px #000;
}

.btn--blue:hover {
  background: #fff;
  color: #000;
}

.btn--navi {
  background: transparent;
  border: 1px solid #233383;
  padding: 7px 25px;
  vertical-align: middle;
border-radius: 30px !important;
}



/* <<< BUTTONS  */
/* --- */
/* BOX >>> */
.box {
  color: #000;
  padding: 15px;
}

.box:first-child {
  padding-left: 0;
}

@media (max-width: 768px) {
  .box:first-child {
    padding: 15px;
  }
}

.box:last-child {
  padding-right: 0;
}

@media (max-width: 768px) {
  .box:last-child {
    padding: 15px;
  }
}

.box__title {
  font-size: 1rem;
  line-height: 1.38;
  text-align: left;
  margin-bottom: 1rem;
}

.box__readmore {
  text-decoration: underline;
  font-weight: bold;
  font-size: 0.8rem;
  color: #000;
  text-align: left;
}

.box-card {
    height:75%;
  padding: 40px !important;
  color: #ffffff;
  position: relative;
  margin-top: -3.6rem;
  margin-bottom: 8.54167vw;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: .2s;
  transition: .2s;
}

@media (max-width: 820px) {
  .box-card {
    padding: 1rem !important;
    min-height: 240px;
    margin: 1rem 0;
  }
}

.box-card:hover {
  -webkit-transition: .2s;
  transition: .2s;
  margin-top: -6rem;
}

@media (max-width: 820px) {
  .box-card:hover {
    margin: 1rem 0;
  }
}

.box-card__icon {
  height: 46px;
  margin-bottom: 1rem;
}

.box-card__icon img {
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}

.box-card__title {
  font-weight: bold;
  font-size: 16px;
  font-size: clamp(14, 1.11111vw, 18);
  margin-bottom: 1rem;
}

.box-card__desc {
  font-size: 12px;
  font-size: clamp(10, 0.83333vw, 14);
  line-height: 1.56;
}

.box-contact {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f8f8f8;
  max-height: 480px;
  height: 23.61111vw;
  min-height: 300px;
  position: relative;
  margin-bottom: 6.31944vw;
}

@media (max-width: 820px) {
  .box-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .box-contact > * {
    margin-bottom: 2rem;
  }
}

.box-contact__text {
  padding-left: 4.86111vw;
  max-width: 480px;
  width: 23.61111vw;
  min-width: 300px;
}

.box-contact__map {
  position: absolute;
  max-width: 600px;
  width: 28.47222vw;
  min-width: 380px;
  max-height: 480px;
  height: 23.61111vw;
  min-height: 300px;
  top: 42.5px;
  right: -42.5px;
}

@media (max-width: 820px) {
  .box-contact__map {
    position: relative;
    top: unset;
    right: unset;
    height: 100%;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
    min-height: 100%;
    min-width: 100%;
  }
}

.box-contact__map iframe {
  width: 100%;
  height: 100%;
}

.box-contact__title {
  font-size: 24px;
  font-size: clamp(20, 1.66667vw, 28);
}

.box-contact ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 5px 0;
  line-height: 1.8;
}

.box-contact ul li span {
  vertical-align: middle;
}

.box-contact ul li a {
  color: #233383;
}

.box-contact ul li img {
  width: 15px;
  margin-right: 10px;
}

.box-file {
  padding: 0 !important;
  padding-right: 2rem !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f8f8f8;
  max-height: 168px;
  height: 10.27778vw;
  min-height: 128px;
  margin-bottom: 2.08333vw;
}

.box-file__icon {
  background: #f9423a;
  max-width: 145px;
  width: 9.02778vw;
  min-width: 130px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-file__icon img {
  width: 60px;
}

.box-file__text {
  line-height: 1.13;
  font-weight: 500;
  font-size: 14px;
  font-size: clamp(14, 1.11111vw, 18);
  margin-left: 1rem;
}

.box-file__text p {
  margin-bottom: 1rem;
}

.box-file__text a {
  color: #233383;
}

.box-file__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-file-line {
  margin-bottom: 1rem;
  padding: 15px 19px !important;
  max-height: 120px;
  height: 7.29167vw;
  min-height: 90px;
}

.box-file-line__icon {
  background: #f9423a;
  max-width: 104px;
  width: 6.52778vw;
  min-width: 85px;
  max-height: 84px;
  height: 5.13889vw;
  min-height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-file-line__icon img {
  width: 38.6px;
}

.box-person {
  text-align: center;
  font-size: 16px;
  font-size: clamp(14, 1.11111vw, 18);
}

.box-person__img {
  max-height: 347px;
  height: 18.05556vw;
  min-height: 260px;
  margin-bottom: 1rem;
}

.box-person__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 820px) {
  .box-person__img {
    max-height: 200px;
    height: 11.11111vw;
    min-height: 160px;
  }
}

.box-person__name {
  font-weight: bold;
  margin-bottom: 5px;
}

.box-news {
  background-color: #0071c036;
  padding: 2rem !important;
  -webkit-transition: .2s;
  transition: .2s;
  max-height: 275px;
  height: 15.625vw;
  min-height: 200px;
  display: block;
  cursor: pointer;
  margin-bottom: 2rem;
}

.box-news:hover {
  -webkit-transition: .2s;
  transition: .2s;
  background-color: #233383;
}

.box-news__icon {
  height: 44px;
  width: 44px;
  margin-left: auto;
}

.box-news__text {
  color: #ffffff !important;
}

.box-news__tag-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
  font-size: 10px;
  font-size: clamp(8, 0.69444vw, 12);
}

.box-news__date {
  font-size: 10px;
  font-size: clamp(8, 0.69444vw, 12);
}

.box-news__title {
  font-size: 16px;
  font-size: clamp(18, 1.38889vw, 22);
}

.box-news__readmore {
  text-decoration: none;
  font-size: 14px;
  font-size: clamp(14, 0.97222vw, 16);
  color: #ffffff !important;
}

/* <<< BOX  */
/* --- */
/* FORMS >>> */
.form {
  color: #000;
  padding-left: 3.54167vw;
  padding-top: 4.02778vw;
  padding-right: 6.31944vw;
  padding-bottom: 7.98611vw;
}

@media (max-width: 820px) {
  .form {
    padding: 2rem !important;
  }
}

.form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="number"],
.form select,
.form textarea {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 12px;
  border: 1px solid #d6d6d6;
}

.form input {
  max-height: 50px;
  z-index: 10;
  color: transparent;
}

.form input:focus {
  outline: none !important;
  color: #000;
}

.form input:valid {
  color: #000;
}

.form input:valid + label,
.form input:focus + label {
  -webkit-transition: .2s;
  transition: .2s;
  top: -8px;
  left: 15px;
  font-size: 11px;
  background: white;
  display: block;
  padding: 5px;
}

.form input.invalid:focus:invalid + label {
  top: 11px;
  font-size: 11.2px;
  font-weight: 900;
  color: red;
}

.form input.invalid:invalid + label {
  color: red;
  -webkit-transition: .2s;
  transition: .2s;
  top: 30%;
  left: 42px;
  font-weight: 900;
}

.form input.invalid:focus:invalid {
  border-color: red;
}

.form input.invalid:invalid {
  border-color: red;
}

.form label {
  position: absolute;
  top: 25%;
  left: 20px;
  -webkit-transition: .2s;
  transition: .2s;
  z-index: 5;
  font-size: 13px;
  font-weight: 500;
  color: #666;
}

.form button {
  display: block;
  margin-left: auto;
}

.form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #666;
}

.form__wrap--input {
  position: relative;
}

.form__wrap--radio {
  margin-bottom: 2rem;
}

.form__wrap--radio input {
  margin-right: 5px;
}

.form__wrap--radio p {
  margin-right: 15px;
}

.form__link {
  color: #233383;
  text-decoration: underline;
}

.form__desc {
  margin-bottom: 1rem;
  color: #666;
}

.form .warning-area {
  width: 100%;
}

.form .warning-area__check {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.31;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.form .warning-area__check input {
  margin-right: 15px;
}

.form-appeal__title {
  margin-bottom: 2rem;
}

.form-appeal__desc {
  margin-bottom: 2rem;
}

.checkbox {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none;
  background: #fff;
  border: 1px solid #000;
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
}

.checkbox:checked {
  background-color: #233383;
}

.checkbox:checked::before {
  content: "\2713";
  display: block;
  text-align: center;
  color: #fff;
  position: absolute;
  font-weight: bold;
  left: 3px;
  font-size: 9px;
}

/* <<< FORMS  */
/* --- */
/* LINKS >>> */
a {
  color: #000;
  text-decoration: none;
}

a[href] {
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}

a[href]:hover {
  color: #000;
  -webkit-transition: .2s;
  transition: .2s;
  text-decoration: none;
}

a.underline {
  text-decoration: underline !important;
}

.link {
  color: #000;
  -webkit-transition: .2s;
  transition: .2s;
}

.link:hover {
  -webkit-transition: .2s;
  transition: .2s;
  color: #000;
}

/* <<< LINKS  */
/* --- */
/* SLIDERS >>> */
.slider {
  max-height: 547px;
  height: 44.44444vw;
  min-height: 360px;
}

.slider .swiper {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slider .swiper-slide {
  height: inherit;
}

.slider__wrap {
  position: relative;
  height: inherit;
}

.slider__bg {
  height: inherit;
  position: relative;
}

.slider__bg:after {
  content: '';
  position: absolute;
  background-image: -webkit-gradient(linear, right top, left top, from(#0e174700), color-stop(99%, #0e1747));
  background-image: linear-gradient(to left, #0e174700, #0e1747 99%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.slider__bg img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider__text {
  font-size: 14px;
  font-size: clamp(12, 0.97222vw, 16);
  line-height: 1.45;
  letter-spacing: -0.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 10.41667vw;
  top: 0;
  height: 100%;
  padding-right: 52.08333vw;
}

@media (max-width: 820px) {
  .slider__text {
    padding: 0 2rem;
    left: unset;
  }
}

.slider__title {
  line-height: 1.2;
  letter-spacing: -1px;
  font-size: 34px;
  font-size: clamp(28, 2.36111vw, 42);
  margin-bottom: 1.5rem;
}

.slider__desc {
  padding-right: 7.98611vw;
  line-height: 1.57;
  margin-bottom: 1.5rem;
}

.slider-main {
  background-color: #233383;
}

@media (max-width: 820px) {
  .slider-main {
    min-height: 80vh;
  }
}

.slider-main__text {
  padding-top: 2.08333vw;
  color: #fff;
}

@media (max-width: 820px) {
  .slider-main__text {
    padding-top: 7rem;
  }
}

.slider-photo {
  margin-top: 8.47222vw;
  margin-bottom: 6.59722vw;
}

.slider-photo__wrap {
  padding-left: 29.23611vw;
}

@media (max-width: 820px) {
  .slider-photo__wrap {
    padding: 0;
  }
}

.slider-photo__img {
  max-height: 552px;
  height: 25.55556vw;
  min-height: 245px;
  width: 100%;
  margin-right: 6.04167vw;
}

@media (max-width: 820px) {
  .slider-photo__img {
    display: none;
  }
}

.slider-photo__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.slider-photo__text {
  color: #ffffff;
  position: relative;
  padding-right: 0;
  left: unset;
}

@media (max-width: 820px) {
  .slider-photo__text {
    padding: 0;
  }
}

.slider-photo__title {
  font-size: 16px;
  font-size: clamp(14, 1.11111vw, 18);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.slider-photo__desc {
  font-size: 13px;
  font-size: clamp(11, 0.90278vw, 15);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .slider__desc {
        min-width : 160px;
    }
}

.slider-photo__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  left: 0;
  top: 0;
  padding-left: 9.51389vw;
  padding-right: 17.84722vw;
}

@media (max-width: 820px) {
  .slider-photo__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 2rem;
    z-index: 15;
  }
}

.slider-photo .swiper-pagination {
  position: relative;
  text-align: left;
}

.slider-photo .swiper-pagination-bullet {
  color: #ffffff !important;
  background: #ffffff !important;
  margin: 0 5px;
  opacity: 1;
}

.slider-photo .swiper-pagination-bullet-active {
  color: #ffffff !important;
  background: #ffffff !important;
  width: 23px;
  border-radius: 25px;
}

/* <<< SLIDERS  */
/* <<<--- COMPONENTS */
/* <<<--- GLOBAL */
:root {
  font-family: "Graphik", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: clamp(14, 0.97222vw, 16);
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
        font-size: clamp(14, 0.97222vw, 14);
    }

    .btn--white {
        width: 58%;
    }

    .box-file-line__right {
        width: 25%;
    }

    .m-b {
        display: flex;
        justify-content: center;
        padding: 15px 0;
    }

    .blog-content__right {
        padding: 0 0;
    }

    .box:last-child {
        padding: 0 0;
    }

    .box:first-child {
        padding: 0 0;
    }

    .slider-main {
        min-height: 42vh;
    }

    .slider-main__text {
        padding-top: 21rem;
    }

    .slider__title {
        font-size: 18px;
    }

    .list-arrow__desc {
        width: 100%;
    }

    .list-arrow__right {
        padding: 10px 10px;
        min-width: 24rem;
    }

    .mb-img {
        display: flex;
        justify-content: center;
    }

    .m-img {
        width: 50%;
    }
    .list-arrow__num {
        color: #0071c0;
        background: none;
        padding-top: 0;
    }
        .list-arrow__num::before {
           
        display:none;
        }
        .list-arrow__num::after {
            display: none;
        }

    .list-arrow__right:after {
        display: none;
    }
}

.mce-preview-object {
    width: 100%;
    height: 100%;
}

/* <<< STYLES CSS */
/*# sourceMappingURL=style.css.map */

/* The Modal (background) */
.modal {
    display: block;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(191 202 220 / 90%);
}

/* Modal Content (Image) */
.modal-content {
    display: flex;
    margin: auto;
    width: 80%;
    max-width: 900px;
    justify-content: center;
    align-items: center;
}

    .modal-content img {
        width: 100%;
        height: auto;
    }

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: black;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
        color:white;
    }

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

@media only screen and (max-height: 600px) {
    .modal-content img {
        max-height: 500px;
    }

    .modal {
        padding-top: 50px;
    }
}
