@media only screen and (min-width: 1200px) {
  .nav-menu {
    position: fixed;
    margin-top: 40px;
    right: 50%;
    transform: translateX(50%);
    width: auto;
    height: 65px;
    display: flex;
    border-radius: 12px;
    background-image: -moz-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    background-image: -webkit-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    background-image: -ms-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    box-shadow: 0px 4px 3.8px 0.2px rgba(16, 16, 16, 0.12);
    text-align: center;
    z-index: 9;
    transition: 0.3s linear;
  }

  .nav-menu-s {
    margin-top: 10px;
    transition: 0.3s linear;
  }

  .top-menu {
    margin: auto;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s linear;
  }
}

@media only screen and (max-width: 1200px) {
  .nav-menu {
    position: fixed;
    margin-top: 10px;
    right: 0;
    display: block;
    transform: translateX(100%);
    border-radius: 12px;
    background-image: -moz-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    background-image: -webkit-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    background-image: -ms-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    box-shadow: 0px 4px 3.8px 0.2px rgba(16, 16, 16, 0.12);
    text-align: center;
    z-index: 11;
    transition: 0.5s ease;
  }

  .main-animation {
    height: 600px;
  }

  .top-menu ul {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .top-menu ul li {
    padding: 20px 10px 20px 10px;
  }

  .menu-btn {
    position: fixed;
    min-width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
    z-index: 9;
    border-radius: 12px;
    background-image: -moz-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    background-image: -webkit-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    background-image: -ms-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    box-shadow: 0px 4px 3.8px 0.2px rgba(16, 16, 16, 0.12);
    cursor: pointer;
    transition: 0.5s ease;
  }

  .menu-btn::before {
    content: "menu";
    display: block;
    color: #ff4500;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 50px;
    font-weight: bold;
    transition: 0.5s ease;
  }

  .menu-btn-closed {
    top: -20px;
    transform: translateY(-100%);
    transition: 0.5s ease;
  }

  .nav-menu-open {
    transform: translateX(-10px);
    transition: 0.5s ease;
  }

  .btn-close {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: -25px;
    left: -25px;
    transform: translateX(200px);
    border-radius: 12px;
    background-image: -moz-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    background-image: -webkit-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    background-image: -ms-linear-gradient(
      120deg,
      rgb(226, 226, 234) 0%,
      rgb(231, 231, 238) 50%,
      rgb(235, 235, 242) 100%
    );
    box-shadow: 0px 4px 3.8px 0.2px rgba(16, 16, 16, 0.12);
    cursor: pointer;
    transition: 0.5s ease;
  }

  .btn-close::before {
    content: "x";
    font-size: 22px;
    line-height: 50px;
    color: #ff4500;
    font-weight: bold;
  }

  .btn-close-visible {
    transform: translateX(0);
    transition: 0.5s ease;
  }
}

@media only screen and (max-width: 1000px) {
  .main-animation {
    height: 500px;
  }
}

@media only screen and (max-width: 800px) {

  .main-animation {
    height: 400px;
  }

  .servicescard {
    width: 94%;
    text-align: center;
  }

  .servicespage {
    width: 94%;
    transition: 0.5s ease;
  }

  .sc1 {
    width: 20%;
    margin-left: 0;
  }

  .sc2 {
    width: 60%;
    max-width: 0 auto;
    text-align: center;
  }

  .sc3 {
    margin-right: 0px;
  }

  .page-about {
    width: 92%;
  }

  .page-movingtips {
    width: 94%;
    transition: 0.5s ease;
  }

  .page-testimonials {
    width: 94%;
    transition: 0.5s ease;
  }

  .page-contact {
    width: 94%;
    transition: 0.5s ease;
  }

  .quote {
    width: 94%;
  }

  .arrowicon {
    margin-left: 10px;
    margin-right: 10px;
    scale: 0.7;
  }

  .quotebtn {
    padding: 2px 14px 2px 14px;
    box-shadow: 3px 5px 8px rgba(16, 16, 16, 0.15),
      -3px -5px 8px rgba(255, 255, 255, 0.9);
  }
}

@media only screen and (max-width: 600px) {

  .main-animation {
    height: 300px;
  }
}

@media only screen and (max-width: 500px) {

  .main-animation {
    height: 280px;
  }
}

@media only screen and (max-height: 600px) {
  .top-menu ul {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-menu ul li {
    padding: 15px 10px 15px 10px;
    font-size: 12px;
  }
}

@media only screen and (min-height: 800px) {
  .quote--page {
    top: 100px;
    bottom: auto;
    overflow-y: unset;
  }
}

@keyframes animate-laptop {
  0% {
  }
  50% {
    left: 25%;
  }
  100% {
  }
}

@keyframes animate-calendar {
  0% {
  }
  50% {
    right: 25%;
  }
  100% {
  }
}

@keyframes contactvan {
  0% {}
  48% {right: 84%; transform: scaleX(1);}
  52% {transform: scaleX(-1)}
  96% {transform: scaleX(-1);}
  100% {}
}

@keyframes bgcolor {
  0% {
    background-color: #759fd0;
  }
  5% {
    background-color: #759fd0;
  }
  10% {
    background-color: #b63939;
  }
  15% {
    background-color: #b63939;
  }
  20% {
    background-color: #931111;
  }
  25% {
    background-color: #931111;
  }
  30% {
    background-color: #58a6a7;
  }
  35% {
    background-color: #58a6a7;
  }
  40% {
    background-color: #086c6c;
  }
  45% {
    background-color: #086c6c;
  }
  50% {
    background-color: #94bbe9;
  }
  55% {
    background-color: #94bbe9;
  }
  60% {
    background-color: #eeaeca;
  }
  65% {
    background-color: #eeaeca;
  }
  70% {
    background-color: #ff7a3c;
  }
  75% {
    background-color: #ff7a3c;
  }
  80% {
    background-color: #b35b33;
  }
  85% {
    background-color: #b35b33;
  }
  90% {
    background-color: #cc7171;
  }
  95% {
    background-color: #cc7171;
  }
  100% {
    background-color: #759fd0;
  }
}
