.hero-section .hero-slider.hidden {
  max-height: 0;
  overflow: hidden;
}
.hero-section .item {
  height: 930px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
@media (max-width: 1300px) {
  .hero-section .item {
    height: 800px;
  }
}
@media (max-width: 991px) {
  .hero-section .item {
    height: 720px;
  }
}
.hero-section .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.hero-section .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1);
  display: block;
}
.hero-section .item .cover {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.hero-section .item .cover .title {
  font-family: "second";
  color: var(--white-color);
  font-size: 56px;
  line-height: 68px;
  margin: 0 auto 20px;
  text-transform: capitalize;
  letter-spacing: 0;
  max-width: 670px;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .hero-section .item .cover .title {
    font-size: 60px;
    line-height: 75px;
  }
}
@media (max-width: 991px) {
  .hero-section .item .cover .title {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 767px) {
  .hero-section .item .cover .title {
    font-size: 36px;
    line-height: 46px;
  }
}
.hero-section .item .cover .description {
  font-size: 16px;
  line-height: 1.7em;
  color: var(--white-color);
  margin: 0 auto 15px;
  font-family: "main-r";
  max-width: 670px;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: pre-line;
}
@media (max-width: 767px) {
  .hero-section .item .cover .description {
    margin: 0 auto 35px;
  }
}
.hero-section .active .item .bg {
  transform: scale(1.15);
  transition: all 7s linear;
}

.media-section.imageBg {
  background-attachment: fixed !important;
}
.media-section.imageBg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.media-section.bg-light .wrap .text .short_description, .media-section.bg-light .wrap .text .title {
  color: var(--dark-200);
}
.media-section.bg-light .owl-dots .owl-dot span {
  background: var(--gray-200);
}
.media-section.bg-light .owl-dots .owl-dot.active span {
  background: var(--main-light);
}
.media-section .wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 767px) {
  .media-section .wrap {
    gap: 25px;
  }
}
.media-section .wrap .video {
  width: 100%;
  max-width: calc(50% - 45px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.media-section .wrap .video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: all 400ms ease-in-out;
}
.media-section .wrap .video:hover:before {
  background: rgba(0, 0, 0, 0.4);
}
@media (max-width: 991px) {
  .media-section .wrap .video {
    max-width: 100%;
    order: 2;
  }
}
.media-section .wrap .video img {
  border-radius: 20px;
}
@media (max-width: 991px) {
  .media-section .wrap .video img {
    width: auto;
    margin: 0 auto;
    max-width: 100%;
  }
}
.media-section .wrap .video svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 80px;
  height: 80px;
  fill: var(--white-color);
}
.media-section .wrap .text {
  width: 100%;
  max-width: calc(50% - 15px);
}
@media (max-width: 991px) {
  .media-section .wrap .text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.media-section .wrap .text .short_description {
  font-size: 16px;
  line-height: 24px;
  color: var(--white-color);
  font-family: "main-r";
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.media-section .wrap .text .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--white-color);
}
@media (max-width: 991px) {
  .media-section .wrap .text .title {
    -webkit-line-clamp: 12;
  }
}
.media-section .owl-dots {
  position: absolute;
  top: 50%;
  right: -100px;
  left: unset;
  bottom: unset;
  translate: 0 -50%;
  flex-direction: column;
  width: 12px;
  height: 100%;
}
@media (max-width: 1400px) {
  .media-section .owl-dots {
    right: 0px;
  }
}
@media (max-width: 991px) {
  .media-section .owl-dots {
    position: initial;
    flex-direction: row;
    width: 100%;
    height: 12px;
    translate: 0 0;
    margin-top: 20px;
  }
}

.news-second-section:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: var(--dark-200);
  width: 100%;
  height: 500px;
}
.news-second-section .head {
  margin-bottom: 60px;
}

.boxes-section .owl-dots {
  position: initial;
  translate: 0 0;
  margin-top: 20px;
}
.boxes-section .owl-dots .owl-dot span {
  background: var(--gray-200);
}
.boxes-section .owl-dots .owl-dot.active span {
  background: var(--main-light);
}
.boxes-section .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.boxes-section .wrap .area {
  width: 100%;
  max-width: calc(50% - 15px);
}
@media (max-width: 991px) {
  .boxes-section .wrap .area {
    max-width: 100%;
  }
}
.boxes-section .wrap .area.full {
  max-width: 100%;
}
.boxes-section .wrap .area.right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.boxes-section .wrap .area.right-icons ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.boxes-section .wrap .area.right-icons ul li {
  width: 100%;
  max-width: calc(25% - 22.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991px) {
  .boxes-section .wrap .area.right-icons ul li {
    max-width: calc(50% - 15px);
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 350px) {
  .boxes-section .wrap .area.right-icons ul li {
    max-width: 100%;
  }
}
.boxes-section .wrap .area.right-icons ul li:hover .icon:after {
  transform: scale(2);
  opacity: 0.05;
}
.boxes-section .wrap .area.right-icons ul li:nth-child(2) .icon svg {
  fill: var(--box-color2);
}
.boxes-section .wrap .area.right-icons ul li:nth-child(2) .icon:after {
  background: var(--box-color2);
}
.boxes-section .wrap .area.right-icons ul li:nth-child(3) .icon svg {
  fill: var(--box-color3);
}
.boxes-section .wrap .area.right-icons ul li:nth-child(3) .icon:after {
  background: var(--box-color3);
}
.boxes-section .wrap .area.right-icons ul li:nth-child(4) .icon svg {
  fill: var(--box-color4);
}
.boxes-section .wrap .area.right-icons ul li:nth-child(4) .icon:after {
  background: var(--box-color4);
}
.boxes-section .wrap .area.right-icons ul li .icon {
  position: relative;
  display: inline-block;
  min-width: 95px;
  padding-top: 30px;
  text-align: left;
  margin: 0 0 28px;
}
@media (max-width: 991px) {
  .boxes-section .wrap .area.right-icons ul li .icon {
    text-align: center;
  }
}
.boxes-section .wrap .area.right-icons ul li .icon:after {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  opacity: 0.15;
  transition: all 0.5s ease;
  background: var(--box-color1);
}
@media (max-width: 991px) {
  .boxes-section .wrap .area.right-icons ul li .icon:after {
    left: 45%;
  }
}
.boxes-section .wrap .area.right-icons ul li .icon svg {
  width: 60px;
  height: 60px;
  fill: var(--box-color1);
  position: relative;
  z-index: 2;
}
.boxes-section .wrap .area.right-icons ul li h2 {
  color: var(--dark-100);
  position: relative;
  font-size: 24px;
  line-height: 1.2em;
  margin: 0 0 12px;
  font-family: "second";
  text-transform: capitalize;
  text-align: center;
}
.boxes-section .wrap .area.right-icons ul li p {
  color: var(--dark-100);
  font-size: 14px;
  text-align: center;
}
.boxes-section .wrap .area .description {
  font-size: 16px;
  line-height: 28px;
  color: var(--dark-100);
  font-family: "main-r";
}
.boxes-section .wrap .area .description p {
  font-size: 16px;
  line-height: 28px;
  color: var(--dark-100);
  font-family: "main-r";
  margin-bottom: 10px;
}
.boxes-section .wrap .area .description ul {
  padding-left: 25px;
  margin-bottom: 10px;
}
.boxes-section .wrap .area .description ul li {
  font-size: 16px;
  line-height: 28px;
  color: var(--dark-100);
  font-family: "main-r";
  position: relative;
  list-style-type: disc;
}

.articles-section .head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}
.articles-section .head .title {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .articles-section .head {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
  }
}
.articles-section .wrap {
  position: relative;
  z-index: 2;
}
