#home-header {
  width: 100%;
  position: relative;
  height: 75vh;
}
#home-header img,
#home-header video {
  height: 75vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#home-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}
#home-header .header-content {
  position: absolute;
  inset: 0px !important;
  height: 100%;
  width: 100%;
  z-index: 10;
}
#home-header .header-content .content {
  display: none;
}
#home-header .header-content .content .title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: clamp(1.375rem, 0.3576rem + 3.2558vw, 3.125rem);
}
#home-header .header-content .content .title,
#home-header .header-content .content p {
  color: #fff;
}
#home-header .header-content .content p {
  font-size: clamp(1.125rem, 0.8343rem + 0.9302vw, 1.625rem);
  color: #e3e3e3 !important;
}
#home-header .header-content .active {
  display: block;
}
#home-header .header-content .animation-up {
  animation: slideInUp 1s ease-in-out;
}
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#home-header .header-content .animation-left {
  animation: slideLeft 1s ease-in-out;
}
@keyframes slideLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#home-header .header-content .animation-right {
  animation: slideRight 1s ease-in-out;
}
@keyframes slideRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#home-header .title-two {
  font-size: 46px;
}
#home-header .title-three {
  font-size: 46px;
}

#search {
  background-color: #fcfcfc;
}

main {
  padding: 80px 0px;
}
main h2 {
  position: relative;
  display: inline-block;
}
main h2::after {
  content: "";
  height: 2px;
  width: 50px;
  background-color: var(--main-color);
  position: absolute;
  top: 20px;
  margin-right: 10px;
}
main h2::before {
  content: "";
  height: 2px;
  width: 50px;
  background-color: var(--main-color);
  position: absolute;
  top: 20px;
  right: -60px;
}

#why-choose .item {
  margin-bottom: 30px;
}
#why-choose .item .icon {
  border: solid 1px #9e9e9e;
  height: 90px;
  width: 90px;
  line-height: 90px;
  border-radius: 50%;
  position: relative;
}
#why-choose .item .icon img {
  width: 30px;
}
#why-choose .item .icon::after {
  position: absolute;
  content: "";
  width: 75%;
  height: 75%;
  border: solid 1px #9e9e9e;
  border-radius: 50%;
  right: 11px;
  top: 11px;
}
#why-choose .item:hover .icon {
  border: solid 2px var(--main-color);
}

#services {
  padding: 80px 0px;
  background-color: #fcfcfc;
}
#services .service-box {
  border: solid #eee 1px;
  background-color: rgb(255, 255, 255);
  padding: 30px;
  height: 100%;
  direction: rtl !important;
  min-height: 270px;
  position: relative;
}
#services .service-box img {
  height: 80px;
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
#services .service-box .link-box {
  display: none;
  position: absolute;
  left: -10px;
  top: -10px;
  height: 100px;
  width: 120px;
  border-bottom-right-radius: 20px;
  background-color: #ffffff;
  text-align: center;
  line-height: 100px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 2;
}
#services .service-box .link-box svg {
  width: 30px;
  height: 30px;
}
#services .service-box::after {
  display: none;
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100px;
  width: 120px;
  border-bottom-right-radius: 20px;
  background-color: #fcfcfc;
  text-align: center;
  line-height: 100px;
  z-index: 1;
}

#our-achievements {
  padding: 80px 0px;
}
#our-achievements .news-items {
  direction: ltr !important;
}
#our-achievements .news-items .item {
  position: relative;
}
#our-achievements .news-items .item .item-content {
  position: absolute;
  width: 100%;
  bottom: 10px;
  padding: 10px;
}
#our-achievements .news-items .item .item-content .title {
  margin-bottom: 0px;
  font-size: 20px;
  color: #fff !important;
}
#our-achievements .news-items .item::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, #222222 100%);
  top: 250px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  transition: all 0.3s ease;
}
#our-achievements .news-items img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}

#partners {
  background-color: #fcfcfc;
  padding: 80px 0px;
}
#partners .owl-theme {
  direction: ltr !important;
}
#partners .owl-theme img {
  background-color: #fff;
  padding: 20px 10px;
  width: 100%;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.2s ease-in-out;
}
#partners .owl-theme img:hover {
  filter: grayscale(0%);
}

.owl-nav {
  display: none;
}

.owl-dots {
  margin-top: 20px;
  text-align: center;
}
.owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border: 0;
  padding: 0;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #cdcdcd !important;
  transition: all 0.2s ease-in-out;
}
.owl-dots .active {
  background-color: var(--main-color) !important;
  width: 30px;
  border-radius: 5px;
}

.section-title {
  font-size: 32px;
}

@media (max-width: 1140px) {
  .section-title {
    font-size: 22px !important;
  }
  .line-before-and-after {
    position: relative;
    display: inline-block;
  }
  .line-before-and-after::after {
    width: 30px;
    top: 13px;
    margin-right: 5px;
  }
  .line-before-and-after::before {
    width: 30px;
    top: 13px;
    right: -35px;
  }
  .line-after {
    position: relative;
  }
  .line-after::after {
    content: "";
    height: 2px;
    width: 35px;
    top: 12px;
    margin-right: 5px;
  }
}/*# sourceMappingURL=home-v2.css.map */