* ::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #424242;
}
* ::selection {
  color: #fff;
  background: #424242;
}

.opa {
  opacity: 0 !important;
  cursor: default;
  pointer-events: none;
}

body {
  transition: all 0.3s ease;
  background-color: rgba(247, 247, 247, 0.8156862745);
}

#contact {
  position: fixed;
  right: 170px;
  bottom: 15px;
  z-index: 12;
  height: 40px;
  border-radius: 50px;
  font-size: 14px;
  padding: 0 30px;
  font-family: sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
}

.calendly-badge-content:hover {
  background-color: #0b5ed7 !important;
}

.calendly-badge-content {
  height: 40px !important;
}

#hero {
  margin-top: 96px;
  height: 80vh;
}

.topSection {
  margin-top: 96px;
  height: 1px;
  width: 100%;
}

#serviceOV {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec1 {
  margin-top: 96px;
}

#navbar {
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 10 !important;
}

.hide {
  display: none;
}

@keyframes opacityx {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.small {
  opacity: 0.8;
}
.small .container .navbar-brand img {
  height: 30px;
  transition: all 0.5s ease;
}
.small #trackShipform {
  display: none;
}

.servicelist {
  background-color: #fff;
  margin: 0 0 50px 0;
  padding: 10px 0;
  border-radius: 20px;
  box-shadow: -10px -10px 10px #fff, 8px 8px 8px rgba(66, 66, 66, 0.5490196078);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
}
.servicelist h2 {
  margin: 40px;
  margin-bottom: 40px;
}
.servicelist .service-card {
  cursor: pointer;
  margin: 10px 0;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(#fff 50%, #f1f1f1 50%);
  background-size: 100% 200%;
  background-position: 0 0;
  transition: all 0.3s ease-in;
  position: relative;
}
.servicelist .service-card img {
  height: 100px;
  margin-bottom: 30px;
  animation-name: pop_pop;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
.servicelist .service-card h4 {
  margin-bottom: 20px;
}
.servicelist .service-card button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  width: 100px;
}
.servicelist .service-card:hover {
  background-position: 0 100%;
  transition: all 0.3s ease-in;
}
.servicelist .service-card.explore::after {
  content: "Click to explore" !important;
}
.servicelist .service-card::after {
  content: "Click to request";
  transition: all 0.3s ease-in;
  padding: 10px;
  background-color: #06aed5;
  color: #fff;
  font-weight: 500;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, 0);
}
.servicelist .service-card:hover.service-card::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.servicelist .listTitle {
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .service-card {
    width: 45% !important;
  }
  .servicelist {
    padding: 20px 0;
  }
}
#trackShipform {
  display: none;
  transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
  #trackShipform {
    display: flex;
  }
  .service-card {
    width: 23% !important;
  }
}
@keyframes pop_pop {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
section {
  position: relative;
  margin-bottom: 20px;
}

.modal {
  display: none;
  position: absolute;
  z-index: 9;
  margin: 0;
  width: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  padding: 40px;
  border: 1px solid #888;
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#transportation {
  box-sizing: border-box;
  padding-top: 70px;
}

#transportSols {
  border-radius: 50px;
  background: #fff;
  box-shadow: 35px 35px 70px #bebebe, -35px -35px 70px #ffffff;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
#transportSols h2 {
  margin: 40px;
}
#transportSols .solCard {
  box-shadow: 29px 29px 58px #b8b8b8, -29px -29px 58px #ffffff;
  transition: all 0.3s ease-in;
  width: 70%;
  margin-bottom: 80px;
  margin-left: 30px;
  margin-top: 30px;
  margin-right: 30px;
  display: flex;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
#transportSols .solCard h4 {
  font-weight: 800;
}
#transportSols .solCard p {
  font-weight: 500;
}
#transportSols .solCard img {
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#transportSols .solCard .content {
  width: 60%;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
#transportSols .solCard-left:hover {
  background-position: 0 0;
}
#transportSols .solCard-right:hover {
  background-position: 100% 0;
}
#transportSols .solCard::after {
  content: "Click to explore";
  transition: all 0.3s ease-in;
  padding: 10px;
  background-color: #06aed5;
  color: #fff;
  font-weight: 500;
  opacity: 0;
}
#transportSols .solCard-left::after {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0%, -50%);
}
#transportSols .solCard-right::after {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0%, -50%);
}
#transportSols .solCard:hover.solCard-left::after {
  opacity: 1;
  transform: translate(50%, -50%);
}
#transportSols .solCard:hover.solCard-right::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}
#transportSols .solCard-left {
  margin-right: 30%;
  background: linear-gradient(to right, #f1f1f1 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}
#transportSols .solCard-left img {
  border-radius: 10px 0 0 10px;
}
#transportSols .solCard-right {
  margin-left: 25%;
  background: linear-gradient(to right, #fff 50%, #f1f1f1 50%);
  background-size: 200% 100%;
  background-position: 0 100%;
  flex-direction: row-reverse;
}
#transportSols .solCard-right img {
  border-radius: 0 10px 10px 0;
}
#transportSols .solCard-right .content {
  text-align: right !important;
}

.color1 {
  color: #fff;
}

.color2 {
  color: #06aed5;
}

.color3 {
  color: #2dd881;
}

.color4 {
  color: #424242;
}

@media screen and (max-width: 450px) {
  #contact {
    right: auto;
    left: 15px;
  }
}
@media screen and (max-width: 768px) {
  #hero {
    height: 50vh;
  }
  #hero #heroCarousel {
    display: none;
  }
  #hero #heroCard {
    background-image: url("/images/slide1.jpg");
    background-position: center;
    display: block;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #hero #heroCard .content {
    background-color: rgba(66, 66, 66, 0.5);
    padding: 5% 10%;
  }
  #hero #heroCard .content p {
    font-weight: 500;
  }
}
@media screen and (max-width: 820px) {
  #transportSols {
    padding: 10px;
    justify-content: center;
    align-items: center;
  }
  #transportSols .solCard {
    flex-direction: column !important;
    width: 95%;
    align-items: center;
    box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.2), -4px -5px 10px rgba(0, 0, 0, 0.2) !important;
  }
  #transportSols .solCard img {
    border-radius: 10px 10px 0 0;
    width: 100%;
  }
  #transportSols .solCard .content {
    width: 90%;
    padding: 20px;
    text-align: center;
  }
  #transportSols .solCard-left {
    margin: 0 0 30px 0 !important;
  }
  #transportSols .solCard-right {
    margin: 0 0 30px 0 !important;
  }
  #transportSols .solCard-right .content {
    text-align: center !important;
  }
  #storageSols {
    padding: 10px;
    justify-content: center;
    align-items: center;
  }
  #storageSols .storcard {
    flex-direction: column !important;
    width: 100% !important;
    align-items: center !important;
    box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.2), -4px -5px 10px rgba(0, 0, 0, 0.2) !important;
  }
  #storageSols .storcard img {
    border-radius: 10px 10px 0 0 !important;
    width: 100% !important;
  }
  #storageSols .storcard .content {
    width: 90% !important;
    padding: 20px !important;
    text-align: center !important;
  }
  #storageSols .storcard-left {
    margin: 0 0 30px 0 !important;
  }
  #storageSols .storcard-right {
    margin: 0 0 30px 0 !important;
  }
  #storageSols .storcard-right .content {
    text-align: center !important;
  }
  .column2 {
    flex-direction: column !important;
  }
  .column2 .vertical-line {
    display: none;
  }
  .column2 .contact-info {
    width: 90% !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .column2 form {
    width: 90% !important;
  }
  span.ico::before {
    content: "\a" !important;
  }
}
#heroCard {
  display: none;
}

span.ico::before {
  content: " | ";
  white-space: pre;
}

#storage {
  padding-top: 100px;
}
#storage .container #storageSols {
  border-radius: 50px;
  background: #fff;
  box-shadow: 35px 35px 70px #bebebe, -35px -35px 70px #ffffff;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
#storage .container #storageSols h2 {
  margin: 40px 0;
}
#storage .container #storageSols .storcard {
  box-shadow: 29px 29px 58px #b8b8b8, -29px -29px 58px #ffffff;
  transition: all 0.3s ease-in;
  width: 70%;
  margin-bottom: 80px;
  margin-left: 30px;
  margin-top: 30px;
  margin-right: 30px;
  display: flex;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
#storage .container #storageSols .storcard h4 {
  font-weight: 800;
}
#storage .container #storageSols .storcard p {
  font-weight: 500;
}
#storage .container #storageSols .storcard img {
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#storage .container #storageSols .storcard .content {
  width: 60%;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
#storage .container #storageSols .storcard-left:hover {
  background-position: 0 0;
}
#storage .container #storageSols .storcard-right:hover {
  background-position: 100% 0;
}
#storage .container #storageSols .storcard::after {
  content: "Click to explore";
  transition: all 0.3s ease-in;
  padding: 10px;
  background-color: #06aed5;
  color: #fff;
  font-weight: 500;
  opacity: 0;
}
#storage .container #storageSols .storcard-left::after {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0%, -50%);
}
#storage .container #storageSols .storcard-right::after {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0%, -50%);
}
#storage .container #storageSols .storcard:hover.storcard-left::after {
  opacity: 1;
  transform: translate(50%, -50%);
}
#storage .container #storageSols .storcard:hover.storcard-right::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}
#storage .container #storageSols .storcard-left {
  margin-right: 30%;
  background: linear-gradient(to right, #f1f1f1 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}
#storage .container #storageSols .storcard-left img {
  border-radius: 10px 0 0 10px;
}
#storage .container #storageSols .storcard-right {
  margin-left: 25%;
  background: linear-gradient(to right, #fff 50%, #f1f1f1 50%);
  background-size: 200% 100%;
  background-position: 0 100%;
  flex-direction: row-reverse;
}
#storage .container #storageSols .storcard-right img {
  border-radius: 0 10px 10px 0;
}
#storage .container #storageSols .storcard-right .content {
  text-align: right !important;
}

#contact-form {
  border-radius: 50px;
  background: #fff;
  box-shadow: 35px 35px 70px #bebebe, -35px -35px 70px #ffffff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  margin-top: 100px;
  margin-bottom: 200px;
}
#contact-form h2 {
  font-weight: 700;
}
#contact-form .content {
  width: 100%;
  text-align: center;
}
#contact-form .content .column2 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
#contact-form .content .contact-info {
  width: 40%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
#contact-form .content .contact-info a {
  text-decoration: none;
  color: #424242;
  font-weight: 800;
}
#contact-form .content .contact-info img {
  width: 200px;
  margin-bottom: 40px;
}
#contact-form .content form {
  display: flex;
  flex-direction: column;
  width: 40%;
}
#contact-form .content form label {
  font-weight: 500;
  margin-top: 20px;
}
#contact-form .content form button {
  align-self: flex-end;
  justify-self: flex-end;
  padding: 5px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
}

.vertical-line {
  border-left: 5px solid #424242;
  height: 300px; /* Adjust the height as needed */
  margin: 0 40px; /* Adjust the margin as needed */
}/*# sourceMappingURL=style.css.map */