/* ===================
top header css
====================== */

.header-top {
  padding: 8px 0;
  position: relative;
  background: var(--dark-color);
  z-index: 1;
  font-size: var(--font-size14);
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top-contact ul li a {
  color: #fff;
  font-weight: 400;
}

.header-top-contact ul li a i {
  margin-right: 10px;
  color: #fff;
}

.header-top-right {
  display: flex;
  align-items: center;
}

.header-top-right a {
  color: #fff;
  transition: all .5s ease-in-out;
  margin-left: 15px;
}

.header-top-right a:hover {
  opacity: 0.7;
}

@media all and (max-width: 991px) {
  .header-top{
    display: none;
  }
}


/*
************
*************************
02. header
******************************************************* 
*************************************************************** */


.header {
  background: #fff;
}

.header.fixed-top {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  animation: slide-down 0.7s;
  z-index: 8;
}


@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}


.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-logo{
  display: flex;
  align-items: center;
}
.header-logo img {
  width: auto;
  height: 60px;
}
.header-logo h1 {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  font-family: Jost, sans-serif;
  color: var(--dark-color);
  margin: 5px 0 0 10px;
  text-transform: uppercase;
  line-height: 1.2;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-logo img {
    height: 50px;
  }
  .header-logo h1 {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .header-logo img {
    height: 45px;
  }
  .header-logo h1 {
    font-size: 14px;
  }
}



.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-action{
  display: flex;
  align-items: center;
}

.header-action .search-icon {
  border-right: 1px solid var(--bg-gray-3);
  padding-right: 15px;
  font-size: 18px;
}

.header-action .social-box {
  margin-left: 15px;
  display: flex;
  align-items: center;
}

.header-action .social-box span{
  font-weight: 700;
  color: var(--body-text);
  font-size: 14px;
  
}

.header-action .social-box a{
  margin-left: 20px;
  font-size: 20px;
}


.header-action .right-btn {
  margin-left: 30px;
  font-weight: 400;
  padding: 0 20px;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}


.header-menu{
  width: 100%;
  border-top: 1px solid var(--bg-gray-3);

}
.header-menu ul.big-ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-menu nav ul li {
  margin-right: 40px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-menu nav ul li {
    margin-right: 20px;
  }
}
.header-menu nav ul li:last-child {
  margin-right: 0;
}
.header-menu nav ul li a {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  padding: 18px 0;
  color: var(--dark-color);
  text-transform: capitalize;
  transition: all 0.3s linear 0s;
}


.header-menu nav ul li:is(.has-dropdown) > a:after {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  content: "\f107";
  font-size: 14px;
  font-weight: 900;
  margin-left: 10px;
}
.header-menu nav ul li .submenu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 240px;
  background: var(--white-color);
  text-align: left;
  padding: 12px 0;
  box-shadow: 0 5px 10px rgba(32, 49, 74, 0.3);
  transition: all 0.3s ease 0s;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid var(--theme-primary);
}
.header-menu nav ul li .submenu li {
  margin-right: 0;
  display: block;
}
.header-menu nav ul li .submenu li a, .header.fixed-top .header-menu nav ul li .submenu li a{
  padding: 10px 20px;
  display: block;
  transition: all 0.3s linear 0s;
  font-weight: 400;
  line-height: 1.4;
  font-size: 14px;
  
}
.header-menu nav ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.header-menu nav ul li:hover > a,.header-menu nav ul li > a.on{
  color: var(--theme-primary);
}
.header-menu nav ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}


.header-bar .side-bars {
  font-size: 24px;
  color: #333;
  border: none;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s linear 0s;
  border: 1px solid #333;
  cursor: pointer;
}




.header-bar .side-bars:hover {
  background-color: var(--theme-primary);
}

.header-bar .side-bars i {
  font-size: 20px;
  color: #333;
}

/*
************
*************************
03. slider
******************************************************* 
*************************************************************** */
.banner-box {
  position: relative;
}

.banner-box .swiper-slide{
  height: auto;
}

.tm-bg{
  width: 100%;
  line-height: 0;
}

.tm-bg img{
  width: 100%;
  height: auto;
}


.banner-box .slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.banner-box .slide-con {
  position: relative;
  z-index: 2;
}

.banner-box .slide-con::before {
  z-index: 3;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(84, 84, 84, 0.25));
}
.banner-box .slide-con .slider-main{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 5;
  display: flex;
  align-items: center;
}


.banner-con {
  position: relative;
  z-index: 10;
  margin-top: 5%;
  color: var(--white-color);
}
.banner-con .title {
  color: #fff;
  font-size: 52px;
  display: block;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
}

.banner-con .describe{
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 1.4;
}

.banner-btn {
  font-weight: 700;
  padding: 0 20px;
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-con {
    margin-top: 0;
  }
  .banner-con .title {
    font-size: 36px;
  }
  .banner-con .describe {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-con {
    margin-top: 0;
  }
  .banner-box .slide-bg {
    background-position: 70% center;
  }
  
  .banner-box .slide-con{
    height: 360px;
  }
  .banner-con .title {
    font-size: 32px;
  }
  .banner-con .describe {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .banner-con {
    margin-top: 0;
  }
  .banner-box .slide-bg {
    background-position: 70% center;
  }
  
  .banner-box .slide-con{
    height: 360px;
  }
  .banner-con .title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .banner-con .describe {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .banner-con .banner-btn{
    height: 42px;
    font-size: 14px;
  }
  
}


.banner .slider-swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  bottom: 40px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 10;
}
@media (max-width: 767px) {
  .banner .slider-swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    bottom: 30px;
  }
}
.banner .slider-swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  opacity: 1;
  background: var(--bg-gray-4);
  position: relative;
}
.banner .slider-swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--theme-primary);
  text-align: center;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.banner .slider-swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: var(--theme-primary);
}
.banner .slider-swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet-active::after {
  opacity: 1;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}


/*
*********************
title
*************************
*/
.section-title-box{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  color: var(--dark-color);
  font-size: var(--font-size32);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0;
}

.section-title-box .title-more{
  color: var(--theme-primary);
  font-size: var(--font-size14);
  font-weight: 900;
}
.section-subtitle {
  color: var(--body-heading);
  padding: 0 15px;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
}


/*
*********************
Home  Read the Latest from SCP
*************************
*/
.latest-list{
  margin-top: 10px;
  width: 100%;
  overflow: hidden;
}
.latest-list .news-item{
  position: relative;
}
.latest-list .news-item .item-img {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 15px;
}

.latest-list .news-item .item-img img{
  object-fit: contain;
  display: block;
  max-width: 100%;
  height: auto;
  transition: all 0.3s;
}
.latest-list .news-item:hover .item-img img{
  transform: scale(1.1);
}


.latest-list .news-item .item-title{
  color: var(--theme-primary);
  font-size: var(--font-size18);
  line-height: 1.4;
  font-weight: 900;
  min-height: 51px;
  margin-bottom: 10px;
  text-transform: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  padding-bottom: 1px;
}

.latest-list .news-item .item-content {
  color: var(--dark-color);
  border-top: 1px solid var(--bg-gray-3);
  padding-top: 12px;
  font-size: var(--font-size14);
  line-height: 1.3;
  font-weight: 400;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  padding-bottom: 1px;
}


.latest-list .news-item .item-more {
  width: auto;
  cursor: pointer;
  display: block;
  margin-top: 20px;
  font-size: var(--font-size12);
  color: var(--theme-primary);
  font-weight: 700;
}

.swiper-roll-space.swiper-container {
  transform: translateX(calc((100% - 1290px) / 2));
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .swiper-roll-space.swiper-container {
    transform: translateX(calc((100% - 1110px) / 2));
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .swiper-roll-space.swiper-container {
    transform: translateX(calc((100% - 930px) / 2));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .swiper-roll-space.swiper-container {
    transform: translateX(calc((100% - 690px) / 2));
  }
}
@media (max-width: 767px) {
  .latest-list{
    padding: 0 15px;
  }
  .swiper-roll-space.swiper-container {
    transform: translateX(0);
  }
}

/*
************
*************************
home Upcoming Events
******************************************************* 
*************************************************************** */
.upcoming-events-area{
  background-color: #f5f5f5;
}

.meeting .item-one{
  margin-bottom: 30px;
  background-color: var(--white-color);
  padding: 25px;
  display: flex;
  align-items: center;
}

.meeting-page .item-one{
  border: 1px solid var(--bg-gray-3);
  background-color: #fafafa;
}

.meeting .item-one .item-img {
  width: 24%;
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.meeting .item-one .item-img img{
  object-fit: contain;
  display: block;
  max-width: 100%;
  height: auto;
  transition: all 0.3s;
}
.meeting .item-one:hover .item-img img{
  transform: scale(1.1);
}



.meeting .item-one .item-content {
  flex: 1;
  margin:0 3.5%;
}

.meeting .item-one .item-content .title{
  display: block;
  font-size: var(--font-size18);
  line-height: 1.4;
  font-weight: 900;
  margin-bottom: 10px;
}
.meeting .item-one .item-content .address{
  display: flex;
  align-items: center;
  color: var(--bg-gray-9);
}

.meeting .item-one .item-content .address span{
  margin-left: 10px;
}


.meeting .item-one .item-date{
  margin-right: 3.5%;
  color: var(--bg-gray-9);
}

.meeting .item-one .item-date li{
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.meeting .item-one .item-date li span{
  margin-left: 10px;
}

.meeting .item-one .item-more{
  text-transform: uppercase;
  font-size:var(--font-size14);
  height: 42px;
  line-height: 42px;
  padding: 0 25px;
  font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  
}
@media (max-width: 767px) {
  .meeting .item-one{
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 20px;
  }
  .meeting .item-one .item-img{
    width: 100%;
    margin-bottom: 15px;
  }
  .meeting .item-one .item-content{
    width: 100%;
    margin: 0;
  }
  .meeting .item-one .item-date{
    width: 100%;
    margin: 0 0 15px;
  }
}


/*
************
*************************
home three-area
******************************************************* 
*************************************************************** */
.three-area .container{
  display: flex;
  gap: 40px;

}
.three-one{
  flex: 1;
  align-self: stretch;
  padding: 25px 25px 60px;
  background: #f5f5f5;
  position: relative;
}
.three-one .section-title{
  font-size: var(--font-size28);
}
.three-one .item-img{
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 0;
  text-align: center;
}

.three-one .item-img img{
  width: 100%;
  height: auto;
}


.three-one .item-title{
  margin-bottom: 10px;
  color: var(--theme-primary);
  font-size: var(--font-size18);
  line-height: 1.3;
  /* min-height: 48px; */
  font-weight: 900;
  text-transform: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  padding-bottom: 1px;
}

.three-one .item-describe{
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 400;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  padding-bottom: 1px;
}

.three-one .item-one{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--theme-primary);
}
.three-one .item-one span{
  margin-left: 10px;
  line-height: 1.3;
}


.three-one .item-pic-one{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--theme-primary);
}
.three-one .item-pic-one img{
  width: 80px;
  height: auto;
  object-fit: contain;
  display: block;
}

.three-one .item-pic-one .info{
  margin-left: 15px;
  flex: 1;
}

.three-one .item-pic-one .info .name{
  color: var(--theme-primary);
    margin-bottom: 5px;
}
.three-one .item-pic-one .info .desc{
  color:var(--body-text);
  line-height: 1.3;
  font-weight: 400;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  padding-bottom: 1px;
}

.three-one .bottom-item{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 62px;
  background-color: #4a4979;
  display: flex;
  align-items: center;
  justify-content: center;
}

.three-one .view-all{
  color: var(--white-color);
  text-transform: uppercase;
  font-size:var(--font-size14);
  font-weight: 700;
}




@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .three-area .container{
    gap: 30px;
  }
  .three-one{
    padding: 20px 20px 52px;
  }
  .three-one .bottom-item{
    height: 52px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .three-area .container{
    gap: 25px;
  }
  .three-one{
    padding: 20px 20px 52px;
  }
  .three-one .bottom-item{
    height: 52px;
  }
}
@media (max-width: 767px) {
  .three-area .container{
    gap: 20px;
    flex-direction: column;

  }
  .three-one{
    flex: 1;
    width: 100%;
    align-self: flex-start;
    padding: 20px 20px 45px;
  }
  .three-one .bottom-item{
    height: 42px;
  }

  .three-one .item-img img{
    width:75%;
  }

}

/*
************
*************************
home about
******************************************************* 
*************************************************************** */

.about-area {
  background: #f5f5f5;
}

.about-area .home-about-con{
  margin-right: 50px;
}

.about-area .home-about-img{
  width: 100%;
  line-height: 0;
}
.about-area .home-about-img img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-area .home-about-con{
    margin-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .home-about-con{
    margin-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area .home-about-con{
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .about-area .home-about-con{
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .hidden-m {
    display: none;
  }
}



/*
************
*************************
breadcrumb
******************************************************* 
*************************************************************** */
.breadcrumb {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 0;
}
.breadcrumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.breadcrumb .breadcrumb-wrap {
  position: relative;
  z-index: 1;
}
.breadcrumb .breadcrumb-title {
  color: var(--white-color);
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb .breadcrumb-title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .breadcrumb .breadcrumb-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb .breadcrumb-title {
    font-size: 40px;
  }
}
.breadcrumb .breadcrumb-list a {
  color: var(--white-color);
  display: inline-block;
  position: relative;
  margin-right: 5px;
  font-weight: 500;
}
.breadcrumb .breadcrumb-list a::after {
  display: inline-block;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  color: var(--white-color);
  margin-left: 10px;
  font-weight: 900;
}
.breadcrumb .breadcrumb-list a:hover {
  color: var(--theme-primary);
}
.breadcrumb .breadcrumb-list span {
  color: var(--white-color);
  display: inline-block;
  font-weight: 500;
}

/* 
************
*************************
sub-page common
******************************************************* 
*************************************************************** */

.sub-page{
  font-size: var(--font-size18);
  color: var(--dark-color-soft);
  line-height: 1.6;
}
.sub-page b, .sub-page strong{
  font-weight: 900;
  color: var(--dark-color);
}

.sub-page a{
  color: var(--theme-primary);
}

.sub-page a.theme-btn{
  color: var(--white-color);
}

.edit-con ul, .edit-con li{
  list-style: disc;
}
.edit-con h1{
  font-size: var(--font-size32);
  margin-top: 40px;
}
.edit-con h2{
  font-size: var(--font-size28);
  margin-top: 30px;
}
.edit-con h3{
  font-size: var(--font-size24);
  margin-top: 20px;
}
.edit-con h4{
  font-size: var(--font-size20);
  margin-top: 10px;
}
.edit-con .theme-btn{
  color: var(--white-color);
}
.edit-con ul{
  margin: 0 0 0 25px;
}



.edit-con .is-layout-flex{
  display: flex;
  flex-wrap: nowrap !important;
  gap: 2em;
  margin-top: 1.75em;
  margin-bottom: 1.75em;
}

.edit-con .is-layout-flex .wp-block-column{
  flex-basis: 0;
  flex-grow: 1;
  width: 100%;
  align-self: center;
}
.edit-con .aligncenter{ 
  align-items: center;
  text-align: center;
}


img.wp-smiley, img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}
p.has-text-color{
  display: block;
  border: 1px solid var(--bg-gray-3);
  padding: 15px;
  margin-bottom: 15px !important;
  margin-top: 0 !important;
}
p.wp-block-paragraph{
  margin-top: 20px;
  margin-bottom: 0;
}
h3.wp-block-heading{
  margin-top: 30px;
}


@media (max-width: 991.98px) {
    
  .sub-page{
    font-size: var(--font-size16);
  }
  .edit-con h1{
    margin-top: 30px;
  }
  .edit-con h2{
    margin-top: 25px;
  }
  .edit-con h3{
    margin-top: 15px;
  }
  .edit-con h4{
    margin-top: 10px;
  }
  .edit-con ul{
    margin: 0 0 0 20px;
  }

  p.wp-block-paragraph{
    margin-top: 15px;
    margin-bottom: 0;
  }
  h3.wp-block-heading{
    margin-top: 20px;
  }
}
/*
************
*************************
page about
******************************************************* 
*************************************************************** */
.section-con-box{
  font-size: var(--font-size18);
}

.section-con-box a.theme-btn{
  color: var(--white-color);
}

.section-con-box.odd-box{
  background: #f5f5f5;
}
.section-con-box.even-box .item-con{
  margin-right: 50px;
}
.section-con-box.odd-box .item-con{
  margin-left: 50px;
}


@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-con-box.even-box .item-con{
    margin-right: 30px;
  }
  .section-con-box.odd-box .item-con{
    margin-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-con-box.even-box .item-con{
    margin-right: 20px;
  }
  .section-con-box.odd-box .item-con{
    margin-left: 20px;
  }
}
@media (max-width: 991.98px) {
  .section-con-box{
    font-size: var(--font-size16);
  }

  .section-con-box.even-box .row{
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .section-con-box.even-box .item-con{
    margin-top: 30px;
    margin-right: 0;
  }
  .section-con-box.odd-box .item-con{
    margin-top: 30px;
    margin-left: 0;
  }
}


/*
************
*************************
page governance
******************************************************* 
*************************************************************** */
.pic-list{
  padding-top: 10px;
}
.pic-list .item-one{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pic-list .item-img{
  width: 75%;
  line-height: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.pic-list .item-img::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(rgba(32, 49, 74, 0) 30%, #060A0F 90%);
  opacity: 0;
  transition: all 0.3s linear 0s;
  z-index: 1;
}
.pic-list .item-img:hover::before {
  opacity: 1;
}
.pic-list .item-img img{
  width: 100%;
  height: auto;
  transition: all 0.6s linear 0s;
}

.pic-list .item-img:hover img {
  transform: scale(1.1);
}

.pic-list .item-img .icon {
  font-size: 42px;
  position: absolute;
  left: 50%;
  top: 90%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear 0s;
  z-index: 2;
  font-weight: 900;
}
.pic-list .item-img:hover .icon {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.pic-list .item-title{
  font-size: var(--font-size24);
  color: var(--theme-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}


/*
************
*************************
task-list
******************************************************* 
*************************************************************** */
.task-list .item-one{
  border-bottom: 1px solid var(--bg-gray-3);
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.task-list .item-one .item-img{
  display: block;
  width: 100%;
  line-height: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  
}
.task-list .item-one .item-img img{
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.3s;
}
.task-list .item-one .item-img:hover img{
  transform: scale(1.1);
}

.task-list .item-con{
  padding-left: 3.5%;
}
.task-list .item-desc{
  font-size: var(--font-size18);
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .task-list .item-one{
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 991.98px) {
  .task-list .item-one{
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .task-list .item-con{
    margin-top: 15px;
    padding-left: 0;
  }
  .journals-list .item-one .item-img img{
    width: 75%;
  }
}

/*
************
*************************
article-list
******************************************************* 
*************************************************************** */
.article-list .item-one{
  border-bottom: 1px solid var(--bg-gray-3);
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.article-list .item-one .item-img{
  display: block;
  width: 100%;
  line-height: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  
}
.article-list .item-one .item-img img{
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.3s;
}
.article-list .item-one .item-img:hover img{
  transform: scale(1.1);
}

.article-list .item-con{
  padding-left: 3.5%;
}
.article-list h3.item-title{
  margin-bottom: 10px;
}
.article-list h3.item-title a{
  display: block;
  font-size: var(--font-size24);
  color: var(--dark-color);
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
}
.article-list h3.item-title a:hover{
  color: var(--theme-primary);
}

.article-list h3.item-title a{
  font-size: var(--font-size24);
  color: var(--dark-color);
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
}

.article-list .item-desc{
  font-size: var(--font-size16);
  line-height: 1.4;
}

.article-list .item-date{
  color: var(--bg-gray-9);
  margin-bottom: 10px;
}

.simple-more{
  font-size: var(--font-size18);
  color: var(--theme-primary);
}
.simple-more i{
  margin-left: 5px;
}
.simple-more:hover{
  color: var(--second-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .article-list .item-one{
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 991.98px) {
  .article-list .item-one{
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .article-list .item-con{
    margin-top: 15px;
    padding-left: 0;
  }
}




/*
************
*************************
contact
******************************************************* 
*************************************************************** */
.contact-area .contact-form {
  padding: 50px;
  box-shadow: 0 3px 10px rgba(85, 85, 86, 0.16);
}
@media (max-width: 767px) {
  .contact-area .contact-form {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-area .contact-form {
    padding: 50px 40px;
  }
}
.contact-area .contact-form input, .contact-area .contact-form textarea {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #F8F8F8;
  border: none;
  border-radius: 4px;
  padding: 0 25px;
  margin-bottom: 30px;
  color: #555556;
  font-size: 14px;
}
.contact-area .contact-form textarea {
  height: 220px;
}

.contact-area .width-100 {
  width: 100%;
}


.contact-area .contact-info-box {
    display: flex;
    align-items: center;
    position: relative;
    gap: 20px;
    padding: 20px 30px 20px;
    background: var(--theme-primary);
    margin-bottom: 20px;
    z-index: 1;
    transition: .5s;
}
.contact-area .contact-info-box::before{
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background-color: #000;
    border-radius: 10px;
    z-index: -1;
    transition: .5s;
}
.contact-area .contact-info-box:hover:before{
    width: 100%;
    left: 0;
}
.contact-area .contact-info-content h4 {
    font-size: 20px;
    color: #fff;
    margin: 0 0 5px;
    font-weight: 600;
}
.contact-area .contact-info-content p {
    font-size: 16px;
    color: #fff;
    margin: 0 0px;
}
.contact-area .contact-info-icon i {
    font-size: 25px;
    display: inline-block;
    color: #fff;
}

/*
************
*************************
21. sidebar
******************************************************* 
*************************************************************** */
/* Search */
.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: url(../../assets/images/close.png), auto;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.97;
}

.search-popup .search-form {
  width: 35%;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999;
}

.search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
  width: 40%;
}
@media (max-width: 767px) {
  .search-popup.active .search-form {
    width: calc(100% - 50px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .search-popup.active .search-form {
    width: 70%;
  }
}

.search-popup.active .search-form {
  visibility: visible;
}

.search-popup .search-form .form-group .form-control {
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 60px;
  padding: 0 75px 0 25px;
  background: #f7f9fb;
  line-height: 60px;
}

.search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: var(--white-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0;
  text-align: center;
  cursor: pointer;
  background: var(--theme-primary);
}

.side-info {
  width: 100%;
  max-width: 400px;
  background-color: #0C131D;
  box-shadow: 0 13px 29px rgba(4, 0, 23, 0.1);
  height: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  right: -400px;
  transition: 0.4s;
}

.side-info:is(.info-open) {
  right: 0;
  overflow-y: scroll;
  scrollbar-width: thin;
}

.offcanvas-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(4, 0, 23, 0.5);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  cursor: url(../../assets/images/close.png), auto;
}

.offcanvas-overlay:is(.overlay-open) {
  left: 0;
  opacity: 1;
  visibility: visible;
}


.sidebar-head {
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.close-sidebar-box{
  position: absolute;
  right: 10px;
  top: 15x;
}

.sidebar-logo{
  display: flex;
  align-items: center;
}
.sidebar-logo img {
  width: auto;
  height: 60px;
}
.sidebar-logo h1 {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  font-family: Jost, sans-serif;
  color: var(--white-color);
  margin: 5px 0 0 10px;
  text-transform: uppercase;
  line-height: 1.2;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-logo img {
    height: 50px;
  }
  .sidebar-logo h1 {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .sidebar-logo img {
    height: 45px;
  }
  .sidebar-logo h1 {
    font-size: 14px;
  }
}



.mean-container .mean-nav {
  background: transparent;
}

.mean-container .mean-nav ul li a {
  padding: 15px 30px;
  background: #0C131D;
  font-size: 16px;
  color: #CBCBCB;
  font-weight: 500;
  border-color: #1A2E3C;
  text-transform: none
}

.sidebar-close.side-info-close {
  background: transparent;
  border: none;
  font-size: 25px;
  color: #fff;
  padding: 0 10px;
}
.sidebar-close.side-info-close:hover {
  color: var(--theme-primary);
}

.mean-container .mean-nav ul li a.mean-expand {
  padding: 14px 15px;
  background-color: #1A2E3C;
  border-color: #1A2E3C;
  color: #CBCBCB;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: #0069ff;
  border-color: #0069ff;
}

.contact-list.mobile_contact h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-list.mobile_contact .item-one{
  display: flex;
  margin-bottom: 15px;
  text-decoration: none;
  align-items: center;
  font-size: 16px;
  color: #cacaca;
}

.contact-list.mobile_contact i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 10px;
  flex: 0 0 40px;
  max-width: 40px;
}


nav.right_menu_togle {
  font-size: 15px;
}

.footer_social.offset_social a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-right: 5px;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
}

.top_social.footer_social.offset_social a:hover {
  background-color: var(--theme-primary);
}

.mean-container .mean-nav {
  background: #0c1923 none repeat scroll 0 0;
  float: left;
  margin-top: 0;
  width: 100%;
}

.contact-infos {
  padding: 20px 30px;
}


/*
************
*************************
article details
******************************************************* 
*************************************************************** */
.article-details-title {
  color: var(--dark-color);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.article-inner-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.article-inner-box span{
  color: var(--bg-gray-9);
  margin-right: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .article-details-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .article-details-title {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .article-details-title {
    font-size: 25px;
  }
}

.article-details-content {
  padding: 33px 38px 40px;
  border: 1px solid #E6E6E6;
  border-radius: 0 0 10px 10px;
  font-size: var(--font-size18);
}
@media (max-width: 767px) {
  .article-details-content {
    padding: 33px 20px 40px;
  }
}

.article-details-content-meta {
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .article-details-content-meta {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }
}
.article-details-content-meta .article-social span {
  color: #20314A;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-right: 15px;
  font-family: "Roboto", sans-serif;
}
.article-details-content-meta .article-social a {
  color: #BBBBBB;
  margin-right: 15px;
}
.article-details-content-meta .article-social a:last-child {
  margin-right: 0;
}
.article-details-content-meta .article-social a:hover {
  color: var(--theme-primary);
}
.article-details-area .article-details-widget {
  border: 1px solid #E6E6E6;
  padding: 33px 40px;
  border-radius: 4px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .article-details-area .article-details-widget {
    padding: 33px 25px;
  }
}
@media (max-width: 767px) {
  .article-details-area .article-details-widget {
    padding: 33px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .article-details-area .article-details-widget {
    padding: 33px 40px;
  }
}
.article-details-area .article-details-widget-title {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 20px;
}
.article-details-area .article-details-widget-post {
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 17px;
  margin-bottom: 17px;
}
.article-details-area .article-details-widget-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.article-details-area .article-details-widget-post-img {
  flex: 0 0 60px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.article-details-area .article-details-widget-post-img img {
  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  -ms-transition: all 0.4s linear 0s;
  -o-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.article-details-area .article-details-widget-post-info .title {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 500;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.article-details-area .article-details-widget-post-info .title:hover a {
  color: var(--clr-theme-primary);
}
.article-details-area .article-details-widget-post-info span {
  color: #555556;
  font-size: 12px;
  display: inline-block;
  line-height: 1.8;
}
.article-details-area .article-details-widget .list li {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  color: #20314A;
  margin-bottom: 12px;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 13px;
}
.article-details-area .article-details-widget .list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.article-details-area .article-details-widget .list li a {
  color: #20314A;
  font-size: 16px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.article-details-area .article-details-widget .list li a:hover {
  color: var(--clr-theme-primary);
}
.article-details-area .article-details-widget .article-tag span {
  font-family: "Roboto", sans-serif;
  color: #777777;
  font-size: 16px;
  font-weight: 500;
  margin-right: 15px;
}
.article-details-area .article-details-widget .article-tag a {
  display: inline-block;
  background: #F8F8F8;
  height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  line-height: 30px;
  font-size: 14px;
  color: #555556;
  margin-right: 5px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.article-details-area .article-details-widget .article-tag a:last-child {
  margin-right: 0;
}
.article-details-area .article-details-widget .article-tag a:hover {
  color: var(--clr-common-white);
  background-color: var(--clr-theme-primary);
}
.article-details-area .article-details-widget.post {
  padding-bottom: 37px;
}
.article-details-area .article-details-widget.list .article-details-widget-title {
  margin-bottom: 15px;
}
.article-details-area .article-details-widget.tag {
  padding-bottom: 30px;
}

.article-details-widget-post:hover .article-details-widget-post-img img {
  transform: scale(1.1);
}

.article-details-widget-post-img a::before, .article-details-widget-post-img a::after {
  content: "";
  background: #fff;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  -o-transition-duration: 1s;
  -webkit-transition-duration: 1s !important;
  transition-duration: 1s !important;
}

.article-details-widget-post-img a::after {
  top: 0;
  opacity: 0.7;
  left: 0;
}

.article-details-widget-post-img a::before {
  right: 0;
  opacity: 1;
  bottom: 0;
}

.article-details-widget-post:hover .article-details-widget-post-img a::after, .article-details-widget-post:hover .article-details-widget-post-img a::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .article-details-right.ml-50 {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .article-details-right.ml-50 {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .article-details-right.ml-50 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .article-details-right.ml-50 {
    margin-left: 0;
  }
}

.ooter-logo a img {
  max-width: 200px;
}