/* global style */
:root {
  --petrol: #004d5d;
  --aqua: #1ba7a6;
  --mustard: #f9971c;
  --red: #de1f26;
  --gray: #4b4b4b;
  --sliver: #b6b6b6;
}

* {
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  text-align: inherit;
  vertical-align: middle;
}

.rtl {
  direction: rtl;
  text-align: start;
}
.rtl * {
  font-family: "Cairo", sans-serif;
}
.rtl li {
  text-align: start;
}
/* to change direction to bg */
.rtl .bgChangeable {
  transform: scaleX(-1);
}

.container {
  padding: 0 10%;
}
body,
html {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  font-size: 12px;
}
html {
  overflow-x: hidden;
}

.customBtn {
  min-width: 100px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: capitalize;
  border: none;
  border-radius: 7px;
  transition: 0.3s ease-out;
  background-color: var(--mustard);
  color: black;
  text-align: center;
  border: 2.5px solid var(--mustard);
}

.outLineBtn {
  background-color: white !important;
  color: var(--mustard) !important;
}

.outLineBtn:hover {
  background-color: var(--mustard) !important;
  color: black !important;
}

.borderBtn {
  background-color: inherit;
  color: var(--mustard);
  margin-inline-end: 10px;
}
.customBtn:hover {
  transform: scale(1.1);
}
.link-card {
  border: var(--mustard) 1px solid;
  transition: .5s;
  color: var(--sliver);
  border-radius:10px ;
  display: flex; 
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.link-card img {
  object-fit: fill;
  object-position: left top;
  border: 1px silver solid;
}
.link-card:hover *{
  color: black;
} 
.link-card *{
  color: var(--petrol);
}
.link-card:hover {
  transform: scale(1.03);
  background-color: var(--mustard) !important;
}
ul li {
  list-style: none;
  display: flex;
  text-align: left;
}

ul li::before {
  content: "\25CF";
  color: var(--mustard);
  font-weight: 900;
  display: inline-block;
  padding: 0 10px;
  font-size: 2rem;
}

.rtl ul li {
  text-align: right;
}

a,
.linkBtn {
  border: none;
  background-color: inherit;
  color: var(--mustard);
  text-decoration: none;
}
a:hover,
.linkBtn:hover {
  color: var(--mustard);
}

.linkBtn {
  font-weight: 700;
}
.linkBtn:hover {
  text-decoration: underline;
}

button i {
  vertical-align: middle;
  margin: 0 3px;
}

/* titles */
.mainTitle {
  font-size: 2.2rem;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--petrol);
  margin: 20px 0;
}

.subTitle {
  margin: 0;
  color: var(--aqua);
  text-transform: capitalize;
  margin-top: 5px;
  font-weight: 600;
}

.text {
  font-size: 1.1rem;
  color: var(--petrol);
  font-weight: 500;
  line-height: 1.4rem;
  /* padding: 25px 0; */
}

.tobHeaderBg {
  background-image: url("../images/content_topbar.jpg");
}
.swiper-pagination-bullet {
  padding: 6px;
}
.swiper-pagination-bullet-active {
  background-color: var(--petrol);
}

/* scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* unit classes */
.alignCenter {
  text-align: center !important;
}
.alignSelfEnd {
  align-self: flex-end;
}
.marginTB {
  margin: 15px auto;
}

.marginX {
  margin: 10px;
}

.mustard {
  color: var(--mustard);
}
.w-250 {
  width: 250px;
}
@media screen and (min-width: 768px) {
  .customBtn {
    padding: 10px 20px;
    font-size: 1.3rem;
  }
  .marginTB {
    margin: 0;
  }

  .reversDirTab {
    flex-direction: row-reverse !important;
  }

  .fullWidthTab {
    width: 100%;
  }

  .mainTitle,
  .subTitle {
    text-align: start;
  }
  .container {
    padding: 0;
  }
  .dropdown-menu {
    min-width: 220px;
  }

  .dropdown-menu li {
    align-items: flex-start;
  }
}

@media screen and (min-width: 1100px) {
  .mainTitle {
    font-size: 2.5rem;
  }

  .subTitle {
    font-size: 1.1rem;
  }
  .text {
    font-size: 1.3rem;
    line-height: 2.5rem;
  }
}

.modal-header-rtl .btn-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.modal-header-rtl .modal-title {
  text-align: right;
}

#toastContainer {
  z-index: 9999;
  margin: 0.5em;
}

#toastContainerRTL {
  z-index: 9999;
  direction: rtl;
}

.skeleton {
  position: relative;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton .imgBox {
  width: 100%;
  height: 200px;
  background-color: #e0e0e0;
  border-radius: 4px;
}

.skeleton .text {
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 4px;
}

.skeleton .text.short {
  width: 60%;
}

.skeleton .text.long {
  width: 100%;
}

.skeleton .button {
  width: 120px;
  height: 36px;
  background-color: #e0e0e0;
  border-radius: 4px;
}
