/* Start Global Rules */
:root {
  --main-color: #2196f3;
  --main-color-alt: #1787e0;
  --main-transition: 0.3s;
  --padding-section: 60px;
  --background-color: #ececec;
  --text-color: #777;
  --footer-elements: #b9b9b9;
}
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Cairo", sans-serif;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.main-heading {
  margin-bottom: calc(var(--padding-section) + 50px);
  border: 1px solid #000;
  width: fit-content;
  font-size: 28px;
  padding: 10px 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-transform: uppercase;
  transition: var(--main-transition);
  z-index: 1;
}
.main-heading:hover {
  border-color: #fff;
  color: #fff;
  transition-delay: 0.6s;
}
.main-heading:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  background-color: var(--main-color);
  border-radius: 50%;
  transition: var(--main-transition);
}
.main-heading:after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background-color: var(--main-color);
  border-radius: 50%;
  transition: var(--main-transition);
}
.main-heading:hover:before {
  z-index: -1;
  animation: move-right 0.5s linear forwards;
}
.main-heading:hover:after {
  z-index: -1;
  animation: move-left 0.5s linear forwards;
}
/* Start Spike */
/* Spike for shaped end */
.spike {
  position: relative;
}
.spike::before {
  content: "";
  position: absolute;
  height: 30px;
  width: 100%;
  top: 0; 
  right: 0;
  background-image: linear-gradient(135deg, white 25%, transparent 25%), linear-gradient(225deg, white 25%, transparent 25%);
  background-size: 30px 30px;
  z-index: 1;
}
.dots {
  background-image: url(../assets/dots.WebP);
  width: 186px;
  height: 204px;
  background-repeat: no-repeat;
  position: absolute;
}
.dots-up {
  top: 200px;
  right: 0;
}
.dots-down {
  bottom: 200px;
  left: 0;
}
/* End Spike */
/* 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 {
  background-color: #fff;
  box-shadow: 0 0 10px #ddd;
  -webkit-box-shadow: 0 0 10px #ddd;
  -moz-box-shadow: 0 0 10px #ddd;
  position: relative;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.header .container .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  height: 72px;
  color: #2196f3;
}
@media (max-width: 767px) {
  .header .container .logo {
    width: 100%;
    height: 50px;
  }
}
.header .container .main-nav {
  display: flex;
}
.header .container .main-nav > li:last-child:hover .mega-menu {
  z-index: 100;
  opacity: 1;
  top: calc(100% + 1px);
}
.header .container .main-nav > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  height: 72px;
  color: #000;
  position: relative;
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .header .container .main-nav {
    margin: auto;
  }
  .header .container .main-nav > li > a {
    font-size: 12px;
    padding: 10px;
    height: 40px;
  }
}
.header .container .main-nav > li > a:hover {
  background-color: #fafafa;
}
.header .container .main-nav > li > a:hover:before {
  width: 100%;
}
.header .container .main-nav > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  background-color: var(--main-color);
  transition: var(--main-transition);
}
.header .mega-menu {
  display: flex;
  position: absolute;
  width: 100%;
  top: calc(100% + 50px);
  left: 0;
  gap: 20px;
  padding: 30px;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  border-top: 1px solid #eee;
  border-bottom: 3px solid var(--main-color);
  transition: top var(--main-transition), opacity var(--main-transition);
}
@media (max-width: 767px) {
  .header .mega-menu {
    flex-direction: column;
    gap: 0;
  }
}
.header .mega-menu .image img {
  width: 100%;
}
@media (max-width: 992px) {
  .header .mega-menu .image {
    display: none;
  }
}
.header .mega-menu .links {
  min-width: 250px;
  flex: 1;
}
.header .mega-menu .links li:not(:last-of-type) {
  border-bottom: 1px solid #eee;
}
@media (max-width: 767px) {
  .header .mega-menu .links:first-of-type li:last-of-type {
    border-bottom: 1px solid #eee;
  }
}
.header .mega-menu .links li {
  position: relative;
  width: 100%;
}
.header .mega-menu .links li:before {
  content: "";
  height: 100%;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f5f5f5;
  z-index: -1;
  transition: calc(var(--main-transition) * 3);
}
.header .mega-menu .links li:hover::before {
  width: 100%;
}
.header .mega-menu .links li a {
  display: block;
  color: var(--main-color);
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
}
.header .mega-menu .links li a i {
  margin-right: 10px;
}
/* Start Landing */
.landing {
  position: relative;
}
.landing::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ececec;
  z-index: -1;
  transform: skewY(-6deg);
  transform-origin: top left;
}
.landing .container {
  min-height: calc(100vh - 72px);
  display: flex;
  justify-content: stretch;
  align-items: center;
  padding-bottom: 120px;
}
.landing .text {
  flex: 1;
}
@media (max-width: 992px) {
  .landing .container .text {
    text-align: center;
  }
}
.landing .text h1 {
  font-size: 40px;
  letter-spacing: -3px;
}
.landing .text p {
  font-size: 23px;
  line-height: 1.7;
  margin: 5px 0 0;
  color: #666;
  max-width: 500px;
}
@media (max-width: 992px) {
  .landing .container .text p {
    margin: 0 auto;
  }
}
.landing > .image img {
  position: relative;
  width: 600px;
  animation: up-and-down 5s linear infinite;
}
@media (max-width: 992px) {
  .landing .container > .image {
    display: none;
  }
}
.landing .go-down {
  color: var(--main-color);
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  transition: var(--main-transition);
  animation: bouncing 1.5s infinite;
}
.landing .go-down::hover {
  color: var(--main-color-alt);
}
/* Start Articles */
.articles {
  position: relative;
  padding-bottom: var(--padding-section);
  padding-top: var(--padding-section);
}
.articles .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}
.articles .box {
  border-radius: 7px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 10%);
  transition: transform var(--main-transition),
    box-shadow var(--main-transition);
}
.articles .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 20%);
}
.articles .box img {
  width: 100%;
}
.articles .box .content {
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}
.articles .box .content h3 {
  margin: 10px auto;
}
.articles .box .content p {
  color: var(--text-color);
  padding-bottom: 10px;
  line-height: 1.5;
}
.articles .box .info {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.articles .box .info a {
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  color: var(--main-color);
}
.articles .box .info i {
  color: var(--main-color);
  transition: var(--main-transition);
}
.articles .box:hover .info i {
  animation: left-and-right 0.9s linear infinite;
}
/* End Articles */
/* Start Gallery */
.gallery {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  background-color: var(--background-color);
  position: relative;
}
.gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.gallery .box {
  padding: 15px;
  background-color: #fff;
  box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%),
    0px 2px 4px 0px rgb(0 0 0 / 12%);
}
.gallery .image {
  position: relative;
  overflow: hidden;
}
.gallery .image::before {
  content: "";
  position: absolute;
  background-color: rgb(255 255 255 / 20%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--main-transition);
}
.gallery .image:hover::before {
  animation: flashing 0.3s;
  z-index: 10;
}
.gallery .image:hover img {
  transform: rotate(5deg) scale(1.1);
}
.gallery img {
  max-width: 100%;
  transition: var(--main-transition);
}
/* End Gallery */
/* Start Features */
.features {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  position: relative;
}
.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.features .box {
  text-align: center;
  border: 2px solid #ddd;
}
.features .box .img-hold {
  position: relative;
  overflow: hidden;
  transition: var(--main-transition);
}
.features .box .img-hold::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -2px;
  left: 0;
  opacity: 0.5;
}
.features .quality .img-hold::before {
  background-color: #f44337;
}
.features .time .img-hold::before {
  background-color: #019587;
}
.features .passion .img-hold::before {
  background-color: #02a8f5;
}
.features .box .img-hold::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-width: 0 0 170px 500px;
  border-style: solid;
  border-color: transparent transparent white transparent;
  transition: var(--main-transition);
}
.features .box:hover .img-hold::after {
  border-width: 170px 500px 170px 0;
}
.features .box .img-hold img {
  max-width: 100%;
}
.features h1 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.features .box h1::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  top: 50px;
  left: 0;
  border-radius: 3px;
}
.features .quality h1::after {
  background-color: #f44337;
}
.features .time h1::after {
  background-color: #019587;
}
.features .passion h1::after {
  background-color: #02a8f5;
}
.features .box p {
  max-width: 250px;
  margin: 40px auto;
  line-height: 2;
  color: var(--text-color);
}
.features .box a {
  display: block;
  margin: 0 auto 40px;
  width: fit-content;
  padding: 15px 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
  border-width: 3px;
  border-style: solid;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.features .box:hover a {
  color: #fff;
  transition-delay: 0.1s;
}
.features .box a::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -21;
  background-color: #fff;
  transition: var(--main-transition);
}
.features .box:hover a::before {
  width: 100%;
}
.features .quality a {
  color: #f44337;
  border-color: #f44337;
}
.features .quality a::before {
  background-color: #f44337;
}
.features .time a {
  color: #019587;
  border-color: #019587;
}
.features .time a::before {
  background-color: #019587;
}
.features .passion a {
  color: #02a8f5;
  border-color: #02a8f5;
}
.features .passion a::before {
  background-color: #02a8f5;
}
/* End Features */
/* Start Testimonials */
.testimonials {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  background-color: var(--background-color);
  position: relative;
}
.testimonials .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
}
.testimonials .box {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}
.testimonials .box img {
  width: 100px;
  border-radius: 50%;
  border: 10px solid var(--background-color);
  position: absolute;
  top: -50px;
  right: 0;
}
.testimonials .box span {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
}
.testimonials .box span + p {
  color: var(--text-color);
  padding-bottom: 10px;
}
.testimonials .box .stars {
  padding-bottom: 10px;
}
.testimonials .box .stars .filled {
  color: gold;
}
.testimonials .box p:last-of-type {
  line-height: 1.6;
  color: var(--text-color);
  padding-bottom: 10px;
}
/* End Testimonials */
/* Start Team */
.team {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  position: relative;
}
.team .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 120px;
}
.team .box {
  position: relative;
}
.team .box::before,
.team .box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: calc(100% + 80px);
  border-radius: 10px;
  transform: translateY(-53%);
}
.team .box::before {
  z-index: -2;
  background-color: #eee;
  width: 80%;
}
.team .box::after {
  z-index: -1;
  background-color: #ccc;
  width: 0;
  transition: var(--main-transition);
}
.team .box:hover::after {
  width: 80%;
}
.team .box .data {
  display: flex;
  justify-content: center;
}
.team .box .data img {
  max-width: 80%;
  border-radius: 10px;
  transition: var(--main-transition);
}
.team .box:hover img {
  filter: grayscale(100%);
}
.team .box .social {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 20%;
}
.team .box .social i {
  color: #666;
}
.team .box .info {
  margin-left: 25%;
}
.team .box .info span {
  display: block;
  color: var(--main-color);
  padding: 15px 0;
  font-size: 20px;
  font-weight: bold;
}
/* End Team */
/* Start Services */
.services {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  background-color: var(--background-color);
  position: relative;
}
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.services .box {
  background-color: #fff;
  box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%),
    0px 2px 4px 0px rgb(0 0 0 / 12%);
  transition: var(--main-transition);
  position: relative;
  counter-increment: services;
}
.services .box:hover {
  transform: translateY(-10px);
}
.services .box::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 0;
  top: -3px;
  left: 50%;
  transition: var(--main-transition);
  background-color: var(--main-color);
  transform: translateX(-50%);
}
.services .box:hover::before {
  width: 100%;
}

.services .box > i {
  display: block;
  margin: 30px auto 20px;
  text-align: center;
  color: #d5d5d5;
}
.services .box > h3 {
  text-align: center;
  margin: 20px 0 40px;
  font-size: 25px;
  color: var(--main-color);
}
.services .box .info {
  padding: 15px;
  position: relative;
  background-color: #f9f9f9;
  text-align: right;
}
.services .box .info::before {
  content: "0" counter(services);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main-color);
  height: calc(100% + 0.4px);
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  padding-right: 30px;
}
.services .box .info::after {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  background-color: #d5d5d5;
  height: calc(100% + 0.6px);
  width: 70px;
  transform: skewX(-20deg);
}
.services .box .info a {
  text-decoration: none;
  color: var(--main-color);
}
/* End Services */
/* Start Skills  */
.our-skills {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  position: relative;
}
.our-skills .container {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .our-skills .container img {
    display: none;
  }
}
.our-skills .skills {
  flex: 1;
}
.our-skills .skill h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.our-skills .skill h3 span {
  font-size: 12px;
  border: 1px solid #ccc;
  padding: 3px 5px;
  border-radius: 4px;
  color: var(--main-color);
}
.our-skills .skill .the-progress {
  height: 30px;
  background-color: #eee;
  position: relative;
}
.our-skills .skill .the-progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--main-color);
}
/* End Skills  */
/* Start Work  */
.work {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  position: relative;
  background-color: var(--background-color);
}
.work .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work .container > img {
  max-width: 100%;
  margin-right: 100px;
}
@media (max-width: 992px) {
  .work .container > img {
    display: none;
  }
}
.work .step {
  background-color: #f6f5f5;
  border: 2px solid #fff;
  border-radius: 4px;
  text-align: center;
  padding: 30px;
  position: relative;
  display: flex;
  align-items: center;
}
.work .step:hover {
  background-color: transparent;
  transition: var(--main-transition);
}
@media (max-width: 992px) {
  .work .step {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.work .step::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transition: var(--main-transition);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.work .step:hover::before {
  animation: flashing 0.3s linear forwards;
  background-color: #ddd;
}
.work .step .info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.work .step .info p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.7;
}
.work .step img {
  width: 64px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .work .step img {
    margin: 0 0 20px;
  }
}
/* End Work  */
/* Start Events */
.events {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  position: relative;
}
.events .container,
.events .time {
  display: flex;
  justify-content: center;
  align-items: center;
}
.events .image img {
  max-width: 100%;
  margin-right: 100px;
}
@media (max-width: 992px) {
  .events .image img {
    display: none;
  }
}
.events .time .unit {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: fit-content;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-left: 15px;
}
.events .unit span:first-child {
  padding: 10px 0;
  font-size: 25px;
  font-weight: bold;
  color: var(--main-color);
}
.events .unit span:last-child {
  font-size: 10px;
  padding: 5px 10px;
  border-top: 1px solid #ddd;
}
/* For Prevents dots image from appeare above them */
.events .dots {
  z-index: -1;
}
.events .time,
.events .main-title,
.events .description {
  background-color: #fff;
  z-index: 10;
}
.events .info {
  margin-top: 25px;
  margin-bottom: 100px;
  text-align: center;
}
.events .info .main-title {
  font-size: 30px;
  margin-bottom: 20px;
}
.events .info .description {
  line-height: 2;
  font-size: 18px;
  color: var(--text-color);
}
.events .subscribe {
  background-color: #e6e6e6;
  margin: 0 auto;
  width: fit-content;
  padding: 30px 50px;
  border-radius: 100px;
}
.events .subscribe input[type="email"] {
  border: none;
  background-color: #f6f6f6;
  padding: 20px 30px;
  border-radius: 50px;
  margin-right: 20px;
  caret-color: var(--main-color);
}
.events .subscribe input[type="email"]:focus {
  outline: none;
}
.events .subscribe input[type="email"]::placeholder {
  transition: opacity var(--main-transition);
}
.events .subscribe input[type="email"]:focus::placeholder {
  opacity: 0;
}

.events .subscribe input[type="submit"] {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 50px;
  padding: 20px 30px;
  border: none;
}
.events .subscribe input[type="submit"]:hover {
  background-color: var(--main-color-alt);
}
@media (max-width: 776px) {
  .events .subscribe {
    padding: 25px 20px;
  }
  .events .subscribe form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .events .subscribe,
  .events .subscribe input[type="email"],
  .events .subscribe input[type="submit"] {
    border-radius: 0;
  }
  .events .subscribe input[type="email"],
  .events .subscribe input[type="submit"] {
    padding: 15px 20px;
    margin: 0;
  }
  .events .subscribe input[type="email"] {
    margin-bottom: 15px;
  }
}
/* End Events */
/* Start Pricing */
.pricing {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  background-color: var(--background-color);
  position: relative;
}
.pricing .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.pricing .box {
  background-color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px.4px 0 rgb(0 0 0 /12%);
  transition: var(--main-transition);
}
.pricing .box:hover {
  transform: translateY(-10px);
}
.pricing .box::before,
.pricing .box::after {
  content: "";
  position: absolute;
  height: 50%;
  width: 0;
  background-color: #f6f6f6;
  z-index: -1;
  transition: var(--main-transition);
}
.pricing .box::before {
  top: 0;
  left: 0;
}
.pricing .box::after {
  bottom: 0;
  right: 0;
}
.pricing .box:hover::before,
.pricing .box:hover::after {
  width: 100%;
}
.pricing .box h3 {
  font-size: 25px;
  padding: 40px;
}
.pricing .box img {
  width: 80px;
}
.pricing .box .label {
  position: absolute;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  width: 40px;
  color: #fff;
  background-color: var(--main-color);
  writing-mode: vertical-rl;
  top: 0;
  right: 20px;
}
.pricing .box .label::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  border-width: 20px;
  border-style: solid;
  border-color: var(--main-color) var(--main-color) transparent
    var(--main-color);
}
.pricing .box .price {
  margin: 30px;
}
.pricing .box .amount {
  display: block;
  font-size: 60px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 15px;
}
.pricing .box .time {
  color: var(--text-color);
}
.pricing .box ul {
  text-align: left;
}
.pricing .box li {
  padding: 30px 30px 30px 40px;
  border-top: 1px solid #eee;
  position: relative;
}
.pricing .box li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  color: var(--main-color);
  position: absolute;
  font-weight: 900;
  left: 18px;
}
.pricing .box a {
  display: block;
  width: fit-content;
  border-radius: 5px;
  text-decoration: none;
  padding: 30px 20px;
  font-size: 20px;
  margin: 10px auto 40px;
  color: var(--main-color);
  font-weight: bold;
  border: 2px solid var(--main-color);
  transition: var(--main-transition);
}
.pricing .box a:hover {
  background-color: var(--main-color);
  color: #fff;
}
/* End Pricing */
/* Start Videos */
.videos {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  position: relative;
}
.videos .container {
  display: flex;
}
.videos .links {
  width: 25%;
  border: 1px solid #eee;
}
.videos .links h3 {
  color: var(--main-color);
  font-weight: bold;
  background-color: #f6f6f6;
  padding: 25px 0 25px 15px;
  position: relative;
}
.videos .links h3::after {
  font-family: "Font Awesome 6 Free";
  content: "\f074";
  position: absolute;
  right: 15px;
}
.videos .links li {
  padding: 25px 0 25px 15px;
  border-top: 1px solid #eee;
  background-color: #fff;
}
.videos .links li a {
  text-decoration: none;
  color: #000;
}
.videos .links li span {
  display: block;
  color: var(--text-color);
  margin-top: 10px;
}
.videos .image {
  height: auto;
  display: flex;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border: 1px solid #eee;
  background-color: var(--background-color);
}
.videos .image img {
  width: 100%;
}
.videos .image p {
  width: 100%;
  margin: 10px 0;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
}
@media (max-width: 992px) {
  .videos .container {
    flex-wrap: wrap;
  }
  .videos .links {
    width: 100%;
  }
  .videos .image {
    width: 100%;
  }
}
/* End Videos */
/* Start Stats */
.stats {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  background-image: url("../assets/stats.WebP");
  background-size: cover;
  min-height: 300px;
  position: relative;
  z-index: 1;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(255 255 255 / 95%);
  z-index: -1;
}
.stats h1 {
  text-align: center;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.stats .box {
  text-align: center;
  padding: 50px;
  background-color: #fff;
  z-index: 100;
  position: relative;
}
.stats .box::before,
.stats .box::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 0;
  background-color: var(--main-color);
  transition: calc(var(--main-transition) * 2);
}
.stats .box::before {
  left: 0;
  bottom: 0;
}
.stats .box::after {
  right: 0;
  top: 0;
}
.stats .box:hover::before,
.stats .box:hover::after {
  height: 100%;
}
.stats .box span {
  display: block;
  padding: 20px;
  font-size: 40px;
  font-weight: bold;
}
.stats .box p {
  font-weight: bold;
  font-size: 20px;
  color: var(--main-color);
}
/* End Stats */
/* Start Request */
.request {
  display: flex;
  min-height: 100vh;
  flex-wrap: wrap;
  padding-bottom: var(--padding-section);
}
.request .image {
  padding-top: var(--padding-section);
  background-image: url(../assets/discount-background1.WebP);
  background-size: cover;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 50%;
  z-index: 1;
  position: relative;
  animation: chane-background 10s linear infinite;
}
.request .image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(23 135 224 / 97%);
  z-index: -1;
}

.request .content {
  text-align: center;
  padding: 0 20px;
}
.request .content h2 {
  margin-bottom: 20px;
  font-size: 35px;
  letter-spacing: -2px;
}
.request .content p {
  line-height: 1.6;
  max-width: 500px;
  font-size: 18px;
}
.request .content img {
  width: 300px;
  max-width: 100%;
}
@media (max-width: 992px) {
  .request .image {
    flex-basis: 100%;
  }
}
.request .form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 50%;
}
@media (max-width: 992px) {
  .request .form {
    padding-top: 30px;
    flex-basis: 100%;
  }
  .request .form h2 {
    padding-bottom: 30px;
  }
}
.request .form form .input {
  display: block;
  width: 100%;
  padding: 15px;
  border: none;
  margin-bottom: 25px;
  outline: none;
  caret-color: var(--main-color);
  border-bottom: 1px solid #bbb;
  background-color: #f9f9f9;
  position: relative;
}
.request .form form .input:focus {
  border-color: var(--main-color);
}
.request .form form textarea.input {
  height: 200px;
  resize: none;
}
.request .form form input[type="submit"] {
  display: block;
  background-color: var(--main-color);
  padding: 15px;
  color: #fff;
  width: 100%;
  font-weight: bold;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: var(--main-transition);
}
.request .form form input[type="submit"]:focus {
  background-color: var(--main-color-alt);
}
/* End Request */
/* Start Footer */
.footer {
  background-color: #191919;
  padding: 70px 0 0;
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(1fr, 250px));
  gap: 40px;
}
.footer .box h3 {
  color: #fff;
  font-size: 50px;
  margin: 0 0 20px;
}
@media (max-width: 768px) {
  .footer .box h3 {
    text-align: center;
  }
}
.footer .box .social {
  display: flex;
}
.footer .box .social li {
  margin-right: 10px;
}
.footer .box .social li a {
  background-color: #313131;
  color: var(--footer-elements);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  transition: var(--main-transition);
}
.footer .box .social .facebook:hover {
  background-color: #1877f2;
}
.footer .box .social .twitter:hover {
  background-color: #1da1f2;
}
.footer .box .social .youtube:hover {
  background-color: #ff0000;
}
.footer .box .text {
  line-height: 2;
  padding: 10px 0;
  color: var(--footer-elements);
}
@media (max-width: 768px) {
  .footer .box .social {
    justify-content: center;
  }
  .footer .box .text {
    text-align: center;
  }
}
.footer .box .links li {
  padding: 15px;
  transition: var(--main-transition);
}
.footer .box .links li:not(:last-child) {
  border-bottom: 1px solid #444;
}
.footer .box .links li:hover {
  padding-left: 10px;
}
.footer .box .links li:hover a {
  color: #fff;
}
.footer .box .links li a {
  color: var(--footer-elements);
  transition: var(--main-transition);
}
.footer .box .links li a::before {
  font-family: "Font Awesome 6 Free";
  content: "\F101";
  font-weight: 900;
  margin-right: 10px;
  color: var(--main-color);
}
.footer .box .line {
  display: flex;
  align-items: center;
  color: var(--footer-elements);
  margin-bottom: 30px;
}
.footer .box .line i {
  font-size: 20px;
  color: var(--main-color);
  margin-right: 10px;
}
.footer .box .line .info {
  line-height: 1.7;
  flex: 1;
}
@media (max-width: 768px) {
  .footer .box .line {
    flex-direction: column;
  }
  .footer .box .line i {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer .box .line .info {
    text-align: center;
  }
}
.footer .box .line .info span {
  display: block;
}
.footer .footer-gallery {
  text-align: center;
}
.footer .footer-gallery img {
  width: 78px;
  border: 3px solid white;
  margin: 2px;
}
.footer .copyright {
  padding: 25px 0;
  text-align: center;
  color: #ffffff;
  margin: 50px 0 0;
  border-top: 1px solid #444;
}
.footer .copyright p:first-child {
  margin-bottom: 5px;
}
.footer .copyright a {
  text-decoration: none;
  color: white;
}
.footer .copyright a:hover {
  color: var(--main-color);
}
/* End Footer */
/* Start animations */
@keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: 25px;
  }
}
@-webkit-keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: 100%;
  }
}
@-moz-keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: 100%;
  }
}
@-o-keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: 100%;
  }
}

@keyframes bouncing {
  0%,
  10%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  60% {
    transform: translateY(15px);
  }
}
@keyframes left-and-right {
  100% {
    transform: translateX(10px);
  }
}
@keyframes move-right {
  50% {
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
  }
  100% {
    border-radius: 0;
    width: 50%;
    height: 100%;
    left: 0;
  }
}

@keyframes move-left {
  50% {
    right: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
  }
  100% {
    right: 0;
    border-radius: 0;
    width: 50%;
    height: 100%;
  }
}
@keyframes flashing {
  40% {
    width: 40%;
    height: 40%;
  }
  100% {
    opacity: 1;
    width: 100%;
    height: 100%;
  }
}
@keyframes chane-background {
  0%,
  100% {
    background-image: url(../assets/discount-background1.WebP);
  }
  50% {
    background-image: url(../assets/discount-background2.WebP);
  }
}
/* End Animation */
