/* Start Global Rules */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  /* --main-color: #2196f3; */
  --main-color: #1842ca;
  /* --main-color-alt: #1787e0; */
  --main-color-alt: #5fc7af;
  --main-transition: 0.3s;
  --main-padding-top: 100px;
  --main-padding-bottom: 100px;
  --section-background: #ececec;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Cairo", sans-serif;
  /* font-family: sans-serif; */
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.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;
  }
}
.main-title {
  text-transform: uppercase;
  margin: 0 auto 80px;
  border: 2px solid black;
  padding: 10px 20px;
  font-size: 30px;
  width: fit-content;
  position: relative;
  z-index: 1;
  transition: var(--main-transition);
}
.main-title::before,
.main-title::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--main-color);
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.main-title::before {
  left: -30px;
}
.main-title::after {
  right: -30px;
}
.main-title:hover::before {
  z-index: -1;
  animation: left-move 0.5s linear forwards;
}
.main-title:hover::after {
  z-index: -1;
  animation: right-move 0.5s linear forwards;
}
.main-title:hover {
  color: white;
  border: 2px solid white;
  transition-delay: 0.5s;
}
.spikes {
  position: relative;
}
.spikes::after {
  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;
}
.dots {
  background-image: url("../imgs/dots.png");
  height: 186px;
  width: 204px;
  background-repeat: no-repeat;
  position: absolute;
}
.dots-up {
  top: 200px;
  right: 0;
}
.dots-down {
  bottom: 200px;
  left: 0;
}
/* End Global Rules */

/* Start Header */
.header {
  background-color: white;
  position: relative;
  -webkit-box-shadow: 0 0 10px #ddd;
  -moz-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.header .logo img {
  width: 180px;
}
@media (max-width: 767px) {
  .header .logo {
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
  }
}
.header .main-nav {
  display: flex;
}
@media (max-width: 767px) {
  .header .main-nav {
    margin: auto;
  }
}
.header .main-nav > li:hover .mega-menu {
  opacity: 1;
  z-index: 100;
  top: calc(100% + 1px);
}
.header .main-nav > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  position: relative;
  color: black;
  padding: 0 20px;
  overflow: hidden;
  font-size: 14px;
  transition: var(--main-transition);
  text-align: center;
}
@media (max-width: 767px) {
  .header .main-nav > li > a {
    padding: 10px;
    font-size: 12px;
    height: 40px;
  }
}
.header .main-nav > li > a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--main-color);
  top: 0;
  left: -100%;
  transition: var(--main-transition);
}
.header .main-nav > li > a:hover {
  color: var(--main-color);
  background-color: #fafafa;
}
.header .main-nav > li > a:hover::before {
  left: 0;
}
/* End Header */

/* Start Landing */
.landing {
  position: relative;
  background-image: url("../imgs/landsceb\ background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.landing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
/* .landing::before {
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  height: 100%;
  background-color: #ececec;
  z-index: -1;
  transform: skewY(-6deg);
  transform-origin: top left;
} */

.landing .container {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding-bottom: 120px;
  z-index: 900;
}
.landing .text {
  flex: 1;
  position: relative;
  z-index: 999;
}
@media (max-width: 991px) {
  .landing .text {
    text-align: center;
  }
}
.landing .text h1 {
  font-size: 35px;
  margin: 0;
  letter-spacing: -2px;
  margin-bottom: 30px;
  margin-top: 30px;
  color: white;
}
@media (max-width: 767px) {
  .landing .text h1 {
    font-size: 24px;
  }
}
.landing .text p {
  font-size: 20px;
  line-height: 1.7;
  margin: 5px 0 0;
  /* color: #1842ca; */
  color: white;
  max-width: 500px;
  margin-bottom: 20px;
}
.landing .text p span {
  font-weight: bolder;
  color: #5fc7af;
}
@media (max-width: 991px) {
  .landing .text p {
    margin: 10px auto;
  }
}
@media (max-width: 767px) {
  .landing .text p {
    font-size: 24px;
  }
}
.landing .image img {
  position: relative;
  width: 500px;
  margin-top: 75px;
  animation: up-and-down 5s linear infinite;
  z-index: 999;
}
@media (max-width: 991px) {
  .landing .image {
    display: none;
  }
}
.landing .go-down {
  color: var(--main-color-alt);
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--main-transition);
  z-index: 999;
}
@media (max-width: 768px) {
  .landing .go-down {
    bottom: 90px;
  }
}
.landing .go-down:hover {
  color: var(--main-color-alt);
}
.landing .go-down i {
  animation: bouncing 1.5s infinite;
}
/* End Landing */

/* Start Articles */
.articles {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.articles .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}

.articles .box {
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--main-transition), box-shadow var(--main-transition);
}
.articles .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}
.articles .box img {
  width: 100%;
  max-width: 100%;
}
.articles .box .content {
  padding: 20px;
}
.articles .box .content h3 {
  margin: 0;
}
.articles .box .content p {
  margin: 10px 0 0;
  line-height: 1.5;
  color: #777;
}
.articles .box .info {
  padding: 20px;
  border-top: 1px solid #e6e6e7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.articles .box .info a {
  color: var(--main-color);
  font-weight: bold;
}
.articles .box .info i {
  color: var(--main-color);
}
.articles .box:hover .info i {
  animation: moving-arrow 0.6s linear infinite;
}
/* End Articles */

/* Start Selected Past Projects */

.gallery {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  background-color: white;
}

/* .gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: center;
}

@media (max-width: 768px) {
  .gallery .container {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
  }
}
@media (max-width: 992px) {
  .gallery .container {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
  }
}
.gallery .box {
  padding: 10px;
}
.gallery .box .image {
  position: relative;
  height: 100%;
  width: 100%;
}
.gallery .box .image::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;
}
.gallery .box .image:hover::before {
  animation: flashing 0.7s;
}
.gallery .box img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  transition: var(--main-transition);
}
.gallery .box .image:hover img {
  transform: scale(1.1);
} */

.gallery .wrapper {
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  position: relative;
  height: 100px;
  margin-top: 5rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}

.gallery .item {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  position: absolute;
  left: max(calc(200px * 22), 100%);
  animation-name: scrollLeft;
  animation-duration: 90s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media (max-width: 767px) {
  .gallery .item {
    left: max(calc(100px * 25), 100%);
  }
}
.gallery .item img {
  width: 100px;
  height: 100px;
}

.gallery {
  .item1 {
    animation-delay: calc(90s / 25 * (25 - 1) * -1);
  }

  .item2 {
    animation-delay: calc(90s / 25 * (25 - 2) * -1);
  }

  .item3 {
    animation-delay: calc(90s / 22 * (22 - 3) * -1);
  }

  .item4 {
    animation-delay: calc(90s / 22 * (22 - 4) * -1);
  }

  .item5 {
    animation-delay: calc(90s / 22 * (22 - 5) * -1);
  }

  .item6 {
    animation-delay: calc(90s / 22 * (22 - 6) * -1);
  }

  .item7 {
    animation-delay: calc(90s / 22 * (22 - 7) * -1);
  }

  .item8 {
    animation-delay: calc(90s / 22 * (22 - 8) * -1);
  }
  .item9 {
    animation-delay: calc(90s / 22 * (22 - 9) * -1);
  }
  .item10 {
    animation-delay: calc(90s / 22 * (22 - 10) * -1);
  }
  .item11 {
    animation-delay: calc(90s / 22 * (22 - 11) * -1);
  }
  .item12 {
    animation-delay: calc(90s / 22 * (22 - 12) * -1);
  }
  .item13 {
    animation-delay: calc(90s / 22 * (22 - 13) * -1);
  }
  .item14 {
    animation-delay: calc(90s / 22 * (22 - 14) * -1);
  }
  .item15 {
    animation-delay: calc(90s / 22 * (22 - 15) * -1);
  }
  .item16 {
    animation-delay: calc(90s / 22 * (22 - 16) * -1);
  }
  .item17 {
    animation-delay: calc(90s / 22 * (22 - 17) * -1);
  }
  .item18 {
    animation-delay: calc(90s / 22 * (22 - 18) * -1);
  }
  .item19 {
    animation-delay: calc(90s / 22 * (22 - 19) * -1);
  }
  .item20 {
    animation-delay: calc(90s / 22 * (22 - 20) * -1);
  }
  .item21 {
    animation-delay: calc(90s / 22 * (22 - 21) * -1);
  }
  .item22 {
    animation-delay: calc(90s / 22 * (22 - 22) * -1);
  }
}

/* End Selected Past Projects */

/* Start Features */
.features {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  background-color: var(--section-background);
}
.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.features .container > div {
  background-color: white;
}
.features .box {
  text-align: center;
  border: 1px solid #ccc;
}
.features .box .img-holder {
  position: relative;
  overflow: hidden;
}
.features .box .img-holder::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 100%;
}

.features .box .img-holder::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 0px 0px 170px 500px;
  border-color: transparent transparent white transparent;
  transition: var(--main-transition);
}

.features .box .img-holder img {
  max-width: 100%;
}

.features .box:hover .img-holder::after {
  border-width: 170px 500px 170px 0;
}

.features .box h2 {
  position: relative;
  font-size: 40px;
  margin: auto;
  width: fit-content;
}
.features .box h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 15px;
  height: 5px;
  width: calc(100% - 30px);
}
.features .box p {
  line-height: 2;
  font-size: 20px;
  margin: 30px 0;
  padding: 25px;
  color: #777;
}
.features .box a {
  display: block;
  border: 3px solid transparent;
  width: fit-content;
  margin: 0 auto 30px;
  font-weight: bold;
  font-size: 22px;
  padding: 10px 30px;
  border-radius: 6px;
  transition: var(--main-transition);
}
.features .quality .img-holder::before {
  background-color: rgb(244 64 54 / 60%);
}
.features .quality h2::after {
  background-color: #f44036;
}
.features .quality a {
  color: #f44036;
  border-color: #f44036;
  background: linear-gradient(to right, #f44036 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}
.features .time .img-holder::before {
  background-color: rgb(0 150 136 / 60%);
}
.features .time h2::after {
  background-color: #009688;
}
.features .time a {
  color: #009688;
  border-color: #009688;
  background: linear-gradient(to right, #009688 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}
.features .passion .img-holder::before {
  background-color: rgb(3 169 244 / 60%);
}
.features .passion h2::after {
  background-color: #03a9f4;
}
.features .passion a {
  color: #03a9f4;
  border-color: #03a9f4;
  background: linear-gradient(to right, #03a9f4 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}
.features .box:hover a {
  background-position: left bottom;
  color: white;
}
/* End Features */

/* Start we work with */
.team {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
/* .team .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  justify-items: center;
  align-items: center;
}

@media (max-width: 992px) {
  .team .container {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {
  .team .container {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }
}
.team .container .box img {
  width: 100px;
  color: red;
  height: 100px;
  transition: var(--main-transition);
}
@media (max-width: 992px) {
  .team .container .box img {
    width: 80px;
    height: 80px;
    gap: 10px;
  }
} */

.team .wrapper {
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  position: relative;
  height: 100px;
  margin-top: 5rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
}

@keyframes scrollRight {
  to {
    right: -200px;
  }
}

.team .item {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  position: absolute;
  right: max(calc(200px * 26), 100%);
  animation-name: scrollRight;
  animation-duration: 90s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media (max-width: 767px) {
  .team .item {
    right: max(calc(100px * 26), 100%);
  }
}
.team .item img {
  width: 100px;
  height: 100px;
}

.team .item1 {
  animation-delay: calc(90s / 26 * (26 - 1) * -1);
}

.team .item2 {
  animation-delay: calc(90s / 26 * (26 - 2) * -1);
}

.team .item3 {
  animation-delay: calc(90s / 26 * (26 - 3) * -1);
}

.team .item4 {
  animation-delay: calc(90s / 26 * (26 - 4) * -1);
}

.team .item5 {
  animation-delay: calc(90s / 26 * (26 - 5) * -1);
}

.team .item6 {
  animation-delay: calc(90s / 26 * (26 - 6) * -1);
}

.team .item7 {
  animation-delay: calc(90s / 26 * (26 - 7) * -1);
}
.team .item8 {
  animation-delay: calc(90s / 26 * (26 - 8) * -1);
}
.team .item9 {
  animation-delay: calc(90s / 26 * (26 - 9) * -1);
}
.team .item10 {
  animation-delay: calc(90s / 26 * (26 - 10) * -1);
}
.team .item11 {
  animation-delay: calc(90s / 26 * (26 - 11) * -1);
}
.team .item12 {
  animation-delay: calc(90s / 26 * (26 - 12) * -1);
}
.team .item13 {
  animation-delay: calc(90s / 26 * (26 - 13) * -1);
}
.team .item14 {
  animation-delay: calc(90s / 26 * (26 - 14) * -1);
}
.team .item15 {
  animation-delay: calc(90s / 26 * (26 - 15) * -1);
}
.team .item16 {
  animation-delay: calc(90s / 26 * (26 - 16) * -1);
}
.team .item17 {
  animation-delay: calc(90s / 26 * (26 - 17) * -1);
}
.team .item18 {
  animation-delay: calc(90s / 26 * (26 - 18) * -1);
}
.team .item19 {
  animation-delay: calc(90s / 26 * (26 - 19) * -1);
}
.team .item20 {
  animation-delay: calc(90s / 26 * (26 - 20) * -1);
}
.team .item21 {
  animation-delay: calc(90s / 26 * (26 - 21) * -1);
}
.team .item22 {
  animation-delay: calc(90s / 26 * (26 - 22) * -1);
}
.team .item23 {
  animation-delay: calc(90s / 26 * (26 - 23) * -1);
}
.team .item24 {
  animation-delay: calc(90s / 26 * (26 - 24) * -1);
}
.team .item25 {
  animation-delay: calc(90s / 26 * (26 - 25) * -1);
}
.team .item26 {
  animation-delay: calc(90s / 26 * (26 - 26) * -1);
}
/* End we work with */

/* Start Services */
.services {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  background-color: var(--section-background);
}

@media (max-width: 767px) {
  .services .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .services .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
  }
}

@media (min-width: 990px) {
  .services .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
  }
}
.services .box {
  background-color: white;
  box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
  counter-increment: services;
  transition: var(--main-transition);
  position: relative;
  height: 200px;
  overflow: hidden;
}
.services .box::before {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  top: -3px;
  background-color: var(--main-color-alt);
  position: absolute;
  width: 0;
  transition: var(--main-transition);
}
.services .box:hover {
  transform: translateY(-10px);
}
.services .box:hover::before {
  width: 100%;
}
.services .box img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.services .box > i {
  margin: 30px auto 20px;
  display: block;
  text-align: center;
  color: #d5d5d5;
}
.services .box > h3 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 20px 0 40px;
  font-size: 14px;
  color: var(--main-color);
}
@media (max-width: 767px) {
  .services .box > h3 {
    font-size: 14px;
  }
}
.services .box .info {
  padding: 38px;
  position: relative;
  background-color: rgba(0, 0, 0, 0.644);
  text-align: center;
  bottom: -65%;
  transition: 0.3s;
}
.services .box .info a {
  color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  color: white;
  font-size: 15px;
}
/* End Services */

/* start how it works */
.work {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: var(--section-background);
  position: relative;
}
.work .container {
  display: flex;
  align-items: center;
  gap: 9%;
}
.work .container img {
  width: 40%;
  position: relative;
  animation: up-and-down 5s linear infinite;
}
.work .container .text {
  width: 40%;
}
.work .container .text h1 {
  color: var(--000000, #000);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
}
.work .container .text p {
  color: var(--main-color);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7;
}
@media (max-width: 992px) {
  .work .container img {
    width: 70%;
  }
  .work .container {
    flex-direction: column;
  }
  .work .container .text {
    width: 90%;
  }
  .work .container .text h1 {
    font-size: 30px;
    font-weight: bolder;
    line-height: 50px;
  }
  .work .container .text p {
    font-weight: normal;
  }
  .work .container > img {
    margin-bottom: 30px;
    max-width: 100%;
  }
}
/* Start Footer */
.footer {
  background-color: #888888;
  padding: 70px 0 0;
  color: black;
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .footer .container {
    flex-direction: column;
  }
}
.footer .box img {
  width: 250px;
  height: 100px;
  color: white;
  font-size: 50px;
  margin: 0 0 20px;
}
.footer .box .social {
  display: flex;
}
@media (max-width: 767px) {
  .footer .box .social {
    justify-content: center;
  }
}
.footer .box .social li {
  margin-right: 10px;
}
.footer .box .social li a {
  background-color: #313131;
  color: #b9b9b9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  transition: var(--main-transition);
}
.footer .box .social .facebook {
  background-color: #002fff;
}
.footer .box .social .linkedin {
  background-color: #1da1f2;
}
.footer .box .social .instagram {
  background-image: linear-gradient(45deg, #df5fff, #ff0000);
}
.footer .box .social .tiktok {
  background-color: #1d1d1d;
}
.footer .box .social .snapchat {
  background-color: rgb(255, 255, 79);
}
.footer .box .text {
  line-height: 2;
  color: white;
}
.footer .box .links li {
  padding: 15px 0;
  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: white;
}
.footer .box .links li a {
  color: #b9b9b9;
  transition: var(--main-transition);
}
.footer .box .links li a::before {
  font-family: "Font Awesome 5 Free";
  content: "\F101";
  font-weight: 900;
  margin-right: 10px;
  color: var(--main-color-alt);
}
.footer .box .line {
  display: flex;
  align-items: center;
  color: white;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer .box .line {
    flex-direction: column;
  }
}
.footer .box .line i {
  font-size: 25px;
  color: var(--main-color-alt);
  margin-right: 10px;
}
@media (max-width: 767px) {
  .footer .box .line i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.footer .box .line .info {
  line-height: 1.7;
  flex: 1;
}
.footer .box .line .info span {
  display: block;
}
.footer .footer-gallery img {
  width: 150px;
  /* height: 150px; */
}
.footer .copyright {
  padding: 25px 0;
  text-align: center;
  color: white;
  margin: 50px 0 0;
  border-top: 1px solid #444;
}
/* End Footer */

/* Start Animation */
@keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: -50px;
  }
}
@keyframes bouncing {
  0%,
  10%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  60% {
    transform: translateY(-15px);
  }
}
@keyframes left-move {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    left: 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%;
  }
}
@keyframes moving-arrow {
  100% {
    transform: translateX(10px);
  }
}
@keyframes flashing {
  0%,
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 200%;
    height: 200%;
  }
}
@keyframes change-background {
  0%,
  100% {
    background-image: url("../imgs/discount-background1.jpg");
  }
  50% {
    background-image: url("../imgs/discount-background2.jpg");
  }
}
/* End Animation */
