/*ONPASSIVE BLOG REPUBLIC THEME */
body {
  font-family: "Poppins", sans-serif;
}

*:focus {
  box-shadow: none !important;
  outline: none !important;
}

.post-date span {
  color: #fff;
  font-size: clamp(12px, 0.72916vw, 14px);
}

.views {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #6A6A6A;
}

.play-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #FA9E15;
  border-radius: 50rem;
  z-index: 3;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.play-btn::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 54px;
  height: 54px;
  background: #FA9E15;
  border-radius: 50%;
  animation: pulse-border 1.5s ease-out infinite;
}
.play-btn::before {
  content: "";
  width: 54px;
  height: 54px;
  background-color: #FA9E15;
  position: absolute;
  border-radius: 50rem;
  transition: all 0.2s ease-in-out;
}
.play-btn svg {
  position: relative;
  z-index: 2;
  margin-left: 0.35rem;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.75);
    opacity: 0;
  }
}
.scroll-top {
  position: fixed;
  width: 2.5rem;
  height: 2.5rem;
  bottom: 5rem;
  right: 1.5rem;
  border: 1px solid #FA9E15;
  background-color: #FA9E15;
  border-radius: 50rem;
  transform: rotate(-90deg);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.2s ease-in-out;
}
.scroll-top svg path {
  fill: #fff;
}
.scroll-top.active {
  opacity: 1;
  z-index: 99;
}
.scroll-top:hover {
  background-color: #015391;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.btn.switch-lang {
  background-color: #015391;
  border-radius: 50rem;
  color: #fff;
  padding: 0.25rem 0.75rem 0.25rem 2rem;
  position: fixed;
  left: -1rem;
  top: 20%;
  z-index: 49;
  font-size: 14px;
  animation: blinking 2s infinite;
}

@keyframes blinking {
  0% {
    background-color: #015391;
  }
  50% {
    background-color: #F58932;
  }
  100% {
    background-color: #015391;
  }
}
.hero-banner .heroSider .slider-nav-next, .hero-banner .heroSider .slider-nav-prev {
  display: none;
  position: absolute;
  top: 30%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  background-color: #FA9E15;
  z-index: 9;
}
@media (max-width: 575.98px) {
  .hero-banner .heroSider .slider-nav-next, .hero-banner .heroSider .slider-nav-prev {
    display: flex;
  }
}
.hero-banner .heroSider .slider-nav-next svg path, .hero-banner .heroSider .slider-nav-prev svg path {
  fill: #015391;
}
.hero-banner .heroSider .slider-nav-next.swiper-button-disabled, .hero-banner .heroSider .slider-nav-prev.swiper-button-disabled {
  opacity: 0.5;
}
.hero-banner .heroSider .slider-nav-next {
  right: 0;
}
.hero-banner .heroSider .slider-nav-prev {
  left: 0;
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: calc(94vh - 150px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 150px;
}
@media (max-width: 575.98px) {
  .hero-banner .heroSider .swiper-slide .swiper-slide-inner {
    padding-bottom: 24px;
    height: calc(70vh - 24px);
  }
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(218, 185, 185, 0) 0%, #002c4d 100%);
  z-index: 1;
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner .container {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent {
    padding-bottom: 40px;
  }
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent .product-icon {
  background: #FA9E15;
  display: inline-flex;
  border-radius: 20px;
  padding: 4px;
  align-items: center;
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent .product-icon span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent .product-icon span img {
  width: 18px;
  height: 18px;
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent .product-icon strong {
  color: #fff;
  font-size: clamp(12px, 0.72916vw, 14px);
  font-weight: 400;
  display: inline-flex;
  margin: 0 10px;
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent .post-date svg path {
  fill: #fff;
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent h1, .hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent h2 {
  color: #fff;
  font-size: clamp(20px, 1.77vw, 34px);
  font-weight: 600;
  width: 75%;
  letter-spacing: 0.51px;
}
@media (max-width: 991.98px) {
  .hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent h1, .hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent h2 {
    width: 100%;
  }
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent .btn {
  color: #FA9E15;
  padding: 0rem;
  transition: all 0.2s ease-in-out;
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent .btn:hover {
  text-decoration: underline;
}
.hero-banner .heroSider .swiper-slide .swiper-slide-inner .viewSlideContent p span {
  color: #fff;
  font-size: clamp(10px, 0.625vw, 12px);
  font-weight: 400;
}
.hero-banner .hero-slider-thumb {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 3rem;
}
@media (max-width: 575.98px) {
  .hero-banner .hero-slider-thumb {
    display: none;
  }
}
.hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-next, .hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-prev {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 10px);
  width: 30px;
  height: 30px;
  border-radius: 0.25rem;
  background-color: #022E4E;
  opacity: 1;
  z-index: 3;
  transition: all 0.2s ease-in-out;
}
.hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-next svg path, .hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-prev svg path {
  fill: #FA9E15;
  transition: all 0.2s ease-in-out;
}
.hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-next:hover, .hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-prev:hover {
  background-color: #FA9E15;
  cursor: pointer;
}
.hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-next:hover svg path, .hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-prev:hover svg path {
  fill: #fff;
}
.hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-next.swiper-button-disabled, .hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-prev.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-next {
  right: 0;
}
.hero-banner .hero-slider-thumb .heroSiderNav .slider-nav-prev {
  left: 0;
}
.hero-banner .hero-slider-thumb .heroSiderNav a {
  text-decoration: none;
}
.hero-banner .hero-slider-thumb .heroSiderNav .thumb {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1.5rem 0rem;
}
.hero-banner .hero-slider-thumb .heroSiderNav .thumb * {
  transition: all 0.2s ease-in-out;
}
.hero-banner .hero-slider-thumb .heroSiderNav .thumb .post-date svg path {
  fill: #fff;
}
.hero-banner .hero-slider-thumb .heroSiderNav .thumb .thumbImg {
  width: 200px;
  height: 90px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  border-radius: 0.5rem;
  margin-right: 0.75rem;
}
.hero-banner .hero-slider-thumb .heroSiderNav .thumb .thumbContent h4 {
  color: #fff;
  font-size: clamp(12px, 0.72916vw, 14px);
  font-weight: 400;
  letter-spacing: 0.51px;
}
.hero-banner .hero-slider-thumb .heroSiderNav .thumb:hover {
  border-top-color: #FA9E15;
  cursor: pointer;
}
.hero-banner .hero-slider-thumb .heroSiderNav .thumb:hover .thumbContent h4 {
  color: #FA9E15;
}
.hero-banner .hero-slider-thumb .heroSiderNav .swiper-slide-thumb-active .thumb {
  border-top-color: #FA9E15;
}
.hero-banner .hero-slider-thumb .heroSiderNav .swiper-slide-thumb-active .thumb .thumbContent h4 {
  color: #FA9E15;
}
.hero-banner .view-popular-posts {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #EEF8FF;
  color: #051521;
  font-size: 14px;
  border-color: #D2E4F3;
  border-radius: 50rem;
  padding: 0.5rem 1.75rem;
  z-index: 1;
  text-decoration: none;
  height: 34px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
  transform: translate(0px, -16px);
  transition: all 0.2s ease-in-out;
}
.hero-banner .view-popular-posts:hover {
  background-color: #015391;
  color: #fff;
}
.hero-banner .view-popular-posts:focus {
  box-shadow: none;
}

section {
  background-color: #D5EBFF;
  position: relative;
}
section.home-video .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.home-video .title h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 100px);
  color: #0B2437;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin: 0;
}
section.home-video .title h2:after {
  content: "";
  display: block;
  flex-grow: 1;
  margin-left: 0.5rem;
  height: 3px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #A3CBF1;
}
section.home-video .title .btn-light {
  border-radius: 50rem;
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #0B2437;
  font-weight: 400;
  padding: 0.25rem 1.25rem;
  transition: all 0.2s ease-in-out;
}
section.home-video .title .btn-light:focus {
  box-shadow: none;
}
section.home-video .title .btn-light:hover {
  background-color: #FA9E15;
  color: #fff;
}
section.home-video .media-player {
  position: relative;
}
section.home-video .media-player .post-img {
  width: 100%;
  height: 550px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  border-radius: 1rem;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.home-video .media-player .post-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(0, 36, 62, 0) 0%, rgba(0, 36, 62, 0) 0%, #00243E 100%);
}
section.home-video .media-player .post-img .play-btn {
  position: absolute;
}
section.home-video .media-player .post-img #videoContainer {
  width: 100%;
  height: 100%;
}
section.home-video .media-player .post-img #videoContainer iframe {
  width: 100%;
  height: 100%;
  position: relative;
}
section.home-video .media-player .post-detail {
  position: absolute;
  width: calc(100% - 4rem);
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
}
section.home-video .media-player .post-detail h3 {
  color: #fff;
}
section.home-video .media-player .post-detail .category-icon {
  display: inline-flex;
  align-items: center;
  background-color: #EEF8FF;
  color: #051521;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  font-size: clamp(12px, 0.72916vw, 14px);
}
section.home-video .media-player .post-detail .category-icon .icon img {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
}
section.home-video .media-player .post-detail .post-date svg path {
  fill: #fff;
}
section.home-video .play-list {
  height: 550px;
  padding-right: 10px;
  overflow-y: scroll;
}
section.home-video .play-list::-webkit-scrollbar {
  width: 5px;
}
section.home-video .play-list::-webkit-scrollbar-track {
  background: #0B2437;
}
section.home-video .play-list::-webkit-scrollbar-thumb {
  background: #FA9E15;
}
section.home-video .play-list::-webkit-scrollbar-thumb:hover {
  background: #ffda6a;
}
section.home-video .play-list .card {
  flex-direction: row;
  align-items: center;
  border-radius: 1rem;
  border: none;
  overflow: hidden;
}
section.home-video .play-list .card:not(:last-child) {
  margin-bottom: 0.75rem;
}
section.home-video .play-list .card .category {
  color: #45B549;
  font-size: clamp(10px, 0.677vw, 13px);
  font-weight: 600;
}
section.home-video .play-list .card .post-date svg path {
  fill: #6A6A6A;
}
section.home-video .play-list .card .post-date span {
  color: #6A6A6A;
}
section.home-video .play-list .card .card-img {
  width: 140px;
  height: 130px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.home-video .play-list .card .play-btn {
  transform: scale(0.65);
}
section.home-video .play-list .card h4 {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #0B2437;
}
section.home-video .play-list .card .card-content {
  width: calc(100% - (150px + 1rem));
  margin-left: 1rem;
}
section.home-video .play-list .card .card-content a {
  text-decoration: none;
}
section .md-player .md-media-player {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
section .md-player .md-media-player .thumbnail {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
section .md-player .md-media-player .thumbnail #videoContainer1 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
section .md-player .md-media-player .thumbnail #videoContainer1 iframe {
  width: 100%;
  height: 100%;
  position: relative;
}
section .md-player .md-media-player .thumbnail .category-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  background-color: #EEF8FF;
  color: #051521;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  font-size: clamp(12px, 0.72916vw, 14px);
}
section .md-player .md-media-player .thumbnail .category-icon .icon img {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
}
section .md-player .md-media-player .info {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #015391;
}
section .md-player .md-media-player .info h6 {
  color: #fff;
  font-size: clamp(14px, 0.8333vw, 16px);
}
section .md-player .md-play-list {
  display: flex;
  height: 230px;
  padding-bottom: 1rem;
  overflow-y: hidden;
  overflow-x: scroll;
  position: relative;
}
section .md-player .md-play-list::-webkit-scrollbar {
  height: 5px;
}
section .md-player .md-play-list::-webkit-scrollbar-track {
  background: #A3CBF1;
  height: 1px;
}
section .md-player .md-play-list::-webkit-scrollbar-thumb {
  background: #FA9E15;
  height: 5px;
}
section .md-player .md-play-list::-webkit-scrollbar-thumb:hover {
  background: #ffda6a;
}
section .md-player .md-play-list .list-item {
  width: 320px;
  position: relative;
  border-radius: 1rem;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.0509803922);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section .md-player .md-play-list .list-item .category-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  background-color: #EEF8FF;
  color: #051521;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  font-size: clamp(12px, 0.72916vw, 14px);
  z-index: 5;
}
section .md-player .md-play-list .list-item .category-icon .icon img {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
}
section .md-player .md-play-list .list-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(0, 36, 62, 0) 0%, rgba(0, 36, 62, 0) 0%, #00243E 100%);
  z-index: 1;
}
section .md-player .md-play-list .list-item:not(:last-child) {
  margin-right: 0.75rem;
}
section .md-player .md-play-list .list-item .play-btn {
  transform: scale(0.65);
}
section .md-player .md-play-list .list-item .list-item-desc {
  position: relative;
  margin-top: 4rem;
  z-index: 4;
}
section .md-player .md-play-list .list-item .list-item-desc .post-date svg path {
  fill: #fff;
}
section .md-player .md-play-list .list-item .list-item-desc h6 {
  color: #fff;
}

section.recent-posts {
  background-color: #fff;
}
section.recent-posts .recentSwiper {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.35);
  border-radius: 1rem;
}
section.recent-posts .media-player {
  position: relative;
  overflow: hidden;
}
section.recent-posts .media-player .post-img {
  width: 100%;
  height: 475px;
  border-radius: 1rem;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.35);
  border: 1px solid #D5EBFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: left top;
}
section.recent-posts .media-player .post-img:before {
  width: calc(100% - 2px);
  height: 75%;
  border-radius: 1rem;
  content: "";
  position: absolute;
  left: 1px;
  bottom: 1px;
  background: linear-gradient(180deg, rgba(218, 185, 185, 0) 0%, #002c4d 100%);
  z-index: 1;
}
section.recent-posts .media-player .post-detail {
  position: absolute;
  width: calc(100% - 4rem);
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
}
section.recent-posts .media-player .post-detail h3 {
  color: #fff;
}
section.recent-posts .media-player .post-detail a.btn {
  background-color: #FA9E15;
  border-radius: 50rem;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
section.recent-posts .media-player .post-detail a.btn:hover {
  background-color: #015391;
}
section.recent-posts .post-next, section.recent-posts .post-prev {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 28px);
  width: 30px;
  height: 56px;
  border-radius: 0.25rem;
  background-color: #015391;
  z-index: 3;
  transition: all 0.2s ease-in-out;
}
section.recent-posts .post-next svg path, section.recent-posts .post-prev svg path {
  fill: #FA9E15;
  transition: all 0.2s ease-in-out;
}
section.recent-posts .post-next:hover, section.recent-posts .post-prev:hover {
  background-color: #FA9E15;
  cursor: pointer;
}
section.recent-posts .post-next:hover svg path, section.recent-posts .post-prev:hover svg path {
  fill: #fff;
}
section.recent-posts .post-next.swiper-button-disabled, section.recent-posts .post-prev.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
section.recent-posts .post-prev {
  left: 0;
}
section.recent-posts .post-next {
  right: 0;
}

section.new-popular {
  background-color: #fff;
}
section.new-popular .section-title {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 600;
  color: #015391;
}
section.new-popular .section-title .line {
  height: 3px;
  flex-grow: 1;
  margin: 0rem 0.75rem;
  border-top: 1px solid rgba(45, 126, 192, 0.5);
  border-bottom: 1px solid rgba(45, 126, 192, 0.5);
}
section.new-popular .section-title .btn {
  background-color: #D5EBFF;
  border-radius: 50rem;
  color: #015391;
  padding: 0.25rem 1.25rem;
  transition: all 0.2s ease-in-out;
}
section.new-popular .section-title .btn:hover {
  color: #fff;
  background-color: #015391;
}
section.new-popular .single-post {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid #A3CBF1;
}
section.new-popular .single-post a {
  text-decoration: none;
}
section.new-popular .single-post .post-img {
  position: relative;
  width: 100%;
  height: 260px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
section.new-popular .single-post .post-img .category-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  background-color: #EEF8FF;
  color: #051521;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  font-size: clamp(12px, 0.72916vw, 14px);
}
section.new-popular .single-post .post-img .category-icon .icon img {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
}
section.new-popular .single-post .post-content {
  padding: 1rem;
  background-color: #D5EBFF;
}
section.new-popular .single-post .post-content .post-info {
  display: flex;
  align-items: center;
  color: #6A6A6A;
}
section.new-popular .single-post .post-content .post-info .post-views {
  font-size: clamp(10px, 0.625vw, 12px);
  color: #6A6A6A;
}
section.new-popular .single-post .post-content .post-info .post-date svg path {
  fill: #6A6A6A;
}
section.new-popular .single-post .post-content .post-info .post-date span {
  font-size: clamp(10px, 0.625vw, 12px);
  color: #6A6A6A;
}
section.new-popular .single-post .post-content .post-title {
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #0B2437;
  font-weight: 600;
}
section.new-popular .single-post .post-content .post-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #015391;
  transition: all 0.2s ease-in-out;
}
section.new-popular .single-post .post-content .post-link:hover {
  text-decoration: underline;
}
section.new-popular .single-post .post-content .post-link:hover svg {
  transform: rotate(0deg);
}
section.new-popular .single-post .post-content .post-link svg {
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
  transition: all 0.2s ease-in-out;
}
section.new-popular .single-post .post-content .post-link svg path {
  fill: #015391;
}
section.new-popular .posts .post {
  display: flex;
  align-items: center;
  background-color: #EEF7FF;
  border-radius: 0.5rem;
  border: 1px solid #D5EBFF;
  overflow: hidden;
}
section.new-popular .posts .post .post-img {
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.new-popular .posts .post .post-content {
  width: calc(100% - 150px);
  padding: 1rem;
  background-color: #EEF7FF;
}
section.new-popular .posts .post .post-content .post-caterory {
  color: #45B549;
  font-size: clamp(10px, 0.625vw, 12px);
}
section.new-popular .posts .post .post-content .post-info {
  display: flex;
  align-items: center;
}
section.new-popular .posts .post .post-content .post-info .post-views {
  font-size: clamp(10px, 0.625vw, 12px);
  color: #6A6A6A;
}
section.new-popular .posts .post .post-content .post-info .post-date svg path {
  fill: #6A6A6A;
}
section.new-popular .posts .post .post-content .post-info .post-date span {
  font-size: clamp(10px, 0.625vw, 12px);
  color: #6A6A6A;
}
section.new-popular .posts .post .post-content .post-title {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #0B2437;
  font-weight: 600;
}
section.new-popular .posts .post .post-content .post-title a {
  color: #0B2437;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
section.new-popular .posts .post .post-content .post-title a :hover {
  opacity: 0.9;
}
section.new-popular .posts .post .post-content .post-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: clamp(10px, 0.677vw, 13px);
  color: #015391;
  transition: all 0.2s ease-in-out;
}
section.new-popular .posts .post .post-content .post-link:hover {
  text-decoration: underline;
}
section.new-popular .posts .post .post-content .post-link:hover svg {
  transform: rotate(0deg);
}
section.new-popular .posts .post .post-content .post-link svg {
  transform: rotate(-45deg);
  transition: all 0.2s ease-in-out;
}
section.new-popular .posts .post .post-content .post-link svg path {
  fill: #015391;
}

.blog-details {
  background-color: #EEF8FF;
  position: relative;
}
.blog-details .post-img-container {
  text-align: center;
  background-image: url("../img/post-img-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.blog-details .post-img-container .wp-post-image {
  width: 480px;
  height: 480px;
}
@media (max-width: 575.98px) {
  .blog-details .post-img-container .wp-post-image {
    width: 320px;
    height: 320px;
  }
}
.blog-details .aside {
  position: sticky;
  top: 110px;
  z-index: 9;
}
.blog-details iframe {
  width: 100%;
  height: 420px;
}
.blog-details .wp-block-embed {
  margin: 0;
}
.blog-details .box {
  border-radius: 10px;
  background-color: #fff;
}
.blog-details .box .heading-content h2 {
  letter-spacing: 0.48px;
  font-size: clamp(20px, 1.666vw, 32px);
  color: #015391;
  font-weight: 600;
}
.blog-details .box .heading-content .post-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6A6A6A;
  font-size: clamp(12px, 0.72916vw, 14px);
}
@media (max-width: 767.98px) {
  .blog-details .box .heading-content .post-info {
    flex-wrap: wrap;
  }
  .blog-details .box .heading-content .post-info .blog-social-icons {
    margin-top: 0.75rem;
  }
}
.blog-details .box .heading-content .post-info .post-date svg {
  vertical-align: inherit;
}
.blog-details .box .heading-content .post-info .post-date svg path {
  fill: #6A6A6A;
}
.blog-details .box .heading-content .post-info .post-date span {
  color: #6A6A6A;
  font-size: clamp(12px, 0.72916vw, 14px);
}
.blog-details .box .main-content h3 {
  color: #0B2437;
  font-size: clamp(16px, 1.25vw, 24px);
}
.blog-details .box .main-content p, .blog-details .box .main-content li {
  color: #6A6A6A;
  font-size: clamp(13px, 0.78125vw, 15px);
}
.blog-details .box .main-content a {
  text-decoration: none;
  color: #015391;
  font-weight: 600;
}
.blog-details .blog-social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.blog-details .blog-social-icons .likes {
  display: flex;
  align-items: center;
  background-color: #015391;
  padding: 0.35rem;
  border-radius: 0.5rem;
  font-size: clamp(10px, 0.677vw, 13px);
  color: #fff;
  line-height: 0;
}
.blog-details .blog-social-icons .likes .icon {
  background-color: #fff;
  padding: 0.25rem;
  border-radius: 0.25rem;
}
.blog-details .blog-social-icons span img {
  width: 22px;
  transition: all 0.2s ease-in-out;
}
.blog-details .blog-social-icons span img:hover {
  filter: brightness(0) saturate(100%) invert(69%) sepia(76%) saturate(2454%) hue-rotate(350deg) brightness(103%) contrast(96%);
}
.blog-details .blog-social-icons span svg {
  width: 18px;
  height: 18px;
}
.blog-details .blog-social-icons span svg path {
  fill: #015391;
  transition: all 0.2s ease-in-out;
}
.blog-details .blog-social-icons span:hover {
  cursor: pointer;
}
.blog-details .blog-social-icons span:hover svg path {
  fill: #FA9E15;
}
.blog-details .blog-social-icons span:not(:last-child) {
  margin-right: 0.75rem;
}

.blog-detail {
  background-color: #EEF8FF !important;
}
.blog-detail .search-section .search-title h2 span {
  background-color: transparent;
}
.blog-detail .search-section .search-title h2::before {
  content: "none";
  display: none;
}
.blog-detail .search-section .search-title h2::after {
  content: "none";
  display: none;
}

.comments-login h6 {
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 400;
}
.comments-login .btn-primary {
  width: 180px;
  font-size: clamp(12px, 0.72916vw, 14px);
  border: none;
  padding: 0.75rem;
  background-color: #015391;
  border-radius: 50rem;
}
.comments-login .btn-primary:hover {
  background-color: #F58932;
}

.comments-block .comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comments-block .comments-list li {
  display: flex;
  padding: 0.75rem 0rem;
  margin: 0rem;
}
.comments-block .comments-list li:not(:last-child) {
  border-bottom: 1px solid rgba(213, 235, 255, 0.6);
  margin-bottom: 1rem;
}
.comments-block .comments-list li .profile-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
}
.comments-block .comments-list li h4 {
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 600;
  color: #015391;
}
.comments-block .comments-list li .message {
  font-size: clamp(12px, 0.72916vw, 14px);
}
.comments-block .comments-list li .date {
  font-size: clamp(10px, 0.677vw, 13px);
  color: #A8A8A8;
  font-weight: 300;
}

.modal-oes .suggestion_box {
  display: flex;
  flex-wrap: wrap;
}
.modal-oes .suggestion_box .suggestions {
  font-size: clamp(12px, 0.72916vw, 14px);
  margin-left: 0.25rem;
  padding: 0.25rem;
  background-color: #015391;
  color: #fff;
}
.modal-oes .progress {
  height: 0.25rem;
}
.modal-oes .omail-id {
  position: relative;
}
.modal-oes .omail-id .input-group-text {
  display: inline-flex;
  position: absolute;
  right: 3px;
  top: 3px;
  font-size: 13px;
  border-radius: 50rem;
  background-color: #015391;
  color: #fff;
}
.modal-oes .password-group {
  position: relative;
  display: flex;
  align-items: center;
}
.modal-oes .password-group .password-toggle {
  position: absolute;
  right: 0.75rem;
}
.modal-oes .password-group .password-toggle.active::after {
  content: "";
  width: 120%;
  height: 3px;
  background-color: #000;
  position: absolute;
  right: -3px;
  transform: rotate(45deg);
  top: 12px;
  border: 1px solid #fff;
}
.modal-oes .password-group .form-control {
  padding-right: 2rem;
}
.modal-oes .form-control {
  font-size: clamp(12px, 0.72916vw, 14px);
  font-weight: 300;
  border-radius: 50rem;
  background-color: #EEF8FF;
  border-color: #A3CBF1;
  padding: 0.5rem;
}
.modal-oes .btn-primary {
  font-size: clamp(12px, 0.72916vw, 14px);
  border: none;
  padding: 0.75rem;
  background-color: #015391;
  border-radius: 50rem;
}
.modal-oes .btn-primary:hover {
  background-color: #F58932;
}
.modal-oes .btn-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  border-radius: 50rem;
  background: #015391;
  border: 2px solid #fff;
  opacity: 1;
  padding: 0rem;
  z-index: 9;
}
.modal-oes .btn-close svg {
  width: 1.5rem;
}
.modal-oes .btn-close svg path {
  fill: #fff;
}
.modal-oes .modal-banner {
  height: 225px;
  border-radius: 0.5rem;
  overflow: hidden;
  background-image: url("../img/oesbanner.png");
  background-position: center top;
  background-size: cover;
}
.modal-oes p {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #0B2437;
}
.modal-oes p a {
  color: #015391;
}
.modal-oes .share-post-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center top;
}

.all-comments .comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.all-comments .comments-list li {
  display: flex;
  padding: 0.75rem 0rem;
  margin: 0rem;
}
.all-comments .comments-list li:not(:last-child) {
  border-bottom: 1px solid rgba(213, 235, 255, 0.6);
  margin-bottom: 1rem;
}
.all-comments .comments-list li .profile-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
}
.all-comments .comments-list li h4 {
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 600;
  color: #015391;
}
.all-comments .comments-list li .message {
  font-size: clamp(12px, 0.72916vw, 14px);
}
.all-comments .comments-list li .date {
  font-size: clamp(10px, 0.677vw, 13px);
  color: #A8A8A8;
  font-weight: 300;
}

.leave-comment h5 {
  font-weight: 600;
  color: #015391;
}
.leave-comment .form-control {
  background-color: #EEF8FF;
  border-color: #A3CBF1;
  font-size: clamp(12px, 0.72916vw, 14px);
  border-radius: 0.25rem;
}
.leave-comment .btn-primary {
  font-size: clamp(12px, 0.72916vw, 14px);
  border: none;
  padding: 0.75rem 1.25rem;
  background-color: #015391;
  border-radius: 50rem;
}
.leave-comment .btn-primary:hover {
  background-color: #F58932;
}

.categories {
  background-color: #EEF8FF;
}
.categories .search-bar .input-group svg {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 9;
  width: 16px;
  height: 16px;
}
.categories .search-bar .input-group .form-control {
  padding-left: 32px;
  border-radius: 4rem !important;
}
.categories a {
  text-decoration: none;
}
.categories a .card {
  position: relative;
  border-radius: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.categories a .card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(1, 83, 145, 0) 0%, rgba(0, 24, 42, 0.8784313725) 100%);
  border-radius: 1rem;
  z-index: 1;
}
.categories a .card .content {
  position: absolute;
  z-index: 2;
  padding: 1rem;
  bottom: 0;
  left: 0;
}
.categories a .card .content h3 {
  color: #EEF8FF;
  letter-spacing: 0.24px;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 400;
}
.categories .heading {
  display: flex;
  text-align: center;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .categories .heading {
    justify-content: center;
  }
}
.categories .heading h2 {
  letter-spacing: 0.45px;
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #015391;
}

.inner-banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: flex-end;
}
.inner-banner::before {
  content: "";
  position: absolute;
  background: linear-gradient(260deg, rgba(213, 235, 255, 0.6588235294) 0%, rgba(0, 95, 167, 0.5098039216) 41%, rgba(6, 70, 119, 0.9098039216) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.inner-banner .container {
  position: relative;
  z-index: 2;
}
.inner-banner .container .banner-content .product-icon {
  background: #FA9E15;
  display: inline-flex;
  border-radius: 20px;
  padding: 4px;
  align-items: center;
}
.inner-banner .container .banner-content .product-icon span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
}
.inner-banner .container .banner-content .product-icon span img {
  width: 18px;
  height: 18px;
}
.inner-banner .container .banner-content .product-icon strong {
  color: #fff;
  font-size: clamp(12px, 0.72916vw, 14px);
  font-weight: 400;
  display: inline-flex;
  margin: 0 10px;
}
.inner-banner .container .banner-content h1 {
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #fff;
  font-weight: 400;
}
.inner-banner .container .banner-content h1 span {
  font-weight: 700;
}
.inner-banner .container .banner-content .breadcrumb a, .inner-banner .container .banner-content .breadcrumb span {
  font-size: clamp(12px, 0.72916vw, 14px);
  letter-spacing: 0.21px;
  color: #D2E4F3;
  text-decoration: none;
  font-weight: 300;
}

.recent-blog-section1 {
  background-color: #D5EBFF;
}
.recent-blog-section1 a {
  text-decoration: none;
}
.recent-blog-section1 .blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #D5EBFF;
  transition: all 0.5s ease-in-out;
}
.recent-blog-section1 .blog-card:hover {
  transform: translateY(5px);
}
.recent-blog-section1 .blog-card .blog-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 0.5rem 0.5rem 0rem 0rem;
}
.recent-blog-section1 .blog-card .blog-content {
  background-color: #fff;
}
.recent-blog-section1 .blog-card .blog-content .post-info {
  display: flex;
  align-items: center;
  color: #6A6A6A;
}
.recent-blog-section1 .blog-card .blog-content svg path {
  fill: #6A6A6A;
}
.recent-blog-section1 .blog-card .blog-content span {
  color: #6A6A6A;
  font-size: clamp(12px, 0.72916vw, 14px);
}
.recent-blog-section1 .blog-card .blog-content h4 {
  color: #015391;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 700;
}
.recent-blog-section1 .blog-card .blog-content p {
  color: #6A6A6A;
  font-size: clamp(12px, 0.72916vw, 14px);
}
.recent-blog-section1 .blog-card .blog-link {
  background-color: #fff;
  border-top: 1px solid rgba(106, 106, 106, 0.15);
}
.recent-blog-section1 .blog-card .blog-link p {
  margin-bottom: 0;
  color: #F58932;
  font-size: clamp(12px, 0.72916vw, 14px);
  font-weight: 600;
}

.search-section .search-title {
  position: relative;
}
.search-section .search-title h2 {
  display: flex;
  align-items: center;
  color: #015391;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 700;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.search-section .search-title h2::after {
  content: "";
  height: 3px;
  flex-grow: 1;
  margin: 0rem 0.75rem;
  border-top: 1px solid rgba(45, 126, 192, 0.5);
  border-bottom: 1px solid rgba(45, 126, 192, 0.5);
}

.search-bar .form-control {
  background-color: #D5EBFF;
  border: 1px solid #A3CBF1;
  border-radius: 0.5rem !important;
  color: #0B2437;
  font-size: clamp(13px, 0.78125vw, 15px);
  font-weight: 500;
  height: 39px;
}
.search-bar .form-control:focus {
  box-shadow: inherit;
}
.search-bar .form-select {
  background-color: #D5EBFF;
  border: 1px solid #A3CBF1;
  border-radius: 0.5rem;
  color: #0B2437;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  background-image: url("../img/recent-blogs/search-icon.svg");
  background-size: auto;
}
.search-bar .form-select:focus {
  box-shadow: inherit;
}
.search-bar .input-group button {
  background-color: #015391;
  border: none;
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  padding: 0rem;
  right: 0.25rem;
  top: 0.25rem;
  border-radius: 0.5rem !important;
  transition: all 0.2s ease-in-out;
  z-index: 9;
}
.search-bar .input-group button svg path {
  fill: #fff;
  transition: all 0.2s ease-in-out;
}
.search-bar .input-group button:hover {
  background-color: #FA9E15;
}

.pagination .page-item .page-link {
  margin-right: 0.25rem;
  margin-left: 0.25rem !important;
  border-radius: 0.5rem;
  color: #6A6A6A;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .pagination .page-item .page-link {
    padding: 0.25rem 0.5rem;
  }
}
.pagination .page-item .page-link .tool-tip {
  position: absolute;
  text-align: center;
  width: 72px;
  left: -10px;
  font-size: 13px;
  top: -30px;
  background-color: #015391;
  color: #fff;
  display: inline-block;
  padding: 0.15rem 0.25rem;
  border-radius: 0.25rem;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.pagination .page-item .page-link .tool-tip:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #015391;
  position: absolute;
  bottom: -6px;
  left: 26px;
}
.pagination .page-item .page-link .tool-tip.active {
  opacity: 1;
}
.pagination .page-item .page-link svg path {
  fill: #015391;
  transition: all 0.2s ease-in-out;
}
.pagination .page-item .page-link:focus {
  box-shadow: unset;
}
.pagination .page-item.active .page-link, .pagination .page-item:hover .page-link {
  background-color: #015391;
  border-color: #015391;
  color: #fff;
  cursor: pointer;
}
.pagination .page-item.active .page-link svg path, .pagination .page-item:hover .page-link svg path {
  fill: #fff;
}
.pagination .page-item.disabled {
  opacity: 0.5;
}

header .btn.switch-lang {
  background-color: #015391;
  border-radius: 50rem;
  color: #015391;
  padding: 0.25rem 1.25rem;
  transition: all 0.2s ease-in-out;
}
header .btn.switch-lang:hover {
  color: #fff;
  background-color: #D5EBFF;
}
header.sticky-on {
  position: fixed;
  z-index: 1020;
  top: 0;
  left: 0;
  -webkit-animation: fadeInDown 0.5s;
  animation: fadeInDown 0.5s;
  width: 100%;
  box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.03), 0 0.275rem 0.75rem -0.0625rem rgba(0, 0, 0, 0.06);
}
header .top-header {
  background-color: #015391;
}
header .top-header .latest-news {
  font-size: clamp(12px, 0.72916vw, 14px);
  display: flex;
  align-items: center;
}
header .top-header .latest-news .title {
  width: 100px;
  color: #FA9E15;
  font-weight: 600;
}
header .top-header .latest-news .latestNewsSwiper {
  width: calc(100% - 100px);
}
header .top-header .latest-news .latestNewsSwiper .swiper-slide {
  background-color: #015391;
}
header .top-header .latest-news .latestNewsSwiper .swiper-slide a {
  font-weight: 300;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
header .top-header .latest-news .latestNewsSwiper .swiper-slide a:hover {
  text-decoration: underline;
}
header .top-header .social-links {
  color: #fff;
  font-size: clamp(13px, 0.78125vw, 15px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  header .top-header .social-links {
    justify-content: center;
  }
}
header .top-header .social-links a {
  text-decoration: none;
  margin-left: 0.75rem;
}
header .top-header .social-links a:hover svg path {
  fill: #FA9E15;
}
header .top-header .social-links a svg path {
  fill: #fff;
  transition: all 0.2s ease-in-out;
}
header nav.navbar {
  background-color: #fff;
}
header nav.navbar .navbar-brand {
  width: 200px;
}
@media (max-width: 767.98px) {
  header nav.navbar .navbar-brand {
    width: 150px;
  }
}
header nav.navbar .navbar-nav {
  position: relative;
  height: 50px;
  width: calc(100% - 250px);
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
header nav.navbar .navbar-nav .dropdown .dropdown-menu {
  position: absolute;
  left: auto;
  right: 0px;
}
header nav.navbar .navbar-nav .dropdown .dropdown-toggle::after {
  display: none;
}
header nav.navbar .navbar-nav .dropdown .language-btn {
  background-color: transparent;
  border: none;
  padding: 0;
}
header nav.navbar .navbar-nav .dropdown .language-btn svg {
  width: 20px;
  height: 20px;
}
header nav.navbar .navbar-nav .dropdown .language-btn svg path {
  fill: #015391;
}
header nav.navbar .navbar-nav .dropdown.language .dropdown-menu {
  background-color: transparent;
  border: none;
}
header nav.navbar .navbar-nav .dropdown.language .dropdown-menu:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #015391;
  top: -2px;
  right: -3px;
}
header nav.navbar .navbar-nav .dropdown .language-bar {
  width: 142px;
  height: 26px;
}
header nav.navbar .navbar-nav .dropdown .language-bar .switcher {
  position: absolute;
  z-index: 96;
  width: 170px;
}
header nav.navbar .navbar-nav .dropdown .language-bar .switcher .option {
  width: 165px;
  background: #D5EBFF;
}
header nav.navbar .navbar-nav .dropdown .language-bar .switcher .option a {
  color: #015391;
}
header nav.navbar .navbar-nav .dropdown .language-bar .switcher .selected {
  background: transparent;
  z-index: 99;
}
header nav.navbar .navbar-nav .dropdown .language-bar .switcher .selected a {
  width: 152px;
  padding: 0.35rem 0.5rem;
  border-radius: 50rem;
  background: #D5EBFF;
  border-color: #015391;
  color: #015391;
}
header nav.navbar .navbar-nav .dropdown .language-bar .switcher .selected a:hover {
  background: #D5EBFF;
}
header nav.navbar .navbar-nav .menu-toggle {
  background-color: #FA9E15;
  border: none;
  padding: 0.15rem 0.65rem;
  border-radius: 50rem;
}
header nav.navbar .navbar-nav .menu-toggle svg {
  width: 18px;
  height: 18px;
}
header nav.navbar .navbar-nav .menu-toggle svg path {
  fill: #fff;
}
header nav.navbar .navbar-nav .nav-items {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767.98px) {
  header nav.navbar .navbar-nav .nav-items {
    display: none;
  }
}
header nav.navbar .navbar-nav .nav-items li a {
  color: #051521;
  font-size: clamp(13px, 0.78125vw, 15px);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
header nav.navbar .navbar-nav .nav-items li a:hover {
  cursor: pointer;
  color: #015391;
}
header nav.navbar .navbar-nav .nav-items li a:hover .category--icon {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
header nav.navbar .navbar-nav .nav-items li a.active {
  color: #015391;
  font-weight: 600;
}
header nav.navbar .navbar-nav .nav-items li .megamenu {
  visibility: hidden;
  opacity: 0;
  width: calc(100% + 240px);
  background-color: #fff;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  margin: 0rem;
  list-style: none;
  position: absolute;
  left: -240px;
  top: 60px;
  z-index: 49;
  transition: all 0.2s ease-in-out;
}
header nav.navbar .navbar-nav .nav-items li .megamenu .menu-categories {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 1rem;
  list-style: none;
  margin: 0rem;
  padding: 0rem;
}
header nav.navbar .navbar-nav .nav-items li .megamenu .menu-categories li {
  width: calc(25% - 1rem);
}
header nav.navbar .navbar-nav .nav-items li .megamenu .menu-categories li .category {
  display: flex;
  align-items: center;
}
header nav.navbar .navbar-nav .nav-items li .megamenu .menu-categories li .category--icon {
  width: 100px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  margin-right: 0.75rem;
  transition: all 0.2s ease-in-out;
}
header nav.navbar .navbar-nav .nav-items li .megamenu .menu-categories li .category--title {
  width: calc(100% - (100px + 1rem));
  font-size: clamp(12px, 0.72916vw, 14px);
  font-weight: 500;
}
header nav.navbar .navbar-nav .nav-items li:hover .megamenu {
  opacity: 1;
  visibility: visible;
}
header nav.navbar .navbar-nav .lg-language-bar {
  width: 140px;
  height: 26px;
}
header nav.navbar .navbar-nav .lg-language-bar .switcher {
  position: absolute;
  z-index: 96;
  width: 140px;
}
header nav.navbar .navbar-nav .lg-language-bar .switcher .option {
  width: 138px;
  background: #D5EBFF;
}
header nav.navbar .navbar-nav .lg-language-bar .switcher .option a {
  color: #015391;
}
header nav.navbar .navbar-nav .lg-language-bar .switcher .selected {
  background: transparent;
  z-index: 99;
}
header nav.navbar .navbar-nav .lg-language-bar .switcher .selected a {
  width: 122px;
  padding: 0.35rem 0.5rem;
  border-radius: 50rem;
  background: #D5EBFF;
  border-color: #A3CBF1;
  color: #015391;
}
header nav.navbar .navbar-nav .lg-language-bar .switcher .selected a:hover {
  background: #D5EBFF;
}
header nav.navbar .navbar-nav .blog-search {
  width: 65%;
  display: flex;
  padding: 0.5rem 0.75rem;
  position: absolute;
  right: 155px;
  top: 0;
  background-color: #D5EBFF;
  border-radius: 50rem;
  visibility: hidden;
  opacity: 0;
  z-index: 98;
}
header nav.navbar .navbar-nav .blog-search.active {
  visibility: visible;
  opacity: 1;
}
header nav.navbar .navbar-nav .blog-search button {
  background-color: #015391;
  border: none;
  border-radius: 50rem;
  width: 2rem;
  height: 2rem;
}
header nav.navbar .navbar-nav .blog-search button svg {
  width: 1rem;
  height: 1rem;
}
header nav.navbar .navbar-nav .blog-search button svg path {
  fill: #fff;
}
header nav.navbar .navbar-nav .blog-search .search-group {
  width: 100%;
}
header nav.navbar .navbar-nav .blog-search .search-group .form-select,
header nav.navbar .navbar-nav .blog-search .search-group .form-control {
  background-color: transparent;
  border-color: transparent;
}
header nav.navbar .navbar-nav .blog-search .search-group .form-select:focus,
header nav.navbar .navbar-nav .blog-search .search-group .form-control:focus {
  box-shadow: none;
}
@media (max-width: 991.98px) {
  header nav.navbar .navbar-nav .blog-search .search-group .form-select {
    display: none;
  }
}
header nav.navbar .navbar-nav .search-icon button {
  background-color: transparent;
  border: none;
}
header nav.navbar .navbar-nav .dropdown.md-search-icon button {
  background-color: transparent;
  border: none;
}
header nav.navbar .navbar-nav .dropdown.md-search-icon button svg path {
  fill: #015391;
}
header nav.navbar .navbar-nav .dropdown.md-search-icon .dropdown-menu {
  min-width: 16rem;
  margin-top: 0.75rem;
}
header nav.navbar .navbar-nav .dropdown.md-search-icon .dropdown-menu:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #015391;
  top: -11px;
  right: 6px;
}
header nav.navbar .navbar-nav .dropdown.md-search-icon .search-icon-inner {
  position: relative;
  display: flex;
  align-items: center;
}
header nav.navbar .navbar-nav .dropdown.md-search-icon .search-icon-inner .search-group {
  width: 100%;
}
header nav.navbar .navbar-nav .dropdown.md-search-icon .search-icon-inner .search-group .form-control {
  padding-right: 2rem;
  border-radius: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
}
header nav.navbar .navbar-nav .dropdown.md-search-icon .search-icon-inner .search-group .form-control:focus {
  box-shadow: none;
}
header nav.navbar .navbar-nav .dropdown.md-search-icon .search-icon-inner .search-group button {
  position: absolute;
  right: 4px;
  top: 4px;
  background-color: #015391;
  width: 30px;
  height: 30px;
  border-radius: 2rem;
  padding: 0rem;
}
header nav.navbar .navbar-nav .dropdown.md-search-icon .search-icon-inner .search-group button svg {
  width: 16px;
  height: 16px;
}
header nav.navbar .navbar-nav .dropdown.md-search-icon .search-icon-inner .search-group button svg path {
  fill: #fff;
}

footer {
  background-color: #015391;
  color: #D5EBFF;
}
footer p {
  font-size: clamp(10px, 0.677vw, 13px);
  font-weight: 300;
}
footer .footer-logo {
  width: 180px;
  display: inline-flex;
  background-color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 50rem;
}
footer h3 {
  color: #FABB15;
  font-size: clamp(16px, 1.145vw, 22px);
}
footer .links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
footer .links a {
  text-decoration: none;
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #D5EBFF;
  margin-bottom: 22px;
}
footer .links a:last-child {
  margin-bottom: 0;
}
footer .links a:hover {
  color: #FABB15;
}
@media (max-width: 991.98px) {
  footer .links {
    flex-direction: row;
  }
  footer .links a {
    margin-bottom: inherit;
    margin-right: 10px;
  }
}
footer .opLocation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .opLocation .addressRowTwo,
footer .opLocation .addressRowOne {
  display: flex;
  flex-direction: column;
  width: 49%;
}
@media (max-width: 767.98px) {
  footer .opLocation .addressRowTwo,
  footer .opLocation .addressRowOne {
    width: 100%;
  }
}
footer .opLocation .addressRowTwo .address,
footer .opLocation .addressRowOne .address {
  display: flex;
  margin-bottom: 15px;
}
@media (max-width: 575.98px) {
  footer .opLocation .addressRowTwo .address,
  footer .opLocation .addressRowOne .address {
    align-items: center;
  }
}
footer .opLocation .addressRowTwo .address .icon,
footer .opLocation .addressRowOne .address .icon {
  width: 2.6rem;
  margin-top: -0.35rem;
  margin-right: 0.5rem;
}
footer .opLocation .addressRowTwo .address .icon svg,
footer .opLocation .addressRowOne .address .icon svg {
  width: 100%;
}
footer .opLocation .addressRowTwo .address .icon svg path,
footer .opLocation .addressRowOne .address .icon svg path {
  fill: #D5EBFF;
}
footer .opLocation .addressRowTwo .address .icon.egyptIcon svg,
footer .opLocation .addressRowOne .address .icon.egyptIcon svg {
  width: 100%;
}
footer .opLocation .addressRowTwo .address .icon.egyptIcon svg path,
footer .opLocation .addressRowOne .address .icon.egyptIcon svg path {
  fill: transparent;
  stroke-width: 0.8;
}
footer .opLocation .addressRowTwo .address .content,
footer .opLocation .addressRowOne .address .content {
  width: calc(100% - 3rem);
}
footer .opLocation .addressRowTwo .address .content p,
footer .opLocation .addressRowOne .address .content p {
  font-size: clamp(12px, 0.72916vw, 14px);
}
footer .opLocation .addressRowTwo .address .content strong,
footer .opLocation .addressRowOne .address .content strong {
  font-weight: 600;
}

.offcanvas.offcanvas-end {
  width: 250px;
}
.offcanvas.offcanvas-end .offcanvas-body {
  overflow: hidden;
}
.offcanvas.offcanvas-end .btn-close:focus {
  box-shadow: none;
}
.offcanvas.offcanvas-end .nav-link {
  width: 90%;
  background-color: #FA9E15;
  color: #fff;
  border-radius: 0rem 2rem 2rem 0rem;
  padding: 0.5rem;
}
.offcanvas.offcanvas-end .nav-link:last-child {
  background-color: #015391;
}
.offcanvas.offcanvas-end .social-links {
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.offcanvas.offcanvas-end .social-links a {
  background-color: #015391;
  padding: 0.35rem 0.65rem;
  border-radius: 1rem 1rem 0rem 0rem;
}
.offcanvas.offcanvas-end .social-links a svg path {
  fill: #fff;
}
.offcanvas.offcanvas-end .menu-categories {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  list-style: none;
  margin: 0rem;
  align-items: flex-end;
  height: calc(100vh - 210px);
  overflow-y: scroll;
}
.offcanvas.offcanvas-end .menu-categories li {
  width: 100%;
}
.offcanvas.offcanvas-end .menu-categories li .category {
  display: flex;
  align-items: center;
  color: #051521;
  font-size: clamp(13px, 0.78125vw, 15px);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.offcanvas.offcanvas-end .menu-categories li .category:hover {
  cursor: pointer;
  color: #015391;
}
.offcanvas.offcanvas-end .menu-categories li .category:hover .category--icon {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.offcanvas.offcanvas-end .menu-categories li .category.active {
  color: #015391;
  font-weight: 600;
}
.offcanvas.offcanvas-end .menu-categories li .category--icon {
  width: 80px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  margin-right: 0.75rem;
  transition: all 0.2s ease-in-out;
}
.offcanvas.offcanvas-end .menu-categories li .category--title {
  width: calc(100% - (80px + 1rem));
  font-size: clamp(12px, 0.72916vw, 14px);
  font-weight: 500;
}

.skiptranslate {
  display: none !important;
}

.single_cate {
  background: #EEF8FF;
}
.single_cate .aside {
  position: sticky;
  top: 120px;
  z-index: 9;
}

.s-category .single_cate {
  background: #EEF8FF;
}
.s-category .single_cate .aside {
  position: sticky;
  top: 110px;
  z-index: 9;
}
.s-category .search-section .search-title {
  position: relative;
}
.s-category .bg_blog {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #D5EBFF;
  transition: all 0.25s ease-in-out;
}
.s-category .bg_blog:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  transform: scale(1.01);
}
.s-category .bg_blog a {
  text-decoration: none;
}
.s-category .blog_Img {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  object-fit: cover;
  background-position: left top;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  min-height: 200px;
  position: relative;
  border-radius: 1rem 0rem 0rem 1rem;
}
.s-category .blog_Img .play-btn {
  transform: scale(0.75);
}
.s-category .d-time svg {
  vertical-align: inherit;
}
.s-category .d-time svg path {
  fill: #6A6A6A;
}
.s-category .d-time span {
  color: #6A6A6A;
  letter-spacing: 0.18px;
}
.s-category h2 {
  font-size: clamp(16px, 1.0416vw, 20px);
  color: #015391;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.s-category p {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #6A6A6A;
  letter-spacing: 0.21px;
}
.s-category .hr_line {
  width: 100%;
  height: 1px;
  background: #D5EBFF;
}
.s-category .blog_info .read-more {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #015391;
  font-weight: 600;
  text-decoration: none;
}

.aside .card {
  border-radius: 10px;
  border: 1px solid #D5EBFF;
}
.aside .card .search-title {
  position: relative;
}
.aside .card .search-title h2 span {
  background: #fff;
  padding-right: 15px;
}
.aside .card .bg_blog .blog_Img {
  background-size: cover;
  object-fit: cover;
  background-position: left top;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  min-height: 80px;
}
.aside .card .bg_blog .d-time svg path {
  fill: #6A6A6A;
}
.aside .card .bg_blog .d-time span {
  font-size: clamp(10px, 0.625vw, 12px);
  color: #6A6A6A;
  letter-spacing: 0.18px;
}
.aside .card .bg_blog h2 {
  font-size: clamp(12px, 0.72916vw, 14px);
  color: #0B2437;
  font-weight: 600;
  letter-spacing: 0.21px;
}
.aside .card .bg_blog .views {
  font-size: clamp(10px, 0.625vw, 12px);
  color: #6A6A6A;
}
.aside .card a {
  text-decoration: none;
}
.aside .card a:hover .bg_blog {
  background: #D5EBFF;
  border-radius: 10px;
}
.aside .card a:last-child .hr_line {
  display: none;
}
.aside .card a .hr_line {
  width: 100%;
  height: 1px;
  background: #D5EBFF;
}
.aside .card .view_more {
  position: relative;
  z-index: 3;
}
.aside .card .view_more span {
  background-color: #fff;
  font-size: clamp(13px, 0.78125vw, 15px);
  color: #3599D4;
  font-weight: 400;
  letter-spacing: 0.23px;
  padding: 10px 15px;
}
.aside .card .view_more::before {
  content: "";
  width: 100%;
  height: 6px;
  border-top: 2px solid #A3CBF1;
  position: absolute;
  left: 0;
  top: 50%;
  background: #fff;
  border-bottom: 2px solid #A3CBF1;
  z-index: -1;
  opacity: 0.5;
}
.aside .card li {
  margin: 15px 0;
}
.aside .card li .icon {
  color: #FA9E15;
}
.aside .card li .category_text {
  font-size: clamp(13px, 0.78125vw, 15px);
  color: #000;
}
.aside .card li .cat_record {
  background: #FFEBB8;
  box-sizing: border-box;
  padding: 5px 15px;
  border-radius: 50rem;
  color: #000;
  border: 1px solid #F1D387;
  font-size: clamp(10px, 0.625vw, 12px);
}
.aside .card li :hover .category_text {
  color: #FA9E15;
}
.aside .card li .hr_line {
  width: 100%;
  height: 1px;
  background: #D5EBFF;
}
.aside .card li:last-child .hr_line {
  display: none;
}

.catrgory-tabs {
  display: flex;
  justify-content: flex-end;
}
.catrgory-tabs .btn {
  font-size: clamp(12px, 0.72916vw, 14px);
  background-color: #D5EBFF;
  border: 1px solid #A3CBF1;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  color: #051521;
  font-weight: 400;
}
.catrgory-tabs .btn:hover {
  background-color: #015391;
  border-color: #015391;
  color: #fff;
}
.catrgory-tabs .btn:hover svg path {
  fill: #fff;
  transition: all 0.2s ease-in-out;
}
.catrgory-tabs .btn.active {
  background-color: #015391;
  border-color: #015391;
  color: #fff;
}
.catrgory-tabs .btn svg path {
  fill: #015391;
}
.catrgory-tabs button[aria-expanded=true] {
  background-color: #015391;
  border-color: #015391;
}
.catrgory-tabs button[aria-expanded=true] svg path {
  fill: #fff;
}
.catrgory-tabs .btn-group .btn {
  min-width: 120px;
}

.shorts-filter .btn {
  font-size: clamp(12px, 0.72916vw, 14px);
  background-color: #D5EBFF;
  border: 1px solid #A3CBF1;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  color: #051521;
  font-weight: 400;
}
.shorts-filter .btn:hover {
  background-color: #015391;
  border-color: #015391;
  color: #fff;
}
.shorts-filter .btn:hover svg path {
  fill: #fff;
}
.shorts-filter .btn.active {
  background-color: #015391;
  border-color: #015391;
  color: #fff;
}
.shorts-filter .btn svg path {
  fill: #015391;
  transition: all 0.2s ease-in-out;
}
.shorts-filter .filter-switch-group {
  display: flex;
  justify-content: flex-end;
}
.shorts-filter .filter-switch-group .filter-switch {
  display: flex;
  align-items: center;
}
.shorts-filter .filter-switch-group .filter-switch:not(:last-child) {
  margin-right: 0.5rem;
}
.shorts-filter .filter-switch-group .filter-switch label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 0.72916vw, 14px);
  padding: 0.5rem 0.5rem 0.5rem 0.15rem;
  transition: all 0.2s ease-in-out;
}
.shorts-filter .filter-switch-group .filter-switch input[type=radio] {
  accent-color: #015391;
}

/*# sourceMappingURL=blog-style.min.css.map */
