@charset "UTF-8";
:root {
  --main-color: #b81c32;
  --body-bg: #FFF;
  --navbar-bg: #FFF;
  --icon-active: #2c2f32;
  --icon-idle: #8b88ff;
  --p-color: #071c1f;
  --subp-color: #adafca;
  --link-color: #6956e5;
  --a-light: #FFF;
  --shadow-color: rgba(94, 92, 154, 0.0588235294);
  --border-color: #eaeaf5;
  --sub-light: #fcfcfd;
  --border-input: #dedeea;
}

.dark-mode {
  --main-color: #6956e5;
  --body-bg: #151521;
  --navbar-bg: #1e1e2d;
  --icon-active: #FFF;
  --icon-idle: #8b88ff;
  --p-color: #FFF;
  --subp-color: #9aa4bf;
  --link-color: #6956e5;
  --a-light: #FFF;
  --shadow-color: rgba(0, 0, 0, 0.0588235294);
  --border-color: #2f3749;
  --sub-light: #21283b;
  --border-input: #3f485f;
}

.form-group {
  width: 100%;
  position: relative;
  margin: 0;
}
.form-group label {
  color: #adafca;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: 16px;
  right: 20px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  display: block;
  margin: 0;
  line-height: 1em;
}
.form-group .form-control {
  height: 50px;
  padding: 7px 20px 7px 20px;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  color: #3e3f5e;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}
.form-group .form-control:focus {
  border-color: #b81c32;
  box-shadow: none;
  outline: none;
}
.form-group .form-control::-moz-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}
.form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}
.form-group select {
  cursor: pointer;
}

.create-account-btn {
  text-decoration: none;
  width: 100%;
  margin: auto;
  color: #FFF;
  display: inline-block;
  height: 43px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 43px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  background-color: #7868e6;
  border: 0;
}
.create-account-btn svg {
  height: 18px;
  margin-left: 2px;
}
.create-account-btn svg path {
  fill: #FFF;
}
.create-account-btn:hover {
  background-color: #7868e6;
}

.form-check {
  display: flex;
  margin: 10px 5px 10px 0;
}
.form-check input {
  background-color: #fff;
  border: 1px solid #dedeea;
  height: 17px;
  width: 16px;
  position: unset;
  margin: 3px 0 0 5px;
}
.form-check p {
  color: #2c2f32;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 22px;
  cursor: pointer;
  display: block;
  margin: 0;
}
.form-check p a {
  text-decoration: none;
  color: #FFF;
}

p.text {
  margin-top: 30px;
  font-size: 0.875rem;
  line-height: 1.7142857143em;
  font-weight: 500;
  color: var(--p-color);
}
p.text a {
  text-decoration: none;
  color: #6956e5;
  font-weight: 700;
}

.active-input label {
  padding: 0 6px;
  font-size: 0.55rem;
  top: 9px;
  right: 20px;
}

@font-face {
  font-family: "en";
  font-style: normal;
  src: url(assets/fonts/din-regular.ttf);
}
.font-en {
  font-family: "en";
}

@font-face {
  font-family: "ar";
  font-style: normal;
  src: url(assets/fonts/29ltbukraregular.ttf);
}
.upper-header {
  background: #FFF;
  padding: 10px 0;
  color: #FFF;
  border-bottom: 1px solid #f9f9f9;
}
.upper-header .upper-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.upper-header .upper-header-content .upper-header-actions {
  display: flex;
  align-items: center;
}
.upper-header .upper-header-content .upper-header-actions svg {
  height: 18px;
  width: 18px;
  fill: #b81c32;
}
.upper-header .upper-header-content .upper-header-actions a {
  text-decoration: none;
  margin: 0 7px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #000;
}
@media (max-width: 767.98px) {
  .upper-header .upper-header-content .upper-header-actions {
    justify-content: space-between;
    width: 100%;
    display: none;
  }
}
.upper-header .upper-header-content .upper-header-info {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .upper-header .upper-header-content .upper-header-info {
    justify-content: center;
    width: 100%;
  }
}
.upper-header .upper-header-content .upper-header-info .date {
  color: #000;
  padding-left: 15px;
  display: flex;
  align-items: center;
}
.upper-header .upper-header-content .upper-header-info .date svg {
  height: 16px;
  width: 16px;
  fill: #000;
  margin: 0 6px;
}
.upper-header .upper-header-content .upper-header-info .date span {
  font-size: 0.9rem;
  margin-top: 0px;
  margin-left: 10px;
  display: block;
  color: #b81c32;
  font-weight: 600;
  word-spacing: 3px;
}

.page-header {
  height: 40vh !important;
  margin: 0 !important;
}
@media (max-width: 575.98px) {
  .page-header {
    height: 30vh !important;
  }
}

.header {
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 14;
  width: 100%;
  transition: all 0.1s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.header:after {
  position: absolute;
  left: 0;
  bottom: -12px;
  content: "";
  height: 100px;
  width: 100%;
  background: url(assets/images/navbrush.png);
  z-index: -1;
  background-repeat: no-repeat;
  background-position: bottom;
}

.navbar {
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 12px 0;
}
@media (max-width: 1199.98px) {
  .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 991.98px) {
  .navbar {
    padding: 12px 15px;
  }
}
@media (max-width: 575.98px) {
  .navbar {
    padding: 12px 0;
  }
}
.navbar .nav-mobile-icon {
  display: none;
}
@media (max-width: 991.98px) {
  .navbar .nav-mobile-icon {
    display: block;
  }
}
.navbar .nav-mobile-icon svg {
  fill: #000;
}
.navbar .nav-part {
  display: flex;
  align-items: center;
}
.navbar .nav-logo {
  position: relative;
}
@media (max-width: 991.98px) {
  .navbar .nav-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
.navbar .nav-logo .nav-mobile-icon {
  display: none;
}
@media (max-width: 991.98px) {
  .navbar .nav-logo .nav-mobile-icon {
    display: block;
  }
}
.navbar .nav-logo .nav-mobile-icon svg {
  height: 24px;
  width: 24px;
  fill: #000;
}
.navbar .nav-logo .nav-logo-container {
  position: relative;
  z-index: 10;
  width: 130px;
}
@media (max-width: 1199.98px) {
  .navbar .nav-logo .nav-logo-container {
    width: 150px;
  }
}
@media (max-width: 991.98px) {
  .navbar .nav-logo .nav-logo-container {
    width: auto;
  }
}
.navbar .nav-logo .nav-logo-container a {
  text-decoration: none;
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.navbar .nav-logo .nav-logo-container img {
  max-width: 100%;
  height: 50px;
}
@media (max-width: 1199.98px) {
  .navbar .nav-logo .nav-logo-container img {
    height: 40px;
  }
}
.navbar .nav-logo .nav-logo-container .main-logo {
  display: block;
}
.navbar .nav-logo .nav-logo-container .img-dark {
  display: none;
}
.navbar .nav-logo .nav-search-icon {
  display: none;
}
@media (max-width: 991.98px) {
  .navbar .nav-logo .nav-search-icon {
    display: block;
  }
}
.navbar .nav-logo .nav-search-icon svg {
  height: 24px;
  width: 24px;
  fill: #000;
}
.navbar .nav-links {
  margin-top: 0;
  direction: ltr;
}
@media (max-width: 991.98px) {
  .navbar .nav-links {
    background: var(--body-bg);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 5;
    overflow: auto;
    text-align: center;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    display: none;
  }
}
.navbar .nav-links .nav-close {
  display: none;
}
@media (max-width: 991.98px) {
  .navbar .nav-links .nav-close {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
  }
}
.navbar .nav-links .nav-close svg {
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.navbar .nav-links .nav-close svg g [fill] {
  fill: #000248;
}
.navbar .nav-links ul {
  display: flex;
  margin-bottom: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}
.navbar .nav-links ul li {
  padding: 0 12px;
  display: flex;
  align-items: center;
  position: relative;
}
.navbar .nav-links ul li:hover a, .navbar .nav-links ul li:hover span {
  color: #b81c32;
}
.navbar .nav-links ul li:hover .nav-link-dropdown {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1199.98px) {
  .navbar .nav-links ul li {
    padding: 0 7px;
  }
}
@media (max-width: 991.98px) {
  .navbar .nav-links ul li {
    padding: 10px 15px;
    transform: perspective(400px) rotateY(-15deg);
    z-index: -1;
    margin: 7px 0;
  }
}
.navbar .nav-links ul li a, .navbar .nav-links ul li span {
  color: #000;
  position: relative;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 200;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .navbar .nav-links ul li a, .navbar .nav-links ul li span {
    font-size: 0.8rem;
  }
}
.navbar .nav-links ul li svg {
  height: 22px;
  width: 22px;
  margin: -1px 0px 0 0px;
  fill: #000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-links ul li .li-links {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -22px);
  transition: all 0.3s ease-in-out;
}
.navbar .nav-links ul li .li-links ul {
  display: block;
  background: var(--body-bg);
  width: 150px;
  display: block;
  text-align: right;
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 28px;
}
@media (max-width: 1199.98px) {
  .navbar .nav-links ul li .li-links ul {
    margin-top: 40px;
  }
}
.navbar .nav-links ul li .li-links ul li {
  display: block;
  margin: 8px 0;
  transition: all 0.3s ease-in-out;
  padding: 0 0;
}
.navbar .nav-links ul li .li-links ul li:hover {
  padding-right: 14px;
}
.navbar .nav-links ul li .li-links ul li:hover a {
  color: #b81c32;
}
.navbar .nav-links ul li .li-links ul li a {
  color: var(--p-color);
}
.navbar .nav-links ul li .nav-link-dropdown {
  position: absolute;
  top: 30px;
  left: 4px;
  background: #000;
  z-index: 100;
  padding: 10px 10px 10px 10px;
  border-radius: 8px;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  transform: translate(0, -10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  width: 200px;
}
@media (max-width: 991.98px) {
  .navbar .nav-links ul li .nav-link-dropdown {
    display: none;
  }
}
.navbar .nav-links ul li .nav-link-dropdown ul {
  display: block;
  text-align: left;
}
.navbar .nav-links ul li .nav-link-dropdown ul li {
  transition: all 0.2s ease-in-out;
  margin: 10px 0;
}
.navbar .nav-links ul li .nav-link-dropdown ul li:hover a {
  color: #b81c32;
}
.navbar .nav-links ul li .nav-link-dropdown ul li a {
  font-size: 0.9rem;
  transition: all 0.2s ease-in-out;
  color: #000;
}
.navbar .nav-links ul .hover-drop:hover .li-links {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.navbar .nav-links ul .nav-link-active a {
  color: #f1c415;
}
@media (max-width: 991.98px) {
  .navbar .nav-links ul .nav-link-active a {
    color: #b81c32;
  }
}
.navbar .nav-links ul .nav-link-active a:before {
  background: #000248;
  border-color: #000248;
}
.navbar .nav-actions .book-btn {
  background: #be952c;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  border-radius: 12px;
  padding: 5px 25px;
  color: #000;
  font-size: 0.85rem;
  font-weight: 200;
  height: 35px;
  width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-left: 6px;
}
.navbar .nav-actions .book-btn svg {
  height: 20px;
  width: 20px;
  margin-left: 8px;
  fill: #000;
}
.navbar .nav-actions .book-btn span {
  display: inline-block;
  color: #000;
}
@media (max-width: 991.98px) {
  .navbar .nav-actions .book-btn {
    display: none;
  }
}
.navbar .nav-search-icon svg {
  height: 24px;
  width: 24px;
  fill: #000;
}
.navbar .nav-search-icon .switch-langs {
  display: flex;
  align-items: center;
}
.navbar .nav-search-icon .switch-langs h6.page-lang {
  color: #000;
  font-weight: 900;
  font-family: "ar-reg";
  margin-bottom: 0;
  margin-top: 6px;
}
.navbar .nav-search-icon .page-lang {
  color: #000;
  text-decoration: underline;
}

.fixed-header:after {
  display: none;
}

.big-nav {
  width: 350px;
  padding-top: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background: #FFF;
  height: 100vh;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.1s;
  overflow: auto;
  direction: rtl;
}
@media (max-width: 575.98px) {
  .big-nav {
    width: 100%;
    height: 100vh;
  }
}
.big-nav .big-nav-header-title {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 15px 20px;
  border-bottom: 1px solid #ebebeb;
  align-items: center;
  background: #FFF;
}
.big-nav .big-nav-header-title .nav-logo-container a {
  text-decoration: none;
  color: #000;
}
.big-nav .big-nav-header-title .nav-logo-container a img {
  height: 40px;
}
@media (max-width: 575.98px) {
  .big-nav .big-nav-header-title .nav-logo-container a img {
    height: 40px;
  }
}
.big-nav .big-nav-header-title .close-big-nav svg {
  fill: #000;
  width: 30px;
  cursor: pointer;
}
.big-nav .big-nav-header-title .close-link-popup svg {
  fill: #000;
}
.big-nav .big-nav-search .nav-search {
  width: 100%;
  padding: 10px 10px;
  display: flex;
}
.big-nav .big-nav-search .nav-search form {
  width: 100%;
}
.big-nav .big-nav-search .nav-search .form-group {
  width: 100%;
  position: relative;
  margin: 0;
}
.big-nav .big-nav-search .nav-search .form-group .form-control {
  height: 43px;
  padding: 0 40px 0 20px;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  color: #3e3f5e;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}
.big-nav .big-nav-search .nav-search .form-group .form-control:focus {
  border-color: #b81c32;
  box-shadow: none;
  outline: none;
}
.big-nav .big-nav-search .nav-search .form-group .form-control::-moz-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}
.big-nav .big-nav-search .nav-search .form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}
.big-nav .big-nav-search .nav-search .form-group .search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
}
.big-nav .big-nav-search .nav-search .form-group .search-icon svg {
  transform: rotateY(180deg);
  font-size: 0.7rem;
  height: 18px;
  width: 18px;
}
.big-nav .nav-links {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 767.98px) {
  .big-nav .nav-links ul {
    overflow: scroll;
    height: calc(100vh - 55px);
  }
}
.big-nav .nav-links ul .ul-head {
  padding-right: 30px;
  color: #adafca;
  font-size: 0.75rem;
  font-weight: 500;
}
.big-nav .nav-links ul li {
  text-decoration: none;
  color: #adafca;
  width: 100%;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  border-top: 1px solid rgba(229, 229, 229, 0.5411764706);
}
.big-nav .nav-links ul li .li-link {
  width: 100%;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.big-nav .nav-links ul li .li-link .link-info {
  white-space: nowrap;
  border-radius: 50px;
  margin: 0;
  transition: all 0.3s ease-in-out 0s;
  display: inline-flex;
  padding: 0 20px 0 0;
}
.big-nav .nav-links ul li .li-link .link-info a {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
  line-height: 25px;
  font-weight: 500;
  transition: all 0.3s ease-in-out 0s;
  padding: 17px 0 17px 15px;
}
.big-nav .nav-links ul li .li-link .li-link-icon {
  width: 50px;
  display: flex;
  justify-content: end;
  cursor: pointer;
  padding: 17px 15px 17px 15px;
}
.big-nav .nav-links ul li .li-link .li-link-icon svg {
  height: 16px;
  width: 16px;
  fill: #000;
}
.big-nav .nav-links ul li .nav-link-popup {
  width: 350px;
  padding-top: 0;
  position: fixed;
  top: 0;
  z-index: 20;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background: #FFF;
  height: 100vh;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.1s;
  overflow: auto;
}
@media (max-width: 575.98px) {
  .big-nav .nav-links ul li .nav-link-popup {
    width: 100%;
    height: 100vh;
  }
}
.big-nav .nav-links ul .li-active {
  background-color: #FFF;
  color: #000;
}
.big-nav .nav-links ul .li-active a svg {
  fill: #b81c32;
}
.big-nav .nav-links ul .li-active a svg g [fill] {
  fill: #b81c32;
}
.big-nav .nav-links ul .li-active a .svg-icon path {
  fill: #b81c32;
  stroke: #b81c32;
}
.big-nav .nav-links ul .li-active a .link-info {
  visibility: visible;
  padding-right: 8px;
}
.big-nav .nav-links ul .li-active a .link-info span {
  color: #b81c32 !important;
}
.big-nav .nav-links ul .li-active a .link-info span:hover {
  color: #b81c32;
}
.big-nav .nav-links ul .li-active:hover {
  background: #FFF;
  color: #b81c32;
}
.big-nav::-webkit-scrollbar {
  display: none;
}

.big-nav-hiddin {
  transform: translate(560px, 0);
  opacity: 0;
  z-index: -1 !important;
}

.close-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(22, 22, 34, 0.6);
  z-index: 17;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.open-over {
  opacity: 1;
  visibility: visible;
}

.active-dropdown {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.home-header {
  position: relative;
  height: 500px;
  width: 100%;
  background: #161b28;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 991.98px) {
  .home-header {
    height: 325px;
  }
}
.home-header .header-overlay {
  height: 100%;
  width: 100%;
}
.home-header .header-content {
  text-align: center;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 85%;
}
@media (max-width: 991.98px) {
  .home-header .header-content {
    width: 85%;
  }
}
.home-header .header-content figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 85px;
  width: 85px;
  text-align: center;
  margin: 0 auto 25px auto;
}
@media (max-width: 991.98px) {
  .home-header .header-content figure {
    margin: 0 auto 15px auto;
    height: 50px;
    width: 50px;
  }
}
.home-header .header-content h1 {
  text-transform: uppercase;
  font-size: 3.5rem;
}
@media (max-width: 991.98px) {
  .home-header .header-content h1 {
    font-size: 3.1rem;
  }
}
@media (max-width: 767.98px) {
  .home-header .header-content h1 {
    font-size: 2.7rem;
  }
}
@media (max-width: 575.98px) {
  .home-header .header-content h1 {
    font-size: 2.4rem;
  }
}

.home-header {
  height: calc(100vh - 108px);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .home-header {
    height: 75vh;
  }
}
.home-header .header-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-header .swiper-container {
  height: 100%;
  position: relative;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content {
  height: 100%;
  width: 100%;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content .swiper-overlay {
  background-image: linear-gradient(to right top, #5f4c1b, #5b412b, #0a0807, #9b7d31, #9b7d31);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content .swiper-slider-content-inner {
  position: relative;
  z-index: 5;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content .pretitle {
  text-align: center;
  font-size: 1.6rem;
  color: #fcdb5a;
  word-spacing: 15px;
  margin-bottom: -15px;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content h1 {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  width: 100%;
  margin: 0 auto 15px auto;
}
@media (max-width: 767.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content h1 {
    font-size: 1.75rem;
    margin: 0 auto 5px auto;
  }
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 200;
  width: 75%;
  text-align: center;
  margin: auto;
}
@media (max-width: 991.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 80%;
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 85%;
    font-size: 1.1rem;
  }
}
@media (max-width: 575.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 95%;
    font-size: 0.9rem;
  }
}

.home-btn {
  background-color: #fcdb5a;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  width: 175px;
  margin-top: 25px;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: #fcdb5a;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  height: 15px;
  width: 15px;
  border-radius: 50%;
}

.content {
  margin-top: 0;
}

.newsletter {
  background: #FAF9F7;
  padding: 75px 0;
}
.newsletter .newsletter-content .news-line .pretitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #be952c;
}
@media (max-width: 575.98px) {
  .newsletter .newsletter-content .news-line .pretitle {
    font-size: 1rem;
    text-align: center;
  }
}
.newsletter .newsletter-content .news-line h3 {
  font-size: 3.5rem;
  font-weight: 500;
}
@media (max-width: 1199.98px) {
  .newsletter .newsletter-content .news-line h3 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .newsletter .newsletter-content .news-line h3 {
    font-size: 1.75rem;
    text-align: center;
  }
}
.newsletter .newsletter-content .news-child-line .form-group .form-control {
  padding: 15px 5px 15px 15px;
  font-size: 17px;
  line-height: 22px;
  width: calc(100% - 75px);
  margin-right: auto;
  height: 55px;
  border: unset;
  border-bottom: 1px solid #0a0a0a;
  border-radius: unset;
  background: unset;
  font-family: "en";
}
.newsletter .newsletter-content .news-child-line .form-group .form-control::-moz-placeholder {
  font-size: 1rem;
  color: #918d89;
  font-family: "sf";
}
.newsletter .newsletter-content .news-child-line .form-group .form-control::placeholder {
  font-size: 1rem;
  color: #918d89;
  font-family: "sf";
}
@media (max-width: 1199.98px) {
  .newsletter .newsletter-content .news-child-line .form-group .form-control {
    width: calc(100% - 25px);
  }
}
@media (max-width: 767.98px) {
  .newsletter .newsletter-content .news-child-line .form-group .form-control {
    width: 90%;
    margin: 15px auto;
  }
}
.newsletter .newsletter-content .news-child-line button {
  outline: none;
  width: 150px;
  background: unset;
  border: unset;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 35px;
}
.newsletter .newsletter-content .news-child-line button:focus, .newsletter .newsletter-content .news-child-line button:active {
  border: unset;
  box-shadow: unset;
  outline: none;
}
.newsletter .newsletter-content .news-child-line button svg {
  height: 20px;
  width: 20px;
  margin-right: 5px;
  transform: rotate(180deg);
}
@media (max-width: 767.98px) {
  .newsletter .newsletter-content .news-child-line button {
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

footer {
  margin-top: 0;
  background: #FFF;
  padding: 100px 0 0 0;
  position: relative;
}
footer:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background-image: url(assets/images/body_bg.png);
  z-index: 0;
  background-repeat: no-repeat;
  background-position: bottom;
  opacity: 0.9;
  transform: rotateY(180deg);
}
footer p {
  color: #000;
}
footer .contact-info .p-email {
  color: #000;
  font-size: 1.2rem;
}
footer .contact-info a {
  text-decoration: underline !important;
  color: #b81c32 !important;
  font-size: 1.2rem !important;
}
footer .nav-actions .search-input {
  height: 55px;
  padding: 12px 6px 12px 60px;
  background-color: transparent;
  border: 1px solid transparent;
  color: #fff;
  transition: border-color 0.2s ease-in-out;
  font-size: 0.8rem;
  font-weight: 700;
  width: 99%;
  border-bottom: 1px solid #5c5c5c;
}
footer .nav-actions .search-input:active {
  border-bottom: 1px solid #be952c;
  box-shadow: none;
  outline: none;
}
footer .nav-actions .search-input:focus {
  border-bottom: 1px solid #be952c;
  box-shadow: none;
  outline: none;
}
footer .nav-actions .search-input::-moz-placeholder {
  color: #d9d9d9;
  font-weight: 100;
  font-size: 0.75rem;
}
footer .nav-actions .search-input::placeholder {
  color: #d9d9d9;
  font-weight: 100;
  font-size: 0.75rem;
}
footer .nav-actions .search-icon button {
  position: absolute;
  left: 0px;
  top: 8px;
  border-radius: 12px;
  border: none;
  height: 40px;
  width: 40px;
  text-transform: uppercase;
  font-weight: 900;
  padding: 0 !important;
  background: unset;
}
footer .nav-actions .search-icon button svg {
  height: 15px;
  width: 15px;
  fill: #000;
  transform: rotate(180deg);
}
footer .footer-container {
  height: 100%;
  width: 100%;
  background-image: url(assets/images/footer-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  footer .col-r {
    text-align: left !important;
  }
}
footer .footer-col {
  text-align: left;
  display: inline-block;
  margin-bottom: 25px;
}
@media (max-width: 991.98px) {
  footer .footer-col {
    padding-left: 50px;
  }
}
footer .footer-col .Footer-head {
  margin-bottom: 20px;
}
footer .footer-col .Footer-head a {
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
  display: block;
}
footer .footer-col .Footer-head a.footer-logo {
  font-family: "en-bold";
  font-size: 1.4rem;
}
footer .footer-col .Footer-head a.footer-logo img {
  width: 150px;
}
footer .footer-col p.footer-address {
  color: #000;
  font-size: 0.8rem;
  font-weight: 100;
  margin-bottom: 15px;
}
footer .footer-col ul {
  margin: 0;
  padding: 0;
}
footer .footer-col ul li {
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 10px;
  transition: all 0.3s ease-in-out;
}
footer .footer-col ul li:hover a {
  color: #b81c32;
}
footer .footer-col ul li span {
  color: #000;
}
footer .footer-col ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 100;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
}
footer .footer-col .social-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
footer .footer-col .social-icons li {
  border: 1px solid #515151;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-col .social-icons li:hover {
  padding: 0;
}
footer .footer-col .social-icons li:hover a svg {
  fill: #be952c;
}
footer .footer-col .social-icons li a {
  text-decoration: none;
}
footer .footer-col .social-icons li a svg {
  height: 18px;
  width: 18px;
  fill: #000;
  transition: all 0.3s ease-in-out;
}
footer .sub-footer {
  padding: 25px 0 20px 0;
  color: #000;
  margin-top: 0;
}
footer .sub-footer .row {
  border-top: 1px solid white;
  padding-top: 25px;
}
footer .sub-footer p.copy {
  color: #7e868e;
  font-size: 12px;
  margin: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .sub-footer p.copy a {
  color: #b81c32;
  text-decoration: none;
  margin: 0 5px;
}
@media (max-width: 767.98px) {
  footer .sub-footer p.copy {
    text-align: center;
    margin-bottom: 0;
  }
}
footer .sub-footer .links {
  font-size: 0.9px;
  font-weight: 600;
  color: #000;
  margin: 0 10px;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  footer .sub-footer .links {
    text-align: center;
    margin-bottom: 20px;
    display: inline-flex;
  }
}
footer .sub-footer .links svg {
  fill: #000;
  height: 18px;
  width: 18px;
}

[lang=ar] footer {
  direction: rtl;
}
@media (max-width: 991.98px) {
  [lang=ar] footer .col-r {
    text-align: right !important;
  }
}
[lang=ar] footer .footer-col {
  text-align: right;
  padding-left: 0;
  padding-right: 50px;
}
[lang=ar] footer .footer-col li {
  transition: all 0.3s ease-in-out;
}
[lang=ar] footer .sub-footer p.copy {
  text-align: center;
  direction: ltr;
}
@media (min-width: 767.98px) {
  [lang=ar] footer .sub-footer p.copy {
    text-align: center !important;
  }
}
@media (min-width: 767.98px) {
  [lang=ar] footer .sub-footer .text-md-right {
    text-align: center !important;
  }
}

[lang=ar] body {
  direction: rtl;
  text-align: right;
}
[lang=ar] .header .nav-links {
  direction: rtl;
}
[lang=ar] .header .nav-links .nav-link-dropdown {
  left: unset;
  right: 4px;
}
[lang=ar] .header .search-input {
  padding: 7px 35px 7px 20px;
  direction: rtl;
}
[lang=ar] .header .search-icon {
  left: unset;
  right: 10px;
}

.d-12-none {
  display: block !important;
}
@media (max-width: 1199.98px) {
  .d-12-none {
    display: none !important;
  }
}

.d-12-block {
  display: none !important;
}
@media (max-width: 1199.98px) {
  .d-12-block {
    display: block !important;
  }
}

.content {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index-layout .header {
  box-shadow: unset;
  background: #FFF;
}
@media (max-width: 991.98px) {
  .index-layout .header .navbar .nav-actions {
    display: none;
  }
}
.index-layout .header-overlay {
  background: transparent;
}

.index-header {
  padding: 75px 0 75px 0;
  background-position: center center;
}
.index-header h3 {
  font-size: 4rem;
  font-weight: 600;
  color: #000;
  text-align: center;
}
.index-header h3 span {
  color: #be952c;
}
@media (max-width: 1199.98px) {
  .index-header h3 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991.98px) {
  .index-header h3 {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .index-header h3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .index-header h3 {
    font-size: 1.2rem;
  }
}
.index-header p {
  width: 700px;
  margin: 25px auto 0 auto;
  color: #000;
  text-align: center;
}
@media (max-width: 767.98px) {
  .index-header p {
    width: 95%;
    font-size: 0.8rem;
  }
}
.index-header svg {
  fill: #be952c;
  height: 45px;
  width: 45px;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  padding: 7px;
}
@media (max-width: 575.98px) {
  .index-header svg {
    display: none;
  }
}
.index-header figure {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 750px;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .index-header figure {
    height: 650px;
  }
}
@media (max-width: 991.98px) {
  .index-header figure {
    height: 550px;
  }
}
@media (max-width: 767.98px) {
  .index-header figure {
    height: 450px;
  }
}
@media (max-width: 575.98px) {
  .index-header figure {
    height: 350px;
  }
}

.layout-page {
  color: #FFF;
}
.layout-page .contact-section {
  background: unset !important;
}

.client-page .brands {
  background: #FFF;
}
.client-page .brands .brand-border {
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  padding: 2px;
  border-radius: 12px;
  margin: 12px 0;
}
.client-page .brands .brand-box {
  background: #141414;
  height: 100px;
  border-radius: 12px;
  margin: 0;
  padding: 10px 15px;
}

.section-header-line {
  margin-bottom: 50px;
}
.section-header-line h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFF;
}
@media (max-width: 575.98px) {
  .section-header-line h3 {
    font-size: 1.4rem !important;
  }
}
.section-header-line p {
  text-align: center;
  margin: auto;
  width: 800px;
  color: #bdbdbd;
  display: block;
}
@media (max-width: 575.98px) {
  .section-header-line p {
    font-size: 0.8rem !important;
    width: 95% !important;
  }
}

.one-event-header {
  padding: 100px 0;
  border-bottom: 1px solid #1e1e1e;
}
.one-event-header .event-name {
  text-align: center;
  margin-bottom: 75px;
}
.one-event-header .event-name img {
  width: 150px;
  margin-bottom: 25px;
}
.one-event-header .event-name h3 {
  font-size: 4.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
}
@media (max-width: 575.98px) {
  .one-event-header .event-name h3 {
    font-size: 2.25rem;
  }
}
.one-event-header .event-name p {
  font-size: 1rem;
  color: #000;
}
@media (max-width: 575.98px) {
  .one-event-header .event-name p {
    font-size: 0.85rem;
  }
}
.one-event-header .event-name .event-line {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.one-event-header .event-name .event-line a {
  color: #FFF;
  margin-left: 25px;
  padding: 5px 8px;
  font-size: 0.8rem;
  font-weight: 200;
  height: 40px;
  width: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #09a17a;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  border-radius: 50px;
}
@media (max-width: 575.98px) {
  .one-event-header .event-name .event-line a {
    font-size: 0.7rem;
  }
}
.one-event-header .event-name .event-line .transparent-btn {
  background: #333b97;
}
.one-event-header .event-line {
  margin-bottom: 25px;
}
.one-event-header .event-line h3 {
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
}
.one-event-header .event-line p {
  color: #a7a7a7;
  font-size: 1rem;
}

.event-line-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.event-line-btns a {
  color: #FFF;
  margin-left: 25px;
  padding: 5px 8px;
  font-size: 1rem;
  font-weight: 600;
  height: 55px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #09a17a;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  border-radius: 50px;
}
@media (max-width: 575.98px) {
  .event-line-btns a {
    font-size: 0.7rem;
  }
}
.event-line-btns .transparent-btn {
  background: #333b97;
}

.event-main-img {
  padding: 1px;
  width: 300px;
  margin: 0 auto 0px auto;
}
@media (max-width: 575.98px) {
  .event-main-img {
    width: 200px;
  }
}
.event-main-img img {
  width: 300px;
  margin: 0 auto 25px auto;
  border-radius: 12px;
  padding: 20px;
}
@media (max-width: 575.98px) {
  .event-main-img img {
    width: 200px;
  }
}

.event-page {
  background-color: #FFF;
  background-repeat: no-repeat;
}

.event-section {
  padding: 100px 0;
  color: #000;
  border-bottom: 1px solid #ddd;
}
.event-section h3 {
  font-size: 2.5rem;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .event-section h3 {
    font-size: 1rem;
  }
}
.event-section p {
  font-size: 1rem;
  line-height: 35px;
  color: #535353;
  margin-bottom: 0;
}
.event-section .event-line-btns {
  margin-top: 0;
}
.event-section .event-line-btns a {
  width: 100px;
}
.event-section .event-section-img {
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  padding: 1px;
  border-radius: 12px;
  margin-bottom: 75px;
  margin-top: 50px;
}
.event-section .event-section-img img {
  max-width: 100%;
  border-radius: 12px;
}

.pdf {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  padding: 0;
  margin: 0;
}

.pdf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pdf-header .event-line-btns a {
  margin-top: 0;
  font-size: 0.8rem;
  color: #FFF;
  width: 150px;
}

.sign-event-footer {
  text-align: center;
  padding: 75px 0;
}
.sign-event-footer h3 {
  font-size: 4rem;
  color: #000;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .sign-event-footer h3 {
    font-size: 2rem;
  }
}
.sign-event-footer p {
  font-size: 0.9rem;
  color: #535535;
}
.sign-event-footer .event-line-btns {
  margin-top: 25px;
}

.register-event {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #FFF;
  padding: 50px;
  border-radius: 12px;
  margin-top: 50px;
}
.register-event h3 {
  margin-bottom: 45px;
  font-size: 2.5rem;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .register-event {
    padding: 35px 15px;
  }
}
.register-event .section-header {
  margin-bottom: 25px;
}
@media (max-width: 575.98px) {
  .register-event .section-header {
    margin-bottom: 10px;
  }
}
.register-event .section-header h3 {
  color: #000;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .register-event .section-header h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}
.register-event .contacts-map-message {
  padding: 75px 0;
}
.register-event .contact-side-card-header h3 {
  color: #FFF;
  font-size: 2.3rem;
  margin-bottom: 35px;
}
@media (max-width: 575.98px) {
  .register-event .contact-side-card-header h3 {
    font-size: 1.4rem;
  }
}
.register-event .contact-side-card-header p {
  color: #c2c2c2;
  margin-bottom: 25px;
}
.register-event .contact-info-parent .contact-info-content-inner {
  border: 1px solid #d9e3e4;
}
.register-event .contact-info-parent .contact-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .register-event .contact-info-parent .contact-info-container {
    display: block;
    text-align: center;
  }
}
.register-event .contact .contacts-container {
  height: 100%;
  width: 100%;
}
.register-event .contact .contact-info h3 {
  font-size: 4rem;
  position: relative;
  color: #08344e;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .register-event .contact .contact-info h3 {
    font-size: 2.5rem !important;
  }
}
.register-event .contact .contact-info h3 svg {
  height: 84px;
  width: 295px;
  position: absolute;
  top: 99%;
  fill: #be0f5d;
  right: 0%;
  transform: translate(0%, 0);
}
@media (max-width: 991.98px) {
  .register-event .contact .contact-info h3 svg {
    right: unset;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.register-event .contact .contact-info p {
  margin-top: 25px;
  color: #FFF;
  width: 80%;
  font-size: 1rem;
}
@media (max-width: 991.98px) {
  .register-event .contact .contact-info p {
    margin: auto;
    text-align: center;
  }
}
.register-event .contact .contact-info .contacts-line .contact-line {
  display: flex;
  align-items: center;
}
.register-event .contact .contact-info .contacts-line .contact-line svg {
  height: 40px;
  fill: #b81c32;
  margin-left: 10px;
  margin-bottom: 0;
}
.register-event .contact .contact-info .contacts-line .contact-line .contact-line-part {
  margin: 20px 0;
}
.register-event .contact .contact-info .contacts-line .contact-line .contact-line-part h6 {
  margin: 0;
  font-size: 1.2rem;
  display: block;
}
.register-event .contact .contact-info .contacts-line .contact-line .contact-line-part p {
  margin: 0;
  width: 100%;
}
.register-event .contact .contact-form {
  margin: auto;
  margin-bottom: 0;
}
.register-event .contact .contact-form form {
  background: unset;
  padding: 0;
  border-radius: 20px;
}
.register-event .contact .contact-form form span {
  color: #be952c;
  font-size: 1rem;
  font-weight: 600;
}
.register-event .contact .contact-form form h3 {
  font-size: 2.3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #08344e;
}
.register-event .contact .contact-form form .form-group {
  margin-bottom: 20px;
}
.register-event .contact .contact-form form .form-group .form-control {
  padding: 10px 34px 10px 15px;
  font-size: 0.9rem;
  line-height: 22px;
  margin-right: auto;
  height: 55px;
  border: 1px solid #a7a7a7;
  background: unset;
  color: #000;
  border-radius: 12px;
}
@media (max-width: 575.98px) {
  .register-event .contact .contact-form form .form-group .form-control {
    font-size: 0.7rem;
    padding: 10px 10px 10px 15px;
  }
}
.register-event .contact .contact-form form .form-group .form-control::-moz-placeholder {
  color: #a7a7a7;
}
.register-event .contact .contact-form form .form-group .form-control::placeholder {
  color: #a7a7a7;
}
.register-event .contact .contact-form form .form-group textarea {
  min-height: 250px;
}
.register-event .contact .contact-form form a {
  border: unset;
  padding: 19px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  display: flex;
  align-items: center;
  margin: 25px auto 0 auto;
  color: #FFF;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
}
.register-event iframe {
  margin-bottom: -7px !important;
}
.register-event .contact-side-card {
  margin-right: 75px;
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .register-event .contact-side-card {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.register-event .contact-side-card .phone {
  margin-top: 25px;
}
.register-event .contact-side-card .phone a {
  text-decoration: underline !important;
  color: #b81c32 !important;
  font-size: 2.5rem;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.register-event .contact-side-card .address {
  padding: 20px 0 20px 0;
}
.register-event .contact-side-card .address span {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #FFF;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 15px;
  display: block;
}
.register-event .contact-side-card .address p {
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 0;
}
.register-event .contact-side-card .email {
  padding: 20px 0 20px 0;
}
.register-event .contact-side-card .email span {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #FFF;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 15px;
  display: block;
}
.register-event .contact-side-card .email a {
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 0;
}
.register-event .contact-side-card .social-icons {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 25px;
  padding-right: 0;
}
.register-event .contact-side-card .social-icons li {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.register-event .contact-side-card .social-icons li:hover {
  padding: 0;
}
.register-event .contact-side-card .social-icons li:hover a svg {
  fill: #FFF;
}
.register-event .contact-side-card .social-icons li a {
  text-decoration: none;
}
.register-event .contact-side-card .social-icons li a svg {
  height: 18px;
  width: 18px;
  fill: #FFF;
  transition: all 0.3s ease-in-out;
}

.success-job {
  padding: 65px 0 65px 0;
  font-size: 24px;
}
.success-job .main-container {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.success-job .check-container {
  width: 6.25rem;
  height: 7.5rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}
.success-job .check-container .check-background {
  width: 100%;
  height: calc(100% - 1.25rem);
  background: linear-gradient(to bottom right, #5de593, #41d67c);
  box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  transform: scale(0.84);
  border-radius: 50%;
  animation: animateContainer 0.75s ease-out forwards 0.75s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.success-job .check-container .check-background svg {
  width: 65%;
  transform: translateY(0.25rem);
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: animateCheck 0.35s forwards 1.25s ease-out;
}
.success-job .check-container .check-shadow {
  bottom: calc(-15% - 5px);
  left: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgb(73, 218, 131), transparent);
  animation: animateShadow 0.75s ease-out forwards 0.75s;
}
@keyframes animateContainer {
  0% {
    opacity: 0;
    transform: scale(0);
    box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  25% {
    opacity: 1;
    transform: scale(0.9);
    box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  43.75% {
    transform: scale(1.15);
    box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  62.5% {
    transform: scale(1);
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
  }
  81.25% {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
  100% {
    opacity: 1;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
}
@keyframes animateCheck {
  from {
    stroke-dashoffset: 80;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animateShadow {
  0% {
    opacity: 0;
    width: 100%;
    height: 15%;
  }
  25% {
    opacity: 0.25;
  }
  43.75% {
    width: 40%;
    height: 7%;
    opacity: 0.35;
  }
  100% {
    width: 85%;
    height: 15%;
    opacity: 0.25;
  }
}
.success-job h3 {
  text-align: center;
  color: #000;
}
.success-job p {
  text-align: center;
  color: #000;
  font-size: 0.9rem;
  width: 50%;
  margin: auto;
}
@media (max-width: 767.98px) {
  .success-job p {
    width: 100%;
  }
}
.success-job .back-home {
  border: unset;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  border-radius: 50px;
  color: #FFF;
  padding: 12px 35px 12px 35px;
  font-size: 1rem;
  font-weight: 600;
  font-weight: 500;
  margin: 25px 0 0 0;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  display: table;
  text-align: center;
  margin: 25px auto;
}

.all-events-page {
  padding: 75px 0;
}
.all-events-page .all-events-container .all-event-card {
  margin: 24px 0;
}
.all-events-page .all-events-container .all-event-card .all-event-card-image {
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  padding: 1px;
  border-radius: 12px;
  margin-bottom: 25px;
}
.all-events-page .all-events-container .all-event-card .all-event-card-image figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 250px;
  width: 100%;
  border-radius: 12px;
  margin: 0;
}
.all-events-page .all-events-container .all-event-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.all-events-page .all-events-container .all-event-card a {
  display: block;
  color: #21ab84;
  font-size: 1rem;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.load-more a {
  margin: 75px auto 0 auto;
  padding: 5px 8px;
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 200;
  height: 40px;
  width: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #09a17a;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  border-radius: 50px;
}

.layout-page .brands {
  background: #FFF;
}
.layout-page .brands .brand-border {
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  padding: 2px;
  border-radius: 12px;
  margin: 12px 0;
}
.layout-page .brands .brand-box {
  background: #FFF;
  border-radius: 12px;
  height: 290px;
  margin: 0;
  padding: 10px 15px;
  display: block;
}
.layout-page .brands .brand-box img {
  max-width: 100%;
  text-align: center;
  background: #040406;
  border-radius: 12px;
  margin-bottom: 18px;
  padding: 10px;
}
.layout-page .brands .brand-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
}
.layout-page .brands .brand-box p {
  color: #535353;
  display: block;
  font-size: 0.85rem;
}

.section-header-line {
  margin-bottom: 50px;
}
.section-header-line h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}
.section-header-line p {
  text-align: center;
  margin: auto;
  width: 800px;
  color: #bdbdbd;
  display: block;
}

.layout-page .services {
  background: transparent;
  color: #000;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "ar";
  background-color: #FFF;
  height: 100%;
  position: relative;
  overflow-x: hidden;
}

.row {
  overflow: hidden;
}

.container-fluid {
  padding-right: 50px;
  padding-left: 50px;
}

.row-inside-row {
  margin-right: -8px;
  margin-left: -8px;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-6,
.col-md-3,
.col-md-4,
.col-md-8,
.col-md-9,
.col-sm-4,
.col-sm-6 {
  padding-right: 8px;
  padding-left: 8px;
}

a {
  display: block;
  text-decoration: none;
  color: unset;
}
a:hover {
  color: unset;
  text-decoration: unset;
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
  display: block;
}
.section-header-center h3 {
  color: #071c1f;
  font-size: 3rem;
  padding-left: 10px;
  margin-bottom: 0;
  font-weight: 700;
}
.section-header-center h3 span {
  font-weight: 400;
  color: #be952c;
}
@media (max-width: 575.98px) {
  .section-header-center h3 {
    font-size: 2rem;
  }
}
.section-header-center p {
  display: flex;
  align-items: center;
  width: 60%;
  margin: auto;
  color: #515151;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .section-header-center p {
    width: 100%;
  }
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: linear-gradient(45deg, #f2fffc, #edf3ff);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #b81c32;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #f1c415;
}

.pretitle {
  color: #b81c32;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.index-header-boxes {
  margin-top: 75px;
}
.index-header-boxes .box {
  border-radius: 4px;
  margin-bottom: 12px;
}
.index-header-boxes .box .box-card {
  padding: 25px;
}
.index-header-boxes .box-1 {
  height: 350px;
  background: #ee3558;
}
.index-header-boxes .box-2 {
  height: 150px;
  background: #b81c32;
}
.index-header-boxes .box-3 {
  height: 300px;
  background: #f1c415;
}
.index-header-boxes .box-4 {
  height: 200px;
  background: #f04f24;
}
.index-header-boxes .box-5 {
  height: 200px;
  background: #b81c32;
}
.index-header-boxes .box-6 {
  height: 300px;
  background: #333b97;
}
.index-header-boxes .box-7 {
  height: 150px;
  background: #ee3558;
}
.index-header-boxes .box-8 {
  height: 350px;
  background: #2cc0d8;
}

.brands {
  padding: 75px 0 50px 0;
  background: #FFF;
  background-image: url(assets/images/bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.brands .brand-box {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  margin: 0 10px;
  background: #000000;
  height: 100px;
  width: 100%;
  border-radius: 12px;
  padding: 8px 12px;
}
.brands .brand-box img {
  max-width: 100%;
  text-align: center;
  max-height: 100%;
}

.grand-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about {
  padding: 100px 0 100px 0;
  background-image: url(assets/images/bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about .about-part-text {
  margin-left: 25px;
}
@media (max-width: 767.98px) {
  .about .about-part-text {
    margin-left: 0;
  }
}
.about .about-part h3 {
  font-size: 2rem;
  margin-bottom: 35px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 767.98px) {
  .about .about-part h3 {
    font-size: 1.6rem;
  }
}
.about .about-part .rate-section {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  margin-top: -5px;
}
.about .about-part .rate-section svg {
  height: 50px;
  width: 50px;
  padding: 10px;
  fill: #FFF;
  background: #000;
  border-radius: 4px;
}
.about .about-part .rate-section .rate-section-text {
  margin-right: 15px;
  display: block;
}
.about .about-part .rate-section .rate-section-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1px;
  color: #000;
}
@media (max-width: 767.98px) {
  .about .about-part .rate-section .rate-section-text h4 {
    font-size: 1rem;
  }
}
.about .about-part .rate-section .rate-section-text span {
  font-size: 1.1rem;
  color: #000;
}
@media (max-width: 767.98px) {
  .about .about-part .rate-section .rate-section-text span {
    font-size: 0.9rem;
  }
}
.about .about-part .text-section {
  border-top: 1px solid #d3d3d3;
  padding: 25px 0;
}
.about .about-part .text-section p {
  font-size: 1rem;
  color: #535353;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
.about .about-part .text-section p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .about .about-part .text-section p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
  }
}
.about .about-part .text-section .text-section-more p {
  font-size: 1rem;
  color: #535353;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
.about .about-part .text-section .text-section-more p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .about .about-part .text-section .text-section-more p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
  }
}
.about .about-part .text-section .read-more-btn {
  margin-top: 20px;
  padding: 12px 30px;
  border: none;
  background: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  color: #FFF;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "ar";
  box-shadow: 0 2px 8px rgba(184, 28, 50, 0.3);
}
.about .about-part .text-section .read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 28, 50, 0.4);
}
.about .about-part .text-section .read-more-btn:active {
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .about .about-part .text-section .read-more-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
    margin-top: 15px;
  }
}
.about .about-part img {
  max-width: 100%;
  border-radius: 4px;
  height: 350px;
}

.speakers {
  padding: 100px 0 70px 0;
  background-image: url(assets/images/bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.speakers .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.speakers .section-header h3 {
  color: #000;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .speakers .section-header h3 {
    font-size: 1.5rem;
  }
}
.speakers .section-header p {
  color: #535353;
  font-size: 1.1rem;
}
@media (max-width: 767.98px) {
  .speakers .section-header p {
    font-size: 0.9rem;
  }
}
.speakers .speaker-card {
  background: #FFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}
.speakers .speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.speakers .speaker-card .speaker-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.speakers .speaker-card .speaker-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.speakers .speaker-card:hover .speaker-image img {
  transform: scale(1.1);
}
.speakers .speaker-card .speaker-info {
  padding: 25px 20px;
  text-align: center;
}
.speakers .speaker-card .speaker-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}
@media (max-width: 767.98px) {
  .speakers .speaker-card .speaker-info h4 {
    font-size: 1.1rem;
  }
}
.speakers .speaker-card .speaker-info span {
  font-size: 1rem;
  color: #535353;
  display: block;
}
@media (max-width: 767.98px) {
  .speakers .speaker-card .speaker-info span {
    font-size: 0.9rem;
  }
}

.nums {
  padding: 50px 0 130px 0;
  background-image: url(assets/images/bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.nums .section-header-line {
  margin-bottom: 50px;
}
.nums .section-header-line h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}
@media (max-width: 767.98px) {
  .nums .section-header-line h3 {
    font-size: 1.5rem;
  }
}
.nums .section-header-line p {
  text-align: center;
  margin: auto;
  width: 800px;
  color: #bdbdbd;
  display: block;
}
@media (max-width: 767.98px) {
  .nums .section-header-line p {
    font-size: 0.9rem;
    width: 95%;
  }
}
.nums .num-card-parent {
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  padding: 2px;
  margin: 8px 2px !important;
  border-radius: 12px;
}
.nums .num-card {
  background: #FFF;
  border-radius: 12px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
}
.nums .num-card svg {
  height: 45px;
  width: 45px;
  margin-left: 12px;
}
.nums .num-card .num-card-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #000;
}
.nums .num-card .num-card-text span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #535353;
}
.nums .cg svg {
  fill: #b81c32;
}
.nums .cr svg {
  fill: #ee3558;
}
.nums .cy svg {
  fill: #f1c415;
}
.nums .co svg {
  fill: #f04f24;
}
.nums .cs svg {
  fill: #2cc0d8;
}
.nums .cb svg {
  fill: #333b97;
}

.services {
  padding: 50px 0 120px 0;
  background-image: url(assets/images/bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.services .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 767.98px) {
  .services .section-header {
    display: block;
  }
}
.services .section-header h3 {
  color: #000;
  font-size: 2.2rem;
  margin-left: 50px;
  flex: 1;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .services .section-header h3 {
    text-align: center;
    margin-left: 0;
    font-size: 1.5rem;
  }
}
.services .section-header p {
  color: #535353;
  flex: 1;
  margin-right: 60px;
}
@media (max-width: 767.98px) {
  .services .section-header p {
    text-align: center;
    margin-right: 0;
    font-size: 0.9rem;
  }
}
.services .serv-card-border {
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  padding: 2px;
  border-radius: 12px;
  margin-top: 15px;
}
.services .serv-card {
  background: #FFF;
  padding: 40px 35px;
  border-radius: 12px;
}
.services .serv-card .serv-icon {
  display: inline-grid;
}
.services .serv-card .serv-icon span.nums-list {
  font-weight: 600;
  font-size: 1.5rem;
  color: #f1c415;
  margin-right: 15px;
  margin-bottom: 50px;
}
.services .serv-card img {
  max-width: 100%;
  margin-bottom: 35px;
}
.services .serv-card lord-icon {
  height: 100px;
  width: 100px;
  margin-bottom: 0;
}
.services .serv-card h3 {
  color: #000;
  font-size: 1.2rem;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 35px;
}
.services .serv-card p {
  font-size: 0.85rem;
  color: #535353;
  margin-bottom: 25px;
  min-height: 82px;
}
.services .serv-card a {
  color: #535353;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.services .serv-card a svg {
  height: 15px;
  width: 15px;
  fill: #151515;
  margin-right: 2px;
}

.events {
  padding: 100px 0;
  background-image: url(assets/images/bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.events .section-header-line {
  margin-bottom: 50px;
}
.events .section-header-line h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}
@media (max-width: 767.98px) {
  .events .section-header-line h3 {
    font-size: 1.5rem;
  }
}
.events .section-header-line p {
  text-align: center;
  margin: auto;
  width: 800px;
  color: #535353;
  display: block;
}
@media (max-width: 767.98px) {
  .events .section-header-line p {
    font-size: 0.9rem;
    width: 95%;
  }
}
.events .event-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 15px 0;
  color: #535353;
}
.events .event-card {
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c) !important;
  padding: 0px;
  height: 150px;
  width: 100%;
  background: #b81c32;
  margin: 0 0 10px 0;
  border-radius: 12px;
}
.events .event-card .event-card-parent {
  height: 100%;
}
.events .event-card .event-card-parent .event-card-content {
  border-radius: 12px;
  height: 100%;
  padding: 3px;
  position: relative;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.events .event-card .event-card-parent .event-card-content img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  border-radius: 12px;
  pointer-events: none;
  position: relative;
}
.events .event-card .event-card-parent .event-card-content .single-content {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 95%;
  transform: translate(-50%, 0);
  border-radius: 8px;
  padding: 15px 15px;
  overflow: hidden;
  background-color: #040406;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.events .event-card .event-card-parent .event-card-content .single-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #FFF;
}
.events .event-card .event-card-parent .event-card-content .single-content span {
  color: #b81c32;
  font-weight: 600;
  font-size: 0.9rem;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.events .event-card .event-card-parent .event-card-content .single-content .single-content-icon {
  background: #FFF;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events .event-card .event-card-parent .event-card-content .single-content svg {
  height: 22px;
  width: 22px;
  fill: #000;
}
.events .event-card .event-card-parent .event-card-content:after {
  content: "";
  background: rgba(0, 60, 179, 0.1411764706);
  height: 100%;
  width: 100%;
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  z-index: 5;
  border-radius: 12px;
}
.events .event-card-small .event-card-parent .event-card-content .single-content {
  padding: 10px 15px;
}
.events .event-card-small .event-card-parent .event-card-content .single-content h3 {
  font-size: 0.8rem;
}
.events .event-card-small .event-card-parent .event-card-content .single-content span {
  font-size: 0.7rem;
}
.events .event-card-small .event-card-parent .event-card-content .single-content .single-content-icon {
  height: 20px;
  width: 20px;
}
.events .event-card-small .event-card-parent .event-card-content .single-content svg {
  height: 12px;
  width: 12px;
}
.events .er {
  background: #ee3558;
  height: 410px;
}
.events .eg {
  background: #b81c32;
  height: 200px;
}
.events .eb {
  background: #333b97;
  height: 200px;
}
.events .es {
  background: #2cc0d8;
  height: 200px;
}
.events .ey {
  background: #f1c415;
  height: 200px;
}

.contact-section {
  background-image: url(assets/images/bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-section .section-header {
  margin-bottom: 25px;
}
.contact-section .section-header h3 {
  color: #000;
  font-weight: 700;
}
.contact-section .contacts-map-message {
  padding: 75px 0;
}
.contact-section .contact-side-card-header h3 {
  color: #000;
  font-size: 2.3rem;
  margin-bottom: 35px;
}
.contact-section .contact-side-card-header p {
  color: #535353;
  margin-bottom: 25px;
}
.contact-section .contact-info-parent .contact-info-content-inner {
  border: 1px solid #d9e3e4;
}
.contact-section .contact-info-parent .contact-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .contact-section .contact-info-parent .contact-info-container {
    display: block;
    text-align: center;
  }
}
.contact-section .contact-info-parent .contact-info-container .side {
  flex: 1;
}
@media (max-width: 991.98px) {
  .contact-section .contact-info-parent .contact-info-container .side {
    margin: 20px 0;
  }
}
.contact-section .contact-info-parent .contact-info-container .side a {
  text-decoration: none;
  display: block;
}
.contact-section .contact-info-parent .contact-info-container .side .phone {
  font-size: 2.2rem;
  font-weight: 600;
  color: #b81c32;
}
.contact-section .contact-info-parent .contact-info-container .side .email {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 500;
}
.contact-section .contact-info-parent .contact-info-container .side .address {
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0;
}
.contact-section .contact-info-parent .contact-info-container .side .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-info-parent .contact-info-container .side .social-links .links {
  margin: 0 7px;
  background: #e4e7ec;
  padding: 12px;
  border-radius: 50%;
}
.contact-section .contact {
  padding-bottom: 75px;
}
.contact-section .contact .contacts-container {
  height: 100%;
  width: 100%;
}
.contact-section .contact .contact-info h3 {
  font-size: 4rem;
  position: relative;
  color: #08344e;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .contact-section .contact .contact-info h3 {
    font-size: 2.5rem !important;
  }
}
.contact-section .contact .contact-info h3 svg {
  height: 84px;
  width: 295px;
  position: absolute;
  top: 99%;
  fill: #be0f5d;
  right: 0%;
  transform: translate(0%, 0);
}
@media (max-width: 991.98px) {
  .contact-section .contact .contact-info h3 svg {
    right: unset;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.contact-section .contact .contact-info p {
  margin-top: 25px;
  color: #FFF;
  width: 80%;
  font-size: 1rem;
}
@media (max-width: 991.98px) {
  .contact-section .contact .contact-info p {
    margin: auto;
    text-align: center;
  }
}
.contact-section .contact .contact-info .contacts-line .contact-line {
  display: flex;
  align-items: center;
}
.contact-section .contact .contact-info .contacts-line .contact-line svg {
  height: 40px;
  fill: #b81c32;
  margin-left: 10px;
  margin-bottom: 0;
}
.contact-section .contact .contact-info .contacts-line .contact-line .contact-line-part {
  margin: 20px 0;
}
.contact-section .contact .contact-info .contacts-line .contact-line .contact-line-part h6 {
  margin: 0;
  font-size: 1.2rem;
  display: block;
}
.contact-section .contact .contact-info .contacts-line .contact-line .contact-line-part p {
  margin: 0;
  width: 100%;
}
.contact-section .contact .contact-form {
  margin: auto;
  margin-bottom: 0;
}
.contact-section .contact .contact-form form {
  background: unset;
  padding: 0;
  border-radius: 20px;
}
.contact-section .contact .contact-form form span {
  color: #be952c;
  font-size: 1rem;
  font-weight: 600;
}
.contact-section .contact .contact-form form h3 {
  font-size: 2.3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #08344e;
}
.contact-section .contact .contact-form form .form-group {
  margin-bottom: 20px;
}
.contact-section .contact .contact-form form .form-group .form-control {
  padding: 10px 34px 15px 15px;
  font-size: 17px;
  line-height: 22px;
  margin-right: auto;
  height: 55px;
  border: 1px solid #a7a7a7;
  background: unset;
  color: #000;
  border-radius: 12px;
}
.contact-section .contact .contact-form form .form-group .form-control::-moz-placeholder {
  color: #a7a7a7;
}
.contact-section .contact .contact-form form .form-group .form-control::placeholder {
  color: #a7a7a7;
}
.contact-section .contact .contact-form form .form-group textarea {
  min-height: 250px;
}
.contact-section .contact .contact-form form a {
  border: unset;
  padding: 19px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #FFF;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
}
.contact-section iframe {
  margin-bottom: -7px !important;
}
.contact-section .contact-side-card {
  margin-right: 75px;
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .contact-section .contact-side-card {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.contact-section .contact-side-card .phone {
  margin-top: 25px;
}
.contact-section .contact-side-card .phone a {
  text-decoration: underline !important;
  color: #b81c32 !important;
  font-size: 2.5rem;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.contact-section .contact-side-card .address {
  padding: 20px 0 20px 0;
}
.contact-section .contact-side-card .address span {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #000;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 15px;
  display: block;
}
.contact-section .contact-side-card .address p {
  color: #000;
  font-size: 1rem;
  margin-bottom: 0;
}
.contact-section .contact-side-card .email {
  padding: 20px 0 20px 0;
}
.contact-section .contact-side-card .email span {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #000;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 15px;
  display: block;
}
.contact-section .contact-side-card .email a {
  color: #000;
  font-size: 1rem;
  margin-bottom: 0;
}
.contact-section .contact-side-card .social-icons {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 25px;
  padding-right: 0;
}
.contact-section .contact-side-card .social-icons li {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.contact-section .contact-side-card .social-icons li:hover {
  padding: 0;
}
.contact-section .contact-side-card .social-icons li:hover a svg {
  fill: #000;
}
.contact-section .contact-side-card .social-icons li a {
  text-decoration: none;
}
.contact-section .contact-side-card .social-icons li a svg {
  height: 18px;
  width: 18px;
  fill: #000;
  transition: all 0.3s ease-in-out;
}

.contacts-map {
  margin-bottom: -7px !important;
}

.section-sep {
  margin: 0;
  display: flex;
  height: 125px;
  width: 100vw;
  align-items: center;
  direction: ltr;
  background: #FFF;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}
.scrolling-wrap .comm {
  display: flex;
  animation: scroll 40s linear infinite;
  cursor: pointer;
  margin: 0;
}
.scrolling-wrap .comm div {
  margin: 0;
  text-transform: uppercase;
  font-size: 5rem;
  color: #b81c32;
  stroke: #151515;
}
.scrolling-wrap .comm div:nth-child(odd) {
  -webkit-text-stroke-color: unset;
  stroke: unset;
  color: #000;
}
.scrolling-wrap .comm div img {
  max-width: 100%;
  height: 85px;
  width: 140px;
  margin: 0 116px 0 8px;
}
.scrolling-wrap .comm div:before {
  content: "•";
  -webkit-text-stroke: 0px #000;
  color: #b81c32;
  display: inline-block;
  margin: 0 3rem 0 3rem;
}
.scrolling-wrap .comm div:hover {
  color: #ee3558;
  transition: 0.2s;
  stroke: #ee3558;
  -webkit-text-stroke-color: #ee3558;
}
.scrolling-wrap .comm2 {
  display: flex;
  animation: scroll 50s linear infinite;
  cursor: pointer;
  margin: 0;
}
.scrolling-wrap .comm2 div {
  margin: 0;
  text-transform: uppercase;
  font-size: 5rem;
  color: rgba(0, 0, 0, 0);
  stroke: #151515;
}
.scrolling-wrap .comm2 div:before {
  content: "•";
  color: #b81c32;
  display: inline-block;
  margin: 0 4rem;
  stroke: #b81c32;
  -webkit-text-stroke-color: #b81c32;
}
.scrolling-wrap .comm2 div:hover {
  color: #b81c32;
  transition: 0.2s;
  stroke: #b81c32;
  -webkit-text-stroke-color: #b81c32;
}
.scrolling-wrap:hover .comm {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.carousel {
  overflow-x: clip;
}
.carousel .swiper {
  padding: 0 0;
  overflow: visible;
}
.carousel .swiper .swiper-slide {
  width: 474px;
}
@media (max-width: 575.98px) {
  .carousel .swiper .swiper-slide {
    padding: 39px;
  }
}
.carousel .swiper .swiper-slide img {
  height: 350px;
  position: relative;
}
.carousel .single {
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  border-radius: 12px;
  padding: 3px;
  position: relative;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.carousel .single img {
  width: 100%;
  height: auto;
  vertical-align: top;
  border-radius: 12px;
  pointer-events: none;
  position: relative;
}
.carousel .single .single-content {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 95%;
  transform: translate(-50%, 0);
  border-radius: 8px;
  padding: 15px 15px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.carousel .single .single-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #FFF;
}
@media (max-width: 575.98px) {
  .carousel .single .single-content h3 {
    font-size: 0.75rem;
  }
}
.carousel .single .single-content span {
  color: #b81c32;
  font-weight: 600;
  font-size: 0.9rem;
  background-image: linear-gradient(to left bottom, #b81c32, #bf4328, #c26121, #c27c21, #be952c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
@media (max-width: 575.98px) {
  .carousel .single .single-content span {
    font-size: 0.65rem;
  }
}
.carousel .single .single-content .single-content-icon {
  background: #FFF;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .carousel .single .single-content .single-content-icon {
    height: 30px;
    width: 30px;
    display: none;
  }
}
.carousel .single .single-content svg {
  height: 22px;
  width: 22px;
  fill: #000;
}
@media (max-width: 575.98px) {
  .carousel .single .single-content svg {
    height: 16px;
    width: 16px;
  }
}
.carousel .single:after {
  content: "";
  background: rgba(0, 60, 179, 0.1411764706);
  height: 100%;
  width: 100%;
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  z-index: 5;
  border-radius: 12px;
}

.toggle-mode {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
  padding: 5px;
}
.toggle-mode svg {
  height: 35px;
  width: 35px;
  fill: #FFF;
}/*# sourceMappingURL=main.css.map */