/* HELPER CSS */
.line-clamp {
  display: -webkit-box !important;
  padding: 0 !important;
  --line-clamp: attr(data-line-clamp type(<integer>), none);
  --line-height: 1.5em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--line-clamp);
  line-height: var(--line-height);
  height: calc(var(--line-height) * var(--line-clamp));
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.overlay {
  --alpha: 0.5;
  --clr: rgba(0, 0, 0, var(--alpha));
  --clr-gradient: linear-gradient(var(--clr), var(--clr));
  border-image: var(--clr-gradient) fill 1;
}

.header {
  background-color: #0d7f7a;
  border-radius: 50px;
  position: relative;
}
.header nav {
  background-color: #9ebd9c;
  border-radius: 50px;
  padding: 2rem 4rem 0 4rem;
}
.header nav .menu {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-wrap: nowrap;
}
.header nav .menu li {
  position: relative;
}
.header nav .menu li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  transition: all ease 300ms;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
}
.header nav .menu li a:hover {
  background-color: #0d7f7a;
}
.header nav .menu li.seperator {
  width: 3px;
  height: 8px;
  background-color: #0d7f7a;
  border-radius: 50px;
}
.header nav .logo {
  transform: translateY(43%);
  width: -moz-fit-content;
  width: fit-content;
}
.header nav button.more {
  background-color: transparent;
  border: none;
  outline: none;
}
.header nav button.more i {
  color: #ffffff;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .lang {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 4rem 2rem 4rem;
}
.header .lang ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header .lang ul li {
  color: #9ebd9c;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.header .lang ul li a {
  color: #9ebd9c;
  transition: all ease 300ms;
}
.header .lang ul li a:hover {
  color: #ffffff !important;
}
.header .lang .search {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.5rem;
}
.header .lang .search input {
  padding: 1rem 2rem;
  border-radius: 50px;
  background-color: #9ebd9c;
  color: #0d7f7a;
  font-size: 15px;
  font-weight: 700;
  border: none;
  outline: none;
}
.header .lang .search input::-moz-placeholder {
  color: #0d7f7a;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}
.header .lang .search input::placeholder {
  color: #0d7f7a;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}
.header .lang .search button {
  background-color: transparent;
  border: none;
  outline: none;
  flex: 0 0 auto;
}
.header .lang .search button i {
  display: flex;
  color: #9ebd9c;
  font-size: 60px;
  align-items: center;
  justify-content: center;
}
.header .lang .search button:hover {
  animation: shake 150ms 2 both;
}
.header .close-site_btn {
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem;
  min-width: 261px;
  border-radius: 50px 50px 0 0;
  background-color: #002a4c;
  border: none;
  outline: none;
  cursor: pointer !important;
  z-index: 2;
  transition: all ease 500ms;
  transition-delay: 1500ms;
}
.header .close-site_btn span {
  color: #0d7f7a;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.header .close-site_btn .icon-mouse-minimalistic-svgrepo-com-2 {
  font-size: 24px;
}
.header .close-site_btn .icon-mouse-minimalistic-svgrepo-com-2::before {
  color: #0d7f7a;
}

@media screen and (max-width: 1200px) {
  .header {
    border-radius: 20px;
  }
  .header nav {
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 20px;
  }
  .header nav .menu {
    gap: 0.25rem;
  }
  .header .lang {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (width < 992px) {
  .lang {
    padding-bottom: 4rem !important;
  }
}
@media screen and (width < 560px) {
  .search button i {
    font-size: 30px !important;
  }
  .logo svg {
    max-width: 290px !important;
  }
}
@keyframes shake {
  0% {
    transform: translateX(3px);
  }
  50% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
footer {
  background-color: #0d7f7a;
  border-radius: 50px;
  color: #ffffff;
  position: relative;
}
footer nav {
  padding: 2rem 4rem;
}
footer nav ul li {
  cursor: pointer;
  transition: all ease 300ms;
}
footer nav ul li:hover i::before {
  color: #9ebd9c !important;
}
footer nav ul li:hover {
  transform: scale(1.1) !important;
}
footer nav ul li i {
  font-size: 22px;
}
footer nav ul li i::before {
  transition: all ease 300ms;
  transition-delay: 100ms;
}
footer nav p {
  font-size: 15px;
  font-weight: 400;
}
footer .body {
  background-color: #9ebd9c;
  border-radius: 50px;
  padding: 9.1875rem 4rem 2.375rem 4rem;
}
footer .body p {
  font-size: 12px;
  font-weight: 400;
}
footer .page-btn, footer #scroll-top {
  position: absolute;
  right: 50%;
  transform: translate(50%, -50%);
  top: 0;
  border: 0.4rem solid #002a4c;
}

@media screen and (max-width: 1200px) {
  footer nav {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  footer .body {
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 992px) {
  footer nav {
    padding-top: 3.5rem !important;
  }
  footer .body {
    padding-top: 4rem !important;
  }
}
@media screen and (max-width: 576px) {
  footer {
    border-radius: 20px;
  }
  footer .body {
    border-radius: 20px;
  }
}
.page-btn, #scroll-top {
  border-radius: 50px;
  background-color: #1a5f96;
  padding: 0.5625rem;
  outline: none;
  border: transparent;
  min-width: 261px;
  z-index: 3;
  position: absolute !important;
  right: 50%;
  top: 50%;
  transform: translate(50%, 40%);
  border: 0.4rem solid #002a4c;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
}
.page-btn div, #scroll-top div {
  border-radius: inherit;
  display: flex;
  background-color: #3593e0;
  padding: 0.95rem 2rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}
.page-btn div i, #scroll-top div i {
  font-size: 20px;
  display: flex;
  align-items: center;
}

#scroll-top {
  display: block;
  visibility: visible;
  opacity: 1;
}

.cards {
  border-radius: 0 50px 50px 0;
}
.cards .px-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
.cards .head {
  align-items: last baseline;
}
.cards .head .title {
  color: #0D7F7A;
  align-items: last baseline;
}
.cards .head .item {
  color: #9EBD9C;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}
.cards .item {
  border-radius: 30px;
  overflow: hidden;
}
.cards .item:hover .text-overlay {
  background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(0, 0, 0, 0.72) 75%);
}
.cards .item:hover .text-overlay .content {
  transform: translateY(-40px);
  transition: 1s;
}
.cards .item:hover .text-overlay .text .button {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0);
}
.cards .item:hover .text-overlay .text h6 {
  font-size: 18px;
  color: #9EBD9C !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  line-height: 1.5;
  height: -moz-fit-content;
  height: fit-content;
  text-align: justify;
}
.cards .item .image-container {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cards .item .text-overlay {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  color: white;
  font-size: 16px;
  padding: 10px 15px;
}
.cards .item .text-overlay .text {
  top: 24px;
  bottom: -20px;
}
.cards .item .text-overlay .text .icon {
  height: -moz-fit-content;
  height: fit-content;
}
.cards .item .text-overlay .text h6 {
  font-size: 18px;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  text-overflow: ellipsis;
  height: 3.5rem;
}
.cards .item .text-overlay .text .des {
  border-top: 3px solid #0D7F7A;
  font-size: 13px;
  text-align: justify;
  line-height: 1.8;
}
.cards .item .text-overlay .text .button {
  background-color: #3593E0;
  opacity: 0;
  transition: 0.35s;
}

@media (max-width: 992px) {
  .cards {
    border-radius: 50px 50px 50px 50px;
  }
  .cards .px-row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cards .item {
    border-radius: 48px !important;
  }
}
@media (max-width: 525px) {
  .cards .item {
    border-radius: 52px !important;
  }
}
@media (max-width: 768px) {
  .cards .item {
    border-radius: 65px !important;
  }
}
.font-10 {
  font-size: 10px;
}

.font-8 {
  font-size: 8px;
}

.font-12 {
  font-size: 12px !important;
}

.my-slider, .video-slide {
  background-color: #0d7f7a;
  border-radius: 50px;
  padding: 3.5rem 4.625rem 3.875rem 4.625rem;
  position: relative;
}
.my-slider .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card, .video-slide .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card {
  position: relative;
  border-radius: 50px;
  padding: 2rem;
  height: 448px;
  display: flex;
  align-items: end;
}
.my-slider .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .image, .video-slide .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .image {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
}
.my-slider .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .image img, .video-slide .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.my-slider .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .image::after, .video-slide .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.77) 76.58%);
  border-radius: inherit;
}
.my-slider .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .content, .video-slide .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .content {
  position: relative;
  z-index: 2;
}
.my-slider .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .content h4, .video-slide .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .content h4 {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: normal;
}
.my-slider .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .content p, .video-slide .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .content p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-height: 24px;
}
.my-slider .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .content hr, .video-slide .swiper.simple-swiper .swiper-wrapper .swiper-slide .simple-card .content hr {
  border-width: 0.2rem;
  border-color: #0d7f7a;
  border-radius: 50px;
  opacity: 1;
}
.my-slider .header, .video-slide .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.75rem;
  background-color: inherit;
}
.my-slider .header .title, .video-slide .header .title {
  display: flex;
  align-items: center;
}
.my-slider .header .title h4, .video-slide .header .title h4 {
  color: #ffffff;
  text-align: right;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.my-slider .header button, .video-slide .header button {
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background-color: #9ebd9c;
  border: none;
  outline: none;
  border-radius: 50px;
  padding: 0.2rem 1.5rem;
}
.my-slider .right-btn,
.my-slider .left-btn, .video-slide .right-btn, .video-slide .right-video,
.video-slide .left-btn,
.video-slide .left-video {
  position: absolute;
  height: 87px;
  width: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: calc(50% - 43.5px);
  cursor: pointer;
  transition: all ease 200ms;
}
.my-slider .right-btn:active, .video-slide .right-btn:active, .video-slide .right-video:active {
  transform: translate3d(-2px, 0px, 2px);
  box-shadow: -3px 0 7px #333;
}
.my-slider .left-btn:active, .video-slide .left-btn:active, .video-slide .left-video:active {
  transform: translate3d(2px, 0px, 2px);
  box-shadow: 3px 0 7px #333;
}
.my-slider .right-btn, .video-slide .right-btn, .video-slide .right-video {
  background: linear-gradient(90deg, #9ebd9c, #316360);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 5.5555555556px;
  border-bottom-right-radius: 5.5555555556px;
  right: -0.5rem;
  box-shadow: -5px 0 7px #444;
}
.my-slider .left-btn, .video-slide .left-btn, .video-slide .left-video {
  background: linear-gradient(-90deg, #9ebd9c, #316360);
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 5.5555555556px;
  border-bottom-left-radius: 5.5555555556px;
  left: -0.5rem;
  box-shadow: 5px 0 7px #444;
}

@media screen and (max-width: 576px) {
  .my-slider {
    padding: 1rem;
    border-radius: 20px;
  }
  .my-slider .simple-card {
    border-radius: 20px !important;
  }
  .my-slider .right-btn, .my-slider .video-slide .right-video, .video-slide .my-slider .right-video,
  .my-slider .left-btn,
  .my-slider .video-slide .left-video,
  .video-slide .my-slider .left-video {
    display: none;
  }
  .my-slider .right-btn.disable, .my-slider .video-slide .disable.right-video, .video-slide .my-slider .disable.right-video,
  .my-slider .left-btn.disable,
  .my-slider .video-slide .disable.left-video,
  .video-slide .my-slider .disable.left-video {
    cursor: default;
    opacity: 0.7;
    filter: blur(1px);
  }
  .my-slider .header {
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
}
.casecase-slider .swiper.casecade-swiper {
  position: relative;
}
.casecase-slider .swiper.casecade-swiper .swiper-wrapper {
  padding: 5rem 0;
}
.casecase-slider .swiper.casecade-swiper .swiper-wrapper .swiper-slide .casecade-card {
  border-radius: 50px;
  height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 4rem;
}
.casecase-slider .swiper.casecade-swiper .swiper-wrapper .swiper-slide .casecade-card .image {
  position: absolute;
  border: 0.5rem solid #0D7F7A;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
}
.casecase-slider .swiper.casecade-swiper .swiper-wrapper .swiper-slide .casecade-card .image img {
  width: 100%;
  height: 100%;
  border-radius: 42px;
  -o-object-fit: cover;
     object-fit: cover;
}
.casecase-slider .swiper.casecade-swiper .swiper-wrapper .swiper-slide .casecade-card .hashtag {
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-right: 4.375rem;
}
.casecase-slider .swiper.casecade-swiper .swiper-wrapper .swiper-slide .casecade-card .hashtag a {
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background-color: #0D7F7A;
  border-radius: 50px;
  padding: 0.2rem 1.4rem;
}
.casecase-slider .swiper.casecade-swiper .swiper-wrapper .swiper-slide .casecade-card .content {
  position: relative;
  z-index: 2;
  padding: 1.625rem 4.375rem 2.1875rem 2.5rem;
  background: rgba(13, 127, 122, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50px 0 0 50px;
  width: 70%;
}
.casecase-slider .swiper.casecade-swiper .swiper-wrapper .swiper-slide .casecade-card .content h4 {
  color: #ffffff;
  text-align: right;
  font-size: 36px;
  font-weight: 900;
  line-height: normal;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.casecase-slider .swiper.casecade-swiper .swiper-wrapper .swiper-slide .casecade-card .content .desc {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.casecase-slider .swiper.casecade-swiper .swiper-wrapper .swiper-slide .casecade-card .content .desc a {
  text-wrap: nowrap;
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  background-color: #3593e0;
  border-radius: 50px;
  padding: 0.2rem 1.3rem 0.3rem 1.3rem;
}
.casecase-slider .swiper.casecade-swiper .swiper-wrapper .swiper-slide .casecade-card .content .desc p {
  color: #ffffff;
  text-align: right;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 0;
}
.casecase-slider .swiper.casecade-swiper .slide-next,
.casecase-slider .swiper.casecade-swiper .slide-prev {
  width: 87px;
  height: 49px;
  background: linear-gradient(#0d807a, #004643);
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.casecase-slider .swiper.casecade-swiper .slide-next {
  border-radius: 5px 5px 50px 50px;
  top: 9%;
}
.casecase-slider .swiper.casecade-swiper .slide-prev {
  border-radius: 50px 50px 5px 5px;
  bottom: 9%;
}
.casecase-slider .swiper.casecade-swiper .slide-next.disable,
.casecase-slider .swiper.casecade-swiper .slide-prev.disable {
  cursor: default;
  opacity: 0.7;
  filter: blur(1px);
}

@media screen and (max-width: 575px) {
  .casecase-slider .slide-prev {
    bottom: 12% !important;
  }
  .casecase-slider .slide-next {
    top: 12% !important;
  }
  .casecade-card {
    height: 450px !important;
  }
  .casecade-card .hashtag {
    padding-right: 1rem !important;
  }
  .casecade-card .content {
    padding-right: 1rem !important;
    width: 85% !important;
  }
}
nav {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination > .page-item > .page-link {
  border: none;
  color: #9EBD9C;
  margin: 0 15px;
}

.pagination > .page-item > .page-link:hover {
  background-color: #9EBD9C;
  color: white;
  border-radius: 12px;
}

.pagination > .page-item.active > .page-link,
.pagination > .page-item.active > .page-link:hover {
  background-color: #9EBD9C;
  color: white;
  border-radius: 12px;
  padding: 0.25rem 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

@media (max-width: 560px) {
  .pagination > .page-item > .page-link {
    border: none !important;
    color: #9EBD9C;
    margin: 0;
  }
}
.comment {
  border-radius: 0px 50px 50px 0px;
  padding-right: 3rem;
  padding-left: 3rem;
}
.comment .font-10 {
  font-size: 10px !important;
}
.comment .form-control:focus {
  box-shadow: none !important;
}
.comment textarea {
  resize: vertical !important;
}
.comment ::-moz-placeholder {
  text-align: right;
  color: #9A9A9A;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.comment ::placeholder {
  text-align: right;
  color: #9A9A9A;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.comment .icon {
  bottom: 10px;
  left: 10px;
}
.comment .number-comment {
  color: #9EBD9C;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}
.comment .title {
  overflow: hidden;
  color: #0D7F7A;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  padding-left: 1.5rem;
}
.comment .color-star {
  color: #0D7F7A;
}
.comment .color-star:hover {
  color: #ffd700;
}
.comment .reply {
  color: #0D7F7A;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  left: 29px;
  bottom: 19px;
  cursor: pointer;
}
.comment .btn-form {
  border-radius: 40px;
  background: #0D7F7A;
  width: 35%;
}
.comment .user-details {
  width: 30%;
}
.comment .border-ra {
  border-radius: 40px;
  border: 3px solid #9EBD9C;
}
.comment .hover-star {
  font-size: 2rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.comment .hover-star:hover {
  transform: scale(1.2);
  color: #ffd700;
}
.comment .feedback-item {
  margin-bottom: 15px;
  border-radius: 12px;
}
.comment .feedback-meta {
  font-size: 0.9em;
  color: #666;
}
.comment .date {
  color: #848484;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}
.comment .user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comment .rating-stars {
  direction: ltr;
  display: inline-flex;
  gap: 2px;
}
.comment .star-rating {
  color: #ffd700;
  font-size: 16px;
}
.comment .user-name {
  color: #737373;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.comment .feedback-content {
  padding: 1rem 1.5rem 1rem 1.5rem;
  background-color: white;
  border-radius: 8px;
  margin-bottom: 10px;
  border-radius: 18px 0px 18px 18px;
  border: 3px solid #9EBD9C;
}
.comment .feedback-content p {
  font-size: 12px !important;
}
.comment .feedback-content .text {
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}
.comment .reply-link {
  font-size: 0.9em;
  color: #007bff;
  cursor: pointer;
  margin-left: 10px;
}
.comment .reply-form {
  display: none;
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
}
.comment .reply-item {
  margin-top: 10px;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border-radius: 18px 0px 18px 18px;
  border: 3px solid #9EBD9C;
  background: rgba(158, 189, 156, 0.28);
}
.comment .reply-user-info {
  gap: 10px;
  margin-bottom: 5px;
}
.comment .reply-user-info .user-name {
  color: #9EBD9C;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.comment .reply-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comment .reply-meta {
  color: #848484;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}
.comment .replies-section {
  width: 85%;
}
@media (max-width: 576px) {
  .comment .user-info {
    flex-direction: column;
    text-align: center;
  }
  .comment .user-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .comment .btn-form {
    width: 50%;
  }
  .comment .feedback-item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .comment .feedback-content {
    padding: 12px;
    border-radius: 18px 0px 18px 18px;
    border: 3px solid #9EBD9C;
  }
  .comment .reply-item {
    padding: 12px;
  }
  .comment .hover-star {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .comment .reply-details {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .comment .user-details {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .comment .text {
    width: 100% !important;
  }
  .comment .feedback-item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .comment .feedback-content {
    padding: 10px;
  }
  .comment .reply-item {
    padding: 10px;
  }
  .comment .hover-star {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .comment .user-avatar {
    width: 60px;
    height: 60px;
  }
  .comment .hover-star {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  .comment {
    border-radius: 50px 50px 50px 50px !important;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.video-slide {
  background-color: #9ebd9c;
  margin-bottom: 4rem;
}
.video-slide .header button {
  background-color: #0d7f7a;
}
.video-slide .video-slider .video {
  border-radius: 30px;
  position: relative;
}
.video-slide .video-slider .video::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.368627451) 24%, rgba(0, 0, 0, 0));
}
.video-slide .video-slider .video video {
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 268px;
  width: 100%;
  height: 100%;
}
.video-slide .video-slider .video .controls {
  position: absolute;
  z-index: 2;
  width: 96%;
  bottom: 1rem;
  right: 2%;
  height: -moz-fit-content;
  height: fit-content;
}
.video-slide .video-slider .video .controls svg {
  width: 100%;
  height: auto !important;
}
.video-slide .video-slider .video .controls .play-pause {
  background-color: transparent;
  outline: none;
  border: none;
  position: absolute;
  top: -2rem;
  right: 50%;
  transform: translateX(50%);
}
.video-slide .video-slider .video .controls .play-pause i[class*=play] {
  font-size: 55px;
}
.video-slide .video-slider .video .controls .play-pause i[class*=pause] {
  font-size: 45px;
  display: none;
}
.video-slide .video-slider .video .controls .timer {
  position: absolute;
  top: 20%;
  width: 90%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-slide .video-slider .video .controls .timer .pass,
.video-slide .video-slider .video .controls .timer .total {
  color: #ffffff;
  font-size: 10px;
  font-weight: 400;
  line-height: 19px;
}
.video-slide .video-slider .video .controls .range {
  position: absolute;
  width: 90%;
  right: 5%;
  top: 50%;
}
.video-slide .video-slider .video .controls .range input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  cursor: pointer;
}
.video-slide .video-slider .video .controls .range input[type=range]::-webkit-slider-runnable-track {
  background: #0d7f7a;
  height: 3px;
  border-radius: 50px;
}
.video-slide .video-slider .video .controls .range input[type=range]::-moz-range-track {
  background: #0d7f7a;
  height: 3px;
  border-radius: 50px;
}
.video-slide .video-slider .video .controls .range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -12px;
  background-color: #ffffff;
  height: 7px;
  width: 7px;
  border-radius: 50px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.4078431373);
  border: none;
  -webkit-transition: all ease 150ms;
  transition: all ease 150ms;
}
.video-slide .video-slider .video .controls .range input[type=range]::-moz-range-thumb {
  border-radius: 0;
  background-color: #ffffff;
  height: 7px;
  width: 7px;
  border-radius: 50px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.4078431373);
  border: none;
  -moz-transition: all ease 150ms;
  transition: all ease 150ms;
}
.video-slide .video-slider .video .controls .range input[type=range]:hover::-moz-range-thumb,
.video-slide .video-slider .video .controls .range input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5450980392);
  background-color: #ebebeb;
}
.video-slide .video-slider .video .controls .range .popup {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%2242%22%20height%3D%2221%22%20viewBox%3D%220%200%2042%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M25.1136%2017.9538C25.681%2017.3454%2026.4756%2016.9999%2027.3075%2016.9999H36.5325C39.2939%2016.9999%2041.5325%2014.7613%2041.5325%2011.9999V4.9999C41.5324%202.23854%2039.2938%20-0.000102997%2036.5325%20-0.000102997H5.13696C2.37562%20-6.29425e-05%200.137036%202.23856%200.136963%204.9999V11.9999C0.136963%2014.7613%202.37557%2016.9999%205.13696%2016.9999H15.3727C16.2046%2016.9999%2016.9992%2017.3454%2017.5666%2017.9538L19.1461%2019.6474C20.3323%2020.9193%2022.3479%2020.9193%2023.534%2019.6474L25.1136%2017.9538Z%22%20fill%3D%22%239EBD9C%22%2F%3E%3C%2Fsvg%3E");
          mask: url("data:image/svg+xml,%3Csvg%20width%3D%2242%22%20height%3D%2221%22%20viewBox%3D%220%200%2042%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M25.1136%2017.9538C25.681%2017.3454%2026.4756%2016.9999%2027.3075%2016.9999H36.5325C39.2939%2016.9999%2041.5325%2014.7613%2041.5325%2011.9999V4.9999C41.5324%202.23854%2039.2938%20-0.000102997%2036.5325%20-0.000102997H5.13696C2.37562%20-6.29425e-05%200.137036%202.23856%200.136963%204.9999V11.9999C0.136963%2014.7613%202.37557%2016.9999%205.13696%2016.9999H15.3727C16.2046%2016.9999%2016.9992%2017.3454%2017.5666%2017.9538L19.1461%2019.6474C20.3323%2020.9193%2022.3479%2020.9193%2023.534%2019.6474L25.1136%2017.9538Z%22%20fill%3D%22%239EBD9C%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 42px;
  height: 21px;
  background-color: #9ebd9c;
  position: absolute;
  top: -1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(17px);
  opacity: 0;
  visibility: hidden;
  transition: opacity ease 500ms;
}
.video-slide .video-slider .video .controls .range .popup span {
  color: #ffffff;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 23px;
  display: block;
  margin-bottom: 5px;
}
.video-slide .video-slider .content .titles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.video-slide .video-slider .content .titles h4 {
  color: #002a4c;
  text-align: right;
  font-size: 36px;
  font-weight: 900;
  text-wrap: nowrap;
}
.video-slide .video-slider .content .titles .icons {
  display: flex;
  align-items: center;
  justify-self: end;
  flex-direction: row-reverse;
}
.video-slide .video-slider .content .titles .icons i {
  color: #0d7f7a;
}
.video-slide .video-slider .content .titles .icons span {
  color: #ffffff;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}
.video-slide .video-slider .content .desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.video-slide .video-slider .content .desc p {
  color: #0d7f7a;
  text-align: right;
  font-size: 15px;
  font-weight: 300;
  margin: 0;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.video-slide .video-slider .content .desc .hashtag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.video-slide .video-slider .content .desc .hashtag a {
  color: #9ebd9c;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 19px;
  background-color: #ffffff;
  padding: 0.1rem 0.7rem;
  border-radius: 50px;
  transition: all ease 300ms;
}
.video-slide .video-slider .content .desc .hashtag a:hover {
  background-color: #3593e0;
  color: #ffffff;
}
.video-slide .right-video {
  z-index: 100;
  background: linear-gradient(90deg, #0d807a, #004643);
}
.video-slide .left-video {
  z-index: 100;
  background: linear-gradient(-90deg, #0d807a, #004643);
}

@media screen and (max-width: 576px) {
  .video-slide {
    padding: 1rem;
    border-radius: 20px;
  }
  .video-slide .video {
    border-radius: 20px !important;
    position: relative;
  }
  .video-slide .video video {
    border-radius: inherit;
  }
  .video-slide .header {
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .video-slide .right-video, .video-slide .left-video {
    display: none;
  }
  .video-slide .content .titles .col-6 {
    padding: 0 0.4rem;
  }
}
.banner {
  padding: 4rem;
  border-radius: 50px;
  background-color: #eef7fe;
  position: relative;
  margin: 3rem 0;
}
.banner .title {
  color: #002a4c;
  text-align: right;
  font-size: 36px;
  font-weight: 900;
}
.banner .intro {
  color: #3593e0;
  text-align: right;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}
.banner .detail {
  color: #0d7f7a;
  text-align: justify;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 2rem;
}
.banner a[role=button] {
  padding: 0.3rem 1.7rem;
  border-radius: 50px;
  color: #3593e0;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  background-color: #ffffff;
  transition: all ease 300ms;
}
.banner a[role=button]:hover {
  background-color: #3593e0;
  color: #ffffff;
}
.banner .poster {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 15px 15px #222222) drop-shadow(0 0 500px rgb(77, 77, 215));
}

@media screen and (max-width: 576px) {
  .banner {
    padding: 1.5rem;
    border-radius: 20px;
  }
}
.content-page {
  border-radius: 0px 50px 50px 0px;
  padding-left: 3rem;
  padding-right: 3rem;
}
.content-page .icon .number {
  color: #9EBD9C;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  margin-left: 5px;
}
.content-page .title .number-like {
  color: #9EBD9C;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}
.content-page .title h1 {
  overflow: hidden;
  color: #0D7F7A;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.content-page .title .des {
  color: #9EBD9C;
  text-align: right;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}
.content-page .title .text {
  color: #9A9A9A;
  text-align: justify;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.content-page .story p {
  color: #000;
  text-align: justify;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}
.content-page .story .podcast {
  border-radius: 30px;
  background: #9EBD9C;
}
.content-page .story .podcast h3 {
  overflow: hidden;
  color: #002A4C;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.content-page .story .podcast .play-left {
  rotate: 180deg;
  color: #0D7F7A;
}
.content-page .story .podcast .play-right {
  color: #0D7F7A;
}
.content-page .story .podcast .title {
  overflow: hidden;
  color: #002A4C;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.content-page .story .video .item:not(:last-child) {
  border-bottom: 1px solid #9A9A9A !important;
}
.content-page .story .video .item .title {
  overflow: hidden;
  color: #BFC9D2;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.content-page .story .video .item .play-icon {
  width: 41px;
  height: 41px;
  background-color: #9EBD9C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-page .story .video .item .play-icon:hover {
  background-color: #0D7F7A;
}
.content-page .story .video .active .play-icon {
  background-color: #0D7F7A !important;
}
.content-page .story .video .active .title {
  color: #002A4C !important;
}
.content-page .story .video .box {
  border-radius: 30px;
  background: #9EBD9C;
}
.content-page .story .video .box .title {
  overflow: hidden;
  color: #002A4C;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.content-page .story .file {
  border-radius: 30px;
  background: #9EBD9C;
}
.content-page .story .file h3 {
  overflow: hidden;
  color: #002A4C;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.content-page .story .file .mp {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  background: #0D7F7A;
}
.content-page .story .file .play-left {
  rotate: 180deg;
  color: #0D7F7A;
}
.content-page .story .file .play-right {
  color: #0D7F7A;
}
.content-page .story .file p {
  color: #000;
  text-align: justify;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.content-page .story .file .mb {
  color: #0D7F7A;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.content-page .story .tag {
  border-bottom: 1px solid #0D7F7A;
}
.content-page .story .tag .hashtag {
  font-family: IRANSansXFaNum;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  border-radius: 15px;
  background: #0D7F7A;
  padding: 0 0.75rem;
}
.content-page .story .tag .writer p {
  color: #9A9A9A;
  text-align: right;
  font-family: IRANSansXFaNum;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}
.content-page .story .tag .writer a {
  color: #9A9A9A;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}

@media (max-width: 992px) {
  .content-page {
    border-radius: 50px 50px 50px 50px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.sidebar {
  border-radius: 50px 0px 0px 50px;
  background: #9EBD9C;
}
.sidebar .px-item {
  padding-left: 4rem;
  padding-right: 4rem;
}
.sidebar .border-bottom {
  border-bottom: 1px solid #0D7F7A !important;
}
.sidebar .name {
  overflow: hidden;
  color: #0D7F7A;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-line-clamp: 3;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.sidebar .icon-color {
  color: #0D7F7A;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}

.box-empty {
  background-color: #9EBD9C;
  border-radius: 50px !important;
  height: 200px;
}

@media (max-width: 992px) {
  .sidebar {
    border-radius: 50px 50px 50px 50px;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media (max-width: 400px) {
  .px-item {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}
#menuModal {
  fill: rgba(139, 162, 157, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
#menuModal .icon-button {
  position: absolute;
  left: 0.7rem;
  top: 1.75rem;
  background: unset;
  border: unset;
}
#menuModal .modal-dialog {
  pointer-events: visible;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  margin: 8rem auto 0;
}
#menuModal .modal-dialog ul {
  padding: 0;
}
#menuModal .modal-dialog ul li {
  margin-top: 1.5rem;
}
#menuModal .modal-dialog ul li a {
  display: flex;
  justify-content: center;
  color: #FFF;
  font-family: IRANSansX;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  transition: 0.3s;
  position: relative;
}
#menuModal .modal-dialog ul li a h2:hover {
  text-shadow: 0 2px 15px #acffa8;
}
#menuModal .modal-dialog ul li a:hover {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 10.5%;
}
#menuModal .modal-dialog ul li a:hover ::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-top: 12px solid #acffa8;
  filter: blur(6px);
  z-index: -1;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-align: right;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

body {
  background-color: #002a4c;
  direction: rtl;
  font-family: "IRANSansX";
}
body main {
  transition: all ease 2000ms;
}

.relative {
  position: relative;
}

.persian-numbers {
  font-feature-settings: "ss02";
}

section {
  transition: all ease 1000ms;
}

.disable {
  cursor: default !important;
}

.font-10 {
  font-size: 10px !important;
  cursor: not-allowed !important;
}

.hide-buttons {
  opacity: 0 !important;
  visibility: hidden !important;
}

.show-buttons {
  opacity: 1 !important;
  visibility: visible !important;
}/*# sourceMappingURL=style.css.map */
