:root {
  --primary-color: #0056a5;
  --secondary-light: #0f82d7;
  --secondary-dark: #001b50;
  --hover: #ffc83d;
  --background-primary: #fdfffc;
  --background-secondary: #e7f0ff;
  --background-side-menu: #f6f9fd;
  --opacity-54-dark: rgba(0, 27, 80, 0.541);
}

.fixall {
  margin: 0;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  text-decoration: none;
}

.fixall:hover,
.fixall:focus {
  outline: none;
  text-decoration: none;
}

body {
  position: relative;
  /*font-family: HelveticaNeue;*/
  font-weight: 400;
  background-image: url(../images/pat.png);
  background-repeat: repeat;
  background-size: contain;
}

body::-webkit-scrollbar {
  background-color: #fff;
  width: 7px;
  height: 0px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.overflow {
  overflow: hidden !important;
}

@font-face {
  font-family: "HelveticaNeue";
  src: url("../fonts/HelveticaNeue/HelveticaNeueThin.woff2") format("woff2"), url("../fonts/HelveticaNeue/HelveticaNeueThin.woff") format("woff"), url("../fonts/HelveticaNeue/HelveticaNeueThin.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeue";
  src: url("../fonts/HelveticaNeue/HelveticaNeueLight.woff2") format("woff2"), url("../fonts/HelveticaNeue/HelveticaNeueLight.woff") format("woff"), url("../fonts/HelveticaNeue/HelveticaNeueLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeue";
  src: url("../fonts/HelveticaNeue/HelveticaNeueRegular.woff2") format("woff2"), url("../fonts/HelveticaNeue/HelveticaNeueRegular.woff") format("woff"), url("../fonts/HelveticaNeue/HelveticaNeueRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeue";
  src: url("../fonts/HelveticaNeue/HelveticaNeueItalic.woff2") format("woff2"), url("../fonts/HelveticaNeue/HelveticaNeueItalic.woff") format("woff"), url("../fonts/HelveticaNeue/HelveticaNeueItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeue";
  src: url("../fonts/HelveticaNeue/HelveticaNeueMedium.woff2") format("woff2"), url("../fonts/HelveticaNeue/HelveticaNeueMedium.woff") format("woff"), url("../fonts/HelveticaNeue/HelveticaNeueMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeue";
  src: url("../fonts/HelveticaNeue/HelveticaNeueBold.woff2") format("woff2"), url("../fonts/HelveticaNeue/HelveticaNeueBold.woff") format("woff"), url("../fonts/HelveticaNeue/HelveticaNeueBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeue";
  src: url("../fonts/HelveticaNeue/HelveticaNeueHeavy.woff2") format("woff2"), url("../fonts/HelveticaNeue/HelveticaNeueHeavy.woff") format("woff"), url("../fonts/HelveticaNeue/HelveticaNeueHeavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "roboto";
  src: url("../fonts/Roboto/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "roboto";
  src: url("../fonts/Roboto/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "roboto";
  src: url("../fonts/Roboto/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

#side-nav {
  background-color: var(--opacity-54-dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: none;
}

.mo-navbar {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: var(--background-side-menu);
  width: 314px;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  padding-bottom: 16px;
  right: -315px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
}

.mo-navbar::-webkit-scrollbar {
  background-color: #fff;
  width: 7px;
  height: 0px;
}

.mo-navbar::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

html[dir="ltr"] .mo-navbar {
  left: -315px;
  right: auto;
}

.mo-navbar.nav-in {
  right: 0;
}

html[dir="ltr"] .mo-navbar.nav-in {
  left: 0;
}

.mo-navbar .logo-cont {
  padding: 21px 24px 21.7px;
  background-color: #fff;
}

.mo-navbar :is(.nav-li, .menu-item) {
  margin-top: 24px;
}


html[dir="ltr"] .mo-navbar :is(.nav-li, .menu-item) {
  padding-left: 24px;
  padding-right: 8px;
}

html[dir="rtl"] .mo-navbar :is(.nav-li, .menu-item) {
  padding-left: 8px;
  padding-right: 24px;
}
.mo-navbar .menu-item a {
    font-family: roboto;
    font-size: 18px;
    color: var(--secondary-dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mo-navbar .menu-item a:hover,
.mo-navbar .menu-item a:focus {
    color: var(--secondary-light);
}

.mo-navbar .copyrights-li {
  margin-top: auto;
  padding-top: 40px;
}

.mo-navbar .copyrights-text {
  text-align: center;
  font-size: 11px;
  color: #23417d;
  margin: 0;
}


.mo-navbar .menu-item {
  display: none;
}

@media (max-width: 767px) {
  .mo-navbar .menu-item {
    display: block;
  }
}

.mo-navbar .head-li {
  padding: 0 24px;
}

.mo-navbar .ul-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-family: roboto;
  color: var(--primary-color);
  font-weight: bold;
  padding-top: 35px;
}

html[dir="ltr"] .mo-navbar .ul-head .head-ico {
  margin-right: 16px;
}

html[dir="rtl"] .mo-navbar .ul-head .head-ico {
  margin-left: 16px;
}

.mo-navbar .nav-a {
  font-family: roboto;
  font-size: 18px;
  color: var(--secondary-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mo-navbar .nav-a:hover,
.mo-navbar .nav-a:focus {
  color: var(--secondary-light);
}

.mo-navbar span.nav-a::after {
  content: url(../images/arrow.svg);
  -webkit-filter: invert(6%) sepia(89%) saturate(4887%) hue-rotate(204deg) brightness(102%) contrast(115%);
  filter: invert(6%) sepia(89%) saturate(4887%) hue-rotate(204deg) brightness(102%) contrast(115%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

html[dir="ltr"] .mo-navbar span.nav-a::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

html[dir="rtl"] .mo-navbar span.nav-a::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mo-navbar span.nav-a:hover,
.mo-navbar span.nav-a:focus {
  color: var(--secondary-light);
}

.mo-navbar span.nav-a:hover::after,
.mo-navbar span.nav-a:focus::after {
  -webkit-filter: invert(63%) sepia(88%) saturate(5815%) hue-rotate(185deg) brightness(91%) contrast(88%);
  filter: invert(63%) sepia(88%) saturate(5815%) hue-rotate(185deg) brightness(91%) contrast(88%);
}

.mo-navbar span.nav-a.active {
  color: var(--secondary-light);
  font-weight: bold;
}

.mo-navbar span.nav-a.active::after {
  -webkit-filter: invert(63%) sepia(88%) saturate(5815%) hue-rotate(185deg) brightness(91%) contrast(88%);
  filter: invert(63%) sepia(88%) saturate(5815%) hue-rotate(185deg) brightness(91%) contrast(88%);
}

html[dir="ltr"] .mo-navbar span.nav-a.active::after {
  -webkit-transform: rotate(0) translateY(5px);
  transform: rotate(0) translateY(5px);
}

html[dir="rtl"] .mo-navbar span.nav-a.active::after {
  -webkit-transform: rotate(0) translateY(5px);
  transform: rotate(0) translateY(5px);
}

.mo-navbar .sub-ul {
  padding: 8px;
  margin-top: 8px;
  display: none;
}

html[dir="ltr"] .mo-navbar .sub-ul {
  margin-left: 24px;
  border-left: 2px solid var(--background-secondary);
}

html[dir="rtl"] .mo-navbar .sub-ul {
  margin-right: 24px;
  border-right: 2px solid var(--background-secondary);
}

.mo-navbar .sub-li {
  width: 100%;
}

.mo-navbar .sub-a {
  font-size: 14px;
  padding: 8px 16px;
  display: block;
  font-family: roboto;
  border-radius: 6px;
  color: var(--secondary-dark);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mo-navbar .sub-a:hover,
.mo-navbar .sub-a:focus {
  color: var(--secondary-light);
  font-weight: 500;
  background-color: var(--background-secondary);
}

.mo-navbar .more-cats {
  margin-top: 24px;
  /* text-align: center; */
}

html[dir="ltr"] .mo-navbar .more-cats .sub-ul {
  border: none;
  margin: 8px 0 0;
}

html[dir="rtl"] .mo-navbar .more-cats .sub-ul {
  border: none;
  margin: 8px 0 0;
}

.mo-navbar .more-cats .nav-a {
  background-color: var(--opacity-54-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--background-primary);
  padding: 8px 0;
}

.mo-navbar .more-cats .nav-a::after {
  -webkit-filter: invert(100%) sepia(39%) saturate(175%) hue-rotate(44deg) brightness(102%) contrast(101%);
  filter: invert(100%) sepia(39%) saturate(175%) hue-rotate(44deg) brightness(102%) contrast(101%);
}

html[dir="ltr"] .mo-navbar .more-cats .nav-a::after {
  -webkit-transform: rotate(0) translateY(5px);
  transform: rotate(0) translateY(5px);
}

html[dir="rtl"] .mo-navbar .more-cats .nav-a::after {
  -webkit-transform: rotate(0) translateY(5px);
  transform: rotate(0) translateY(5px);
}

.mo-navbar .more-cats .nav-a:hover,
.mo-navbar .more-cats .nav-a:focus {
  color: var(--hover);
}

.mo-navbar .more-cats .nav-a:hover::after,
.mo-navbar .more-cats .nav-a:focus::after {
  -webkit-filter: invert(73%) sepia(54%) saturate(554%) hue-rotate(353deg) brightness(102%) contrast(101%);
  filter: invert(73%) sepia(54%) saturate(554%) hue-rotate(353deg) brightness(102%) contrast(101%);
}

.mo-navbar .more-cats .nav-a.active {
  color: var(--hover);
  font-weight: bold;
}

.mo-navbar .more-cats .nav-a.active::after {
  -webkit-filter: invert(73%) sepia(54%) saturate(554%) hue-rotate(353deg) brightness(102%) contrast(101%);
  filter: invert(73%) sepia(54%) saturate(554%) hue-rotate(353deg) brightness(102%) contrast(101%);
}

html[dir="ltr"] .mo-navbar .more-cats .nav-a.active::after {
  -webkit-transform: rotate(0) translateY(5px);
  transform: rotate(0) translateY(5px);
}

html[dir="rtl"] .mo-navbar .more-cats .nav-a.active::after {
  -webkit-transform: rotate(0) translateY(5px);
  transform: rotate(0) translateY(5px);
}

main {
  position: relative;
}

main img {
  width: 100%;
}

main .main {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

@media (max-width: 992px) {
  main .main {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

.main-text {
  color: var(--background-primary);
}

.main-head {
  font-size: 52px;
  font-weight: bold;
  line-height: 1.13;
  width: 780px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .main-head {
    font-size: 20px;
    margin-bottom: 20px;
    width: auto;
  }
}

.main-pragraph {
  width: 695px;
  font-size: 18px;
  line-height: 1.33;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .main-pragraph {
    font-size: 14px;
  }
}

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

.main-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 992px) {
  .main-btns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.main-btn {
  width: 197px;
  height: 44px;
  border-radius: 8px;
  border: solid 1px transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .main-btn {
    width: 150px;
    height: 40px;
  }
}

.main-btn.chat-btn {
  color: var(--secondary-dark);
  background-color: var(--hover);
}

html[dir="ltr"] .main-btn.chat-btn {
  margin-right: 15px;
}

html[dir="rtl"] .main-btn.chat-btn {
  margin-left: 15px;
}

.main-btn.faq-btn {
  color: var(--background-primary);
  background-color: transparent;
  border-color: var(--background-primary);
}

.main-btn:hover {
  background-color: var(--primary-color);
  color: var(--background-primary);
  border-color: var(--primary-color);
}

.women-sec {
  position: relative;
}

.women-sec img {
  width: 100%;
}

.women-sec .sec-info-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.women-sec .sec-info {
  position: absolute;
  top: 70px;
  bottom: 0;
  padding: 55px 40px 0;
  width: 485px;
  border-radius: 10px 10px 0 0;
  background-color: var(--primary-color);
}

@media (max-width: 992px) {
  .women-sec .sec-info {
    width: 70%;
  }
}

@media (max-width: 767px) {
  .women-sec .sec-info {
    top: 20px;
    width: 80%;
    padding: 25px 15px 15px;
  }
}

html[dir="ltr"] .women-sec .sec-info {
  right: 70px;
}

@media (max-width: 767px) {
  html[dir="ltr"] .women-sec .sec-info {
    right: 15px;
  }
}

html[dir="rtl"] .women-sec .sec-info {
  left: 70px;
}

@media (max-width: 767px) {
  html[dir="rtl"] .women-sec .sec-info {
    left: 15px;
  }
}

.women-sec .arc-title {
  font-family: roboto;
  font-size: 40px;
  font-weight: bold;
  color: var(--background-primary);
  line-height: 1.1;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.women-sec .arc-title:hover,
.women-sec .arc-title:focus {
  color: var(--hover);
}

.women-sec .arc-title::before {
  display: block;
  height: 5px;
  width: 50px;
  content: "";
  background-color: var(--hover);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .women-sec .arc-title::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .women-sec .arc-title {
    font-size: 20px;
    margin-bottom: 0;
  }
}

.women-sec .arc-p {
  color: var(--background-primary);
  font-family: roboto;
  font-size: 18px;
  line-height: 1.44;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .women-sec .arc-p {
    display: none;
  }
}

.women-sec .read-btn {
  width: 210.48px;
  height: 44px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--secondary-dark);
  background-color: var(--hover);
  margin: 30px 0 0;
}

@media (max-width: 992px) {
  .women-sec .read-btn {
    width: 150px;
    height: 40px;
  }
}

.women-sec .read-btn:hover {
  background-color: var(--background-primary);
}

.asked-item {
  position: relative;
  padding-bottom: 24px;
}

.asked-item .asked-img {
  padding-bottom: 93.9165348583%;
  width: 100%;
  display: block;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
}

.asked-item .asked-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.asked-item .asked-img:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.asked-item .cat {
  padding: 0 10px;
  height: 24px;
  font-size: 11px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  background-color: var(--hover);
  color: var(--secondary-dark);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 16px 0 8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.asked-item .cat:hover {
  background-color: var(--primary-color);
  color: var(--background-primary);
}

.asked-item .asked-desc {
  display: none;
}

.asked-item .asked-name,
.asked-item .short-asked-name,
.asked-item .tall-asked-name {
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  color: var(--primary-color);
  display: inline-block;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .asked-item .asked-name {
    height: auto;
  }
}

.asked-item .asked-name:hover,
.asked-item .asked-name:focus {
  color: var(--secondary-dark);
}

.asked-item .states {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 14px;
}

.asked-item .state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  color: var(--opacity-54-dark);
  font-weight: 500;
}

html[dir="ltr"] .asked-item .state .state-ico {
  margin-right: 4px;
}

html[dir="rtl"] .asked-item .state .state-ico {
  margin-left: 4px;
}

html[dir="ltr"] .asked-item .state {
  margin-right: 25px;
}

html[dir="rtl"] .asked-item .state {
  margin-left: 25px;
}

.asked-item.tall-asked .asked-img {
  padding-bottom: 123.664122137%;
  width: 100%;
  display: block;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
}

.asked-item.tall-asked .asked-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.asked-item.tall-asked .asked-img:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.asked-item.short-asked .asked-img {
  padding-bottom: 93.5606060606%;
  width: 100%;
  display: block;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
}

.asked-item.short-asked .asked-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.asked-item.short-asked .asked-img:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.asked-item.big-asked {
  height: 100%;
}

.asked-item.big-asked .big-asked-img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.asked-item.big-asked .big-asked-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .asked-item.big-asked .big-asked-img {
    padding-bottom: 169.160583942%;
  }

  .asked-item.big-asked .big-asked-img img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.asked-item.big-asked .big-asked-img::after {
  background: -webkit-gradient(linear, left bottom, left top, from(#001b50), to(rgba(0, 27, 80, 0)));
  background: linear-gradient(0deg, #001b50 0%, rgba(0, 27, 80, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
}

.asked-item.big-asked .big-asked-img:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.asked-item.big-asked .big-asked-info {
  position: absolute;
  bottom: 50px;
  left: 25px;
  right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.asked-item.big-asked .cat {
  padding: 0 14px;
  height: 40px;
  font-size: 16px;
  margin: 0 0 24px;
}

.asked-item.big-asked .big-asked-name {
  font-size: 41px;
  font-weight: bold;
  font-family: roboto;
  line-height: 1.1;
  display: inline-block;
  color: var(--background-primary);
  margin-bottom: 8px;
  padding-bottom: 20px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.asked-item.big-asked .big-asked-name:hover,
.asked-item.big-asked .big-asked-name:focus {
  color: var(--hover);
}

.asked-item.big-asked .big-asked-auth {
  color: rgba(253, 255, 252, 0.54);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.39;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.asked-item.big-asked .big-asked-auth:hover,
.asked-item.big-asked .big-asked-auth:focus {
  color: #fdfffc;
}

.asked-item.big-asked .states {
  margin-top: 35px;
}

.asked-item.big-asked .state {
  font-size: 14px;
  color: var(--background-primary);
}

html[dir="ltr"] .asked-item.big-asked .state .state-ico {
  margin-right: 8px;
}

html[dir="rtl"] .asked-item.big-asked .state .state-ico {
  margin-left: 8px;
}

.asked-item.main-asked {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.post-type-archive-book .asked-item.main-asked {
    -ms-grid-columns: 28% 1fr;
    grid-template-columns: 28% 1fr;
}

.asked-item.main-asked .big-asked-img {
  width: 100%;
  aspect-ratio: 555/385;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 6px 0 0 6px;
}

.post-type-archive-book .asked-item.main-asked .big-asked-img {
  aspect-ratio: unset;
}

.asked-item.main-asked .big-asked-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.post-type-archive-book .asked-item.main-asked .big-asked-img img {
  width: auto;
  margin: 0 auto;
   display: block;
}

@media (max-width: 992px) {
  .asked-item.main-asked .big-asked-img {
    padding-bottom: 169.160583942%;
  }

  .asked-item.main-asked .big-asked-img img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.asked-item.main-asked .big-asked-img::after {
  background: -webkit-gradient(linear, left bottom, left top, from(#001b50), to(rgba(0, 27, 80, 0)));
  background: linear-gradient(0deg, #001b50 0%, rgba(0, 27, 80, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
}

.post-type-archive-book .asked-item.main-asked .big-asked-img::after {
	display: none;
}

.asked-item.main-asked .big-asked-img:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.asked-item.main-asked .big-asked-info {
  padding: 0 30px;
  background-color: var(--background-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.asked-item.main-asked .cat {
  padding: 0 14px;
  height: 40px;
  font-size: 16px;
  margin: 0 0 24px;
}

.asked-item.main-asked .big-asked-name {
  font-size: 41px;
  font-weight: bold;
  font-family: roboto;
  line-height: 1.1;
  display: inline-block;
  color: var(--primary-color);
  margin-bottom: 8px;
  /* padding-bottom: 20px; */
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.asked-item.main-asked .big-asked-name:hover,
.asked-item.main-asked .big-asked-name:focus {
  color: var(--hover);
}

.asked-item.main-asked .big-asked-auth {
  color: rgba(0, 27, 80, 0.541);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.39;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.asked-item.main-asked .big-asked-auth:hover,
.asked-item.main-asked .big-asked-auth:focus {
  color: #001b50;
}

.asked-item.main-asked .states {
  margin-top: 35px;
}

.asked-item.main-asked .state {
  font-size: 14px;
  color: var(--opacity-54-dark);
}

.asked-item.main-asked .state svg {
  fill: #001b50;
  fill-opacity: 0.54;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

html[dir="ltr"] .asked-item.main-asked .state .state-ico {
  margin-right: 8px;
}

html[dir="rtl"] .asked-item.main-asked .state .state-ico {
  margin-left: 8px;
}

.asked-item.list-item {
  display: block;
  background-color: var(--background-secondary);
  margin-bottom: 8px;
  padding: 0;
}

.asked-item.list-item .main-asked-img,
.asked-item.list-item .asked-img,
.asked-item.list-item .big-asked-img,
.asked-item.list-item .main-asked-auth,
.asked-item.list-item .big-asked-auth {
  display: none;
}

.asked-item.list-item .big-asked-info {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

.asked-item.list-item .main-asked-info,
.asked-item.list-item .big-asked-info,
.asked-item.list-item .asked-info {
  flex-direction: row;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  background-color: transparent;
  margin: 0;
  cursor: pointer;
  padding: 18px 15px;
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {

  .asked-item.list-item .main-asked-info,
  .asked-item.list-item .big-asked-info,
  .asked-item.list-item .asked-info {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {

  .asked-item.list-item .main-asked-info,
  .asked-item.list-item .big-asked-info,
  .asked-item.list-item .asked-info {
    max-width: 1140px;
  }
}

@media (max-width: 767px) {

  .asked-item.list-item .main-asked-info,
  .asked-item.list-item .big-asked-info,
  .asked-item.list-item .asked-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.asked-item.list-item .main-asked-info:after,
.asked-item.list-item .big-asked-info:after,
.asked-item.list-item .asked-info:after {
  content: url(../images/arrow2.svg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {

  .asked-item.list-item .main-asked-info:after,
  .asked-item.list-item .big-asked-info:after,
  .asked-item.list-item .asked-info:after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
  }
}

.asked-item.list-item .main-asked-info.open:after,
.asked-item.list-item .big-asked-info.open:after,
.asked-item.list-item .asked-info.open:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@media (max-width: 767px) {

  .asked-item.list-item .main-asked-info.open:after,
  .asked-item.list-item .big-asked-info.open:after,
  .asked-item.list-item .asked-info.open:after {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.asked-item.list-item .cat {
  height: 40px;
  font-size: 16px;
  margin: 0;
  white-space: nowrap;
  margin-right: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 14px;
}

@media (max-width: 767px) {
  .asked-item.list-item .cat {
    padding: 0 10px;
    margin: 0 0 15px;
    font-size: 14px;
  }
}

.asked-item.list-item .states {
  margin: 0;
  margin-inline-start: auto;
  margin-inline-end: 80px;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .asked-item.list-item .states {
    margin-inline-end: 40px;
  }
}

@media (max-width: 767px) {
  .asked-item.list-item .states {
    display: none;
  }
}

html[dir="ltr"] .asked-item.list-item .states .state:last-of-type {
  margin: 0;
}

html[dir="rtl"] .asked-item.list-item .states .state:last-of-type {
  margin: 0;
}

.asked-item.list-item .main-asked-name,
.asked-item.list-item .big-asked-name,
.asked-item.list-item .asked-name {
  font-size: 26px;
  height: auto;
  margin: 0;
  margin-right: 48px;
  color: var(--primary-color) !important;
  pointer-events: none;
}

@media (max-width: 992px) {

  .asked-item.list-item .main-asked-name,
  .asked-item.list-item .big-asked-name,
  .asked-item.list-item .asked-name {
    font-size: 20px;
    margin-right: 20px;
  }
}

.asked-item.list-item .state {
  color: var(--opacity-54-dark);
  font-size: 14px;
}

.asked-item.list-item .state svg path {
  fill: #001B50 !important;
  fill-opacity: 0.54 !important;
}

.asked-item.list-item .asked-desc {
  padding: 16px 0 40px;
  display: none;
  background-color: var(--background-side-menu);
}

.asked-item.list-item .asked-paragraph {
  margin: 0 160px 24px;
  font-family: roboto;
  font-size: 18px;
  line-height: 1.44;
  color: var(--secondary-dark);
}

@media (max-width: 992px) {
  .asked-item.list-item .asked-paragraph {
    margin: 0 15px 25px;
  }
}

.asked-item.list-item .read-more {
  margin: 0 160px;
  width: 197px;
  height: 44px;
  border-radius: 8px;
  background-color: var(--hover);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--sec-dark);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.asked-item.list-item .read-more:hover,
.asked-item.list-item .read-more:focus {
  background-color: var(--primary-color);
  color: var(--background-primary);
}

@media (max-width: 992px) {
  .asked-item.list-item .read-more {
    margin: 0 15px;
  }
}

.book-item, .article-item {
  position: relative;
}

.book-item .book-img, .article-item .article-img {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}

.book-item .book-img img, .article-item .article-img img {
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
	border-radius: 8px;
}

.book-item .book-img img {
  height: 400px;
}

.book-item .book-img:hover img, .article-item .article-img:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.book-item .cat, .article-item .cat {
  padding: 0 10px;
  height: 24px;
  font-size: 11px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  background-color: var(--hover);
  color: var(--secondary-dark);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 16px 0 8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.book-item .cat:hover, .article-item .cat:hover {
  background-color: var(--primary-color);
  color: var(--background-primary);
}

.book-item .book-name, .article-item .article-name {
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  color: var(--primary-color);
  display: inline-block;
  height: 80px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.book-item .book-name:hover,
.book-item .book-name:focus,
.article-item .article-name:hover,
.article-item .article-name:focus{
  color: var(--secondary-dark);
}

.book-item .states, .article-item .states {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 14px;
}

.book-item .state, .article-item .state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  color: var(--opacity-54-dark);
  font-weight: 500;
}

html[dir="ltr"] .book-item .state .state-ico {
  margin-right: 4px;
}

html[dir="rtl"] .book-item .state .state-ico {
  margin-left: 4px;
}

html[dir="ltr"] .book-item .state {
  margin-right: 25px;
}

html[dir="rtl"] .book-item .state {
  margin-left: 25px;
}

html[dir="ltr"] .article-item .state .state-ico {
  margin-right: 4px;
}

html[dir="rtl"] .article-item .state .state-ico {
  margin-left: 4px;
}

html[dir="ltr"] .article-item .state {
  margin-right: 25px;
}

html[dir="rtl"] .article-item .state {
  margin-left: 25px;
}

.chat-cont {
  position: fixed;
  bottom: 50px;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

html[dir="ltr"] .chat-cont {
  right: 15px;
}

html[dir="rtl"] .chat-cont {
  left: 15px;
}

.chat-ico {
  cursor: pointer;
}

.chat-ico circle,
.chat-ico .smile {
  fill: var(--secondary-light);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.chat-ico:hover circle,
.chat-ico:hover .smile {
  fill: var(--secondary-dark);
}

.chat-window {
  width: 400px;
  background-color: var(--background-primary);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4px;
  position: absolute;
  right: 0;
  bottom: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .chat-window {
    width: calc(100% - 15px);
  }
}

.chat-window.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.chat-window .window-info {
  position: relative;
  color: var(--background-primary);
}

.chat-window .window-info .info-cont {
  position: absolute;
  top: 24px;
  bottom: 45px;
  left: 16px;
  right: 16px;
}

.chat-window .window-info .small-logo {
  width: 44px;
}

.chat-window .window-info .hi {
  font-size: 20px;
  font-weight: normal;
}

.chat-window .window-info .hi-p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .chat-window .window-info .hi-p br {
    display: none;
  }
}

.chat-window .box {
  margin: auto;
  width: calc(100% - 30px);
  padding: 15px 0;
  border-radius: 10px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.chat-window .chat-win-btn {
  width: 50%;
  margin: 0 10px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f3f3f7;
  color: var(--opacity-54-dark);
  font-size: 14px;
  font-weight: bold;
  border-radius: 30px;
}

.colored-div {
  background-color: var(--secondary-dark);
  padding-top: 72px;
}

@media (max-width: 992px) {
  .colored-div {
    padding-top: 40px;
  }
}

.video-cont {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
  color: var(--background-primary);
}

@media (max-width: 992px) {
  .video-cont {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.video-cont .sec-title {
  font-family: roboto;
  font-weight: bold;
  font-size: 41px;
  margin-bottom: 40px;
  color: var(--background-primary);
	display: flex;
  align-items: center;
	justify-content: space-between;
}

.video-cont .all-vids {
    display: inline;
    font-size: 12px;
    color: #fcd34a;
}

@media (max-width: 992px) {
  .video-cont .sec-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.video-cont .video-title {
  font-size: 32px;
  line-height: 1.38;
  font-family: roboto;
  font-weight: bold;
}

@media (max-width: 992px) {
  .video-cont .video-title {
    font-size: 18px;
  }
}

.video-cont .source {
  font-size: 16px;
  line-height: 2.51;
  color: rgba(253, 255, 252, 0.54);
}

@media (max-width: 992px) {
  .video-cont .source {
    font-size: 14px;
  }
}

.video-cont .states {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 14px;
}

@media (max-width: 992px) {
  .video-cont .states {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.video-cont .state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  color: var(--background-primary);
  font-weight: 500;
}

html[dir="ltr"] .video-cont .state .state-ico {
  margin-right: 4px;
}

html[dir="rtl"] .video-cont .state .state-ico {
  margin-left: 4px;
}

html[dir="ltr"] .video-cont .state {
  margin-right: 25px;
}

html[dir="rtl"] .video-cont .state {
  margin-left: 25px;
}

.bigslider {
  position: relative;
}
@media (max-width:1199px) {
    .bigslider {
        padding-bottom: 50px;
    }
}

.bigslider .swiper-btns .swiper-btn.swiper-button-next {
    transform: unset;
}

.bigslider .swiper-btns .swiper-btn.swiper-button-prev {
    transform: rotate(180deg);
}

.video-img .video-link {
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  padding-bottom: 56.0770156438%;
  width: 100%;
  position: relative;
}

.video-img .video-link > img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.video-img .video-link:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.video-img .play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.swiper-btns {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  right: -37px;
  height: 150px;
}

@media (max-width: 1199px) {
  .swiper-btns {
    position: absolute;
    top: auto;
    bottom: 13px;
    right: 50%;
    transform: translateX(50%);
    height: auto;
    width: 50px;
    flex-direction: row-reverse;
    gap: 50px;
    justify-content: center;
  }
  .swiper-btns svg {
    transform: rotate(90deg)
  }
}

.swiper-btns .swiper-btn {
  background: none;
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  -webkit-transform: none;
  transform: none;
  outline: none !important;
  width: auto;
  height: auto;
  top: auto;
  margin: 0;
}

.swiper-btns .swiper-btn::after {
  display: none;
}

.swiper-btns .swiper-btn.swiper-button-next {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sliders {
  position: relative;
}

.smallslider {
  width: 165px;
  height: auto;
  position: absolute;
  bottom: 0;
  z-index: 99;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.up-next {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
}

.smallslider img {
  width: 165px;
  height: 104px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .smallslider {
    display: none;
  }
}

.swiper-pagination-fraction {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--background-primary);
  right: -30px;
  left: auto;
  width: auto;
}

@media (max-width: 1199px) {
  .swiper-pagination-fraction {
    flex-direction: row;
    top: auto;
    bottom: 13px;
    right: 50%;
    transform: translateX(50%);
  }
}

/*//////////////////////////////preloader//////////////////////////////*/
.pre-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pre-loader img {
  width: 180px;
}

@media (max-width: 767px) {
  .pre-loader img {
    width: 130px;
  }
}

.pre-loader .progress-bar {
  background-color: var(--primary-color);
  border: none;
  overflow: hidden;
  width: 170px;
  height: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 20px 0 0 0;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

@media (max-width: 767px) {
  .pre-loader .progress-bar {
    width: 100px;
  }
}

.pre-loader .progress-bar span {
  display: block;
}

.pre-loader .bar {
  background-color: #ccc;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pre-loader .progress {
  -webkit-animation: loader 8s ease infinite;
  animation: loader 8s ease infinite;
  background: var(--primary-color);
  border: none;
  padding: 0px;
  width: 0;
  height: 2px;
}

.pre-loader .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@-webkit-keyframes loader {
  0% {
    width: 0;
  }

  20% {
    width: 10%;
  }

  25% {
    width: 24%;
  }

  43% {
    width: 41%;
  }

  56% {
    width: 50%;
  }

  66% {
    width: 52%;
  }

  71% {
    width: 60%;
  }

  75% {
    width: 76%;
  }

  94% {
    width: 86%;
  }

  100% {
    width: 100%;
  }
}

@keyframes loader {
  0% {
    width: 0;
  }

  20% {
    width: 10%;
  }

  25% {
    width: 24%;
  }

  43% {
    width: 41%;
  }

  56% {
    width: 50%;
  }

  66% {
    width: 52%;
  }

  71% {
    width: 60%;
  }

  75% {
    width: 76%;
  }

  94% {
    width: 86%;
  }

  100% {
    width: 100%;
  }
}

/*//////////////////////////////preloader//////////////////////////////*/
header {
  background-color: #fff;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 21px 0 21.7px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .header {
    padding: 10px 0;
  }
}

.logo-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-icon {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  fill: var(--primary-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

html[dir="ltr"] .menu-icon {
  margin-right: 32px;
}

html[dir="rtl"] .menu-icon {
  margin-left: 32px;
}

.menu-icon:hover {
  fill: var(--secondary-dark);
}

.logo {
  display: block;
  width: 88px;
}

.links-cont {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}
.links-cont a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.links-cont a:hover,
.links-cont a:focus {
    color: var(--secondary-dark);
}
@media (max-width: 767px) {
    .links-cont li.menu-item {
      display: none;
    }
  }
.search-icon {
  fill: var(--primary-color);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

html[dir="ltr"] .search-icon {
  margin-right: 43px;
}

@media (max-width: 767px) {
  html[dir="ltr"] .search-icon {
    margin-right: 0;
  }
}

html[dir="rtl"] .search-icon {
  margin-left: 43px;
}

@media (max-width: 767px) {
  html[dir="rtl"] .search-icon {
    margin-left: 0;
  }
}

.search-icon:hover,
.search-icon:focus {
  fill: var(--secondary-dark);
}

.header-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

html[dir="ltr"] .header-link {
  margin-left: 29px;
}

html[dir="rtl"] .header-link {
  margin-right: 29px;
}

.header-link:hover,
.header-link:focus {
  color: var(--secondary-dark);
}

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

.page-head {
  background-image: url(../images/main.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  .page-head {
    background-position: right;
    background-attachment: unset;
  }
}

.page-head.cat-header {
  padding-top: 40px;
}

@media (max-width: 767px) {
  .page-head.cat-header {
    padding-top: 25px;
  }
}

.page-head .page-title:last-child {
  padding-bottom: 60px;
}

.page-head.cat-header .page-title {
  line-height: 59px;
  font-size: 52px;
  color: var(--background-primary);
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .page-head.cat-header .page-title {
    font-size: 22px;
    margin: 0px 0 -20px;
    line-height: unset;
    text-align: center;
  }
}

.page-head.arc-header {
  background-image: linear-gradient(to Left, var(--primary-color), var(--secondary-dark), var(--primary-color), var(--primary-color), var(--primary-color));
  background-image: url(../images/arc-bg.png);
}

.page-head.arc-header .page-title {
  line-height: 59px;
  font-size: 52px;
  color: var(--background-primary);
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .page-head.arc-header .page-title {
    font-size: 22px;
    margin: 15px 0 10px;
    line-height: unset;
    text-align: center;
  }
}

.page-head.arc-header .page-main-img {
  position: relative;
  width: 100%;
  max-width: 100%;
  /* min-width: auto !important; */
  margin: auto;
}
.page-head.arc-header .page-main-img img{
  width: 100%;
}
.page-head.arc-header .page-main-img::after {
  background: -webkit-gradient(linear, left bottom, left top, from(#001b50), to(rgba(0, 27, 80, 0)));
  background: linear-gradient(0deg, #001b50 0%, rgba(0, 27, 80, 0) 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 767px) {
  .page-head.arc-header .page-main-img {
    display: none;
  }
}

.page-head.arc-header .img-info {
  position: absolute;
  bottom: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
}

html[dir="ltr"] .page-head.arc-header .img-info {
  left: 24px;
}

html[dir="rtl"] .page-head.arc-header .img-info {
  right: 24px;
}

.page-head.arc-header .page-main-auth {
  color: rgba(253, 255, 252, 0.54);
  font-weight: bold;
  font-size: 18px;
}

.page-head.arc-header .states {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 16px;
}

.page-head.arc-header .states .state {
  font-size: 14px;
  color: var(--background-primary);
  font-weight: 500;
}

html[dir="ltr"] .page-head.arc-header .states .state {
  margin-right: 24px;
}

html[dir="rtl"] .page-head.arc-header .states .state {
  margin-left: 24px;
}

html[dir="ltr"] .page-head.arc-header .states .state .state-ico {
  margin-right: 8px;
}

html[dir="rtl"] .page-head.arc-header .states .state .state-ico {
  margin-left: 8px;
}

.page-head.arc-header .mo-breadcrumb {
  padding-top: 24px;
}

.page-head.book-header {
  padding: 8px 0;
}

@media (max-width: 767px) {
  .page-head.book-header {
    display: none;
  }
}

.page-head.faq-header .mo-breadcrumb {
  padding-top: 24px;
}

.page-head.faq-header .page-title {
  line-height: 59px;
  font-size: 52px;
  color: var(--background-primary);
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .page-head.faq-header .page-title {
    font-size: 22px;
    padding: 10px 0 0;
    margin: 0px 0 10px;
    line-height: unset;
    text-align: center;
  }
}

.mo-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mo-breadcrumb .bread-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mo-breadcrumb .bread-li ~ .bread-li::before {
  content: ">";
  color: rgba(253, 255, 252, 0.54);
  margin: 0 5px;
  font-size: 11px;
  font-family: roboto;
  font-weight: normal;
}

.mo-breadcrumb .bread-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(253, 255, 252, 0.54);
  font-size: 11px;
  font-family: roboto;
  font-weight: normal;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mo-breadcrumb .bread-a svg {
  fill: rgba(253, 255, 252, 0.54);
  margin-right: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mo-breadcrumb .bread-a:hover {
  color: #fdfffc;
}

.mo-breadcrumb .bread-a:hover svg {
  fill: #fdfffc;
}

.mo-breadcrumb .bread-a.active {
  pointer-events: none;
  color: #fdfffc;
}

.white-box {
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 6px 0 #e1e3e6;
  box-shadow: 0 4px 6px 0 #e1e3e6;
  background-color: #ffffff;
  padding: 24px 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

@media (max-width: 992px) {
  .white-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 15px;
  }
}

.filters-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 992px) {
  .filters-cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
  }
}

.filters-cont .filter-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--secondary-dark);
}

@media (max-width: 992px) {
  .filters-cont .filter-title {
    margin-bottom: 8px;
  }
}

.filters-cont .filters {
  margin: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.filters-cont .filter {
  padding: 0 16px;
  height: 39px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--opacity-54-dark);
  font-size: 14px;
  font-weight: bold;
  background-color: #f2f3f7;
  margin: 0 8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.filters-cont .filter.active,
.filters-cont .filter:hover {
  background-color: var(--secondary-light);
  color: #fff;
}

.views-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.views-cont .view-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--secondary-dark);
  margin: 0 8px;
}

.views-cont .views {
  margin: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.views-cont .view {
  margin: 0 8px;
  cursor: pointer;
}

.views-cont .view svg {
  fill: #001b50;
  fill-opacity: 0.54;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.views-cont .view:hover svg {
  fill-opacity: 1;
}

.views-cont .view.active svg {
  fill-opacity: 1;
}

.topics {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 3fr 13fr;
  grid-template-columns: 3fr 13fr;
  padding-bottom: 40px;
}

@media (max-width: 992px) {
  .topics {
    padding: 15px 00;
  }
}

@media (max-width: 767px) {
  .topics {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.topics .topics-item {
  width: 100%;
  overflow: hidden;
}

.topics-title {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  color: var(--background-primary);
}

.topics-slider {
  position: relative;
  padding: 0 30px;
}

@media (max-width: 992px) {
  .topics-slider {
    padding: 15px 00;
  }
}

.topics-slider .swiper-btn {
  background: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: .3s ease;
}
.topics-slider .swiper-btn.swiper-button-disabled {
    opacity: 0;
}
.topics-slider .swiper-button-prev {
    left: -5px;
}
.topics-slider .swiper-button-next {
    right: -5px;
}
.topics-slider .swiper-button-prev svg {
    transform: rotate(180deg);
}

.topics-slider .swiper-btn::after {
  display: none;
}

@media (max-width: 767px) {
  .topics-slider .swiper-btn {
    display: none;
  }
}

.topics-slider .topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f2f3f7;
  height: 37px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  color: var(--opacity-54-dark);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.topics-slider .topic.active,
.topics-slider .topic:hover,
.topics-slider .topic:focus {
  color: #fff;
  background-color: var(--primary-color);
}

.asked-sec {
  margin-top: 35px;
}

@media (max-width: 992px) {
  .asked-sec {
    margin-top: 40px;
  }
}

.sec-head {
  margin-bottom: 24px;
}

.sec-title {
  font-family: roboto;
  font-size: 46px;
  font-weight: bold;
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .sec-title {
    font-size: 25px;
    text-align: center;
  }
}

.home-asked-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 24px;
}

.home-asked-grid a {
  display: block;
}

.home-asked-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
	border-radius: 10px;
}

.short-asked img {
  aspect-ratio: .95;
}

.home-asked-grid .home-asked-grid-item {
  overflow: hidden;
}

@media (max-width: 992px) {
  .home-asked-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.banner-sec {
  margin-top: 45px;
  /* background-color: var(--hover); */
  background-image: url(../images/bgYellow.png);

  text-align: center;
  padding: 45px 15px;
  position: relative;
  transform: perspective(1px);
}
/* .banner-sec:after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: url(../images/pat.png);
  background-size: cover;
  z-index: -1;
  opacity: 0.75;
} */
@media (max-width: 992px) {
  .banner-sec {
    padding: 25px 15px;
  }
}

.banner-sec .main-btns {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner-sec .main-btn.faq-btn {
  background-color: var(--background-primary);
  color: var(--secondary-dark);
  border-color: var(--background-primary);
}

.banner-sec .main-btn.chat-btn {
  color: var(--background-primary);
  background-color: var(--secondary-light);
  border-color: var(--secondary-light);
}

.banner-sec .main-btn:hover,
.banner-sec .main-btn:focus {
  color: var(--background-primary);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.banner-head {
  font-size: 52px;
  font-weight: bold;
  color: var(--primary-color);
  width: 35ch;
  margin: 0 auto 25px;
}

@media (max-width: 1199px) {
  .banner-head {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .banner-head {
    font-size: 20px;
    margin-bottom: 20px;
    width: 100%;
  }
}

.recent-books-sec {
  margin-top: 70px;
}

@media (max-width: 992px) {
  .recent-books-sec {
    margin-top: 40px;
  }
}

.recent-books-sec .color-bg {
  background-color: var(--background-secondary);
  padding-top: 40px;
  padding-bottom: 32px;
}

.recent-books-sec .browse-btn {
  width: 197px;
  height: 44px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--secondary-dark);
  background-color: var(--background-primary);
  margin: 40px auto 0;
}

.recent-books-sec .browse-btn:hover {
  background-color: var(--hover);
}

.books-slider-cont {
    position: relative;
}
.books-slider-cont .swiper-btn:after {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 900;
}

.books-slider-cont .swiper-button-next {
    right: -15px;
}

.books-slider-cont .swiper-button-prev {
    left: -15px;
}

@media (max-width:991px) {
    .books-slider-cont .swiper-btn {
        display: none;
    }
}

.books-slider-cont .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}
.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

main.cat-page {
  margin-top: 100px;
}

main.cat-page .home-asked-grid {
  margin-top: 46px;
}

@media (max-width: 767px) {
  main.cat-page .home-asked-grid {
    margin-top: 24px;
  }
}

.arcs-grid {
  margin: 70px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1199px) {
  .arcs-grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .arcs-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .arcs-grid {
    margin: 40px 0 70px;
    gap: 24px;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}

.arcs-grid .arc-item {
  overflow: hidden;
}

main.cat-page .grid-des .arcs-grid {
  margin-top: 0;
  display: block;
}

main.cat-page .grid-des .home-asked-grid {
  margin-top: 0;
  display: block;
}

.arc-header {
  position: relative;
}
.arc-header.scrolled{
  position: fixed;
  top: 52px;
}
.progress-container {
  width: 100%;
  height: 11.008px;
  transform: translateY(11px);
  padding: 0px 0px;
}

@media (max-width: 767px) {
  .arc-header{
    top: 52px;
  }
  .arc-header.scrolled{
    top: 45px;
  }
}

.progress-bar {
  height: 11px;
  background: #f7d042;
  width: 0%;
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}
.progress-bar:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100vw; */
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .progress-bar {
    height: 5px;
  }
}

.arc-content {
  width: 850px;
  max-width: 100%;
  margin: 30px auto 0;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .arc-content {
    text-align: justify;
    margin: 85px auto 0;
  }
}

.summary {
  background-color: var(--background-secondary);
  padding: 16px 48px 22px;
  margin-bottom: 8px;
  border-end-end-radius: 10px;
  border-start-end-radius: 10px;
}

@media (max-width: 767px) {
  .summary {
    padding: 16px 20px;
  }
}

.summary-title {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}

@media (max-width: 767px) {
  .summary-title {
    text-align: center;
  }
}

.summary-title::before {
  content: url(../images/idea.svg);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(100% + 8px);
}

@media (max-width: 767px) {
  .summary-title::before {
    display: none;
  }
}

.summary-p {
  font-family: "roboto";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.69;
  color: var(--secondary-dark);
  margin-top: 11px;
}

.arc-page {
    padding-bottom: 40px;
}
.arc-p {
  font-size: 18px;
  font-family: "roboto";
  line-height: 1.44;
  color: var(--secondary-dark);
  margin-bottom: 32px;
  padding-top: 16px;
}

.arc-p a {
  color: var(--secondary-light);
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.arc-p a:hover,
.arc-p a:focus {
  color: var(--primary-color);
  text-decoration: none;
}

.arc-med-head {
  font-family: "roboto";
  font-size: 32px;
  font-weight: 700;
  line-height: 1.38;
  color: var(--secondary-dark);
}

@media (max-width: 767px) {
  .arc-med-head {
    font-size: 20px;
  }
}

.arc-med-img {
  position: relative;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 40px;
  border-radius: 5px;
  overflow: hidden;
}

.arc-med-img img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.arc-med-img .type-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  font-family: "roboto";
  font-size: 32px;
  font-weight: bold;
  padding: 17px 7px 15px 20px;
  color: #566bad;
  background-color: var(--background-secondary);
  border-radius: 5px;
}

@media (max-width: 767px) {
  .arc-med-img .type-hint {
    white-space: nowrap;
    font-size: 20px;
  }
}

.arc-med-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.quote {
  padding: 34px 40px;
  background-color: var(--background-secondary);
  font-family: "roboto";
  font-size: 26px;
  font-weight: 300;
  line-height: 1.24;
  color: rgba(0, 0, 0, 0.54);
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .quote {
    padding: 16px 20px;
    margin-bottom: 25px;
  }
}

.conclusion-li {
  margin: 0;
}

.conclusion-li::before {
  content: "";
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 0 8px 0 0;
  background-color: var(--secondary-dark);
  display: inline-block;
}

.recent-article-sec {
  margin-top: 70px;
  padding-bottom: 35px;
}

.book-info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 3fr;
  grid-template-columns: 2fr 3fr;
  gap: 8px;
  margin-top: 70px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .book-info-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

.book-info-grid .book-info-item {
  width: 100%;
  overflow: hidden;
}

.book-images .book-gallery-top {
  background-color: var(--background-secondary);
  padding: 24px 0;
}

@media (max-width: 767px) {
  .book-images .book-gallery-top {
    padding: 15px 0;
  }
}

.book-images .book-gallery-top .img-cont {
  width: 191.9px;
  margin: auto;
}

.book-images .book-gallery-top .img-cont .book-img-link {
  display: block;
  padding-bottom: 148.4375%;
  position: relative;
  overflow: hidden;
}

.book-images .book-gallery-top .img-cont .book-img-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.book-images .book-gallery-thumbs {
  margin-top: 8px;
  background-color: var(--background-secondary);
  padding: 8px 16px;
}

.book-images .thumb-img {
  display: block;
  padding-bottom: 148.4375%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.book-images .thumb-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.big-book {
  background-color: var(--background-secondary);
  padding: 40px 34px 30px;
  height: 100%;
}

@media (max-width: 767px) {
  .big-book {
    padding: 20px 15px;
  }
}

.big-book .cat {
  padding: 0 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--hover);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.big-book .cat:hover,
.big-book .cat:focus {
  background-color: var(--primary-color);
  color: #fff;
}

.big-book .book-name {
  font-family: roboto;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.73;
  color: var(--primary-color);
  margin: 8px 0 4px;
}

@media (max-width: 767px) {
  .big-book .book-name {
    font-size: 20px;
  }
}

.big-book .book-auth {
  font-family: roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.79;
  color: var(--opacity-54-dark);
}

.big-book .states {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.big-book .state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: roboto;
  font-size: 14px;
  font-weight: 500;
  color: var(--opacity-54-dark);
  margin-top: 24px;
}

html[dir="rtl"] .big-book .state ~ .state {
  margin-right: 15px;
}

html[dir="ltr"] .big-book .state ~ .state {
  margin-left: 15px;
}

.big-book .desc-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--primary-color);
  margin-bottom: 16px;
  margin-top: 24px;
}

.big-book .desc-desc {
  font-size: 18px;
  line-height: 1.33;
  color: var(--secondary-dark);
}

.big-book .download-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 7px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
  margin-top: 24px;
}

.big-book .select-cont {
  height: 40px;
  position: relative;
}

.big-book .select-cont select {
  cursor: pointer;
  height: 100%;
  width: 160px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: bold;
  color: var(--secondary-dark);
  -webkit-appearance: none;
  -moz-appearance: none;
}

.big-book .select-cont::after {
  content: url(../images/arrow3.svg);
  position: absolute;
  top: 60%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

html[dir="ltr"] .big-book .select-cont::after {
  right: 14px;
}

html[dir="rtl"] .big-book .select-cont::after {
  left: 14px;
}

.big-book .download-btn {
  width: 162px;
  height: 40px;
  background-color: var(--hover);
  font-size: 14px;
  font-weight: bold;
  color: var(--secondary-dark);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-book .download-btn:hover,
.big-book .download-btn:focus {
  background-color: var(--primary-color);
  color: #fff;
}

.auth-desc {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .auth-desc {
    margin-top: 25px;
  }
}

.auth-desc .auth-title {
  font-family: roboto;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.38;
  color: var(--secondary-dark);
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .auth-desc .auth-title {
    font-size: 20px;
  }
}

.auth-desc .auth-desc {
  font-family: roboto;
  font-size: 18px;
  line-height: 1.44;
  color: var(--secondary-dark);
}

.faqs {
  margin: 60px 0 30px;
}

@media (max-width: 992px) {
  .faqs {
    margin: 20px 0;
  }
}

.faq-item {
  margin-bottom: 8px;
}

.faq-head {
  background-color: var(--background-secondary);
  cursor: pointer;
}

.faq-head.open .faq-a:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.faq-head .faq-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 0;
}

@media (max-width: 992px) {
  .faq-head .faq-a {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.faq-head .faq-a .first-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.faq-head .faq-a .cat {
  width: 162px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100px;
  background-color: var(--hover);
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-dark);
}

@media (max-width: 992px) {
  .faq-head .faq-a .cat {
    display: none;
  }
}

.faq-head .faq-a .faq-name {
  font-family: roboto;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.73;
  color: var(--primary-color);
  margin: 0 24px;
}

@media (max-width: 992px) {
  .faq-head .faq-a .faq-name {
    margin: 0;
    font-size: 20px;
  }
}

.faq-head .faq-a .states {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-shrink: 0;
}

html[dir="ltr"] .faq-head .faq-a .states {
  margin-left: auto;
}

html[dir="rtl"] .faq-head .faq-a .states {
  margin-right: auto;
}

@media (max-width: 992px) {
  .faq-head .faq-a .states {
    display: none;
  }
}

.faq-head .faq-a .state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: var(--opacity-54-dark);
  font-weight: 500;
}

.faq-head .faq-a .clapicon {
  background-color: rgba(0, 27, 80, .5);
  border-radius: 50%;
}

html[dir="ltr"] .faq-head .faq-a .state .state-ico {
  margin-right: 4px;
}

html[dir="rtl"] .faq-head .faq-a .state .state-ico {
  margin-left: 4px;
}

html[dir="ltr"] .faq-head .faq-a .state ~ .state {
  margin-left: 25px;
}

html[dir="rtl"] .faq-head .faq-a .state ~ .state {
  margin-right: 25px;
}

.faq-head .faq-a::after {
  content: url(../images/arrow2.svg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: 1;
  padding-top: 2px;
}

html[dir="ltr"] .faq-head .faq-a::after {
  margin-left: 40px;
}

html[dir="rtl"] .faq-head .faq-a::after {
  margin-right: 40px;
}

.faq-body {
  display: none;
  background-color: var(--background-side-menu);
}

.faq-content {
  padding: 20px 185px 40px;
}

.faq-content p {
  font-family: roboto;
  font-size: 18px;
  line-height: 1.44;
  color: var(--secondary-dark);
}

.post-clap {
  background-color: var(--background-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  gap: 20px;
  border-radius: 5px;
}

.post-clap-btn {
  background-color: var(--secondary-dark);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  cursor: pointer;
}

.post-clap-btn svg {
  transform: scale(3);
}

.post-clap p {
  margin: 0;
}

@media (max-width: 992px) {
  .faq-content {
    padding: 15px 25px 25px;
  }
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 32px;
  position: relative;
}

@media (max-width: 992px) {
  .search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 25px;
    margin: 0 0 25px;
  }
}

.search-form .input-cont {
  width: 100%;
  position: relative;
}

.search-form .search-input {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  font-family: roboto;
  font-size: 14px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: var(--background-primary);
  color: var(--secondary-dark);
}

@media (max-width: 992px) {
  .search-form .search-input {
    border-radius: 8px;
  }
}
.search-form.open .search-input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.search-form .search-input::-webkit-input-placeholder {
  color: var(--opacity-54-dark);
}

.search-form .search-input:-ms-input-placeholder {
  color: var(--opacity-54-dark);
}

.search-form .search-input::-ms-input-placeholder {
  color: var(--opacity-54-dark);
}

.search-form .search-input::placeholder {
  color: var(--opacity-54-dark);
}

html[dir="ltr"] .search-form .search-input {
  padding-left: 64px;
}

@media (max-width: 992px) {
  html[dir="ltr"] .search-form .search-input {
    padding-left: 40px;
  }
}

html[dir="rtl"] .search-form .search-input {
  padding-right: 64px;
}

@media (max-width: 992px) {
  html[dir="rtl"] .search-form .search-input {
    padding-right: 40px;
  }
}

.search-form .search-btn {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  fill: var(--primary-color);
}

html[dir="ltr"] .search-form .search-btn {
  left: 30px;
}

@media (max-width: 992px) {
  html[dir="ltr"] .search-form .search-btn {
    left: 10px;
  }
}

html[dir="rtl"] .search-form .search-btn {
  right: 30px;
}

@media (max-width: 992px) {
  html[dir="rtl"] .search-form .search-btn {
    right: 10px;
  }
}

.search-form .search-btn:hover,
.search-form .search-btn:focus {
  fill: var(--secondary-dark);
}

.search-form .radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 48px;
  background-color: var(--background-secondary);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 24px;
  gap: 16px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

@media (max-width: 992px) {
  .search-form .radios {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    gap: 10px;
    border-radius: 8px;
  }
}

.search-form .mo-radio {
  position: relative;
}

.search-form .mo-radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.search-form .mo-radio input:checked ~ .radio-text {
  background-color: var(--secondary-light);
  color: #fff;
}

.search-form .radio-text {
  padding: 0 40px;
  height: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f2f3f7;
  font-size: 14px;
  border-radius: 20px;
  font-weight: bold;
  color: var(--opacity-54-dark);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .search-form .radio-text {
    padding: 0 15px;
  }
}

.ui-menu.ui-widget.ui-widget-content {
  -webkit-box-shadow: 0 1px 6px 0 rgba(224, 225, 227, 0.78);
  box-shadow: 0 1px 6px 0 rgba(224, 225, 227, 0.78);
  background-color: var(--background-primary);
  border: NONE;
}

.ui-menu.ui-widget.ui-widget-content .ui-menu-item {
  border-bottom: 1px solid var(--opacity-54-dark);
  list-style-image: none;
}

.ui-menu.ui-widget.ui-widget-content .ui-menu-item .ui-menu-item-wrapper {
  background: none;
  border: none;
  padding: 12px 24px;
  font-family: roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.79;
  color: #23417d;
  margin: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ui-menu.ui-widget.ui-widget-content .ui-menu-item .ui-menu-item-wrapper:hover,
.ui-menu.ui-widget.ui-widget-content .ui-menu-item .ui-menu-item-wrapper:focus {
  color: var(--primary-color);
}

.search-page {
  padding-top: 70px;
}

.noti-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 98;
  display: none;
}

.noti-alert {
  position: fixed;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  background-color: #fff;
  padding: 24px 13px 7.5px;
  z-index: 99;
  width: 328px;
  max-width: 98%;
  display: none;
}

.noti-alert .noti-logo {
  width: 51px;
}

.noti-alert .noti-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.13;
  color: var(--secondary-dark);
  padding: 16px 0;
}

.noti-alert .noti-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.noti-alert .noti-btn {
  width: 100%;
  height: 34.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: roboto;
  font-size: 12px;
  font-weight: bold;
  line-height: 2.29;
  border-radius: 4px;
  color: var(--opacity-54-dark);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.noti-alert .noti-btn:hover {
  background-color: var(--hover);
  color: var(--secondary-dark);
}

.noti-alert .allow-btn {
  -webkit-box-shadow: 0 3.4px 3.4px 0 #fdfdfd;
  box-shadow: 0 3.4px 3.4px 0 #fdfdfd;
  background-color: var(--secondary-light);
  color: #fff;
}

.article-content h2 {
  font-family: "roboto";
  font-size: 32px;
  font-weight: 700;
  line-height: 1.38;
  color: var(--secondary-dark);
}

@media (max-width: 767px) {
  .article-content h2 {
    font-size: 20px;
  }
}

.article-content h3 {
  font-family: "roboto";
  font-size: 28px;
  font-weight: 700;
  line-height: 1.38;
  color: var(--secondary-dark);
}

@media (max-width: 767px) {
  .article-content h3 {
    font-size: 18px;
  }
}

/* Single article */
.article-content p {
  font-size: 18px;
  font-family: "roboto";
  line-height: 1.44;
  color: var(--secondary-dark);
  margin-bottom: 32px;
  padding-top: 16px;
}

.article-content a {
  color: var(--secondary-light);
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.article-content a:hover,
.article-content a:focus {
  color: var(--primary-color);
  text-decoration: none;
}

.article-content blockquote {
  padding: 34px 40px;
  background-color: var(--background-secondary);
  font-family: "roboto";
  font-size: 26px;
  font-weight: 300;
  line-height: 1.24;
  color: rgba(0, 0, 0, 0.54);
  margin-bottom: 40px;
  border-end-end-radius: 5px;
  border-start-end-radius: 5px;
}
.article-content blockquote p{
  margin-bottom: 20px;
}
.article-content blockquote cite{
  font-size: 16px;
}
@media (max-width: 767px) {
  .article-content blockquote {
    padding: 16px 20px;
    margin-bottom: 25px;
  }
}

.article-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-content ul li {
  font-size: 18px;
  font-family: "roboto";
  line-height: 1.44;
  color: var(--secondary-dark);
  margin: 0;
  padding-top: 16px;
}

.article-content ul li::before {
  content: "";
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 0 8px 0 0;
  background-color: var(--secondary-dark);
  display: inline-block;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

header.fixed {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

header.fixed .header {
  padding: 10px 0;
}

body {
  padding: 75px 0 0;
}

@media (max-width: 767px) {
  header.fixed .header {
    padding: 8px 0;
  }

  body {
    padding: 52px 0 0;
  }
}
.more-sub .sub-trigger{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.more-sub .sub-trigger::after {
  content: url(../images/arrow.svg);
  filter: invert(6%) sepia(89%) saturate(4887%) hue-rotate(204deg) brightness(102%) contrast(115%);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}

html[dir="ltr"] .more-sub .sub-trigger::after {
  transform: rotate(-90deg);
}

html[dir="rtl"] .more-sub .sub-trigger::after {
  transform: rotate(90deg);
}
html[dir="ltr"] .more-sub .sub-trigger.active::after {
  transform: rotate(-0);
}

html[dir="rtl"] .more-sub .sub-trigger.active::after {
  transform: rotate(0);
}
.more-sub-ul {
  padding: 8px;
  margin-top: 8px;
  display: none;
}

html[dir="ltr"] .more-sub-ul {
  margin-left: 24px;
  border-left: 2px solid var(--background-secondary);
}

html[dir="rtl"] .more-sub-ul {
  margin-right: 24px;
  border-right: 2px solid var(--background-secondary);
}

/* Search autocomplete */
.search-form.open .input-cont {
  z-index: 9999;
}
.search_suggests {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden
}

.search_suggests ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  /* box-shadow: 0 0 10px rgba(0,0,0,.15); */
  box-shadow: 0 1px 6px 0 rgba(224, 225, 227, 0.78);
  border-top: 1px solid #23417d;
}

.search_suggests ul a {
  display: block;
  color: #23417d;
  line-height: 40px;
  border-bottom: 1px solid #23417d;
  padding: 0 30px;
  font-weight: 500;
  max-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}

@media (max-width: 991px) {
  .search_suggests ul a {
    font-size: 14px;
  }
}

.search_suggests ul a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.search_suggests ul .search_empty {
  padding: 15px 0;
  text-align: center;
  font-weight: 500;
  color: var(--secondary-dark);
}

.search_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  /* background-color: rgba(0,0,0,.3); */
  visibility: hidden;
  opacity: 0
}

.search_overlay.open {
  visibility: visible;
  opacity: 1
}


 /* css/search-autocomplete.css by asfour */

.search-form {
    position: relative;
    z-index: 1000;
}

.input-cont {
    position: relative;
}

.search_suggests {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.search_suggests.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.search_overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Suggestion Items */
.search-suggestion {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.search-suggestion:last-child {
    border-bottom: none;
}

.search-suggestion:hover,
.search-suggestion.active {
    background-color: #f8f9fa;
}

.suggestion-link {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: inherit;
}

.suggestion-link:hover {
    text-decoration: none;
    color: inherit;
}

.suggestion-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #0f82d7;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Loading and Error States */
.loading,
.error,
.no-results {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.loading {
    position: relative;
}

.loading::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #e0e0e0;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.error {
    color: #dc3545;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .search_suggests {
        max-height: 300px;
    }
    
    .suggestion-link {
        padding: 10px 12px;
    }
    
    .suggestion-title {
        font-size: 13px;
    }
}

/* Custom Scrollbar */
.search_suggests::-webkit-scrollbar {
    width: 6px;
}

.search_suggests::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search_suggests::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.search_suggests::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* ===== Reset ===== */
.links-cont,
.links-cont ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.links-cont li {
  position: relative;
}

/* Main level horizontal */
.links-cont > li {
  display: inline-block;
  vertical-align: middle;
}

.links-cont a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
}

/* ===== Hide all submenus by default ===== */
.links-cont .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  padding: 8px 0;
  z-index: 9999;
  transition: opacity .18s ease, transform .18s ease;
}

/* ===== Hover / Focus within for ALL LEVELS ===== */
.links-cont li:hover > .sub-menu,
.links-cont li:focus-within > .sub-menu,
.links-cont li.open > .sub-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===== Nested submenus (any depth) → open at right ===== */
.links-cont .sub-menu .sub-menu {
  top: 0;          /* مش تحت */
  left: 100%;      /* افتح على يمين الأب */
  margin-left: 0;
  transform: translateX(6px);
}

.links-cont .sub-menu li:hover > .sub-menu,
.links-cont .sub-menu li:focus-within > .sub-menu,
.links-cont .sub-menu li.open > .sub-menu {
  transform: translateX(0);
}

/* ===== Mobile behavior ===== */
@media (max-width: 991px) {

  .links-cont > li {
    display: block;
  }

  .links-cont .sub-menu {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: #fff;
    box-shadow: none;
    margin-left: 0;
    padding-left: 15px; /* indent for nested levels */
  }

  /* When .open added → show it */
  .links-cont li.open > .sub-menu {
    display: block;
  }
}


.video-cat {
    padding: 0 10px;
    height: 24px;
    font-size: 11px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20px;
    background-color: var(--hover);
    color: var(--secondary-dark);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 16px 0 8px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.video-cat:hover {
    background-color: var(--primary-color);
    color: var(--background-primary);
	text-decoration: none;
}

/* Main Container */
#ez-toc-container {
  max-width: 100% !important;
  margin: 2rem auto !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(0, 86, 165, 0.15) !important;
  border: 1px solid #e5e7eb !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding: 0 !important;
}

#ez-toc-container:hover {
  box-shadow: 0 12px 32px rgba(0, 86, 165, 0.18) !important;
  transform: translateY(-2px) !important;
}

/* Header/Title Section */
.ez-toc-title-container {
  background: linear-gradient(135deg, #0056a5 0%, #003d7a 100%) !important;
  padding: 1.5rem 2rem !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  letter-spacing: -0.01em !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}

.ez-toc-title-container::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 200, 61, 0.1) 100%) !important;
  pointer-events: none !important;
}

#ez-toc-container .ez-toc-title {
	color: #fff;
}

.ez-toc-title-container::after {
  content: '' !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  background: #ffc83d !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(255, 200, 61, 0.3) !important;
  margin-right: 0.75rem !important;
  flex-shrink: 0 !important;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%230056a5" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="M8 11h8"></path><path d="M8 7h6"></path></svg>') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 20px !important;
  order: -1 !important;
}

/* Toggle Label */
.ez-toc-cssicon-toggle-label {
  position: absolute !important;
  right: 2rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
  padding: 0.5rem !important;
  border-radius: 8px !important;
  transition: background 0.2s !important;
  z-index: 10 !important;
}

.ez-toc-cssicon-toggle-label:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.ez-toc-cssicon {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.ez-toc-icon-toggle-span svg {
  fill: #ffc83d !important;
  color: #ffc83d !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ez-toc-cssicon-toggle-label:hover .ez-toc-icon-toggle-span svg {
  transform: scale(1.1) !important;
}

/* Navigation Container */
#ez-toc-container nav {
  position: relative !important;
  padding: 1.5rem 0 !important;
  background: #f8fafc !important;
  width: 100% !important;
  height: auto !important;
  left: unset !important;
  top: unset !important;
}

.ez-toc-title-toggle .ez-toc-toggle {
    padding: 0 !important;
}

.ez-toc-title-toggle {
    margin-left: auto !important;
}

/* List Styles */
.ez-toc-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 2rem !important;
}

.ez-toc-list li::before,
.ez-toc-list li::marker {
  display: none !important;
}

.ez-toc-list-level-1,
.ez-toc-list-level-2,
.ez-toc-list-level-3,
.ez-toc-list-level-4 {
  list-style: none !important;
}

.ez-toc-list-level-3,
.ez-toc-list-level-4 {
  margin-left: 1.5rem !important;
  margin-top: 0.5rem !important;
  padding-left: 1rem !important;
  border-left: 2px solid #ffc83d !important;
}

/* List Items */
.ez-toc-page-1 {
  margin: 0.25rem 0 !important;
}

/* Links - Level 2 */
.ez-toc-heading-level-2 > .ez-toc-link {
  display: flex !important;
  align-items: center !important;
  padding: 0.75rem 1rem !important;
  color: #1a1a1a !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
}

.ez-toc-heading-level-2 > .ez-toc-link::before {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 32px !important;
  height: 32px !important;
  background: linear-gradient(135deg, #0056a5 0%, #0066cc 100%) !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  margin-right: 0.75rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
  flex-shrink: 0 !important;
}

.ez-toc-heading-level-2 > .ez-toc-link:hover {
  background: #ffffff !important;
  color: #0056a5 !important;
  padding-left: 1.25rem !important;
  box-shadow: 0 4px 12px rgba(0, 86, 165, 0.12) !important;
}

.ez-toc-heading-level-2 > .ez-toc-link:hover::before {
  background: #ffc83d !important;
  color: #0056a5 !important;
  transform: scale(1.1) !important;
}

/* Links - Level 3 */
.ez-toc-heading-level-3 > .ez-toc-link {
  display: flex !important;
  align-items: center !important;
  padding: 0.75rem 1rem !important;
  color: #6b7280 !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

.ez-toc-heading-level-3 > .ez-toc-link::before {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 26px !important;
  height: 26px !important;
  background: #e5e7eb !important;
  color: #6b7280 !important;
  border-radius: 6px !important;
  margin-right: 0.75rem !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
  flex-shrink: 0 !important;
}

.ez-toc-heading-level-3 > .ez-toc-link:hover {
  background: #ffffff !important;
  color: #0056a5 !important;
  padding-left: 1.25rem !important;
  box-shadow: 0 4px 12px rgba(0, 86, 165, 0.12) !important;
}

.ez-toc-heading-level-3 > .ez-toc-link:hover::before {
  background: #ffc83d !important;
  color: #0056a5 !important;
  transform: scale(1.1) !important;
}

/* Links - Level 4 */
.ez-toc-heading-level-4 > .ez-toc-link {
  display: flex !important;
  align-items: center !important;
  padding: 0.65rem 0.875rem !important;
  color: #6b7280 !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

.ez-toc-heading-level-4 > .ez-toc-link::before {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 24px !important;
  height: 24px !important;
  background: #e5e7eb !important;
  color: #6b7280 !important;
  border-radius: 5px !important;
  margin-right: 0.65rem !important;
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
  flex-shrink: 0 !important;
}

.ez-toc-heading-level-4 > .ez-toc-link:hover {
  background: #ffffff !important;
  color: #0056a5 !important;
  padding-left: 1.125rem !important;
  box-shadow: 0 4px 12px rgba(0, 86, 165, 0.12) !important;
}

.ez-toc-heading-level-4 > .ez-toc-link:hover::before {
  background: #ffc83d !important;
  color: #0056a5 !important;
  transform: scale(1.1) !important;
}

/* Collapsed State */
#ez-toc-cssicon-toggle-item-69316596e899d:not(:checked) ~ nav {
  display: none !important;
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

#ez-toc-cssicon-toggle-item-69316596e899d:checked ~ nav {
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  #ez-toc-container {
    border-radius: 12px !important;
  }

  .ez-toc-title-container {
    padding: 1.25rem 1.5rem !important;
    font-size: 1rem !important;
  }

  .ez-toc-cssicon-toggle-label {
    right: 1.5rem !important;
  }

  .ez-toc-list {
    padding: 0 1.5rem !important;
  }

  .ez-toc-list-level-3,
  .ez-toc-list-level-4 {
    margin-left: 1rem !important;
    padding-left: 0.75rem !important;
  }
}
