body {
  font-family: "Cairo", sans-serif;
  line-height: 1.7;
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --main-colorHover: #f29e20;
  --main-colorHover2: #4f80dd;
  --main-colorHover3: #04aa6d;
  --main-colorHover4: #e34949;
  --main-colorHover5: #621de2c9;
  --span-color: rgba(0, 0, 0, 0.527);
}
.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;
  }
}

/* Start Loading */
.loading-container {
  background-color: #212121;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 1;
}
.loading-container.hide {
  opacity: 0;
  height: 0;
}
.loading-bar {
  transition: 0.3s;
  opacity: 1;
  position: relative;
  width: 110px;
  height: 110px;
  background: transparent;
  border-radius: 50%;
  text-align: center;
  line-height: 111px;
  font-family: sans-serif;
  font-size: 15px;
  color: var(--main-colorHover);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--main-colorHover);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.loading-bar.hide {
  opacity: 0;
}
.loading-bar:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 5px solid var(--main-colorHover);
  border-right: 5px solid var(--main-colorHover);
  border-radius: 50%;
  animation: animateC 2s linear infinite;
}

@keyframes animateC {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate {
  0% {
    transform: rotate(45deg);
  }

  100% {
    transform: rotate(405deg);
  }
}

/* end Loading */

/* start settings box */

.settings-box {
  color: black;
  position: fixed;
  left: -200px;
  top: 0;
  background-color: white;
  width: 200px;
  z-index: 1000;
  min-height: 100vh;
  transition: 0.3s;
  border: 2px solid #ddd;
}
.open {
  left: 0;
}
.settings-box .icon-box {
  background-color: #eeeeeea4;
  position: absolute;
  right: -35px;
  top: 20%;
  text-align: center;
  z-index: 4;
  transition: 0.3s;
  cursor: pointer;
}
.settings-box .icon-box:hover {
  background-color: white;
}
.settings-box i {
  padding: 10px;
}

.settings-box .option-box {
  background-color: #ddd;
  margin: 7px;
  text-align: center;
  padding: 10px 0;
}
.settings-container h4 {
  font-size: 18px;
}
.settings-box .colors {
  padding-left: 0;
  display: flex;
  justify-content: center;
}
.settings-box .colors li {
  background-color: #f29e20;
  margin-right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}
.settings-box .colors li:nth-of-type(2) {
  background-color: var(--main-colorHover2);
}
.settings-box .colors li:nth-of-type(3) {
  background-color: var(--main-colorHover3);
}
.settings-box .colors li:nth-of-type(4) {
  background-color: var(--main-colorHover4);
}
.settings-box .colors li:nth-of-type(5) {
  background-color: var(--main-colorHover5);
}
.settings-box li.active {
  opacity: 1;
  transform: translateY(-2px);
  border: 2px solid white;
}

.settings-box .option-box button {
  background-color: var(--main-colorHover);
  border: none;
  color: white;
  font-weight: bold;
  padding: 5px 15px;
  margin-right: 10px;
  border-radius: 5px;
  opacity: 0.5;
  cursor: pointer;
}
.settings-box .option-box button.active {
  opacity: 1;
}

.settings-box .reset {
  text-align: center;
}
.settings-box .reset button {
  display: block;
  padding: 5px 15px;
  margin: auto;
  border: none;
  background-color: var(--main-colorHover);
  color: white;
  font-weight: bold;
  border-radius: 5px;
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}
.settings-box .reset button:hover {
  opacity: 1;
}

/* end settings box */

/* Start Nav Bulllets */
.nav-bullets {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 50px;
}
.nav-bullets .bullet {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--main-colorHover);
  transform: translateY(-50%);
  cursor: pointer;
  position: relative;
  margin: 10px auto;
  transition: 0.3s;
}
.nav-bullets .bullet:hover {
  background-color: var(--main-colorHover);
}
.nav-bullets .bullet:hover .tooltip {
  opacity: 1;
}

.nav-bullets .tooltip {
  opacity: 0;
  width: 77px;
  background-color: var(--main-colorHover);
  padding: 2px 10px;
  font-size: 12px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  cursor: default;
  pointer-events: none;
  transition: 0.3s;
  white-space: nowrap;
}
.nav-bullets .tooltip::before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  right: -23px;
  border: 12px solid white;
  border-color: transparent transparent transparent var(--main-colorHover);
}

/* End Nav Bulllets */

/* Start Landing Page */
.landing-page {
  color: white;
  min-height: 100vh;
  background-image: url(../imgs/first.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.5s;
}

.landing-page .overlay {
  background-color: rgb(0, 0, 0, 0.7);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.header-area {
  position: relative;
  padding: 20px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
.header-area .links {
  display: block;
}
@media (min-width: 768px) {
  .header-area .links {
    display: flex;
  }
}

.header-area li {
  list-style: none;
  padding: 0 10px;
}
.header-area a {
  padding: 10px 0;
  text-decoration: none;
  color: white;
  transition: 0.3s;
  position: relative;
}
.header-area a:hover,
.header-area .active {
  color: var(--main-colorHover);
}

.header-area a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-colorHover);
  transition: width 0.3s ease-in-out;
}

.header-area a:hover::after,
.header-area .active::after {
  width: 100%;
}

.toggle-menu {
  display: none;
  padding: 0 20px;
  padding-right: 0;
}
.toggle-menu span {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  background-color: white;
}

/*phone*/

@media (max-width: 767px) {
  .toggle-menu {
    display: block;
  }
  .header-area .links {
    display: none;
    height: 0;
  }
  .header-area .links.open {
    display: block;
    height: 330px;
    transition: 0.3s;
    background-color: white;
    position: absolute;
    top: 75px;
    right: 0;
    padding: 0;
    margin: 0 10px;
    border-radius: 5px;
  }
  .header-area .links.open::after {
    content: "";
    position: absolute;
    right: 5px;
    top: -33px;
    border: 20px solid white;
    border-color: transparent transparent white transparent;
  }
  .header-area .links.open li {
    padding: 0;
  }
  .header-area .links.open li a {
    padding-left: 20px;
    color: var(--main-colorHover);
    font-weight: bold;
    display: block;
  }
  .landing-page .intro-text h1 {
    font-size: 25px;
  }
  .landing-page .intro-text p {
    font-size: 13px;
  }
}

.landing-page .intro-text {
  width: 50%;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 767px) {
  .landing-page .intro-text {
    width: 90%;
  }
}
.intro-text span {
  color: var(--main-colorHover);
  transition: 0.3s;
}

/* End Landing Page */

/* Start About Us Page */

.about-us .content {
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-us .content {
    flex-direction: column;
    text-align: center;
  }
}

.about-us {
  position: relative;
  overflow: hidden;
}
.about-us .content div {
  flex-basis: 50%;
}
.about-us .description {
  transform: translateX(-150%);
  animation-name: desc;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-play-state: paused;
  opacity: 0;
}
@keyframes desc {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-us .description h1 {
  color: var(--main-colorHover);
}
.about-us .img {
  text-align: center;
  transform: translateX(150%);
  animation-name: img;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-play-state: paused;
  opacity: 0;
}
@keyframes img {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-us .img img {
  width: 250px;
}

/* End About Us Page */

/* Start Our Skills */

.our-skills {
  background-color: #ddd;
}
.our-skills .content {
  padding: 50px 20px;
}
.our-skills h1 {
  text-align: center;
  color: var(--main-colorHover);
}
.our-skills .content .skill-box {
  background-color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  margin-bottom: 10px;
  font-weight: bold;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .our-skills .content .skill-box {
    flex-direction: column;
    text-align: center;
  }
}
.our-skills .skill-progress {
  background-color: #ddd;
  width: 85%;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .our-skills .skill-progress {
    width: 100%;
    height: 20px;
  }
}

.our-skills .skill-progress span {
  display: block;
  background-color: var(--main-colorHover);
  width: 0%;
  height: 100%;
  border-radius: 10px;
  animation-name: HTML;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-play-state: paused;
}
.our-skills .skill-box:nth-of-type(2) span {
  animation-name: CSS;
}
.our-skills .skill-box:nth-of-type(3) span {
  animation-name: JS;
}

@keyframes HTML {
  to {
    width: 80%;
  }
}
@keyframes CSS {
  to {
    width: 60%;
  }
}
@keyframes JS {
  to {
    width: 70%;
  }
}

/* End Our Skills */

/* Start Gallery */
.gallery {
  transition: 0.3s;
  opacity: 0;
}
.gallery .content {
  padding: 50px 20px;
}
.gallery .content h1 {
  text-align: center;
  color: var(--main-colorHover);
}
.gallery .imgs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery .imgs div {
  flex-basis: 17%;
  padding: 3px;
  background-color: #f6f6f6;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .gallery .imgs div {
    flex-basis: 40%;
  }
}

.gallery .imgs div:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 5px #dddddd;
}

.gallery .imgs img {
  width: 100%;
  height: 100%;
}

.popup-overlay {
  position: fixed;
  background-color: rgb(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}
.popup-box {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  padding: 20px;
  background-color: #f6f6f6;
  border: 1px solid #ccc;
}
.popup-box h2 {
  color: var(--main-colorHover);
  text-align: center;
  padding-bottom: 20px;
}
.popup-box .close-button {
  background-color: var(--main-colorHover);
  padding: 1px 8px;
  font-weight: bold;
  color: white;
  position: absolute;
  top: -1px;
  right: -1px;
  cursor: pointer;
  opacity: 0.8;
}
.popup-box .close-button:hover {
  opacity: 1;
}

.popup-box img {
  width: 100%;
  height: 100%;
}
.gallery .our-designs {
  position: relative;
  height: 500px;
  margin-bottom: 50px;
}
.gallery .our-designs .box {
  position: relative;
  height: 90%;
  width: 60%;
  margin: auto;
}
.gallery .our-designs img {
  position: absolute;
  width: 100%;
  height: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 10px solid #ddd;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.gallery .our-designs img.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.gallery button {
  background-color: var(--main-colorHover);
  padding: 10px;
  border-radius: 10px;
  font-size: 20px;
  color: white;
  font-weight: bold;
  border: none;
  position: absolute;
  cursor: pointer;
}
.gallery button:nth-of-type(1) {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
}
.gallery button:nth-of-type(2) {
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
}
.gallery .bullets {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
}
.our-designs .bullets span {
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 10px;
  border: 2px solid var(--main-colorHover);
  font-size: 12px;
  font-weight: bold;
  transition: 0.3s;
}
.our-designs .bullets span.active {
  background-color: var(--main-colorHover);
  color: white;
}

/* End Gallery */

/* Start Timeline */
.timeline {
  background-color: #ddd;
  overflow: hidden;
}
.timeline .content {
  padding: 50px 20px;
  padding-bottom: 0;
  display: flex;
  min-height: 630px;
  opacity: 0;
  animation-name: opacity;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-play-state: paused;
}

@media (max-width: 767px) {
  .timeline .content {
    min-height: 800px;
    padding: 0;
  }
}
@keyframes opacity {
  to {
    opacity: 1;
  }
}
.timeline .content div {
  padding: 15px;
  background-color: white;
  position: relative;
  transition: 1s;
}
.timeline .content div:nth-of-type(1) {
  transform: translateY(70px);
  transform: translateX(-420px);
  height: fit-content;
  animation-name: move;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-play-state: paused;
}
@keyframes move {
  to {
    transform: translate(0, 70px);
  }
}
.timeline .content div:nth-of-type(3) {
  transform: translate(420px, 250px);
  height: fit-content;
  animation-name: move-2;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-play-state: paused;
}
@keyframes move-2 {
  to {
    transform: translate(0, 360px);
  }
}
.timeline .content div:nth-of-type(3)::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: -40px;
  top: 20px;
  background-color: white;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 4px solid var(--main-colorHover);
}
.timeline .content div:nth-of-type(3)::before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 21px;
  left: -30px;
  border: 15px solid white;
  border-color: transparent white transparent transparent;
}

.timeline .content div h2 {
  color: var(--main-colorHover);
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .timeline .content div h2 {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .timeline .content div p {
    font-size: 12px;
  }
}
.timeline .content .year {
  background-color: #ddd;
  text-align: center;
  position: relative;
}
.timeline .content .year h3 {
  color: white;
  background-color: var(--main-colorHover);
  padding: 2px 5px;
  position: relative;
  z-index: 3;
}
.timeline .content .year h3::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 50%;
  top: 80px;
  background-color: white;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 4px solid var(--main-colorHover);
}
.timeline .content .year::after {
  content: "";
  position: absolute;
  background-color: var(--main-colorHover);
  width: 4px;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.timeline .content .year::before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 95px;
  left: 0;
  border: 15px solid white;
  border-color: transparent transparent transparent white;
}
.timeline .content:nth-of-type(2) {
  padding-top: 0;
}
/* End Timeline */

/* Start Our Features */
.our-features h1 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--main-colorHover);
}
.our-features .content {
  padding: 50px 20px;
}
.our-features .text-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 30px;
}
@media (max-width: 767px) {
  .our-features .text-content {
    flex-direction: column;
  }
}

.our-features .text-content p {
  color: var(--span-color);
}

.our-features .text-content > div {
  flex-basis: 30%;
  text-align: center;
}

.our-features .image {
  width: 100px;
  height: 100px;
  margin: auto;
  background-color: #ddd;
  border-radius: 50%;
  position: relative;
  border: 2px solid white;
  outline: 2px solid #ddd;
}
.our-features .content div img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.our-features .content h3 {
  padding: 10px 0;
  margin-bottom: 20px;
  position: relative;
  color: var(--main-colorHover);
}
.our-features .content h3::before {
  content: "";
  position: absolute;
  background-color: var(--main-colorHover);
  width: 50px;
  height: 4px;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* End Our Features */

/* Start Testimonials */
.testimonials {
  background-image: linear-gradient(
    to right,
    var(--main-colorHover),
    rgba(0, 0, 0, 0.733) 50%
  );
}
.testimonials .content {
  padding: 50px 20px;
}
.testimonials h1 {
  text-align: center;
  color: white;
  margin-bottom: 20px;
}
.testimonials h3 {
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.testimonials-box {
  position: relative;
  height: 300px;
}
.testimonials-box > div {
  position: relative;
  padding: 15px;
  background-color: white;
  width: 60%;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .testimonials-box > div {
    width: 80%;
  }
}

.testimonials-box > div > div {
  text-align: center;
  gap: 20px;
}
.testimonials-box p {
  text-align: center;
  margin: 15px 0;
  font-size: 13px;
  color: var(--span-color);
}
.testimonials-box span {
  font-size: 13px;
  color: var(--span-color);
}

.testimonials img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.testimonials .box {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  animation: slide-in 0.6s ease-out forwards;
}

@keyframes slide-in {
  from {
    transform: translateX(-150%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%);
    opacity: 1;
  }
}

.testimonials button {
  padding: 10px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  background-color: var(--main-colorHover);
  color: white;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: 0.3s;
}
.testimonials button:hover {
  opacity: 1;
}

.testimonials button:nth-of-type(1) {
  right: 0;
}
.testimonials button:nth-of-type(2) {
  left: 0;
}
/* End Testimonials */

/* Start Contact Us */
.contact-us {
  background-image: url("../imgs/89124.jpg");
  background-size: contain;
  position: relative;
}
.contact-us::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ddddddb6;
}

.contact-us .content {
  padding: 50px 20px;
  position: relative;
  z-index: 1;
}
.contact-us h1 {
  color: var(--main-colorHover);
  text-align: center;
  margin-bottom: 50px;
}
.contact-us form {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .contact-us form {
    flex-direction: column;
  }
}

.contact-us form > div {
  flex-basis: 25%;
}
.contact-us .inputs input,
textarea {
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: 0.3s;
}
input::placeholder,
textarea::placeholder {
  color: var(--span-color);
}

.contact-us textarea {
  min-height: 115px;
  resize: none;
}
.contact-us .textarea-send input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: var(--main-colorHover);
  color: white;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}
.contact-us .textarea-send input:hover {
  opacity: 1;
}

.contact-us .inputs input:focus,
textarea:focus {
  outline: none;
  border-color: var(--main-colorHover);
}
.contact-us .inputs input:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: 0.3s;
}
.contact-us textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: 0.3s;
}

/* End Contact Us */

/* Start Footer */

footer {
  background-color: black;
}
footer .container {
  padding: 60px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}
footer .container div {
  flex-basis: 25%;
}
@media (max-width: 767px) {
  footer .we-are {
    text-align: center;
  }
}
footer .we-are h2 {
  color: white;
  font-size: 50px;
  padding: 20px;
}
footer .social {
  padding: 20px;
}
footer .we-are a {
  color: white;
  background-color: gray;
  padding: 15px;
  font-size: 25px;
  transition: 0.3s;
}
footer .we-are a:hover {
  background-color: var(--main-colorHover2);
}
footer .we-are a:nth-of-type(3):hover {
  background-color: red;
}
footer .we-are p {
  color: #b9b9b9;
  line-height: 1.7;
  padding: 20px;
}

footer .important-links {
  display: flex;
  flex-direction: column;
  padding: 15px;
}
footer .important-links > div {
  border-bottom: 1px solid gray;
  transition: 0.3s;
}
footer .important-links > div:hover {
  padding-left: 20px;
}
footer .important-links a {
  display: block;
  color: #b9b9b9;
  text-decoration: none;
  text-transform: capitalize;
  padding: 20px;
  position: relative;
  transition: 0.3s;
}
footer .important-links a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  color: var(--main-colorHover);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
footer .important-links a:hover {
  color: white;
}

footer .contact {
  color: #b9b9b9;
}
footer .contact > div {
  display: flex;
  margin: 30px 0;
}
@media (max-width: 767px) {
  footer .contact > div {
    flex-direction: column;
    text-align: center;
  }
}
footer .contact i {
  font-size: 25px;
  padding: 15px;
  color: var(--main-colorHover);
}
footer .contact p {
  line-height: 1.7;
}

footer .imgs {
  padding: 30px 15px;
  text-align: center;
}
footer .imgs img {
  width: 80px;
  height: 75px;
  border: 4px solid white;
}

footer > div:nth-of-type(2) {
  color: white;
  padding: 25px;
  border-top: 1px solid gray;
  text-align: center;
}

.up.show {
  display: block;
  opacity: 1;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.event-finished {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  color: var(--main-colorHover);
}
/* End Footer */
