@charset "UTF-8";
/*=============== FONTS ===============*/
@font-face {
  font-family: "Ping AR + LT";
  src: url("../fonts/PingARLT-Regular.woff2") format("woff2"), url("../fonts/PingARLT-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ping AR + LT";
  src: url("../fonts/PingARLT-Medium.woff2") format("woff2"), url("../fonts/PingARLT-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ping AR + LT";
  src: url("../fonts/PingARLT-Bold.woff2") format("woff2"), url("../fonts/PingARLT-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ping AR + LT";
  src: url("../fonts/PingARLT-Light.woff2") format("woff2"), url("../fonts/PingARLT-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?meefpp");
  src: url("../fonts/icomoon.eot?meefpp#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?meefpp") format("truetype"), url("../fonts/icomoon.woff?meefpp") format("woff"), url("../fonts/icomoon.svg?meefpp#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-twitter-x:before {
  content: "";
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Ping AR + LT", sans-serif;
  font-size: 16px;
  background-color: #F7F7F7;
  color: #111111;
  transition: 0.3s;
  /* For animation dark mode */
}

h1,
h2,
h3 {
  color: #111111;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  outline: none;
  border: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.grid {
  display: grid;
}

.section {
  padding: 4rem 0 4rem;
}

.section_title {
  position: relative;
  font-weight: bold;
  font-size: 20px;
  color: #282626;
  margin-bottom: 10px;
}
.section_title span {
  color: var(--second-color);
}

.section_subtitle {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #777E90;
}

.main {
  overflow: hidden;
  /* For the animations ScrollReveal*/
}
.main .main-content-inner {
  padding-top: 106px;
}

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

/*=============== HEADER & NAV ===============*/
header.main-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 20px 0;
  z-index: 100;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header.main-header .inner-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header.main-header .inner-header .logo {
  max-width: 170px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .logo img {
  width: 100%;
}
header.main-header .inner-header .nav-links nav .nav-items {
  list-style: none;
  margin: 0;
}
header.main-header .inner-header .nav-links nav .nav-items > li {
  position: relative;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links nav .nav-items > li a {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links nav .nav-items > li a::before {
  content: " ";
  width: 0;
  height: 4px;
  background-color: #FFE300;
  display: block;
  position: absolute;
  bottom: -5px;
  right: 20px;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links nav .nav-items > li.active a {
  color: #FFE300;
}
header.main-header .inner-header .nav-links nav .nav-items > li.active a::before {
  content: " ";
  width: 17px;
  height: 4px;
  background-color: #FFE300;
  display: block;
  position: absolute;
  bottom: -5px;
  right: 20px;
  opacity: 1;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links nav .nav-items > li:hover a {
  color: #FFE300;
}
header.main-header .inner-header .nav-links nav .nav-items > li:hover a::before {
  content: " ";
  width: 17px;
  height: 4px;
  background-color: #FFE300;
  display: block;
  position: absolute;
  bottom: -5px;
  right: 20px;
  opacity: 1;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links nav .nav-items > li:last-child a {
  padding-left: 0;
}
header.main-header .inner-header .dropdown-wrapper {
  background: transparent;
  border: 0;
  box-shadow: none;
  min-width: auto;
  outline: none;
}
header.main-header .inner-header .dropdown-wrapper .dropdown-toggle {
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  font-size: 15px;
}
header.main-header .inner-header .dropdown-wrapper .dropdown-toggle::after {
  content: "";
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  vertical-align: middle;
  border: 0;
}
header.main-header .inner-header .dropdown-wrapper .dropdown-menu {
  border-color: #fff;
  padding: 0;
  min-width: 220px;
}
header.main-header .inner-header .dropdown-wrapper .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
}
header.main-header .inner-header .dropdown-wrapper .dropdown-menu .dropdown-item.active, header.main-header .inner-header .dropdown-wrapper .dropdown-menu .dropdown-item:active {
  background-color: #F1F4FC;
}
header.main-header .inner-header .dropdown-wrapper .dropdown-menu .dropdown-item:hover {
  background-color: #F1F4FC;
}
header.main-header .social > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
header.main-header .social li {
  position: relative;
  display: inline-block;
}
header.main-header .social li a:not(.dropdown-item) {
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 50px;
  line-height: 40px;
  font-size: 18px;
  text-align: center;
  background-color: #f6f7fd;
  color: #111111;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  box-shadow: 0px 2px 10px #e8e8e8;
}
header.main-header .social li a:not(.dropdown-item).toggle-theme {
  line-height: 42px;
}
header.main-header .social li a:not(.dropdown-item).language-item {
  line-height: 36px;
}
header.main-header .social li a:not(.dropdown-item).language-item.arabic {
  line-height: 30px;
}
header.main-header .social li:hover a.toggle-theme {
  background-color: #111111;
  color: #fff;
}
header.main-header .social ul > li:last-child {
  margin-left: 0;
}
header.main-header .social ul > li:last-child::after {
  display: none;
}
header.main-header .social .dropdown-wrapper .dropdown-toggle {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  font-size: 18px;
  text-align: center;
  background-color: #f6f7fd;
  color: #111111;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  box-shadow: 0px 2px 10px #e8e8e8;
}
header.main-header .social .dropdown-wrapper .dropdown-toggle::after {
  display: none;
}
header.main-header .social .dropdown-wrapper .dropdown-menu {
  min-width: 100px;
  box-shadow: 0px 2px 10px #e8e8e8;
  border: 0;
  margin-top: 15px;
}
header.main-header .social .dropdown-wrapper .dropdown-menu li {
  display: block;
}
header.main-header .social .dropdown-wrapper .dropdown-menu .dropdown-item {
  box-shadow: none;
}
header.main-header .social .dropdown-wrapper .dropdown-menu::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 2px;
  z-index: -1;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #ffffff;
  border-left: 15px solid transparent;
}
header.main-header.fixed-header {
  background-color: #002961;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  padding: 10px 20px;
  -webkit-backdrop-filter: blur(5px);
  /* Use for Safari 9+, Edge 17+ (not a mistake) and iOS Safari 9.2+ */
  backdrop-filter: blur(5px);
  /* Supported in Chrome 76 */
}
header.main-header.fixed-header .inner-header .logo {
  max-width: 150px;
}
header.main-header.fixed-header .inner-header .nav-links nav .nav-items > li {
  color: #fff;
}

@media (max-width: 567px) {
  header.main-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  header.main-header .container {
    padding: 0;
  }
}
#m-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(54, 68, 87, 0.6);
  z-index: 2222222;
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
#m-menu.active {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}
#m-menu .toggle-nav {
  position: absolute;
  top: 20px;
  left: 24%;
  cursor: pointer;
  z-index: 2222;
}
#m-menu .toggle-nav .fa,
#m-menu .toggle-nav i {
  color: #fff;
  font-size: 30px;
}
#m-menu .toggle-nav span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .toggle-nav span:nth-child(2) {
  width: 14px;
}
#m-menu .toggle-nav.active span:nth-child(2) {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  opacity: 0;
}
#m-menu .toggle-nav.active span:nth-child(1) {
  -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
  transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
}
#m-menu .toggle-nav.active span:nth-child(3) {
  -webkit-transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
  transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
}
#m-menu .nav-items {
  width: 80%;
  height: 100%;
  min-height: 100vh;
  display: block;
  text-align: right;
  background: #002961;
  padding: 0;
}
#m-menu .nav-items li {
  position: relative;
  font-weight: 500;
  display: block;
  color: #fff;
  font-size: 17px;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .nav-items li a span {
  position: relative;
}
#m-menu .nav-items li:last-child::after {
  display: none;
}
#m-menu .nav-items li:last-child .btn-custom.primary {
  box-shadow: none;
}
#m-menu .nav-items li .nav-link {
  position: relative;
  padding: 15px 30px;
  display: block;
  color: inherit;
  text-align: right;
  z-index: 2;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .nav-items li .nav-link::before {
  content: " ";
  width: 0;
  height: 4px;
  background-color: #FFE300;
  display: block;
  position: absolute;
  bottom: 0;
  right: 30px;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .nav-items li:hover {
  color: #fff;
}
#m-menu .nav-items li:hover::after {
  width: 100%;
}
#m-menu .nav-items li.logo .nav-link {
  display: inline-block !important;
}
#m-menu .nav-items li.active .nav-link {
  color: #FFE300;
}
#m-menu .nav-items li.active .nav-link::before {
  content: " ";
  width: 20px;
  opacity: 1;
  height: 4px;
  background-color: #FFE300;
  display: block;
  position: absolute;
  bottom: 0;
  right: 30px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .nav-items .dropdown-mob-wrapper {
  background: transparent;
  border: 0;
  box-shadow: none;
  min-width: auto;
  outline: none;
}
#m-menu .nav-items .dropdown-mob-wrapper .dropdown-toggle {
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  font-size: 15px;
}
#m-menu .nav-items .dropdown-mob-wrapper .dropdown-toggle::after {
  content: "";
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  vertical-align: middle;
  border: 0;
}
#m-menu .nav-items .dropdown-mob-wrapper .dropdown-menu {
  border-color: #fff;
  padding: 0;
  min-width: 220px;
  position: relative !important;
  width: 100%;
  height: auto;
  top: 0 !important;
  transform: none !important;
}
#m-menu .nav-items .dropdown-mob-wrapper .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
}
#m-menu .nav-items .dropdown-mob-wrapper .dropdown-menu .dropdown-item.active, #m-menu .nav-items .dropdown-mob-wrapper .dropdown-menu .dropdown-item:active {
  background-color: #F1F4FC;
}
#m-menu .nav-items .dropdown-mob-wrapper .dropdown-menu .dropdown-item:hover {
  background-color: #F1F4FC;
}
#m-menu .social {
  display: block;
  padding: 15px 20px;
  text-align: right;
}
#m-menu .social a:not(.dropdown-item) {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50px;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  background-color: #f6f7fd;
  color: #111111;
  box-shadow: 20px 20px 45px rgba(119, 126, 144, 0.3);
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .social a:not(.dropdown-item).toggle-theme-mob {
  line-height: 50px;
}
#m-menu .social a:not(.dropdown-item).language-item {
  line-height: 36px;
}
#m-menu .social a:not(.dropdown-item).language-item.arabic {
  line-height: 28px;
  font-size: 16px;
}
#m-menu .social a:not(.dropdown-item):last-child {
  margin-left: 0;
}
#m-menu .social a:not(.dropdown-item):hover {
  background-color: #111111;
  color: #fff;
}
#m-menu .social .dropdown-mob-wrapper {
  padding: 0 0 15px 0;
}
#m-menu .social .dropdown-mob-wrapper .dropdown-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 18px;
  text-align: center;
  background-color: #f6f7fd;
  color: #111111;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  box-shadow: 0px 2px 10px #e8e8e8;
}
#m-menu .social .dropdown-mob-wrapper .dropdown-toggle::after {
  display: none;
}
#m-menu .social .dropdown-mob-wrapper .dropdown-menu {
  min-width: 150px;
}
#m-menu .social .dropdown-mob-wrapper .dropdown-menu li {
  display: block;
}
#m-menu .social .dropdown-mob-wrapper .dropdown-menu .dropdown-item {
  box-shadow: none;
}

@media (min-width: 1200px) {
  header .toggle-nav {
    display: none;
  }
}
@media (max-width: 1200px) {
  header nav,
header .social ul {
    display: none !important;
  }
  header .toggle-nav {
    margin-top: 0;
    line-height: 0;
    margin-left: 0px;
  }
  header .toggle-nav .toggle-btn {
    background: none;
    border: none;
    outline: 0;
  }
  header .toggle-nav .toggle-btn svg {
    transform: rotate(180deg);
  }
  header .toggle-nav .toggle-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #111111;
    margin-bottom: 5px;
    border-radius: 5px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  header .toggle-nav .toggle-btn span:nth-child(2) {
    width: 14px;
  }
  header .toggle-nav .toggle-btn.active span:nth-child(2) {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  header .toggle-nav .toggle-btn.active span:nth-child(1) {
    -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
    transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
  }
  header .toggle-nav .toggle-btn.active span:nth-child(3) {
    -webkit-transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
    transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
  }
  header .toggle-nav .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    -webkit-transform: translateX(270px);
    transform: translateX(270px);
    -webkit-box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
  header .toggle-nav .mobile-menu .mobile-menu-items {
    background-color: #ffffff;
    margin: 0;
    width: 270px;
    height: 100%;
    overflow: auto;
    list-style: none;
    padding: 0;
  }
  header .toggle-nav .mobile-menu-items li {
    padding: 15px 23px;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 400;
    color: #3C2663;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
  }
  header .toggle-nav .mobile-menu-items li a {
    color: inherit;
    text-decoration: none;
  }
  header .toggle-nav .mobile-menu-items li a.myaccount i {
    margin-left: 10px;
  }
  header .toggle-nav .mobile-menu-items li.lang .nice-select {
    float: none;
    text-align: right !important;
  }
  header .toggle-nav .mobile-menu-items li.lang .nice-select .list {
    width: 100%;
  }
  header .toggle-nav .mobile-menu.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
}
/*=============== HOME ===============*/
.home {
  position: relative;
  background-image: url(../img/main-home-section.webp);
  background-image: image-set(url(../img/main-home-section.webp) type("image/webp"), url(../img/main-home-section.jpg) type("image/png"));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 5rem 0 10rem 0 !important;
}
.home .home_contnet {
  position: relative;
  z-index: 22;
}
.home .home_contnet .slide_text {
  padding-left: 71px;
  text-align: right;
}
.home .home_contnet .slide_text h3 {
  font-weight: bold;
  font-size: 55px;
  color: #FFE300;
}
.home .home_contnet .slide_text h2 {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}
.home .home_contnet .slide_text p {
  font-weight: 400;
  color: #111111;
  font-size: 18px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .home .home_contnet .slide_text h3 {
    font-size: 25px;
  }
}
.home .home_contnet .slide_image {
  display: block;
  padding-top: 60px;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.home .home_contnet .slide_image > img {
  max-width: 100%;
  border-radius: 22px;
  transform: rotate(3deg);
}
.home .home_contnet .slide_image .wolves {
  position: absolute;
  bottom: -40px;
  left: -40px;
}
.home .home_contnet .slide_image .wolves img {
  max-width: 200px;
}
@media (max-width: 600px) {
  .home .home_contnet .slide_image > img {
    max-width: 100%;
  }
  .home .home_contnet .slide_image .wolves {
    bottom: -20px;
    left: 0px;
  }
  .home .home_contnet .slide_image .wolves img {
    max-width: 100px;
  }
}
@media (max-width: 567px) {
  .home .home_contnet .slide_image {
    padding: 45px 0 0 0;
    margin: 0 auto;
  }
}
.home .swiper-container {
  width: 100%;
  height: 100%;
}
.home .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow-x: visible;
}
@media (max-width: 991px) {
  .home .swiper-slide {
    overflow: hidden;
  }
}
.home .swiper-pagination {
  position: absolute;
  bottom: 0;
  right: 60px;
  width: auto !important;
  left: auto !important;
  margin: 0;
}
.home .swiper-pagination-bullet {
  position: relative;
  font-weight: bold;
  padding: 0px 5px;
  border-radius: 0;
  width: auto;
  text-align: right;
  font-size: 20px;
  background-color: transparent;
  color: #FFE300;
  opacity: 1;
  display: none;
}
.home .swiper-pagination-bullet .b-title {
  font-weight: 400;
  display: block;
  font-size: 12px;
  color: #fff;
  display: none;
}
.home .swiper-pagination-bullet-active {
  font-weight: bold;
  background-color: transparent;
  color: #FFE300;
  display: block;
}
.home .social {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 222;
  text-align: center;
}
.home .social ul {
  padding: 0;
  margin: 0;
}
.home .social ul li {
  margin: 15px 0;
}
.home .social::before {
  content: "";
  width: 1px;
  height: 50px;
  background: #FFE300;
  display: block;
  position: absolute;
  left: 50%;
  top: -30%;
}
.home .social::after {
  content: "";
  width: 1px;
  height: 50px;
  background: #FFE300;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -30%;
}
.home.inside {
  background-image: url(../img/main-home-inside.webp);
  background-image: image-set(url(../img/main-home-inside.webp) type("image/webp"), url(../img/main-home-inside.png) type("image/png"));
  min-height: 350px;
  padding: 5rem 0 4rem 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home.inside.mini {
  min-height: 250px;
}
.home.inside .title {
  background-image: url(../img/title-pattern.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home.inside .title h1 {
  color: #FFE300;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
}

.custom-swiper-controls {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0 10%;
}
.custom-swiper-controls .custom-button-next,
.custom-swiper-controls .custom-button-prev {
  width: 38px;
  height: 38px;
  border-radius: 19px;
  background: transparent;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}
.custom-swiper-controls .custom-button-next {
  transform: rotate(180deg);
}
.custom-swiper-controls .swiper-pagination {
  position: relative;
  right: 0;
  bottom: 10px;
}

/*=============== Next Matches ===============*/
.next-matches {
  padding-top: 0 !important;
}
.next-matches .swiper-container {
  margin-top: 50px;
}
.next-matches .match-item {
  position: relative;
  background: #fff;
  border-radius: 25px;
  padding: 20px 30px 20px 30px;
  transition: all 300ms ease-in-out;
}
.next-matches .match-item:hover {
  box-shadow: 20px 20px 20px 10px rgba(17, 17, 17, 0.02);
  transform: translateY(-10px);
}
.next-matches .match-item .tournament {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.next-matches .match-item .tournament img {
  max-width: 45px;
}
.next-matches .match-item .tournament span {
  font-size: 14px;
  display: inline-block;
  color: #111111;
  margin-right: 5px;
}
@media (max-width: 567px) {
  .next-matches .match-item .tournament span {
    font-size: 14px;
  }
}
.next-matches .match-item .tournament .white-rsl {
  display: none;
}
.next-matches .match-item .match-info {
  position: relative;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.next-matches .match-item .match-info .vs {
  font-weight: bold;
  text-align: center;
  font-size: 13px;
  color: #312E43;
}
.next-matches .match-item .match-info .vs img {
  max-height: 75px;
  display: block;
  margin: 0 auto 10px;
}
.next-matches .match-item .match-info .match-date {
  font-weight: 400;
  text-align: center;
  font-size: 14px;
  color: #707070;
}
.next-matches .match-item .match-info .match-date .time {
  margin-top: 5px;
  font-weight: 400;
  direction: ltr;
}
.next-matches .match-item .match-info .match-date .stade {
  font-size: 11px;
  margin-top: 5px;
}
.next-matches .match-item .match-info .match-date .stade img {
  margin-left: 5px;
  max-width: 15px;
}
.next-matches .match-item .match-info .reserve-now {
  background-color: #FFE300;
  color: #002961;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 12px;
  margin-top: 10px;
  transition: all 300ms ease-in-out;
  display: none;
}
.next-matches .match-item .match-info .reserve-now:hover {
  background-color: #FFE300;
  color: #002961;
}
.next-matches .match-item .reserve-now.wide {
  font-weight: 500;
  width: 100%;
  text-align: center;
  background-color: #FFFFFF;
  border: 1px solid #002961;
  color: #002961;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  margin-top: 30px;
  transition: all 300ms ease-in-out;
}
.next-matches .match-item .reserve-now.wide:hover {
  background-color: #002961;
  color: #fff;
}
.next-matches .match-item .match-soon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 244, 252, 0.6);
  border-radius: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 30px;
  -webkit-backdrop-filter: blur(0.6px);
  backdrop-filter: blur(0.6px);
  font-weight: bold;
  z-index: 22;
}
.next-matches .match-item .match-soon span {
  width: 70px;
  background: #fef205;
  font-size: 13px;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 30px;
  color: #111;
  padding: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.next-matches .match-item .stade-label {
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 8px;
  color: #002961;
  font-weight: 500;
  font-size: 14px;
  background-color: #FFE300;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  display: none;
}
.next-matches .match-item .stade-label img {
  vertical-align: middle;
}
.next-matches .match-item .stade-label > span {
  margin-top: 3px;
}
.next-matches .swiper-slide {
  transition: all 300ms ease-in-out;
}
@media (min-width: 991px) {
  .next-matches .swiper-slide.active {
    width: 500px !important;
  }
}
.next-matches .swiper-slide.active .match-item {
  background-image: url(../img/match-active.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.next-matches .swiper-slide.active .match-item .vs span {
  color: #fff;
}
.next-matches .swiper-slide.active .match-item .match-date {
  color: #fff;
}
.next-matches .swiper-slide.active .match-item .reserve-now.wide {
  background-color: #FFE300;
  color: #002961;
}
.next-matches .swiper-slide.active .match-item .stade-label {
  display: block;
}
.next-matches .swiper-slide.active .match-item .tournament span {
  color: #fff;
}
.next-matches .swiper-slide.active .match-item .white-rsl {
  display: block;
}

/*=============== Latest News ===============*/
.latest-news .multi_news_columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px -15px 0;
}
.latest-news .multi_news_columns .news-col {
  position: relative;
  width: 33.33%;
  padding: 0 15px 30px 15px;
  max-height: 500px;
  overflow: hidden;
}
.latest-news .multi_news_columns .news-col:nth-child(1) {
  width: 66.66%;
}
.latest-news .multi_news_columns .news-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}
.latest-news .multi_news_columns .news-col .news-caption {
  position: absolute;
  background-image: url(../img/news-gradient.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 15px;
  right: 15px;
  bottom: 30px;
  border-radius: 15px;
  padding: 0 35px 20px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.latest-news .multi_news_columns .news-col .news-caption h3 {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  max-width: 600px;
  margin-bottom: 1rem;
  line-height: 1.5;
  transition: all 300ms ease-in-out;
}
.latest-news .multi_news_columns .news-col .news-caption .date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  transition: all 300ms ease-in-out;
}
.latest-news .multi_news_columns .news-col:hover .news-caption h3,
.latest-news .multi_news_columns .news-col:hover .news-caption .date {
  transform: translateY(-20px);
}
.latest-news .newsTabs {
  border: 0px;
  justify-content: flex-end;
  background: #FFFFFF;
  width: max-content;
  margin-right: auto;
  border-radius: 15px;
  padding: 5px;
  flex-flow: row !important;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  /* For WebKit implementations, provide inertia scrolling */
  -webkit-overflow-scrolling: touch;
  /* We don't want internal inline elements to wrap */
}
.latest-news .newsTabs::-webkit-scrollbar-track {
  background-color: #F7F8F8;
  height: 0px;
}
.latest-news .newsTabs::-webkit-scrollbar {
  width: 10px;
  height: 0px;
  background-color: #F7F8F8;
}
.latest-news .newsTabs::-webkit-scrollbar-thumb {
  background-color: #F7F8F8;
}
.latest-news .newsTabs .nav-link {
  color: #777E90;
  font-weight: 500;
  font-size: 16px;
  border-radius: 15px;
  border: 0;
}
.latest-news .newsTabs .nav-link.active {
  background-color: #FFE300;
  border-radius: 15px;
  color: #002961;
  border: 0;
  padding: 10px 35px;
}
.latest-news.inside-news {
  background-color: #F7F7F7;
}

/*=============== News Content ===============*/
.news-content {
  padding-top: 0;
  margin-top: -80px;
  background-color: #F7F7F7;
}
.news-content .news-info .image {
  position: relative;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
}
.news-content .news-info .image img {
  border-radius: 15px;
  max-width: 100%;
  margin: 1rem auto;
  height: auto;
  object-fit: contain;
  width: auto;
}
.news-content .news-info .image .news-caption {
  position: absolute;
  background-image: url(../img/news-gradient-2.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 0px;
  padding: 0 35px 20px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.news-content .news-info .image .news-caption h3 {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  max-width: 600px;
  margin-bottom: 1rem;
  line-height: 1.5;
  transition: all 300ms ease-in-out;
}
.news-content .news-info .image .news-caption .date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  transition: all 300ms ease-in-out;
}
.news-content .news-info .content {
  padding: 30px;
  background-color: #FFFFFF;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}
.news-content .news-info .content p {
  font-size: 14px;
  color: #000000;
  line-height: 28px;
  margin-bottom: 0;
}
.news-content .news-info .content img {
  border-radius: 15px;
  max-width: 100%;
  margin: 1rem auto;
}
.news-content .news-info .news-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #FFE300;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.news-content .news-info .news-social h3 {
  color: #002961;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
}
.news-content .news-info .news-social ul {
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-content .news-info .news-social ul li {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}
.news-content .news-info .news-social ul li a {
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 50px;
  line-height: 45px;
  font-size: 18px;
  text-align: center;
  background-color: transparent;
  color: #002961;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.news-content .news-wrapper .section_title {
  color: #fff;
  margin-bottom: 30px;
}
.news-content .news-wrapper .news-col {
  position: relative;
  width: 100%;
  padding: 0 15px 30px 15px;
  overflow: hidden;
}
.news-content .news-wrapper .news-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
  max-height: 261px;
}
.news-content .news-wrapper .news-col .news-caption {
  position: absolute;
  background-image: url(../img/news-gradient-2.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 15px;
  right: 15px;
  bottom: 30px;
  border-radius: 15px;
  padding: 0 35px 20px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.news-content .news-wrapper .news-col .news-caption h3 {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  max-width: 600px;
  margin-bottom: 1rem;
  line-height: 1.5;
  transition: all 300ms ease-in-out;
}
.news-content .news-wrapper .news-col .news-caption .date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  transition: all 300ms ease-in-out;
}
.news-content .news-wrapper .news-col:hover .news-caption h3,
.news-content .news-wrapper .news-col:hover .news-caption .date {
  transform: translateY(-20px);
}

.more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #002961;
  font-size: 20px;
  text-decoration: underline;
}
.more .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid #002961;
}
.more .arrow img {
  width: 10px;
}
.more:hover {
  color: #111111;
}

.loadMore {
  margin-top: 50px;
  text-align: center;
}
.loadMore .moreBtn {
  background-color: #FFE300;
  padding: 13px 40px;
  color: #111111;
  display: inline-flex;
  border-radius: 90px;
  align-items: center;
  transition: all 300ms ease-in-out;
}

.youtube-follow {
  background-color: #E60000;
  padding: 10px 35px;
  color: #fff;
  display: inline-flex;
  margin: 10px 0 0;
  border-radius: 50px;
  align-items: center;
  box-shadow: 5px 5px 15px rgba(119, 126, 144, 0.15);
  transition: all 300ms ease-in-out;
  font-size: 16px;
}
.youtube-follow i {
  font-size: 25px;
  margin-right: 5px;
}
.youtube-follow:hover {
  color: #fff;
}

/*=============== Partners ===============*/
.partners {
  background-color: #F7F7F7;
}
.partners .section_title,
.partners .section_subtitle {
  text-align: center;
}
.partners .partners-box-items {
  background-color: #FFFFFF;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* Creates 5 equal-width columns */
  grid-gap: 10px;
  /* Adds some spacing between items */
}
.partners .partners-box-items .item {
  padding: 15px;
}
.partners .partners-box-items .item img {
  max-width: 125px;
  display: block;
  margin: 0 auto;
}

/*=============== Player ===============*/
.players .section_title {
  z-index: 1;
}
.players .players-items {
  margin-top: 100px;
}
.players .players-items .swiper-slide {
  height: auto;
}
.players .player-item {
  background: #002961;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.players .player-item .image {
  position: relative;
  min-height: 430px;
}
.players .player-item .image img {
  max-width: 100%;
  display: block;
  margin: -66px auto 0;
  border-radius: 15px;
  width: 100%;
  pointer-events: none;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
}
.players .player-item .image .overlay {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/players-gradient.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 15px;
}
.players .player-item .player-content {
  padding: 0px 20px 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.players .player-item .player-content h3 {
  font-weight: bold;
  font-size: 22px;
  margin: 0;
  color: #fff;
}
.players .player-item .player-content .mini-line {
  width: 21px;
  height: 1px;
  background-color: #FFFFFF;
  display: block;
  margin: 10px 0;
}
.players .player-item .player-content .playerNumber {
  font-weight: bold;
  font-size: 22px;
  color: #FFE300;
}
.players .player-item .player-content .side.left {
  text-align: left;
}
.players .player-item .player-content .social-media {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
  white-space: nowrap;
}
.players .player-item .player-content .social-media li {
  position: relative;
  display: inline-block;
  margin-right: 5px;
}
.players .player-item .player-content .social-media li a {
  font-size: 20px;
  color: #FFE300;
}
.players .player-item .player-content .social-media li:hover a {
  color: #fff;
}
.players .player-item .player-content .social-media ul > li:last-child {
  margin-right: 0;
}
.players.inside .player-item {
  margin: 0 auto;
}
.players.inside .moreButton {
  text-align: center;
  margin-top: 60px;
}
.players .swiper-container {
  position: relative;
}
.players .custom-swiper-controls {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  z-index: 2;
  margin: 0;
  justify-content: space-between;
}
.players .custom-swiper-controls .custom-button-next {
  width: 45px;
  height: 45px;
  transform: rotate(90deg);
  border: 0;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.8);
}
.players .custom-swiper-controls .custom-button-next img {
  filter: invert(1);
}
.players .custom-swiper-controls .custom-button-prev {
  width: 45px;
  height: 45px;
  transform: rotate(-90deg);
  border: 0;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.8);
}
.players .custom-swiper-controls .custom-button-prev img {
  filter: invert(1);
}
.players .custom-swiper-controls .swiper-button-disabled {
  opacity: 0;
}
.players .itemsAllWrap {
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(400px, 4fr));
  grid-gap: 20px;
}
.players .itemsAllWrap .item-wrap-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.players.inside {
  padding-top: 0;
  margin-top: -100px;
  min-height: 100vh;
}
.players.inside .titles {
  position: relative;
  margin-bottom: 150px;
}
.players.inside .titles .section_title,
.players.inside .titles .section_subtitle {
  color: #fff;
}
.players.inside .player-item {
  margin-bottom: 50px;
}
.players.inside .player-item .image {
  max-height: 100%;
}

/*=============== Matches ===============*/
.matches {
  background-color: #F7F7F7;
  margin-top: -130px;
  min-height: 100vh;
  padding-top: 0;
}
.matches .titles {
  position: relative;
}
.matches .titles .section_title, .matches .titles .section_subtitle {
  color: #fff;
}
.matches .matchesTabs {
  position: relative;
  z-index: 2;
  border: 0px;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.3);
  width: max-content;
  margin-right: auto;
  border-radius: 15px;
  padding: 5px;
  flex-flow: row !important;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  /* For WebKit implementations, provide inertia scrolling */
  -webkit-overflow-scrolling: touch;
  /* We don't want internal inline elements to wrap */
}
.matches .matchesTabs::-webkit-scrollbar-track {
  background-color: #F7F8F8;
  height: 0px;
}
.matches .matchesTabs::-webkit-scrollbar {
  width: 10px;
  height: 0px;
  background-color: #F7F8F8;
}
.matches .matchesTabs::-webkit-scrollbar-thumb {
  background-color: #F7F8F8;
}
.matches .matchesTabs .nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  border-radius: 15px;
  padding: 10px 35px;
  border: 0;
}
.matches .matchesTabs .nav-link.active {
  background-color: #FFE300;
  border-radius: 15px;
  color: #002961;
  border: 0;
  padding: 10px 35px;
}
.matches .match-item {
  position: relative;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 25px;
  padding: 20px 30px 20px 30px;
  transition: all 300ms ease-in-out;
}
.matches .match-item:hover {
  box-shadow: 20px 20px 20px 10px rgba(17, 17, 17, 0.1);
}
.matches .match-item .tournament {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.matches .match-item .tournament img {
  max-width: 45px;
}
.matches .match-item .tournament span {
  font-size: 14px;
  display: inline-block;
  color: #111111;
  margin-right: 5px;
}
@media (max-width: 567px) {
  .matches .match-item .tournament span {
    font-size: 14px;
  }
}
.matches .match-item .tournament .white-rsl {
  display: none;
}
.matches .match-item .match-info {
  position: relative;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.matches .match-item .match-info .vs {
  font-weight: bold;
  text-align: center;
  font-size: 13px;
  color: #312E43;
}
.matches .match-item .match-info .vs img {
  max-width: 50px;
  display: block;
  margin: 0 auto 10px;
}
.matches .match-item .match-info .vs p {
  color: #312E43;
  margin-bottom: 0;
  margin-top: 10px;
}
.matches .match-item .match-info .match-date {
  font-weight: 400;
  text-align: center;
  font-size: 14px;
  color: #707070;
}
.matches .match-item .match-info .match-date .time {
  margin-top: 5px;
  font-weight: 400;
  direction: ltr;
}
.matches .match-item .match-info .match-date .stade {
  font-size: 11px;
  margin-top: 5px;
}
.matches .match-item .match-info .match-date .stade img {
  margin-left: 5px;
  max-width: 15px;
}
.matches .match-item .match-info .reserve-now {
  background-color: #FFE300;
  color: #002961;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 12px;
  margin-top: 10px;
  transition: all 300ms ease-in-out;
  display: none;
}
.matches .match-item .match-info .reserve-now:hover {
  background-color: #FFE300;
  color: #002961;
}
.matches .match-item .reserve-now.wide {
  font-weight: 500;
  width: 100%;
  text-align: center;
  background-color: #FFFFFF;
  border: 1px solid #002961;
  color: #002961;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  margin-top: 30px;
  transition: all 300ms ease-in-out;
}
.matches .match-item .reserve-now.wide:hover {
  background-color: #002961;
  color: #fff;
}
.matches .match-item .match-soon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 244, 252, 0.6);
  border-radius: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 30px;
  -webkit-backdrop-filter: blur(0.6px);
  backdrop-filter: blur(0.6px);
  font-weight: bold;
  z-index: 22;
}
.matches .match-item .match-soon span {
  width: 70px;
  background: #fef205;
  font-size: 13px;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 30px;
  color: #111;
  padding: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.matches .match-item .stade-label {
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 8px;
  color: #002961;
  font-weight: 500;
  font-size: 14px;
  background-color: #FFE300;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.matches .match-item .stade-label img {
  vertical-align: middle;
}
.matches .match-item .stade-label > span {
  margin-top: 3px;
}
.matches .main-match {
  margin: 30px 0;
}
.matches .main-match .match-item {
  background-image: url(../img/match-inside-active.webp);
  background-image: image-set(url(../img/match-inside-active.webp) type("image/webp"), url(../img/match-inside-active.png) type("image/png"));
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 30px 40px 30px;
}
@media (min-width: 576px) {
  .matches .main-match .match-item {
    padding: 50px 80px 50px 80px;
  }
}
.matches .main-match .match-item .vs img {
  max-width: 70px;
}
.matches .main-match .match-item .vs span {
  color: #fff;
}
.matches .main-match .match-item .vs p {
  color: #fff;
  margin-bottom: 0;
  margin-top: 10px;
}
.matches .main-match .match-item .match-date {
  color: #fff;
}
.matches .main-match .match-item .reserve-now.wide {
  background-color: #FFE300;
  color: #002961;
}
.matches .main-match .match-item .tournament span {
  color: #fff;
}
.matches .main-match .match-item .white-rsl {
  display: block;
}
.matches .tournment-table .table-row {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
}
.matches .tournment-table .team {
  display: flex;
  align-items: center;
  gap: 10px;
}
.matches .tournment-table .team .number {
  font-size: 14px;
  color: #373535;
}
.matches .tournment-table td {
  border-bottom: 1px solid #EFF1F3;
}
.matches .tournment-table td, .matches .tournment-table th {
  font-weight: 400;
  color: #373535;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  padding: 1rem 12px;
  background: #fff;
}
.matches .tournment-table tbody tr {
  border-right: 3px solid transparent;
}
.matches .tournment-table th {
  background-color: #FFE300;
  padding: 1rem 0rem;
}
.matches .tournment-table th:first-child {
  border-top-right-radius: 15px;
  text-align: right;
  padding-right: 20px;
}
.matches .tournment-table th:last-child {
  padding-left: 20px;
  border-top-left-radius: 15px;
}
.matches .tournment-table tbody tr:hover {
  background-color: #EAEEF0;
  border-right: 3px solid #F9DD4C;
}
.matches .tournment-table tbody tr:hover td {
  background-color: #EAEEF0;
}
.matches .tournment-table tbody tr:first-child {
  border-right: 3px solid #F9DD4C;
}
.matches .tournment-table tbody tr:first-child td {
  background-color: #EAEEF0;
}

/*=============== altaawoun Youtube ===============*/
:root {
  --plyr-color-main: #FF0000;
  --plyr-badge-text-color: #111111;
  --plyr-audio-control-color-hover: #111111;
}

.altaawoun-youtube {
  padding: 6rem 0;
  background: url(../img/player-bg.png) #f7f7f7;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.altaawoun-youtube .youtube-altaawoun-videos {
  margin: 50px 0 0;
}
.altaawoun-youtube .moreButton {
  text-align: left;
}
.altaawoun-youtube .multi_videos_columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px -15px 0;
}
.altaawoun-youtube .multi_videos_columns .video-col {
  position: relative;
  width: 33.33%;
  padding: 0 10px 20px 10px;
  overflow: hidden;
}
.altaawoun-youtube .multi_videos_columns .video-col:nth-child(1) {
  width: 100%;
}
.altaawoun-youtube .multi_videos_columns .video-col:nth-child(1) .ytdefer {
  min-height: 510px !important;
}
.altaawoun-youtube .multi_videos_columns .video-col .ytdefer {
  min-height: 510px !important;
}
@media (max-width: 767px) {
  .altaawoun-youtube .multi_videos_columns .video-col {
    width: 50%;
  }
  .altaawoun-youtube .multi_videos_columns .video-col:nth-child(1) {
    width: 100%;
  }
  .altaawoun-youtube .multi_videos_columns .video-col:nth-child(1) .ytdefer {
    min-height: 310px !important;
  }
  .altaawoun-youtube .multi_videos_columns .video-col .ytdefer {
    min-height: 310px !important;
  }
}
.altaawoun-youtube .video-review {
  position: relative;
  overflow: hidden;
}
.altaawoun-youtube .video-review .plyr {
  border-radius: 15px;
}
.altaawoun-youtube .video-review .plyr__control--overlaid {
  background-color: #fff;
  box-shadow: 0px 0 20px 10px rgba(207, 205, 197, 0.5);
  outline: 10px solid rgba(193, 192, 178, 0.7);
  display: none;
}
.altaawoun-youtube .video-review .plyr__control--overlaid svg {
  color: #111111;
}
.altaawoun-youtube .video-review .plyr__controls {
  display: none;
}
.altaawoun-youtube .video-review .plyr--playing:hover .plyr__controls {
  display: flex;
}
.altaawoun-youtube .video-review .plyr__poster {
  background-color: #626060;
  background-blend-mode: overlay;
}
.altaawoun-youtube .video-review .caption {
  position: absolute;
  bottom: 40px;
  right: 20px;
  left: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 0;
}
.altaawoun-youtube .video-review .custom-play-button {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/youtube-gradient.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
}
.altaawoun-youtube .video-review .custom-play-button .button-play {
  background-color: #FF0000;
  color: #fff;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 50px;
  outline: none;
  box-shadow: none;
}
.altaawoun-youtube .video-review .custom-play-button:hover {
  cursor: pointer;
}
.altaawoun-youtube .video-review .custom-play-button:hover .button-play {
  opacity: 1;
}

/*=============== altaawoun Store ===============*/
.altaawoun-store {
  background-color: #fff;
  overflow: hidden;
}
.altaawoun-store .altaawoun-store-wrapper {
  margin: 100px 0 0;
}
.altaawoun-store .altaawoun-store-wrapper .product {
  position: relative;
  background: #F7F7F7;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  transition: all 300ms ease-in-out;
}
.altaawoun-store .altaawoun-store-wrapper .product .image {
  padding: 20px 0;
}
.altaawoun-store .altaawoun-store-wrapper .product .image img {
  max-width: 100%;
  max-height: 200px;
  display: block;
  margin: 0 auto;
  transition: all 300ms ease-in-out;
}
.altaawoun-store .altaawoun-store-wrapper .product .details {
  padding: 20px;
}
.altaawoun-store .altaawoun-store-wrapper .product .details h2 {
  font-weight: bold;
  font-size: 18px;
  color: #002961;
}
.altaawoun-store .altaawoun-store-wrapper .product .details h2 a {
  color: inherit;
}
.altaawoun-store .altaawoun-store-wrapper .product .details .price {
  color: #002961;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 1rem;
}
.altaawoun-store .altaawoun-store-wrapper .product .details .price .discount {
  font-size: 15px;
  color: #DE3C3C;
  text-decoration: line-through;
  margin-right: 10px;
}
.altaawoun-store .altaawoun-store-wrapper .product .details .add-cart {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #002961;
  color: #002961;
  padding: 10px;
  width: 100%;
  border-radius: 24px;
  transition: all 300ms ease-in-out;
  text-align: center;
}
.altaawoun-store .altaawoun-store-wrapper .product:hover {
  transition: all 300ms ease-in-out;
  background: linear-gradient(#e9d145 0%, #0b4271 100%);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.05);
}
.altaawoun-store .altaawoun-store-wrapper .product:hover .details h2,
.altaawoun-store .altaawoun-store-wrapper .product:hover .details .price {
  color: #fff;
}
.altaawoun-store .altaawoun-store-wrapper .product:hover .image img {
  position: relative;
  top: -50px;
  transform: scale(1.3);
  transition: all 300ms ease-in-out;
}
.altaawoun-store .altaawoun-store-wrapper .product:hover .add-cart {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #FFE300;
  color: #FFE300;
  display: block;
}
.altaawoun-store .altaawoun-store-wrapper .product.active {
  transition: all 300ms ease-in-out;
  background: linear-gradient(#e9d145 0%, #0b4271 100%);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.05);
}
.altaawoun-store .altaawoun-store-wrapper .product.active .details {
  margin-top: 50px;
}
.altaawoun-store .altaawoun-store-wrapper .product.active .details h2,
.altaawoun-store .altaawoun-store-wrapper .product.active .details .price {
  color: #fff;
}
.altaawoun-store .altaawoun-store-wrapper .product.active .image img {
  margin-top: -50px;
  transform: scale(1.2);
}
.altaawoun-store .altaawoun-store-wrapper .product.active .add-cart {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #FFE300;
  color: #FFE300;
}
.altaawoun-store .altaawoun-store-wrapper .product.active:hover .image img {
  position: relative;
  top: 0;
}
.altaawoun-store .swiper-container {
  position: relative;
}
.altaawoun-store .custom-swiper-controls {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  z-index: 2;
  margin: 0;
  justify-content: space-between;
}
.altaawoun-store .custom-swiper-controls .custom-button-next {
  width: 45px;
  height: 45px;
  transform: rotate(90deg);
  border: 0;
  border-radius: 50px;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.altaawoun-store .custom-swiper-controls .custom-button-next img {
  filter: invert(1);
}
.altaawoun-store .custom-swiper-controls .custom-button-prev {
  width: 45px;
  height: 45px;
  transform: rotate(-90deg);
  border: 0;
  border-radius: 50px;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.altaawoun-store .custom-swiper-controls .custom-button-prev img {
  filter: invert(1);
}
.altaawoun-store .custom-swiper-controls .swiper-button-disabled {
  opacity: 0;
}

/*=============== Download App ===============*/
.download-app-wrapper {
  background-image: url(../img/app-bg-pattern.webp);
  background-image: image-set(url(../img/app-bg-pattern.webp) type("image/webp"), url(../img/app-bg-pattern.png) type("image/png"));
  background-repeat: no-repeat;
  background-size: cover;
}
.download-app-wrapper .app-content h2 {
  font-weight: 700;
  font-size: 35px;
  color: #fff;
  margin-bottom: 30px;
}
.download-app-wrapper .app-content p {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}
.download-app-wrapper .app-content .download-btn {
  position: relative;
  margin: 30px 0;
  display: inline-block;
  margin-left: 20px;
}
.download-app-wrapper .app-content .download-btn img {
  max-width: 150px;
}
.download-app-wrapper .app-content .download-btn:last-child {
  margin-left: 0;
}
@media (max-width: 767px) {
  .download-app-wrapper .app-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .download-app-wrapper .app-content p {
    font-size: 16px;
  }
  .download-app-wrapper .app-content p br {
    display: none;
  }
  .download-app-wrapper .app-content .download-btn {
    margin-top: 10px;
  }
  .download-app-wrapper .app-content .download-btn img {
    max-width: 120px;
  }
}
.download-app-wrapper .app-screens img {
  max-width: 400px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .download-app-wrapper .app-screens img {
    max-width: 70%;
  }
}

/*=============== Club awards ===============*/
.club-awards {
  background: url(../img/player-bg.png) #f7f7f7;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 0;
  margin-bottom: -30px;
}
.club-awards .awards-wrapper {
  margin-top: 50px;
}
.club-awards .awards-wrapper .item {
  position: relative;
  background-color: #F7F7F7;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.club-awards .awards-wrapper .item .image {
  filter: grayscale(1);
  transition: all 300ms ease-in-out;
}
.club-awards .awards-wrapper .item .image img {
  max-width: 100%;
  display: block;
  margin: 0 auto 2rem;
  height: 250px;
}
.club-awards .awards-wrapper .item .name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #312E43;
}
.club-awards .awards-wrapper .item .name:last-child {
  margin-bottom: 0;
}
.club-awards .awards-wrapper .item .year {
  font-size: 16px;
  color: #777E90;
  margin-bottom: 5px;
  font-weight: 500;
}
.club-awards .awards-wrapper .item:hover .image {
  filter: grayscale(0);
}
.club-awards .swiper-container {
  position: relative;
}
.club-awards .swiper-container .swiper-slide {
  height: auto;
}
.club-awards .custom-swiper-controls {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  z-index: 2;
  margin: 0;
  justify-content: space-between;
}
.club-awards .custom-swiper-controls .custom-button-next {
  width: 45px;
  height: 45px;
  transform: rotate(90deg);
  border: 0;
  border-radius: 50px;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.club-awards .custom-swiper-controls .custom-button-next img {
  filter: invert(1);
}
.club-awards .custom-swiper-controls .custom-button-prev {
  width: 45px;
  height: 45px;
  transform: rotate(-90deg);
  border: 0;
  border-radius: 50px;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.club-awards .custom-swiper-controls .custom-button-prev img {
  filter: invert(1);
}
.club-awards .custom-swiper-controls .swiper-button-disabled {
  opacity: 0;
}

/*=============== About ===============*/
.about-wrapper {
  background-color: #F7F7F7;
  padding-bottom: 0;
}
.about-wrapper .club h2 {
  font-weight: 700;
  font-size: 20px;
  color: #282626;
  margin-bottom: 25px;
}
.about-wrapper .club p {
  line-height: 26px;
  color: #000000;
}
.about-wrapper .board-of-Directors {
  padding: 50px 0;
}
.about-wrapper .board-of-Directors .titles {
  text-align: center;
}
.about-wrapper .board-of-Directors .titles h3 {
  font-size: 35px;
  color: #002961;
  font-weight: 700;
}
.about-wrapper .board-of-Directors .titles h2 {
  position: relative;
  font-size: 60px;
  color: white;
  letter-spacing: 2px;
  background-color: #f7f7f7;
  text-shadow: -1px -1px 0 #FFE300, 1px -1px 0 #FFE300, -1px 1px 0 #FFE300, 1px 1px 0 #FFE300;
}
.about-wrapper .board-of-Directors .titles h2::after {
  content: attr(data-text);
  color: #FFE300;
  position: absolute;
  top: 0;
  right: 10px;
  left: 0;
}
.about-wrapper .board-of-Directors .manager {
  position: relative;
  min-height: 235px;
  border-radius: 15px;
  background-color: #002961;
  background-image: url(../img/gradient-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.about-wrapper .board-of-Directors .manager .content {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.about-wrapper .board-of-Directors .manager .content .image {
  max-width: 350px;
  margin-top: -25px;
}
.about-wrapper .board-of-Directors .manager .content .name {
  position: relative;
  right: -50px;
}
.about-wrapper .board-of-Directors .manager .content .name h2 {
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
}
.about-wrapper .board-of-Directors .manager .content .name h3 {
  color: #FFE300;
  font-weight: 700;
}
.about-wrapper .board-of-Directors .manager .content .wolves {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.about-wrapper .board-of-Directors .manager.two .content .image {
  max-width: 260px;
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 767px) {
  .about-wrapper .board-of-Directors .manager.two .content .image {
    max-width: 235px;
  }
}
.about-wrapper .board-of-Directors .manager.two .content .name h2 {
  font-size: 28px;
}
@media (max-width: 767px) {
  .about-wrapper .board-of-Directors .manager.two .content .name h2 {
    font-size: 18px;
  }
  .about-wrapper .board-of-Directors .manager.two .content .name h3 {
    font-size: 14px;
  }
}
.about-wrapper .board-of-Directors .manager.two .content .wolves {
  max-width: 100px;
}
.about-wrapper .board-of-Directors .directors {
  position: relative;
  margin-top: 80px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='15' ry='15' stroke='%23333' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='10' stroke-linecap='square'/%3e%3c/svg%3e");
  border-radius: 15px;
  padding: 0 20px 20px 20px;
}
.about-wrapper .board-of-Directors .directors .titles h2 {
  max-width: max-content;
  white-space: nowrap;
  margin: 0 auto;
  position: relative;
  font-size: 45px;
  top: -20px;
}
.about-wrapper .board-of-Directors .directors .titles h2::after {
  right: 4px;
}
.about-wrapper .board-of-Directors .directors .directors-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media (max-width: 991px) {
  .about-wrapper .board-of-Directors .directors .directors-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-wrapper .board-of-Directors .directors .directors-items .item {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}
.about-wrapper .board-of-Directors .directors .directors-items .item img {
  max-width: 100%;
}
.about-wrapper .board-of-Directors .directors .directors-items .item .name {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.about-wrapper .board-of-Directors .directors .directors-items .item .name h2 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}
.about-wrapper .board-of-Directors .directors .directors-items .item .name h3 {
  font-size: 14px;
  color: #FFE300;
  font-weight: 700;
}
.about-wrapper .board-of-Directors .organization {
  text-align: center;
  padding: 50px 0;
}
.about-wrapper .board-of-Directors .organization .organization-card {
  background-color: #fff;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  padding-top: 50px;
}
.about-wrapper .board-of-Directors .organization .organization-card img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.social-responsibility {
  background-color: #f7f7f7;
}
.social-responsibility .items {
  margin-top: 30px;
}
.social-responsibility .items .item-card {
  background-color: #F7F7F7;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  margin-bottom: 25px;
  padding: 10px;
}
.social-responsibility .items .item-card .image img {
  border-radius: 10px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.social-responsibility .items .item-card .info {
  padding: 20px;
}
.social-responsibility .items .item-card .info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #312E43;
  margin-bottom: 15px;
}
.social-responsibility .items .item-card .info h3 a {
  color: inherit;
}
.social-responsibility .items .item-card .info p {
  color: #777E90;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
}

/*=============== Activites ===============*/
.activites {
  background-color: #F7F7F7;
}
.activites .items {
  padding: 3rem 0 0;
  min-height: 100vh;
}
.activites .item {
  position: relative;
  margin-bottom: 2rem;
}
.activites .item img {
  max-width: 100%;
  min-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}
.activites .item .caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.activites .item .caption span {
  display: block;
  white-space: nowrap;
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
}
.activites .item .caption span:last-child {
  color: #FFE300;
}
.activites .items-soon {
  padding-top: 4rem;
}
.activites .items-soon .caption {
  bottom: 50%;
  transform: translate(-50%, 50%);
}

@media (min-width: 992px) {
  .activitesModalWrapper .modal-lg, .activitesModalWrapper .modal-xl {
    max-width: 1000px;
  }
}
.activitesModalWrapper .btn-close {
  width: 15px;
  height: 15px;
  border: 3px solid #C1C1C1;
  border-radius: 50px;
  font-size: 13px;
  background: transparent url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C1C1C1'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>") center/1em auto no-repeat;
  opacity: 1;
}
.activitesModalWrapper .modal-content {
  border-radius: 15px;
  border: 0;
}
.activitesModalWrapper .modal-header {
  padding: 1.5rem 2rem 0;
  border-bottom: 0;
}
.activitesModalWrapper .item {
  position: relative;
  margin-bottom: 2rem;
}
.activitesModalWrapper .item img {
  max-width: 100%;
  min-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
}
.activitesModalWrapper .item .caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.activitesModalWrapper .item .caption span {
  display: block;
  white-space: nowrap;
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
}
.activitesModalWrapper .item .caption span:last-child {
  color: #FFE300;
}
.activitesModalWrapper p {
  font-size: 14px;
  color: #000000;
  line-height: 28px;
  margin-bottom: 0;
}

#SoonModal .modal-content {
  border-radius: 15px;
  border: 0;
  margin-top: 30%;
}
#SoonModal .modal-header {
  padding-top: 1.5rem;
  border-bottom: 0;
}
#SoonModal .modal-header .btn-close {
  font-size: 10px;
}
#SoonModal .section_title {
  text-align: center;
  width: 100%;
  font-size: 30px;
}
#SoonModal .section_title::after {
  display: none;
}

/*=============== Jobs ===============*/
.jobs {
  background-color: #F7F7F7;
  padding-top: 0 !important;
  margin-top: -130px;
}
.jobs .titles {
  position: relative;
  margin-bottom: 10px;
}
.jobs .titles .section_title,
.jobs .titles .section_subtitle {
  color: #fff;
}
.jobs .jobs-wrapper {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
}
.jobs .jobs-wrapper .form-group {
  margin-bottom: 30px;
}
.jobs .jobs-wrapper .form-group:last-child {
  margin-bottom: 0;
}
.jobs .jobs-wrapper .form-group input {
  background-color: #F7F7F7;
  border-color: #F7F7F7;
  border-radius: 30px;
}
.jobs .jobs-wrapper .form-group input[type=button] {
  background-color: #FFE300;
  color: #002961;
  font-weight: 600;
  font-size: 18px;
}
.jobs .jobs-wrapper .nice-select {
  background-color: #F7F7F7;
  border-color: #F7F7F7;
  border-radius: 50px;
}
.jobs .jobs-wrapper .file-upload {
  position: relative;
  margin-bottom: 40px;
}
.jobs .jobs-wrapper .et_pb_contact_form_label {
  display: block;
  color: black;
  font-weight: bold;
  letter-spacing: 1.2px;
  font-size: 18px;
  padding-bottom: 5px;
}
.jobs .jobs-wrapper input[id=et_pb_contact_brand_file_request_0] {
  display: none;
}
.jobs .jobs-wrapper label[for=et_pb_contact_brand_file_request_0] {
  background: #fff;
  height: 160px;
  background-image: url(../img/upload.svg);
  background-repeat: no-repeat;
  background-position: top 18px center;
  background-size: 15%;
  color: transparent;
  margin: auto;
  width: 450px;
  box-sizing: border-box;
  border-radius: 15px;
  position: relative;
}
@media (max-width: 576px) {
  .jobs .jobs-wrapper label[for=et_pb_contact_brand_file_request_0] {
    max-width: 100%;
  }
}
.jobs .jobs-wrapper label[for=et_pb_contact_brand_file_request_0]:before {
  content: "ارفاق السيرة الذاتية";
  display: block;
  position: absolute;
  top: 75%;
  transform: translateY(-50%);
  font-size: 16px;
  letter-spacing: 0;
  text-decoration: underline;
  color: #002961;
  font-weight: 400;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.jobs .jobs-wrapper label[for=et_pb_contact_brand_file_request_0]:after {
  content: "";
  background-image: url("data:image/svg+xml,<svg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'><rect width='100%25' height='100%25' fill='none' rx='15' ry='15' stroke='%23002961' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='10' stroke-linecap='square'/></svg>");
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
}
.jobs .jobs-wrapper label[for=et_pb_contact_brand_request_0]:after {
  content: " (Provide link or Upload files if you already have guidelines)";
  font-size: 12px;
  letter-spacing: -0.31px;
  color: #7a7a7a;
  font-weight: normal;
}
.jobs .jobs-wrapper label[for=et_pb_contact_design_request_0]:after {
  content: " (Provide link or Upload design files)";
  font-size: 12px;
  letter-spacing: -0.31px;
  color: #7a7a7a;
  font-weight: normal;
}
.jobs .jobs-wrapper label[for=et_pb_contact_brand_file_request_0].changed, .jobs .jobs-wrapper label[for=et_pb_contact_brand_file_request_0]:hover {
  background-color: #fff;
}
.jobs .jobs-wrapper label[for=et_pb_contact_brand_file_request_0] {
  cursor: pointer;
  transition: 400ms ease;
}
.jobs .jobs-wrapper .file_names {
  display: block;
  position: absolute;
  color: black;
  left: 0;
  bottom: -35px;
  font-size: 13px;
  font-weight: 300;
}
.jobs .jobs-wrapper .file_names {
  left: 50%;
  transform: translateX(-50%);
}

/*=============== Contact Us ===============*/
.contact-us {
  background-color: #F7F7F7;
}
.contact-us .contact-forms {
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
}
.contact-us .contact-forms .form-group {
  margin-bottom: 30px;
}
.contact-us .contact-forms .form-group:last-child {
  margin-bottom: 0;
}
.contact-us .contact-forms .form-group input, .contact-us .contact-forms .form-group textarea {
  background-color: #F7F7F7;
  border-color: #F7F7F7;
  border-radius: 30px;
}
.contact-us .contact-forms .form-group input[type=button] {
  background-color: #FFE300;
  color: #002961;
  font-weight: 600;
  font-size: 18px;
}
.contact-us .contact-forms .form-group .nice-select {
  background-color: #F7F7F7;
  border-color: #F7F7F7;
  border-radius: 50px;
}
.contact-us .contact-forms .nav-tabs {
  border: 0px;
  display: flex;
  gap: 5px;
  margin-bottom: 1rem;
  border-radius: 7px;
  padding: 5px;
}
.contact-us .contact-forms .nav-tabs .nav-item {
  flex: 1;
}
.contact-us .contact-forms .nav-tabs .nav-item.show .nav-link {
  color: #111111;
  background-color: #eaeef8;
  border: 0;
}
.contact-us .contact-forms .nav-tabs .nav-item:last-child {
  margin-left: 0;
}
.contact-us .contact-forms .nav-tabs .nav-link {
  color: #6A6A6A;
  border: 1px solid transparent;
  font-size: 14px;
  border-radius: 7px;
  padding: 0.7rem 1rem;
  width: 100%;
}
.contact-us .contact-forms .nav-tabs .nav-link.active {
  color: #002961;
  background-color: #FFE300;
  border: 1px solid #FFE300;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}
.contact-us .contact-forms .nav-tabs .nav-link:hover {
  color: #002961;
  background-color: #FFE300;
  border: 1px solid #FFE300;
}
.contact-us .contact-info .follow-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #002961;
  border-radius: 15px;
}
.contact-us .contact-info .follow-social h3 {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
}
.contact-us .contact-info .follow-social ul {
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-us .contact-info .follow-social ul li {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}
.contact-us .contact-info .follow-social ul li a {
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 50px;
  line-height: 45px;
  font-size: 22px;
  text-align: center;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.contact-us .contact-info .address {
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
  margin-top: 30px;
}
.contact-us .contact-info .address .section_title {
  color: #002961;
  margin-bottom: 30px;
}
.contact-us .contact-info .address .item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.contact-us .contact-info .address .item span {
  color: #000000;
  font-size: 14px;
}
.contact-us .contact-info .address .item p {
  color: #282626;
  font-weight: 700;
  margin-bottom: 0;
}
.contact-us .contact-info .address .item p a {
  color: inherit;
}
.contact-us .contact-info .address .map iframe {
  width: 100%;
  border-radius: 15px;
}

/*=============== Contact Us ===============*/
.reports {
  background-color: #F7F7F7;
  min-height: 100vh;
}
.reports .reports-items {
  margin-top: 50px;
}
.reports .reports-items .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}
.reports .reports-items .item .info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reports .reports-items .item .info h2 {
  font-weight: 700;
  color: #282626;
  font-size: 18px;
}
.reports .reports-items .item .info p {
  font-size: 16px;
  font-weight: 600;
  color: #777E90;
  margin-bottom: 0;
}

/*=============== Contact Us ===============*/
.votes {
  background-color: #F7F7F7;
  min-height: 100vh;
}
.votes .votes-items {
  margin-top: 20px;
  border-radius: 15px;
  padding: 30px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}
.votes .votes-items .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #ededed;
  margin-bottom: 20px;
}
.votes .votes-items .item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.votes .votes-items .item .content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.votes .votes-items .item .content h2 {
  font-weight: 500;
  color: #282626;
  font-size: 16px;
  margin-bottom: 0;
}
.votes .votes-items .item .content h2 a {
  color: inherit;
}
.votes .nav-tabs {
  border: 0px;
  display: flex;
  gap: 5px;
  justify-content: flex-end;
  margin-bottom: 1rem;
  border-radius: 11px;
  max-width: max-content;
  margin-right: auto;
  padding: 7px;
  background-color: #EDEDED;
}
.votes .nav-tabs .nav-item {
  flex: 1;
}
.votes .nav-tabs .nav-item.show .nav-link {
  color: #111111;
  background-color: #eaeef8;
  border: 0;
}
.votes .nav-tabs .nav-item:last-child {
  margin-left: 0;
}
.votes .nav-tabs .nav-link {
  color: #6A6A6A;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  border-radius: 7px;
  padding: 0.7rem 3rem;
  width: 100%;
  white-space: nowrap;
}
.votes .nav-tabs .nav-link.active {
  color: #312E43;
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}
.votes .nav-tabs .nav-link:hover {
  color: #312E43;
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

/*=============== FOOTER ===============*/
.footer {
  padding-bottom: 0;
  background-image: url(../img/footer-bg.webp);
  background-image: image-set(url(../img/footer-bg.webp) type("image/webp"), url(../img/footer-bg.png) type("image/png"));
  background-repeat: no-repeat;
  background-size: cover;
}
.footer .footer-content {
  padding: 0 0 20px 0;
  border-bottom: 1px solid #63776F;
}
.footer .footer-content .about img {
  max-width: 170px;
  margin-bottom: 20px;
}
.footer .footer-content .about p {
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 0;
  line-height: 30px;
}
.footer .footer-content h3 {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  color: #FFE300;
  margin-bottom: 1rem;
}
.footer .footer-content .links ul {
  padding: 0;
  margin: 0;
}
.footer .footer-content .links ul li {
  padding: 10px 0;
}
.footer .footer-content .links ul a {
  position: relative;
  font-size: 14px;
  color: #fff;
  display: block;
}
.footer .footer-content .social ul {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}
.footer .footer-content .social li {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}
.footer .footer-content .social li a {
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.footer .footer-content .social li:hover a {
  color: #fff;
}
.footer .download-btn {
  margin: 10px 0 5px;
  display: inline-block;
  margin-left: 5px;
}
.footer .download-btn img {
  max-width: 120px;
}
.footer .download-btn:last-child {
  margin-left: 0;
}
@media (max-width: 567px) {
  .footer .download-btn {
    margin: 10px 0;
  }
}
.footer .footer-copyrights {
  padding: 30px 0;
}
.footer .footer-copyrights .copyrights {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-copyrights .copyrights p {
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  margin-bottom: 0;
}
.footer .footer-copyrights .copyrights p a {
  font-weight: 400;
}

/*=============== Ittihaid Forms ===============*/
.form-group {
  margin-bottom: 30px;
}
.form-group input {
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  color: #777E90;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: right;
  font-size: 14px;
  outline: none;
  box-shadow: none !important;
}
.form-group input::placeholder {
  color: #777E90;
}
.form-group input[type=submit] {
  background-color: #111111;
  color: #fff;
  width: 100%;
  text-align: center;
  font-weight: 500;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}
.form-group input[type=button] {
  background-color: #111111;
  color: #fff;
  width: 100%;
  text-align: center;
  font-weight: 500;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}
.form-group textarea {
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  color: #777E90;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: right;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}
.form-group textarea::placeholder {
  color: #777E90;
}

.nice-select {
  width: 100%;
  text-align: right !important;
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  color: #777E90;
  border-radius: 12px;
  height: 53px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  line-height: 53px;
  padding-right: 20px;
  padding-left: 30px;
  float: none !important;
}
.nice-select .list {
  width: 100%;
  text-align: right;
}
.nice-select .option {
  text-align: right;
}
.nice-select::after {
  right: auto;
  left: 12px;
}

.custom-pagination {
  background-color: #F1F4FC;
  padding: 30px 0;
}
.custom-pagination ul {
  padding: 0;
  margin: 0;
}
.custom-pagination ul li {
  position: relative;
  display: inline-block;
  color: #626366;
  padding: 0 10px;
}
.custom-pagination ul li a {
  color: #626366;
}
.custom-pagination ul li a i {
  vertical-align: middle;
  font-size: 12px;
  margin-left: 5px;
}
.custom-pagination ul li a.active {
  color: #111111;
}
.custom-pagination ul li:not(:first-child)::before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #111111;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

#YoutubeModal .modal-content {
  border-radius: 10px;
  border: 0;
}
#YoutubeModal .modal-header {
  padding-top: 1.5rem;
  border-bottom: 0;
}
#YoutubeModal .modal-header .btn-close {
  font-size: 15px;
}
#YoutubeModal .plyr--full-ui.plyr--video .plyr__control--overlaid {
  color: #111111;
  background-color: #fff;
}

.modal-backdrop {
  background: rgba(54, 68, 87, 0.6);
}

.applyNowBtn {
  display: block;
  font-weight: 500;
  width: 100%;
  text-align: center;
  background-color: #002961;
  color: #fff;
  display: inline-block;
  padding: 13px 25px;
  border-radius: 50px;
  font-size: 14px;
  transition: all 300ms ease-in-out;
}
.applyNowBtn:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .applyNowBtn {
    margin-top: 25px;
  }
}
/*=============== BREAKPOINTS ===============*/
@media (max-width: 1200px) {
  header.main-header {
    padding: 15px 20px;
  }
  header.main-header .inner-header .logo {
    max-width: 150px;
  }
  header .toggle-nav {
    margin-left: 12px;
  }

  .main {
    padding-top: 0px;
  }
}
@media (max-width: 991px) {
  .home .home_contnet .slide_text {
    padding-right: 10%;
  }
  .home .home_contnet .slide_text h2 {
    margin-bottom: 0;
  }
  .home .home_contnet .slide_image {
    max-width: 300px;
  }

  .home .social {
    left: 20px;
  }

  .latest-news .multi_news_columns .news-col:nth-child(1) {
    width: 100%;
  }

  .latest-news .multi_news_columns .news-col {
    width: 50%;
  }

  .partners .partners-box-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .altaawoun-youtube .multi_videos_columns .video-col {
    width: 50%;
  }

  .footer .footer-content .social li {
    margin-bottom: 10px;
  }

  .about-wrapper .board-of-Directors .manager .content .image {
    max-width: 220px;
  }
}
@media (max-width: 768px) {
  .club-awards .awards-wrapper .item {
    margin: 30px auto 0;
  }

  .mini-title {
    margin-top: 20px;
    font-size: 17px !important;
  }

  .latest-news .news-item .image img {
    width: 100%;
  }

  .about-wrapper .board-of-Directors .manager .content .name {
    right: 0;
  }

  .about-wrapper .board-of-Directors .manager .content .name h2 {
    font-size: 30px;
  }

  .about-wrapper .board-of-Directors .manager .content .wolves img {
    max-width: 100px;
  }

  .latest-news .newsTabs {
    margin-top: 20px;
  }

  .matches .main-match .match-item .reserve-now {
    width: 100%;
  }

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

  .matches .matchesTabs {
    margin: 1rem auto 0;
  }

  .matches {
    margin-top: -155px;
  }

  .matches .matchesTabs {
    background-color: #fff;
  }

  .matches .matchesTabs .nav-link {
    color: #002961;
  }

  .loadMore {
    margin-bottom: 30px;
  }

  .news-content .news-wrapper .section_title {
    color: #002961;
    margin-top: 30px;
  }

  .about-wrapper .board-of-Directors .directors .titles h2 {
    font-size: 30px;
  }

  .votes .nav-tabs {
    flex-wrap: nowrap;
    gap: 0;
    max-width: 100%;
  }

  .votes .nav-tabs .nav-link {
    padding: 0.7rem 1rem;
  }

  .latest-news .multi_news_columns .news-col .news-caption h3 {
    font-size: 13px;
    color: #fff;
    max-width: 270px;
    margin-bottom: 0.5rem;
  }

  .activitesModalWrapper .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .activitesModalWrapper .item img {
    max-height: 300px;
  }

  .activites .item img {
    max-height: 300px;
    object-fit: cover;
  }

  .home.inside {
    min-height: auto;
  }

  .altaawoun-youtube .video-review .ytdefer {
    min-height: 230px !important;
  }

  .altaawoun-youtube .video-review .custom-play-button .button-play {
    width: 50px;
    height: 50px;
    font-size: 35px;
  }

  .altaawoun-youtube .video-review .caption {
    bottom: 30px;
  }

  directors-items {
    grid-template-columns: repeat(1, 1fr);
  }

  .contact-us .contact-forms {
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .main {
    padding-top: 0;
  }

  .section {
    padding: 3rem 0;
  }

  .custom-swiper-controls {
    margin: 15% 10% 0;
  }

  .altaawoun-youtube .section_title, .altaawoun-youtube .section_subtitle,
.partners .section_title, .partners .section_subtitle {
    text-align: right;
  }

  .latest-news .multi_news_columns .news-col {
    width: 100%;
  }

  .partners .partners-box-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .altaawoun-youtube .multi_videos_columns .video-col {
    width: 100%;
  }

  .moreButton {
    text-align: center;
  }

  .home .home_contnet .slide_text {
    padding-right: 0;
    text-align: center;
    margin-top: 30px;
    padding-left: 0;
  }
  .home .home_contnet .slide_text h2 {
    font-size: 16px;
    line-height: 35px;
    max-width: 80%;
    margin: 0 auto;
  }
  .home .home_contnet .slide_text p {
    font-size: 16px;
    padding-left: 20px;
  }

  .next-matches .section_title {
    margin: 0;
  }

  .latest-news .newsTabs {
    margin: 1rem auto 0;
    justify-content: flex-start;
  }

  .section_subtitle {
    font-size: 16px;
  }

  .download-app .explore-app {
    text-align: center;
  }
  .download-app .explore-app .download-btn img {
    max-width: 130px;
  }
  .download-app .app-screen img {
    max-width: 300px;
  }

  .footer .footer-content .about {
    padding: 0 10px;
  }
  .footer .footer-content .links,
.footer .footer-content .social {
    padding: 20px 10px;
  }
  .footer .footer-content .apps {
    padding: 0 10px;
  }
  .footer .footer-copyrights .copyrights {
    margin-top: 30px;
  }

  .footer .footer-content h3 {
    padding-right: 3px;
  }

  .footer .footer-content h3::after {
    left: auto;
    transform: none;
    right: 0;
  }

  .latest-news.inside-news .news-item .news-content p {
    display: block;
  }

  .latest-news.inside-news .news-item {
    max-width: 95%;
    margin: 0 auto 30px;
  }

  .about-altaawoun {
    padding-top: 1rem;
  }

  .partners .item {
    max-width: 100%;
    padding: 20px 10px;
    border-radius: 15px;
  }

  .next-matches .match-item {
    padding: 20px 13px 20px 13px;
  }

  .next-matches .match-item .reserve-now.wide {
    margin-top: 10px;
  }

  .next-matches .match-item .tournament {
    margin-bottom: 10px;
  }

  .next-matches .match-item .match-info .vs img {
    max-width: 55px;
    margin: 0 auto 5px;
  }

  .next-matches .match-item .stade-label {
    font-size: 12px;
    padding: 6px 10px;
  }

  .altaawoun-youtube .video-review .plyr {
    border-radius: 15px;
  }

  .altaawoun-youtube .video-review .custom-play-button {
    border-radius: 15px;
  }

  .footer {
    padding-bottom: 0;
  }

  .footer .footer-copyrights {
    padding: 20px 0;
    justify-content: center;
    flex-flow: column;
  }

  .footer .footer-copyrights .side-logo {
    margin-top: 10px;
  }

  .footer .footer-copyrights .copyrights {
    margin-top: 0;
  }

  .latest-news .news-item .news-content p {
    text-align: right;
    font-size: 15px;
  }

  .altaawoun-store .altaawoun-store-wrapper .product .image {
    padding-bottom: 0;
  }
  .altaawoun-store .altaawoun-store-wrapper .product .image img {
    max-height: 170px;
  }
  .altaawoun-store .altaawoun-store-wrapper .product .details {
    padding: 15px;
  }
  .altaawoun-store .altaawoun-store-wrapper .product .details h2 {
    width: 181px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .news-content .news-info {
    padding: 0;
  }

  .news-content .news-info .news-body {
    padding: 30px 5px;
  }

  .about-wrapper .board-of-Directors .directors .directors-items {
    grid-template-columns: repeat(1, 1fr);
  }

  .next-matches .match-item .tournament {
    flex-direction: column;
  }
  .next-matches .match-item .tournament span {
    margin-right: 0;
    margin-top: 5px;
  }
}
.text-danger.error,
.error {
  font-size: 12px;
  color: red !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .form-group select,
.form-group textarea,
.form-group input {
    font-size: 16px;
  }
}
.customContactAlert {
  background-color: #66ce67;
  border-color: #66ce67;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80%;
  margin: 0 auto 1rem;
}
@media (max-width: 567px) {
  .customContactAlert {
    max-width: 100%;
    font-size: 12px;
  }
  .customContactAlert button {
    font-size: 20px !important;
  }
}

.altaawoun-youtube .youtube-altaawoun-videos .plyr__video-embed iframe {
  opacity: 1;
}

.itemsAllWrap {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(305px, 4fr));
  grid-gap: 20px;
}

.itemsAllWrap .item-wrap-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.emptyNews {
  padding: 10px;
  border-radius: 5px;
  color: #eb6460 !important;
  background-color: rgba(253, 100, 96, 0.1) !important;
  border: none !important;
  width: 100%;
}
.emptyNews span {
  margin-left: 5px;
  vertical-align: middle;
}

.ytdefer > div {
  width: 100% !important;
}
.ytdefer img {
  border-radius: 15px;
  background-color: #fff;
  background-blend-mode: overlay;
}
.ytdefer button {
  display: none;
}

.moreSideBtn {
  position: relative;
}

.moreSideBtn::after {
  content: "";
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  vertical-align: middle;
  border: 0;
  display: inline-block;
  margin-right: 0.255em;
}

#m-menu-more {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to left, rgba(11, 66, 113, 0.75) 0%, rgba(233, 209, 69, 0.45) 100%);
  z-index: 2222222;
  opacity: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  direction: ltr;
}
#m-menu-more.active {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}
#m-menu-more .toggle-nav {
  position: absolute;
  top: 45px;
  left: 45px;
  cursor: pointer;
  z-index: 2222;
  opacity: 0.5;
}
#m-menu-more .toggle-nav .fa,
#m-menu-more .toggle-nav i {
  color: #fff;
  font-size: 30px;
}
#m-menu-more .toggle-nav span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu-more .toggle-nav span:nth-child(2) {
  width: 14px;
}
#m-menu-more .nav-items {
  max-width: 100%;
  height: 100%;
  min-height: 100vh;
  display: block;
  text-align: left;
  background: #002961;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#m-menu-more .nav-items li {
  position: relative;
  display: block;
  color: #fff;
  padding: 0 0 22px 0;
  font-size: 18px;
  font-weight: 700;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu-more .nav-items li a span {
  position: relative;
}
#m-menu-more .nav-items li:last-child::after {
  display: none;
}
#m-menu-more .nav-items li:last-child .btn-custom.primary {
  box-shadow: none;
}
#m-menu-more .nav-items li .nav-link {
  position: relative;
  display: block;
  color: inherit;
  padding: 0 0 10px 0;
  text-align: left;
  z-index: 2;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu-more .nav-items li .nav-link::before {
  content: " ";
  width: 0;
  height: 4px;
  background-color: #FFE300;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu-more .nav-items li .nav-link:hover {
  color: #FFE300;
}
#m-menu-more .nav-items li .nav-link:hover::before {
  width: 20px;
  opacity: 1;
}
#m-menu-more .nav-items li.logo {
  position: relative;
  top: -100px;
}
#m-menu-more .nav-items li.logo .nav-link:hover::before {
  opacity: 0;
}
#m-menu-more .nav-items li.active .nav-link {
  color: #FFE300;
}
#m-menu-more .nav-items li.active .nav-link::before {
  content: " ";
  width: 20px;
  opacity: 1;
  height: 4px;
  background-color: #FFE300;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu-more .nav-items .dropdown-mob-wrapper {
  background: transparent;
  border: 0;
  box-shadow: none;
  min-width: auto;
  outline: none;
}
#m-menu-more .nav-items .dropdown-mob-wrapper .dropdown-toggle {
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  font-size: 15px;
}
#m-menu-more .nav-items .dropdown-mob-wrapper .dropdown-toggle::after {
  content: "";
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  vertical-align: middle;
  border: 0;
}
#m-menu-more .nav-items .dropdown-mob-wrapper .dropdown-menu {
  border-color: #fff;
  padding: 0;
  min-width: 220px;
  position: relative !important;
  width: 100%;
  height: auto;
  top: 0 !important;
  transform: none !important;
}
#m-menu-more .nav-items .dropdown-mob-wrapper .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
}
#m-menu-more .nav-items .dropdown-mob-wrapper .dropdown-menu .dropdown-item.active, #m-menu-more .nav-items .dropdown-mob-wrapper .dropdown-menu .dropdown-item:active {
  background-color: #F1F4FC;
}
#m-menu-more .nav-items .dropdown-mob-wrapper .dropdown-menu .dropdown-item:hover {
  background-color: #F1F4FC;
}
#m-menu-more .social {
  display: block;
  padding: 15px 20px;
  text-align: right;
}
#m-menu-more .social a:not(.dropdown-item) {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50px;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  background-color: #f6f7fd;
  color: #111111;
  box-shadow: 20px 20px 45px rgba(119, 126, 144, 0.3);
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu-more .social a:not(.dropdown-item).toggle-theme-mob {
  line-height: 50px;
}
#m-menu-more .social a:not(.dropdown-item).language-item {
  line-height: 36px;
}
#m-menu-more .social a:not(.dropdown-item).language-item.arabic {
  line-height: 28px;
  font-size: 16px;
}
#m-menu-more .social a:not(.dropdown-item):last-child {
  margin-left: 0;
}
#m-menu-more .social a:not(.dropdown-item):hover {
  background-color: #111111;
  color: #fff;
}
#m-menu-more .social .dropdown-mob-wrapper {
  padding: 0 0 15px 0;
}
#m-menu-more .social .dropdown-mob-wrapper .dropdown-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 18px;
  text-align: center;
  background-color: #f6f7fd;
  color: #111111;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  box-shadow: 0px 2px 10px #e8e8e8;
}
#m-menu-more .social .dropdown-mob-wrapper .dropdown-toggle::after {
  display: none;
}
#m-menu-more .social .dropdown-mob-wrapper .dropdown-menu {
  min-width: 150px;
}
#m-menu-more .social .dropdown-mob-wrapper .dropdown-menu li {
  display: block;
}
#m-menu-more .social .dropdown-mob-wrapper .dropdown-menu .dropdown-item {
  box-shadow: none;
}

.safety-wrapper img {
  border-radius: 15px;
  max-width: 100%;
  margin: 0.5rem auto;
}

/*# sourceMappingURL=styles.css.map */
