* {
  padding: 0;
  margin: 0;
  font-family: "SegUIVar", sans-serif;
  scroll-behavior: smooth;
}

body {
  padding: 0;
}
body section {
  scroll-margin-top: 120px;
}

header {
  margin: 0;
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0 25px 0;
  width: 100%;
  isolation: isolate;
  z-index: 10;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
header .logo {
  padding-left: 100px;
  flex: 1;
  z-index: 10;
}
header .logo img {
  width: 200px;
}
header .navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  vertical-align: middle;
  padding: 0 100px 0 0;
  border-radius: 20px;
  z-index: 10;
}
header .navigation .nav {
  display: flex;
}
header .navigation .nav li {
  list-style: none;
  margin: 15px;
}
header .navigation .nav li a {
  position: relative;
  color: #3a3a3a;
  text-decoration: none;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
header .navigation .nav li a:hover {
  color: #E10600;
  text-shadow: 0 0 0 currentColor;
}
header .navigation .nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #E10600;
  transition: width 0.5s ease;
}
header .navigation .nav li a:hover::after {
  width: 100%;
}
header .navigation .nav li a.active {
  font-weight: 600;
}
header .navigation .nav li a.active::after {
  width: 100%;
  transition: width 0.3s ease;
}
header .navigation .nav li a.active {
  color: #E10600;
  font-weight: 600;
}
header .navigation .quote_button {
  margin-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #E10600;
  padding: 8px 20px;
  font-weight: bolder;
  border: 3px solid #E10600;
  border-radius: 30px;
  box-sizing: border-box;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
header .navigation .quote_button span {
  font-weight: bolder;
  margin-right: 8px;
  transition: transform 0.3s ease;
}
header .navigation .quote_button span img {
  width: 30px;
  vertical-align: middle;
}
header .navigation .quote_button:hover {
  background-color: #E10600;
  color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
header .navigation .quote_button:hover span {
  transform: scale(1.2);
  filter: brightness(0) invert(1);
}
header .navigation .quote_button:hover span img {
  display: inline;
  vertical-align: middle;
}

header.sticky {
  margin: 0;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  padding: 25px 30px;
  width: 100%;
  max-width: 1200px;
  isolation: isolate;
  z-index: 1000;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
header.sticky .logo {
  padding-left: 0;
}
header.sticky .logo img {
  vertical-align: middle;
  width: 150px;
}
header.sticky .navigation {
  padding: 0;
}

.hero {
  padding: 0;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.hero .bg-layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}
.hero .bg-layer.active {
  opacity: 1;
  z-index: 1;
}
.hero .hero-captions {
  height: auto;
}
.hero .hero-captions .top {
  display: none;
}
.hero .hero-captions .left {
  margin: 0 100px;
  position: relative;
  z-index: 2;
  padding: 250px 0 200px 0;
}
.hero .hero-captions .left .main-heading {
  font-family: "Milker";
  color: #E10600;
  font-size: 70px;
  line-height: 0.8;
  letter-spacing: 5px;
}
.hero .hero-captions .left .main-description {
  font-size: 18px;
  color: #5f6368;
  margin-top: 40px;
  width: 600px;
}
.hero .hero-captions .left .resp {
  display: none;
}
.hero .hero-captions .left .hero-button {
  display: flex;
  gap: 20px;
}
.hero .hero-captions .left .hero-button .contact_button {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #E10600;
  padding: 10px 20px;
  font-weight: bolder;
  border: 3px solid #E10600;
  border-radius: 30px;
  text-decoration: none;
  width: -moz-max-content;
  width: max-content;
  transition: background-color 0.3s ease;
  vertical-align: middle;
}
.hero .hero-captions .left .hero-button .contact_button span {
  font-weight: bolder;
  margin-right: 15px;
  transition: transform 0.3s ease;
}
.hero .hero-captions .left .hero-button .contact_button span img {
  width: 20px;
  vertical-align: middle;
}
.hero .hero-captions .left .hero-button .contact_button:hover {
  background-color: #E10600;
  color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.hero .hero-captions .left .hero-button .contact_button:hover span {
  transform: scale(1.4);
  filter: brightness(0) invert(1);
}
.hero .hero-captions .left .hero-button .quote_button {
  display: none;
}

.about {
  margin: 100px;
}
.about .about-inner {
  display: flex;
  justify-content: space-evenly;
}
.about .about-inner .left {
  position: relative;
  z-index: 1;
}
.about .about-inner .left img {
  width: 600px;
}
.about .about-inner .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 600px;
  position: relative;
  z-index: 1;
}
.about .about-inner .right h1 {
  font-family: "Milker";
  color: #E10600;
  font-size: 35px;
  line-height: 0.8;
  margin-bottom: 20px;
}
.about .about-inner .right p {
  color: #5f6368;
  font-size: 18px;
  margin-bottom: 20px;
}
.about .about-inner .right .about-mobile {
  display: none;
}

.service {
  text-align: center;
  margin: 0 100px 0 100px;
}
.service .title {
  font-family: "Milker";
  color: #E10600;
  font-size: 35px;
  line-height: 0.8;
  margin-bottom: 20px;
}
.service .mobile {
  display: none;
}
.service .description {
  color: #5f6368;
  font-size: 18px;
  margin-bottom: 20px;
}
.service .service-card {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.service .service-card .card-inner {
  padding: 20px;
  width: 250px;
  height: 400px;
  border-radius: 40px 40px 0 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: height 0.4s ease;
}
.service .service-card .card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 6s ease;
  z-index: 0;
}
.service .service-card .card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.service .service-card .card-inner .icon,
.service .service-card .card-inner .content {
  position: relative;
  z-index: 2;
  top: 20%;
  transition: top 0.8s ease;
}
.service .service-card .card-inner .icon img {
  padding-top: 20px;
  filter: invert(100%);
  width: 50px;
  transition: transform 0.8s ease;
}
.service .service-card .card-inner .content h3 {
  padding-top: 20px;
  color: #ffffff;
  font-weight: 750;
  transition: 0.3s ease;
}
.service .service-card .card-inner .content p {
  font-size: 15px;
  color: #ffffff;
  margin: 10px 0 0;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease;
}
.service .service-card .card-inner:hover::before {
  transform: scale(1.5);
}
.service .service-card .card-inner:hover .content p {
  opacity: 1;
  transform: translateY(0);
  color: #ffffff;
}
.service .service-card .card-inner:hover .icon img {
  transform: scale(1.2);
}
.service .service-card .card-inner:hover .icon,
.service .service-card .card-inner:hover .content {
  position: relative;
  z-index: 2;
  top: 0%;
}
.service .service-card .image1::before {
  background-image: url("../images/services/background/Residential_Moving.webp");
}
.service .service-card .image2::before {
  background-image: url("../images/services/background/Business_Relocations.webp");
}
.service .service-card .image3::before {
  background-image: url("../images/services/background/Interstate_Moving.webp");
}
.service .service-card .image4::before {
  background-image: url("../images/services/background/Packing_Services.webp");
}
.service .service-card .image5::before {
  background-image: url("../images/services/background/Furniture_Handling.webp");
}
.service .service-card-mobile {
  display: none;
}

.testimonials {
  text-align: center;
  padding: 100px;
  background-color: #E10600;
}
.testimonials h1 {
  font-family: "Milker";
  color: #ffffff;
  font-size: 35px;
  line-height: 0.8;
  margin-bottom: 20px;
}
.testimonials p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}
.testimonials .carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 90%, transparent);
          mask-image: linear-gradient(to right, transparent, black 5%, black 90%, transparent);
}
.testimonials .carousel .carousel-track {
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}
.testimonials .carousel .carousel-track .testimonial-card {
  min-width: 320px;
  flex-shrink: 0;
  display: flex;
  width: 320px;
  height: 85px;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  margin: 20px 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonials .carousel .carousel-track .testimonial-card .profile {
  flex: 1;
}
.testimonials .carousel .carousel-track .testimonial-card .profile img {
  width: 50px;
}
.testimonials .carousel .carousel-track .testimonial-card .content {
  flex: 4;
}
.testimonials .carousel .carousel-track .testimonial-card .content .info {
  display: flex;
  vertical-align: top;
  text-align: center;
}
.testimonials .carousel .carousel-track .testimonial-card .content .info h4 {
  margin: 0;
  font-size: 16px;
}
.testimonials .carousel .carousel-track .testimonial-card .content .info .stars {
  margin-left: 10px;
  color: #fbbf24;
  font-size: 14px;
}
.testimonials .carousel .carousel-track .testimonial-card .content p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.testimonials .carousel .carousel-track .testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.testimonials .carousel .carousel-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.testimonials .carousel-left .carousel-track {
  animation: scroll-left 200s linear infinite;
}
.testimonials .carousel-right .carousel-track {
  animation: scroll-right 200s linear infinite;
}

.quote {
  margin: 100px;
}
.quote .quote-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.quote .quote-container .left img {
  width: 500px;
}
.quote .quote-container .right {
  flex-direction: column;
}
.quote .quote-container .right .title {
  text-align: center;
  font-family: "Milker";
  font-size: 35px;
  line-height: 0.8;
  margin-bottom: 20px;
  color: #E10600;
}
.quote .quote-container .right form {
  display: flex;
  flex-direction: column;
}
.quote .quote-container .right form .input {
  width: 400px;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}
.quote .quote-container .right form .row {
  display: flex;
  gap: 15px;
}
.quote .quote-container .right form .row input {
  width: 176px;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}
.quote .quote-container .right form .row button {
  width: 210px;
  padding: 15px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 3px solid #E10600;
  margin-bottom: 15px;
  font-size: 15px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}
.quote .quote-container .right form .row button:hover {
  background: #E10600;
  color: #fff;
}
.quote .quote-container .right form .terms {
  display: flex;
  align-items: flex-start;
  width: 330px;
  gap: 10px;
}
.quote .quote-container .right form .terms input[type=checkbox] {
  width: 50px;
  height: 35px;
}
.quote .quote-container .right form .terms label {
  font-family: Arial, Helvetica, sans-serif;
}
.quote .quote-container .right form .terms label strong {
  font-family: Arial, Helvetica, sans-serif;
}
.quote .quote-container .right form .terms label a {
  color: #555;
  text-decoration: underline;
  font-family: Arial, Helvetica, sans-serif;
}

footer {
  color: #f5f5f5;
  background-color: #E10600;
}
footer .footer-content {
  padding: 100px;
  display: flex;
  gap: 100px;
}
footer .footer-content .title {
  flex: 1;
}
footer .footer-content .title h2 {
  font-family: "Milker";
  color: #ffffff;
  line-height: 0.8;
  margin-bottom: 20px;
}
footer .footer-content .title p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}
footer .footer-content .title .contact-gmaps {
  flex: 1;
  min-width: 100px;
  background-color: #f5f5f5;
  border-radius: 18px;
  overflow: hidden;
}
footer .footer-content .contact {
  flex: 1;
}
footer .footer-content .contact h2 {
  font-family: "Milker";
  color: #ffffff;
  line-height: 0.8;
  margin-bottom: 20px;
}
footer .footer-content .contact p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}
footer .footer-content .contact .details {
  flex: 2;
  display: flex;
  flex-direction: column;
}
footer .footer-content .contact .details .card {
  display: flex;
  vertical-align: middle;
  padding-top: 20px;
}
footer .footer-content .contact .details .card img {
  width: 50px;
}
footer .footer-content .contact .details .card .content p {
  margin: 0;
  font-size: 15px;
  color: #ffffff;
}
footer .footer-content .contact .details .card .content h4 {
  font-size: 18px;
}
footer .footer-content .contact-gmaps-mobile {
  display: none;
}
footer .copyright {
  padding: 20px 100px;
  background-color: #5f6368;
}/*# sourceMappingURL=index.css.map */