.header {
  background-image: url(images/top.png);
}

.cover {
  position: relative;

  min-height: 680px;
}

@media (min-width: 1200px) {
  .cover {
    height: 100vh;
    overflow: hidden;
  }

  .cover:before {
    content: "";
    display: none;
    width: 462px;
    height: 421px;
    background: url(images/circles.png);
    position: absolute;
    top: 21%;
    left: 3%;
  }
}

@media (max-width: 1199px) {
  .cover {
    padding-top: 200px;
    padding-bottom: 50px;
  }
}

/* Cover */

.cover-slick {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}

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

.cover-slick-mobile {
  display: none;
}

@media (max-width: 991px) {
  .cover-slick-desktop {
    display: none;
  }
  .cover-slick-mobile {
    display: block;
  }
}

/* Video Background */

#toggle-video {
  position: absolute;
  top: 100px;
  right: 300px;
  z-index: 99;

  background: none;
  color: #fff;
  border: 0;
  padding: 10px 15px;
  cursor: pointer;

  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 1199px) {
  #toggle-video {
    right: 15px;
  }
}

#toggle-video:hover,
#toggle-video:focus {
  background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 767px) {
  #toggle-video {
    display: none;
  }
}

/* Services */

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

.services-items > div {
  display: inline-block;
}

@media (min-width: 1200px) {
  .services {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: -1;
  }
}

@media (min-width: 1200px) {
  .services > div {
    width: 100%;
    padding-bottom: 6.375%;
    background-image: url(images/bottom.png);
    background-size: 100% 100%;
    position: relative;
  }

  .services-slick-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .services-slick-container {
    max-width: 320px;
    margin: 0 auto;
  }

  .services > div {
    position: relative;
  }
}

.service {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;

  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;

  padding-bottom: 15px;

  font-size: 1.2rem;

  position: relative;

  width: 210px;
  height: 210px;

  background-position: center;

  margin: 1.5rem;
}

.service:hover {
  transform: scale(1.1);
  color: #000;
}

@media (max-width: 1309px) {
  .service {
    margin: 0.5rem;
  }
}
@media (max-width: 1199px) {
  .service {
    width: 140px;
    height: 140px;
    background-size: 110% 110%;
    margin: 0;
    padding: 15px;
    line-height: 1rem;
  }
}

.service:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1199px) {
  .service:before {
    background-size: 120%;
  }
}

/*.service:hover:before {*/
/*	animation: fa-spin 4s infinite linear;*/
/*}*/

/*.services-items > div:nth-child(1) .service:before {*/
/*	background-image: url(images/1.png);*/
/*}*/
/*.services-items > div:nth-child(2) .service:before {*/
/*	background-image: url(images/2.png);*/
/*}*/
/*.services-items > div:nth-child(3) .service:before {*/
/*	background-image: url(images/3.png);*/
/*}*/
/*.services-items > div:nth-child(4) .service:before {*/
/*	background-image: url(images/4.png);*/
/*}*/
/*.services-items > div:nth-child(5) .service:before {*/
/*	background-image: url(images/5.png);*/
/*}*/

.slick-slide:nth-child(5n + 1) .service {
  border-bottom: 4px solid #9d0132;
}

.slick-slide:nth-child(5n + 2) .service {
  border-bottom: 4px solid #df772e;
}

.slick-slide:nth-child(5n + 3) .service {
  border-bottom: 4px solid #afb43a;
}

.slick-slide:nth-child(5n + 4) .service {
  border-bottom: 4px solid #4b9370;
}

.slick-slide:nth-child(5n + 5) .service {
  border-bottom: 4px solid #3f92aa;
}

/*
@media (max-width: 1199px) {
	.service {
		color: rgba(39,97,130,1);
		margin: 5px;
	}
	
	.service:before {
		content: "";
		position: absolute;
		top: 0px;
		bottom: 0px;
		left: 0px;
		right: 0px;
		background: rgb(255 255 255 / 80%);
		display: block;
		padding: 2rem;
		border-radius: 7rem;
		transform: skewX(-13deg);
		z-index: -1;
	}
}
*/

@media (min-width: 1200px) {
  .service .icon {
    margin: 15px 0 5px 0;
  }
}

.service .icon img {
  margin: 0 auto;
  max-height: 60px;
}

@media (max-width: 1571px) {
  .service {
    font-size: 1rem;
  }

  .service .icon {
    height: 40px;
    margin-bottom: 5px;
  }

  .service .icon img {
    max-height: 40px;
  }
}

/* Footer */

.centered .btn-notification {
  position: relative;
  display: block;
  font-size: 1.2em;
  padding: 0.75rem;
  border-radius: 2rem;
  background: #afb43a;
  color: white;
  text-align: center;
  width: 32%;
  margin: 0px auto;
}

@media (min-width: 1200px) {
  .centered {
    position: absolute;
    top: 40%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, 0);
    z-index: 999;
    margin-top: -80px;
  }
}

@media (min-width: 1510px) {
  .centered {
    top: 33%;
  }
}

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

@media (min-width: 1200px) {
  .idx-search {
    width: 520px;
    margin: 30px auto;
  }
}

@media (max-width: 1199px) {
  .idx-search {
    max-width: 300px;
    margin: 1rem auto;
  }
}

.idx-search form {
  position: relative;
  margin-bottom: 1rem;
}

.idx-search form input {
  font-size: 1.2em;
  padding: 0.75rem;
  border-radius: 2rem;
  border: 0;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  -webkit-appearance: none;
}

.idx-search form button {
  border: 0;
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 0 16px;
  background: rgba(175, 180, 58, 0.8);
  border-radius: 2rem;
}

.idx-search form button em {
  font-size: 20px;
}

/**/

/**/

.circles {
  text-align: center;
}

@media (min-width: 992px) {
  .circles {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: 5;
  }
}

.circles > div {
  display: inline-block;
}

.circles > div > a {
  display: block;
  width: 250px;
  height: 250px;
  position: relative;
  margin: 2rem;
}

@media (max-width: 991px) {
  .circles > div > a {
    margin: 0.5rem;
  }
}

.circles > div > a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(images/c1.png);
  background-repeat: no-repeat;
  background-position: center;
}

.circles > div:nth-child(2) > a:before {
  background: url(images/c2.png);
}
.circles > div:nth-child(3) > a:before {
  background: url(images/c3.png);
}

.circles > div > a:hover {
  transform: scale(1.2);
}

.circles > div > a:hover:before {
  animation: fa-spin 4s infinite linear;
}

.circles > div > a > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;

  background: rgba(56, 56, 56, 0.4);
  border-radius: 50%;
}

.circles > div > a > span > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);

  font-size: 2.3rem;
  line-height: 2.3rem;
  color: #fff;
  font-weight: bold;

  width: 120px;
  text-align: center;
}

/**/
/* 
.whats-new {
	position: relative;
	background: #f1f1f1;
	padding: 3rem 0;
} */

@media (max-width: 767px) {
  .whats-new .content > .row {
    margin: 0;
  }

  .whats-new .side {
    display: none;
  }

  .whats-new .content {
    margin-right: 0;
    padding: 0;
  }
}

.whats-new section h2 {
  color: rgb(50, 31, 40);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-align: revert;
  font-weight: 500;
  padding-top: 24px;
}

.whats-new section h2 + a {
  display: inline-block;
  padding-top: 0.1rem;
  text-decoration: none;
  color: inherit;
  line-height: 0.5rem;
}

.whats-new section h2 + a span {
  border-bottom: 1px dotted #666;
}

.whats-new section h2 + a em {
  color: #007e3d;
}

/**/

.item-card {
  height: 168px;
  min-height: 150px;
  position: relative;
  margin-bottom: 15px;
  margin-left: 15px;
  border-radius: 25px;
}

.item-card .pic {
  width: 226px;
  border-radius: 25px;
}

.item-card a {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 25px;
  background-repeat: no-repeat;
}

.item-card a .name {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
  color: #000;
  border-radius: 0 0 23px 23px;
  line-height: 23px;
  min-height: 50px;
  align-items: center;
  display: flex;
  text-align: center;
  justify-content: center;
}

/*news*/

@media (min-width: 1200px) {
  .news {
    width: 400px;
    height: 200px;
    position: absolute;
    top: 35%;
    right: 10%;
    padding: 1rem;
    visibility: hidden;
  }
}

@media (max-width: 1199px) {
  .news {
    width: 300px;
    height: 260px;
    padding: 1rem;
    margin: 0 auto;
    position: relative;
    margin-bottom: 3rem;
    visibility: hidden;
  }
}

.news:before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(39, 97, 130, 0.8);
  display: block;
  padding: 2rem;
  border-radius: 4rem;
  transform: skewX(-13deg);
}

.news .text {
  color: #74a534;
  font-weight: bold;
}

.news .text-2 {
  color: #fff;
  font-weight: bold;
}

.news .all-news {
  text-decoration: none;
  position: absolute;
  top: -19px;
  right: 32px;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  background: #74a534;
  padding: 0.5rem;
  transform: skewX(-5deg);
  height: 38px;
  width: fit-content;
  border-radius: 3rem;
  padding: 0.5rem 1rem;
}

.news .toggle-slick {
  text-decoration: none;
  position: absolute;
  top: -19px;
  right: 125px;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  background: #2e4b5a;
  padding: 0.5rem 1rem;
  transform: skewX(-5deg);
  height: 38px;
  border: 0;
  border-radius: 2rem;
}

.news .news-slick .article {
  display: block;
  padding: 2rem;
  color: white;
}

@media (max-width: 991px) {
  .news article {
    margin: 1rem 0;
  }

  .news {
    min-height: 20vh;
  }
}

.news .article a {
  display: block;
  color: inherit;
}

.news .article a:hover,
.news .article a:focus {
  text-decoration: none;
}

.news .article img {
  display: block;
  width: 100%;
}

.news .article figcaption {
  padding: 1rem;
}

.news .article h3 {
  color: #ffffff;
}

.news .news-slick a {
  text-decoration: none;
}

.all-news {
  /* position: absolute; */
  bottom: 0px;
  left: 0px;
  color: white;
}

/**/

.read-more {
  text-align: left;
  padding-top: 25px;
  font-weight: bold;
}

.read-more a {
  color: #3887ba;
  text-decoration: none;
}

.read-more a span {
  /* border-bottom: 1px dotted #734046; */
}

/* colors */

/*fast-navigation*/

a.piar1 p {
  position: absolute;
  top: 33%;
  right: 13px;
  background: rgb(255 255 255 / 0.85);
  padding: 1.5rem 1rem;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  border-radius: 25px 0px 0px 25px;
  padding-left: 3rem;
  padding-right: 5rem;
}

.piar1 .banner {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 200px;
  display: block;
  border-radius: 20px;
  margin-top: 1rem;
}

.articles {
  margin: 0 auto;
}

.articles-slick > div {
  height: 100%;
}

.articles-slick .pic img {
  border-radius: 25px;
  width: 100%;
}

.articles-slick article {
  height: 350px;
}

.articles-slick .info {
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  background: rgb(255, 255, 255, 0.75);
  text-align: center;
  color: #000;
  border-radius: 0px 0px 25px 25px;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 400;
  min-height: 58px;
}

.articles-slick a {
  height: 100%;
}

.articles-slick a {
  background-size: cover;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.event {
  display: flex;
  border: 2px solid #dcdcdc;
  height: 125px;
  border-radius: 27px;
}

.event span.day {
  font-size: 3rem;
}

.event span.month {
  margin-top: -20px;
}

.event .date {
  float: right;
  background: #734046;
  padding: 2rem;
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
  color: #fff;
  height: 100%;
  display: grid;
  border-radius: 0px 25px 25px 0px;
  padding-top: 0.75rem;
}

.event .name {
  float: right;
  background: #fff;
  padding: 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  height: 100%;
  display: grid;
  border-radius: 25px 0px 0px 25px;
  align-items: center;
}

.primary-icons {
  display: none;
}

@media (max-width: 678px) {
  .event {
    margin-bottom: 15px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1623px !important;
  }
}

@media (max-width: 678px) {
  .col-news,
  .col-piars {
    background: #d8d8d894;
    padding: 1rem 0rem;
    border-top: 1px solid #932733;
    border-bottom: 2px solid #d2d2d2;
    margin-bottom: 2rem;
  }

  .col-piars {
    padding: 1rem;
  }

  .row-events {
    padding-top: 0 !important;
  }

  .read-more {
    padding: 0.75rem;
    background: unset;
    text-align: right;
  }

  .item-card {
    margin-bottom: unset;
    margin-left: unset;
    margin-bottom: 1rem;
  }

  .item-card a {
    border-radius: 0px;
  }

  .piar1 {
    margin-bottom: 1rem;
  }

  .articles-slick a {
    border-radius: 0;
  }

  .articles-slick .info {
    border-radius: 0px;
  }

  .col-banner {
    padding: 0;
    border-radius: 0px;
  }

  .piar1 .banner {
    border-radius: 0;
  }

  a.piar1 p {
    background: #fff;
    padding: 1.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    border-radius: 0;
    right: unset;
  }

  .event .date,
  .event .name,
  .event {
    border-radius: 0;
  }
}

.cube-item {
  border: 2px solid #fff;
  position: relative;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 0 50px rgb(0 0 0 / 20%);
  overflow: hidden;
}
.cube-item:hover {
  transform: scale(1.1);
}

@media (max-width: 1199px) {
  .cube-item {
    margin-bottom: 30px;
  }
}

.cube-item .info {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
  width: 100%;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: bold;
  padding: 0.75rem;
  padding-top: 3rem;

  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.cube-item .info .date {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: bold;
}
.cube-item .info h3 {
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: bold;
}

/**/

/**/

@media (max-width: 1199px) {
  .whats-new {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .service figcaption {
    width: min-content;
  }
}
