/* === General === */

@font-face {
  font-family: "Regular";
  src: url("../fonts/Tajawal-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Medium";
  src: url("../fonts/Tajawal-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Bold";
  src: url("../fonts/Tajawal-Bold.ttf");
  font-display: swap;
}

:root {
  font-size: 16px;
  --main: #711817;
  --main2: #F2D9BB;
  --white: #ffffff;
  --dark: #2B2B2B;
}

@media (max-width: 1199.9px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 991.9px) {
  :root {
    font-size: 14px;
  }
}

@media (max-width: 767.9px) {
  :root {
    font-size: 13px;
  }
}

@media (max-width: 575.9px) {
  :root {
    font-size: 12px;
  }
}

* {
  font-family: "Medium";
  box-sizing: border-box;
  margin: 0;
  /* font-size: 1rem; */
}

*:focus {
  outline: none;
}

a,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
  display: inline-block;
}

.btn {
  padding: 0.75rem 1rem;
  border-radius: 5px;
  border: 1px solid var(--main);
  background-color: var(--main);
  color: var(--white);
  font-size: 1rem;
  transition: 0.2s;
}

.btn:hover {
  background-color: var(--white);
  color: var(--main);
}

[class*="animate__"]:not(.animate__animated) {
  animation-duration: 0s !important;
}

[class*="animate__"].animate__animated {
  animation-duration: 1s !important;
}

[class*="pop-up"][class*="animate__"].animate__animated {
  animation-duration: 0.3s !important;
}

.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

/* === loader === */

.loader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 99999;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader img {
  width: auto;
  height: auto;
  max-height: 25vh;
  max-width: 25vw;
}

/* === Style Header & Nav === */

body {
  padding-top: 100px;
  background-color: #F8EADA;
}

header {
  background-color: var(--main2);
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}

.offset-start-logo {
  margin-inline-start: calc(120px + 3.5rem);
}

.social a {
  margin-inline-end: 0.8rem;
  display: inline-flex;
  transition: 0.3s;
}

.social a:hover {
  transform: scale(1.2) rotate(5deg);
}

.social a:last-child {
  margin-inline-end: 0;
}

.social a svg {
  height: 1rem;
  width: auto;
  max-width: 1rem;
}

.social a svg [fill] {
  fill: #A75C5C;
  transition: 0.3s;
}

.social a.tiktok:hover svg [fill] {
  fill: #000000;
}

.social a.rss:hover svg [fill] {
  fill: #F26522;
}

.social a.twitter:hover svg [fill] {
  fill: #1AA2F8;
}

.social a.facebook:hover svg [fill] {
  fill: #1092F4;
}

.social a.whats:hover svg [fill] {
  fill: #36E55A;
}

.social a.telegram:hover svg [fill] {
  fill: #34AAEA;
}

.social a.youtube:hover svg [fill] {
  fill: #FE0000;
}

.social a.instagram:hover svg [fill] {
  fill: #CF3FBA;
}

header .contacts a {
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  font-size: 0.875rem;
  transition: 0.3s;
}

header .contacts a:hover {
  transform: scale(1.1);
}

header,
nav>div {
  height: 100px;
}

nav>div {
  background-color: var(--main);
  border-radius: 0 0 10px 10px;
}

nav img.logo {
  position: relative;
  margin-top: -45px;
  width: 120px;
  height: auto;
}

nav a {
  color: var(--white);
  position: relative;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: var(--main2);
  transform: scale(1.05);
}

nav .links a:hover svg [fill] {
  fill: var(--main2);
}

nav a+ul {
  position: absolute;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  padding: 0;
  list-style: none;
  padding: 0.875rem;
  margin-top: 0.5rem;
}

nav a+ul.show {
  display: block !important;
  animation: fadeIn 0.3s linear;
}

nav a+ul a {
  color: var(--dark);
  max-width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}

nav a+ul li:last-child a {
  margin-bottom: 0;
}

nav a+ul a:hover {
  color: #A75C5C;
  transform: scale(1);
}

nav a+ul a:hover svg [fill] {
  fill: #2B2B2B !important;
}

nav a+ul a svg {
  width: 0.4rem;
  height: auto;
  margin-inline-end: 0.6rem;
}

html[dir="ltr"] nav a+ul a svg {
  transform: rotate(180deg);
}

header.down {
  padding: 0 !important;
}

@media (max-width: 991.9px) {
  .offset-start-logo {
    margin-inline-start: 0;
  }

  nav img.logo {
    margin-top: -20px;
    width: 96px;
  }

  .links {
    width: calc(100% / 3);
    right: calc(-100% / 3);
    background-color: var(--main);
    z-index: 999;
    transition: 0.3s;
    flex-direction: column;
    padding: 1.5rem;
  }

  html[dir="ltr"] .links {
    right: unset;
    left: calc(-100% / 3);
  }

  .links a {
    margin-bottom: 1rem !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    font-size: 1.25rem !important;
  }

  .links a::before {
    content: "- ";
    font-family: 'Regular';
  }

  .links.show {
    right: 0 !important;
  }

  html[dir="ltr"] .links.show {
    left: 0;
  }

  .links.show~.bg-form-mobile {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s linear;
  }

  .links,
  .links.show~.bg-form-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100vh;
    margin: 0;
  }

  nav a+ul {
    position: static;
    margin-bottom: 0.5rem;
    background: transparent;
    padding: 0;
    padding-inline-start: 0.5rem;
  }

  nav a+ul a::before {
    content: unset !important;
  }

  nav a+ul a {
    color: var(--white) !important;
  }

  nav a+ul a svg [fill] {
    fill: var(--white) !important;
  }

  nav a+ul a:hover svg [fill] {
    fill: var(--white) !important;
  }

  header .open-menu svg {
    width: 2rem;
    height: auto;
  }

  header .icon-search svg {
    width: 1.5rem;
    height: auto;
  }
}

@media (min-width: 992px) and (max-width: 1199.9px) {
  .offset-start-logo {
    margin-inline-start: calc(120px + 2rem);
  }
}

@media (max-width: 767.9px) {
  body {
    padding-top: 80px;
  }

  header,
  nav>div {
    height: 80px;
  }

  nav img.logo {
    width: 76px;
  }

  .links {
    width: calc(100% / 2);
    right: calc(-100% / 2);
  }

  html[dir="ltr"] .links {
    right: unset;
    left: calc(-100% / 2);
  }
}

@media (max-width: 575.9px) {

  header,
  nav {
    padding-right: 0 !important;
    padding-left: 0 !important;
    transition: 0.3s;
  }

  nav>div {
    transition: 0.3s;
    border-radius: 0;
  }

  nav img.logo {
    margin-top: 0;
    width: 70px;
    transition: 0.3s;
  }

  nav>div>.row {
    margin: auto;
  }

  header.down,
  header.down nav {
    height: 64px;
  }

  header.down nav img.logo {
    width: 58px;
  }

  .links {
    width: calc(100% / 1.15);
    right: calc(-100% / 1.15);
  }

  html[dir="ltr"] .links {
    right: unset;
    left: calc(-100% / 1.15);
  }
}

/* === Style Pop Up === */

body.pop-up-open {
  overflow: hidden;
}

.pop-up,
.pop-up .bg-pop-up {
  display: none;
}

.pop-up.show {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  overflow: auto;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.pop-up.show .bg-pop-up {
  display: block;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation-duration: 1s !important;
}

.pop-up>.container {
  position: relative;
  z-index: 9;
  animation-delay: 0.7s !important;
}

.pop-up .close {
  position: absolute;
  left: 2rem;
  top: 2rem;
  z-index: 9;
  cursor: pointer;
}

html[dir="ltr"] .pop-up .close {
  left: unset;
  right: 2rem;
}

.pop-up .close svg {
  width: 2rem;
  height: auto;
}

.pop-up img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 17px;
}

.pop-up form {
  display: none;
}

.pop-up.show form {
  display: block;
}

.pop-up form>div {
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

.pop-up form button {
  background-color: var(--main);
  border-color: var(--main);
}

/* === Style Input General === */

form .input {
  display: flex;
  flex-direction: column;
}

form .input label {
  margin-bottom: 0.75rem;
  padding-inline-start: 0.75rem;
}

form .input input {
  background-color: #FAFAFA;
  border: 1px solid #FAFAFA;
  color: #151E42;
  width: 100%;
  border-radius: 4px;
  padding: 0.85rem 1.15rem;
  transition: 0.3s;
  font-size: 1rem;
}

form .input textarea {
  resize: none;
  height: 150px;
}

form .input input::placeholder,
form .input textarea::placeholder {
  color: rgba(21, 30, 66, 0.6);
}

form .input input:focus {
  border-color: var(--main);
}

form .input input.not-valid {
  border-color: #D72828;
}

form .input small {
  margin-top: 0.25rem;
  color: #D72828;
  font-size: 0.625rem;
  display: none;
}

form .input *.not-valid+small {
  display: block;
}

/* === Footer === */

footer {
  background-color: #570100;
}

footer img {
  width: 160px;
  height: auto;
}

footer .links-footer a {
  font-size: 0.875rem;
  color: var(--white);
  transition: 0.3s;
}

footer .links-footer a:hover {
  transform: scale(1.1);
  color: var(--main2);
}

footer .social svg [fill] {
  fill: var(--main2);
}

footer form h4,
footer form h4 span {
  color: var(--main2);
  font-family: 'Bold';
  font-size: 1.25rem;
}

footer form h4 span {
  background-color: #E5BF92;
  color: #000000;
  padding: 0.75rem 2rem;
  display: inline-block;
  margin-bottom: 0.25rem;
  border-radius: 5px;
}

footer form p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--white);
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

footer form .box-input {
  position: relative;
}

footer form .box-input input {
  font-size: 0.875rem;
  color: #2F4154;
  background-color: var(--white);
  border: 1px solid var(--white);
  border-radius: 5px;
  padding: 1rem 1.125rem;
  padding-inline-end: 4rem;
}

footer form .box-input input::placeholder {
  color: #C6C6C6;
}

footer form .box-input button {
  background: none;
  border: none;
  color: #2F4154;
  font-size: 0.875rem;
  font-family: 'Bold';
  position: absolute;
  left: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  height: calc(100% - 0.8rem);
  transition: 0.3s;
  border-radius: 5px;
}

html[dir="ltr"] footer form .box-input button {
  left: unset;
  right: 0.4rem;
}

footer form .box-input button:hover {
  background-color: var(--main);
  color: var(--white);
}

footer form .box-input+small {
  color: var(--white);
  font-size: 0.625rem;
  margin-top: 0.3rem;
}

footer .row-copy-right {
  border-top: 1px solid #3B0100;
}

footer .row-copy-right p {
  font-size: 0.7rem;
  color: var(--white);
}

.logo-wsla {
  position: relative;
}

.logo-wsla img.hover {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  transition: 0.3s;
}

.logo-wsla:hover img.hover {
  opacity: 1;
}

@media (max-width: 991.9px) {
  footer img {
    width: 128px;
  }
}

@media (max-width: 767.9px) {
  footer img {
    width: 96px;
  }
}

/* === Cookies === */

.cookies {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  right: 0;
  width: 100%;
  background-color: var(--white);
}

.cookies p {
  font-size: 0.925rem;
  color: #555555;
}

.cookies button {
  color: #570100;
  font-size: 1.125rem;
  background-color: transparent;
  border: none;
}

/* === Hero === */

.hero {
  background-image: url('../imgs/bg-hero.png');
  background-size: cover;
}

.swiper-hero {
  height: 400px;
  clip-path: polygon(100% 0, 100% 83%, 70% 100%, 0 83%, 0 0);
}

html[dir="ltr"] .swiper-hero {
  clip-path: polygon(100% 0, 100% 83%, 30% 100%, 0 83%, 0 0);
}

.swiper-hero .swiper-slide>div {
  height: 100%;
}

.swiper-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s;
}

.hero .swiper-slide-active .img img {
  transform: scale(1.3);
}

.swiper-hero .swiper-slide .content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: 6.25rem 0;
}

.swiper-hero .swiper-slide .content>.container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 0 2.5rem;
}

.swiper-hero .swiper-slide .content h2,
.swiper-hero .swiper-slide .content p {
  font-size: 1.125rem;
  padding: 0.7rem 1.25rem;
  font-weight: 400;
  width: auto;
}

.swiper-hero .swiper-slide .content h2 {
  color: var(--white);
  background-color: rgba(124, 15, 3, 0.77);
  margin-bottom: 0.25rem;
}

.swiper-hero .swiper-slide .content p {
  color: #000;
  background-color: rgba(242, 217, 187, 0.77);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: unset;
}

.swiper-hero .swiper-button-next,
.swiper-hero .swiper-rtl .swiper-button-prev {
  right: calc(30% + 0.5rem);
  left: unset;
  bottom: 1rem;
  top: unset;
}

.swiper-hero .swiper-button-prev,
.swiper-hero .swiper-rtl .swiper-button-next {
  right: calc(30% - 2rem);
  left: unset;
  bottom: 1rem;
  top: unset;
}

html[dir="ltr"] .swiper-hero .swiper-button-next,
html[dir="ltr"] .swiper-hero .swiper-rtl .swiper-button-prev {
  left: calc(30% + 0.5rem);
  right: unset;
}

html[dir="ltr"] .swiper-hero .swiper-button-prev,
html[dir="ltr"] .swiper-hero .swiper-rtl .swiper-button-next {
  right: unset;
  left: calc(30% - 2rem);
}

.swiper-hero .swiper-button,
.swiper-hero .swiper-button svg [fill] {
  transition: 0.3s;
}

html[dir="ltr"] .swiper-hero .swiper-button {
  transform: rotate(180deg);
}

.swiper-hero .swiper-button:hover {
  transform: scale(1.1);
}

html[dir="ltr"] .swiper-hero .swiper-button:hover {
  transform: rotate(180deg) scale(1.1);
}

.swiper-hero .swiper-button:hover svg [fill] {
  fill: var(--main);
}

@media (max-width: 575.9px) {
  .swiper-hero {
    clip-path: unset !important;
  }

  .swiper-hero .swiper-slide .content {
    padding: 2.5rem 0;
  }

  .swiper-hero .swiper-button-prev,
  .swiper-hero .swiper-button-next {
    right: 1rem !important;
    top: 50%;
    left: unset !important;
  }

  html[dir="ltr"] .swiper-hero .swiper-button-prev,
  html[dir="ltr"] .swiper-hero .swiper-button-next {
    transform: rotate(360deg) !important;
  }

  .swiper-hero .swiper-button-next {
    right: unset !important;
    left: 1rem !important;
  }
}

/* === Main News === */

.main-news {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.main-news .img {
  position: relative;
}

.main-news .img img:not([class*="shape"]) {
  height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.main-news .img img[class*="shape"] {
  height: auto;
  max-height: 140px;
  width: auto;
  max-width: 70px;
  position: absolute;
  z-index: 9;
}

.main-news .img img.shape-top {
  right: 0.875rem;
  top: -1.5rem;
}

.main-news .img img.shape-bottom {
  left: 0.875rem;
  bottom: -1.5rem;
  transform: rotate(180deg);
}

html[dir="ltr"] .main-news .img img.shape-top {
  right: unset;
  left: 0.875rem;
}

html[dir="ltr"] .main-news .img img.shape-bottom {
  left: unset;
  right: 0.875rem;
}

.main-news .content-main-news {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.main-news .content-main-news h1 {
  font-size: 1.5rem;
  color: #131313;
  font-weight: 400;
}

.main-news .content-main-news h3 {
  font-size: 1.625rem;
  color: var(--main);
  font-family: 'Bold';
  margin: 0.25rem 0 1rem;
}

.main-news .content-main-news p {
  font-size: 1.0625rem;
  color: #000000;
  line-height: 1.8;
}

.main-news .content-main-news a {
  background-color: #E5BF92;
  display: flex;
  padding: 0.7rem;
  border-radius: 50%;
  transition: 0.3s;
}

html[dir="ltr"] .main-news .content-main-news a {
  transform: rotate(180deg);
}

.main-news .content-main-news a:hover {
  transform: scale(1.1);
}

html[dir="ltr"] .main-news .content-main-news a:hover {
  transform: rotate(180deg) scale(1.1);
}

@media (max-width: 767.9px) {
  .main-news .img img[class*="shape"] {
    max-height: 90px;
    max-width: 35px;
  }
}

/* === Some Articles === */

.some-articles {
  background-color: #F8EADA;
}

.some-articles .grid-some-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
}

.some-articles .box-article:nth-child(1) {
  grid-area: 1 / 1 / 3 / 3;
}

.some-articles .box-article:nth-child(2) {
  grid-area: 1 / 3 / 2 / 4;
}

.some-articles .box-article:nth-child(3) {
  grid-area: 2 / 3 / 3 / 4;
}

.some-articles .box-article {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.some-articles .box-article .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.some-articles .box-article .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.some-articles .box-article .content {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000, #54545400);
  z-index: 9;
  color: var(--white);
}

.some-articles .box-article .content h4 {
  font-size: 1.2rem;
  line-height: 1.5;
  transition: 0.3s;
}

.some-articles .box-article:hover h4 {
  color: #FFBBBB;
}

.some-articles .box-article:first-child .content h4 {
  font-size: 1.6rem;
}

.some-articles .box-article .tools a,
.some-articles .box-article .tools a svg [fill] {
  transition: 0.3s;
}

.some-articles .box-article .tools a:hover {
  transform: scale(1.1);
}

.some-articles .box-article .tools a:hover svg [fill] {
  fill: var(--main2);
}

.some-articles .box-article:hover .img img {
  transform: scale(1.1);
}

.lightbox {
  height: 100vh;
  top: 0 !important;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 991.9px) {
  .some-articles .box-article .tools {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 767.9px) {
  .some-articles .grid-some-articles {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
  }

  .some-articles .box-article:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
  }

  .some-articles .box-article:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
  }

  .some-articles .box-article:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
  }
}

@media (max-width: 575.9px) {
  .some-articles .grid-some-articles {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 180px 180px;
  }

  .some-articles .box-article:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
  }

  .some-articles .box-article:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
  }

  .some-articles .box-article:nth-child(3) {
    grid-area: 3 / 1 / 4 / 2;
  }
}

/* === Events And Departments === */

.events-departments {
  position: relative;
}

.events-departments::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  background-color: #F0DDCE;
  z-index: -1;
}

/* === Events === */

.title-section {
  text-align: center;
}

.title-section a {
  font-size: 1.5rem;
  color: #A14040;
  font-family: 'Bold';
  font-weight: 700;
}

.title-section+p {
  color: #2B2B2B;
  font-size: 0.9rem;
  text-align: center;
  font-family: 'Regular';
}

.box-event {
  width: 100%;
}

.box-event .img {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.box-event .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.box-event:hover .img img {
  transform: scale(1.1);
}

.box-event .img span {
  background-color: rgba(255, 255, 255, 0.77);
  padding: 0.6rem 1.5rem;
  color: #A14040;
  font-family: 'Bold';
  font-weight: 700;
  position: absolute;
  right: 0;
  bottom: 1.6rem;
  z-index: 9;
  min-width: 60%;
  text-align: center;
}

html[dir="ltr"] .box-event .img span {
  right: unset;
  left: 0;
}

.box-event .img+p {
  font-size: 1.25rem;
  color: #000000;
  line-height: 1.5;
  padding: 1.25rem;
  font-weight: 100;
  font-family: 'Regular';
  transition: 0.3s;
}

.box-event:hover .img+p {
  color: var(--main);
}

.departments {
  /* margin-bottom: -4.5rem; */
  padding-bottom: 3rem;
}

.departments a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #FEF3E7;
  padding: 1.7rem;
  border-radius: 5px;
  border: 1px solid #A75C5C;
  height: 100%;
  transition: 0.3s;
}

.departments a:hover {
  background-color: #F8EADA;
  transform: scale(1.05);
}

.departments a img {
  width: auto;
  height: 4.5rem;
  transition: 0.3s;
}

.departments a:hover img {
  transform: scale(1.1) rotate(5deg);
}

.departments a span {
  margin-top: 1.125rem;
  text-align: center;
  font-size: 1.125rem;
  color: #A14040;
  font-weight: 700;
  font-family: 'Bold';
}

/* .events-departments+div {
  padding-top: 4.5rem;
} */

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0% !important;
  }
}

/* === Ad === */

.ad {
  background-color: #F8EADA;
}

.ad a {
  width: 100%;
  display: flex;
  background-color: red;
}

.ad a img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* === Videos === */

.videos {
  background-color: #F8EADA;
}

.videos .all-videos {
  background-color: #3D1414;
  border-radius: 5px;
}

.videos .title-section {
  margin-bottom: 2rem;
}

.videos .title-section a {
  color: var(--white);
}

.videos h4,
.videos h4 a {
  font-size: 1.125rem;
  color: var(--white);
  text-align: center;
  font-family: 'Bold';
  font-weight: 700;
}

.list-video .row {
  width: 100%;
  margin: auto;
}

.list-video [class*="col-"] {
  padding: 0;
}

.list-video,
.videos .box-video {
  height: 500px;
}

.videos .box-video>div {
  height: 100% !important;
  padding: 0 !important;
  overflow: hidden;
}

.list-video [class*="col-"] {
  margin-bottom: 0.6rem;
}

.list-video [class*="col-"]:last-child {
  margin-bottom: 0;
}

.list-video .img {
  width: 120px;
  flex: 0 0 120px;
  height: 100px;
  position: relative;
}

.list-video .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-video .img span {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 9;
  opacity: 0.86;
  display: flex;
}

.list-video a p {
  color: var(--white);
  font-size: 1.0625rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 100;
  font-family: 'Regular';
  transition: 0.3s;
}

.list-video a.active p {
  color: #F2D9BB;
}

.list-video a.active span {
  animation: fadeIn 0.8s linear infinite alternate;
}

.all-videos .os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle {
  background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991.9px) {
  .list-video {
    height: 250px;
  }
}

@media (max-width: 767.9px) {

  .list-video,
  .videos .box-video,
  .videos .video-js .vjs-tech {
    height: 350px !important;
  }
}

@media (max-width: 429.9px) {
  .list-video .img {
    width: 100px;
    flex: 0 0 100px;
    height: 88px;
  }

  .list-video .img span svg {
    width: 2.5rem;
    height: auto;
  }
}

@media (max-width: 369.9px) {
  .list-video .img {
    width: 90px;
    flex: 0 0 90px;
    height: 80px;
  }

  .list-video .img span svg {
    width: 2rem;
    height: auto;
  }

  .list-video,
  .videos .box-video,
  .videos .video-js .vjs-tech {
    height: 240px !important;
  }
}

/* === Partners === */

.partners {
  background-color: #F8EADA;
}

.partners .swiper-button-next,
.partners .swiper-button-prev {
  position: static !important;
  transition: 0.3s;
}

html[dir="ltr"] .partners .swiper-button-next,
html[dir="ltr"] .partners .swiper-button-prev {
  transform: rotate(180deg);
}

.partners .swiper-button-next svg [fill],
.partners .swiper-button-prev svg [fill] {
  transition: 0.3s;
}

.partners .swiper-button-next:hover,
.partners .swiper-button-prev:hover {
  transform: scale(1.1);
}

html[dir="ltr"] .partners .swiper-button-next:hover,
html[dir="ltr"] .partners .swiper-button-prev:hover {
  transform: rotate(180deg) scale(1.1);
}

.partners .swiper-button-next:hover svg [fill],
.partners .swiper-button-prev:hover svg [fill] {
  fill: var(--main);
}

.partners .swiper-slide {
  text-align: center;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners .swiper-slide a {
  width: 100%;
}

.partners .swiper-slide a img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 120px;
  filter: grayscale(1);
  transition: 0.3s;
}

.partners .swiper-slide a img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* === Gallery === */

.gallery {
  background-color: #F8EADA;
}

.row-gallery>* {
  display: flex;
}

.box-gallery {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}

.box-gallery::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.box-gallery>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.box-gallery span {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-gallery span b {
  margin-top: 0.5rem;
  color: var(--white);
  font-size: 1.1rem;
  font-family: 'Bold';
  display: none;
  text-align: center;
}

.box-gallery:hover::before {
  background-color: rgba(0, 0, 0, 0.6);
}

.box-gallery:hover span b {
  display: block;
  animation: fadeIn 0.3s linear;
}

.box-gallery~a {
  display: none;
}

.box-gallery:hover>img {
  transform: scale(1.1);
}

/* === Numbers === */

.numbers {
  background-color: #E5BF92;
}

.numbers .box-number {
  background-color: #FEF3E7;
  border-radius: 5px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

.numbers .box-number:hover {
  transform: scale(1.025);
}

.numbers .box-number h5 {
  font-size: 1.25rem;
  color: #711817;
  font-family: 'Bold';
  text-align: center;
  font-weight: 700;
}

.numbers .box-number b {
  margin: 1.5rem 0;
  font-size: 3.125rem;
  color: #A14040;
  font-family: 'Bold';
  font-weight: 700;
  text-align: center;
}

.numbers .box-number h6 {
  font-weight: 400;
  color: #131313;
  text-align: center;
  font-size: 1.125rem;
}

/* === Hero Other === */

.hero-other {
  background-color: #F8EADA;
  background-image: url('../imgs/bg-hero-other.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 5rem;
}

.hero-other>img {
  width: 100%;
  /*min-height: 220px;*/
  min-height: 400px;
  height: auto;
  max-height: 260px;
  object-fit: cover;
}

.hero-other,
.hero-other>img {
  clip-path: polygon(100% 0, 100% 83%, 70% 100%, 0 83%, 0 0);
}

html[dir="ltr"] .hero-other,
html[dir="ltr"] .hero-other>img {
  clip-path: polygon(100% 0, 100% 83%, 30% 100%, 0 83%, 0 0);
}

.hero-other>.container {
  padding-top: 1rem;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

@media (max-width: 991.9px) {
  .hero-other {
    padding-bottom: 3rem;
  }

  .hero-other,
  .hero-other>img {
    clip-path: polygon(100% 0, 100% 88%, 70% 100%, 0 88%, 0 0);
  }

  html[dir="ltr"] .hero-other,
  html[dir="ltr"] .hero-other>img {
    clip-path: polygon(100% 0, 100% 88%, 30% 100%, 0 88%, 0 0);
  }
}

@media (max-width: 575.9px) {

  .hero-other,
  .hero-other>img {
    clip-path: unset !important;
  }

  .hero-other {
    padding-bottom: 1rem;
  }
}

/* === Bread Crumb === */

.links-breadcrumb a {
  font-size: 1.1rem;
  color: #C7A379;
  transition: 0.3s;
}

.links-breadcrumb a:hover {
  color: #bb986f;
  transform: scale(1.025);
}

.links-breadcrumb a::after {
  content: "";
  background-image: url(../imgs/arrow.svg);
  background-size: 8px auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 10px;
  display: inline-block;
}

.links-breadcrumb a:hover::after {
  transform: scale(1);
}

html[dir="ltr"] .links-breadcrumb a::after {
  transform: rotateY(180deg);
}

.links-breadcrumb a:last-child::after {
  content: unset;
}

/* === Loading & Pagination === */

.loading img {
  animation: rotateInfinite infinite 0.7s linear both;
}

.pagination a {
  color: #4A4A4A;
  font-size: 1.6rem;
  width: 2.3rem;
  height: 2.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.pagination a:last-child {
  margin: 0 !important;
}

.pagination a.active {
  color: #A14040;
  border: 1px solid #A14040;
  border-radius: 5px;
  background-color: var(--white);
}

.pagination a img {
  width: 1.5rem;
  height: auto;
}

html[dir="ltr"] .pagination a img {
  transform: rotateY(180deg);
}

/* === Result Search === */

.container-search input,
.container-search select,
.container-search textarea {
  background-color: #F9F9F9;
  padding: 0.925rem 1.125rem;
  border: 1px solid #DFDFDF;
  font-size: 0.925rem;
  color: var(--dark);
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

.container-search input:focus,
.container-search select:focus,
.container-search textarea:focus {
  box-shadow: 0 0 20px #CECECE;
}

.container-search textarea {
  resize: none;
  height: 150px;
}

.container-search input::placeholder,
.container-search textarea::placeholder {
  color: #BCBCBC;
}

.container-search input[type="submit"] {
  color: #fff;
  background-color: #A14040;
  border-color: #FFE7CC;
  cursor: pointer;
  transition: 0.3s;
  padding: 0.925rem 2rem;
}

.container-search input[type="submit"]:hover {
  background-color: #943838;
}

.container-search .word-search {
  color: #A14040;
  font-size: 0.925rem;
}

.container-search .word-search span,
.container-search .nums-result-search {
  color: #2F4154;
  font-size: 0.925rem;
}

/* === Call Us === */

.info-us {
  font-size: 1.3rem;
  color: #4A4A4A;
  line-height: 1.6;
}

.form-call-us *:is(input, textarea, select) {
  border: none;
}

.form-call-us input[type="submit"] {
  width: auto;
}

.form-call-us label {
  color: #2E3B52;
  font-size: 1.15rem;
}

.star-red {
  color: #FF0404;
  font-size: 1.5rem;
}

.form-call-us input.not-valid {
  border-color: #D72828;
}

.form-call-us input+small {
  margin-top: 0.25rem;
  color: #D72828;
  font-size: 0.625rem;
  display: none;
}

.form-call-us input+small {
  font-size: 0.9rem;
}

.form-call-us input.not-valid+small {
  display: block;
}

.msg-over {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 99999;
  padding: 1rem;
  border-radius: 5px;
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  font-size: 1rem;
}

.msg-over.fail {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* === Details === */

.details-news .text {
  text-align: center;
}

.details-news .text h2,
.details-news .text p {
  color: #A75C5C;
  font-size: 1.875rem;
  font-weight: 100;
  font-family: 'Regular';
}

.details-news .text h1 {
  color: #A14040;
  font-size: 2.56rem;
  font-family: 'Bold';
}

.details-news .text p {
  color: #2B2B2B;
}

.details-news .text span {
  font-size: 1.125rem;
  color: #A75C5C;
  font-family: 'Regular';
}

.details-news .img.main-img {
  position: relative;
  height: 500px;
}

.details-news .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-news .img p {
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.55);
  color: #000000;
  position: absolute;
  bottom: 2rem;
  right: 1rem;
  width: calc(100% - 2rem);
  font-size: 1.4rem;
}

.details-news .share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  color: var(--white);
  margin: 0.5rem 0;
}

.details-news .share a.share-facebook {
  background-color: #4167B2;
}

.details-news .share a.share-twitter {
  background-color: #55ACEF;
}

.details-news .share a.share-whatsapp {
  background-color: #26D367;
}

.details-news .share a.share-messenger {
  background-color: #438AFD;
}

.details-news .share a.share-telegram {
  background-color: #0087CD;
}

.details-news .share a svg {
  width: auto;
  height: auto;
  max-height: 1.33rem;
  max-width: 1.66rem;
  margin-inline-end: 0.5rem;
}

.details-news .writer .img img {
  object-fit: cover;
  border-radius: 50%;
  border: 9px solid #F2D9BB;
  width: 88px;
  height: 88px;
}

.details-news .writer h4 {
  font-size: 1.25rem;
  color: #A14040;
  font-family: 'Bold';
}

.details-news .writer span {
  font-size: 0.875rem;
  color: #2B2B2B;
}

.details-news .content p {
  font-size: 1.5rem;
  color: #2B2B2B;
  line-height: 1.8;
}

.details-news .video-youtube iframe {
  width: 100%;
  min-height: 480px;
  height: auto;
}

.details-news .gallery a {
  display: flex;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.details-news .gallery a img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.details-news .gallery a .over {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}

.details-news .gallery a span {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 7;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}

html[dir="ltr"] .details-news .gallery a span {
  left: unset;
  right: 0.75rem;
}

.details-news .gallery a span svg {
  width: 2rem;
  height: auto;
}

.details-news .gallery a .over p {
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.7;
  position: static;
  padding: 0;
  background-color: transparent;
}

.details-news .gallery a:hover .over,
.details-news .gallery a:hover span {
  opacity: 1;
}

.details-news .files-download img {
  width: 1.5rem !important;
  height: auto !important;
  transition: 0.3s;
}

.details-news .files-download a {
  color: #A14040;
  font-weight: 700;
  font-family: 'Bold';
  font-size: 1rem;
}

.details-news .files-download {
  font-size: 1.15rem;
  color: #2B2B2B;
}

.files-download>div:hover img {
  transform: scale(1.1);
}

.details-news .tags a {
  padding: 0.75rem 1rem;
  background-color: #A14040;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
  margin: 0.5rem 0;
}

.details-news .tags a:hover {
  background-color: #8d3535;
}

.details-news .other-articles h5 {
  font-size: 3.125rem;
  font-family: 'Bold';
  color: #A14040;
  position: relative;
}

.details-news .other-articles h5::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: #E5BF92;
  top: 50%;
  margin-inline-start: 0.75rem;
  transform: translateY(50%);
}

.details-news .other-articles a svg {
  width: 0.55rem;
  height: auto;
}

html[dir="ltr"] .details-news .other-articles a svg {
  transform: rotateY(180deg);
}

.details-news .other-articles a {
  font-size: 1.4rem;
  color: #4A4A4A;
  transition: 0.3s;
}

.aside-details .box-article-1 .img {
  flex: 0 0 100% !important;
  width: 100% !important;
}

.details-news .other-articles a:hover {
  transform: translateX(-10px);
}

html[dir="ltr"] .details-news .other-articles a:hover {
  transform: translateX(10px);
}

blockquote {
  border: 2px solid #ccc;
  border-right: 0;
  border-left: 0;
  padding: 1rem;
  margin: 3rem;
  position: relative;
}

blockquote::before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 40px;
  background: #F8EADA;
  color: #277bc0;
  width: 55px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('../imgs/quotes.png');
  background-position: center;
}

html[dir="ltr"] blockquote::before {
  left: unset;
  right: 40px;
  transform: rotateY(180deg);
}

/* === Copy URL === */

.copy-url a svg {
  width: 1.33rem;
  height: auto;
}

.copy-url span {
  background-color: #F6F6F6;
  color: #97919E;
  padding: 0.4rem 0.8rem;
  border-radius: 24px;
  font-size: 1rem;
}

.copy-url b {
  font-size: 0.85rem;
  display: none;
}

.copy-url b.show {
  display: inline-flex;
  animation: fadeIn 0.3s linear;
}

.copy-url b svg {
  width: 1.125rem;
  height: auto;
}

/* === Audio Player === */



.title-sound {
  font-size: 1.8rem;
  font-family: 'Bold';
  color: #2E3B52;
  position: relative;
}

/* Audio Player */

.audioplayer {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  padding: 12px 24px;
  width: 100%;
  align-items: center;
  border: 1px solid #DDE2E6;
  border-radius: 4px;
  background: #fff;
  direction: ltr;
}

.audioplayer-playpause {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
  background: rgba(91, 130, 255, 0);
  border: 1px solid #55317c;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause:hover {
  background: #F1B936;
  border-color: #F1B936;
}

.audioplayer-playing .audioplayer-playpause {
  background: rgba(253, 79, 26, 0);
  border: 1px solid #FD4F1A;
}

.audioplayer-playing .audioplayer-playpause:hover {
  background: rgba(235, 79, 26, 0.1);
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
  content: '';
  justify-content: center;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-right: none;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #4a2770;
}

.audioplayer-playing .audioplayer-playpause a {
  content: '';
  display: flex;
  justify-content: space-between;
  width: 12px;
  height: 14px;
}

.audioplayer-playing .audioplayer-playpause a::before,
.audioplayer-playing .audioplayer-playpause a::after {
  content: '';
  width: 4px;
  height: 14px;
  background-color: #FD4F1A;
}

.audioplayer-time {
  display: flex;
  width: 40px;
  justify-content: center;
  font-size: 12px;
  color: rgba(51, 51, 51, .6)
}

.audioplayer-time-current {
  margin-left: 24px;
}

.audioplayer-time-duration {
  margin-right: 24px;
}

.audioplayer-bar {
  position: relative;
  display: flex;
  margin: 0 12px;
  height: 12px;
  flex-basis: 0;
  flex-grow: 1;
  cursor: pointer;
}

.audioplayer-bar::before {
  content: '';
  position: absolute;
  top: 5px;
  width: 100%;
  height: 2px;
  background-color: #DDE2E6;
}

.audioplayer-bar>div {
  position: absolute;
  left: 0;
  top: 5px;
}

.audioplayer-bar-loaded {
  z-index: 1;
  height: 2px;
  background: #BEC8D2;
}

.audioplayer-bar-played {
  flex-direction: row-reverse;
  z-index: 2;
  height: 2px;
  background: -webkit-linear-gradient(left, #4a2770, #09B1FA);
}

.audioplayer-bar-played::after {
  display: flex;
  position: absolute;
  content: '';
  box-sizing: border-box;
  top: -5px;
  right: -1px;
  margin-right: -5px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 6px;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-bar-played::after {
  border: 2px solid #BEC8D2;
}

.audioplayer-playing .audioplayer-bar-played::after {
  border: 2px solid #4a2770;

}

.audioplayer-volume {
  display: flex;
  align-items: center;
}

.audioplayer-volume-button {
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.audioplayer-volume-button a {
  display: flex;
  width: 6px;
  height: 8px;
  background-color: #9A9FB0;
  position: relative;
}

.audioplayer-volume-button a:before,
.audioplayer-volume-button a:after {
  content: '';
  position: absolute;
}

.audioplayer-volume-button a:before {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 9px solid #9A9FB0;
  border-bottom: 8px solid transparent;
  border-left: none;
  top: -4px;
}

.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
  left: 10px;
  top: -2px;
  width: 6px;
  height: 6px;
  border: 6px double #9A9FB0;
  border-width: 6px 6px 0 0;
  border-radius: 0 12px 0 0;
  transform: rotate(45deg);
}

.audioplayer-mute .audioplayer-volume-button a {
  background-color: #FD4F1A;
}

.audioplayer-mute .audioplayer-volume-button a:before {
  border-right: 9px solid #FD4F1A;
}

.audioplayer-volume-adjust {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.audioplayer-volume-adjust>div {
  position: relative;
  display: flex;
  width: 60px;
  height: 2px;
  cursor: pointer;
  background-color: #BEC8D2;
}

.audioplayer-volume-adjust div div {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background-color: #4a2770;
}

/* responsive | you can change the max-width value to match your theme */

@media screen and (max-width: 679px) {
  .audioplayer-volume-adjust {
    display: none;
  }
}

/* === Animation === */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes rotateInfinite {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}