/* CSS DIRECTORY
  1. Globals
  2. Text formats
  3. Buttons
  4. Form inputs
  5. Tables (tablepress)
  6. Main Header
  7. Main Content elements
  8. Main Footer elements
*/

/* Clean empty tags */

p:empty {
  display: none;
}

/* ============================= 1. Globals ============================= */

* {
  box-sizing: border-box;
}

body {
  font-family: "ValioOmnes";
  font-size: 16px;
  line-height: 1.4;
  font-weight: normal;
  color: #2d2b27;
}

.body-wrapper {
  overflow: hidden;
  margin: auto;
}

.wrapper {
  margin: 0 auto;
}

.inline-item {
  display: inline-block;
}

.flex-row {
  display: flex;
}

.col-1 {
  width: auto;
}

.col-2 {
  width: auto;
}

.col-20 {
  width: 20%;
}

.col-30 {
  width: 30%;
}

.col-40 {
  width: 40%;
}

.col-60 {
  width: 60%;
}

.col-70 {
  width: 70%;
}

.col-80 {
  width: 80%;
}

.col-33 {
  width: 33.333%;
}

.col-25 {
  width: 25%;
}

.col-50 {
  width: 50%;
}

.col-75 {
  width: 75%;
}

.col-100 {
  width: 100%;
}

.bg-yellow {
  background-image: linear-gradient(to bottom,
      #ffcb06,
      #ffc20b,
      #feb811,
      #fdaf17,
      #fba61c);
}

.bg-blue {
  background-image: linear-gradient(to top,
      #20409b,
      #2244a5,
      #2448ae,
      #274db8,
      #2951c2);
}

/* ============================= 2. Text formats ============================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0;
  color: #21419b;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

@media (max-width: 768px) {

  body:not(.elementor-page) h1,
  body:not(.elementor-page) h2,
  body:not(.elementor-page) h3,
  body:not(.elementor-page) h4,
  body:not(.elementor-page) h5,
  body:not(.elementor-page) h6 {
    text-align: center;
  }
}

a {
  text-decoration: none;
}

a,
a:focus,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

/* ============================= 3. Buttons ========================= */

.btn {
  display: inline-block;
  font-size: 14px;
  padding: 10px 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  user-select: none;
  border: 1px solid transparent;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  margin: 20px 0;
  border-radius: 20px;
  transition-duration: 0.5s;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  background-color: #ffffff;
  color: #2b2b2b;
  outline: none;
}

.btn.disabled {
  user-select: none;
  border: 1px solid #e3e3e3;
  cursor: default;
  box-shadow: none;
  background-color: #f8f8f8;
  color: #2b2b2b;
}

.btn:hover {
  text-decoration: none;
  border-color: #dddddd;
}

.btn.primary {
  background-color: #20409a;
  color: #ffffff !important;
}

.btn.primary:hover {
  background-color: #0f44da;
  border-color: #0969ce;
}

.btn.secondary {
  background-color: #fdb811;
  color: #ffffff;
}

.btn.secondary:hover {
  border-color: #ea9971;
  background-color: #e8a400;
}

.btn.success {
  background-color: #31ab67;
  color: #ffffff;
}

.btn.info {
  background-color: #3493ce;
  color: #ffffff;
}

.btn.warning {
  background-color: #ed893b;
  color: #ffffff;
}

.btn.danger {
  background-color: #db3633;
  color: #ffffff;
}

.btn.link {
  color: #0c81fd;
}

/* ============================= 4. Form inputs ============================= */

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently upported by Chrome and Opera */
}

body:not(.elementor-page) input,
body:not(.elementor-page) textarea,
body:not(.elementor-page) button,
.elementor-form input:not([type="checkbox"]):not([type="radio"]),
.elementor-form textarea,
.elementor-form button {
  outline: none;
  padding: 10px 20px;
  border-radius: 10px;
  line-height: 1.4;
  margin: 10px 0;
}

body:not(.elementor-page) input,
body:not(.elementor-page) textarea,
body:not(.elementor-page) button {
    border: none;
}

.elementor-form button[type="submit"],
.elementor-form input[type="submit"] {
    cursor: pointer;
}

.elementor-form input[type="checkbox"],
.elementor-form input[type="radio"] {
  display: inline-block;
  outline: none;
  border: none;
  border-radius: 10px;
  line-height: 1.4;
  margin: 10px 0;
}

body:not(.elementor-page) label,
.elementor-form label {
  display: block;
  cursor: pointer;
}

.elementor-widget-form .elementor-form-fields-wrapper.elementor-labels-above > .elementor-field-group > .elementor-field-label {
    font-weight: bold;
    color: #20409a;
}

body:not(.elementor-page) input[type="text"],
body:not(.elementor-page) input[type="tel"],
body:not(.elementor-page) input[type="email"],
body:not(.elementor-page) input[type="date"],
body:not(.elementor-page) input[type="number"],
body:not(.elementor-page) select,
body:not(.elementor-page) textarea,
.elementor-form input[type="text"],
.elementor-form input[type="tel"],
.elementor-form input[type="email"],
.elementor-form input[type="date"],
.elementor-form input[type="number"],
.elementor-form select,
.elementor-form textarea
{
  border: 1px solid #d6d6d6;
  background-color: #ffffff;
}

body:not(.elementor-page) input[type="text"]:focus,
body:not(.elementor-page) input[type="tel"]:focus,
body:not(.elementor-page) input[type="email"]:focus,
body:not(.elementor-page) input[type="number"]:focus {
  border: 1px solid #fec40a;
}

.elementor-element .elementor-form .elementor-form-fields-wrapper .elementor-field-group input[type="text"]:focus,
.elementor-element .elementor-form .elementor-form-fields-wrapper .elementor-field-group input[type="tel"]:focus,
.elementor-element .elementor-form .elementor-form-fields-wrapper .elementor-field-group input[type="email"]:focus,
.elementor-element .elementor-form .elementor-form-fields-wrapper .elementor-field-group input[type="number"]:focus {
    border: 1px solid #fec40a;
    box-shadow: none;
}

body:not(.elementor-page) input[type="number"]::-webkit-inner-spin-button,
body:not(.elementor-page) input[type="number"]::-webkit-outer-spin-button,
.elementor-form input[type="number"]::-webkit-inner-spin-button,
.elementor-form input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.error {
  color: #db3633;
}

.warning {
  color: #ed893b;
}

.success {
  color: #31ab67;
}

.info-box {
  font-weight: bold;
  text-align: center;
  color: #20409a;
  background: #f8f8f8;
  padding: 40px 20px;
  border-radius: 20px;
  font-size: 18px;
  text-align: center !important;
}

body:not(.elementor-page) input[type="text"].error {
  border: 1px solid #db3633;
}

body:not(.elementor-page) input[type="text"].warning {
  border: 1px solid #ed893b;
}

body:not(.elementor-page) input[type="text"].success {
  border: 1px solid #31ab67;
}

.contitions-registration input[type="checkbox"],
.newsletter-registration input[type="checkbox"],
.contitions-newsletter input[type="checkbox"],
.contitions-registration input[type="radio"],
.newsletter-registration input[type="radio"],
.contitions-newsletter input[type="radio"],
.elementor-form input[type="checkbox"],
.elementor-form input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

body:not(.elementor-page) input[type="radio"]+label:before,
body:not(.elementor-page) input[type="checkbox"]+label:before,
.elementor-form input[type="radio"]+label:before,
.elementor-form input[type="checkbox"]+label:before {
  content: "\00a0";
}

body:not(.elementor-page) input[type="radio"]+label:before,
.elementor-form input[type="radio"]+label:before {
  border-radius: 12px;
}

body:not(.elementor-page) input[type="radio"]+label:before,
body:not(.elementor-page) input[type="checkbox"]+label:before,
.elementor-form input[type="radio"]+label:before,
.elementor-form input[type="checkbox"]+label:before {
  border: 1px solid #d6d6d6;
  display: inline-block;
  height: 16px;
  margin: 0 10px 0 0;
  padding: 2px;
  vertical-align: top;
  width: 16px;
  border-radius: 3px;
}

.elementor-form input[type="radio"]+label,
.elementor-form input[type="checkbox"]+label,
.elementor-form .elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,
.elementor-form .elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,
.elementor-form .elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label {
    display: inline-block;
}

.elementor-form input[type="radio"]+label:before,
.elementor-form input[type="checkbox"]+label:before {
    box-sizing: content-box;
}

body:not(.elementor-page) input[type="radio"]:checked+label:before,
.elementor-form input[type="radio"]:checked+label:before {
  color: #0e3b9c;
  background: #fdb811;
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  text-align: center;
  font-weight: bold;
  line-height: 16px;
}

body:not(.elementor-page) input[type="checkbox"]:checked+label:before,
.elementor-form input[type="checkbox"]:checked+label:before {
  color: var(--e-a-btn-bg-info-active);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  text-align: center;
  font-weight: bold;
  line-height: 16px;
}

body:not(.elementor-page) input[type="checkbox"].invalid+label:before {
  border: 1px solid red;
}

body:not(.elementor-page) input[type="checkbox"].invalid:checked+label:before {
  border-color: transparent;
}

.elementor-field:focus:invalid {
    border: 1px solid red !important;
    transition: border-color 0.5s ease-out;
}

.valid,
body:not(.elementor-page) input[type="text"]:focus:valid,
body:not(.elementor-page) input[type="tel"]:focus:valid,
body:not(.elementor-page) input[type="email"]:focus:valid,
body:not(.elementor-page) input[type="date"]:focus:valid,
body:not(.elementor-page) input[type="number"]:focus:valid,
input.elementor-field[type="text"]:focus:valid,
input.elementor-field[type="tel"]:focus:valid,
input.elementor-field[type="email"]:focus:valid,
input.elementor-field[type="date"]:focus:valid,
input.elementor-field[type="number"]:focus:valid {
  border: 1px solid #a8eb8a;
  transition: border-color 0.5s ease-out;
}

body:not(.elementor-page) select,
.elementor-form select {
  border-radius: 10px;
  cursor: pointer;
  box-shadow: inset 0px 0px 5px rgba(85, 85, 85, 0.2);
  padding: 10px 40px 10px 20px;
  line-height: 1.4;
  margin: 10px 0;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
}

body:not(.elementor-page) select,
body:not(.elementor-page) select:focus,
.elementor-form select,
.elementor-form select:focus {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  outline: none;
}

.shake-horizontal {
  -webkit-animation: shake-horizontal 1s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: shake-horizontal 1s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

@keyframes shake-horizontal {

  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

/* ============================= 5. Tables (tablepress) ================================== */

.tablepress {
  margin-bottom: 2em;
  margin-top: 2em;
}

.tablepress td,
.tablepress th {
  padding: 10px 20px !important;
}

.tablepress .row-2 td {
  background-color: #ffea8a !important;
  font-weight: bold;
  color: #20409a;
}

.tablepress tbody tr:not(:first-child) .column-1 {
  background-color: #e8f2fc !important;
  font-weight: bold;
  color: #20409a;
}

.tablepress tfoot th,
.tablepress thead th {
  padding: 10px 20px;
}

.tablepress thead th {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.tablepress tfoot th {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.tablepress th,
.tablepress th,
.tablepress td {
  border-top: 1px solid #fff !important;
  line-height: 1.5;
}

.tablepress tbody td {
  border-top: 1px solid #fff !important;
  vertical-align: middle !important;
}

.tablepress tbody .column-1,
.tablepress thead .column-1 {
  text-align: center !important;
}

.tablepress .column-2,
.tablepress .column-3,
.tablepress .column-4,
.tablepress .column-5,
.tablepress .column-6,
.tablepress .column-7,
.tablepress .column-8,
.tablepress .column-9,
.tablepress .column-10 {
  text-align: right !important;
}

.tablepress thead th {
  text-transform: uppercase;
  text-align: center !important;
  background-color: #f7f7f7 !important;
  vertical-align: middle !important;
  color: #20409a !important;
  border: none !important;
}

.tablepress tfoot th {
  background-color: #f7f7f7 !important;
  font-weight: normal !important;
  vertical-align: middle;
  color: #28288c;
}

/* ============================= 6. Main Header ============================= */

.main-header .wrapper {
  position: relative;
  height: 100px;
  border-bottom: 6px solid #fec40a;
  background-color: #ffffff;
  background-image: url(../images/header-nav.png), conic-gradient(from 180deg, #20409a 0deg 180deg, /* left half blue */ #ffffff 180deg 360deg /* right half white */);
  background-repeat: no-repeat, no-repeat;
  background-size: auto, cover;
  background-position: center, center;
  display: flex;
  align-items: center;
}

.main-header-logo {
  height: 100%;
  display: inline-block;
}

.main-header-logo img {
  width: 180px;
  height: 100%;
  margin-left: 50px;
  margin-right: 50px;
}

.main-header-menu {
  display: inline-block;
}

.main-header-widget {
  margin-left: auto;
  display: flex;
  align-items: center;
  min-height: 100px;
}

.main-header-widget .widget-item {
  display: inline-block;
  vertical-align: middle;
  line-height: 100px;
  margin-right: 20px;
}

#mega-menu-wrap-headernav #mega-menu-headernav li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
  margin: 0 !important;
}

@media (max-width: 1370px) {
  .main-header-logo img {
    width: 130px;
    margin-left: 20px;
    margin-right: 30px;
  }
}

@media (max-width: 1200px) {
  .main-header .wrapper {
    background-color: #20409a;
    background-image: none;
  }

  .main-header-widget {
    display: none;
  }

  .main-header-menu {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: 20px;
  }
}

/* Page submenu */

.page-submenu {
  background-color: #20409a;
  height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.page-submenu-title {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

.page-submenu-title a {
  color: #ffffff;
}

.page-submenu-nav {
  list-style: none;
  margin: 0;
}

.page-submenu-nav .page_item a {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 14px;
}

.page-submenu-nav .current_page_item a {
  font-weight: bold;
}

@media only screen and (min-width: 1024px) {
  .page-submenu-title {
    margin-left: 20px;
  }

  .page-submenu-nav .page_item {
    display: inline-block;
  }

  .page-submenu-nav .page_item a {
    padding: 0 10px;
  }

  .page-submenu-nav .page_item a:hover,
  .page-submenu-title a:hover {
    color: #fec40a;
    text-decoration: none;
  }
}

@media only screen and (min-width: 1300px) {
  .page-submenu-title {
    min-width: 250px;
    margin-left: 60px;
  }
}

@media only screen and (max-width: 1024px) {
  .page-submenu-nav {
    padding-left: 20px;
  }

  .page-submenu {
    justify-content: center;
    position: relative;
  }

  .page-submenu-title {
    position: relative;
    height: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
  }

  .page-submenu-title:after {
    display: block;
    content: "";
    pointer-events: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #ffffff;
    margin-left: 5px;
  }

  .page-submenu-nav {
    background-color: #20409a;
    position: absolute;
    top: 70px;
    margin: 0;
    padding: 0;
    z-index: 1000;
    width: 100%;
    text-align: center;
    list-style: none;
    padding-bottom: 10px;
    display: none;
  }

  .page-submenu-nav .page_item a {
    padding: 10px 20px;
    display: block;
    text-decoration: none;
  }

  .page-submenu-open .page-submenu-title:after {
    display: block;
    content: "";
    pointer-events: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: none;
    border-bottom: 10px solid #ffffff;
    margin-left: 5px;
  }
}

/* Social media menu */

.social-media {
  position: fixed;
  top: 255px;
  left: 0;
  z-index: 1000;
  text-align: center;
}

.home .social-media {
  top: 200px !important;
}

@media only screen and (max-width: 1200px) {
  .social-media {
    display: none;
  }
}

.social-media .menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.social-media .menu li {
  width: 50px;
  transition-property: width;
  transition-duration: 0.5s;
}

.social-media .menu li:hover {
  width: 135px;
}

.social-media .menu a {
  background-color: #20409a;
  margin-bottom: 3px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  text-align: left;
}

.social-media .menu a:hover {
  background-color: #fdb811;
}

.social-media .menu a i {
  font-size: 22px;
  color: #ffffff;
  width: 50px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  line-height: 40px;
  text-align: center;
}

/* Search box */

.search .main-header-widget .searchform {
  display: none;
  /* Disable top search field in search page. */
}

.main-header-widget .searchform {
  position: relative;
  min-width: 42px;
}

.main-header-widget .searchform #s {
  transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s;
  width: 42px;
  height: 42px;
  border-radius: 21px;
  border: none;
  cursor: pointer;
  background: #ebebeb;
  margin: 0;
  right: 0px;
  top: -21px;
  position: absolute;
}

.main-header-widget .searchform #s+.search-icon {
  color: black;
}

.main-header-widget .searchform #s:hover {
  color: white;
  background: #c8c8c8;
}

.main-header-widget .searchform #s:hover+.search-icon {
  color: white;
}

.main-header-widget .searchform #s:focus {
  transition: width 0.6s cubic-bezier(0, 1.22, 0.66, 1.39), border-radius 0.6s,
    background 0.6s;
  border: none;
  outline: none;
  box-shadow: none;
  padding-left: 15px;
  cursor: text;
  width: 300px;
  border-radius: auto;
  background: #ebebeb;
  color: black;
}

.main-header-widget .searchform #s:focus+.search-icon {
  color: black;
}

.main-header-widget .searchform #s:not(:focus) {
  text-indent: -5000px;
}

.main-header-widget #searchsubmit {
  display: none;
}

.main-header-widget .search-icon {
  position: absolute;
  right: 12px;
  color: white;
  cursor: pointer;
  pointer-events: none;
  top: calc(50% - 8px);
}

/* Language switcher */

.wpml-ls-legacy-dropdown a {
  padding: 5px !important;
}

.wpml-ls-legacy-dropdown a {
  text-decoration: none !important;
}

/* Main header widget menu */

.main-header-widget * {
  list-style: none;
}

.main-header-widget .menu {
  padding: 0;
  margin: 0;
}

.main-header-widget .menu .menu-item a {
  padding: 10px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  background-color: #ffffff;
}

@media (max-width: 1370px) {
  .main-header-widget .menu .menu-item a {
    padding: 10px;
    font-size: 14px;
  }
}

.wpml-ls-legacy-dropdown {
  width: 5.5em;
  max-width: 100%;
}

.main-header-widget .menu .sub-menu {
  display: none;
}

.border-orange a {
  border: 2px solid #fdb811;
}

.border-orange a:hover {
  transition: background 0.6s;
  background-color: #fdb811 !important;
  color: #ffffff !important;
}

.border-blue a {
  border: 2px solid #20409a;
}

.border-blue a:hover {
  transition: background 0.6s;
  background-color: #20409a;
  color: #ffffff !important;
}

/* GPDR Notice */

#cookie-notice {
  font-size: inherit;
}

.cookie-notice-container {
  border-top: 2px solid #fec40a;
}

/* ============================= 7. Main Content elements ============================= */

.top-content,
.page-content,
.banner,
.video-banner,
.gallery,
.latest-posts,
.location-map,
.search-results,
.posts-container,
.page-newsletter,
.page-feedback,
.feedback-cards,
.page-signing,
.page-registration {
  margin-bottom: 80px;
}

.no-content {
  margin-bottom: 20px;
}

/* Top-content */

.top-content h1 {
  font-family: "Neucha", cursive;
  font-size: 3em;
  color: #fec40a;
  font-weight: normal;
}

.top-content-image-wrapper {
  position: relative;
  container-type: inline-size;
}

.top-content>.flex-row {
  position: relative;
  width: 100%;
}

.top-content-image {
  width: 100%;
}

.top-content .image {
  position: relative;
}

.top-content-textbox {
  background-position: center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  position: absolute;
  width: 60%;
  padding: 10% 9% 7% 14%;
  text-align: center;
  font-size: 1.4vw;
  color: #20409a;
  inset: 0;
  margin: auto;
  margin-left: -50px;
  height: 48%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.top-content-textbox-button {
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9vw;
  background: white;
  color: inherit;
  padding: 3% 10%;
  border-radius: 20em;
}

@media (max-width: 900px) {
  .top-content-textbox {
    font-size: 2.5vw;
  }

  .top-content-textbox-button {
    font-size: 1.8vw;
  }
}

.top-content .item {
  padding: 0 80px;
  background-color: #ffffff;
}

.top-content .item .top-content-text a {
  color: #547fff;
  font-weight: bold;
}

.top-content .item strong,
.top-content .item b {
  color: #20409a;
  font-weight: bold;
}

@media (min-width: 1880px) {
  .home .top-content .item {
    background-image: url(../images/top-content-side.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: initial;
  }
}

.top-content-buttons {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.top-content-buttons .btn {
  margin: 0;
}

.top-content-person {
  padding-top: 10px;
  font-weight: bold;
  color: #20409a;
  align-items: center;
}

.top-content-person .inline-item:first-child {
  padding-right: 40px;
}

.top-content-person .ocupation {
  color: #fdb811;
  font-size: 28px;
  padding-right: 10px;
  text-transform: uppercase;
}

.top-content-person .name {
  color: #20409a;
  font-size: 28px;
  text-transform: uppercase;
}

.top-content-person .email,
.top-content-person .phone {
  font-weight: 500;
  margin-bottom: 0px;
  font-size: 18px;
}

.top-content-person .phone {
  margin-top: 5px;
}

.top-content-person img {
  display: block;
  width: 130px;
  border: none;
  border-radius: 100%;
  background-color: #fec40a;
  height: 130px;
}

@media (max-width: 1650px) {
  .top-content .item {
    padding: 0;
    padding-left: 40px;
    padding-right: 20px;
  }
}

@media (max-width: 1200px) {
  .top-content h1 {
    font-size: 2.5em;
  }

  .top-content-person .name {
    display: block;
  }

  .top-content-person .ocupation,
  .top-content-person .name {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .top-content>.flex-row {
    flex-wrap: wrap;
  }

  .top-content .item {
    padding: 0 20px;
  }

  .top-content .col-50 {
    width: 100%;
  }

  /* .top-content-person {
    justify-content: center;
  } */

  .top-content-person .name {
    display: inline-block;
  }

  .top-content .item h1,
  .top-content-button {
    text-align: center;
  }

  .top-content .item>p {
    text-align: justify;
    text-justify: inter-word;
  }
}

@media (max-width: 768px) {
  .top-content-person .inline-item:first-child {
    padding-right: 20px;
  }

  .top-content-person .ocupation,
  .top-content-person .name {
    font-size: 20px;
  }

  .top-content-person img {
    width: 120px;
    height: 120px;
  }
}

/* Page default styles */

.container {
  position: relative;
  margin: auto;
}

@media (min-width: 1240px) {
  .container {
    width: 1200px;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page-content p {
  text-align: justify;
  text-justify: inter-word;
}

@media (max-width: 500px) {
  .page-content p {
    text-align: left;
    text-justify: inter-word;
  }
}

.page-content a.pdf i {
  margin-right: 10px;
  font-size: 22px;
  color: #fdb811;
  margin-bottom: 5px;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.page-content .alignleft {
  float: left;
  margin-right: 20px;
}

.page-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-content .alignright {
  float: right;
  display: block;
  margin-left: 20px;
}

.page-content .wp-caption {
  text-align: center;
}

.page-content .wp-caption.alignnone {
  text-align: left;
}

.page-content .wp-caption.alignnone .wp-caption-text {
  text-align: left;
}

.page-content .wp-caption p.wp-caption-text {
  margin: 5px 0 0;
  padding: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 100;
  font-style: italic;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {

  .page-content .wp-caption,
  .page-content .wp-caption.alignnone,
  .page-content .wp-caption.alignnone .wp-caption-text {
    text-align: center;
  }

  .page-content .alignleft,
  .page-content .aligncenter,
  .page-content .alignright,
  .page-content .alignnone {
    display: block;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #fff3ba;
  margin: 1em 0;
  padding: 0;
  padding-bottom: 10px;
}

.page-content a {
  color: #547fff;
  font-weight: bold;
}

.page-content strong,
.page-content b {
  color: #20409a;
  font-weight: bold;
}

.page-content blockquote {
  padding: 20px;
  background-image: linear-gradient(to bottom,
      #ffea8a,
      #fee882,
      #fde67a,
      #fce372,
      #fbe16a);
  border-radius: 20px;
  margin: 2em 0;
  color: #20409a;
}

.page-content blockquote a {
  display: inline-block;
  color: #20409a;
}

.page-content .hidden-block {
  margin: 20px 0;
}

.page-content .hidden-content {
  display: none;
}

.hidden-block-list {
  margin-bottom: 0.25em;
}

.hidden-block-list-button {
  color: #fdb812;
  font-weight: bold;
  cursor: pointer;
}

.hidden-block-list-button i {
  font-size: 12px;
}

.hidden-block-list-content {
  display: none;
  padding: 20px;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(229, 229, 229, 0.5);
  margin-top: 10px;
  border-radius: 5px;
}

.hidden-block-list-content ul {
  margin-bottom: 0;
}

.page-content .gallery,
.post-content .gallery {
  margin: 0px;
}

.responsive-iframe {
  border-radius: 20px;
  margin: 20px 0;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .vertical-video {
    width: 30% !important;
    aspect-ratio: 324 / 576;
    height: auto !important;
  }
}

/* Boxmenu */

.boxmenu {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.boxmenu-background {
  background-color: #fdb909;
  background-image: url(../images/menu-bg.png);
  background-size: auto;
  background-repeat: repeat-y;
  border-radius: 20px;
  padding: 40px 20px;
}

.boxmenu-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.boxmenu-heading {
  text-align: center;
  padding-bottom: 40px;
  margin: 0;
}

.boxmenu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.boxmenu-item {
  text-align: center;
  padding: 20px;
  margin: 10px;
  border-radius: 20px;
  min-height: 380px;
  max-width: 380px;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: center;
  align-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  text-decoration: none;
}

.boxmenu-item:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .boxmenu-item {
    background-size: cover;
    background-position: center;
    margin: 0 0 20px 0;
  }
}

.boxmenu-item.bg-img:before,
.boxmenu-item.bg-color:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  z-index: 0;
  transition: 0.3s;
}

.boxmenu-item.bg-img:before {
  background-color: rgba(32, 64, 154, 0.7);
}

.boxmenu-item:hover.bg-img:before {
  background-color: rgba(32, 64, 154, 0.25);
}

.boxmenu-item.bg-color.bg-blue:before,
.boxmenu-item.bg-color.bg-yellow:before {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.boxmenu-item:hover.bg-color.bg-blue:before {
  background-image: url(../images/boxmenu-bg-yellow.png);
  background-size: cover;
  opacity: 1;
}

.boxmenu-item:hover.bg-color.bg-yellow:before {
  background-image: url(../images/boxmenu-bg-blue.png);
  background-size: cover;
  opacity: 1;
}

.boxmenu-item-title {
  font-size: 2em;
}

.boxmenu-item-title,
.boxmenu-item-subtext {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  margin: auto;
  text-align: center;
  text-shadow: 0px 0px 10px #2143a2;
}

.boxmenu-item-title,
.boxmenu-item-subtext,
.boxmenu-item-button {
  width: 100%;
  z-index: 100;
}

.boxmenu-item-button {
  width: inherit;
  margin: auto;
  margin-top: 40px;
}

/* Banner */

.banner .col-1 {
  width: 45vw;
}

.banner .col-2 {
  width: 55vw;
}

.banner {
  background-color: #20409a;
  padding: 40px 20px;
  border-radius: 20px;
  position: relative;
  margin: 8% 20px;
}

.banner .image {
  position: absolute;
  min-height: 470px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: calc(50% - 235px);
  left: 2vw;
  width: 35vw;
}

.banner .item {
  text-align: center;
}

.banner-heading,
.banner-subheading {
  color: #ffffff;
  font-size: 20px;
}

.banner-heading {
  font-family: "Neucha", cursive;
  font-size: 5vw;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.banner-button .btn {
  margin-top: 40px;
  margin-bottom: 0;
}

@media only screen and (min-width: 1925px) {
  .banner {
    max-width: 1920px;
    margin: 190px auto;
  }
}

@media only screen and (min-width: 1920px) {
  .banner .col-1 {
    width: 45%;
  }

  .banner .col-2 {
    width: 55%;
  }

  .banner .image {
    left: 0vw;
    width: 45%;
  }

  .banner-heading {
    font-size: 5em;
  }
}

@media only screen and (max-width: 799px) {
  .banner {
    margin: 0px 20px 80px 20px;
  }

  .banner .image {
    display: none;
  }

  .banner-heading {
    font-size: 8vw;
  }

  .banner-subheading {
    font-size: 16px;
  }

  .banner .image {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    left: 0%;
    width: 100%;
    z-index: 1;
  }

  .banner .col-1 {
    display: none;
  }

  .banner .col-2 {
    width: 100%;
    z-index: 100;
  }
}

/* Video banner */

.video-banner {
  background-color: #20409a;
  background-image: url(../images/video-bg.png);
  background-size: auto;
  background-repeat: no-repeat;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 280px;
  border-radius: 20px;
  position: relative;
}

.video-banner:has(.video-banner-heading) {
  margin-top: 320px;
}

.video-banner-heading {
  text-align: center;
  position: absolute;
  margin-top: -250px;
  width: 100%;
}

.video-wrapper {
  background-image: url(../images/video-tv.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 650px;
  position: absolute;
  height: 550px;
  margin-top: -200px;
  left: calc(50% - 325px);
}

.video-banner .video {
  border-radius: 20px;
  overflow: hidden;
}

@media only screen and (min-width: 1925px) {
  .video-banner {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 768px) {
  .video-banner {
    height: 350px;
  }

  .video-banner .video {
    position: absolute;
    top: 180px;
    left: 75px;
    width: 500px;
    height: 280px;
  }
}

@media only screen and (max-width: 768px) {
  .video-banner {
    background: transparent;
    margin: 280px 20px 80px 20px;
  }

  .video-banner-heading {
    margin-top: -60px;
  }

  .video-wrapper {
    width: 100%;
    height: auto;
    position: relative;
    left: 0%;
    padding: 13%;
    padding-top: 26%;
  }

  .video-banner .video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }

  .video-banner .video iframe,
  .video-banner .video object,
  .video-banner .video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* Gallery */

.gallery {
  margin-left: 20px;
  margin-right: 20px;
}

.gallery .gallery-wrapper {
  max-width: 1200px;
  margin: auto;
}

.gallery .gallery-heading {
  text-align: center;
  padding-bottom: 40px;
  margin: 0;
}

.gallery .grid {
  padding: 0;
  margin: 0;
  list-style: none;
  margin: 0 auto;
}

.gallery .grid-item {
  width: 290px;
  margin: 5px;
  position: relative;
  transition: 0.5s;
}

.gallery .grid img {
  border-style: none;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

.gallery .grid-item:hover:after {
  background-color: rgba(32, 64, 154, 0.7);
  animation: fade linear;
  opacity: 1;
}

.gallery .grid-item:after {
  animation: fade linear alternate;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00e";
  top: 0;
  left: 0;
  position: absolute;
  font-size: 30px;
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: inherit;
  opacity: 0;
  border-radius: 10px;
}

.gallery .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fec40a;
  padding: 3px 20px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 100%;
  text-align: center;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 768px) {
  .gallery .grid-item {
    width: 140px;
    margin: 5px;
    position: relative;
    transition: 0.5s;
  }
}

/* Latest posts */

.latest-posts-heading {
  text-align: center;
  margin-bottom: 30px;
}

.latest-posts-button {
  text-align: center;
}

.latest-posts-button .btn {
  margin-top: 10px;
  margin-bottom: 0;
}

/* Location map */

.location-map {
  margin-left: 20px;
  margin-right: 20px;
}

.location-map-heading {
  text-align: center;
  margin-bottom: 40px;
}

.map {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 500px;
}

.marker-text {
  text-align: center;
}

@media only screen and (min-width: 1925px) {
  .location-map {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Breadcrumbs */

.breadcrumbs {
  margin-top: 40px;
  text-transform: uppercase;
  color: #20409a;
  font-size: 14px;
}

.breadcrumbs a {
  font-weight: bold;
  color: #20409a;
}

.breadcrumbs i {
  font-size: 11px;
  margin: 0 8px;
}

@media (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}

/* Posts page */

.posts-content {
  margin: 0 auto;
  max-width: 1200px;
}

.posts-title {
  text-align: center;
  margin-top: 80px;
}

.posts-category-menu .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.posts-category-menu .menu-item {
  display: inline-block;
}

.posts-category-menu .menu-item a {
  padding: 10px 20px;
  background-color: #f9f9f9;
  color: #20409a;
  text-transform: uppercase;
  border: 1px solid #fff;
  display: block;
}

.posts-category-menu .menu-item a:hover {
  text-decoration: none;
  color: #0c81fd;
}

.posts-category-menu .current-menu-item a {
  background-color: #eaeaea;
}

.posts-category-menu .menu-item:first-child a {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.posts-category-menu .menu-item:last-child a {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-right: none;
}

@media (max-width: 1200px) {
  .posts-category-menu .menu {
    margin-top: 20px;
  }

  .posts-title {
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .posts-category-menu .menu-item {
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .posts-category-menu .menu-item a {
    border-radius: 20px;
  }
}

.posts-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.post-list-item {
  width: 380px;
  margin: 10px;
  position: relative;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(229, 229, 229, 0.5);
  transition: box-shadow 0.3s ease-in-out;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 800px) {
  .post-list-item {
    margin: 10px 20px;
  }
}

.post-list-item:hover {
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.15);
}

.post-link:hover {
  text-decoration: none;
}

.post-category {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fec40a;
  color: #ffffff;
  padding: 5px 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom-right-radius: 20px;
}

.post-tag-new,
.post-tag-full,
.post-tag-category {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  padding: 5px 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
}

.post-tag-category,
.post-tag-new {
  background-color: #20409a;
}

.post-tag-full {
  background-color: #f44336;
  z-index: 9999;
}

.post-image {
  margin: 0;
  padding: 0;
  width: 100%;
}

.post-image img {
  width: 100%;
  border-radius: 22px;
}

.post-text {
  padding: 0px 20px 20px 20px;
  text-align: center;
}

.post-list-item .post-title {
  color: #2d2b27;
}

.post-time {
  color: #727272;
}

.posts-container .pagination {
  margin-top: 30px;
}

/* Single post page */

.post-img {
  position: relative;
  width: 50%;
  float: left;
  margin-right: 40px;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
}

.featured-image {
  display: block;
  width: 100%;
}

.post-content p {
  text-align: justify;
  text-justify: inter-word;
}

@media only screen and (max-width: 768px) {
  .post-img {
    float: none;
    width: 100%;
    margin-top: 40px;
  }

  .post-content .post-time {
    display: block;
    text-align: center;
  }
}

.addtoany_list a,
.widget .addtoany_list a {
  padding: 0 !important;
}

/* Hobby School and Support Service page */

.hobby-school .post-text,
.support-service .post-text,
.service-cards .post-text {
  padding: 0px 20px 40px 20px;
}

.hobby-school .post-list-item .post-title,
.support-service .post-list-item .post-title,
.service-cards .post-list-item .post-title {
  color: #20409a;
  margin: 0;
}

.hobby-school .location,
.support-service .location,
.support-service .specialist,
.service-cards .location,
.service-cards .specialist,
.service-cards .time {
  color: #2d2b27;
}

.filter-label,
.filter {
  display: inline-block;
}

.filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 10px;
  padding: 0 40px;
  justify-content: space-between;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(229, 229, 229, 0.5);
}

.filter-item {
  padding: 20px 10px;
}

.filter-title {
  margin-top: 0;
  padding: 20px 0px;
}

.filter-label {
  font-weight: bold;
  padding-right: 10px;
}

.service-filter .btn-round.active {
  padding: 10px 12px;
  display: flex;
  justify-content: center;
  align-self: center;
  align-items: center;
}

.service-filter .filter-button-reset {
  display: none;
  color: #cf2e2e;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px;
}

.hobby-school .loader,
.hobby-school .no-posts,
.support-service .loader,
.support-service .no-posts,
.service-cards .loader,
.service-cards .no-posts {
  margin: 80px auto;
}

@media only screen and (max-width: 1240px) {

  .hobby-school .posts-content,
  .support-service .posts-content,
  .service-cards .posts-content {
    margin: 0 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .filter-wrapper {
    justify-content: center;
  }

  .filter-item {
    padding: 0 20px;
  }

  .filter-button {
    width: 100%;
    margin: 20px;
  }

  .filter-title {
    text-align: center;
    width: 100%;
    margin-top: 0;
    padding: 20px;
  }
}

@media only screen and (max-width: 800px) {

  .hobby-school .post-list-item,
  .support-service .post-list-item,
  .service-cards .post-list-item {
    margin: 10px 0;
  }

  .filter-item {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
  }

  .filter-item:last-child {
    padding-bottom: 0;
  }

  .filter-label,
  .filter {
    display: block;
    margin: auto;
  }
}

/* Hobby School single page and Support Service single page */

.page-single-card,
.page-hobby-school,
.page-support-service,
.page-service-card {
  margin: 40px 0;
}

.hobby-type,
.service-type,
.page-single-card .card-type {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fec40a;
  color: #ffffff;
  padding: 5px 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
}

.hobby-img,
.service-img,
.page-single-card .card-img {
  position: relative;
  padding: 0;
  margin: 0;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.hobby-content,
.service-content,
.page-single-card .card-content {
  padding-left: 40px;
}

.hobby-list,
.service-list,
.page-single-card .card-list {
  padding: 0;
  list-style: none;
}

.hobby-list-item,
.service-list-item,
.page-single-card .card-list-item {
  font-size: 18px;
  margin-bottom: 5px;
}

.hobby-list-item b,
.service-list-item b,
.page-single-card .card-list-item b {
  width: 35%;
  display: inline-block;
}

.tabs,
.page-single-card .tabs {
  margin-top: 50px;
}

.tabs .tab-link,
.page-single-card .tabs .tab-link {
  text-transform: uppercase;
  margin-bottom: 0;
  color: #969696;
  font-size: 18px;
  text-decoration: none;
  background-color: #f8f8f8;
  padding: 15px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: inline-block;
  font-weight: normal;
}

.tabs .tab-link:not(:first-child),
.page-single-card .tabs .tab-link:not(:first-child) {
  margin-left: 3px;
}

.tabs .tab-link.active,
.page-single-card .tabs .tab-link.active {
  color: #ffffff;
  background-color: #20409a;
}

.tabs .tab,
.page-single-card .tabs .tab {
  display: none;
}

.tabs .tab.active,
.page-single-card .tabs .tab.active {
  display: block;
  border-top: 1px solid rgb(248, 248, 248);
}

.lc-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.lc-buttons .btn {
  margin-bottom: 0;
}

.lc-buttons--vertical {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 40px;
}

.lc-buttons--vertical .btn {
  margin: 0;
}

@media only screen and (max-width: 1024px) {

  .page-hobby-school,
  .page-support-service,
  .page-service-card,
  .page-single-card {
    flex-wrap: wrap;
  }

  .page-hobby-school .col-50,
  .page-support-service .col-50,
  .page-service-card .col-50,
  .page-single-card .col-50 {
    width: 100%;
  }

  .hobby-img,
  .service-img,
  .page-single-card .card-img {
    text-align: center;
  }

  .hobby-content,
  .service-content,
  .page-single-card .card-content {
    padding-left: 0px;
  }
}

@media only screen and (max-width: 768px) {

  .page-hobby-school,
  .page-service-card,
  .page-single-card {
    margin: 40px 0px;
  }

  .hobby-list-item,
  .hobby-list-item p,
  .hobby-registration-button,
  .lc-buttons,
  .service-list-item,
  .service-registration-button,
  .tab-links,
  .page-single-card .card-list-item,
  .page-single-card .card-list-item p,
  .page-single-card .card-registration-button,
  .page-single-card .tabs .tab-link {
    text-align: center;
  }

  .lc-buttons {
    justify-content: center;
  }

  .lc-buttons--vertical {
    align-items: center;
  }

  .hobby-list-item b,
  .service-list-item b,
  .page-single-card .card-list-item b {
    width: auto;
    white-space: pre;
  }

  .tabs .tab-link,
  .page-single-card .tabs .tab-link {
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 10px;
    width: 100%;
  }

  .tabs .tab-link:not(:first-child),
  .page-single-card .tabs .tab-link:not(:first-child) {
    margin-left: 0px;
    margin-top: 3px;
  }

  .hobby-list-item p,
  .page-single-card .card-list-item p {
    margin: 0;
  }
}

/* Our Team page */

.division-top {
  display: flex;
  justify-content: flex-start;
  height: 100px;
  justify-items: center;
  margin-bottom: 20px;
}

.division-icon {
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 20px;
}

.division-heading {
  font-family: "Neucha", cursive;
  font-size: 4em;
  color: #fec40a;
  font-weight: normal;
  margin-left: 0;
  margin-top: 0;
  line-height: 100px;
}

.division-content {
  margin-bottom: 80px;
}

.members-list {
  display: flex;
  justify-content: start;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.member {
  text-align: center;
  padding: 20px;
}

.member-img {
  padding-bottom: 10px;
}

.member-img img {
  background-color: #ffffff;
  width: 160px;
  height: 160px;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
  filter: contrast(1.1) saturate(1.1);
  transition: 0.3s;
}

.member-info {
  max-width: 160px;
}

.member-name {
  color: #20409a;
  font-weight: bold;
  margin-bottom: 0;
}

.member-contacts {
  font-size: 14px;
}

.member-description {
  display: none;
}

.team-members {
  margin-bottom: 80px;
  text-align: center;
}

.team-members .members-list {
  justify-content: center;
}

@media only screen and (max-width: 1200px) {
  .division-top {
    justify-content: center;
  }

  .division-heading {
    font-size: 3em;
  }

  .members-list {
    justify-content: center;
  }
}

@media only screen and (max-width: 768px) {
  .members-list {
    padding: 0;
  }

  .division-icon {
    display: none;
  }

  .division-top {
    height: auto;
  }

  .division-heading {
    font-size: 3em;
    line-height: initial;
    text-align: center;
    margin-left: 0;
  }
}

/* Search page */

.search-box {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.search-wrapper {
  display: flex;
}

.search-box .search-field {
  width: 90%;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin: 0;
}

.search-box .search-submit {
  width: 60px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin: 0;
  background-color: #fec40a;
  color: #ffffff;
}

.search-box .search-field,
.search-box .search-submit {
  display: inline-block;
}

.search-box .note {
  text-align: center;
  color: #9e9e9e;
}

.search-list {
  list-style: none;
  margin: 40px 0 80px 0;
  padding: 0;
}

.search-list-item {
  flex-wrap: nowrap;
  border: 1px solid #f1f1f1;
  padding: 20px 40px;
  display: flex;
  justify-content: flex-start;
  border-radius: 10px;
  margin-bottom: 20px;
  align-items: center;
}

.search-list-heading {
  text-align: center;
}

.no-result {
  justify-content: center;
}

.search-result-heading,
.search-result-time {
  margin: 0;
  padding: 0;
  padding-right: 40px;
  border-right: 1px solid #f1f1f1;
  margin-right: 40px;
  width: auto;
  white-space: nowrap;
}

@media only screen and (max-width: 960px) {

  .search-result-heading,
  .search-result-time {
    border-right: none;
    margin-bottom: 10px;
    padding-right: 0px;
    white-space: normal;
  }

  .search-list-item {
    flex-wrap: wrap;
  }
}

/* Newsletter and feedback page */

.img-newsletter,
.img-feedback {
  width: 100%;
}

.form-newsletter .feedback-wrapper {
  max-width: 800px;
  text-align: justify;
  text-justify: inter-word;
  padding: 0 20px;
}

.heading-newsletter,
.heading-feedback {
  font-family: "Neucha", cursive;
  font-size: 5em;
  color: #fec40a;
  font-weight: normal;
  max-width: 800px;
}

.heading-newsletter,
.form-newsletter,
.feedback-wrapper {
  padding: 0 20px;
}

.form-newsletter a {
  color: #547fff;
  font-weight: bold;
}

.form-newsletter strong,
.form-newsletter b {
  color: #20409a;
  font-weight: bold;
}

.form-newsletter .col-40 {
  margin-right: 20px;
}

.success-newsletter,
.error-newsletter {
  padding: 20px;
  text-align: center;
  margin: 20px 0;
  border-radius: 40px;
  font-weight: bold;
}

.success-newsletter {
  background-color: #31ab67;
  color: #ffffff;
}

.error-newsletter {
  background-color: #ed893b;
  color: #ffffff;
}

.feedback-wrapper .rwmb-button {
  display: inline-block;
  font-size: 14px;
  padding: 10px 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  user-select: none;
  border: 1px solid transparent;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  margin: 20px 0;
  border-radius: 20px;
  transition-duration: 0.5s;
  box-shadow: 2px 2px 5px rgb(0 0 0 / 20%);
  text-align: center;
  background-color: #20409a;
  color: #fff;
  outline: none;
}

.feedback-wrapper .rwmb-button:hover {
  background-color: #0f44da;
  border-color: #0969ce;
}

.feedback-wrapper .rwmb-field {
  flex-direction: column;
}

.feedback-wrapper select:focus,
.feedback-wrapper textarea:focus,
.feedback-wrapper input:focus {
  border: 1px solid #fec40a;
}

.feedback-wrapper p.rwmb-error {
  margin-top: -15px;
}

.img-feedback.svg {
  padding: 40px;
}

@media (max-width: 1400px) {

  .heading-newsletter,
  .heading-feedback {
    font-size: 4em;
  }
}

@media (max-width: 1200px) {

  .heading-newsletter,
  .heading-feedback {
    font-size: 3em;
  }
}

@media (max-width: 900px) {

  .page-newsletter .col-50,
  .page-feedback .col-50 {
    width: 100%;
  }

  .page-newsletter .flex-row,
  .page-feedback .flex-row {
    display: flex;
    flex-wrap: wrap;
  }

  .page-newsletter .form-newsletter .col-50,
  .page-newsletter .form-newsletter .col-40,
  .page-feedback .feedback-wrapper .col-50,
  .page-feedback .feedback-wrapper .col-40 {
    width: 100%;
    margin: 10px 0;
  }

  .button-newsletter {
    text-align: center;
  }

  .page-newsletter .btn {
    margin: 20px auto;
  }
}

/* Feedback button */

.feedback>* {
  transition: 0.5s;
}

.feedback {
  position: fixed;
  bottom: -180px;
  left: 20px;
  transform: scale(0);
  animation: scale 1s;
  animation-fill-mode: forwards;
  z-index: 10000;
  box-shadow: 2px 2px 5px rgb(0 0 0 / 20%);
  border-radius: 20px;
  border-bottom-left-radius: 0;
  user-select: none;
  overflow: hidden;
}

.feedback-btn {
  text-align: center;
  font-size: 14px;
  padding: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  background-color: #ffffff;
  color: #20409a !important;
  text-decoration: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.feedback-btn:hover {
  text-decoration: none;
}

.feedback.small .feedback-btn-txt {
  width: 0;
  height: 0;
  overflow: hidden;
}

.feedback.small:hover .feedback-btn-txt {
  width: 100px;
  height: 35px;
  transition: 0.2s;
}

.feedback.small .feedback-btn {
  padding: 10px;
}

.feedback-btn .feedback-icon {
  width: 90px;
  margin-bottom: 10px;
}

.feedback.small .feedback-btn .feedback-icon {
  width: 50px;
  margin: 0;
}

.feedback.small:hover .feedback-btn .feedback-icon {
  width: 90px;
  transition: 0.2s;
}

@keyframes scale {
  100% {
    transform: scale(1);
    bottom: 20px;
  }
}

/* Client Feedback Cards */
.feedback-cards-heading {
  text-align: center;
  padding-bottom: 40px;
  margin: 0;
}

.feedback-cards-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
}

.feedback-card {
  padding: 30px 50px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: 0.5s;
}

.feedback-card-text {
  font-style: italic;
  font-weight: 500;
  user-select: none;
}

.feedback-card-name {
    font-weight: 500;
    margin-top: 10px;
    text-align: right;
    font-size: smaller;
}

.feedback-card:hover {
  transform: scale(1.2);
  z-index: 100;
}

.feedback-card-text::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 22px;
  color: #fcb900ed;
  display: block;
  text-align: left;
  margin-bottom: 5px;
  margin-left: -10px;
}

.feedback-card-text::after {
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 22px;
  color: #fcb900ed;
  display: block;
  text-align: right;
  margin-top: 5px;
  margin-right: -10px;
}

.feedback-show-more {
  grid-column: 1/-1;
  text-align: center;
}

.feedback-show-more-content {
  display: none;
}

/* Signing page */

#smartid-login-block .login-button {
  cursor: pointer;
  display: inline-block !important;
  padding: 8px 15px;
  margin: 5px;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(229, 229, 229, 0.5);
  transition: box-shadow 0.3s ease-in-out;
  border-radius: 20px;
  padding-bottom: 0px;
}

#smartid-login-block .login-button:hover {
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.15);
}

#smartid-login-block .login-button img {
  border-radius: 0;
}

.heading-signing {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 0;
}

.subtext-signing {
  text-align: center;
  margin-bottom: 40px;
}

.contract-signing {
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.contract-signing .response-signing {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 20px;
  text-align: center;
  margin-top: 0;
}

.response-signing strong {
  text-transform: uppercase;
}

.methods-signing {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.methods-signing img {
  border-radius: 0;
}

@media (max-width: 768px) {
  .contract-signing {
    box-shadow: none;
    padding: 0px;
    border-radius: 0px;
  }
}

/* Virtual Course Page */

.course-video-preview .course-name {
  margin-top: 0;
  line-height: 1;
}

.course-video {
  position: relative;
  padding: 0;
  margin: 0;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.course-video iframe {
  padding: 0;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.course-type {
  line-height: 1.4;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fec40a;
  color: #ffffff;
  padding: 5px 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
}

.course-video .course-type {
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
}

.course-video .responsive-iframe {
  margin: 0;
}

.course-list-item-age {
  font-weight: bold;
  color: #6d6d6d;
}

.course-list-item-price {
  font-size: 1.17em;
  color: #20409a;
  font-weight: bold;
}

.course-list-item-description {
  border-top: 3px solid #f8f8f8;
  margin: 0 -20px;
  padding: 0 20px;
  padding-top: 20px;
  color: #2d2b27 !important;
}

.access-granted-button {
  display: inline;
  font-size: 14px;
  padding: 10px 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin: 20px 0;
  border-radius: 20px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #2b2b2b;
}

.term-link {
  padding: 10px 0;
}

.post-password-form {
  padding: 20px;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 400px;
  border: 1px solid #eaeaea;
  border-bottom: 5px solid #e0e0e0;
}

.hobby-list-item.description {
  display: flex;
}

.hobby-list-item.description ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 65%;
}

.course-list-item-description ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.course-list-item-description li {
  margin-top: 5px;
}

.password-label {
  width: 100%;
  box-shadow: inset 0px 0px 5px rgba(85, 85, 85, 0.2);
  border-radius: 10px;
}

.password-label input {
  width: 82%;
  box-shadow: none;
  border-radius: 0px;
}

.password-label i {
  color: #20409a;
}

.post-password-form h3,
.post-password-form p {
  text-align: center;
}

.post-password-form input[type="submit"] {
  display: inline-block;
  font-size: 14px;
  padding: 10px 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  user-select: none;
  border: 1px solid transparent;
  font-weight: bold;
  cursor: pointer;
  margin: 20px 0;
  border-radius: 20px;
  transition-duration: 0.5s;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  background-color: #fdb811;
  color: #ffffff;
  outline: none;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .course-video {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .virtual-course .hobby-img {
    margin-bottom: 0.67em;
  }

  .hobby-list-item.description,
  .hobby-list-item.description ul {
    display: block;
    width: 100%;
  }
}

/* 404 page */

.page-404 .container {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.img-404 {
  background-image: url(../images/404.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  width: 380px;
  height: 350px;
}

.info-404,
.img-404 {
  display: inline-block;
  padding: 0 20px;
}

.heading-404 {
  color: #20409a;
  font-family: "Neucha", cursive;
  font-size: 5em;
  font-weight: normal;
}

.text-404 {
  font-size: 20px;
  font-weight: bold;
  color: #fec40a;
}

.heading-404,
.text-404 {
  max-width: 600px;
}

@media (max-width: 1100px) {

  .heading-404,
  .text-404 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .heading-404 {
    font-size: 3em;
  }

  .text-404 {
    font-size: 16px;
  }
}

/* Pagination */

.pagination {
  text-align: center;
  font-size: 14px;
}

.pagination span,
.pagination a {
  padding: 5px 15px;
  text-decoration: none;
  color: #fff;
  background: #20409a;
  transition: background 0.15s ease-in-out;
  border-radius: 20px;
  margin: 1px;
  display: inline-block;
}

.pagination a:hover {
  color: #fff;
  background: #0969ce;
}

.pagination .current {
  background: #fec40a;
  color: #fff;
}

/* Contact form 7 */

.wpcf7-not-valid {
  border: 1px solid rgba(223, 101, 39, 0.55);
  box-shadow: inset 0 0 1px #df6527;
}

span.wpcf7-not-valid-tip {
  color: #df6527;
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-top: -15px;
  margin-bottom: -20px;
}

div.wpcf7-validation-errors {
  border: 1px solid #df6527;
  margin: 0;
  font-size: 14px;
}

div.wpcf7-mail-sent-ok {
  border: 1px solid #6be867;
  font-size: 14px;
  margin: 0;
}

/* Modal */

.vp-modal-open {
  overflow: hidden;
}

.vp-modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  height: 0vh;
  background-color: transparent;
  overflow: hidden;
  transition: background-color 0.25s ease;
  z-index: 9999;
  flex: 1;
  overflow: auto;
}

.vp-modal.open {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgb(5 13 35 / 90%);
  transition: background-color 0.25s;
}

.vp-modal.open>.vp-modal-content-wrapper {
  transform: scale(1);
}

.vp-modal .vp-modal-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 2.5rem rgb(0 0 0 / 50%);
  transform: scale(0);
  transition: transform 0.25s;
  transition-delay: 0.15s;
  margin-top: 60px;
  height: max-content;
  max-width: 800px;
}

.vp-modal .vp-modal-header,
.vp-modal .vp-modal-content,
.vp-modal .vp-modal-footer {
  box-sizing: border-box;
  padding: 20px;
  position: relative;
}

.vp-modal .vp-modal-content .response-data {
  min-width: 300px;
  min-height: 300px;
}

.vp-modal .vp-modal-content-wrapper .vp-modal-close {
  border: none;
  background-color: transparent;
  font-size: inherit;
  cursor: pointer;
  line-height: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.vp-modal .vp-modal-content-wrapper .vp-modal-close svg {
  width: 24px;
  height: 24px;
  fill: #242526;
}

.vp-modal .vp-modal-content-wrapper .vp-modal-close:hover svg {
  fill: #d63638;
}

.vp-modal .vp-modal-content-wrapper .vp-modal-header {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  border-bottom: 3px solid #ffcc00;
}

.vp-modal .vp-modal-content-wrapper .vp-modal-header h3 {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
  color: #242526;
  text-transform: initial;
}

/* ============================= 8. Main Footer elements ============================= */

.main-footer {
  padding-bottom: 20px;
}

.main-footer .wrapper {
  background-color: #f8f8f8;
  padding: 40px 20px;
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-footer .inline-item {
  padding: 0px 40px 0 0px;
}

.main-footer .inline-item:last-child {
  padding: 0px;
}

.main-footer .inline-item h4 {
  padding-bottom: 10px;
}

.main-footer .menu-item a {
  padding: 5px 0;
  display: block;
  color: #727272;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

.main-footer .menu-item a:hover {
  color: #0c81fd;
}

.main-footer-bottom {
  text-align: center;
  background: #ffffff;
  height: 100px;
}

.main-footer-copyright {
  color: #727272;
  padding: 20px;
  padding-bottom: 10px;
}

.main-footer-logo img {
  height: 38px;
}

.main-footer .textwidget p {
  margin: 5px 0;
}

.main-footer .footer-social-media {
  margin-top: 10px;
}

.main-footer .social-item {
  padding: 0 10px;
  color: #20409a;
  font-size: 30px;
}

.main-footer .social-item:hover {
  color: #0c81fd;
}

@media (max-width: 1050px) {
  .main-footer .wrapper {
    background-image: none;
  }

  .main-footer .inline-item,
  .main-footer .inline-item:last-child {
    padding: 0 20px;
    text-align: center;
    margin-bottom: 20px;
  }

  .main-footer-logo img {
    height: 28px;
  }
}

@media (max-width: 768px) {
  .main-footer .inline-item {
    width: 100%;
  }
}

/**
 * ----------------------------------------
 * animations
 * ----------------------------------------
 */
.puff-in-center {
  animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

@keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.sb-buttons .sb-btn.sb-submit {
  color: #ffffff !important;
}

/* Scroll state transitions for header and submenu */

.main-header .wrapper {
  transition: height 0.3s ease;
}

.main-header-logo img {
  transition: width 0.3s ease, margin 0.3s ease;
}

.main-header-widget {
  transition: min-height 0.3s ease;
}

.main-header-widget .widget-item {
  transition: line-height 0.3s ease;
}

.page-submenu {
  transition: height 0.3s ease, top 0.3s ease;
}

/* Reduced sizes when scrolling */

.is-scrolling .main-header .wrapper {
  height: 70px;
}

.is-scrolling .main-header-logo img {
  width: 130px;
  margin-right: 30px;
}

.is-scrolling .main-header-widget {
  min-height: 70px;
}

.is-scrolling .main-header-widget .widget-item {
  line-height: 70px;
}

.is-scrolling .page-submenu {
  height: 50px;
}

@media (max-width: 1370px) {
  .is-scrolling .main-header-logo img {
    width: 100px;
    margin-left: 15px;
    margin-right: 20px;
  }
}
