@charset "UTF-8";

:root {
  --primary: rgba(234, 132, 44, 1);
  --primary-hover: rgb(210, 107, 17);
  --navLinkColor: #666666;

  --ft: "Montserrat", sans-serif;

  --modal-duration: 1s;
  --modal-color: #fff;
  --h-color: #fff;
  --p-color: #c0c0c0;
  --orange: rgba(229, 131, 47, 1);
  --danger: rgb(200, 87, 87) !important;
  --success: rgb(40, 135, 95);

  /* Sizes */
  --big: 2rem;
  --mid: 1rem;
  --sm: 0.9rem;
  --line-height: 30px;
  --padding: 1rem;
  --margin: 1rem;
  --dynamic: 100vw;

  /* Dark Theme */
  --main-dark: #303030;
  --extra-dark: #111;
  --lighter-dark: #202020;
  --dark-btn-hover: #2c2c2c;
  --divder-color: #4f4f4f;
}

/* ---------------------------------------------------- */
/* --------------------- Global ----------------------- */
/* ---------------------------------------------------- */

html {
  height: 100%;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  background-color: var(--main-dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

p {
  font-family: var(--ft);
  color: var(--p-color);
}

hr {
  background-color: var(--p-color);
}

.no-content {
  font-size: var(--big);
  font-family: var(--ft);
  color: var(--p-color);
  font-weight: 500;
  margin-top: 2em;
  margin-bottom: 4em;
}

/* Custom container large screens */
.cm-con-lg {
  max-width: calc(100vw - 320px);
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.my-btn {
  border: unset;
  cursor: pointer;
  background-color: var(--primary);
  color: #fff;
  border-radius: 5px;
  padding: 9px 25px !important;
  font-family: var(--ft);
  display: inline-block;
  font-weight: 400;
  transition: all 0.3s ease;
}


.primary-btn {
  background-color: var(--primary);
  color: #fff;
}

.success-btn {
  background-color: var(--success);
  color: #fff;
}

.danger-btn {
  background-color: var(--danger);
  color: #fff;
}

.form-label {
  color: var(--p-color);
  font-size: calc(var(--sm) * 1.05);
}

.help-text {
  color: var(--p-color);
  padding: 8px 10px;
  font-size: calc(var(--sm) * 1.05);
  font-weight: 400;
}

.btn-disabled {
  cursor: not-allowed !important;
  background-color: #6f6f6f !important;
  color: #fff !important;
}

.my-btn:hover,
.my-btn:active,
.my-btn:focus {
  color: #fff;
  filter: brightness(110%);
}

.status-btn {
  width: 145px;
  height: 36px;
  font-family: var(--ft);
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* **************** Alert ************** */

.alert {
  font-family: var(--ft);
  font-size: 1em;
  border: unset;
  border-right: 8px solid;
  padding: 20px 15px 24px;
  letter-spacing: 0.01em;
}

.alert-dismissible .btn-close {
  left: 0;
  right: unset;
  border: unset;
  outline: unset;
  box-shadow: unset;
  top: 6px;
}

.alert-warning {
  border-color: #664d03;
}

select,
button {
  border: unset;
  background: unset;
  outline: unset;
}

.form-control:focus {
  box-shadow: unset;
  border-color: inherit;
}

.bg-ldark {
  background-color: var(--lighter-dark) !important;
}

.absolute-alert {
  background: var(--lighter-dark);
  position: fixed;
  right: 0;
  padding: 19px 12px;
  width: 400px;
  z-index: 999;
  font-family: var(--ft);
  font-size: calc(var(--sm)*1.2);
  margin: 14px;
  border-radius: 2px;
  color: #fff;
  box-shadow: 0 0 3px 3px #ffffff0f;
  border-left: 7px solid #fff;
  transition: opacity .5s ease;
}


.absolute-alert.success {
  border-color: #289834;
}

.absolute-alert.warning {
  border-color: rgb(160, 140, 10);
}

.absolute-alert.danger {
  border-color: rgb(180, 74, 74);
}

/* ******************* Modal *****************  */
.modal {
  margin-top: 0 !important;
  /* display: none; */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal .modal-content {
  color: var(--p-color);
  font-size: var(--ft);
  margin: 10% auto;
  width: 60%;
  animation-name: modalopen;
  animation-duration: var(--modal-duration);
  background: var(--lighter-dark);
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.modal .modal-header h2,
.modal .modal-footer h3 {
  margin: 0;
  font-size: calc(var(--mid) * 1.4);
}

.modal .modal-header {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-family: var(--ft);
  font-family: var(--ft);
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  justify-content: center;
  color: var(--p-color);
  border-bottom: unset;
  background: var(--extra-dark);
  padding: 16px 22px;
}

.modal .modal-body {
  padding: 10px 26px 33px 26px;

  max-height: 400px;
  overflow-y: scroll;
}

.modal .modal-body p {
  margin-top: 26px;
  margin-bottom: 6px;
  font-family: var(--ft);
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 25px;
  color: var(--p-color);
  text-align: center;
}

.modal .modal-footer {
  padding: 14px 10px 20px 10px;
  color: #fff;
  text-align: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top: unset;
}

.modal .close {
  float: right;
  font-size: 1.5rem;
}

.modal .close:hover,
.modal .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.full-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.closed {
  cursor: not-allowed;
}

/* ********************* Custom  Select ********************* */
.custom-select {
  position: relative;
}

.custom-select i {
  position: absolute;
  top: 15px;
  right: 10px;
  color: #666;
  font-size: calc(var(--sm) * 0.95);
}

.custom-select select {
  background: var(--lighter-dark);
  color: var(--p-color);
  border-radius: 5px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: calc(var(--sm) * 0.95);
  font-weight: 400;
  font-family: var(--ft);
  width: 150px;
  padding: 10px 15px 10px 0px;
  letter-spacing: 0.025em;
  transition: all 0.2s ease-in-out;
}

.custom-select select:hover {
  color: var(--h-color);
  background-color: var(--extra-dark);
}

/*style the arrow inside the select element:*/
select:after {
  position: absolute;
  content: "";
  top: 19px;
  right: 12px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: var(--p-color) transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/

select:after {
  border-color: transparent transparent var(--p-color) transparent;
  top: 13px;
}

/*************** Specialization Modal ***************** */
.sps-modal .modal-footer button {
  width: 198px !important;
  margin: auto;
}

/* ---------------------------------------------------- */
/* --------------------- Auth Index ------------------- */
/* ---------------------------------------------------- */
.auth-root {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  overflow-x: hidden;
}

/* ---------------------------------------------------- */
/* --------------------- Navbar ----------------------- */
/* ---------------------------------------------------- */
.navbar {
  padding: 6px 0;
  box-shadow: 0 0 4px 1px #41414124;
  padding: 6px 0;
  background-color: var(--lighter-dark);
  ;
}


.home-nav {
  padding: 6px 0;
  position: absolute;
  top: 0;
  z-index: 999;
  width: 100%;
  background: linear-gradient(#202020, transparent);
  box-shadow: unset;
  padding: 6px 0;
}

.navbar-nav {
  padding: 0 0;
}

.navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin: unset;
}

.navbar-brand img {
  width: 55px;
  height: 57px;
}

.navbar-brand>div {
  padding: 5px 10px 0px 10px;
  color: #8d8d8df7;
  font-size: 1.6rem;
  font-family: var(--ar-bold);
}

.nav-lg .nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
}

.navbar .nav-link {

  position: relative;
  display: flex;
  align-items: center;
  color: var(--h-color);
  font-family: var(--ft);
  font-size: 1rem;
  padding-left: 0 !important;
  padding-right: 0 !important;

  letter-spacing: 0.02em;
  font-weight: 400;
}

.navbar .nav-link:hover {
  color: var(--h-color);
}


.nav-lg .nav-link::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--primary);
  content: "";
  transition: width 0.4s;
}



.nav-lg .nav-link:hover::after,
.nav-lg .nav-link:focus::after,
.nav-lg .nav-link:active::after {
  width: 100%;
}


.nav-lg .nav-link.nav-btn::after {
  width: 0 !important;

}

.dropdown-toggle::after {
  border: unset;
  margin-left: 0.055em;
}

.navbar .profile-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.navbar .profile-nav-link img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.navbar .nav-btn {
  background-color: var(--primary);
  border-radius: 5px;
  color: #fff;
  padding: 7px 15px !important;
  font-family: var(--ft);
  display: inline-block;
  font-weight: 400;
  margin: 0 7px;
}

.navbar .nav-item span {
  color: #a0a0a0;
  font-size: 1.04rem;
  word-spacing: 3px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  margin: 0 15px;
}

.navbar .navbar-toggler {
  border-color: rgba(134, 136, 139, 0.64);
  border-width: 3px;
  transition: all 0.5s ease;
  padding: 7px 9px;
  border-radius: 8px;
}

.navbar .navbar-toggler:focus {
  box-shadow: unset;
}

.navbar .navbar-toggler i {
  color: rgba(134, 136, 139, 0.64);
  transition: color .4s ease;
}

.navbar .navbar-toggler:hover {
  border-color: var(--primary);

}

.navbar .navbar-toggler:hover i {
  color: var(--primary);
}

.navbar .offcanvas {
  width: 350px;
  z-index: 2000;
}

.navbar .dropdown-menu {
  background: var(--main-dark);
  padding: 0px;
}

.navbar .dropdown-menu .dropdown-item {
  padding: 12px 16px;
  color: var(--p-color);
  font-family: var(--ft);
  font-weight: 400;
  font-size: calc(var(--sm) * 0.9);
  transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
  color: var(--primary) !important;
  background-color: unset;
  transform: translateX(4px);
}

.navbar .dropdown-item:focus,
.navbar .dropdown-item:active {
  color: var(--primary);
  background-color: unset;
}

.navbar .dropdown-menu .dropdown-divider {
  margin: 0;
}

.nav-sm .offcanvas-header {
  position: relative;
  padding: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--main-dark);
}

.offcanvas-header .btn-close {
  background: unset;
  color: var(--h-color);
}

.offcanvas-header .btn-close i {
  font-size: 1.55em;
}

.nav-sm .nav-link,
.nav-sm .nav-link span {
  margin: 1px .5rem;
  font-size: var(--mid);
}

.nav-sm .nav-link,
.nav-sm .dropdown-menu .dropdown-item {
  color: var(--p-color);
  font-family: var(--ft);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--lighter-dark);
  padding: 13px 20px;
}

.nav-sm .nav-item:last-child .nav-link,
.nav-sm .dropdown-menu li:last-child .dropdown-item {
  border: unset;
}

.nav-sm .dropdown-menu .dropdown-item {
  background-color: var(--main-dark);
}

.nav-sm .btn-close {
  position: absolute;
  z-index: 999;
  left: 10px;
  top: 17px;
}

.nav-sm .offcanvas-header .navbar-brand {
  margin-left: 1rem;
}

.nav-logo-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-inline-end: 1.6rem;
}

/* Offcanvas (Small screen Navbar) */

.offcanvas {
  background-color: var(--extra-dark);
}

.offcanvas .btn-close {
  top: 16%;
  color: var(--p-color);
}


/* ******************************************** */
/* **************** Section ******************* */
/* ******************************************** */
.section .title {
  /* font-size: calc(var(--dynamic) / 33); */
  font-size: 2.5rem;
  font-family: var(--ft);
  color: var(--h-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 500;
  text-align: center;
  margin: 1rem 1rem 1rem 1rem;
  line-height: calc(var(--line-height) * 1.4);
  letter-spacing: 0.01em;
}

.section div.custom-underline {
  width: 75px;
  height: 4px;
  background-color: var(--primary);
  margin-top: calc(var(--margin) * 1.5);
  border-radius: 5px;
}

/* .section p {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 300;
  font-size: calc(var(--mid) * 1.1);
  line-height: var(--line-height);
  letter-spacing: 0.01em;
  color: var(--p-color);
} */









.news .post-date i {
  color: var(--primary);
}

.news .post-cats {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
  row-gap: 0.9rem;
  align-items: center;
}

.news .post-cats>a {
  color: var(--p-color);
  background-color: var(--lighter-dark);
  font-family: var(--ft);
  padding: 3px 19px;
  border-radius: 10px;
}

/* ----------------------------------------------------- */
/* ---------------------- News Page -------------------  */
/* ----------------------------------------------------- */

/************ General Classes ************/

.news .card {
  border: unset;
  border-radius: 15px;
  box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.1);
  background: var(--lighter-dark);
}

.news .card .card-img-top {
  border-top-left-radius: calc(0.55rem - 1px);
  border-top-right-radius: calc(0.55rem - 1px);
  height: 193px;
}

.news .card .card-body {
  border-bottom-left-radius: calc(0.55rem - 1px);
  border-bottom-right-radius: calc(0.55rem - 1px);
  padding: 1.2rem 1.7rem 1.2em;
  background-color: var(--lighter-dark);
}

.news .card-title,
.news-post h1 {
  color: var(--h-color);
  font-weight: 500;
  font-family: var(--ft);
  font-style: normal;
}

.news p {
  color: var(--p-color);
  font-family: var(--ft);
}

.news .post-date,
.vop-detail .date {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 400;
  font-size: var(--sm);
  line-height: 22px;
  text-align: left;
  letter-spacing: 0.02em;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.news .read-more,
.member-home section.latest-posts .post .post-body .read-more {
  color: var(--primary);
  font-family: var(--ft);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  font-size: var(--sm);
  gap: 0.3rem;
  line-height: 18px;
  transition: all 0.2s ease-in-out;
  opacity: 0.7;
}

.read-more:hover {
  opacity: 1 !important;
}

.news .read-more i {
  padding-top: 2px;
  margin: 0px 3px 0;
}

/****** New-posts list Page ******/

.news .main-post .card-img-top {
  height: 457px;
  object-fit: scale-down;
}

.news .main-post .card-title {

  font-size: calc(var(--mid) * 1.7) !important;
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 1.5em;
}

.news .main-post .post-date {
  margin: 0 0 12px;
  font-size: calc(var(--sm) * 0.95);
}

.news .main-post p {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 400;
  font-size: calc(var(--mid) * 0.95);
  line-height: 1.7em;
  color: var(--p-color);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.news .main-post .card-body {
  padding: 1.3rem 2.5rem 2em !important;
}

.news .main-post .small {
  font-size: 16px;
  margin-top: 11px;
  margin-bottom: 15px;
}

.news .main-post .read-more {
  font-size: 15;
}

.news .post {
  display: block;
}

.news .post .card-title {
  font-size: calc(var(--mid) * 1.1);
  margin-top: 5px;
  line-height: 1.5em;
  font-weight: 500;
}

.news .post .date {
  font-size: calc(var(--sm) * 0.95);
  font-family: var(--ft);
  font-style: normal;
  font-weight: 400;
  line-height: calc(var(--line-height) * 0.4);
  letter-spacing: 0.02em;
  color: var(--primary);
  display: flex;
  gap: 0.3rem;
  margin-bottom: 15px;
}

.news .post p {
  line-height: 1.65em;
  letter-spacing: 0.02em;
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: calc(var(--sm) * 1);
  color: var(--p-color);
  font-weight: 400;
}

.news .post .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 3px;
  border-top: unset;
}

.news .post .small {
  font-size: 14px;
}

/* ****** Cards That Contain (Search , Categories ,Features Posts) ************ */

.news .row>div:last-child .card {
  border: unset;
  border-radius: 12px;
}

.news .row>div:last-child .card .card-body {
  position: relative;
  box-sizing: border-box;
  background: var(--lighter-dark);
  border: unset;
  border-radius: 10px;
  border-top: unset;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  z-index: 0;
}

/* ****************************************************************************** */

.news .search-card {
  border: unset;
  margin-bottom: 25px;
}

.news .search-card .card-body {
  padding: 0;
  border: unset !important;
  outline: unset;
  border-radius: 10px !important;
}

.news .search-card .my-btn {
  position: absolute;
  width: 73px;
  height: 50px;
  background: var(--extra-dark);
  border-radius: 10px 0 0 10px !important;
  color: var(--p-color);
  z-index: 999;
  margin-left: 0;
  margin-right: 0;
  font-size: calc(var(--mid) * 0.85);
}

.news .search-card .my-btn:hover {
  color: var(--primary);
}

.news .search-card input {
  box-sizing: border-box;
  width: 297px;
  height: 50px;
  background: var(--lighter-dark);
  border: unset;
  border-radius: 10px !important;
  margin-left: 30px;
  padding-left: 87px;
  font-family: var(--ft);
  color: var(--p-color);
  font-size: calc(var(--mid) * 0.85);
  letter-spacing: 0.02em;
  transition: all 0.15s ease-in-out;
}

.news .search-card input:hover,
.news .search-card input:focus {
  color: var(--h-color);
}

.news .card .card-header {
  padding: 13px 0;
  background: var(--extra-dark);
  border-radius: 10px 10px 0 0;
  font-family: var(--ft);
  font-style: normal;
  font-weight: 500;
  font-size: calc(var(--mid) * 0.92);
  line-height: 19px;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--p-color);
  border-bottom: unset;
  position: relative;
  z-index: 999;
}

.news .card .cats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.news .card .cat-con>a {
  color: var(--p-color);
  background: var(--main-dark);
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  padding: 10px 13px;
  font-family: var(--ft);
  font-style: normal;
  font-weight: 400;
  font-size: calc(var(--sm));
  line-height: 19px;
  letter-spacing: 0.01em;
  transition: all 0.1s ease-in-out;
}

.news .card .cat-con>a:hover {
  color: #fff;
  background-color: var(--primary);
}

.featured-posts .post {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.featured-posts .post .title {
  font-size: calc(var(--mid) * 0.9);
  font-family: var(--ft);
  color: var(--p-color);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.featured-posts .post>div:first-child {
  overflow: hidden;
  border-radius: 3px;
  width: 104px;
  height: 64px;
  background: var(--lighter-dark);
}

.featured-posts .post>div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
}

.featured-posts .post>div:last-child {
  padding: 15px 10px 10px 10px;
}

.featured-posts .post>div:last-child .date {
  font-family: var(--ft);
  color: var(--primary);
  font-style: normal;
  font-weight: 400;
  font-size: calc(var(--sm) * 0.85);
  line-height: 16px;
  letter-spacing: 0.03em;
}

.news-post article img {
  height: 469px;
  width: 100%;
  object-fit: scale-down;
}

.news-post article header h1 {
  font-weight: 600;
  font-family: var(--ft);
  color: var(--h-color);
  line-height: auto;
  font-size: calc(var(--big) * 0.8);
  margin: 25px 0 0px auto !important;
  line-height: calc(var(--line-height) * 1.4);
}

.news-post .content {
  font-family: var(--ft) !important;
  font-style: normal;
  font-weight: 300;
  font-size: calc(var(--mid) * 0.98);
  line-height: calc(var(--line-height) * 0.92);
  text-align: left;
  letter-spacing: 0.02em;
  color: var(--p-color);
}

.news-post h3.title {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 600;
  font-size: var(--big);
  line-height: 35px;
  color: var(--h-color);
  border-bottom: 1px solid var(--divder-color);
  padding-bottom: 24px;
}

/* ----------------------------------------------------- */
/* ----------------------- Footer ---------------------  */
/* ----------------------------------------------------- */

footer {
  background-color: var(--lighter-dark);
  margin-top: auto;
}

footer h4 {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 500;
  font-size: calc(var(--big) * 0.7);
  line-height: 30px;
  color: var(--h-color);
  padding: 0 4px 14px 4px;
  border-bottom: 1px solid #444;
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
  padding: 0 2px;
}

footer li {
  padding-bottom: 7px;
  margin: 4px 0;
}

footer li a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--ft);
  font-style: normal;
  font-weight: 300;
  font-size: calc(var(mid) * 1.05);
  line-height: 22px;
  color: var(--p-color);
  letter-spacing: 0.025em;
  transition: all 0.3s ease-in-out;
}

footer li a:hover {
  padding: 0 .15rem;
}

/* footer li a .name {
  min-width: 100px;
} */

footer li a img {
  width: 50px;
  height: 50px;
}

footer li a:hover,
footer li a:focus,
footer li a:active {
  color: var(--primary);
}

footer>div:last-child {
  text-align: center;
  background: var(--extra-dark);
  color: #fff;
  padding: 17px 0;
  font-family: var(--ft);
  font-style: normal;
  font-size: 17px;
  line-height: 28px;
  color: #aaa;
  letter-spacing: 0.02em;
  word-spacing: 2px;
}

/* ----------------------------------------------------- */
/* ---------------------- Alertify --------------------  */
/* ----------------------------------------------------- */

/* ------------------- Custom Styles ALrtify Js ----------------- */
.alertify.ajs-resizable:not(.ajs-maximized) .ajs-dialog {
  min-height: 465px;
  border-radius: 5px;
  overflow: hidden;
}

.ajs-header {
  font-weight: 500;
  font-family: var(--ft);
  height: 58px;
}

.alertify.ajs-resizable:not(.ajs-maximized) .ajs-dialog .title h4 {
  font-size: 30px;
  font-family: var(--ft);
  margin: 5px 0 8px 0;
}

.alertify button:focus {
  outline: unset;
}

.alertify .ajs-footer .ajs-buttons.ajs-primary {
  text-align: center;
  padding: 10px 30px;
}

.alertify .ajs-footer .ajs-buttons.ajs-primary .auth-form-btn {
  background-color: var(--primary);
  width: 200px;
  border-radius: 12px;
  padding: 8px 9px;
  color: #fff;
  height: 40px;
}

.sps a {
  color: #fff;
}

.sps a:hover {
  color: #b1afaf;
}

.sps button {
  transition: background-color 0.5s ease;
  color: var(--p-color);
  padding: 9px 25px;
  background: #efefef;
  border-radius: 30px;
  font-family: var(--ft);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  text-transform: uppercase;
}

.sps button.active {
  background-color: var(--orange);
  color: #ffffff;
}

/* ***************************** ************************************ */
/* ***************************** Pagination ************************* */
/* ***************************** ************************************ */

.pagination .page-item a {
  background: var(--lighter-dark);
  color: var(--p-color);
  outline: unset !important;
  box-shadow: unset !important;
  font-size: calc(var(--sm) * 0.95);
  font-weight: 400;
  font-family: var(--ft);
  transition: all 0.5s ease;
  margin: 4px !important;
  border: none;
  border-radius: 5px !important;
}

.pagination .page-item a:hover,
.pagination .page-item a:focus,
.pagination .page-item a.active {
  background: rgba(229, 131, 47, 0.91);
  color: #fff;
  border-color: rgba(229, 131, 47, 0.91);
}

.page-item:first-child .page-link span i {
  font-size: 0.9rem;
}

/* ***************************** ************************************ */
/* ******* Volunteering Opportunities list & Courses list *********** */
/* ***************************** ************************************ */

.complaint-box .title {
  text-align: center;
  font-family: var(--ft);
  font-style: normal;
  font-weight: 600;
  font-size: calc(var(--big) * 1.3);
  line-height: calc(var(--line-height) * 1.6);
  color: var(--h-color);
  margin-bottom: 4rem;
  margin-top: 1.5em;
}

.filters-con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.filters-con button {
  height: 38px;
}

.filters-con>div:last-child button {
  background: #eaeaea;
  background-repeat: repeat;
  background-image: none;
  border-radius: 10px;
  text-align: center;
  padding: 8px 34px 9px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* ***************************************************** */
/* **************** Volunteering Oppr Detail *********** */
/* ***************************************************** */

.vop-detail .main-details {
  padding-right: 20px;
}

.vop-detail .img-con {
  max-height: 500px;
  overflow: hidden;
  min-height: 300px;
  width: 90%;
}

.vop-detail .img-con img {
  border-radius: 6px;
}

.vop-detail h2.card-title {
  font-family: var(--ft);
  color: var(--h-color);
  font-weight: 500;
  font-size: calc(var(--big) * 1);
  line-height: calc(var(--line-height) * 1.4);
  margin-bottom: 12px;
}

.vop-detail .img-con img {
  height: 100%;
  width: 100%;
}

.vop-detail .date {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.vop-detail .sps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vop-detail .sps>div {
  background: var(--lighter-dark);
  border-radius: 5px;
  padding: 6px 12px;
  font-family: var(--ft);
  font-size: var(--sm);
  color: var(--p-color);
  letter-spacing: 0.01em;
}

.vop-detail .content {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 300;
  font-size: calc(var(--mid) * 0.96);
  line-height: var(--line-height);
  color: var(--p-color);
  letter-spacing: 0.025em;
}

.vop-detail .my-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 200px;
  padding: 9px 10px !important;
  gap: 20px;
  border-radius: 5px;
  font-family: var(--ft);
  font-style: normal;
  font-weight: 400;
  font-size: var(--mid);
  line-height: var(--line-height);
  text-align: right;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.vop-detail .side-widgets h4 {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 500;
  font-size: calc(var(--mid) * 1.1);
  line-height: var(--line-height);
  color: var(--h-color);
  padding: 0 0 12px 0;
  border-bottom: 1px solid var(--divder-color);
  margin-bottom: 7px;
}

.vop-detail .side-widgets h4 i {
  color: var(--primary);
}

.vop-detail .side-widgets p {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 300;
  font-size: calc(var(--sm) * 1.05);
  line-height: calc(var(--line-height) * 0.85);
  color: var(--p-color);
  margin-bottom: 0;
}

.vop-detail .side-widgets ul {
  padding: 0px 24px;
  font-family: var(--ft);
  font-style: normal;
  font-weight: 300;
  font-size: calc(var(--sm) * 1.05);
  line-height: calc(var(--line-height) * 0.85);
  color: var(--p-color);
  margin-bottom: 0;
}



.vop-detail .content ol {
  padding: 0;
  padding-left: 22px;
  padding-right: 22px;
}




/* ************************************************************* */
/* *********************** Courses list ********************** */
/* ************************************************************* */

.courses-list .list-card .card-title {
  line-height: calc(var(--line-height) * 1.04);
  margin-bottom: 7px;
}

.courses-list .list-card .date {
  font-size: var(--sm);
  font-weight: 500;
  margin-bottom: 15px;
}

/* ***************************************************** */
/* ********************* Course Detail ***************** */
/* ***************************************************** */

/* ************************************************************* */
/* *********************** Courses Status ********************** */
/* ************************************************************* */

.continues {
  background-color: rgb(9, 106, 70);
  color: #fff !important;
}

.completed {
  background-color: rgb(196, 94, 83) !important;
  color: #fff !important;
  cursor: not-allowed !important;
}

.soon {
  background-color: steelblue;
  color: #fff !important;
}

.finished {
  background-color: var(--danger);
  color: #fff !important;
}

.delayed {
  background-color: papayawhip;
  color: #4f4f4f !important;
}

/* ************************************************************* */
/* *********************** Complaints box ********************** */
/* ************************************************************* */

.complaint-box .complaint-box-card {
  padding: 30px 55px !important;
  border: 1px solid #d0d0d0;
}

.complaint-box .title {
  margin-top: 0.6em;
  margin-bottom: 1em;
}



/* ************************************************************* */
/* *********************** Profile Page ************************ */
/* ************************************************************* */
.profile .my-card {
  background-color: var(--lighter-dark);
  padding: 45px 42px 45px;
  border-radius: 10px;
}

.profile .my-card input,
.profile .my-card select {
  background-color: var(--extra-dark)
}

.profile .my-card input.disabled,
.profile .my-card select.disabled {
  background-color: #242424;
  color: var(--primary);
}

.profile .title {
  font-family: var(--ft);
  color: var(--h-color);
  font-size: calc(var(--big) * 0.8);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

.profile .title .underline {
  width: 70px;
  height: 3px;
  background-color: var(--primary);
  margin: 12px auto 0;
}

.profile .img-con img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--lighter-dark);
}

.profile .text {
  font-family: var(--ft);
  color: var(--h-color);
  letter-spacing: 0.8px;
}

.profile .text>div:first-child {
  font-size: calc(var(--sm) * 1.3);
}

.profile .text>div:first-child span {
  color: var(--primary);
}

.profile .text>div:last-child {
  font-family: var(--ft);

  font-size: calc(var(--sm) * 1.1);
}

.profile .profile-form {
  display: flex;
}

.sps-con>div {
  flex-wrap: wrap;
  row-gap: 2em;
  column-gap: 2em;
}

.sps-con label {
  color: var(--p-color);
  font-size: var(--sm);
  padding: 10px 20px;
  background: var(--main-dark);
  border-radius: 7px;
  font-weight: 500;
  font-family: var(--ft);
  letter-spacing: 0.02em;
}

.profile form div span {
  color: var(--p-color);
  font-weight: 400;
}

.profile form div b {
  font-weight: 400;
  color: #bbb;
  margin: 0 3px;
}

.profile form input,
.profile form select,
.profile form textarea {
  color: var(--p-color);
  padding: 14px 20px;
  font-size: calc(var(--sm) * 1.05);
  font-weight: 400;
  border: unset;
  transition: box-shadow .3s ease;
  font-family: var(--ft);
  letter-spacing: 0.025em;
  background-color: var(--extra-dark);
}

.profile form .check-box {
  padding-top: 14px;
}

.profile .form-control::placeholder {
  color: var(--p-color);
  transition: color .5s ease;
}

.profile .form-control:focus {
  box-shadow: 0 0px 2px 3px rgba(234, 132, 44, 0.3);
  color: var(--h-color) !important;
  background-color: var(--extra-dark);
}

.profile .sub-title {
  font-size: calc(var(--big) * 0.75);
  margin: 20px 0 25px;
  text-align: center;
  color: var(--p-color);
  font-family: var(--ft);
  position: relative;
  font-weight: 400;
  letter-spacing: 0.025em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile .sub-title>div:first-child {
  background: var(--lighter-dark);
  z-index: 9;
  padding: 0px 18px;
}

.profile .sub-title>div:last-child {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--main-dark);
  z-index: 0;
}

.profile form .my-btn {
  padding: 10px 60px !important;
}

.profile .add-exp-btn {
  animation: ringing 3s ease 0s 6 normal forwards;
}

@keyframes ringing {

  0%,
  100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }

  15% {
    transform: translateX(-30px) rotate(6deg);
  }

  30% {
    transform: translateX(15px) rotate(-6deg);
  }

  45% {
    transform: translateX(-15px) rotate(3.6deg);
  }

  60% {
    transform: translateX(9px) rotate(-2.4deg);
  }

  75% {
    transform: translateX(-6px) rotate(1.2deg);
  }
}

.profile form .btn-disabled {
  padding: 10px 20px !important;
}

.profile .img-con .my-btn {
  background-color: var(--primary);
  border-radius: 55px;
  padding: 7px 12px !important;
  opacity: 0.7;
}

.profile .img-con .my-btn:hover {
  opacity: 1;
}


.profile .img-edit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.profile .img-con {
  width: 175px;
  height: 175px;
  overflow: hidden;
  position: relative;
}

.profile .img-con button {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}



.profile .sps-con>div {
  display: flex;
  gap: .5rem;
  align-items: center;
  justify-content: space-between;
}

.profile .sps-con label {
  display: flex;
  gap: .5rem;
  align-items: center;
}



/****** Join Volunteer Op  *****/

.confimration-card {
  background: var(--lighter-dark);
  border-radius: 10px;
  padding-bottom: 10px;
}

.confimration-card h2 {
  background: var(--extra-dark);
  padding: 20px 10px;
  left: calc(50% - 144px / 2);
  font-family: var(--ft);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: var(--p-color);
  border-radius: 10px 10px 0 0;
}

.confimration-card h5 {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 500;
  font-size: calc(var(--big) * 0.8);
  line-height: 10px;
  text-align: center;
  color: var(--h-color);
  margin: 60px 0 14px;
  text-transform: capitalize;
}

.confimration-card p {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 300;
  font-size: calc(var(--sm) * 1.35);
  line-height: 32px;
  text-align: center;
  color: var(--p-color);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  padding-top: 7px;
}

.confimration-card button {
  background: var(--primary);
  border-radius: 5px;
  font-family: var(--ft);
  font-style: normal;
  font-weight: 500;
  font-size: calc(var(--sm) * 1.1);
  line-height: 18px;
  text-align: right;
  color: #ffffff;
  padding: 12px 45px !important;
}

.confimration-card h5 span {
  color: #e5832f;
}



/* ************************************************************* */
/* ******************************* More Page ******************* */
/* ************************************************************* */

/* ********** Taqarib More Page **************** */

.taqarib-page .img-con {
  height: 150px;
  overflow: hidden;
  margin: 1rem auto .5rem;
  width: 400px;
}

.taqarib-page .axis-title {
  line-height: calc(var(--line-height) * 1.2);
  color: var(--p-color);
  font-size: calc(var(--mid)*1.75);
  letter-spacing: 0.02em;
  font-family: var(--ft);
  margin-bottom: 0;
}

.taqarib-page .axis {
  font-size: 1.05rem;
  font-family: var(--ft);
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 8px;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  line-height: 1.6em;
  margin-top: 4px;
}

.taqarib-page p.content {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 300;
  font-size: calc(var(--mid) * .99);
  line-height: 1.8em;
  color: var(--p-color);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

/* ********** Advertise Here Page **************** */

.advertise-with-us .title {
  text-align: center;
  font-family: var(--ft);
  font-weight: 600;
  font-size: calc(var(--big) * 1.3);
  line-height: calc(var(--line-height) * 1.6);
  color: var(--h-color);
  margin-bottom: 3rem;
  margin-top: .75em;
  text-transform: capitalize;
}


/* ************************************************************* */
/* *********************** Advertize Here ********************** */
/* ************************************************************* */

.darker-bg {
  background-color: var(--lighter-dark);
  border-radius: 15px;
  padding: 3rem 0 2rem;
}

.advertise-here h2.title,
.contact-us h2.title,
.donation h2.title {
  /* Advertise With Us */
  font-family: var(--ft);
  margin-top: 20px;
  font-style: normal;
  font-weight: 600;
  font-size: calc(var(--big) * 1.5);
  line-height: 1.2em;
  color: #FFFFFF;
  text-align: center;
}

.advertise-here h2.title .custom-underline,
.contact-us h2.title .custom-underline,
.donation h2.title .custom-underline {
  width: 8%;
  height: 4px;
  border-radius: 2px;
  background: var(--primary);
  margin: auto;
  margin-top: 10px;
}

.advertise-here section,
.contact-us section,
.donation section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.advertise-here section>div,
.contact-us section>div,
.donation section>div {
  flex: .5;
  padding-left: 83px;
}

.advertise-here section .image-content,
.contact-us section .image-content,
.donation section .image-content {
  width: 100px;
  height: 300px;
  flex: .5;
}

.contact-us section .image-content img,
.advertise-here section .image-content img,
.donation section .image-content img {
  width: 88%;
  height: 100%;
}

.advertise-here section .text-content h3,
.contact-us section .text-content h3,
.donation section .text-content h3 {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 500;
  font-size: 38px;
  line-height: 45px;
  color: #FFFFFF;
  margin-bottom: 15px;
  margin-top: 0px;
  text-transform: capitalize;
}

.donation section .text-content h3 {
  font-size: 36px;
}

.advertise-here section .text-content p,
.contact-us section .text-content p,
.donation section .text-content p {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 300;
  font-size: 1em;
  line-height: 27px;
  color: var(--p-color);
  letter-spacing: 0.025em;
  word-spacing: 0.025em;
}

.contact-us section .text-content p {
  margin-bottom: 40px;
}

.advertise-here section p a,
.donation section p a {
  color: var(--primary);
  font-weight: 400;
}

.advertise-here section p a:hover,
.donation section p a:hover {
  text-decoration: underline;
}

.advertise-here .advertise-view h3 {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
  color: #FFFFFF;
}

.advertise-here .image-view {
  margin: auto;
  margin-top: 100px;
  border-radius: 4px;
  border: 4px dashed var(--primary);
  width: 85%;
  height: 450px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 17px 0px rgba(20, 20, 20, 0.75);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(20, 20, 20, 0.75);
  -moz-box-shadow: 0px 0px 17px 0px rgba(20, 20, 20, 0.75);
}

.advertise-here .image-view>div {
  background-color: #fff;
  width: 220px;
  height: 51px;
  color: var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}

.advertise-here .advertize-section a {
  color: var(--primary);
  font-weight: 500;
  text-transform: capitalize;
}

.advertise-here .contact .my-btn {
  font-size: 1.1rem;
  padding: 11px 50px !important;
  font-weight: 400;
}

.contact-us .contact-info h4 {
  margin-top: 30px;
  font-family: var(--ft);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 21px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  border-bottom: 1px solid #333;
  padding-bottom: 18px;
  margin-bottom: 10px;
}

/* .contact-us .contact-info h5 {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  letter-spacing: 0.04em;
  color: #C6C6C6;
  margin-top: 11px;
} */

.contact-us .contact-info ul {
  padding: 0;
}

.contact-us .contact-info ul li {
  font-family: var(--ft);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  letter-spacing: 0.05em;
  margin-top: 11px;
  color: #999;
  list-style: none;
}

.contact-us .contact-info ul li i {
  color: var(--primary);
  font-size: 15px;
}

.contact-us .contact-info ul li::marker {
  color: var(--primary);
}

/* ************************************************************* */
/* *********************** Ads Carousel ************************ */
/* ************************************************************* */
.ads.section {
  padding: 2.5em 0 1em;
}

.ads .swiper {
  height: 400px;
  position: relative;
  z-index: 0;
}

.ads .swiper .swiper-slide {
  padding: 0px 3px !important;
}

.ads .swiper .swiper-slide>div {
  display: flex;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
  background: var(--extra-dark);
  border-radius: 5px;
  height: 340px;
  overflow: hidden;
  margin-top: 5px;
}


.ads .swiper .swiper-slide>div>div:first-child>a {
  border-bottom-left-radius: 10px;
}

.ads .swiper .swiper-slide .img-con {
  width: 100%;
}



.ads .swiper .swiper-slide .img-con {
  height: 100%;
}

.ads .swiper .swiper-slide .img-con img {
  width: 100%;
  height: 100%;
}

.ads .swiper .swiper-slide-prev,
.ads .swiper .swiper-slide-next {
  opacity: 0.3;
}

.ads .swiper-custom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 10;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.ads .swiper-custom-nav svg {
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

.ads .swiper-custom-nav svg:hover {
  opacity: 1;
}

.ads .swiper-custom-pagination {
  text-align: center;
  position: absolute;
  bottom: 0;
  z-index: 999;
}

.ads .swiper-custom-pagination .swiper-pagination-bullet {
  margin: 10px 5px 10px 6px !important;
  width: 15px !important;
  height: 6px !important;
  border-radius: 3px !important;
  background-color: var(--primary);
  transition: width .5s ease;
}

.ads .swiper-custom-pagination .swiper-pagination-bullet-active {
  width: 22px !important;
}


/* ************************************************************* */
/* *********************** Media Quesry ************************ */
/* ************************************************************* */

/* Large devices Max (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
  body {
    overflow-x: hidden;
  }

  /* Custom container large screens */
  .cm-con-sm {
    max-width: 100vw;
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
  }

  .filters-con {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }


  /***** Complaint Box  ******/

  .complaint-box .complaint-box-card {
    padding: 28px 30px !important;
  }

  /* ****** footer ****** */

  footer h4 {
    padding: 0 0 14px 0;
    margin-bottom: 14px;
    font-size: calc(var(--big) * 0.6);
  }

  footer li a {
    font-size: calc(var(--sm) * 1.05);
  }

  /* *********************************************** */
  /* ****************** Dontaion Page ************** */
  /* *********************************************** */
  .advertise-here section,
  .contact-us section,
  .donation section {
    flex-direction: column-reverse;
  }

  .advertise-here section>div,
  .contact-us section>div,
  .donation section>div {
    flex: 1 !important;
    padding: 6px 12px !important;
    text-align: center !important;
  }

  .advertise-here section .sub-title-p,
  .contact-us section .sub-title-p,
  .donation section .sub-title-p {
    text-align: center;
  }

  .advertise-here section .image-content,
  .contact-us section .image-content,
  .donation section .image-content {
    width: 90%
  }

  .advertise-here section,
  .contact-us section,
  .donation section {
    padding-left: 2em;
    padding-right: 2em;
  }


  /* *********************** Carousel ************************* */
  .swiper-custom-nav {
    display: none !important
  }
}

/* Large devices Min (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {


  section.jaras {
    margin-top: calc(var(--margin) * 2);
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {



  /* ******************* Vops Carousel ********************* */
  .latest_vops .swiper {
    height: 700px !important;
  }

  .latest_vops .swiper .swiper-slide>div {
    flex-direction: column-reverse;
    height: 630px !important;
  }

  .latest_vops .swiper .swiper-slide .body {
    width: 100%;
  }

  .latest_vops .swiper .swiper-slide .img-con {
    width: 100%;
  }

  .latest_vops .swiper .swiper-custom-nav {
    display: none;
  }

  /* Course & Vop Detail */

  .vop-detail .main-details {
    padding-right: 0;
    padding-left: 0;
  }

  .vop-detail .img-con {
    width: 100%;
  }

}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

  /* *************************************************** */
  /* ***************** Ads Carousel ******************** */
  /* *************************************************** */
  .ads .swiper {
    height: 290px;
  }


  .ads .swiper .swiper-slide>div {
    height: 235px;
  }

  .modal-content {
    width: 93% !important;
  }

  .modal .modal-header h2,
  .modal .modal-footer h3 {
    margin: 0;
    font-size: 1.5rem;
  }

  .modal .close {
    font-size: 1.2rem;
  }


  .sps button {
    padding: 9px 15px;
  }

  /* *********************** News ************************ */

  .news .main-post .card-img-top {
    height: 330px;
  }

  .news .pagination {
    margin-bottom: 50px;
  }

  .news-post article img {
    height: 300px;
  }

  .news-post article header h1 {
    font-size: calc(var(--big) * 0.7);
  }

  .news .post-date {
    font-size: 16px;
  }

  .news-post .content {
    font-size: calc(var(--mid) * 0.9);
    line-height: calc(var(--line-height) * 0.9);
  }


  /* *********************** Nav Bar *************** */

  .navbar-brand img {
    width: 53px;
    height: 50px;
  }

  /* *********************** Carousel ******************** */

  .carousel,
  .animated-img {
    height: calc(100vw / 1.6) !important;
  }



  /* ********* footer ***********  */

  footer h4 {
    margin-top: 20px;
  }

  footer li a {
    font-size: calc(var(--sm) * 1.1);
  }

  .rights-footer .text-1 {
    font-size: .85em;
    margin-bottom: 13px;
  }

  /***************** Donation & Advertise & Contact us ******************/

  .advertise-here h2.title,
  .contact-us h2.title,
  .donation h2.title {
    font-size: 2.4rem;
  }

  .advertise-here h2.title .custom-underline,
  .contact-us h2.title .custom-underline,
  .donation h2.title .custom-underline {
    width: 10%
  }

  .advertise-here section,
  .contact-us section,
  .donation section {
    padding: 2.5rem 1.2em 2rem;
  }

  .advertise-here section .text-content h3,
  .contact-us section .text-content h3,
  .donation section .text-content h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .advertise-here section .text-content p,
  .contact-us section .text-content p,
  .donation section .text-content p {
    font-size: .9em;
    line-height: 24px;
    letter-spacing: 0.03em;
  }

}