
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Cairo', sans-serif;
}
.scroller {
  background-color: #f47b21;
  width: 0;
  height: 4px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.main-title {
  position: relative;
  margin: 0 auto 80px;
  border: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.main-title:hover {
  color: #fff;
  border: #fff;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.main-title:hover::before {
  z-index: -1;
  -webkit-animation: left-move 0.5s linear forwards;
  animation: left-move 0.5s linear forwards;
}

.main-title:hover::after {
  z-index: -1;
  -webkit-animation: right-move 0.5s linear forwards;
  animation: right-move 0.5s linear forwards;
}

.main-title::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #f47b21;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: -30px;
}

.main-title::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #f47b21;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  right: -30px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.header {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
  position: sticky;
  top:0;
  z-index: 999;
  inset: 0;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.header .container .logo {
  color: #f47b21;
  font-weight: bold;
  font-style: 26px;
  height: 72px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.header .container .main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .container .main-nav > li .mainLinks {
  height: 72px;
  padding: 0 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #000;
  font-size: 18px;
}

.header .container .main-nav > li .mainLinks::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  bottom: 0;
  right: 0;
  background-color: #f47b21;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header .container .main-nav > li .mainLinks:hover {
  color: #f47b21;
  background-color: #fafafa;
}

.header .container .main-nav > li .mainLinks:hover::before {
  width: 100%;
}

.header .container .main-nav > li .mega-menu {
  position: absolute;
  padding: 20px;
  background-color: #fff;
  border-bottom: 3px solid #f47b21;
  width: 100%;
  left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.5fr 0.5fr;
  grid-template-columns: 1fr 0.5fr 0.5fr;
  gap: 40px;
  z-index: -1;
  top: calc(100% + 50px);
  opacity: 0;
  -webkit-transition: top 0.3s, opacity 0.3s;
  transition: top 0.3s, opacity 0.3s;
}

.header .container .main-nav > li .mega-menu .image img {
  max-width: 100%;
}

.header .container .main-nav > li .mega-menu .links {
  line-height: 50px;
  min-width: 200px;
}

.header .container .main-nav > li .mega-menu .links li:not(:last-child) {
  border-bottom: 1px solid rgba(204, 203, 203, 0.562);
}

.header .container .main-nav > li .mega-menu .links li a {
  display: block;
  color: #f47b21;
  padding: 10px;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.header .container .main-nav > li .mega-menu .links li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #eee;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header .container .main-nav > li .mega-menu .links li a:hover {
  color: #f47b21;
  background-color: #fafafa;
}

.header .container .main-nav > li .mega-menu .links li a:hover::before {
  opacity: 1;
}

.header .container .main-nav > li .mega-menu .links li a i {
  margin-right: 10px;
}

.header .container .main-nav .mega:hover .mega-menu {
  opacity: 1;
  top: calc(100% + 1px);
  z-index: 100;
}

@media (max-width: 991px) {
  .header .container .main-nav > li .mega-menu .image {
    display: none;
  }
  .header .container .main-nav > li .mega-menu {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .header .container .logo {
    width: 100%;
    height: 50px;
  }
  .header .container .main-nav {
    margin: auto;
  }
  .header .container .main-nav > li > a {
    height: 40px;
    padding: 0 15px;
    font-size: 10px;
  }
  .header .container .main-nav > li .mega-menu {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .header .container .main-nav > li .mega-menu .links:first-of-type li:last-child {
    border-bottom: 1px solid rgba(204, 203, 203, 0.562);
  }
}

.landing {
  position: relative;
}

.landing::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ececec;
  z-index: -1;
  -webkit-transform: skewY(-6deg);
  transform: skewY(-6deg);
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.landing .container {
  min-height: calc(100vh - 72px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 50px;
}

.landing .container .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 767px) {
  .landing .container .text {
    text-align: center;
  }
}

.landing .container .text p {
  color: #9e9e9e;
  font-size: 17px;
  line-height: 25px;
}

.landing .container .image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 767px) {
  .landing .container .image {
    display: none;
  }
}

.landing .container .image img {
  position: relative;
  width: 450px;
  max-width: 100%;
  -webkit-animation: up-down infinite 2s linear;
  animation: up-down infinite 2s linear;
}

.landing .container .go-down {
  position: absolute;
  color: #f47b21;
  bottom: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: up-down infinite 0.7s linear;
  animation: up-down infinite 0.7s linear;
}

.landing .container .go-down:hover {
  color: #1787e0;
}

.Articles {
  padding: 50px 0;
}

.Articles .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}

.Articles .container .box {
  border-radius: 10px;
  border: 1px solid #abaaae8a;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.Articles .container .box img {
  width: 100%;
}

.Articles .container .box .information {
  padding: 20px;
}

.Articles .container .box .information h3 {
  font-size: 18px;
  margin-bottom: 1.2rem;
}

.Articles .container .box .information p {
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: #777;
}

.Articles .container .box .information .readMore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #f47b21;
}

.Articles .container .box .information .readMore i {
  -webkit-transition: all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.Articles .container .box:hover {
  -webkit-box-shadow: 0 2px 25px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.Articles .container .box:hover .readMore i {
  -webkit-animation: Arrow-Move linear 0.7s infinite;
  animation: Arrow-Move linear 0.7s infinite;
}

.gallery {
  padding: 50px 0;
  background-color: #ececec;
  position: relative;
}

.gallery::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 30px;
  z-index: 1;
  background-image: linear-gradient(135deg, white 25%, transparent 25%),
    linear-gradient(225deg, white 25%, transparent 25%);
  background-size: 30px 30px;
}

.gallery .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.gallery .container .galleryBox {
  padding: 20px;
  background-color: #fff;
}

.gallery .container .galleryBox .image {
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
}

.gallery .container .galleryBox .image img {
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.gallery .container .galleryBox .image::before {
  position: absolute;
  content: "";
  width: 0;
  z-index: 2;
  height: 0;
  opacity: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.247);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.gallery .container .galleryBox .image:hover::before {
  -webkit-animation: flashing 0.5s;
  animation: flashing 0.5s;
}

.gallery .container .galleryBox .image:hover img {
  -webkit-transform: rotate(5deg) scale(1.1);
  transform: rotate(5deg) scale(1.1);
}

.Features {
  padding: 50px 0;
}

.Features .container {
  display: flex;
  justify-content: center;
 align-items: center;
  gap: 40px;
}

.Features .container .box {
  border: 1px solid rgba(119, 119, 119, 0.342);
}

.Features .container .box:hover .image::before {
  border-width: 170px 500px 170px 0;
}

.Features .container .box .image {
  position: relative;
  overflow: hidden;
}

.Features .container .box .image img {
  width: 100%;
}

.Features .container .box .image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.Features .container .box .image::before {
  content: "";
  z-index: 2;
  border-width: 0 0 170px 500px;
  border-style: solid;
  bottom: 0;
  position: absolute;
  right: 0;
  border-color: transparent transparent white transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.Features .container .box .content {
  padding: 15px 0;
  text-align: center;
}

.Features .container .box .content h3 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.Features .container .box .content h3::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 15px;
  height: 4px;
  width: calc(100% - 30px);
}

.Features .container .box .content p {
  margin: 10px 0;
  color: #777;
  line-height: 1.4;
  font-size: 15px;
  padding: 10px;
}

.Features .container .box .content a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border: 1px solid transparent;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.Features .container .Quality .image::after {
  background-color: rgba(255, 0, 0, 0.315);
}

.Features .container .Quality .content h3::after {
  background-color: #f47b21;
}

.Features .container .Quality .content a {
  color: #f47b21;
  border-color: #f47b21;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f47b21), color-stop(50%, #fff));
  background: linear-gradient(to right, #f47b21 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.Features .container .Quality .content a:hover {
  background-position: left bottom;
  color: #fff;
}

.Features .container .Time .image::after {
  background-color: rgba(0, 0, 255, 0.308);
}

.Features .container .Time .content h3::after {
  background-color: rgba(0, 0, 255, 0.623);
}

.Features .container .Time .content a {
  color: rgba(0, 0, 255, 0.308);
  border-color: rgba(0, 0, 255, 0.308);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(50%, rgba(0, 0, 255, 0.308)),
    color-stop(50%, #fff)
  );
  background: linear-gradient(to right, rgba(0, 0, 255, 0.308) 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.Features .container .Time .content a:hover {
  background-position: left bottom;
  color: #fff;
}

.Features .container .Passion .image::after {
  background-color: #607d8ba8;
}

.Features .container .Passion .content h3::after {
  background-color: #607d8ba8;
}

.Features .container .Passion .content a {
  color: #607d8ba8;
  border-color: #607d8ba8;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #607d8ba8), color-stop(50%, #fff));
  background: linear-gradient(to right, #607d8ba8 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.Features .container .Passion .content a:hover {
  background-position: left bottom;
  color: #fff;
}

.Testimonals {
  padding: 50px 0;
  background-color: #ececec;
}

.Testimonals .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.Testimonals .container .box {
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 2px 10px #0000002e;
  box-shadow: 0 2px 10px #0000002e;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.Testimonals .container .box:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  cursor: pointer;
}

.Testimonals .container .box img {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  top: -2rem;
  right: 0;
  border: 10px solid #ececec;
}

.Testimonals .container .box h3 {
  margin: 0;
  color: #f47b21;
}

.Testimonals .container .box .title {
  color: #9e9e9e;
  display: block;
  margin: 5px 0 0;
}

.Testimonals .container .box .rate .filled {
  color: gold;
}

.Testimonals .container .box p {
  font-size: 0.8rem;
  margin-top: 1.4rem;
  color: #777;
}

.team {
  padding: 50px 0;
  background-color: #ececec;
}

.team .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.team .container .box {
  padding: 30px 0;
  position: relative;
}

.team .container .box:hover {
  cursor: pointer;
}

.team .container .box:hover::before {
  width: calc(100% - 60px);
}

.team .container .box:hover img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.team .container .box::after,
.team .container .box::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.team .container .box::after {
  width: calc(100% - 60px);
  z-index: -2;
  background-color: #ececec;
}

.team .container .box::before {
  width: 0;
  z-index: -1;
  background-color: #e4e4e4;
}

.team .container .box .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.team .container .box .data img {
  border-radius: 10px;
  width: calc(100% - 60px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 225px;
}

.team .container .box .data .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 60px;
}

.team .container .box .data .social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: wid;
  width: 60px;
  height: 40px;
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.team .container .box .data .social a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.team .container .box .data .social a i {
  color: #f47b21;
}


.team .container .box .info h3 {
  color: #f47b21;
}

.team .container .box .info p {
  color: #777;
}

@media (max-width: 670px) {
  .team .container .box .data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .team .container .box::after {
    width: calc(100%);
    z-index: -2;
    background-color: #ececec;
  }
  .team .container .box .data .social {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 1rem;
    width: unset;
  }
  .team .container .box .info {
    padding: 0px 0 0 30px;
  }
}

.services {
  padding: 50px 0;
  background-color: #ececec;
  position: relative;
}

.services::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 30px;
  z-index: 1;
  background-image: linear-gradient(135deg, white 25%, transparent 25%),
    linear-gradient(225deg, white 25%, transparent 25%);
  background-size: 30px 30px;
}

.services .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.services .container .box {
  padding-top: 15px;
  background-color: #fff;
  position: relative;
  counter-increment: services;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 2px #bdbdbd, 0 0 7px #979797;
  box-shadow: 0 0 2px #bdbdbd, 0 0 7px #979797;
  border-radius: 5px;
  overflow: hidden;
}

.services .container .box::after {
  position: absolute;
  content: "";
  width: 0;
  background-color: #f47b21;
  height: 3px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.services .container .box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.services .container .box:hover::after {
  width: 100%;
}

.services .container .box i {
  display: block;
  text-align: center;
  color: #d5d5d5;
}

.services .container .box h3 {
  color: #f47b21;
  text-align: center;
  margin-top: 15px;
  font-size: 22px;
  font-weight: bold;
  
}

.services .container .box .info {
  padding: 10px;
  text-align: right;
  margin-top: 2rem;
  position: relative;
}

.services .container .box .info::before {
  position: absolute;
  content:  counter(services);
  background-color: #f47b21;
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-content: center;
  height: 100%;
  width: 60px;
  font-weight: bold;
  font-size: 24px;
  top: 0;
  left: 0;
  padding-right: 20px;
}

.services .container .box .info::after {
  position: absolute;
  content: "";
  left: 60px;
  width: 60px;
  background-color: #d5d5d5;
  height: calc(100% + 2px);
  top: 0;
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

.services .container .box .info a {
  color: #f47b21;
}

.our-skills {
  padding: 50px 0;
  position: relative;
}

.our-skills .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.our-skills .container .skills {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.our-skills .container .skills .skill {
  margin-bottom: 1rem;
}

.our-skills .container .skills .skill .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.our-skills .container .skills .skill .title span {
  border: 1px solid #d5d5d5;
  padding: 4px;
  border-radius: 5px;
  color: #f47b21;
}

.our-skills .container .skills .progress {
  width: 100%;
  background: #cdcdcd;
  height: 30px;
  margin-top: 1rem;
}

.our-skills .container .skills .progress span {
  background-color: #f47b21;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  display: block;
}

@media (max-width: 992px) {
  .our-skills img {
    display: none;
  }
}

.how-work {
  padding: 50px 0;
  background-color: white;
}

.how-work .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.how-work .container > img {
  position: relative;
  -webkit-animation: up-down infinite 2s linear;
  animation: up-down infinite 2s linear;
}

.how-work .container .content .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.how-work .container .content .box .icon img {
  width: 50px;
}

.how-work .container .content .box .info {
  padding: 10px 20px;
}

.how-work .container .content .box .info h3 {
  color: #f47b21;
}

.how-work .container .content .box .info p {
  line-height: 1.5;
  color: #9e9e9e;
}

@media (max-width: 992px) {
  .how-work .container > img {
    display: none;
  }
}

.events {
  padding: 50px 0;
  position: relative;
}

.events .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.events .container img {
  width: clamp(250px, 75%, 450px);
}

.events .container .info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.events .container .info .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.events .container .info .time .unit {
  border-radius: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #d5d5d5;
}

.events .container .info .time .unit:hover {
  cursor: pointer;
  border-color: #f47b21;
}

.events .container .info .time .unit:hover span:last-child {
  border-color: #f47b21;
}

.events .container .info .time .unit span:first-child {
  display: -ms-grid;
  display: grid;
  font-weight: bold;
  place-content: center;
  padding: 20px;
  font-size: 32px;
  color: #f47b21;
}

.events .container .info .time .unit span:last-child {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 10px 15px;
  text-align: center;
  border-top: 1px solid #d5d5d5;
  font-size: 10px;
}

.events .container .info .description {
  text-align: center;
}

.events .container .info .description h3 {
  font-size: 30px;
  margin: 1rem 0;
  font-weight: bold;
}

.events .container .info .description p {
  color: #9f9d9d;
}

.events .container .form {
  width: 100%;
}

.events .container .form form {
  width: clamp(250px, 75%, 600px);
  margin: 20px auto;
  padding: 30px 40px;
  background-color: #f6f5f5;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.events .container .form form input[type="email"] {
  border: none;
  outline: none;
  padding: 20px;
  border-radius: 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  caret-color: #f47b21;
}

.events .container .form form input[type="email"]::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.events .container .form form input[type="email"]:-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.events .container .form form input[type="email"]::-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.events .container .form form input[type="email"]::placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.events .container .form form input[type="email"]:focus::-webkit-input-placeholder {
  opacity: 0;
}

.events .container .form form input[type="email"]:focus:-ms-input-placeholder {
  opacity: 0;
}

.events .container .form form input[type="email"]:focus::-ms-input-placeholder {
  opacity: 0;
}

.events .container .form form input[type="email"]:focus::placeholder {
  opacity: 0;
}

.events .container .form form input[type="submit"] {
  border: none;
  padding: 10px 15px;
  background-color: #f47b21;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px;
}

.events .container .form form input[type="submit"]:hover {
  background-color: #1787e0;
}

@media (max-width: 992px) {
  .events .container img {
    display: none;
  }
}

@media (max-width: 767px) {
  .events .container .form form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 0;
    padding: 20px;
  }
}

.pricing {
  padding: 50px 0;
  position: relative;
  background-color: #ececec;
}

.pricing .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.pricing .container .box {
  text-align: center;
  padding: 20px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  -webkit-box-shadow: 0 0 2px #1787e0;
  box-shadow: 0 0 2px #1787e0;
  z-index: 1;
  -webkit-box-shadow: 3px 2px 5px #9e9e9e, 2px 3px #0003;
  box-shadow: 3px 2px 5px #9e9e9e, 2px 3px #0003;
}

.pricing .container .box::after,
.pricing .container .box::before {
  position: absolute;
  content: "";
  height: 50%;
  width: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #9e9e9e7a;
  z-index: -1;
}

.pricing .container .box::after {
  top: 0;
  left: 0;
}

.pricing .container .box::before {
  bottom: 0;
  right: 0;
}

.pricing .container .box:hover::after,
.pricing .container .box:hover::before {
  width: 100%;
}

.pricing .container .box .title {
  font-weight: bold;
  margin: 30px 0;
  font-size: 25px;
  letter-spacing: -1px;
}

.pricing .container .box .label {
  position: absolute;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  top: 0;
  right: 25px;
  background: #f47b21;
  padding: 10px 10px 35px 10px;
  font-weight: bold;
  color: #fff;
  width: 40px;
}

.pricing .container .box .label::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 20px;
  border-color: transparent transparent #fff transparent;
}

.pricing .container .box img {
  width: 80px;
  margin-bottom: 30px;
}

.pricing .container .box .price {
  margin-bottom: 20px;
}

.pricing .container .box .price .amount {
  display: block;
  font-size: 3rem;
  color: #f47b21;
  font-weight: bold;
  margin-bottom: 1rem;
}

.pricing .container .box .price .time {
  font-size: 16px;
  color: #777;
}

.pricing .container .box ul {
  text-align: left;
}

.pricing .container .box ul li {
  padding: 20px;
  border-top: 1px solid #eee;
  font-weight: 700;
  color: #9e9e9e;
  letter-spacing: 1px;
}

.pricing .container .box ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  margin-right: 10px;
  color: #f47b21;
}

.pricing .container .box a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #f47b21;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto 0;
}

.pricing .container .box a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  background-color: #1787e0;
}

@media (min-width: 1200px) {
  .pricing .popular {
    top: -20px;
  }
}

.videos {
  padding: 50px 0;
  position: relative;
}

.videos .container .holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.videos .container .holder .list {
  background: #eee;
  min-width: 300px;
}

.videos .container .holder .list .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  background: #f4f4f4;
  color: #f47b21;
  font-weight: bold;
}

.videos .container .holder .list ul li {
  padding: 15px;
  border-top: 1px solid #9e9e9e3b;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.videos .container .holder .list ul li:hover {
  color: #f47b21;
}

.videos .container .holder .list ul li span {
  display: block;
  margin-top: 0.7rem;
  font-weight: bold;
  color: #f47b21;
}

.videos .container .holder .preview {
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
}

.videos .container .holder img {
  max-width: 100%;
}

.videos .container .holder .info {
  padding: 20px;
  background: #fff;
  margin: 1rem 0;
}

@media (max-width: 991px) {
  .videos .container .holder {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.stats {
  padding: 50px 0;
  position: relative;
  background-image: url("../imgs/stats.jpg");
  background-size: cover;
  min-height: 300px;
}

.stats::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.815);
}

.stats h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 30px auto;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 2.5rem;
}

.stats .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.stats .container .box {
  text-align: center;
  position: relative;
  padding: 20px;
  background: #fff;
}

.stats .container .box::before,
.stats .container .box::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #f47b21;
  height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.stats .container .box::before {
  top: 0;
  right: 0;
}

.stats .container .box::after {
  bottom: 0;
  left: 0;
}

.stats .container .box:hover::before,
.stats .container .box:hover::after {
  height: 100%;
}

.stats .container .box .number {
  display: block;
  font-size: 40px;
  color: #f47b21;
  margin: 10px;
}

.discount {
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
}

.discount .right {
  position: relative;
  background-image: url("../imgs/discount-background1.jpg");
  background-size: cover;
  padding: 50px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: #fff;
  text-align: center;
  -webkit-animation: changeBackground linear 10s infinite;
  animation: changeBackground linear 10s infinite;
}

.discount .right::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #1786e0c4;
  top: 0;
  left: 0;
}

.discount .right .info {
  position: relative;
}

.discount .right .info p {
  margin: 1rem 0;
}

.discount .right .info img {
  width: 300px;
  max-width: 100%;
}

.discount .left {
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #eee;
}

.discount .left .form {
  width: 100%;
  text-align: center;
}

.discount .left .form h2 {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 30px;
}

.discount .left .form form input[type="text"],
.discount .left .form form textarea {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: #f9f9f9;
  outline: none;
  caret-color: #f47b21;
  resize: none;
}

.discount .left .form form input[type="text"]::-webkit-input-placeholder,
.discount .left .form form textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.discount .left .form form input[type="text"]:-ms-input-placeholder,
.discount .left .form form textarea:-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.discount .left .form form input[type="text"]::-ms-input-placeholder,
.discount .left .form form textarea::-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.discount .left .form form input[type="text"]::placeholder,
.discount .left .form form textarea::placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.discount .left .form form input[type="text"]:focus::-webkit-input-placeholder,
.discount .left .form form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.discount .left .form form input[type="text"]:focus:-ms-input-placeholder,
.discount .left .form form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.discount .left .form form input[type="text"]:focus::-ms-input-placeholder,
.discount .left .form form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.discount .left .form form input[type="text"]:focus::placeholder,
.discount .left .form form textarea:focus::placeholder {
  opacity: 0;
}

.discount .left .form form input[type="submit"] {
  padding: 10px 30px;
  border: none;
  background: #f47b21;
  color: #fff;
  font-size: 20px;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .discount {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.footer {
  background-color: #191919;
}

.footer .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}

.footer .container .box h3 {
  color: #fff;
  font-size: 50px;
  margin: 0 0 15px;
}

.footer .container .box .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
}

.footer .container .box .social li {
  margin-right: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer .container .box .social li:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.footer .container .box .social li:hover .facebook {
  background-color: #008cff;
}

.footer .container .box .social li:hover .twitter {
  background-color: #0066ffb7;
}

.footer .container .box .social li:hover .youtube {
  background-color: rgba(255, 0, 0, 0.767);
}

.footer .container .box .social li a {
  background-color: #313131;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #898989;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer .container .box p {
  line-height: 24px;
  color: #898989;
}

.footer .container .box .links li {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 15px 0;
  cursor: pointer;
}

.footer .container .box .links li:hover {
  padding-left: 10px;
}

.footer .container .box .links li:hover a {
  color: #fff;
}

.footer .container .box .links li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #898989;
}

.footer .container .box .links li i {
  margin-right: 10px;
  color: #f47b21;
}

.footer .container .box .links li:not(:last-child) {
  border-bottom: 1px solid #444;
}

.footer .container .box .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  color: #b9b9b9;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer .container .box .line i {
  margin-right: 10px;
  font-size: 25px;
  color: #f47b21;
}

.footer .container .box .line .info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer .container .footer-gallery img {
  width: 78px;
  border: 3px solid #fff;
  margin: 2px;
  cursor: pointer;
}

.footer .copyright {
  text-align: center;
  color: #fff;
  margin-top: 1rem;
  padding: 2rem 0;
}

.footer .copyright i {
  color: red;
}

.footer .copyright span {
  color: #f47b21;
}

.up {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #f47b21;
  z-index: 9;
  right: 1px;
  bottom: 3px;
  display: none;
  place-content: center;
  -webkit-animation: up-down infinite 2s linear;
  animation: up-down infinite 2s linear;
  -webkit-transition: display 0.3s;
  transition: display 0.3s;
  border-radius: 25px;
  
}

.up i {
  font-size: 1.1rem;
  color: #fff;
}

.show {
  display: -ms-grid !important;
  display: grid !important;
}

@-webkit-keyframes up-down {
  0%,
  100% {
    bottom: 0;
  }
  50% {
    bottom: 15px;
  }
}

@keyframes up-down {
  0%,
  100% {
    bottom: 0;
  }
  50% {
    bottom: 15px;
  }
}

@-webkit-keyframes left-move {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    left: 0;
    border-radius: 0;
    width: 50%;
    height: 100%;
  }
}

@keyframes left-move {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    left: 0;
    border-radius: 0;
    width: 50%;
    height: 100%;
  }
}

@-webkit-keyframes right-move {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    right: 0;
    border-radius: 0;
    width: 50%;
    height: 100%;
  }
}

@keyframes right-move {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    right: 0;
    border-radius: 0;
    width: 50%;
    height: 100%;
  }
}

@-webkit-keyframes Arrow-Move {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes Arrow-Move {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@-webkit-keyframes flashing {
  0%,
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 150%;
    height: 150%;
  }
}

@keyframes flashing {
  0%,
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 150%;
    height: 150%;
  }
}

@-webkit-keyframes changeBackground {
  0%,
  100% {
    background-image: url("../imgs/discount-background1.jpg");
  }
  40% {
    background-image: url("../imgs/discount-background2.jpg");
  }
}

@keyframes changeBackground {
  0%,
  100% {
    background-image: url("../imgs/discount-background1.jpg");
  }
  40% {
    background-image: url("../imgs/discount-background2.jpg");
  }
}

.blocker {
z-index: 9999999;
}
.modal
{
  max-width: 100vw;
}