.cover {
  position: relative;
  min-height: 670px;
}

@media (min-width: 992px) {
  .cover {
    height: 95vh;
  }
  .cover > .arrowBtn {
    height: 45px;
    aspect-ratio: 1/1;
    background-image: url(images/down-icon.png);
    position: absolute;
    bottom: 0px;
    right: 50%;
    transform: translate(-50%, 50%) scale(1);
    background-size: cover;
    cursor: pointer;
    transition: all 0.5s ease-in;
  }
  .cover > .arrowBtn:hover {
    transform: translate(-50%, 40%) scale(1.3);
  }
}
@media (max-width: 991px) {
  .cover {
    padding: 15px;
    padding-top: 125px; /* header height + padding */
  }
}
.cover-slick {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.cover-slick div {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.cover .toggle-slick {
  position: absolute;
  top: 125px;
  right: 15px;
  background: none;
  border: 0;
}

@media (max-width: 991px) {
  .cover .toggle-slick {
    display: none;
  }
}
.cover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  text-align: center;
  max-width: 600px;
  margin-top: -60px;
}

/**/
video {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: 1s opacity;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

#toggle-video {
  position: absolute;
  top: 125px;
  right: 15px;
  background: none;
  border: 0;
}

@media (max-width: 991px) {
  video,
  #toggle-video {
    display: none;
  }
}
.services {
  position: relative;
  width: 450px;
  height: 100%;
  transform: scale(1);
}
@media (min-width: 992px) and (max-width: 1500px) {
  .services {
    transform: scale(0.8);
  }
}
@media (max-height: 780px) {
  .services {
    transform: scale(0.8);
  }
}
@media (min-height: 781px) {
  .services {
    transform: scale(1);
  }
}
@media (max-width: 990px) {
  .services {
    width: 100%;
  }
}
@media (min-width: 990px) {
  .services > div {
    top: 40%;
    padding: 0 20px;
    position: absolute;
  }
}
.services > div > a:not(.items) {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 15px;
}
@media (max-width: 990px) {
  .services > div > a:not(.items) {
    font-size: 22px;
  }
}
.services > div > a:first-child:not(.items) {
  padding-right: 15px;
}
.services > div .moked {
  height: 85px;
  width: 100%;
  background-color: hsla(108, 35%, 48%, 0.7);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 990px) {
  .services > div .moked {
    height: 50px;
    margin-bottom: 25px;
  }
}
.services > div .moked img {
  position: absolute;
    right: 0px;
    top: 0px;
    transform: translate(30%, -60%);
    transition: all 0.5s ease-in-out;
    max-width: 125px;
}
@media (max-width: 990px) {
  .services > div .moked img {
    height: 100px;
    transform: translate(20%, -35%);
  }
}
.services > div .moked:hover {
  background-color: rgba(77, 131, 63, 0.7);
}
.services > div .moked:hover img {
  transform: translate(20%, -27%) scale(1.1);
}
.services > div .help {
  height: 65px;
  width: 100%;
  background-color: hsla(201, 29%, 42%, 0.7);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
@media (max-width: 990px) {
  .services > div .help {
    height: 50px;
  }
}
.services > div .help img {
  transition: all 0.5s ease-in-out;
}
.services > div .help:hover {
  background-color: rgba(58, 89, 105, 0.7);
}
.services > div .help:hover img {
  transform: scale(1.2) rotate(10deg);
}
.services > div .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.services > div .items > div {
  flex-basis: 47%;
  text-align: center;
  background-color: hsla(0, 0%, 100%, 0.7);
  aspect-ratio: 1/0.5;
  border-radius: 25px;
  transition: all 0.5s ease-in-out;
}
.services > div .items > div:hover {
  background-color: rgba(217, 217, 217, 0.7);
}
.services > div .items > div a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 22px;
  color: #2f5969;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 990px) {
  .services > div .items > div a {
    font-size: 16px;
  }
}

#content > .bottom {
  margin-top: 60px;
  padding: 0 50px;
}
@media (max-width: 990px) {
  #content > .bottom {
    padding: 0 20px;
  }
}
#content > .bottom > h1, #content > .bottom > h3 {
  color: #507e98;
}
#content > .bottom > h1 {
  font-size: 50px;
  font-weight: bold;
  margin: 0;
}
@media (max-width: 990px) {
  #content > .bottom > h1 {
    font-size: 40px;
  }
}
#content > .bottom > h3 {
  font-size: 25px;
}
#content > .bottom > div {
  margin-top: 55px;
  display: flex;
  gap: 80px;
}
@media (max-width: 990px) {
  #content > .bottom > div {
    flex-wrap: wrap;
  }
}
#content > .bottom > div > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
#content > .bottom > div > div > a {
  width: 170px;
  height: 45px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
}
#content > .bottom > div > .articles {
  flex-basis: 39%;
}
@media (max-width: 990px) {
  #content > .bottom > div > .articles {
    flex-basis: 100%;
  }
}
#content > .bottom > div > .articles .items > a {
  flex-grow: 1;
  border-color: #61a54e;
}
#content > .bottom > div > .articles > a {
  background-color: #61a54e;
}
#content > .bottom > div > .articles > a:hover {
  background-color: #427135;
}
#content > .bottom > div > .events {
  flex-basis: 60%;
}
@media (max-width: 990px) {
  #content > .bottom > div > .events {
    flex-basis: 100%;
  }
}
#content > .bottom > div > .events .items > a {
  flex-grow: 1;
  border-color: #4091ad;
}
#content > .bottom > div > .events .items > a > .details {
  border-color: #4c758b;
}
#content > .bottom > div > .events > a {
  background-color: #4091ad;
}
#content > .bottom > div > .events > a:hover {
  background-color: #2b6275;
}
#content > .bottom > div .items {
  display: flex;
  gap: 40px;
  width: 100%;
}
@media (max-width: 990px) {
  #content > .bottom > div .items {
    flex-wrap: wrap;
  }
}
#content > .bottom > div .items > a {
  padding-top: 15px;
  flex-basis: 33%;
  border-top: 3px solid;
  color: #000;
  text-decoration: none;
}
#content > .bottom > div .items > a h4 {
  line-height: 1.1;
  text-align: center;
  min-height: 55px;
  overflow: hidden;
}
#content > .bottom > div .items > a img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transition: all 0.5s ease-in-out;
}
#content > .bottom > div .items > a > div:first-child {
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 15px;
}
#content > .bottom > div .items > a:hover img {
  transform: scale(1.2);
}
#content > .bottom > div .items > a > .details {
  border-right: 2px solid;
  padding-right: 10px;
  margin-top: 30px;
}

/* News * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.news {
  padding: 1rem;
  background: #fff;
  position: absolute;
  width: 100%;
  height: 55px;
  bottom: 0px;
  right: 0px;
  transform: translate(0, 100%);
  display: block;
  background-color: hsla(203, 31%, 41%, 0.85);
}
.news h2 {
  background: #53827f;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.219rem 0.75rem;
  margin: 0;
  border-radius: 2rem;
  z-index: 5;
}
.news h2 a {
  color: inherit;
}
.news .container {
  width: 100%;
  max-width: inherit;
}
.news .container .bn-news a {
  color: #fff;
}
.news .container button {
  background: transparent;
  border: 1px solid #fff !important;
}
.news .container button:focus {
  outline: none;
}
.news .container button:hover {
  background-color: transparent;
}

.news .content {
  position: relative;
}

.news .buttons {
  position: absolute;
  top: 1.9rem;
  left: 1.9rem;
}

.news a {
  color: #000;
  display: block;
}

@media (min-width: 768px) {
  .news a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 991px) {
  .news h2 {
    display: none;
  }
}
@media (min-width: 992px) {
  .bn-news {
    padding-right: 100px;
  }
}
.bn-news ul li a {
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding: 0.36rem 0;
  color: inherit;
}

.bn-news ul li a:hover {
  color: #000;
}

.bn-effect-scroll .bn-news ul li {
  padding: 0 1rem;
}

.news .date {
  font-weight: bold;
}

.news .date:after {
  content: " | ";
  margin: 0 10px;
}

.news-toggle {
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #111;
  color: #fff;
  background: none;
  font-size: 14px;
}

.bn-controls {
  left: 0;
  right: auto;
}

.bn-controls button {
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  padding: 0;
  margin-right: 5px;
}

.bn-arrow {
  top: -1px;
}

.bn-pause::before,
.bn-pause::after {
  background-color: #fff;
}

.bn-play::after {
  border-left-color: #fff;
}

.bn-controls button:hover {
  background-color: #111;
  color: #fff;
  box-shadow: 0 0 5px rgba(255, 255, 0, 0.9);
}

/**/
@media (min-width: 992px) {
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
  }
  .centered-banner {
          background: #2529b2;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .centered {
    text-align: center;
  }
  .centered-banner {
    display: none;
  }
}
/**/
/* Fast Nav */
.fast-navigation {
  padding: 1rem 0;
  border-radius: 0 0 2rem 2rem;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.fast-navigation:after {
  clear: both;
  display: block;
  content: "";
}

@media (min-width: 992px) {
  .fast-navigation > label,
  .fast-navigation > select,
  .fast-navigation > span {
    float: right;
    display: block;
  }
}
.fast-navigation label {
  background: #4c758b;
  border-radius: 0 2rem 2rem 0;
  padding: 5px 10px;
  border: 0;
  margin: 0;
}

.fast-navigation select {
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 5px 10px;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.fast-navigation button {
  background: #4c758b;
  border: 0;
  border-radius: 2rem 0 0 2rem;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
}

@media (min-width: 992px) {
  .fast-navigation .smart-nav-sub > label,
  .fast-navigation .smart-nav-sub > select,
  .fast-navigation .smart-nav-sub > button {
    float: right;
    display: block;
  }
}
@media (max-width: 991px) {
  .fast-navigation > label,
  .fast-navigation > select,
  .fast-navigation > span {
    display: block;
    border-radius: 2rem;
    width: 100%;
  }
  .fast-navigation .smart-nav-sub > label,
  .fast-navigation .smart-nav-sub > select,
  .fast-navigation .smart-nav-sub > button {
    display: block;
    border-radius: 2rem;
  }
  .fast-navigation .smart-nav-sub > select {
    width: 100%;
    margin: 0.5rem 0;
  }
  .smart-nav-submit {
    margin: 0 auto;
  }
}
/**/
@media (min-width: 990px) {
  .side-banners {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media (max-width: 990px) {
  .side-banners {
    margin-bottom: 50px;
  }
}
.side-banners.side-banners-left > div:nth-child(1) a {
  background-color: hsla(32, 67%, 54%, 0.9);
}
.side-banners.side-banners-left > div:nth-child(2) a {
  background-color: hsla(108, 35%, 48%, 0.82);
}
.side-banners.side-banners-left > div:nth-child(3) a {
  background-color: hsla(201, 29%, 42%, 0.7);
}
.side-banners.side-banners-left > div a {
  width: 270px;
  height: 80px;
  border-radius: 0 25px 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  line-height: 1;
}
@media (max-width: 990px) {
  .side-banners.side-banners-left > div a {
    border-radius: 25px;
    width: 100%;
    font-size: 22px;
    height: 50px;
  }
}
.side-banners.side-banners-right {
  right: 0;
  display: none;
}
.side-banners.side-banners-left {
  left: 0;
}

.side-banners a {
  background-color: #fff;
  display: block;
  padding: 1rem;
  margin: 1rem 0;
}

body.preventScroll {
  overflow: hidden;
}

.smartNav {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 9999;
  display: none;
}
.smartNav.show {
  display: block;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.smartNav > div {
  background-color: hsla(201, 29%, 42%, 0.87);
  border-top: 3px solid;
  border-left: 3px solid;
  border-color: #fff;
  transition: all 0.5s ease-in-out;
  height: 100%;
}
@media (min-width: 990px) and (max-width: 1800px) {
  .smartNav > div {
    width: 95%;
  }
}
@media (min-width: 990px) {
  .smartNav > div {
    height: auto;
    width: 100%;
    max-width: 1140px;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }
}
@media (max-width: 990px) {
  .smartNav > div {
    overflow: scroll;
    gap: 15px;
  }
}
.smartNav > div > h2 {
  padding: 10px 20px;
  text-align: right;
  background-color: #fff;
  position: relative;
}
.smartNav > div > h2 > em {
  height: 45px;
  width: 45px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translate(50%, -50%);
  border-radius: 50%;
  cursor: pointer;
  color: hsl(201, 38%, 52%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.smartNav > div > h2 > span {
  display: inline-flex;
  height: 46px;
  padding: 12px 17px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  color: hsl(201, 38%, 52%);
  font-weight: 600;
}
.smartNav > div > .categories {
  display: flex;
  justify-content: space-around;
  padding-inline: 1rem;
}
.smartNav > div > .categories > div {
  flex: 1;
}
@media (max-width: 990px) {
  .smartNav > div > .categories {
    flex-wrap: wrap;
    padding: 0 15%;
  }
}
@media (max-width: 990px) {
  .smartNav > div > .categories > div {
    flex-basis: 100%;
  }
}
.smartNav > div > .categories > div h4 {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}
@media (min-width: 990px) and (max-width: 1500px) {
  .smartNav > div > .categories > div h4 {
    font-size: 18px;
  }
}
.smartNav > div > .categories > div > ul {
  padding-inline: 15px;
}
.smartNav > div > .categories > div > ul * {
  color: #fff;
}
.smartNav > div > .categories > div > ul > li a {
  font-size: 18px;
}
@media (min-width: 990px) and (max-width: 1500px) {
  .smartNav > div > .categories > div > ul > li a {
    font-size: 1rem;
  }
}/*# sourceMappingURL=idx.css.map */