/* Start Variables */
:root {
  --main-color: #2196f3;
  --main-color-alt: #1787e0;
  --main-transition: 0.3s;
  --main-padding-top: 100px;
  --main-padding-bottom: 100px;
  --section-background: #ececec;
  }
  /* End Variables */
  /* Start Global Rules */
  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: 'Cairo', sans-serif;
  }
  ul {
    list-style: none;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Small */
  @media (min-width: 768px) {
    .container {
      width: 750px;
    }
  }
  /* Medium */
  @media (min-width: 992px) {
    .container {
      width: 970px;
    }
  }
  /* Large */
  @media (min-width: 1200px) {
    .container {
      width: 1170px;
    }
  }
  /* End Global Rules */
  /*  Start Header*/
  header {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #ddd;
    position: relative;
    -webkit-box-shadow: 0 0 10px #ddd;
    -moz-box-shadow: 0 0 10px #ddd;
    box-shadow: 0 0 10px #ddd;
    z-index: 2;
  }
  header .container .content-header {
    display: flex;
    align-items: center;
  }
  .content-header  .main {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .content-header  a {
    text-decoration: none;
  }
  header .logo {
    text-decoration: none;
    color: var(--main-color);  
    font-size: 26px;
    font-weight: bold;
  }
  header .content-header  .main .one  a {
    text-decoration: none;
    color: black;
    padding: 28px 20px;
    font-size: 18px;
    position: relative;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    width: fit-content;
}
.special-a {
  text-decoration: none;
  color: black;
  padding: 28px 20px;
  font-size: 18px;
  position: relative;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  width: fit-content;
}

.special-a::before  {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  background-color: var(--main-color);
  top: 0;
  left: 0;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  
}
.special-a:hover::before {
  width: 100%;
}
header .content-header  .main .one  a::before  {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  background-color: var(--main-color);
  top: 0;
  left: 0;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
   
}
header .content-header  .main .one:hover ::before {
  width: 100%;
}
  @media (max-width: 768px) {
    header .container .content-header {
      flex-direction: column;
    }
    header .content-header  .main >  li a {
      padding: 0 15px;
      font-size: 16px;
    }

  }
  /* Mega Menu */
  .content-header  .main .mega {
    background-color: white;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    padding: 80px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--main-color);
    gap: 20px;
    transition: top var(--main-transition), opacity var(--main-transition);
    display: none;
    cursor: context-menu;

  }

  header .main .list-special:hover .mega {
  display: flex;
  }
 .mega .image img {
    max-width: 100%;
  }
  .content-header  .main .links {
    min-width: 250px;
    flex: 1;
  }
  .mega .links li a {
    color: var(--main-color);
    padding: 15px;
    display: block;
    font-size: 18px;
    font-weight: bold;
}
.mega .links li a > i {
  margin-right: 10px;
  font-size: 24px;
}
header .mega .links li {
  position: relative;
  z-index: 2;
  max-width: 300px;
}
header .mega .links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: #eee;
  transition: var(--main-transition);
}
header .mega .links li:hover::before {
  width: 100%;
}
.mega .links:first-of-type {
  margin-left: 100px;
}
header .mega .links li:not(:last-child) {
  border-bottom: 1px solid #e9e6e6;
}

@media (max-width: 992px) {
  .mega .image {
    display: none;
  }
  .mega .links:first-of-type {
    margin-left: 100px;
  }
}
@media (max-width: 768px) {
  .content-header .main .mega {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px; 
    gap: 10px;
  }
  header .main .list-special:hover .mega {
    display: flex;
    }
  .mega .links:first-of-type {
    margin-left: unset;
  }
  header .content-header .main > li a {
    font-size: 16px;
    display: block;
    padding: 16px;
  }
  header .content-header .main .one a {
    padding: 16px;
  }
}
/* End Header */
/* Start Landing */
.landing {
  position: relative;
  z-index: 1;
}
.landing::before {
  content: "";
  position: absolute;
  top: -78px;
  left: 0;
  width: 100%;
  height: calc(100% - 89px);
  background-color: #ececec;
  transform: skewY(3deg);
  -webkit-transform: skewY(-5deg);
  -moz-transform: skewY(3deg);
  -ms-transform: skewY(3deg);
  -o-transform: skewY(3deg);
}
.landing .image img {
  position: relative;
  width: 600px;
  animation: up-and-down 4s linear infinite;
  animation-direction: alternate;
  max-width: 100%;
  -webkit-animation: up-and-down 4s linear infinite;
}
.text {
  z-index: 1;
}
.landing .container {
  min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding-bottom: 120px;
}
.text h3 {
  font-size: 40px;
  margin: 0;
  letter-spacing: -2px;
}
.text p {
  font-size: 23px;
    line-height: 1.7;
    margin: 5px 0 0;
    color: #666;
    max-width: 500px;
}
.landing a i {
    position: absolute;
    bottom: 18px;
    left: 50%;
    color: var(--main-color);
    animation-name: row;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    
}
@keyframes row {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  30% {
    transform: translateY(-25px);
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
}
}
@keyframes up-and-down {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}
50% {
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}
}
@media (max-width: 992px) {
  .landing .image {
    display: none;
  }
  .landing .text {
    text-align: center;
  }
  .text p {
    font-size: 23px;
    line-height: 1.7;
    margin: 5px 0 0;
    color: #666;
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .text h3 {
    font-size: 24px;
    margin: 0;
    letter-spacing: 1px;
  }
  .text p {
    font-size: 19 px;
    line-height: 1.7;
    margin: 5px 0 0;
    color: #666;
    max-width: unset;

  }
}
/* End Landing */
/* Start Article */
.article {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.main-title {
 text-align: center;
 font-size: 30px;
 border: 2px solid black;
 width: fit-content;
 margin: 0 auto;
 padding: 2px 18px;
 position: relative;
 z-index: 1;
}
.main-title:hover {
 color: white;
 transition: 1s step-end;
 -webkit-transition: 1s step-end;
 -moz-transition: 1s step-end;
 -ms-transition: 1s step-end;
 -o-transition: 1s step-end;
}
.main-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  left: -40px;
  height: 12px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--main-color);
}
.main-title::after {
  content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    right: -40px;
    height: 12px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--main-color);
}
.main-title:hover:after {
  animation: right 1s linear;
  -webkit-animation: right 1s linear forwards;
  z-index: -1;
}
.main-title:hover::before {
  animation: left 1s linear;
  -webkit-animation: left 1s linear forwards;
  z-index: -1;
  
}
@keyframes left {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
 
}
100% {
  left: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  width: 50%;
  height: 100%;
}
}
@keyframes right {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    right: 0;
    width: 50%;
    height: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
}
.article .container {
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(250px , 1fr));
  gap: 25px;
  margin-top: 100px;
}
.article .container .box {
  box-shadow: 0 2px 15px rgb(0 0 0 / 15%);
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--main-transition), box-shadow var(--main-transition);
}
.article .container .box:hover {
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
}
.article .container .box img {
  max-width: 100%;
}
.article .container .box h3 {
  margin-left: 13px;
}
.article .container .box p {
    margin-left: 10px;
    line-height: 1.5;
    color: #777;
    margin-bottom: 22px;
}
.article .container .box .feet {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article .container .box .feet a {
  text-decoration: none;
  color: var(--main-color);
    font-weight: bold;
}
.article .container .box .feet i {
    color: var(--main-color);
    font-weight: bold;

}

.article .container .box:hover i {
  animation-name: one;
  animation-duration: 1s;
  animation-direction: alternate;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes one {
  50% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
}
100% {
  transform: translateX(-10px);
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
}
}
/* End Article */
.spikes {
  position: relative;
}
.spikes::before {
  content: "";
  position: absolute;
  right: 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;
  background-color: var(--section-background);
}
.gallery {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  background-color: var(--section-background);
}
.gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
  gap: 20px;
  padding-top: 100px;
}
.gallery .container .box-gal  {
  padding: 15px 15px 9px;
  background-color: white;
  box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%), 0px 2px 4px 0px rgb(0 0 0 / 12%);
}
.gallery .container .box-gal img {
  max-width: 100%;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.gallery .container .box-gal .images {
  position: relative;
  overflow: hidden;
}
.gallery .container .box-gal .images::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(255 255 255 / 20%);
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 2;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.gallery .container .box-gal:hover img {
  transform: rotate(5deg) scale(1.3);
  -webkit-transform: rotate(5deg) scale(1.3);
  -moz-transform: rotate(5deg) scale(1.3);
  -ms-transform: rotate(5deg) scale(1.3);
  -o-transform: rotate(5deg) scale(1.3);
}
.gallery .container .box-gal:hover .images::before {
  opacity: 1;
  width: 100%;
  height: 100%;
  z-index: 2;
}
/* End Gallery */
/* Start Features */
.features {
  padding-bottom: var(--main-padding-bottom);
  padding-top: var(--main-padding-top);
}
.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
  gap: 20px;
  margin-top: 60px;
}
.features .imager {
  overflow: hidden;
  position: relative;
}
.features .imager::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.features .imager::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-width: 0 0 170px 500px;
  border-color: transparent transparent white transparent;
  border-style: solid;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.features .box:hover .imager::after {
  border-width: 0px 500px 170px 0;
}
.features .box {
  text-align: center;
  border: 1px solid #ccc;
  padding-bottom: 44px;
}
.features .quality .imager::before {
  background-color: rgba(244, 19, 3, 0.6);
}
.features .time .imager::before {
  background-color: rgb(0 150 136 / 60%);
}
.features .passion .imager::before { 
  background-color: rgb(3 169 244 / 60%);
}
.features .box h3 {
  width: fit-content;
  font-size: 40px;
  margin: 5px auto;
  position: relative;
}
.features .box p {
  line-height: 2;
    font-size: 20px;
    margin: 30px 0;
    padding: 25px;
    color: #777;
}
.features .box a {
  text-decoration: none;
  display: block;
  padding: 1px 23px;
  color: #03a9f4;
  font-size: 22px;
  width: fit-content;
  margin-bottom: 21px;
  margin: auto;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  position: relative;
  z-index: 2;
}
.features .box a::before {
  content: "";
  position: absolute;
  width: 1%;
  height: 100%;
  top: 0;
  left: 0;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  z-index: -1;
}
.features .box:hover a::before {
  width: 100%;
}
.features .box:hover a {
  color: white;
  font-weight: bold;
  font-family: cairo;
}
.features .quality a::before {
  background-color: #f44036;
}
.features .time a::before {
  background-color: #009688;
}
.features .passion a::before {
  background-color: #03a9f4;
}
.features .quality a {
  border: 4px solid rgba(244, 19, 3, 0.6);
  color: #f44036;
}
.features .time a {
  border: 4px solid #009688;
  color: #009688;
}
.features .passion a {
  border: 4px solid #03a9f4;
  color: #03a9f4;
}
.features .quality h3::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 4px solid #f44036;
}
.features .imager img {
  max-width: 100%;
}
/* End Features */
/* Start  testimonials*/
.testimonials {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: var(--section-background);
}
.testimonials .container {
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
  gap: 40px;
  padding-bottom: var(--main-padding-bottom);
  padding-top: var(--main-padding-top);
}
.testimonials .box-test {
  padding: 20px;
  background-color: white;
  box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
  border-radius: 6px;
  position: relative;
  margin-top: 15px;
}

.testimonials .container .box-test img {
  width: 70px;
  height: 70px;
  border: 10px solid var(--section-background);
  max-width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  right: -7px;
  top: -26px;
}
.testimonials .box-test h3 {
  margin: 0 0 10px;
}
.testimonials .box-test span {
  color: #777;
}
.testimonials .box-test p {
  line-height: 1.5;
  color: #777;
  margin-top: 10px;
  margin-bottom: 0;
}
.testimonials .rate .filled {
  color: gold;
}
/* <!-- End TESTIMONIALS --> */
/* Start Team Member */
.team-member {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.team-member .container {
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
  gap: 20px;
  padding-top: var(--main-padding-top);
}
.box-member {
  position: relative;
  z-index: 3;
  transition: .3s;
}
.box-member::before {
  content: "";
  position: absolute;
  width: calc(100% - 35px);
  height: 100%;
  top: 0;
  right: 0;
  background-color: #f3f3f3;
  z-index: -2;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.box-member::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #e4e4e4;
  z-index: -1;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  border-radius: 3px;
}
.box-member:hover img , 
.box-member:hover .info {
  filter: grayscale(1);
}
.box-member:hover::after {
  width: calc(100% - 35px);
}
.date img {
  width: calc(100% - 60px);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  margin-top: 52px;
}
.team-member .date {
  display: flex;
  align-items: center;
}
.team-member .icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 54px;
}
.team-member .icons a {
  width: 60px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777;
  text-decoration: none;
  margin-bottom: 5px;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.team-member .icons a:hover {
  color: var(--main-color);
}
.box-member .info {
  padding: 20px 20px 20px 40px;
  margin-left: 20px;
}

.box-member .info h3 {
  color: var(--main-color);
}
/* End Team Member */
.services {
  background-color: var(--section-background);
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
  gap: 20px;
  padding-top: var(--main-padding-top);
}
.services .box-srv {
  background-color: white;
  box-shadow: 0 12px 20px 0 rgb(0 0 0 / 18%), 0 2px 4px 0 rgb(0 0 0 / 12%);
  counter-increment: number;
  transition: var(--main-transition);
  position: relative;
}
.box-srv::before {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  top: -3px;
  background-color: var(--main-color);
  position: absolute;
  width: 0;
  transition: var(--main-transition);
}
.box-srv:hover::before {
  width: 100%;
}
.box-srv:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.box-srv i {
  margin: 30px auto 20px;
  display: block;
  text-align: center;
  color: #d5d5d5;
}
.box-srv h3 {
  text-align: center;
    margin: 20px 0 40px;
    font-size: 25px;
    color: var(--main-color);
    padding-bottom: 52px;
}
.box-srv .info::before {
  content: "0" counter(number);
  position: absolute;
  background-color: var(--main-color);
  color: white;
  left: 0;
  bottom: 0;
  font-size: 28px;
  padding: 1px 30px;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-srv .info::after {
  content: "";
  position: absolute;
  background-color: #d5d5d5;
  bottom: 0;
  left: 76px;
  width: -18px;
  height: 52px;
  padding: 1px 22px;
  transform: skewX(-30deg);
}
.box-srv .info a {
  position: absolute;
  bottom: 0;
  right: 0;
  text-decoration: none;
  color: var(--main-color);
  margin-right: 14px;
  margin-bottom: 12px;
}

.box-srv .info  a {
  display: block;
}
/* End Services */
/* Start Skills  */
.our-skills {
  position: relative;
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.our-skills .container {
  display: flex;
  padding-top: var(--main-padding-top);
  align-items: center;
  justify-content: space-between;
}

.our-skills .skills  {
  flex: 1;
  justify-content: flex-end;
}
.skills .skill .info {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  margin-bottom: 8px;

}

.skills .skill {
  margin-bottom: 30px;
}
.skills .line {
  width: 100%;
  background-color: #e4e4e4;
  height: 30px;
  position: relative;
}
.skills .info span {
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 1px 8px 1px 9px;
  border-radius: 4px;
  color: var(--main-color);
  font-weight: bold;
}

.skills .line span {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 100%;
  
  background-color: var(--main-color);
  animation-name: left-to-right;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media (max-width: 992px) {
  .container .image-skill {
    display: none;
  }
}
@keyframes left-to-right {
  40% {
    width: 0%;
  }
  75% {
    width: 45%;
  }
  
  100% {
    width: 80%;
  }
}
/* End Skills */
.works {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: var(--section-background);
}
.image-work {
  margin-right: 100px;
}
.image-work img {
  max-width: 100%;
}
.works .container { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--main-padding-top);
}

.works .work-step {
  flex: 1;
}
.works .box-work img {
  width: 64px;
  margin-right: 30px; 
}
.box-work {
  background-color: #f6f5f5;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  border: 2px solid white;
  position: relative;
  z-index: 1;
}
.box-work::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  background-color: #ededed;
  z-index: -1;
  -webkit-transform: translate(-50% , -50%);
  -moz-transform: translate(-50% , -50%);
  -ms-transform: translate(-50% , -50%);
  -o-transform: translate(-50% , -50%);
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.box-work:hover::before {
  width: 100%;
  height: 100%;
}
.info-work p {
  min-width: 215px;
}
@media (max-width:992px) {
  .image-work  {
    margin: 0 0 50px;
  }
  .works .container {
    flex-direction: column;

  }
}
/* End Work */
.events {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.dot-1  {
  background-image: url(../images/dots.png);
  background-size: cover;
  width: 204px;
  height: 180px;
  position: absolute;
  right: 0;
  top: 200px;
  background-repeat: no-repeat;
}
.dot-2 {
  background-image: url(../images/dots.png);
  background-size: cover;
  width: 204px;
  height: 180px;
  position: absolute;
  left: 0;
  bottom: 51px;
  background-repeat: no-repeat;
}
.events .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: var(--main-padding-top);
}
.container .timee {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  text-align: center;
  margin: 20px auto;
}
.container .timee .unit {
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  text-align: center;
  width: 75px;
  transition: var(--main-transition);
}
.container .timee .unit span {
  color: var(--main-color);
  font-size: 35px;
  font-weight: bold;
  display: block;
}
.container .timee .unit h3 {
  font-size: 14px;
  border-top: 1px solid #d4d4d4;
  padding: 5px;
}

.container .sub {
  width: 100%;
}
.container .sub form {
  max-width: 507px;
  margin: 50px auto;
  background-color: #f6f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-radius: 53px;
}
.container .sub form input {
    outline: none;
    border: 1px solid transparent;
    color: var(--main-color);
    border: none;
    background-color: whitesmoke;
    border-radius: 50px;
    padding: 20px;
    margin-left: 26px;
    transition: .3s ;
    -webkit-transition: .3s ;
    -moz-transition: .3s ;
    -ms-transition: .3s ;
    -o-transition: .3s ;
}
.container .sub form label {
  background-color: var(--main-color);
  border: none;
  padding: 10px 17px;
  border-radius: 53px;
  color: white;
  font-size: 19px;
}
.container .sub form input:focus {
  caret-color: var(--main-color);
}
.container .sub form input:focus::placeholder {
  opacity: 0;
}

.container .info-timee {
  margin: 0 0 50px;
  text-align: center;
}
.container .info-timee h3 {
  font-size: 30px;
}
.container .info-timee p {
  text-align: center;
  line-height: 1.7;
  font-size: 19px;
  color: #777;
}
.container .dote {
  flex: 1;
}
.events .container img {
  max-width: 450px;
  margin: 1px auto;
}
@media  (max-width: 500px){
  .events .container img {
    max-width: 350px;
    margin: 1px auto;
  }
  .container .timee {
    gap: 15px;
  }
  .container .sub form {
    padding: 0;
  }
  .container .sub form label {
    padding: 3px 9px;
  }
}
@media (max-width:992px) {
  .events .dot-2 {
    display: none;
  }
  .events .dot-1 {
    display: none;
  }
}
/* End Event */
.price-plan {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  background-color: var(--section-background);
}
.price-plan .container {
  padding-top: var(--main-padding-top);
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
  gap: 20px;
}
.box-basic {
  position: relative;
    box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
    transition: var(--main-transition);
    background: white;
    text-align: center;
    z-index: 1;
}
.box-basic h3 {
  font-weight: bold;
  margin: 30px 0;
  font-size: 25px;
  letter-spacing: -1px;
}
.box-basic .pricee .amount {
    font-size: 60px;
    font-weight: bold;
    color: var(--main-color); 
}
.box-basic .pricee .time {
  color: #777;
    margin-top: -20px;
    margin-bottom: 38px;
}
.box-basic .pricee span {
  display: block;
}
.box-basic img {
  width: 80px;
    margin-bottom: 30px;
}
.box-basic ul {
  list-style: none;
    text-align: left;
}
.box-basic ul li {
  padding: 20px;
  border-top: 1px solid #eee;
}
.box-basic ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  margin-right: 10px;
  font-weight: bold;
  color: var(--main-color);
}
.price-plan .box-basic:nth-child(2) {
  top: -21px;
}
.box-basic button {
  border: 3px solid var(--main-color);
  outline: none;
  padding: 15px 20px;
  background-color: whitesmoke;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  display: block;
  margin: 10px auto 50px;
  border-radius: 6px;
  font-weight: bold;
}
.box-basic button:hover {
  background-color: var(--main-color);
  color: white;
}
.box-basic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 0%;
  height: 50%;
  background-color: #c0bcbcb2;
  transition: var(--main-transition);
  -webkit-transition: var(--main-transition);
  -moz-transition: var(--main-transition);
  -ms-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  z-index: -1;
}
.box-basic::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 50%;
  background-color: #c0bcbcb2;
  transition: var(--main-transition);
  -webkit-transition: var(--main-transition);
  -moz-transition: var(--main-transition);
  -ms-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  z-index: -1;
}
.box-basic:hover::before , 
.box-basic:hover::after {
  width: 100%;
}
@media (max-width:992px) {
  .price-plan .box-basic:nth-child(2) {
    top: 0;
  }
}
/* End Price Plane */
.top-videos {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.holder {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  background-color: white;
}
.side-video img {
  max-width: 100%;
  margin-left: 10px;
  margin-right: 10px;

}

.holder ul .free {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:  20px ;
  background-color: #f4f4f4;
}
.holder ul li {
  padding: 20px;
  border-bottom: 1px solid #d4d4d4;
  position: relative;
  z-index: 1;
}
.holder ul li::before {
 content: "";
 width: 0%;
 height: 100%;
 left: 0;
 top: 0;
 background-color: rgb(238, 238, 238);
 position: absolute;
 z-index: -1;
 transition: .3s;
 -webkit-transition: .3s;
 -moz-transition: .3s;
 -ms-transition: .3s;
 -o-transition: .3s;
}
.holder ul li:hover::before {
  width: 100%;
}

.holder ul li a {
  text-decoration: none;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.holder .side-video {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #e2e2e2;
}
.holder li span {
  display: block;
}
.holder .side-video p {
  padding: 20px;
  background-color: white;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
.holder ul li a:hover {
  color: #03a9f4;
}
@media (max-width: 992px) {
  .holder {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
/* End Top Videos */
/* Start Status */
.stats {
  padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
    background-image: url(../images/stats.jpg);
    background-size: cover;
    min-height: 300px;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 95%);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(250px , 1fr));
  margin-top: 150px;
  gap: 20px;
}

.stats .box-stat {
  background-color: white;
  padding: 40px 15px;
  text-align: center;
  position: relative;
  opacity: 0.8;
  transition: var(--main-transition);
  z-index: 1;
}
.stats .box-stat::before {
  content: "";
  position: absolute;
  width: 2%;
  height: 0%;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  transition: all .7s;
  -webkit-transition: all .7s;
  -moz-transition: all .7s;
  -ms-transition: all .7s;
  -o-transition: all .7s;
}
.stats .box-stat::after {
  content: "";
  position: absolute;
  width: 2%;
  height: 0%;
  bottom: 0;
  right: 0;
  background-color: var(--main-color);
  transition: all .7s;
  -webkit-transition: all .7s;
  -moz-transition: all .7s;
  -ms-transition: all .7s;
  -o-transition: all .7s;
}
.stats .box-stat:hover::before , 
.stats .box-stat:hover::after {
  height: 100%;
}
.stats .box-stat .num {
  font-size: 50px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}
.stats .box-stat .client {
  color: var(--main-color);
  font-style: italic;
  font-size: 20px;
  font-weight: bold;
}
.stats .box-stat span {
    display: block;
}
/* End Status */
/* Start Discoumt */
.discount {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
}
.discount .image {
  background-image: url(../images/discount-background1.jpg);
  background-size: cover;
  color: white;
  flex-basis: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-top: 86px;
  padding-bottom: 30px;
  animation: change-background 10s linear infinite;
}
.discount .image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(23 135 224 / 97%);
  z-index: -1;
}
.discount .content p {
  line-height: 1.6;
  font-size: 18px;
  max-width: 500px;
}
.discount .content h2 {
  font-size: 40px;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.discount .content img {
  width: 300px;
  max-width: 100%;
}
.discount .form {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 133px;
}
.discount .form form {
  display: flex;
  flex-direction: column;
}
.discount .form form input:not(:last-child) {
    display: block;
    width: 100%;
    margin-bottom: 25px;
    padding: 15px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #ccc;
    background-color: #f9f9f9;
    outline: none;
    caret-color: var(--main-color);
}
.discount .form textarea {
  resize: none;
  height: 200px;
  border-top: none;
  border-left: none;
  border-right: none;
  padding-left: 15px;
  outline: none;
  font-size: 16px;
  border-bottom: 1px solid #ccc;
}
.discount form .submit {
  color: white;
  background-color: var(--main-color);
  padding: 15px;
  border: none;
  outline: none;
}
@media (max-width: 992px) {
  .discount {
    flex-direction: column;
  }
}
/* End Discount */
/* Start Footer */
.footer {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: #191919;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(250px , 1fr));
  gap: 20px;
  color: white;
}
.footer .box-foot .social-foot {
  display: flex;
  align-items: center;
}
.social-foot a {
  background-color: #313131;
  color: #b9b9b9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  text-decoration: none;
  transition: var(--main-transition);
  margin-right: 10px;
  margin-top: 14px;
  margin-bottom: 17px;
}
.box-foot .link-foot {
  margin-left: 14px;
  margin-right: 27px;
  margin-bottom: 16px;
}
.box-foot .link-foot li {
  padding: 15px 15px 15px 0;
  border-bottom: 1px solid #ccc;
}
.box-foot .link-foot li::before {
  font-family: "Font Awesome 5 Free";
    content: "\F101";
    font-weight: 900;
    margin-right: 10px;
    color: var(--main-color);
}
.box-foot p {
  line-height: 2;
  color: #b9b9b9;
}
.galery img {
  width: 78px;
  border: 3px solid white;
  margin: 2px;
}
.box-foot .div-map {
  display: flex;
  align-items: center;
  margin-bottom: 29px;
}
.box-foot .div-map i {
  font-size: 30px;
  color: var(--main-color);
  margin-right: 12px;
}
.footer .container .box-foot .social-foot li:hover a.Youtube {
  background-color: red;
}
.footer .container .box-foot .social-foot li:hover a.face {
  background-color: blue;
}
.footer .container .box-foot .social-foot li:hover a.twitter {
  background-color: var(--main-color);
}
/* End Footer */
/* Start Copy Right */
.copy-right {
  padding: 20px;
  background-color: #191919;
  color: white;
  text-align: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.copy-right p {
  font-size: 23px;
}
.copy-right span {
  color: #777;
}
/* End Copy-Right */