:root {
  --primary-color: #f32424;
  --secondary-color: #289672;
  --light-secondary-color: rgb(40, 150, 114, 0.15);
  --font-main-color: #0a0a0a;
  --font-secondary-color: #707070;
  --body-color: #fafafa;
  --btn-transition: all 0.3s ease-in-out;
}

body {
  background-color:#e6f0f5;
  font-family: "Cairo", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--font-main-color);
  font-weight: 500;
  

}

p,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
a,
.btn,
.h1,
button,
input {
  margin: 0;
  padding: 0;
}

input,
button,
select,
textarea,
.form-control {
  box-shadow: none !important;
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

a {
  text-decoration: none;
}

a,
button,
input {
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

ul {
  list-style: none;
}

input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

.form-control {
  text-align: right;
}

.input-field {
  position: relative;
  display: flex;
  align-items: center;
}

.input-field .form-control {
  padding-left: 45px;
}

.input-field .show-pass {
  position: absolute;
  left: 20px;
  color: var(--dark-gray);
  font-size: 14px;
}

.input-field a {
  font-weight: 500;
  color: var(--border-color);
}

.form-group label {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

section {
  padding: 40px 0;
  flex: 1;
  border-bottom: 1px dashed var(--border-color);
  position: relative;
}

section .bottom-section-link {
  position: absolute;
  width: 60px;
  height: 30px;
  bottom: 0;
  left: 50%;
  background-color: var(--body-color);
  border: 1px dashed var(--border-color);
  border-top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 5;
  color: var(--dark-gray);
  transform: translate(-50%, 100%);
  -webkit-transform: translate(-50%, 100%);
  -moz-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  -o-transform: translate(-50%, 100%);
  border-radius: 0 0 50% 50%;
  -webkit-border-radius: 0 0 50% 50%;
  -moz-border-radius: 0 0 50% 50%;
  -ms-border-radius: 0 0 50% 50%;
  -o-border-radius: 0 0 50% 50%;
}

.section-title {
  margin-bottom: 50px;
}

.section-title .title {
  width: fit-content;
  color: var(--secondary-color);
  position: relative;
}

.section-title .title .sq {
  content: '';
  width: 30px;
  Height: 30px;
  position: absolute;
  bottom: 5px;
  right: 0;
  z-index: 0;
  background-color: var(--primary-color);
  opacity: 0.3;
  transform: translateX(50%) rotate(-10deg);
  -webkit-transform: translateX(50%) rotate(-10deg);
  -moz-transform: translateX(50%) rotate(-10deg);
  -ms-transform: translateX(50%) rotate(-10deg);
  -o-transform: translateX(50%) rotate(-10deg);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.section-title .title h4 {
  position: relative;
  z-index: 1;
}

.section-title.center .title {
  margin: auto;
}

.image-cover {
  display: flex;
  overflow: hidden;
  position: relative;
}

.image-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-contain {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.image-contain img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.section-div {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.btn-1 {
  font-size: 14px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  width: fit-content;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

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

.btn-2 {
  padding: 12px 25px;
  color: var(--secondary-color) !important;
  background-color: #fff;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.btn-2 i {
  font-size: 14px;
}

.btn-2:hover {
  color: #fff !important;
  background-color: transparent;
  border-color: #fff;
}

.input-1,
.input-1:focus {
  padding: 10px 20px;
  color: var(--secondary-color);
  background-color: #fff;
  border: 1px solid #dbdbdb;
  resize: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* aspect-ratios */
.sameHeight {
  aspect-ratio: 1/1;
}

.customHeight {
  aspect-ratio: 1/0.7;
}

.customSmHeight {
  aspect-ratio: 1/0.4;
}

/* navbar */
.navbar {
  padding: 0;
  text-rendering: optimizeSpeed;
  /*position: fixed;*/
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

.navbar .navbar-brand {
  display: none;
  align-items: center;
  gap: 2px;
}

.navbar.fixed-nav .navbar-brand {
  display: flex;
}

.navbar.fixed-nav .navbar-brand .letter {
  font-size: 1rem;
  font-weight: 700;
  width: fit-content;
  padding: 5px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--primary-color);
  opacity: 0.8;
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  animation: brandAnimate 2s linear infinite forwards alternate;
  -webkit-animation: brandAnimate 2s linear infinite forwards alternate;
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

@keyframes brandAnimate {
  from {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
  }

  to {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }
}

.navbar.fixed-nav .navbar-brand:hover .letter {
  animation-play-state: paused;
  color: var(--primary-color);
  background-color: transparent;
  padding: 0;
  transform: rotate(0) !important;
  -webkit-transform: rotate(0) !important;
  -moz-transform: rotate(0) !important;
  -ms-transform: rotate(0) !important;
  -o-transform: rotate(0) !important;
}

.navbar .navbar-brand .image {
  margin-left: 0;
  padding: 0;
  width: 60px;
  background-color: var(--primary-color);
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.navbar .navbar-nav {
  /*align-items: stretch;*/
  gap: 0;
  height: 100%;
}

.navbar .navbar-nav .nav-item {
  display: flex;
  align-items: stretch;
  /*width: 100%*/
}

.navbar .navbar-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  /*padding: 30px 12px;*/
  color: #fff;
  opacity: 1;
}

.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-color);
}

.navbar.fixed-nav {
  background-color: #fff;
  box-shadow: 0px 0px 10px #0000000d;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  animation: fixedNav 0.5s forwards linear;
  -webkit-animation: fixedNav 0.5s forwards linear;
}

@keyframes fixedNav {
  to {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  color: var(--secondary-color);
}

/* header */
.main-header {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.main-header .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: opacity(0.1);
  -webkit-filter: opacity(0.1);
}

.main-header .content {
  z-index: 1;
}

html[lang="en"] .main-header .header-bg,
html[lang="en"] .main-header .image {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
}

.main-header .slogan-right {
  position: relative;
}

.main-header .slogan-right .hello {
  font-weight: 700;
  font-size: 25em;
  position: absolute;
  bottom: 50%;
  color: var(--secondary-color);
  right: 0;
  filter: opacity(0.05);
  -webkit-filter: opacity(0.05);
}

.main-header .slogan-right .name {
  font-weight: 700;
  margin-bottom: 30px;
  z-index: 1;
  position: relative;
}

.main-header .slogan-right .subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  position: relative;
  
}

.main-header .slogan-right .subtitle .num {
  width: 40px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--secondary-color);
  animation: brandAnimate 2s linear infinite forwards alternate;
  -webkit-animation: brandAnimate 2s linear infinite forwards alternate;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.main-header .slogan-right .text {
  color: var(--font-secondary-color);
  line-height: 1.8;
  margin-bottom: 30px;
  padding-left: 270px;
  z-index: 1;
  position: relative;
}

.main-header .slogan-right .more-info {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 12px 30px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

.main-header .slogan-right .more-info i {
  font-size: 18px;
  animation: arrowDown 0.8s linear alternate infinite;
  -webkit-animation: arrowDown 0.8s linear alternate infinite;
}

@keyframes arrowDown {
  0% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  50% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

.main-header .slogan-right .more-info:hover {
  color: #fff;
  background-color: var(--secondary-color);
}

.main-header .slogan-right .more-info:hover i {
  animation-play-state: paused;
}

.main-header .slogan-left {
  position: relative;
}

.main-header .slogan-left .image {
  filter: drop-shadow(-15px 0px 24px #00000020);
}

/* statements */
.statements {
  /*background-color: #f7f7f7;*/
  padding: 30px 0;
}

.statements .statement-slider li{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 10px !important;
}

.statements .statement-slider li:not(li.last, .ticker-spacer)::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    opacity: 0.5;
    transform: rotate(-10deg);
    border-radius: 2px;
}

.press-release-link{
    font-family: "Cairo", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color) !important;
}


/* modals */
.main-modal .modal-content {
  border: none;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.main-modal .modal-content .modal-header {
  border-color: #f7f7f7;
  color: var(--secondary-color);
}

.main-modal .modal-content .modal-header .modal-title {
  flex: 1;
}

.main-modal .modal-content .modal-header .close-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

/* about-me */
.about-me .nav-pills {
  gap: 10px;
}

.about-me .nav-pills .nav-item .nav-tab {
  color: var(--font-main-color);
  background-color: transparent;
  border: none;
  padding: 5px 10px;
  margin: 0;
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.about-me .nav-pills .nav-item .nav-tab.active {
  color: var(--secondary-color);
  background-color: var(--light-secondary-color);
}

.about-me .tab-content .text {
  margin-bottom: 20px;
  color: var(--font-secondary-color);
  line-height: 1.8;
}

.about-me .tab-content .bio-info {
  column-count: 2;
  margin-bottom: 30px;
}

.about-me .tab-content .bio-info li,
.about-me .tab-content .education-list li {
  margin-bottom: 15px;
}

.about-me .tab-content .bio-info p span {
  color: var(--secondary-color);
  font-weight: 600;
}

.about-me .tab-content .biography-list:not(:last-of-type) {
  margin-bottom: 25px;
}

.about-me .tab-content .biography-list .list-title {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 8px;
}

.about-me .tab-content .biography-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.about-me .tab-content .biography-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-me .tab-content .biography-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--font-main-color);
  opacity: 0.5;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
}

/* gallery */
.fancybox__container {
  --carousel-button-bg: rgb(0 0 0 / 44%);

  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;

  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: none;
}

.fancybox__nav {
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;

  --carousel-button-svg-stroke-width: 3;
}

.fancybox__nav .carousel__button.is-prev {
  left: 30px;
}

.fancybox__nav .carousel__button.is-next {
  right: 30px;
}

.carousel__button.is-close {
  top: 30px;
  right: 30px;
}

.fancybox__slide {
  padding: 0;
}

.fancybox__thumbs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.fancybox__thumbs .carousel__slide {
  padding: 20px 10px;
  overflow: visible;
}

.fancybox__thumb {
  border-radius: 6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3),
    0 2px 4px -1px rgba(0, 0, 0, 0.26);
}

.is-nav-selected .fancybox__thumb {
  transform: scale(1.25);
}

.is-nav-selected .fancybox__thumb::after {
  display: none;
}

.album-card {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

.album-card img {
  z-index: 0;
  transform-origin: right;
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

.album-card:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.album-card .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  z-index: 1;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

.album-card .hover-overlay .album-title {
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}

.album-card:hover .hover-overlay {
  opacity: 1;
}

.album-card:hover .hover-overlay .album-title {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

/* interviews */
.interview-card {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.interview-card .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

.interview-card .hover-overlay .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--primary-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

.interview-card .hover-overlay .icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

.interview-card:hover .hover-overlay {
  opacity: 1;
}

.interview-card:hover .hover-overlay .icon {
  background-color: transparent;
}

.interview-card:hover .hover-overlay .icon::before {
  border-color: #fff;

  animation: borderScale 1s linear forwards alternate infinite;
  -webkit-animation: borderScale 1s linear forwards alternate infinite;
}

.interviews-carousel .owl-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 0;
  position: absolute;
  left: 0;
  bottom: calc(100% + 50px);
}

.owl-theme .owl-nav [class*='owl-'] {
  margin: 0;
  width: 25px;
  height: 25px;
  font-size: 10px !important;
  color: #fff !important;
  background-color: var(--secondary-color) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.owl-theme .owl-nav [class*='owl-'].disabled {
  color: var(--secondary-color) !important;
  background-color: transparent !important;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background-color: var(--secondary-color);
}

@keyframes borderScale {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

/* timeline */
.timeline {
  overflow: hidden;
}

.timeline .timeline-map {
  position: relative;
}

.timeline .timeline-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  border-left: 1px dashed var(--font-secondary-color);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.timeline .timeline-map .timeline-card {
  position: relative;
  margin-bottom: 70px;
}

.timeline .timeline-map .timeline-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--body-color);
  border: 2px solid var(--secondary-color);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.timeline .timeline-map .timeline-card .line {
  flex: 1;
  display: block;
  opacity: 0.3;
  border-top: 2px dashed var(--font-secondary-color);
}

.timeline .timeline-map .timeline-card .year {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 120px;
  position: relative;
}

.timeline .timeline-map .timeline-card .year h2 {
  margin: 0;
  color: var(--body-color);
}

.timeline .timeline-map .timeline-card .year::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: -1;
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.timeline .timeline-map .timeline-card .desc {
  color: var(--text-color);
}

.timeline .timeline-map .timeline-card .desc .date {
  margin-bottom: 20px;
}

.timeline .timeline-map .timeline-card .desc .title {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.timeline .timeline-map .timeline-card .desc p {
  margin-bottom: 0;
}

.timeline .timeline-map .timeline-card.rtl .desc {
  padding-right: 30px;
}

.timeline .timeline-map .timeline-card.ltr .desc {
  padding-right: 0;
  padding-left: 30px;
}

.timeline .timeline-map .timeline-card.ltr .year::before {
  background-color: var(--primary-color);
  transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
}

.timeline .timeline-map .timeline-card.ltr .desc .title {
  color: var(--primary-color);
}

/* contact */
.contact .contact-methods {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contact .contact-methods li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact .contact-methods li .icon {
  font-size: 18px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--secondary-color);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.contact .contact-methods li .text {
  color: var(--dark-gray);
}

.contact .contact-methods li .text small {
  display: block;
  margin-bottom: 5px;
}

.contact .contact-methods li .text .link {
  color: var(--text-color);
}

.contact .image {
  box-shadow: 0 0 15px rgb(0 0 0 / 25%);
  width: 80%;
  margin-right: auto;
  padding-top: 100px;
  background: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

/* contact-info-fixed */
.contact-info-fixed {
  right: 20px;
  bottom: 20px;
  width: fit-content;
}

.contact-info-fixed .contact-btn {
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

.contact-info-fixed .contact-btn:hover {
  transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.contact-info-fixed .links li:not(:last-of-type) {
  margin-bottom: 15px;
}

.contact-info-fixed .links .link {
  color: #fff;

}

.contact-info-fixed .links .youtube {
  background-color: #CD201F;
}

.contact-info-fixed .links .twitter {
  background-color: #1DA1F2;
}

.contact-info-fixed .links .insta {
  background-color: #E4405F;
}

.contact-info-fixed .links .whats {
  background-color: #25D366;
}

.contact-info-fixed .links .tiktok {
  background-color: #000;
}

.contact-info-fixed .toggler-btn {
  color: #fff;
  background-color: var(--secondary-color);
  display: none;
  margin-top: 20px;
}


/* footer */
footer {
  padding: 40px 0;
  background-color: #f7f7f7;
  overflow: hidden;
}

footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

footer .made-with {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

footer .made-with .logo-div {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

footer .made-with .logo-div .waitbuzz-logo {
  width: 100%;
  z-index: 3;
}

footer .made-with .logo-div .img1,
footer .made-with .logo-div .img2 {
  position: absolute;
  height: 74px;
  width: 65px;
}

footer .made-with .logo-div .img1 {
  z-index: 2;
}

footer .made-with .logo-div .img2 {
  z-index: 1;
}

footer .made-with .logo-div .img1 img {
  width: 100%;
  animation: rotateRight 15s linear infinite;
  -webkit-animation: rotateRight 15s linear infinite;
}

footer .made-with .logo-div .img2 img {
  width: 100%;
  animation: rotateLeft 15s linear infinite;
  -webkit-animation: rotateLeft 15s linear infinite;
}

@keyframes rotateRight {
  form {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@keyframes rotateLeft {
  form {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }

  to {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}

footer .made-with .waitbuzz {
  color: var(--text-color);
  margin-left: 10px;
}

/* ---------- statement-details-page ----------  */
.statement-details-page .date {
  text-align: center;
  color: var(--font-secondary-color);
  margin-bottom: 5px;
}

.statement-details-page .statement-title {
  text-align: center;
  margin-bottom: 30px;
}

.statement-details-page .text {
  color: var(--font-secondary-color);
  line-height: 1.8;
}

.statement-details-page .share .share-title {
  color: var(--font-secondary-color);
  text-align: center;
}

.statement-details-page .share ul li .link {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  margin: auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.statement-details-page .share ul li .link:hover {
  color: #fff;
  background-color: var(--secondary-color);
}

/* media-query */
@media screen and (max-width: 1280px) {

  /* main-header */
  .main-header .slogan-right .text {
    padding-left: 130px;
  }
}

@media screen and (max-width: 1024px) {

  /* main-header */
  .main-header .slogan-right .text {
    padding-left: 0px;
  }

  .main-header .slogan-right .hello {
    font-size: 19em;
  }
}

@media screen and (max-width: 990px) {
  .navbar .navbar-nav {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .main-header {
    height: auto;
  }

  .main-header .slogan-right {
    padding-bottom: 30px;
    text-align: center;
  }

  .main-header .slogan-right .hello {
    font-size: 15em;
  }

  .main-header .slogan-right .subtitle {
    justify-content: center;
  }

  .main-header .slogan-right a {
    margin: auto;
  }

  .navbar {
    padding: 15px 0;
  }

  /* contact-info-fixed */
  .contact-info-fixed .links {
    display: none;
  }

  .contact-info-fixed .toggler-btn {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  .main-header .slogan-right .hello {
    font-size: 12em;
    bottom: 60%;
  }

  .contact .image {
    margin: auto;
  }

  /* timeline */
  .timeline .timeline-map::before {
    left: unset;
    right: 0;
  }

  .timeline .timeline-map .timeline-card::before {
    left: unset;
    right: 0;
    transform: translate(10px, -50%);
    -webkit-transform: translate(10px, -50%);
    -moz-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    -o-transform: translate(10px, -50%);
  }

  .timeline .timeline-map .timeline-card .line {
    display: none;
  }

  .timeline .timeline-map .timeline-card.rtl .desc {
    padding-right: 0;
  }

  .timeline .timeline-map .timeline-card {
    padding-right: 60px;
  }

  .timeline .timeline-map .timeline-card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% - 50px);
    width: 50px;
    border-bottom: 2px dashed var(--font-secondary-color);
    opacity: 0.3;
    z-index: -1;
  }

  .timeline .timeline-map .timeline-card.ltr .row {
    flex-direction: column-reverse;
  }

  .timeline .timeline-map .timeline-card .year {
    margin-bottom: 20px;
  }

  /* .contact-info-fixed */
  .contact-info-fixed {
    right: 10px;
    bottom: 10px;
  }
}

@media screen and (max-width: 550px) {

  /* timeline */
  .timeline .timeline-map .timeline-card .year {
    width: 110px;
    height: 100px;
  }
}

@media screen and (max-width: 425px) {
  .main-header .slogan-right .hello {
    font-size: 9em;
    bottom: 80%;
  }

  /* album-card */
  .album-card {
    zoom: 0.75;
  }
}

@media screen and (max-width: 375px) {
  .main-header .slogan-right .hello {
    font-size: 8em;
  }
}

@media screen and (max-width: 320px) {
  .main-header .slogan-right .hello {
    font-size: 6.5em;
    bottom: 90%;
  }
}

@media screen and (max-width: 280px) {
  .main-header .slogan-right .hello {
    font-size: 5.5em;
    bottom: 95%;
  }
}
.header-logo
{
    /*height: 220px;*/
    width: 430px;
    float: left;
    /*margin-left: 20px;*/
    object-fit: scale-down;
}
.number-section .title
{
  color: #289672;
  font-size: 50px;
}
.number-section .num
{
  color: #ac1d23;
  font-size: 50px;
}
.dropdown-item{
font-size: 10px !important; 
}