@charset "UTF-8";

.hero-section .hero-slider {
  position: relative;
}

.hero-section .hero-slider.disabled {
  max-height: 0;
  overflow: hidden;
}

.hero-section .hero-slider .owl-nav .owl-prev {
  opacity: 1;
  transform: translate(20px, -20px);
  top: 50%;
  left: 0px;
  cursor: pointer;
  background: transparent;
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 100;
}

.hero-section .hero-slider .owl-nav .owl-prev:before {
  content: "\F104";
  position: relative;
  transition: all 0.25s;
  right: 0;
  font-size: 40px;
  color: #fff;
  display: block;
  text-align: center;
  font-family: var(--fa-r);
}

.hero-section .hero-slider .owl-nav .owl-prev span {
  display: none;
}

.hero-section .hero-slider .owl-nav .owl-next {
  cursor: pointer;
  background: transparent;
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 100;
  opacity: 1;
  transform: translate(-60px, -20px);
  top: 50%;
  left: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}

.hero-section .hero-slider .owl-nav .owl-next:before {
  content: "\F105";
  position: relative;
  transition: all 0.25s;
  right: 0;
  font-size: 40px;
  color: #fff;
  display: block;
  text-align: center;
  font-family: var(--fa-r);
}

.hero-section .hero-slider .owl-nav .owl-next span {
  display: none;
}

.hero-section .hero-slider .owl-dots {
  top: 78%;
  left: 48.7%;
  height: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.hero-section .hero-slider .owl-dots button.active span {
  background: var(--white-color);
}

.hero-section .content {
  height: 761px;
  position: relative;
  z-index: 3;
}

.hero-section .content .buttons {
  position: absolute;
  z-index: 3;
  bottom: 60px;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  padding: 15px 0;
}

@media (max-width: 991px) {
  .hero-section .content .buttons {
    display: none;
  }
}

.hero-section .content .buttons ul {
  display: flex;
  gap: 4px;
}

.hero-section .content .buttons ul li {
  width: calc(25% - (4px * 3) / 4);
  background: var(--red-color-100);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 14px;
  opacity: 0.7;
}

.hero-section .content .buttons ul li:hover {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.hero-section .content .buttons ul li:hover .more {
  text-decoration: underline;
}

.hero-section .content .buttons ul li:first-child .image {
  background: url(/img/svg1.png);
  width: 100%;
  max-width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-section .content .buttons ul li:nth-child(2) .image {
  background: url(/img/svg2.png);
  width: 100%;
  max-width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-section .content .buttons ul li:nth-child(3) .image {
  background: url(/img/svg3.png);
  width: 100%;
  max-width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-section .content .buttons ul li:nth-child(4) .image {
  background: url(/img/svg4.png);
  width: 100%;
  max-width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-section .content .buttons ul li .content-box a {
  color: var(--white-color);
  font-size: 15px;
  font-family: var(--lora-r);
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 8px;
}

.hero-section .content .buttons ul li .content-box a:hover {
  text-decoration: none;
}

.hero-section .content .buttons ul li .content-box .descr {
  margin-bottom: 15px;
  color: var(--white-color);
  font-size: 15px;
  font-family: var(--lora-r);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hero-section .content .buttons ul li .content-box .more {
  display: flex;
  align-items: center;
  font-size: 15px;
  text-transform: uppercase;
  font-family: var(--main-sb);
  color: var(--white-color);
  margin: 0;
  gap: 4px;
}

.hero-section .content .buttons ul li .content-box .more i:before {
  font-size: 14px;
  color: var(--white-color);
}

.hero-section .content .text {
  position: absolute;
  z-index: 3;
  bottom: -60px;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  padding: 15px 0;
  background: var(--red-color-100);
}

@media (max-width: 576px) {
  .hero-section .content .text {
    bottom: -26px;
  }
}

@media (max-width: 444px) {
  .hero-section .content .text {
    bottom: -38px;
  }
}

.hero-section .content .text h1 {
  color: var(--white-color);
  font-size: 50px;
  font-family: var(--lora-b);
  line-height: 80px;
  display: block;
  text-transform: capitalize;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  padding: 0 10px;
}

@media (max-width: 1200px) {
  .hero-section .content .text h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .hero-section .content .text h1 {
    font-size: 20px !important;
    line-height: 30px;
  }
}

.hero-section .content .text h5 {
  font-size: 24px;
  font-style: italic;
  color: var(--white-color);
  line-height: 1.4;
  margin: 0 0 30px;
  font-family: var(--second-r);
  display: none;
}

.hero-section .content .text a {
  display: none;
}

.hero-section .content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-section .owl-dots {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

@media (max-width: 767px) {
  .hero-section .owl-dots {
    display: none;
  }
}

.hero-section .owl-dots button {
  margin-left: 5px;
}

.hero-section .owl-dots button:first-child {
  margin-left: 0;
}

.hero-section .owl-dots button span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  display: block;
  border-radius: 15px;
  -webkit-transition: all ease-in-out 0.3s;
}

.hero-section .owl-dots button.active span {
  background: var(--third-color-200);
}

.buttons-mobile {
  display: none;
  width: 100%;
  padding: 15px 0;
}

@media (max-width: 991px) {
  .buttons-mobile {
    display: flex;
  }
}

.buttons-mobile ul {
  display: flex;
  gap: 4px;
  flex-direction: column;
  align-items: center;
  margin: 0 15px;
}

.buttons-mobile ul li {
  background: var(--red-color-100);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 14px;
  opacity: 0.7;
  width: 100%;
}

.buttons-mobile ul li:hover {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.buttons-mobile ul li:hover .more {
  text-decoration: underline;
}

.buttons-mobile ul li:first-child .image {
  background: url(/img/svg1.png);
  width: 100%;
  max-width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.buttons-mobile ul li:nth-child(2) .image {
  background: url(/img/svg2.png);
  width: 100%;
  max-width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.buttons-mobile ul li:nth-child(3) .image {
  background: url(/img/svg3.png);
  width: 100%;
  max-width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.buttons-mobile ul li:nth-child(4) .image {
  background: url(/img/svg4.png);
  width: 100%;
  max-width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.buttons-mobile ul li .content-box a {
  color: var(--white-color);
  font-size: 15px;
  font-family: var(--lora-r);
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 8px;
}

.buttons-mobile ul li .content-box a:hover {
  text-decoration: none;
}

.buttons-mobile ul li .content-box .descr {
  margin-bottom: 15px;
  color: var(--white-color);
  font-size: 15px;
  font-family: var(--lora-r);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.buttons-mobile ul li .content-box .more {
  display: flex;
  align-items: center;
  font-size: 15px;
  text-transform: uppercase;
  font-family: var(--main-sb);
  color: var(--white-color);
  margin: 0;
  gap: 4px;
}

.buttons-mobile ul li .content-box .more i:before {
  font-size: 14px;
  color: var(--white-color);
}

.ban-section {
  margin: 30px 0 0;
}

.ban-section .image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.ban-section .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media (max-width: 991px) {
  .ban-section .text {
    margin-top: 30px;
  }
}

.ban-section .text a {
  display: block;
}

.ban-section .text a img {
  max-width: 100%;
  margin: 10px 0 0;
}

@media (max-width: 991px) {
  .ban-section .text a img {
    max-width: 350px;
    width: 100%;
  }
}

.ban-section .text h1 {
  text-align: center;
  font-size: 24px;
  line-height: 39px;
  margin-bottom: 30px;
  font-family: var(--mont-b);
}

@media (max-width: 991px) {
  .ban-section .text h1 {
    font-size: 20px;
    line-height: 30px;
  }
}

.ban-section .text h1 span {
  border-bottom: 2px solid var(--red-color-100);
}

.ban-section .text .green-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ban-section .text .green-box img {
  margin-top: 10px;
  max-width: 220px;
  height: auto;
  width: 100%;
}

@media (max-width: 991px) {
  .ban-section .text .green-box img {
    max-width: 350px;
    width: 100%;
  }
}

.ban-section .news-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.ban-section .news-list li {
  width: calc((100% / 3) - (30px * 2) / 3);
}

@media (max-width: 991px) {
  .ban-section .news-list li {
    width: calc((100% / 2) - (30px * 1) / 2);
  }
}

@media (max-width: 576px) {
  .ban-section .news-list li {
    width: 100%;
  }
}

.ban-section .news-list li a {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 15px;
}

.ban-section .news-list li a img {
  width: 50px;
  height: 50px;
  filter: grayscale(1);
}

.ban-section .news-list li a h1 {
  font-size: 16px;
  font-family: var(--lora-b);
  color: var(--red-color-200);
  margin: 0;
}

.ban-section .news-list li a:hover {
  color: var(--red-color-200);
}

.about-section {
  z-index: 2;
  position: relative;
  padding: 0;
}

.about-section .boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px 0 0;
}

.about-section .boxes .box {
  width: calc(100% / 4 - ((30px*3) / 4));
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .about-section .boxes .box {
    width: calc(100% / 3 - ((30px*2) / 3));
  }
}

@media (max-width: 991px) {
  .about-section .boxes .box {
    width: calc(100% / 2 - ((30px*1) / 2));
  }
}

@media (max-width: 576px) {
  .about-section .boxes .box {
    width: 100%;
  }
}

.about-section .boxes .box:hover h1 {
  transition: all 360ms ease-in-out;
  color: var(--red-color-200);
  text-decoration: underline;
}

.about-section .boxes .box a {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 15px;
}

.about-section .boxes .box a:hover {
  text-decoration: none;
}

.about-section .boxes .box a img {
  width: 50px;
  height: 50px;
  filter: grayscale(1);
}

.about-section .boxes .box a h1 {
  font-size: 16px;
  font-family: var(--lora-b);
  color: var(--red-color-200);
  margin: 0;
}

.about-section .boxes .box a h3 {
  margin: 19px 0;
  font-size: 25px;
  line-height: 1.4em;
  color: var(--white-color);
  font-family: var(--lora-b);
}

.about-section .boxes .box a p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 26px;
  font-family: var(--open-r);
}

.about-section .boxes .box a h5 {
  color: var(--dark-color);
}

.txt {
  padding: 40px 0;
  margin-top: 10px;
  background: #900020;
  background: var(--red-color-100);
  background-size: cover;
}

.txt h4 {
  text-align: center;
  margin-bottom: 20px;
  color: white;
  font-style: italic;
}

.txt .moto {
  text-align: center;
  font-family: var(--mont-sb);
  font-size: 14px;
  line-height: 24px;
  color: white;
  font-style: italic;
}

.press-section {
  padding: 40px 0;
}

.press-section .press .box {
  display: flex;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .press-section .press .box {
    flex-direction: column;
  }
}

.press-section .press .box .image {
  width: 50%;
  max-height: 250px;
}

@media (max-width: 767px) {
  .press-section .press .box .image {
    width: 100%;
  }
}

.press-section .press .box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.press-section .press .box .text {
  padding: 20px 20px 35px;
  width: 50%;
  border: 1px solid rgba(0, 0, 0, 0.125);
  background: #f8f9fa;
  position: Relative;
}

@media (max-width: 767px) {
  .press-section .press .box .text {
    width: 100%;
  }
}

.press-section .press .box .text .link {
  display: block;
  font-family: var(--mont-b);
  font-size: 16px;
  color: var(--red-color-100);
  margin-bottom: 10px;
}

.press-section .press .box .text p {
  font-size: 14px;
  line-height: 18px;
  color: #000;
  font-family: var(--mont-r);
}

.press-section .press .box .text .all {
  font-family: var(--mont-b);
  text-align: right;
  color: #000;
  font-size: 15px;
  position: absolute;
  bottom: 10px;
  right: 20px;
  margin: 0;
}

.press-section .press .box .text .all:hover {
  color: var(--red-color-100);
}

.press-section .press .owl-nav {
  display: flex !important;
  margin: 17.5px 0 !important;
}

.press-section .press .owl-nav button {
  width: 50px;
  height: 50px;
  background: var(--red-color-100) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0.5px !important;
  border-radius: 0 !important;
}

.press-section .press .owl-nav button span {
  color: white !important;
  font-size: 36px !important;
}

.press-section .director {
  display: flex;
  margin-top: 70px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .press-section .director {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .press-section .director {
    flex-direction: column;
  }
}

.press-section .director .principal {
  margin-top: -10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .press-section .director .principal {
    order: 0;
  }
}

.press-section .director .box {
  width: calc(100% / 3);
  background: white;
}

@media (max-width: 767px) {
  .press-section .director .box {
    width: 100%;
  }
}

.press-section .director .box .image {
  width: 170px;
  height: 170px;
  margin: 5px auto 0;
  border-radius: 100%;
  overflow: hidden;
  border: 2px solid var(--red-color-100);
}

.press-section .director .box .image img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.press-section .director .box .text {
  padding: 30px;
}

.press-section .director .box .text h1 {
  color: black;
  font-size: 22px;
  margin: 0px 0px 20px 0px;
  font-family: var(--mont-b);
  text-align: center;
}

.press-section .director .box .text h3 {
  color: #8a8d91;
  margin: 0px 0px 20px 0px;
  font-family: var(--mont-r);
  font-size: 14px;
  text-align: center;
  min-height: 50px;
}

.press-section .director .box .text h4 {
  color: #8a8d91;
  margin: 0px auto 20px auto;
  font-family: var(--mont-b);
  font-size: 15px;
  border-bottom: 2px solid #CF2E2E;
  padding-bottom: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.press-section .director .box .text p {
  color: #8a8d91;
  margin: 0;
  font-family: var(--mont-r);
  font-size: 14px;
  text-align: center;
}

.press-section .director .box .text .cv {
  margin: 10px auto 0;
  color: var(--white-color);
  padding: 5px 15px;
  background: var(--red-color-100);
  font-family: var(--mont-r);
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--red-color-100);
}

.press-section .director .box .text .cv:hover {
  background: var(--white-color);
  color: var(--red-color-100);
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

.press-section .director .box .text .bottom-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  gap: 4px;
  font-family: var(--mont-r);
  font-size: 12px;
}

.press-section .director .box .text .bottom-txt a {
  color: var(--red-color-100);
  display: block;
}

.press-section .director .second {
  margin: 10px;
  box-shadow: 0px 20px 49px 0px rgba(24, 27, 33, 0.1);
}

@media (max-width: 767px) {
  .press-section .director .second {
    order: 1;
  }
}

.press-section .boxy {
  max-height: 810px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 15px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .press-section .boxy {
    margin-top: 30px;
  }
}

.press-section .boxy::-webkit-scrollbar {
  width: 1px;
  background: #e0e0e0;
}

.press-section .boxy::-webkit-scrollbar-thumb {
  background: var(--red-color-100);
}

.press-section .boxy .title {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  font-family: var(--second-r);
  font-weight: 500;
  border-bottom: 1px solid var(--red-color-100);
  margin-bottom: 10px;
  color: var(--red-color-100);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.press-section .boxy ul::-webkit-scrollbar {
  width: 1px;
}

@media (max-width: 576px) {
  .press-section .boxy ul {
    max-height: 500px;
  }
}

.press-section .boxy ul li {
  margin-bottom: 10px;
}

.press-section .boxy ul li a {
  display: flex;
  font-size: 12px;
  color: black;
  font-family: var(--mont-r);
}

.press-section .boxy ul li a:hover {
  color: var(--red-color-100);
  text-decoration: none;
  padding-left: 10px;
  transition: all 0.5s ease-in-out;
}

.press-section .boxy ul li a i {
  font-family: var(--fa-r);
  font-style: normal;
  margin-right: 10px;
}

.press-section .boxy ul li a i:before {
  color: var(--red-color-100);
}

.press-section .web-title {
  text-align: center;
  font-size: 24px;
  line-height: 39px;
  margin: 40px 0 0;
  font-family: var(--mont-b);
}

@media (max-width: 991px) {
  .press-section .web-title {
    font-size: 20px;
    line-height: 30px;
  }
}

.press-section .web-title span {
  border-bottom: 2px solid var(--red-color-100);
}

.contact .box {
  display: flex;
  flex: 0 0 auto;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .contact .box {
    flex-direction: column;
  }
}

.contact .box .blue {
  width: 35%;
  background: var(--red-color-100);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  font-family: var(--mont-b);
  height: 100%;
}

@media (max-width: 991px) {
  .contact .box .blue {
    width: 100%;
  }
}

.contact .box .blue h2 {
  color: var(--white-color);
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 38.4px;
}

.contact .box .blue .contact-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.contact .box .blue .contact-list li p {
  margin: 0;
  color: white;
  font-family: var(--mont-r);
  font-size: 14px;
}

.contact .box .blue .contact-list li a {
  margin: 0;
  color: white;
  font-family: var(--mont-r);
  font-size: 14px;
}

.contact .box .blue .contact-list li i {
  width: 20px;
}

.contact .box .blue .contact-list li i:before {
  color: white;
  font-size: 20px;
}

.contact .box .map {
  flex: 1;
  height: 400px;
}

@media (max-width: 991px) {
  .contact .box .map {
    width: 100%;
  }
}

.news-section {
  background: url(/img/b.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.news-section .title-style-2 {
  width: 100%;
  background: var(--red-color-100);
  padding: 0 15px;
}

.news-section .title-style-2 h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  font-size: 18px;
  border-right: none;
  font-family: var(--mont-b);
}

.news-section .title-style-2 .title {
  color: var(--white-color);
  line-height: 58px;
  font-family: var(--main-b);
  font-size: 18px;
  padding: 0 20px;
  text-transform: uppercase;
  margin: 0;
  display: block;
}

.news-section .title-style-2 .title img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.news-section .latest-updates {
  width: 100%;
  float: left;
  background: var(--white-color);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border-color-400);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  max-height: 930px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.news-section .latest-updates::-webkit-scrollbar {
  width: 2px;
}

.news-section .latest-updates::-webkit-scrollbar-thumb {
  background: var(--red-color-100);
}

.news-section .latest-updates .title {
  background: var(--red-color-100);
  color: var(--white-color);
  line-height: 58px;
  font-family: var(--main-b);
  font-size: 18px;
  padding: 0 20px;
  text-transform: uppercase;
  position: relative;
  margin: 0;
  display: block;
}

.news-section .latest-updates .title img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.news-section .latest-updates ul {
  margin: 0px;
  padding: 0 20px;
  list-style: none;
}

.news-section .latest-updates ul li {
  border-bottom: 1px solid var(--border-color-400);
  padding: 12px 0 12px;
  position: relative;
}

.news-section .latest-updates ul li:last-child {
  border-bottom: 0;
}

.news-section .latest-updates ul li strong a {
  display: block;
  line-height: 1.5;
  font-size: 16.4px;
  font-family: var(--main-sb);
  margin: 0 0 10px;
  letter-spacing: -0.5px;
  color: var(--main-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-section .latest-updates ul li strong a:hover {
  color: var(--red-color-100);
}

.news-section .latest-updates ul li .post-date {
  color: var(--second-color);
  font-size: 14px;
}

.news-section .latest-updates ul li .post-date i {
  color: var(--third-color-600);
  font-size: 16px;
  margin-right: 5px;
}

.news-section .latest-updates ul li:after {
  position: absolute;
  left: -20px;
  top: 0;
  width: 2px;
  height: 0;
  content: "";
  background: var(--red-color-100);
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.news-section .latest-updates ul li:hover:after {
  height: 100%;
}

.news-section .event-post {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2) !important;
}

.news-section .event-post .image-wrap {
  height: 221px;
}

.news-section .event-post .event-post-txt .event-meta {
  margin: 0 0 10px;
}

.news-section .event-post .event-post-txt .event-meta li {
  font-style: italic;
}

.news-section .event-post .event-post-txt .event-meta li i {
  color: var(--red-color-100);
}

.news-section .event-post .event-post-txt h5 a {
  font-family: var(--mont-sb) !important;
  font-size: 16px !important;
  min-height: 44.8px;
}

.news-section .event-post .event-post-txt h5 a:hover {
  color: var(--red-color-200);
}

.news-section .event-post .event-post-txt .more {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
  font-family: var(--mont-b);
  text-decoration: none;
  color: var(--red-color-100);
  border: 1px solid var(--red-color-100);
  display: block;
  margin-bottom: 10px !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.news-section .event-post .event-post-txt .more:hover {
  background: var(--red-color-100);
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}

.news-section .images .event-post:first-child .image-wrap {
  background: url(/img/conferinta.jpg) no-repeat center center;
  background-size: cover;
}

.news-section .images .event-post:nth-child(2) .image-wrap {
  background: url(/img/book.jpg) no-repeat center center;
  background-size: cover;
}

.main-links-section {
  background: url(/img/links.jpg) no-repeat center top;
  background-color: var(--bg-light-100);
}

.main-links-section .links {
  margin-top: 50px;
}

.main-links-section .box-wrap a {
  display: block;
  height: 100%;
}

.main-links-section .ch-box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: 0 5px 15px rgba(126, 97, 97, 0.5);
  border-radius: 8px;
}

.main-links-section .ch-box a {
  display: block;
}

.main-links-section .ch-box .ch-thumb {
  padding: 20px;
}

.main-links-section .ch-box .ch-thumb svg {
  fill: var(--bg-blue);
}

.main-links-section .ch-box:hover .ch-txt h5 {
  color: var(--red-color-100);
}

.main-links-section .ch-box .ch-txt {
  padding: 20px;
  z-index: 99;
  width: 100%;
  transition: all 350ms ease-in-out;
}

.main-links-section .ch-box .ch-txt h5 {
  margin: 0 0 7px;
  font-size: 24px;
  line-height: 1.4;
  font-family: var(--main-b);
  color: var(--main-color);
  transition: all 350ms ease-in-out;
}

.main-links-section .ch-box .ch-txt p {
  color: var(--main-color);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--second-r);
  transition: all 350ms ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.articles-section .article {
  margin-bottom: 30px;
}

.articles-section .article:nth-child(2) .article-box,
.articles-section .article:nth-child(8) .article-box {
  background: #2196f3;
}

.articles-section .article:nth-child(3) .article-box {
  background: #4caf50;
}

.articles-section .article:nth-child(4) .article-box {
  background: #795548;
}

.articles-section .article:nth-child(5) .article-box {
  background: #546e7a;
}

.articles-section .article:nth-child(6) .article-box {
  background: #d32f2f;
}

.contact-boxes-section {
  background: url(/img/contact-boxes.jpg) no-repeat center center;
}

.contact-boxes-section .boxes .box {
  background: var(--white-color);
  border: 1px solid var(--border-color-400);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  margin-bottom: 12px;
  height: 100%;
  padding: 35px 10px 15px 70px;
  position: relative;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.contact-boxes-section .boxes .box:hover {
  background: rgba(0, 73, 144, 0.7);
  border-color: rgba(0, 73, 144, 0.7);
}

.contact-boxes-section .boxes .box:hover strong,
.contact-boxes-section .boxes .box:hover p,
.contact-boxes-section .boxes .box:hover a {
  color: var(--white-color);
}

.contact-boxes-section .boxes .box i {
  position: absolute;
  left: 15px;
  top: 45px;
  font-size: 40px;
  color: var(--third-color-600);
}

.contact-boxes-section .boxes .box strong {
  color: var(--red-color-100);
  font-size: 24px;
  font-family: var(--main-b);
  display: block;
  line-height: 34px;
  margin: 0 0 10px;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.contact-boxes-section .boxes .box a,
.contact-boxes-section .boxes .box p {
  font-family: var(--main-sb);
  font-size: 14px;
  color: var(--second-color);
  margin: 0;
}

.contact-boxes-section .boxes .box a {
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.contact-boxes-section .boxes .box a:hover {
  color: var(--third-color-200);
}

.contact-boxes-section .boxes .box ul {
  display: flex;
  flex-wrap: wrap;
}

.contact-boxes-section .boxes .box ul li {
  width: 50%;
}

#map {
  width: 100%;
  height: 400px;
  border-top: 2px solid var(--red-color-100);
}

@media (max-width: 1199px) {
  .contact-boxes-section .boxes .box-wrap {
    margin-bottom: 30px;
  }

  .main-links-section .ch-box .ch-txt h5 {
    font-size: 20px;
    line-height: 1.4;
  }
}

@media (max-width: 991px) {
  .hero-section .content {
    height: 500px;
  }

  .hero-section .content .text h1 {
    font-size: 45px;
    line-height: 1.2;
  }

  .about-section .mayor-msg {
    margin: 0;
  }

  .news-section .latest-updates {
    margin-bottom: 30px;
  }

  .main-links-section .box-wrap {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .hero-section .content {
    height: 400px;
  }

  .hero-section .content .text h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero-section .content .text h5 {
    font-size: 20px;
    line-height: 1.4;
  }

  .about-section .lb-ser-box li {
    width: 100%;
  }

  .about-section .mayor-text {
    padding: 20px 0;
  }

  .news-section .latest-updates ul {
    padding: 0 10px;
  }

  .articles-section .article {
    margin-bottom: 15px;
  }

  .contact-boxes-section {
    background-size: cover;
  }

  .main-links-section .links {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .main-links-section .box-wrap {
    margin-bottom: 15px;
  }
}

