@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Dancing+Script:wght@700&family=Lobster&family=Noto+Naskh+Arabic:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tajawal:wght@200;300;400;500;700;800;900&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Tajawal", sans-serif;
}

:root {
  --praimary-color: #bf1e2e;
}

body,
html {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  direction: rtl;
}

::selection {
  color: rgb(255, 255, 255);
  background-color: var(--praimary-color);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: #450a10;
  transition: all 0.4s ease-in;
}

::-webkit-scrollbar-track {
  background: #fff0f0;
}





/* back to top button */
#button {
  display: inline-block;
  background-color: var(--praimary-color);
  background: linear-gradient(to top, #450a10, rgb(210 66 80));
  width: 40px;
  height: 40Px;
  border-radius: 10px;
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button:hover {
  cursor: pointer;
  background-color: #B0B0B0;
}

#button:active {
  background-color: #B0B0B0;
}

#button.show {
  opacity: 1;
  visibility: visible;
}





/* navbar starts */

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000 !important;
}

.nav-header {
  direction: rtl;
}

.navbar {
  background-color: #fff4f4;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: relative;
  z-index: 100000 !important;
  height: 90px;
}

.navbar::before {
  content: "";
  position: absolute;
  background: url(../images/pattern3.png);
  background-size: cover;
  background-repeat: repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  z-index: -1;
}

.navbar .container>a {
  color: var(--praimary-color);
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

nav .brand a {
  text-decoration: none;
}

nav .brand img {
  width: 85%;
}

nav .brand .brand-name {
  font-size: 16px;
  font-weight: 800;
  color: #1b1b1b;
  margin-right: 15px;
}

nav a {
  font-weight: 550;
  font-size: 13px;
  color: #fff;
}

nav .nav-item .active {
  color: var(--praimary-color);
  position: relative;
}


nav .nav-item {
  display: inline-block;
}

.navbar-nav .nav-link {
  color: #000000;
}

nav .lang {
  margin-right: 40px;
  background-color: #bf1e2e;
  padding: 10px 20px;
}

nav .lang a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

nav .lang i {
  margin-right: 8px;
}

.navbar-nav .nav-link:hover {
  color: var(--praimary-color);
  transition: all 0.4s ease-in;
}

nav .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 195px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.nav-item .dropdown-menu .dropend .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 195px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

nav .dropdown-menu a {
  color: #090909;
  font-size: 14px;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

nav .dropdown-menu a:hover {
  padding-right: 23px;
  color: var(--secondary-color);
  transition: all 0.4s ease-in;
}

nav .dropdown-item:focus,
.dropdown-item:hover {
  background-color: #aa383812;
}

.nav-item .dropdown-menu .dropend:hover .dropdown-menu {
  display: block;
  margin-top: 3px;
  background: rgb(254, 254, 254);
  border: 0;
  border-top: 3px solid var(--secondary-color);
  border-radius: 5px;
  direction: rtl;
  text-align: right;
  /* transform: translateX(100%); */
  left: -100%;
  top: 15px;
  transition: all 0.4s ease-in;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
}

.nav-item:hover .dropdown-menu {
  display: block;
  margin-top: 3px;
  background: rgb(254, 254, 254);
  border: 0;
  border-top: 3px solid var(--secondary-color);
  border-radius: 5px;
  direction: rtl;
  text-align: right;
  transform: translateX(50%);
  transition: all 0.4s ease-in;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
  left: auto;
}

@keyframes growDown {
  0% {
    transform: scaleY(0);
  }

  80% {
    transform: scaleY(1.1);
  }

  100% {
    transform: scaleY(1);
  }
}

.nav-item:hover .dropdown-menu::before {
  content: "";
  position: absolute;
  display: block;
  margin-top: 3px;
  z-index: 5;
  top: -14px;
  right: 0;
  pointer-events: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--praimary-color);
  border: 5px solid var(--secondary-color);
  transition: all 0.4s ease-in;
}

.nav-item .dropdown-menu .dropend:hover .dropdown-menu::before {
  display: none;
}

.navbar-nav .dropdown-menu {
  margin-top: 7px;
  text-align: left;
  transition: all 0.4s ease-in;
}

nav .nav-item #dropdown {
  margin-top: -10px;
}

nav .list-group p {
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  color: #94a3b8;
}

nav .list-group span {
  padding: 5px;
  color: aliceblue;
  font-size: 10px;
  font-weight: 700;
  border-radius: 0.2rem;
}

nav .lang-back {
  padding: 5px 15px;
  border-radius: 20px;
  background-color: var(--praimary-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav .lang-back i {
  margin-left: 5px;
}

nav a:hover .lang-back {
  background-color: var(--secondary-color);
  transition: all 0.4s ease-in;
}

.navbar .navbar-toggler {
  font-size: 20px;
}

nav .register-link {
  margin-right: 50px;
  display: flex;
  align-items: center;
}

nav .register-link a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff !important;
  font-family: var(--title-font);
  border-radius: 5px;
  text-decoration: none;
  padding: 5px 30px;
}

nav .register-link a:before {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 600%;
  background-color: var(--secondary-color);
  transform: translateX(-50%) translateY(-50%) rotate(60deg);
  z-index: -1;
  transition: 0.7s ease;
}

nav .register-link a:hover:before {
  height: 560%;
}

nav .register-link a:hover {
  color: #fff;
}

@media screen and (max-width: 991px) {
  nav .lang {
    padding-left: 0;
  }
}

@media screen and (max-width: 330px) {
  .navbar .navbar-toggler {
    font-size: 15px;
  }

  nav a img {
    width: 70px;
    height: 70px;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.4rem;
    padding-left: 0.4rem;
  }
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  /* Menu is hidden (off-screen to the right) */
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;
  /* Delay visibility hiding */
  direction: rtl;
}

.side-menu.show {
  transform: translateX(0);
  /* Menu is visible */
  opacity: 1;
  visibility: visible;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s;
  /* Show instantly with the menu */
}

.side-menu.hide {
  transform: translateX(100%);
  /* Move out of the viewport */
  opacity: 0;
  /* Fade out */
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;
  /* Hide after animation */
}

.side-menu .menu .menu-toggle {
  position: absolute;
  left: -18px;
  top: 60px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--praimary-color);
  border: 0;
  z-index: 1;
}

.side-menu .menu .menu-toggle i {
  color: #ffffff;
}

.side-menu .menu {
  width: 100%;
  max-width: 310px;
  height: 100%;
  position: relative;
  left: 0;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
  background-color: #fff;
}


.side-menu .menu .menu-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  padding: 15px;
  background-color: #450a10;
  position: relative;
}

.side-menu .menu .menu-logo::before {
  content: "";
  position: absolute;
  background: url(../images/contact-shape-3.png);
  background-size: contain;
  background-repeat: repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
}

.side-menu .menu .menu-logo a {
  text-align: center;
  text-decoration: none;
}

.side-menu .menu .menu-logo a p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--secondary-color);
  padding-top: 8px;
}

.side-menu .menu .menu-logo img {
  width: 85%;
}

.side-menu .menu .menu-content {
  padding: 15px;
  background-color: var(--heading-color);
  height: 100%;
}

.side-menu .menu .menu-content ul {
  list-style: none;
  padding-right: 0;
  padding-left: 0;
}

.side-menu .menu .menu-content ul .nav-item {
  border-bottom: 1px solid #ded3d361;
  padding: 5px 0;
}

.side-menu .menu .menu-content ul li .dropdown-menu {
  width: 100% !important;
}

.side-menu .menu .menu-content ul a {
  font-size: 13px;
  color: var(--block-background-color);
  font-weight: 600;
}

.side-menu .menu .menu-content ul li:hover a {
  transition: all ease 1s;
  color: var(--praimary-color);
}

@media (max-width:767px) {
  .top-bar {
    display: none;
  }
}


/* navbar ends */




/* scroll animation */
.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}







/* slideshow */
.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 85vh;
  z-index: 1;
}

.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slideshow .slide.is-active {
  display: block;
}

.slideshow .slide.is-loaded {
  opacity: 1;
}

.slideshow .slide .caption {
  position: relative;
  padding: 0 100px;
  z-index: 1;
}

.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}

.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 30%);
}

.slideshow .slide .image {
  width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.slideshow .slide-content {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  /* text-align: center; */
  display: flex;
  align-items: center;
}

.slideshow .shape {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
}

.slideshow .shape img {
  position: absolute;
  /* top: 0;
  left: 0;
  bottom: 0; */
  right: 0;
  /* width: 100%; */
  height: 85vh;
  object-fit: contain;
  z-index: 0;
}

.slideshow .slide .name {
  color: #fff;
  font-weight: bolder;
  position: relative;
  font-size: 30px;
}

/* .slideshow .slide .name:before {
  content: '';
  height: 4px;
  width: 100%;
  background-color: var(--praimary-color);
  border: 1px solid #fff;
  position: absolute;
  left: 0;
  bottom: 0;
} */
.slideshow .slide .title {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  /* -webkit-text-stroke: 1px #fff; */
  margin-bottom: 10PX;
  text-transform: uppercase;
}

.slideshow .slide .text {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  background-color: #4f6163a1;
  padding: 15px;
  border-left: 4px solid var(--secondary-color);
}

.slideshow .slide .text p {
  margin-bottom: 0;
}

@media screen and (max-width:575px) {

  .slideshow .slide .title {
    font-size: 18px;

  }

  .slideshow .slide .text {
    font-size: 20px;
  }

  .slideshow {
    height: 70vh;
  }

}

.slideshow .btn-primary {
  margin-top: 16px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 16px;
  min-width: 144px;
  border-radius: 4px;
}

.slideshow .btn-primary i {
  margin-right: 8px;
}

.slideshow .btn-primary:before,
.slideshow .btn-primary:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  z-index: -1;
  transition: all 0.4s ease-out;
  border-radius: 99px;
  transform: scaleY(1.1);
}

.slideshow .btn-primary:before {
  transform: scaleY(0);
}

.slideshow .btn-primary:after {
  transform: scaleY(0);
}

.slideshow .btn-primary:hover::before,
.slideshow .btn-primary:hover:after,
.slideshow .btn-primary.active::before,
.slideshow .btn-primary.active:after {
  border-radius: 0;
  transform: scale(1);
}

.slideshow .pagination {
  position: absolute;
  bottom: 32px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 23px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}

.slideshow .pagination .item+.page {
  margin-left: -2px;
}

.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: rgb(255, 255, 255);
  transition: background 0.2s ease;
}

.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}

.slideshow .pagination .item:hover::before,
.slideshow .pagination .item.is-active::before {
  background-color: var(--praimary-color);
  border: 1px solid #ffffff;
}

.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}

.slideshow .arrows .prev {
  left: 30px;
}

.slideshow .arrows .prev:hover i {
  left: -10px;
}

.slideshow .arrows .next {
  right: 30px;
}

.slideshow .arrows .next:hover i {
  left: 10px;
}

.slideshow .arrows i {
  position: relative;
  left: 0;
  font-size: 30px;
  color: #fff;
  transition: left 0.2s ease;
}

/* slider ends */









/* about start */

.about {
  padding-top: 50px;
  padding-bottom: 70px;
  background-color: #1b1b1b;
  position: relative !important;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  background-image: url(../images/pattern2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .15;
}

.about .images {
  position: relative;
  display: block;
  margin-right: 16px;
}

.about .images .main-img {
  width: 100%;
  height: 300px;
  position: relative;
  display: block;
}

.about .images .main-img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-left: 4px solid #bf1e2e;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.why-choose-five__shape-1 {
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: 3;
}

.why-choose-five__shape-2 {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 3;
}

.why-choose-five__shape-3 {
  position: absolute;
  bottom: -30px;
  right: -36px;
  z-index: 3;
}

.why-choose-five__shape-4 {
  position: absolute;
  bottom: -10px;
  right: -13px;
  z-index: 3;
}

.why-choose-five__shape-1 img {
  width: auto;
}

.why-choose-five__shape-2 img {
  width: auto;
}

.why-choose-five__shape-3 img {
  width: auto;
}

.why-choose-five__shape-4 img {
  width: auto;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about h6 {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.about p {
  color: #f8f8f8;
  font-size: 15px;
  text-align: justify;
}

.about .button a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: var(--praimary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  transition: all 0.5s linear;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.about .button a:before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  z-index: -1;
}

.about .button a:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -1;
}

.about .button a:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.about .button a:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.about .button a:hover {
  color: var(--praimary-color);
}




/* services start */

.services {
  padding-top: 40px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  background-color: #450a10;
}

.feature-six__single {
  position: relative;
  display: block;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(23, 70, 90, 0.1);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-six__single.main {
  background-color: var(--praimary-color);
  border: 2px solid #fff;
  justify-content: center;
}

.feature-six__single.main .feature-title {
  font-weight: 700;
  font-size: 25px;
  line-height: 37px;
  margin-top: 16px;
}

.feature-six__single.main .feature-title a {
  color: #fff;
  text-decoration: none;
}

.feature-six__single.main::before {
  content: "";
  position: absolute;
  background-image: url(../images/pngwing.com.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .5 !important;
}
.feature-six__single::before {
  content: "";
  position: absolute;
  background-image: url(../images/pngwing.com.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.feature-six__single-inner {
  position: relative;
  display: block;
  padding: 28px 30px 25px;
  padding-right: 50px;
  overflow: hidden;
  z-index: 1;
}


.feature-six__icon {
  position: relative;
  display: inline-block;
}

.feature-six__icon i {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--praimary-color);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-six__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 37px;
  margin-top: 16px;
  margin-bottom: 16px
}

.feature-six__title a {
  color: #1b1b1b;
  text-decoration: none;
}

.services .feature-six__single svg {
  height: 40px;
  width: 40px;
  fill: var(--praimary-color) !important;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
}

.services .feature-icon img {
  height: 60px;
  width: 60px;
}

.services .button a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: var(--praimary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  transition: all 0.5s linear;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  margin-left: 8px;
}

.services .button a.second {
  background-color: #000;
  color: var(--praimary-color);
}

.services .button a:before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  z-index: -1;
}

.services .button a.second:before {
  position: absolute;
  content: "";
  background-color: var(--praimary-color);
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  z-index: -1;
}

.services .button a.second:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--praimary-color);
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -1;
}

.services .button a:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -1;
}

.services .button a:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.services .button a:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.services .button a:hover {
  color: var(--praimary-color);
}

.services .button a.second:hover {
  color: #fff;
}





/* publish start */

.publish {
  padding-top: 70px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  background-color: #fff5f8;
}

.publish::before {
  content: "";
  position: absolute;
  background-image: url(../images/pngwing.com.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .5;
}

.publish h6 {
  color: #1b1b1b;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}

.publish .button a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: var(--praimary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  transition: all 0.5s linear;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.publish .button a:before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  z-index: -1;
}

.publish .button a:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -1;
}

.publish .button a:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.publish .button a:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.publish .button a:hover {
  color: var(--praimary-color);
}

.publish .card {
  border: none;
  transition: .2s all ease-in;
  border-radius: 20px;
  background-color: #1b1b1b;
}

.publish .card:hover {
  box-shadow: rgba(255, 255, 255, 65%) 0px 5px 15px;
}

.publish .card-image {
  width: 100%;
  height: 215px;
}

.publish .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.publish .body-title {
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid var(--praimary-color);
  border-radius: 10px;
}

.publish .body-title a {
  margin-top: 7px;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: var(--praimary-color);
  text-decoration: none;
}

.publish .body-text {
  color: #838383;
  font-size: 15px;
  text-align: justify;
  margin-top: 8px;
}



/* video start */

.video {
  padding-top: 40px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

.video::before {
  content: "";
  position: absolute;
  background-image: url(../images/pngwing.com.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .3;
}

.video h6 {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}

.video .button a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: var(--praimary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  transition: all 0.5s linear;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.video .button a:before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  z-index: -1;
}

.video .button a:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -1;
}

.video .button a:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.video .button a:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.video .button a:hover {
  color: var(--praimary-color);
}

.video .card {
  position: relative;
  border: none;
  border-radius: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.video .video-container {
  position: relative;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 250px;
  border-radius: 20px;
}

.video iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.video .box-title {
  font-size: 20px;
  line-height: 1.417;
  font-weight: 700;
  padding: 16px;
  text-align: center;
  margin-top: 8px;
}

.video .box-title a {
  color: #1b1b1b;
  text-decoration: none;
}





/* news start */

.news {
  padding-top: 70px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  background-color: #1b1b1b;
}

.news::before {
  content: "";
  position: absolute;
  background-image: url(../images/pattern3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .5;
}


.news .container {
  position: relative;
  z-index: 2;
}

.news h6 {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}

.news .button a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: var(--praimary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  transition: all 0.5s linear;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.news .button a:before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  z-index: -1;
}

.news .button a:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -1;
}

.news .button a:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.news .button a:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.news .button a:hover {
  color: var(--praimary-color);
}

.news .card {
  border: none;
  transition: .2s all ease-in;
  border-bottom: 4px solid var(--praimary-color);
  border-radius: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.news .card.card-body {
  background-color: #e7ebee;
}

.news .card:hover {
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}

.news .card-image {
  width: 100%;
  height: 215px;
  position: relative;
}

.news .card-body .date {
  color: var(--praimary-color);
}

.news .card-body .date i {
  margin-left: 8px;
}

.news .card-body .date span {
  font-size: 20px;
  font-weight: 800;
}

.news .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.news .body-title h3 {
  padding-bottom: 4px;
  border-bottom: 2px solid #000;
}

.news .body-title a {
  margin-top: 7px;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: #1b1b1b;
  text-decoration: none;
}

.news .body-text {
  color: #838383;
  font-size: 15px;
  text-align: justify;
}




/* events start */
.clients {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #450a10;
  position: relative;
}


.clients h6 {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.clients .single-logo {
  margin-left: 12px;
  margin-right: 12px;
  padding: 8px;
  text-align: center;
  background-color: #fff;
  border-top: 4px solid var(--praimary-color);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.clients .single-logo img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 10px;
}

.clients .single-logo h6 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-top: 16px;
}

.clients .owl-carousel .owl-stage-outer {
  height: 170px;
}




/* contact-sec start */
.contact-sec {
  position: relative;
  background: #fffafa;
}

.contact-sec .location {
  box-shadow: inset 0 0 0 2000px #00000087;
  height: 500px;
}

.contact-sec .location iframe {
  height: 100%;
  width: 100%;
}

.elementor-widget-container {
  position: absolute;
  top: -28px;
  right: 100px;
}

.ct-contact-info3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ct-contact-info3 .ct-contact-inner {
  position: relative;
  max-width: 360px;
  background-color: rgb(0, 0, 0);
  background-image: url(../images/bg-contact-info.png);
  padding: 60px 30px 64px;
}

.ct-contact-info3 .ct-contact-inner::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -28px;
  border-color: transparent rgb(103, 103, 103) rgb(103, 103, 103) transparent;
  border-width: 14px;
  border-style: solid;
}

.ct-contact-info3 .ct-contact-inner .wg-title {
  margin-bottom: 33px;
  font-size: 30px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.ct-contact-info3 .ct-contact-inner .wg-title span {
  display: inline-block;
  position: relative;
  padding-left: 55px;
}

.ct-contact-info3 .ct-contact-inner .wg-title span::before {
  content: "";
  width: 44px;
  height: 3px;
  background-color: var(--praimary-color);
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(0px, -50%);
}

.ct-contact-info3 .ct-contact-inner .item--info {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  margin-top: 30px;
}

.ct-contact-info3 .ct-contact-inner .ct-contact-icon {
  line-height: 1;
  margin-left: 14px;
}

.ct-contact-info3 .ct-contact-inner .ct-contact-icon i {
  font-size: 35px;
  color: var(--praimary-color);
}

.ct-contact-info3 .ct-contact-inner .item--title {
  margin-bottom: 0px;
  font-size: 17px;
  line-height: 28px;
  color: rgb(183, 183, 183);
  font-weight: 500;
}

.ct-contact-info3 .ct-contact-inner .item--content {
  font-size: 20px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  line-height: 1.2;
  margin-top: 3px;
}

.ct-contact-info3 .ct-contact-inner .item--info .ct-contact-link {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 9;
}







/* footer starts */

footer {
  background: linear-gradient(90deg, rgba(69, 10, 16, 1) 0%, rgba(191, 30, 46, 1) 50%, rgba(69, 10, 16, 1) 100%);
  position: relative;
}


.footer-content .logo-box {
  width: 70%;
}

/* .footer-content .logo-box .logo {
  width: 100%;
} */
.footer-content .logo-container p a {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer-content {
  position: relative;
  padding-top: 40px;
  padding-bottom: 10px;
  margin: 0;
}

footer .container {
  position: relative;
}

footer h5 {
  font-size: 23px;
  font-weight: 600;
  color: var(--secondary-color);
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff,
    -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

.footer-content p {
  padding-top: 15px;
  margin-bottom: 0px;
  font-weight: 450;
  font-size: 15px;
  line-height: 25px;
  color: #cccccc;
}

footer h6 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 0px;
  margin-bottom: 10px;
}

.footer-content i {
  color: var(--praimary-color);
  margin-right: 5px;
}

footer ul {
  list-style: none;
  padding-right: 0;
}

/* footer .social-media {
  padding-top: 15px;
} */

footer .social-media ul {
  margin-bottom: 0;
}

footer .social-media li {
  display: inline-block;
  padding-left: 6px;
}

footer li {
  padding-bottom: 4px;
}

footer .contact li {
  display: flex;
}

footer .contact .icon-bg {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: #fff;
  margin-left: 8px;
  text-align: center;
}

footer .contact .icon-bg i {
  font-size: 12px;
  line-height: 30px;
  color: #bf1e2e;
  margin-right: 0;
}

footer .social-media .icon-bg {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: transparent;
  margin-right: 5px;
  text-align: center;
  border: 2px solid var(--praimary-color);
}

footer .social-media .icon-bg i {
  font-size: 15px;
  line-height: 35px;
  color: #fff;
  margin-right: 0;
}

footer .social-media .icon-bg svg {
  fill: #fff;
}

footer .social-media .icon-bg:hover {
  background-color: #fff;
  transition: background-color 0.4s ease-in-out;
}

footer .social-media .icon-bg:hover i {
  color: var(--praimary-color);
  transition: all 0.4s ease-in-out;
}

footer .social-media .icon-bg:hover svg {
  fill: var(--praimary-color);
  transition: all 0.4s ease-in-out;
}

.footer-link a,
.contact-link a {
  color: #cdcdcd;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.footer-link a:hover {
  color: #fff;
}

.footer-link a:after {
  position: absolute;
  content: "";
  transition-duration: 0.3s;
  transition-property: all;
  --tw-bg-opacity: 1;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(90deg,
      rgb(255, 255, 255) 0%,
      var(--praimary-color) 100%);
  width: 0;
  height: 2px;
  right: 0;
  bottom: 0;
}

.footer-link a:hover:after {
  width: 100%;
}

footer #branch h5 {
  color: rgb(255, 255, 255);
  font-size: 13px;
  font-weight: 400;
}

footer .contact-sperator {
  height: 1px;
  margin-top: 8px;
  margin-bottom: 0;
  background-color: #d7dbe4;
}

.footer-copyright {
  background-color: #34080d;
  direction: ltr;
  padding: 12px 0;
}

.footer-copyright a {
  text-decoration: none;
  color: var(--praimary-color);
}

.footer-copyright p {
  font-weight: 450;
  font-size: 14px;
  line-height: 25px;
  color: #ffffff;
  margin-bottom: 0;
}

.about-one__certified {
  position: relative;
  width: 100%;
  padding: 16px;
  background-color: rgb(0 0 0 / 24%);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  z-index: 3;
  text-align: center;
  display: flex;
  border-radius: 5px;
  margin-top: 8px;

}

.about-one__certified-icon {
  position: relative;
  display: inline-block;
}

.about-one__certified-icon i {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #fff;
  margin-left: 8px;
}

.about-one__certified-title {
  font-size: 25px;
  font-weight: 800;
  line-height: 22px;
  color: #fff;
  display: flex;
  align-items: center;
}

.about-one__certified-detail {
  font-size: 14px !important;
  font-weight: 600 !important;
  text-align: center !important;
  color: #fff !important;
}

.num {
  margin-right: 8px;
  font-size: 20px;
}


@media (min-width: 768px) and (max-width: 1200px) {
  footer h5 {
    font-size: 22px;
    font-weight: 600;
  }

  .footer-content .logo {
    width: auto;
    height: 90px;
  }
}

@media screen and (max-width: 420px) {
  footer h5 {
    font-size: 20px;
    font-weight: 600;
  }

  .footer-content .logo {
    width: auto;
    height: 80px;
  }

  footer .social-media .icon-bg {
    width: 28px;
    height: 28px;
  }

  footer .social-media .icon-bg i {
    font-size: 16px;
    line-height: 28px;
  }
}

/* footer ends */

.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 1000;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
}

.cursor-dot-outline {
  width: 25px;
  height: 25px;
  background-color: transparent;
  border: 2px solid var(--praimary-color);
}