.p10 {
  padding: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pr10 {
  padding-right: 10px;
}

.pl10 {
  padding-left: 10px;
}

.p20 {
  padding: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pr20 {
  padding-right: 20px;
}

.pl20 {
  padding-left: 20px;
}

.p30 {
  padding: 30px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pr30 {
  padding-right: 30px;
}

.pl30 {
  padding-left: 30px;
}

.p40 {
  padding: 40px;
}

.pt40 {
  padding-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pr40 {
  padding-right: 40px;
}

.pb70 {
  padding-bottom: 70px;
}

.pl40 {
  padding-left: 40px;
}

.m10 {
  margin: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.m20 {
  margin: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.m30 {
  margin: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.m40 {
  margin: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.p0 {
  padding: 0 !important;
}

.row {
  flex-direction: row;
}

.column {
  flex-direction: column;
}

.wrap {
  flex-wrap: wrap !important;
}

.nowrap {
  flex-wrap: nowrap !important;
}

.spacebetween {
  justify-content: space-between;
}

.justifycenter {
  justify-content: center;
}

.aligncenter {
  align-items: center;
}

.alignbaseline {
  align-items: baseline;
}

.flex {
  display: flex;
}

.relative {
  position: relative;
}

.thin {
  font-family: "light";
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.button {
  display: inline-block;
  padding: 15px 24px;
  color: #fff;
  text-align: center;
  transition: 0.4s ease-in;
  background: #98c568;
}



@media (max-width: 991.98px) {
  .button {
    display: block;
  }
}

.button:hover {
  background: #72a23e;
  transition: 0.4s ease-out;
}

.boxes {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 1199.98px) {
  .boxes {
    padding: 0;
    flex-flow: column wrap;
  }
}

.box {
  display: flex;
}

.box-one {
  flex: 1;
}

.box-two {
  flex: 2;
}

hr {
  background-color: #98c568;
  width: 150px;
  margin: 35px 0;
  height: 2px;
}

span.view-count {
  color: #5d5650;
  padding-left: 30px;
  position: relative;
}

span.view-count::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  content: "";
  background-image: url(../images/svg/view-black.svg);
}

#owl-main img {
  display: block;
  height: auto;
  width: 100%;
}

#owl-main .slider {
  background-color: #e1d7cf;
}

#owl-main .owl-prev {
  left: -50px;
}

#owl-main .owl-prev:focus {
  outline: none;
}

#owl-main .owl-next {
  right: -50px;
}

#owl-main .owl-next:focus {
  outline: none;
}

ul.sidebar_table {
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 380px;
  margin: 0;
  background-color: #ffffff;
}

@media (max-width: 991.98px) {
  ul.sidebar_table {
    width: 100%;
  }
}

ul.sidebar_table li {
  border: 1px solid #5d5650;
  background-color: #ffffff;
  transition: 0.3s ease;
  position: relative;
  background: none;
  display: block;
  z-index: 10;
}

ul.sidebar_table li::before,
ul.sidebar_table li::after {
  background: #0267b5;
  content: "";
  position: absolute;
  z-index: -1;
}

ul.sidebar_table li::after {
  transition: all 0.3s;
  height: 100%;
  left: 0;
  top: 0;
  width: 0;
}

ul.sidebar_table li:hover a {
  color: #ffffff;
  transition: all 0.3s;
}

ul.sidebar_table li:hover:after {
  width: 100%;
}

ul.sidebar_table li a {
  color: #5d5650;
  position: relative;
  width: 92%;
  height: 100%;
  display: block;
  padding: 15px;
}

ul.sidebar_table .header {
  background-color: #e1d7cf;
}

ul.sidebar_table .header:hover:after {
  width: 0;
}

ul.sidebar_table .header a {
  padding: 10px 15px;
}

ul.sidebar_table .active {
  background-color: #0267b5;
}

ul.sidebar_table .active a {
  color: #ffffff;
}

.minus {
  padding-left: 25px;
  padding-bottom: 8px;
  margin-top: 0;
  text-indent: 0;
  position: relative;
}

.minus::before {
  display: inline-block;
  content: "";
  background-image: url("../images/svg/minus.svg");
  background-size: 18px 20px;
  height: 20px;
  width: 16px;
  left: 0;
  top: 5px;
  position: absolute;
  color: #0267b5;
}

.unesco p {
  font-size: 20px;
  font-weight: 400;
  text-align: justify;
}

section.accordions ul {
  list-style-type: none;
}

section.accordions .accordion {
  width: 100%;
  margin: 0px auto 20px;
  background: #fff7f1;
}

section.accordions .accordion .link {
  cursor: pointer;
  display: block;
  padding: 18px 15px 10px;
  color: #5d5650;
  text-align: left;
  font-size: 12pt;
  line-height: 18pt;
  position: relative;
  transition: all 0.4s ease;
  border-bottom: 1px solid #5d5650;
}

section.accordions .submenu {
  display: none;
  background: transparent !important;
  font-size: 14px;
  padding: 0;
  margin: 0 40px;
}

div.container {
  width: 1600px;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 1199.98px) {
  div.container {
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
  }
}

#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(152, 197, 104, 0.7);
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  display: none;
  transition: all 0.3s ease;
  z-index: 999;
}

#return-to-top img {
  color: #fff;
  margin: 0;
  position: relative;
  left: 15px;
  top: 14px;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

#return-to-top:hover {
  background: rgba(152, 197, 104, 0.9);
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

#return-to-top:hover img {
  top: 12px;
}

section.topbar {
  background: #98c568;
}

section.topbar .boxes {
  align-items: center;
}

section.topbar .link {
  color: #ffffff;
  padding: 20px 20px;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 17px;
}

section.topbar .link:hover {
  background: #72a23e;
  transition: all 0.3s ease;
}

form.search_form {
  position: relative;
}

form.search_form .search {
  width: 20px;
  height: 21px;
  position: absolute;
  top: 12px;
  right: 18px;
}

@media (max-width: 1199.98px) {
  form.search_form .search {
    top: 28px;
    right: 5px;
  }
}

form.search_form input {
  max-height: 45px;
  width: 350px;
  padding: 12px 15px;
  border: 1px solid #5d5650;
  color: #5d5650;
}

form.search_form input::-webkit-input-placeholder {
  color: #5d5650;
}

form.search_form input::-moz-placeholder {
  color: #5d5650;
}

form.search_form input:-ms-input-placeholder {
  color: #5d5650;
}

form.search_form input::-ms-input-placeholder {
  color: #5d5650;
}

form.search_form input::placeholder {
  color: #5d5650;
}

@media (max-width: 1199.98px) {
  form.search_form input {
    width: 100%;
    margin-top: 20px;
  }
}
header .boxes {
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991.98px) {
  header .boxes {
    align-items: baseline;
  }
}

nav .icon-menu-label {
  display: none;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
  font-family: "bold", sans-serif;
}

nav #checkbox-menu {
  position: absolute;
  left: -99999px;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0;
  margin: 0;
}

/* nav .navlink::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 100%;
  bottom: -22%;
  background: #ffffff;
  height: 3px;
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
} */

nav .navlink:hover {
  opacity: 1 !important;
}

nav .navlink:hover::before {
  right: 0;
}

nav .hover {
  border-bottom: 3px solid #ffffff;
}

nav #guramalar-link:hover > .submenu li,
nav .submenu > .submenu li {
  display: flex;
  transition: 0.3s ease;
}

nav .submenu {
  padding-top: 30px;
  position: absolute;
  bottom: -130px;
  left: -15px;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
  transition: 0.3s ease;
}

#category {
  border-bottom: 1px solid #98c568;
  max-width: 300px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
}

#category .submenu {
  padding-top: 30px;
  position: absolute;
  top: 30px;
  left: 0;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
  transition: 0.3s ease;
}

#category .navlink {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

#category:hover > .submenu,
#category > .submenu {
  display: flex;
  transition: 0.3s ease;
}

.locale {
  max-width: 300px;
  position: relative;
  cursor: pointer;
}

.locale h6,
.locale a {
  color: #fff;
  text-align: center;
  display: block;
}

.locale ul {
  padding-top: 30px;
  position: absolute;
  top: 30px;
  right: 0;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  transition: 0.3s ease;

  background: #0267ae;
  padding: 10px;
  min-width: 50px;
  z-index: 10;

  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
}

.locale .navlink {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.locale:hover > ul,
.locale > ul {
  display: flex;
  transition: 0.3s ease;
}

.locale ul {
  display: none;
}

.locale h6 {
  display: flex;
  align-items: center;
}

.locale h6 .locale_icon {
  width: 20px;
}


.locale a {
  display: flex;
  align-items: center;
}

.locale_icon {
  width: 14px;
  display: block;
  margin-right: 10px;
}

.locale_icon img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}


@media (max-width: 1199.98px) {
  nav .submenu {
    position: relative;
    margin-left: 30px;
    top: 0;
    left: 0;
    padding: 0;
    margin: 15px 0;
  }
}

nav .submenu li {
  background-color: #48b7ff;
  width: 280px;
  display: none;
  transition: 0.3s ease;
}

nav .submenu li:hover {
  background-color: #014a83;
  transition: 0.3s ease;
  color: #fff !important;
}

#category .submenu {
  display: none;
}

@media (max-width: 1199.98px) {
  nav .submenu li {
    display: flex;
  }
}

nav .submenu a {
  color: #ffffff;
  display: block;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
}

@media (max-width: 1199.98px) {
  nav .submenu a {
    padding: 0;
  }
}

@media (max-width: 1199.98px) {
  nav .icon-menu-label {
    display: inline-block;
  }

  nav ul {
    display: none;
  }

  nav #checkbox-menu:checked + .container ul {
    display: flex;
  }
}

section.neutrality {
  padding: 80px 0;
}

section.neutrality .boxes {
  align-items: center;
  flex-flow: row nowrap;
}

@media (max-width: 1199.98px) {
  section.neutrality .boxes {
    flex-flow: column wrap;
  }
}

section.neutrality .box {
  flex-direction: column;
}

section.neutrality img {
  margin-right: 50px;
}

section.neutrality .button {
  width: 330px;
  margin-top: 30px;
}

@media (max-width: 991.98px) {
  section.neutrality .button {
    width: 90%;
  }
}

section.main_news {
  padding: 80px 0 80px 0;
  position: relative;
}

section.main_news .clip-top {
  position: absolute;
  background-image: url(../images/svg/clip-bg.svg);
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: -1;
}

section.main_news .box {
  flex-direction: column;
}

section.main_news .content {
  padding: 20px 25px;
  background-color: #0267b5;
}

section.main_news .content p,
section.main_news .content span {
  color: #ffffff;
}

section.main_news .big-news,
section.main_news .small-news {
  transition: 0.4s ease;
}

section.main_news .big-news:hover,
section.main_news .small-news:hover {
  transition: 0.4s ease;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
}

section.main_news .big-news {
  flex-direction: row;
}

@media (max-width: 1199.98px) {
  section.main_news .big-news {
    flex-direction: column;
  }
}

section.main_news .big-news img {
  width: 550px;
  height: auto;
}

@media (max-width: 991.98px) {
  section.main_news .big-news img {
    width: 100%;
  }
}

section.main_news .big-news .news-text {
  margin-top: 15px;
}

section.main_news h5 {
  color: #ffffff;
  padding: 15px 0;
}

section.main_news h5,
section.main_news .p-news {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  /* number of lines to show */
}

section.main_news .small-news {
  margin-top: 60px;
  width: 264px;
  background-color: #0267b5;
}

@media (max-width: 991.98px) {
  section.main_news .small-news {
    width: 100%;
    margin-top: 30px;
  }
}

section.main_news .small-news h5 {
  padding: 15px 0 0;
}

section.main_news .small-news .content {
  min-height: 135px;
}

section.main_news .small-news img {
  width: 100%;
}

section.main_news .sub-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

section.main_news .sub-content p {
  background-color: #ffffff;
  font-style: italic;
  padding: 4px 8px;
  margin-right: 12px;
  color: #0267b5;
  font-family: "bold";
}

section.main_parallax {
  position: relative;
}

section.main_parallax .parallax {
  background-image: url("../img/awaza.jpg");
  max-height: 620px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 62px 0;
}

section.main_parallax .box {
  width: 870px;
  background: rgba(93, 86, 80, 0.8);
  padding: 45px 25px;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  section.main_parallax .box {
    width: 90%;
  }
}

section.main_parallax .box h1,
section.main_parallax .box p {
  color: #ffffff;
}

section.main_parallax .box p {
  padding: 40px 0 25px;
}

section.main_parallax .button {
  width: 330px;
}

@media (max-width: 991.98px) {
  section.main_parallax .button {
    width: 90%;
  }
}

section.blocks {
  padding: 60px 0 0;
  background-color: #fff7f1;
}

@media (max-width: 991.98px) {
  section.blocks {
    padding: 60px 0 30px;
  }
}

section.blocks .boxes {
  padding: 35px 0 0;
}

section.blocks .card {
  margin: 0 0 60px 0;
  width: 30%;
  height: auto;
  position: relative;
  transition: 0.4s ease-out;
}

@media (max-width: 991.98px) {
  section.blocks .card {
    width: 100%;
    margin: 0 0 30px 0;
  }
}

section.blocks img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
}

section.blocks .content {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(93, 86, 80, 0.8);
  transition: 0.4s ease-in;
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: center;
  background-color: rgba(93, 86, 80, 0.5);
}

section.blocks .content h4 {
  color: #ffffff;
  text-align: center;
  transform: translateY(100%);
  transition: 0.2s ease-in;
  margin-bottom: 15px;
}

section.blocks .content a {
  opacity: 0;
  transform: translateY(50%);
  transition: 0.2s ease-in;
  z-index: 10;
}

section.blocks .card:hover .content {
  transition: 0.4s ease-in;
  background-color: rgba(93, 86, 80, 0.7);
}

section.blocks .card:hover h4 {
  transform: translateY(0);
  transition: 0.2s ease-in;
}

section.blocks .card:hover a {
  transition: 0.2s ease-in;
  opacity: 1;
  transform: translateY(0);
}

section.blocks .center {
  display: flex;
  justify-content: center;
}

section.blocks .link {
  width: 60px;
  height: 60px;
  margin-top: 20px;
}

section.blocks span {
  margin-top: 40px;
  background-color: #ffffff;
  padding: 6px 12px;
  text-align: center;
}

section.category {
  padding: 80px 0 30px;
}

section.category .news-blocks {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
}

section.category .news-blocks .box {
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  /* margin-bottom: 50px; */
  transition: 0.4s ease;
  width: 49%;
}

section.category .news-blocks .box:hover {
  transform: scale(1.05);
}


section.category .news-blocks .box:hover {
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease;
}

@media (max-width: 991.98px) {
  section.category .news-blocks .box {
    flex-direction: column;
  }
}

section.category .box-two {
  flex-direction: column;
}

section.category .box-one {
  justify-content: flex-end;
}

section.category img {
  width: 390px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}


@media (max-width: 1199.98px) {
  section.category img {
    width: 100%;
  }

  section.category .news-blocks .box {
    width: 100%;
  }
}

section.category h5 {
  padding: 0 0 6px 0;
}

section.category .tribal {
  position: relative;
  padding-left: 22px;
  min-height: 45px;
}

section.category .tribal::before {
  display: inline-block;
  position: absolute;
  content: "";
  top: 5px;
  left: -2px;
  width: 16px;
  height: 42px;
  background-size: 16px 42px;
  background-repeat: no-repeat;
  background-image: url("../images/svg/tribal-mini.svg");
}

section.category p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  /* number of lines to show */
}

section.category .content {
  padding: 25px;
  width: 610px;
  height: 210;
  display: flex;
  flex-flow: column nowrap;
}

section.category .sub-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5px;
}

section.category .sub-content p {
  background-color: #0267b5;
  font-style: italic;
  padding: 4px 8px;
  margin-right: 12px;
  color: #ffffff;
  font-family: "bold";
}

.owl-carousel {
  z-index: 1;
  position: relative;
}

.owl-carousel img {
  height: auto;
  width: 100%;
  display: block;
}

.owl-carousel .owl-dots {
  display: none;
}

section.edara {
  padding: 80px 0 50px;
}

section.edara .boxes {
  min-width: 0%;
  flex-shrink: 1;
}

@media (max-width: 1199.98px) {
  section.edara .boxes {
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  section.edara .boxes {
    flex-flow: column wrap;
  }
}

section.edara .boxes-column {
  flex-flow: column nowrap;
}

section.edara .box-one {
  flex-direction: column;
  align-items: flex-end;
}

section.edara .owl-carousel img {
  width: 100%;
  height: auto;
}

section.edara .box {
  min-width: 0%;
  flex-shrink: 1;
}

@media (max-width: 1199.98px) {
  section.edara .box {
      
    max-width: 100%;
  }
}

section.edara .news-top {
 width: 1200px;
 height: 800px;
  margin: 0 auto 40px auto; 

}
section.edara .anons-top {
 width: 1100px;
 height: 700px;
  margin: 0 auto 40px auto; 

}

section.edara .contacts {
  padding: 30px 0 60px;
  display: flex;
}

section.edara .contacts .box {
  flex-direction: column;
  flex: 1;
}

section.edara .contacts h5 {
  position: relative;
  padding-left: 30px;
  margin-top: 30px;
  margin-bottom: 4px;
}

section.edara .contacts h5::before {
  display: inline-block;
  position: absolute;
  content: "";
  top: 1px;
  left: 0px;
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-repeat: no-repeat;
}

section.edara .contacts .phone::before {
  background-image: url("../images/svg/phone.svg");
}

section.edara .contacts .address::before {
  background-image: url("../images/svg/address.svg");
}

section.edara .contacts .time::before {
  background-image: url("../images/svg/clocks.svg");
}

section.edara .contacts table.hours {
  border-collapse: collapse;
  margin-top: 15px;
}

section.edara .contacts table.hours tr {
  font-size: 10pt;
  color: #5d5650;
  text-align: center;
}

section.edara .contacts table.hours .Headhours {
  font-weight: bold;
  border-bottom: 3px solid #98c568;
}

section.edara .contacts table.hours .Headhours td {
  width: 90px;
  height: 30px;
}

section.edara .contacts table.hours .active-top {
  background: #98c568;
  color: #fff;
}

section.edara .contacts table.hours .active-bottom {
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

section.edara .kanun {
  display: block;
  color: #0267b5;
  margin-bottom: 10px;
  transition: 0.3s ease-in;
}

section.edara .kanun:hover {
  color: #98c568;
  transition: 0.3s ease-in;
  text-decoration: underline;
}

section.edara #paginationContainer {
  width: 380px;
}

@media (max-width: 991.98px) {
  section.edara #paginationContainer {
    width: 100%;
  }
}

section.edara #paginationContainer li {
  margin-bottom: 20px;
}

section.edara #paginationContainer a.prev-content {
  display: flex;
  flex-flow: column;
  background-color: #fff;
  padding: 20px;
  margin: 10px 0;
  transition: 0.3s ease-in;
  text-decoration: none;
  border-bottom: 3px solid #98c568;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

section.edara #paginationContainer a.prev-content:hover {
  transition: 0.3s ease-in;
  transform: scale(1.02);
}

section.edara #paginationContainer .date-prev {
  margin: 0;
  position: relative;
  padding-left: 20px;
}

section.edara #paginationContainer .date-prev::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  background-image: url(../images/svg/date.svg);
  width: 14px;
  height: 14px;
  background-size: 14px;
  background-repeat: no-repeat;
}

section.edara #paginationContainer .category {
  margin: 0;
  position: relative;
  padding-left: 15px;
  padding-top: 5px;
  font-style: italic;
}

section.edara #paginationContainer .category::before {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  background-image: url(../images/svg/bookmark.svg);
  width: 10px;
  height: 10px;
  background-size: 10px;
  background-repeat: no-repeat;
}

section.edara #paginationContainer h5 {
  margin-top: 10px;
}

section.edara .holder {
  margin: 0 0 15px 0;
}

section.edara .holder a {
  font-size: 10pt;
  cursor: pointer;
  padding: 10px 15px;
  color: #5d5650;
}

section.edara .holder a:hover {
  color: #5d5650;
  background: none;
}

section.edara .holder a.jp-current,
section.edara a.jp-current:hover {
  color: #ffffff;
  padding: 10px 15px;
  font-weight: bold;
  background: #0267b5;
}

section.edara .holder a.jp-current,
section.edara a.jp-current:hover,
section.edara .holder a.jp-disabled,
section.edara a.jp-disabled:hover {
  cursor: default;
  color: #ffffff;
  padding: 10px 15px;
  background: #0267b5;
}

section.edara .content p {
  margin-bottom: 30px;
  font-size: 18px;
  text-align: justify;
}

section.edara .content .tribal {
  background-image: url(../images/svg/tribal.svg);
  width: 80%;
  margin: 30px auto;
  height: 100px;
  /* background-size: 100%; */
  background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
}

section.edara .content h4 {
  margin: 30px 0;
  text-align: center;
}

section.edara .content img {
  width: 100%;
}

section.edara .content .images {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

section.edara .content .images img {
  flex: 1;
  width: 45%;
  padding: 0;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

section.edara .content .images img:nth-child(1) {
  margin-right: 30px;
}

section.edara .content .gallery {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}

section.edara .content .gallery a {
  display: flex;
  width: 48%;
  padding: 0;
  margin-bottom: 30px;
}

section.edara .content .left {
  float: left;
  margin-right: 20px;
  width: 50%;
  height: auto;
  margin-top: 6px;
  padding: 0;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

section.edara .content .right {
  float: right;
  margin-left: 20px;
  width: 50%;
  height: auto;
  margin-top: 6px;
  padding: 0;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}
section.unesco p {
  font-size: 22px;
}
.pagination {
  padding: 0 0 60px;
  justify-content: flex-start;
}

.pagination a {
  color: #5d5650;
  transition: 0.4s ease;
  display: block;
  width: 40px;
  height: 40px;
}

.pagination .page-item {
  margin-right: 20px;
}

.pagination a:hover {
  transition: 0.4s ease;
  background-color: #0267b5;
  color: #ffffff;
}

.pagination img {
  width: 40px !important;
}

.pagination .active {
  background-color: #5d5650;
  color: #ffffff;
}

section.video {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 0;
  width: 100%;
}

section.video #my-video {
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  border: 14px solid white;
  border-radius: 5px;
}

section.video .vjs-poster {
  background-size: cover;
}

section.video .vjs-icon-placeholder:before {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.2;
}

section.video .vjs-big-play-button {
  position: absolute;
  top: 47%;
  left: 45%;
  border: none;
  transition: 0.3s ease;
}

section.video .vjs-big-play-button:hover {
  background-color: #98c568;
  transition: 0.3s ease;
}

section.video .vjs-big-play-button .vjs-icon-placeholder:before {
  line-height: 1.4;
  font-size: 2rem;
}

section.video .vjs-menu-content {
  background-color: #98c568;
}

section.video .vjs-menu-content span {
  color: #5d5650;
}

