body { height: 100%;
  margin: 0;
  font-family: Merriweather;
}
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: white; /* alebo tvoje pozadie */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.site-wrapper > main {
  padding-top: 60px;
}
main  {  flex: 1;}
.category-grid .category-item h3 a {
  color: #b80000;
  text-decoration: none;
}
.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-color: #F6BE00;
padding: 40px 0;
}
body.archive .cid-tBomRGn5Ms {
  background-image: none !important;
}
body.category .cid-tBomRGn5Ms {
  height: auto !important;
  overflow: visible !important;
  padding: 30px 0;
}

.moko{font-size:3rem;font-family:Merriweather;serif; }

.mbr-section-head2 {
  border-radius: 12px;
  background-color: #f8f8f8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;margin-bottom:30px; 
}
.gridovy .item-wrapper {
  width: 100%;
  padding: 15px 15px 40px;
  border: 2px solid #8a8a8a;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background: #efefe5;
  transition: .3s all;
}

.custom-bottom-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0; /* medzera hore a dole */
  background-color: #f9f9f9; /* voliteÄ¾nÃ© pozadie pre oddelenie */
  box-sizing: border-box;
}

.custom-bottom-banner img {
  width: 900px; /* alebo 728px */
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* voliteÄ¾nÃ©: zaoblenie rohov */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* voliteÄ¾nÃ½ tieÅˆ */
}

/* Kontajner pre obsah kategÃ³rie */
.category-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.category-item p {
    margin: 0;
    font-size: 1.1em; /* Menší text pre popis */
    color: #000;
    line-height: 1.5;
}


.category-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item h3 {font-family: Merriweather;
    margin: 0;padding:5px;
    font-size: 1.4em;
}
.category-grid .category-item h3 a {
  color: #198754; !important;
  text-decoration: none;
}
.category-link {
    text-decoration: none;
    color: #B80000;
    display: block;
}

.category-grid .category-item h3 a:hover {
  color: #900000 !important;
}
.no-posts {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Responzívny dizajn */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
.no-posts {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Responzívny dizajn */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}/* JednotlivÃ½ prÃ­spevok */
article {
    background: #fff; /* Biela pre svetlÃ½ motÃ­v */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.5s ease; 
flex-direction: column; /* Stack content vertically */

}

article:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Nadpis prÃ­spevku */
.post-title {
    font-size: 1.6rem;
    margin: 0 0 10px;
}

.post-title a {
    color: #b80000; /* WordPress modrÃ¡ */
    text-decoration: none;
}

.post-title a:hover {
    text-decoration: underline;
}

/* NÃ¡hÄ¾adovÃ½ obrÃ¡zok */
.post-thumbnail {
    margin-bottom: 15px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

/* VÃ½Åˆatok prÃ­spevku */
.post-excerpt {text-align:left; !important;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Limits text to 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Adds "..." for truncated text */
    flex-grow: 1; /* Allows excerpt to take available space */
}

/* MetaÃºdaje */
.post-meta {
    font-size: 0.9rem;
    color: #888;
}

/* PaginaÃ§Ã£o */
.navigation {
    margin-top: 30px;
    text-align: center;
}

.navigation a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.navigation a:hover {
    background: #005177;
}

/* TmavÃ½ motÃ­v */
@media (prefers-color-scheme: dark) {
    .category-title {
        color: #e0e0e0;
    }

    .category-description {
        color: #b0b0b0;
    }

    article {
        background: #1a1a1a;
        border-color: #333;
    }

    .post-title a {
        color: #55aaff;
    }

    .post-excerpt {
        color: #ccc;
    }

    .post-meta {
        color: #aaa;
    }
}

/* ResponzÃ­vny dizajn */
@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
    }

    .posts-container {
        grid-template-columns: 1fr;
    }
}

.full-content-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.navbar-nav {
  gap: 30px; /* rozostupy medzi poloÅ¾kami menu */
  display: flex !important; /* aby poloÅ¾ky boli v riadku */
  justify-content: center;
  align-items: center;
  width: 100%;
}

.navbar-nav .nav-link {
  color: #000 !important; /* prepÃ­Å¡e modrÃº */
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase; /* malÃ© na VEÄ½KÃ‰ */
  padding: 30px 15px;
}

/* Ak chceÅ¡ zachovaÅ¥ veÄ¾kÃ© prvÃ© pÃ­smeno, pouÅ¾i namiesto toho: */
.navbar-nav .nav-link {
  text-transform: capitalize;
}

#navbar {
  position: sticky;
  top: 0;
  overflow: hidden;
  
}

.mbr-section-subtitle  mbr-fonts-style mb-0 display-42 {text-align:justify;}

main {margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.site-footer {
  margin-top: 0 !important;
}
.display-1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  line-height: 1.15;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-10 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.5rem;
  line-height: 1.15;
}
.display-2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  line-height: 1.15;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.0rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-9 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-9 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.38rem;font-weight:500;
  line-height: 1.5;
}
.display-8 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;font-weight:500;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.725rem;
}
.display-44 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;font-weight:500;
  line-height: 1.5;text-align: justity;
}
.display-42 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;font-weight:500;
  line-height: 1.5;text-align: justity;
}
.liba{text-align: justity;}

/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.104rem;
    font-size: calc( 1.133rem + (1.38 - 1.133) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.133rem + (1.38 - 1.133) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #fc7942 !important;
}
.bg-success {
  background-color: #a6b1d8 !important;
}
.bg-info {
  background-color: #5189b8 !important;
}
.bg-warning {
  background-color:  #F6BE00 !important;
}
.bg-danger {
  background-color: #b63b07 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fc7942 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #131313 !important;
  background-color: #fc7942 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #131313 !important;
  background-color: #e44604 !important;
  border-color: #e44604 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #131313 !important;
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #131313 !important;
  background-color: #6abe83 !important;
  border-color: #6abe83 !important;
}
.btn-info,
.btn-info:active {
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #131313 !important;
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #131313 !important;
  background-color: #345c7f !important;
  border-color: #345c7f !important;
}
.btn-success,
.btn-success:active {
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #131313 !important;
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #131313 !important;
  background-color: #6a7cbe !important;
  border-color: #6a7cbe !important;
}
.btn-warning,
.btn-warning:active {
  background-color:  #F6BE00 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #131313 !important;
  background-color:  #F6BE00 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #131313 !important;
  background-color: #efc71d !important;
  border-color: #efc71d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #131313 !important;
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #131313 !important;
  background-color: #632004 !important;
  border-color: #632004 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #131313 !important;
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #131313 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #131313 !important;
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #131313 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fc7942;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #e44604 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #fc7942 !important;
  border-color: #fc7942 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6d8b5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6abe83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #275836 !important;
  background-color: #a6d8b5 !important;
  border-color: #a6d8b5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5189b8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #345c7f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #5189b8 !important;
  border-color: #5189b8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6b1d8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6a7cbe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a6b1d8 !important;
  border-color: #a6b1d8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color:  #F6BE00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #efc71d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5e4d06 !important;
  background-color:  #F6BE00 !important;
  border-color:  #F6BE00 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b63b07;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #632004 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b63b07 !important;
  border-color: #b63b07 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #131313;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #131313 !important;
  border-color: #131313 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #fc7942 !important;
}
.text-secondary {
  color: #a6d8b5 !important;
}
.text-success {
  color: #a6b1d8 !important;
}
.text-info {
  color: #5189b8 !important;
}
.text-warning {
  color:  #F6BE00 !important;
}
.text-danger {
  color: #b63b07 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #131313 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #d54103 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5fb97a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5f73b9 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2f5474 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #edc210 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #541b03 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #fc7942;
}
.nav-tabs .nav-link:not(.active) {
  color: #131313;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #5189b8;
}
.alert-warning {
  background-color:  #F6BE00;
}
.alert-danger {
  background-color: #b63b07;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fc7942;
  border-color: #fc7942;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fc7942;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #acc6dd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f87a45;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #fc7942 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #fc7942;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fc7942;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fc7942;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fc7942;
  border-bottom-color: #fc7942;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #fc7942 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #a6d8b5 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23fc7942' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1440px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
.container-small {
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  word-wrap: break-word;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1500px) {
  .container-small {
    max-width: 1180px;
  }
}
@media (max-width: 1024px) {
  .container-small {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .container-small {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .container-small {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.container-fluid {
  max-width: 1724px;
  padding-left: 12px;
  padding-right: 12px;
}
.row {
  margin-left: -12px;
  margin-right: -12px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 12px;
  padding-right: 12px;
}
b,
strong {
  font-weight: 600 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 68px;
  padding: 20px 44px;
  border-radius: 0;
  font-weight: 600 !important;
  transition: all .3s;
}
@media (max-width: 1199px) {
  .mbr-section-btn .btn {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .mbr-section-btn .btn {
    padding: 15px 20px;
  }
}
.mbr-section-btn .btn-black {
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 4px 4px 0 #FFFFFF !important;
}
.mbr-section-btn .btn-black:hover {
  box-shadow: none !important;
}
.cid-tBom1Dnp1f {
  z-index: 1000;
  width: 100%;
}
.cid-tBom1Dnp1f nav.navbar {
  position: fixed;
}
.cid-tBom1Dnp1f .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBom1Dnp1f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBom1Dnp1f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBom1Dnp1f .dropdown-item:hover,
.cid-tBom1Dnp1f .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-tBom1Dnp1f .dropdown-item:hover span {
  color: white;
}
.cid-tBom1Dnp1f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBom1Dnp1f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBom1Dnp1f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBom1Dnp1f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBom1Dnp1f .nav-link {
  position: relative;
}
.cid-tBom1Dnp1f .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBom1Dnp1f .container {
    flex-wrap: nowrap;
  }
}
.cid-tBom1Dnp1f .navbar-nav {
  margin: 0 auto;
}
.cid-tBom1Dnp1f .dropdown-menu,
.cid-tBom1Dnp1f .navbar.opened {
  background:  #F6BE00 !important;
}
.cid-tBom1Dnp1f .nav-item:focus,
.cid-tBom1Dnp1f .nav-link:focus {
  outline: none;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBom1Dnp1f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBom1Dnp1f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBom1Dnp1f .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(245, 219, 110, 0);
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-tBom1Dnp1f .navbar.opened {
  transition: all 0.3s;
}
.cid-tBom1Dnp1f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBom1Dnp1f .navbar .navbar-logo img {
  width: auto;
}
.cid-tBom1Dnp1f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBom1Dnp1f .navbar.collapsed {
  justify-content: center;
}
.cid-tBom1Dnp1f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBom1Dnp1f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tBom1Dnp1f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBom1Dnp1f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBom1Dnp1f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tBom1Dnp1f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBom1Dnp1f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tBom1Dnp1f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBom1Dnp1f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBom1Dnp1f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBom1Dnp1f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBom1Dnp1f .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tBom1Dnp1f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBom1Dnp1f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBom1Dnp1f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBom1Dnp1f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBom1Dnp1f .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBom1Dnp1f .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBom1Dnp1f .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBom1Dnp1f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBom1Dnp1f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBom1Dnp1f .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBom1Dnp1f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBom1Dnp1f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBom1Dnp1f .dropdown-item.active,
.cid-tBom1Dnp1f .dropdown-item:active {
  background-color: transparent;
}
.cid-tBom1Dnp1f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBom1Dnp1f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBom1Dnp1f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBom1Dnp1f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background:  #F6BE00;
}
.cid-tBom1Dnp1f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBom1Dnp1f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBom1Dnp1f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBom1Dnp1f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBom1Dnp1f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBom1Dnp1f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBom1Dnp1f .navbar {
    height: 70px;
  }
  .cid-tBom1Dnp1f .navbar.opened {
    height: auto;
  }
  .cid-tBom1Dnp1f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBom1Dnp1f .container,
.cid-tBom1Dnp1f .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-tBom1Dnp1f .container:before,
  .cid-tBom1Dnp1f .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #194b75;
  }
}
.cid-tBom1Dnp1f .navbar-short {
  background-color:  #F6BE00 !important;
}
.cid-tBom1Dnp1f .navbar-short .container,
.cid-tBom1Dnp1f .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-tBom1Dnp1f .navbar-short .container:before,
.cid-tBom1Dnp1f .navbar-short .container-fluid:before {
  display: none;
}
.cid-tBom1Dnp1f .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-tBom1Dnp1f .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-tBom1Dnp1f .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #194b75;
}
@media (max-width: 991px) {
  .cid-tBom1Dnp1f .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-tBom1Dnp1f .container,
  .cid-tBom1Dnp1f .container-fluid {
    min-height: 85px;
  }
  .cid-tBom1Dnp1f .navbar-brand {
    min-height: 85px;
  }
  .cid-tBom1Dnp1f .navbar-short .container,
  .cid-tBom1Dnp1f .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-tBom1Dnp1f .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-tBom1Dnp1f .navbar.opened {
    background: rgba(245, 219, 110, 0) !important;
  }
  .cid-tBom1Dnp1f .navbar.navbar-short {
    background-color:  #F6BE00 !important;
  }
  .cid-tBom1Dnp1f .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-tBom1Dnp1f .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-tBom1Dnp1f .mbr-section-btn {
    text-align: left;
  }
  .cid-tBom1Dnp1f .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-tBom1Dnp1f .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background:  #F6BE00;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-tBomRGn5Ms {
  background-image: url("assets/0akla-1920x494.jpg");
}
.cid-tBomRGn5Ms .mbr-fallback-image.disabled {
  display: none;
}
.mbr-section-title {
    display: block !important;
    visibility: visible !important;
}
.cid-tBomRGn5Ms .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}


.cid-tBomRGn5Ms .row {
  flex-direction: row-reverse;
}
.cid-tBomRGn5Ms .col-title {
  padding-top: 2.5%;
}
@media (max-width: 991px) {
  .cid-tBomRGn5Ms .col-title {
    padding-top: 0;
  }
}
.cid-tBomRGn5Ms .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-tBomRGn5Ms .col-text {
    padding-right: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tBomRGn5Ms .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-tBomRGn5Ms .col-text {
    padding-top: 20px;
  }
}
.cid-tBomRGn5Ms .mbr-section-title {
  margin-bottom: 0;
  color: #b63b07;
}
.cid-tBomRGn5Ms .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-tBomRGn5Ms .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-tBomRGn5Ms .mbr-text {
  color: #131313;
}
.cid-tBomRGn5Ms .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-tBomRGn5Ms .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-tBomRGn5Ms .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-tBomRGn5Ms .mbr-text,
.cid-tBomRGn5Ms .mbr-section-btn {
  color: #000000;
}
.cid-u1E6oCm2Jc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u1E6oCm2Jc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1E6oCm2Jc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1E6oCm2Jc .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-u1E6oCm2Jc .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-u1E6oCm2Jc .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-u1E6oCm2Jc .mbr-section-title {
  color: #155e9b;
}
.cid-u1E6oCm2Jc .mbr-section-subtitle {text-align:justify;
  margin-top: 18px;
  color: #131313;padding-left: 30px;
  padding-right: 30px;
}
.cid-u1E6oCm2Jc .items-row {
  row-gap: 24px;
}
.cid-u1E6oCm2Jc .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-u1E6oCm2Jc .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #8a8a8a;
 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background: #efefe5;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-u1E6oCm2Jc .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-u1E6oCm2Jc .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-u1E6oCm2Jc .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-u1E6oCm2Jc .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-u1E6oCm2Jc .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-u1E6oCm2Jc .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-u1E6oCm2Jc .card-title {
  color: #131313;
}
.cid-u1E6oCm2Jc .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-u1E6oCm2Jc .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-u1E6oCm2Jc .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-u1E6oCm2Jc .link-text {
    margin-top: 5px;
  }
}
.cid-u1E6oCm2Jc .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-u1E6oCm2Jc .mbr-section-btn {
  margin-top: 5px;
}
.cid-u1E6oCm2Jc .card-text,
.cid-u1E6oCm2Jc .mbr-section-btn {
  text-align: center;
}
.cid-u1E6i6jzHa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1E6i6jzHa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1E6i6jzHa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1E6i6jzHa .container-small,
.cid-u1E6i6jzHa .container-fluid {
  padding: 0 !important;
}
.cid-u1E6i6jzHa .container-small {
  max-width: 1440px;
}
.cid-u1E6i6jzHa .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 40px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #ecefee;
}
@media (max-width: 991px) {
  .cid-u1E6i6jzHa .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-u1E6i6jzHa .text-box {
    padding: 50px 10px;
  }
}
.cid-u1E6i6jzHa .mbr-section-title {
  color: #155e9b;
}
.cid-u1E6i6jzHa .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-u1E6i6jzHa .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-u1E6i6jzHa .mbr-text {
    margin-top: 20px;
  }
}
.cid-u1E6i6jzHa .mbr-text a {
  text-decoration: underline;
}
.cid-u1E6i6jzHa .mbr-section-btn {
  margin-top: 34px;
}
.cid-u1E6L0zWAI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u1E6L0zWAI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1E6L0zWAI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1E6L0zWAI .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-u1E6L0zWAI .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-u1E6L0zWAI .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-u1E6L0zWAI .mbr-section-title {
  color: #5189b8;
}
.cid-u1E6L0zWAI .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-u1E6L0zWAI .items-row {
  row-gap: 24px;
}
.cid-u1E6L0zWAI .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-u1E6L0zWAI .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #8a8a8a;
  box-shadow: 4px 4px 0 #595959;
  background: #e5efeb;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-u1E6L0zWAI .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-u1E6L0zWAI .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-u1E6L0zWAI .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-u1E6L0zWAI .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-u1E6L0zWAI .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-u1E6L0zWAI .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-u1E6L0zWAI .card-title {
  color: #131313;
}
.cid-u1E6L0zWAI .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-u1E6L0zWAI .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-u1E6L0zWAI .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-u1E6L0zWAI .link-text {
    margin-top: 5px;
  }
}
.cid-u1E6L0zWAI .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-u1E6L0zWAI .mbr-section-btn {
  margin-top: 5px;
}
.cid-u1E6L0zWAI .card-text,
.cid-u1E6L0zWAI .mbr-section-btn {
  text-align: center;
}
.cid-u1E6L0zWAI .card-title,
.cid-u1E6L0zWAI .iconfont-wrapper {
  text-align: center;
}
.cid-u1E6iSdDjc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1E6iSdDjc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1E6iSdDjc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1E6iSdDjc .container-small,
.cid-u1E6iSdDjc .container-fluid {
  padding: 0 !important;
}
.cid-u1E6iSdDjc .container-small {
  max-width: 1440px;
}
.cid-u1E6iSdDjc .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #ecefee;
}
@media (max-width: 991px) {
  .cid-u1E6iSdDjc .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-u1E6iSdDjc .text-box {
    padding: 50px 10px;
  }
}
.cid-u1E6iSdDjc .mbr-section-title {
  color: #155e9b;
}
.cid-u1E6iSdDjc .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-u1E6iSdDjc .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-u1E6iSdDjc .mbr-text {
    margin-top: 20px;
  }
}
.cid-u1E6iSdDjc .mbr-text a {
  text-decoration: underline;
}
.cid-u1E6iSdDjc .mbr-section-btn {
  margin-top: 34px;
}
.cid-u1E6iSdDjc .mbr-section-subtitle,
.cid-u1E6iSdDjc .mbr-section-btn {
  text-align: left;
}
.cid-tBonvYox3R {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tBonvYox3R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBonvYox3R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBonvYox3R .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tBonvYox3R .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tBonvYox3R .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tBonvYox3R .mbr-section-title {
  color: #5189b8;
}
.cid-tBonvYox3R .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tBonvYox3R .items-row {
  row-gap: 24px;
}
.cid-tBonvYox3R .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tBonvYox3R .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #8a8a8a;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background: #e5efeb;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tBonvYox3R .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-tBonvYox3R .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tBonvYox3R .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-tBonvYox3R .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-tBonvYox3R .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tBonvYox3R .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-tBonvYox3R .card-title {
  color: #131313;
}
.cid-tBonvYox3R .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-tBonvYox3R .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-tBonvYox3R .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-tBonvYox3R .link-text {
    margin-top: 5px;
  }
}
.cid-tBonvYox3R .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-tBonvYox3R .mbr-section-btn {
  margin-top: 5px;
}
.cid-tBonvYox3R .card-text,
.cid-tBonvYox3R .mbr-section-btn {
  text-align: center;
}
.cid-u1Ecjmds0J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u1Ecjmds0J7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1Ecjmds0J .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1Ecjmds0J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1Ecjmds0J .container-small,
.cid-u1Ecjmds0J .container-fluid {
  padding: 0 !important;
}
.cid-u1Ecjmds0J .container-small {
  max-width: 1440px;
}
.cid-u1Ecjmds0J .text-box {
  display: flex;
  flex-direction: column;
 
 text-align:justify;
  padding: 40px;
  
  margin: 0 auto;
  background-color: #F8F8F8;
}
@media (max-width: 991px) {
  .cid-u1Ecjmds0J .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-u1Ecjmds0J .text-box {
    padding: 50px 10px;
  }
}
.cid-u1Ecjmds0J .mbr-section-title {
  color: #155e9b;
}
.cid-u1Ecjmds0J .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-u1Ecjmds0J .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-u1Ecjmds0J .mbr-text {
    margin-top: 20px;
  }
}
.cid-u1Ecjmds0J .mbr-text a {
  text-decoration: underline;
}
.cid-u1Ecjmds0J .mbr-section-btn {
  margin-top: 34px;
}
.cid-u1E6uG7tYI {
  background-color:  #F6BE00;
  position: relative;
}
.cid-u1E6uG7tYI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1E6uG7tYI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
}
.cid-u1E6uG7tYI .container,
.cid-u1E6uG7tYI .container-fluid {
  position: static;
}
.cid-u1E6uG7tYI .mbr-section-title {
  margin-bottom: 25px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-u1E6uG7tYI .mbr-section-title {
    margin-bottom: 5px;
  }
}
.cid-u1E6uG7tYI .mbr-section-subtitle {
  color: #155e9b;
}
.cid-u1E6uG7tYI .mbr-text {text-align:justify;
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-u1E6uG7tYI .mbr-text {
    margin-top: 18px;
  }
}
.cid-u1E6uG7tYI .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-u1E6uG7tYI .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-u1E6uG7tYI .item-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.cid-u1E6uG7tYI .item-img img {
  height: 100%;
  width: 50%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-u1E6uG7tYI .item-img {
    display: none;
  }
}
.cid-tBop9AZP21 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tBop9AZP21 .mbr-text {
  color: #131313;
}
.cid-tBop9AZP21 .media-container-row .mbr-text {
  color: #e5efeb;
}
