@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
  /*colors*/
  --clr-main: white;
  --clr-heading: #C17904;
  --clr-alt-heading: #3f3f3f;
  --clr-accent: #e5c876; 
  --clr-dark-accent: #b6a370;
  --clr-hover: white;
  --clr-menu: #e7c977;

  /*fonts*/
  --ff-main: 'Montserrat', sans-serif;

  --ff-size: clamp(0.8rem, 2vw, 1.3rem);
  --ff-line-height: clamp(1.068rem, 5vw, 1.5rem);
  --ff-padding: 0 0 1.25rem 0;
  --main-line-height: clamp(1rem, 2vw, 1.2782rem);
  --heading-size: clamp(1.5rem, 2.5vh, 2rem);
  --heading-weight: 700;
  --heading-line-height: 2.25rem;
  --subheading-size: clamp(1.444rem, 2.5vh, 1.6rem);
  --footer-size: clamp(0.7rem, 1.5vw, 0.9rem);
  
  /*padding & margins*/
  --padding-container: 30px; 
  --heading-margins: 0 0 2rem 0;
}

html, body {
  padding: 0;
  margin: 0;
  font-family: var(--ff-main);
  font-size: 18px;
}
body {
  background-color: var(--clr-main);
}
p {
  font-size: var(--ff-size);
  margin:0;
  padding: 0;
  line-height: var(--ff-line-height);
}
h1,h2,h3,h4,h5,h6 {
  font-size: var(--heading-size);
  line-height: var(--heading-line-height);
  margin:0;
  padding:0;
}
b {
  font-weight: var(--heading-weight);
}
a {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
a:hover {
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}
.black-bold {
  color: black;
  font-weight: 600;
}
.grey-bold {
  color: #454545;
  font-weight: 600;
}
.yellow-highlight {
  color: var(--clr-accent);
}
.dark-yellow-highlight {
  color: var(--clr-dark-accent);
}
.white-highlight {
  color: var(--clr-main);
}
/*********************************
/*           HEADER             */
/*********************************/
.header-container {
  background-image: url('../images/header-bg.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 896px;
  width: 100%;
}
@media only screen and (max-width: 1166px) { 
  .header-container {
    background-image: url('../images/header-bg-1166.jpg');
  }
}
.top-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
@media only screen and (max-width: 1470px) { 
  .top-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
} 
@media only screen and (max-width: 1166px) { 
  .top-grid {
    grid-template-columns: 1fr 50px;
  }
}
.logo-container {
  background-image: url('../images/logo-edge.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 380px;
}
@media only screen and (max-width: 600px) { 
  .logo-container {
    height: 280px;
  }
}
.logo-container img {
  max-width: 300px;
  width: 100%; 
  height: auto;
  padding-top: 1.5vh;
  padding-left: 1.5vw;
}
@media only screen and (max-width: 620px) {  
  .logo-container img {
    max-width: 250px;
    width: 100%; 
    height: auto;
  }
}
@media only screen and (max-width: 527px) { 
  .logo-container img {
    max-width: 150px;
    width: 100%; 
    height: auto;
  }
}
.nav-container {
  padding-top: 100px;
}
nav#desktop ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
nav#desktop ul li {
  list-style: none;
}
nav#desktop ul li a.btn {
  font-weight: 500;
  color: #fff;
  padding-right: 2.5vw;
  text-decoration: none;
  text-transform: uppercase;
}
nav#desktop ul li a.btn:hover {
  color: var(--clr-hover);
  transition: all 0.3s ease-in-out;
}
.active {
  color: white !important;
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
}
@media only screen and (max-width: 1166px) { 
  .menu-toggle {
    display: block;
  }
}
.menu-toggle.on .one {
  -moz-transform: rotate(45deg) translate(7px, 7px);
  -ms-transform: rotate(45deg) translate(7px, 7px);
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  transform: rotate(45deg) translate(7px, 7px);
}
.menu-toggle.on .two {
  opacity: 0;
}
.menu-toggle.on .three {
  -moz-transform: rotate(-45deg) translate(8px, -10px);
  -ms-transform: rotate(-45deg) translate(8px, -10px);
  -webkit-transform: rotate(-45deg) translate(8px, -10px);
  transform: rotate(-45deg) translate(8px, -10px);
}
.one,
.two,
.three {
  width: 100%;
  height: 5px;
  background:  var(--clr-main);
  margin: 6px auto;
  backface-visibility: hidden;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media only screen and (max-width: 1166px) { 
  #desktop {
    display: none;
  }
}
.menu-section {
  display: none;
}
@media only screen and (max-width: 1166px) { 
  .menu-section {
    display: block;
  }
}
.menu-section.on {
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
}
nav ul.hidden {
  display: none;
}
.menu-section nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 4em auto;
  text-align: center;
}
.menu-section nav ul a {
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  text-decoration: none;
  color: white;
  font-size: 5.5vh;
  line-height: 1.5;
  width: 100%;
  display: block;
}
.menu-section nav ul a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
/*********************************
/*           HOME PAGE            */
/*********************************/
.got_covered {
  background-color: rgba(0, 0, 0, 0.507);
  display: inline-block;
  padding: 30px;
  margin-top: 80px;
  margin-left: 10%;
}
@media only screen and (max-width: 600px) { 
  .got_covered {
    margin: 0;
  }
}
@media only screen and (max-width: 1166px) { 
  .got_covered {
    margin-top: 300px;
    margin-left: 0;
  }
}
.got_covered h2 {
  color: var(--clr-heading);
  font-size: var(--heading-size);
  font-weight: 500;
  padding: 0;
  margin: 0;
}
.got_covered h1 {
  color: var(--clr-heading);
  font-size: var(--heading-size);
  font-weight: 500;
  padding: 0;
  margin: 0;
}

.got_covered p {
  color: var(--clr-main);
  font-size: var(--ff-size);
  margin:0;
  padding: 0;
}
.got_covered h2 {
  padding-bottom: 2.5vh;
}
.got_covered h1 {
  padding-bottom: 2.5vh;
}
.main-container {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 800px) {  
  .main-container{
    flex-direction: column;
  }
}
.main-container div {
  flex-grow: 1;
  flex-basis: 0;
  padding: 1.35rem 2rem;
}
.main-container div p {
  font-size: inherit;
  padding: var(--ff-padding);
}
.dark-card {
  color: var(--clr-main);
  background-color: #3f3f3f;
  border-top: solid #3f3f3f 10px;
}
@media only screen and (max-width: 800px) {  
  .dark-card, .light-card {
    margin-top: 30px;
    text-align: center;
  }
}
.light-card {
  text-align: center;
  color: #767676;
  background-color: #dedede;
  border-top: solid #AC6C08 10px;
}
.light-card a {
  color: inherit;
}
.light-card a:hover {
  text-decoration: none;
}
.toll-free {
  color: inherit;
  text-decoration: underline;
}
.toll-free:hover {
  text-decoration: none;
}
.request-quote {
  color: var(--clr-accent);
  text-decoration: underline;
  transition: all 0.5s ease-out;
}
.request-quote:hover {
  color: var(--clr-dark-accent);
  text-decoration: none;
  transition: all 0.5s ease-in;
}
.map-container {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 800px) { 
  .map-container {
    padding: var(--padding-container);
  }
}
.map-container div {
  flex-grow: 1;
  flex-basis: 0;
}
@media only screen and (max-width: 800px) {  
  .map-container {
    flex-direction: column;
  }
}
.map-container img {
  max-width: 100%;
}
.about-grey {
  color: #3f3f3f;
  font-size: var(--heading-size);
  font-weight: var(--heading-weight);
  margin: var(--heading-margins);
}
.about-yellow {
  font-size: var(--ff-size);
  color: var(--clr-accent);
  font-weight: 600;
}
.map-container h2 {
  margin-top: 150px;
}
@media only screen and (max-width: 800px) {  
  .map-container h2 {
    margin-top: 0;
  }
}
.map-container p {
  padding: var(--ff-padding);
}
/*********************************
/*           ABOUT US             */
/*********************************/
.about-container {
  background-image: url('../images/about-bg.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 620px;
  width: 100%;
}
.our_misson {
  margin-left: 20%;
}
@media only screen and (max-width: 600px) {  
  .our_misson {
    margin-left: 5%;
  }
}
.our_misson h2 {
  color: var(--clr-heading);
  font-size: var(--heading-size);
}
.our_misson p {
  color: white;
}
.logisitcs_solution {
  display: flex;
  flex-direction: row;
  padding: var(--padding-container);
}
@media only screen and (max-width: 1166px) { 
  .logisitcs_solution {
    flex-direction: column-reverse;
  }
}
.logisitcs_solution div {
  flex-grow: 1;
  flex-basis: 0;
  padding: 10px;
}
.logisitcs_solution h2 {
  color: var(--clr-alt-heading);
  margin: var(--heading-margins);
}
.logisitcs_solution h3 {
  margin: var(--heading-margins);
}
.logisitcs_solution p {
  font-size: var(--ff-size);
  line-height: var(--ff-line-height);
  padding: var(--ff-padding);
}
.logisitcs_solution img {
  max-width: 100%;
}
.values {
  display: flex;
  flex-direction: row;
  padding: var(--padding-container);
}
@media only screen and (max-width: 1166px) {  
  .values {
    flex-direction: column;
  }
}
.values div {
  flex-grow: 1;
  flex-basis: 0;
  margin: 10px;
  padding: 30px;
  background-color: #eeeeee;
}
.values img {
  max-width: 100%;
  display: block;
  margin: 0 auto 1rem auto;

}
.values p {
  color: black;
  font-size: var(--ff-size);
  padding: var(--ff-padding);
}
p.values-heading {
  color: var(--clr-heading);
  font-size: var(--heading-size);
  text-transform: uppercase;
  text-align: center;
}
/*********************************
/*           SERVICES             */
/*********************************/
.process {
  background-color: #3f3f3f;
  padding: 90px 0;
  text-align: center;
  font-size: var(--heading-size);
}
@media only screen and (max-width: 1166px) { 
  .process {
    padding: 30px;
  }
}
.process-text {
  font-size: var(--heading-size);
}
@media only screen and (max-width: 1200px) { 
  .process-text {
    line-height: 2rem;
  }
}
.p1, .p2, .p3, .p4 {
  font-weight: var(--heading-weight);
}
.p1 {
  color: #727272;
}
.p2 {
  color: #969696;
}
.p3 {
  color: #b0b0b0;
}
.p4 {
  color: white;
}
.servicing {
  text-align: center;
  margin: 5rem 0;
}
.servicing h2 {
  color: var(--clr-heading);
  padding: var(--heading-margins);
}
.servicing p {
  color: #3f3f3f;
  padding: 0;
}
.states-of-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: var(--padding-container);
} 
.state-heading {
  color: var(--clr-heading) !important;
  padding: var(--ff-padding) !important;
}
.bonded {
  text-align: center;
  margin: 5rem 0;
}
.bonded h2 {
  color: var(--clr-alt-heading);
  padding: var(--heading-margins);
}
.bonded p {
  color: #3f3f3f;
  padding: 0;
}
.service-container {
  background-image: url('../images/service-bg.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 620px;
  width: 100%;
}
@media only screen and (max-width: 1166px) { 
  .service-container { 
    background-image: url('../images/service-bg-1166.jpg');
  }
}
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: var(--padding-container);
}
@media only screen and (max-width: 1166px) {  
  .services {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0;
  }
}
.service-card {
  background-color: #ededed;
}
.card-heading {
  font-size: var(--subheading-size);
  color: var(--clr-accent);
  line-height: 2rem;
  background-color: #393939;
  padding: 20px;
  word-break: break-all;
}
.service-padding {
  padding: 20px;
}
.service-padding p {
  color: #454545;
  padding: var(--ff-padding);
}

/*********************************
/*           CONTACT            */
/*********************************/
.contact-bg-container {
  background-image: url('../images/contact-bg.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 620px;
  width: 100%;
}
@media only screen and (max-width: 1166px) {  
  .contact-bg-container {
    background-image: url('../images/contact-bg-1166.jpg');
  }
}
.thanks-container {
  text-align: center;
  margin: 5rem 0;
}
.thanks-container h2 {
  color: var(--clr-heading);
  font-size: var(--heading-size);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: var(--padding-container);
}
@media only screen and (max-width: 800px) { 
  .contact-container {
    grid-template-columns: 1fr;
  }
}
.contact-container p {
  padding: var(--ff-padding);
}
.full-input {
  display: inline-block;
  padding: 3px;
  border: 1px solid #a4a4a4;
  width: 100%;
  margin-bottom: 1rem;
  transition: all 1s ease-out;
}
.full-input:hover {
  border: 1px solid #727272;
  transition: all 1s ease-in;
}
.full-input input, .full-input textarea  {
  color: #a4a4a4;
  outline: none;
  border: none;
  display:block;
  font-size: var(--ff-size);
  font-family: var(--ff-main);
  width: 99%;
}
.full-input label {
  display: block;
  color:  #5e5e5e;
}
.contact-container input[type=submit] {
  float: right;
  font-size: var(--ff-size);
  font-family: var(--ff-main);
  background-color: var(--clr-accent);
  color: #fff;
  border: none;
  width: 125px;
  padding: 0.8rem;
  cursor: pointer;
  transition: all .5s ease-in-out;
  margin-top: 1rem;
}
.contact-container input[type=submit]:hover, .contact-container input[type=submit]:focus {
  background-color: var(--clr-heading);
}
.robo-success {
  color: green;
  font-size: var(--ff-size);
  font-family: var(--ff-main);
  margin-top: 1rem;
}
.robo-failed {
  color: red;
  font-size: var(--ff-size);
  font-family: var(--ff-main);
  margin-top: 1rem;
}
/*********************************
/*           FOOTER              */
/*********************************/
footer {
  font-size: var(--footer-size);
  color: var(--clr-accent);
  background-color: #3f3f3f;
  text-align: center;
  padding: 20px;  
}

section .transportation {background: #ededed; padding: 60px 0;}
section .transportation h2{font-size: 28px; text-align: center;}
section .transportation p{font-size:18px; text-align: center; color: rgba(0,0,0,0.7);font-family: "Roboto", sans-serif;}
section .transportation .item{filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.2));
  background: #FFFFFF;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
 padding:40px;
  transition: .3s;

 }
 /*  flex: 0 0 50%;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center; */

  section .transportation .item:hover{filter: drop-shadow(0px 3px 20px rgba(0, 0, 0, 0.6));
    opacity: .9;
    z-index: 10;}
    section .transportation .item .img{ margin-right: 20px; width: 100%;}
    /* section .transportation .item .img img{width: 100%; height: auto;} */
    section .transportation .item .content h3{ font-family: "Montserrat", sans-serif; color: #000;
      font-weight: bold;
      font-size: 20px;
      line-height: 1.5em;
      margin-bottom: 9px; text-align: left;}
      section .transportation .item .content p{font-size:15px; text-align: left; color: rgba(0,0,0,0.7);font-family: "Roboto", sans-serif;}
      @media (max-width: 575.98px) { 
        section .transportation .item{filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.2));
        background: #FFFFFF;
        display: block;
        align-items: center;
        margin-bottom: 30px;
       padding:40px;
        transition: .3s;
      
       }
       section .transportation .states-of-service{display: block;}
       section .transportation .item .img img{width: auto;}
      }