/***************DEFAULTS*****************/
:root {
    --main-one: #fac12e;
    --main-two: #00afb5;
    --main-three: #1f1f1f;
    --main-four: #eeeeee;


    --ff-titles: "Bebas Neue",  Arial, sans-serif;
    --ff-text: Helvetica, sans-serif;

    --borders-one: 16px;
    --borders-two: 24px;

    --shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, 
                rgba(0, 0, 0, 0.09) 0px 4px 2px, 
                rgba(0, 0, 0, 0.09) 0px 8px 4px, 
                rgba(0, 0, 0, 0.09) 0px 16px 8px, 
                rgba(0, 0, 0, 0.09) 0px 32px 16px;

    --fs-xxl: clamp(5rem, 7vw + 2rem, 16rem);
    --fs-xl: clamp(3rem, 5vw + 1rem, 10rem);
    --fs-xs: clamp(2rem, 4vw + 1rem, 6rem);
    --fs-titles: clamp(1.5rem, 1vw + 1.5rem, 3rem);
    --fs-sub-titles: clamp(1.4rem, 2.5vw + 0.8rem, 2rem);
    --fs-highlights: clamp(1rem, 2.2vw + 0.5rem, 1.5rem);
    --fs-text: clamp(0.9rem, 1.5vw + 0.4rem, 1rem);
}

* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    text-decoration: none;
    font-size: 1.1rem;
    color: var(--main-three);
    line-height: 100%;
}

*::before,
*::after {
    box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #808080; 
    border-radius: 8px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-seven); 
    border-radius: 8px;
    cursor: grab;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #0887aa; 
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
}
select {
    outline: none;
    border: none;
}
textarea {
    outline: none;
    border: none;
}

input:focus {
    outline: none;
    border: none;
}
select:focus {
    outline: none;
    border: none;
}
textarea:focus {
    outline: none;
    border: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body, html {
    margin: 0;
    padding: 0;
    background: var(--main-six);
    font-family: var(--ff-text);
    font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-titles);
}

p{
    margin: 0;
    padding: 0;
    line-height: 130%;
}


/***************KEYFRAMES****************/




/***************************************/

/*************MEDIAQUERIES**************/

@media (max-width: 1483px) { }
@media (max-width: 1280px) { }
@media (max-width: 1150px) { }
@media (max-width: 950px) {/*2 REM padding*/}
@media (max-width: 768px) { }
@media (max-width: 576px) { /*1 REM padding*/}
@media (max-width: 480px) { }
@media (max-width: 455px) { }
@media (max-width: 350px) { }
/**************************************/


/****************NAVBAR****************/

nav {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 1rem 2rem;
    gap: 2rem;
    overflow: hidden;
}
.nav-logo{
    min-width: 75px;
    min-height: 75px;
    width: 75px;
    height: 75px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.nav-logo img{
    width: 100%;
    height: auto;
    display: block;
    z-index: 1001;
}
.nav-responsive{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.nav-links-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 3;
}
.nav-links-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--main-four);
    border-radius: var(--borders-two);
    padding: 1.5rem 2rem;
}
.nav-links{
    min-width: 75px;
    text-align: center;
    white-space: nowrap;
}
.nav-links a{
    color: #686868;
}
.nav-links:hover a{
    color: inherit;
}
.nav-spacer{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}
.nav-socials{
    display: flex;
    flex-direction: row;
    gap: 1rem;  
}
.nav-socials svg:hover{
    stroke: var(--main-two);
    stroke-width: 2;
}
.nav-cta a{
    font-weight: 600;
    background: var(--main-one);
    padding: 1.5rem 3rem;
    border-radius: var(--borders-two);    
    white-space: nowrap;
    transition: all 0.2s;
}
.nav-cta a:hover{
    color: white;
    background: var(--main-two);   
}
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    background: var(--main-four);
    border-radius: 10px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: var(--main-three);
    border-radius: 2px;
    transition: 0.3s;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 8px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/**************************************/


/*****************HERO******************/
.hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 80vh;
}
.hero-image{
    padding:0 1rem;
    width: 100%;
    height: 100%;
    border-radius: var(--borders-two);
}
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    border-radius: var(--borders-two);
}
.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); 
    left: 6%;
    color: #fff;
    text-align: left;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 2rem;
}
.hero h1 {
    font-size: var(--fs-xl);
    font-family: var(--ff-titles);
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    letter-spacing: 2px;
}
.hero p {
    font-size: var(--fs-highlights);
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-btn {
    background: var(--main-one);
    color: var(--main-three);
    padding: 1rem 2.5rem;
    border-radius: var(--borders-one);
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s;
    margin-top: 2rem;
}
.hero-btn:hover {
    background: var(--main-two);
    color: #fff;
}
/**************************************/


/*****************FMCSA****************/
.company-info-wrapper{
    margin-top: 1rem;
    padding: 0 1rem;
}
.company-info-container{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 80%;
}
.company-fmcsa-container{
    display: flex;
    flex-direction: row;
    background: var(--main-three);
    border-radius: var(--borders-two);
    align-items: center;
    justify-content: space-evenly;
    width: 60%;
    gap: 1rem;
    padding: 0 2rem;
    height: 225px;
}
.company-mc,
.company-dot{
    width: 50%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.company-mc{
    border-right: 1px solid var(--main-four);
}
.company-mc h2,
.company-dot h2{
    color: white;
    font-size: var(--fs-highlights);
    font-family: var(--ff-text);
}
.company-mc p,
.company-dot p{
    color: white;
    margin-top: 0.5rem;
    font-size: 1.4rem;
}
.company-dispatch-container{
    display: flex;
    flex-direction: row;
    background: var(--main-four);
    border-radius: var(--borders-two);
    min-width: 400px;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    height: 225px;
}
.company-dispatch{
    border-radius: var(--borders-two);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.company-dispatch-container:hover{
    background: var(--main-two);
}
.company-dispatch-container:hover .company-dispatch h2{
    color: white;
}
.company-dispatch-container:hover .company-dispatch p{
    color: white;
}
.company-dispatch-container:hover .company-dispatch .company-phone .company-image{
    background: var(--main-one);
}
.company-dispatch-container:hover .company-dispatch .company-phone{
    border: 1px solid var(--main-one);
}
.company-dispatch h2{
    font-size: var(--fs-highlights);
    font-family: var(--ff-text);
    letter-spacing:-1px;
}
.company-dispatch p{
    font-size: var(--fs-highlights);
}
.company-phone{
    margin-top: 0.5rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    border: 1px solid #c0c0c0;
    border-radius: 10px;
    padding-left: 0.5rem;
}
.company-phone .company-image{
    background: var(--main-three);
    padding: 0.5rem;
    border-radius: 10px;
}
/**************************************/

/***************SERVICES**************/
.services-wrapper{
    background: url('../media/backgrounds/transportation-logistic.webp') no-repeat center center/contain;
    padding: 0 6rem;
    margin: 6rem 0;
}
.services-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}
.services-ls{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 50%;
    align-items: flex-start;
}
.services-ls-title h2{
    font-size: var(--fs-xl);
}
.services-ls-title h2 span{
    font-size: var(--fs-xl);
    color: var(--main-two);
}
.services-ls-cta{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 10px;
    gap: 1rem;
    padding: 0 0 0 2rem;
    border: 1px solid var(--main-one);
}
.services-ls-cta svg{
    background: var(--main-three);
    border-radius: 10px;
}
.services-rs{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.services-rs-block{
    display: flex;
    flex-direction: row;
    padding: 3rem 0;
    flex: 1;
    gap: 3rem;
    border-bottom: 1px solid var(--main-three);
    width: 80%;
}
.services-rs-block:nth-child(1){
    padding-top: 0;
}
.services-rs-block:nth-child(3){
    border: none;
}
.services-rs-block-image img{
    transition: all 0.5s ease-in-out;
    display: block;
}
.services-rs-block:hover .services-rs-block-image img{
    transform: translate(-20px, 20px) scale(1.2);
}
.services-rs-block:hover .services-rs-block-title h2{
    color: var(--main-one);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}
.services-rs-block-title h2{
    font-family: var(--fs-text);
    font-size: var(--fs-sub-titles);
    letter-spacing: -1px;
    margin-bottom: 1rem;
    transition: all 0.5s ease-in-out;
}
.services-rs-cta{
    border-radius: 10px;
    gap: 1rem;
    padding: 0 0 0 2rem;
    border: 1px solid var(--main-one);
    display: none;
    margin: 2rem auto 0 auto;
}
.services-rs-cta svg{
    background: var(--main-three);
    border-radius: 10px;
}
/*************************************/



/****************ABOUT****************/
.about-wrapper{
    padding: 0 1rem;    
}
.about-container{
    display: flex;
    flex-direction: column;
    background: var(--main-three);
    border-radius: var(--borders-two);
    padding: 6rem 2rem 2rem 2rem;
}
.about-container h2{
    color: white;
    font-size: var(--fs-sub-titles);
}
.about-number{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    border-top: 1px solid white;
    padding: 2rem 0 0 0;
}
.counter-number{
    color: var(--main-three);
    font-family: var(--ff-titles);
    letter-spacing: 5px;
    font-size: 13rem;
    text-shadow: 1px 1px 0px var(--main-one),
                -1px -1px 0px var(--main-one),
                -1px 1px 0px var(--main-one),
                1px -1px 0px var(--main-one);
}
.about-title h4{
    color: white;
    writing-mode: sideways-lr;
    letter-spacing: 2px;
    font-family: var(--ff-text);
}
.about-info{
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
    gap: 2rem;
    padding: 6rem 3rem;
}
.about-info-title h3{
    color: white;
    font-size: var(--fs-xs);
}
.about-info-text{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}
.about-info-text p,
.about-info-text p strong{
    color: white;
}
.about-info-cta{
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0 0 0 2rem;
    border: 1px solid white;
    border-radius: 10px;
}
.about-info-cta svg{
    background: white;
    padding: 0.5rem;
    border-radius: 10px;
}
.about-banner{
    width: 100%;
    height: 80vh;
    border-radius: var(--borders-two);
    position: relative;;
}
.about-banner-image{
    width: 100%;
    height: 100%;
    border-radius: var(--borders-two);
    overflow: hidden;
}
.about-banner-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--borders-two);
    display: block;
    animation: zoom-infinite 35s ease-in-out infinite;
}
.about-banner-text{
    position: absolute;
    bottom: 2rem;
    right: 0;
    padding: 0 2rem;
}
.about-banner-text h3{
    color: white;
    font-size: 3.5rem;
    text-align: right;
    font-family: var(--ff-titles);
    letter-spacing: 3px;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.9);
}
@keyframes zoom-infinite {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/*************************************/



/***************COMPANY*****************/
.company-wrapper{
    padding: 6rem 0 0 0;
}
.company-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
.company-image{
    flex: 1;
}
.company-image img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.company-info{
    flex: 1;
    padding: 0 6rem 0 0;
}
.company-image h2{
    font-size: var(--fs-xl);
    margin-bottom: 1rem;
    padding: 0 1rem;
    display: none;
}
.company-image h2 span{
    font-size: var(--fs-xl);
    color: var(--main-one);
}
.company-info h2{
    font-size: var(--fs-xl);
    margin-bottom: 4rem;
}
.company-info h2 span{
    font-size: var(--fs-xl);
    color: var(--main-one);
}
.company-item {
    border-bottom: 1px solid #c0c0c0;
}
.company-item:nth-child(2) {
    border-top: 1px solid #c0c0c0;
}
.company-question {
    width: 100%;
    background-color: transparent;
    border: none;
    text-align: left;
    padding: 2rem 0;
    color: var(--main-three);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s linear;
}
.company-question:hover {
    color: var(--main-two);
}
.company-item.active .company-question {
    color: var(--main-two);
    font-weight: bold;
}
.company-icon {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--main-three);
    transition: all 0.3s linear;
}
.company-question:hover .company-icon {
    color: var(--main-one);
}
.company-item.active .company-icon {
    color: var(--main-one);
}
.company-item.active .company-icon {
    transform: rotate(45deg);
}
.company-item button:hover{
    background: none;
}
.company-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.company-item.active .company-answer {
    max-height: 400px; 
    padding: 0 1rem  1rem 1rem;
}
/*************************************/


/***************SIGN*****************/
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 6rem 0 0rem 0;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee-left-right 80s linear infinite;
}
.marquee .marquee-text{
    font-size: 2rem;
    font-family: var(--ff-titles);
    display: flex;
    flex-direction: row;
    align-items: center;
    letter-spacing: 7px;
    color: var(--main-three);
}
.marquee .marquee-text span{
    font-size: 4rem;
    font-family: var(--ff-titles);
    letter-spacing: 7px;
    color: var(--main-one);
}


@keyframes marquee-left-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-410%);
  }
}


/*************************************/


/***************FOOTER****************/
footer{
    background: url('../media/backgrounds/world-freight-services.svg') no-repeat left center/contain #1f1f1f;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    padding: 6rem 6rem 0 6rem;
    border-top-left-radius: var(--borders-two);
    border-top-right-radius: var(--borders-two);
}
.footer-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.footer-info-container{
    flex: 1;
}
.footer-info-container{
    display: flex;
    flex-direction: column;
}
.footer-info-container h2{
    color: white;
    font-size: var(--fs-xs);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.footer-info-container p{
    color: white;
}
.footer-info{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 4rem;
}
.footer-info-contact{
    width: calc(100% / 2 - 4rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-info-contact h3{
    font-family: var(--ff-text);
    font-size: var(--fs-highlights);
    color: var(--main-two);
}
.footer-social{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.footer-social a svg:hover{
    stroke: var(--main-one);
}
.footer-social svg{
    margin-left: -4px;
}
.footer-info-contact a{
    color: white;
}
.footer-info-contact a:hover{
    color: var(--main-one);
}
.footer-info-form{
    flex: 1;
}
.form-container{
    background: var(--main-four);
    border-radius: var(--borders-two);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem;
    width: 700px; 
    max-width: 700px;
    min-width: 650px;
    margin: 0 auto;
}
.footer-info-title{
    margin-bottom: 2rem;
}
.footer-info-title h2{
    font-family: var(--ff-text);
    text-transform: capitalize;
    font-size: var(--fs-titles);
}
.contact-form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    
}
.form-group{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.contact-form .form-group input, .contact-form .form-group select, .contact-form .form-group textarea{
    background: transparent;
    width: 100%;
    border-radius: 10px;
    padding: 1.2rem 1rem;
    border: 1px solid var(--main-three);
    resize: none;
}
.contact-form .form-group input::placeholder, .contact-form .form-group textarea::placeholder, .contact-form .form-group select{
    color: #868686;
    font-family: var(--ff-text);
}
.contact-form .form-group select{
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    background-image: url(../media/icons/circle-arrow-down.svg);
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 2rem;
    cursor: pointer;
}
.contact-form .form-group select:hover{
    background-image: url(../media/icons/circle-arrow-down2.svg);
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 2rem;
}
.contact-form .form-group select option {
    color: #1f1f1f;
    border-radius: 10px;
}
.contact-form  button{
    background: var(--main-one);
    border: none;
    outline: none;
    padding: 1.2rem 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-transform: uppercase;
    font-weight: bolder;
}
.contact-form  button:hover{
    background: var(--main-two);
    color: white;
}
.contact-disclosure{
    font-size: 0.6rem;
    margin-top: 2rem;
    text-align: center;
}
.footer__copyright{
    margin: 6rem 0 0.5rem 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}
.footer__copyright a{
    color: white;
    text-align: center;
    font-size: 0.8rem;
}
.footer__copyright a span{
    color: white;
    font-size: 0.8rem;
}

/*************************************/


/***************PRIVACY***************/

.privacy-wrapper{
    padding: 15rem 1rem;
}
.privacy-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    background: var(--main-four);
    margin: 0 auto;
    border-radius: var(--borders-two);
    padding: 4rem;
    gap: 4rem;
}
.privacy-image{
    flex: 1;
    border-right: 1px solid var(--main-three);
}
.privacy-image img{
    width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.privacy-text{
    flex: 1;
}
.privacy-text p{
    font-weight: 500;
    font-size: 1.2rem;
}

/*************************************/


@media (max-width: 1483px) { 
/***************FOOTER*****************/
    .form-container{
        width: 600px; 
        max-width: 600px;
        min-width: 550px;
    }
/*************************************/
}


@media (max-width: 1280px) { 
/***************SERVICES**************/
    .services-rs-block{
        width: 100%;
    }
/**************************************/

/***************COMPANY*****************/
    .company-info{
        padding: 0 3rem 0 0;
    }
/**************************************/

/***************FOOTER*****************/
    footer{
        padding: 6rem 3rem 0rem 3rem;
    }
    .form-container{
        padding: 2rem;
    }

/**************************************/
}

@media (max-width: 1150px) { 
/****************NAVBAR****************/
    nav {
        gap: 1rem;
    }
/**************************************/

/***************FOOTER*****************/
    .form-container{
        width: 500px; 
        max-width: 500px;
        min-width: 450px;
    }
/*************************************/

/***************PRIVACY***************/
    .privacy-container{
        width: 100%;
    }
/**************************************/

}

@media (max-width: 950px) {
/****************NAVBAR****************/
    nav {
        flex-wrap: wrap;
        padding: 1rem;
    }
    .nav-logo{
        min-width: 65px;
        min-height: 65px;
        width: 65px;
        height: 65px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .nav-responsive{
        position: fixed;
        top: 0;
        left: 0;
        width: 50vw;
        max-width: 450px;
        height: 100vh;
        background: var(--main-four);
        flex-direction: column;
        gap: 0;
        z-index: 1000;
        transform: translateX(-130%);
        transition: transform 0.8s ease-in-out;
        padding: 2rem 1rem;
    }
    .nav-responsive.active {
        transform: translateX(0);    
    }
    .nav-toggle {
        display: flex;
    }
    .nav-links-container {
        flex-direction: column;
        width: 100%;
        border-radius: 0;
        padding: 0;
    }
    .nav-links {
        width: 100%;
        padding: 1rem 2rem;
        text-align: left;
        border-bottom: 1px solid #ddd;
        border-radius: var(--borders-two);
    }
    .nav-links:hover {
        background: var(--main-two);
    }
    .nav-links:hover a{
        color: white;
    }
    .nav-spacer {
        gap: 4rem;
        flex-direction: column-reverse;
    }
    .nav-socials {
        gap: 0.5rem;
        justify-content: space-between;
        width: 100%;
    }
    .nav-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .nav-toggle {
        display: flex;
    }

/**************************************/

/*****************HERO******************/
    .hero-content {
        left: 0;
        width: 100%;
        align-items: center;
    }
    .hero h1 {
        font-size: var(--fs-xxl);
        text-align: center;
    }
    .hero p {
        text-align: center;
    }
/**************************************/

/*****************FMCSA****************/
    .company-info-container{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .company-fmcsa-container{
        width: 100%;
        padding: 1rem;
    }
    .company-mc,
    .company-dot{
        width: 100%;
        align-items: center;
    }
    .company-dispatch-container{
        min-width: 100%;
    }
/**************************************/

/***************SERVICES**************/
    .services-ls-title h2{
        text-align: center;
    }
    .services-wrapper{
        padding: 0 1rem;
    }
    .services-container{
        flex-direction: column;
        gap: 3rem;
        width: 100%;
    }
    .services-ls{
        width: 100%;
    }
    .services-ls-cta{
        display: none;
    }
    .services-rs{
        width: 100%;
    }
    .services-rs-block{
        gap: 2rem;
        justify-content: center;
    }
    .services-rs-cta{
        display: flex;
        flex-direction: row;
        align-items: center;
    }

/**************************************/


/****************ABOUT****************/
    .about-info{
        flex-direction: column;
        padding: 6rem 0rem;
    }
    .about-container{
        padding: 6rem 1rem 2rem 1rem;
    }
    .about-banner-text h3{
        font-size: 2.5rem;
    }
    .about-banner-text h3 span{
        font-size: 2.5rem;
    }
/*************************************/

/***************COMPANY*****************/
    .company-image h2{
        display: block;
        text-align: center;
    }
    .company-info h2{
        display: none;
    }
    .company-container {
        flex-direction: column;
    }
    .company-image img{
        width: 70%;
    }
        
    .company-info{
        padding: 0 1rem;
    }

/**************************************/

/***************FOOTER*****************/
    footer{
        padding: 6rem 1rem 0rem 1rem;
    }
    .footer-container{
        flex-direction: column;
        gap: 4rem;
    }

    .footer-info-container{
        
        align-items: center;
    }
    .footer-info-container h2{
        text-align: center;
    }
    .footer-info-container p{
        text-align: center;
    }
    .footer-info-contact{
        align-items: center;
    }
    .footer-social{
        justify-content: center;
        width: 100%;
    }
    .footer-social svg{
        margin-left: 0px;
    }
    .footer-info-contact h3{
        text-align: center;
    }
    .footer-social a{
        text-align: center;
    }
    .footer-social p{
        text-align: center;
    }
    .form-container{
        width: 700px; 
        max-width: 700px;
        min-width: 650px;
    }

/**************************************/

/***************PRIVACY***************/
    .privacy-container{
        width: 100%;
        flex-direction: column;
        gap: 2rem;
    }
    .privacy-image{
        border-right: none;
    }
    .privacy-text{
        border-top: 1px solid var(--main-three);
        padding-top: 2rem;
    }
/**************************************/

  
}

@media (max-width: 768px) { 

/****************ABOUT****************/
    .counter-number{
        letter-spacing: 5px;
        font-size: 8rem;
    }
/*************************************/

/***************FOOTER*****************/
    .form-container{
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
/*************************************/

/***************PRIVACY***************/
    .privacy-container{
        padding: 2rem;
    }
    .privacy-text p{
        text-align: center;
    }
/**************************************/
}

@media (max-width: 576px) { /*1 REM padding*/

/*****************HERO******************/
    .hero h1 {
        font-size: var(--fs-xl);
    }
    .hero p {
        font-size: var(--fs-text);
    }
/**************************************/

/****************NAVBAR****************/
    .nav-responsive{
        width: 100%;
    }
/**************************************/


/*****************FMCSA****************/
    .company-fmcsa-container{
        display: flex;
        flex-direction: column;
    }
    .company-mc,
    .company-dot{
        width: 100%;
        align-items: center;
    }
    .company-mc{
        border-right: none;
        border-bottom: 1px solid rgb(63, 63, 63);
        padding-bottom: 1rem;
    }
/**************************************/


/***************SERVICES**************/
    .services-rs{
        padding: 0 1rem;
    }
/**************************************/

/****************ABOUT****************/
    .about-number{
        gap: 1rem;
    }
    .counter-number{
        font-size: 7.5rem;
    }

/*************************************/

/****************ABOUT****************/
    .about-banner-text{
        padding: 0 1rem;
    }
    .about-banner-text h3{
        font-size: 2.5rem;
        text-align: center;
    }
    .about-banner-text h3 span{
        font-size: 2.5rem;
        text-align: center;
    }
/*************************************/

/***************FOOTER*****************/
    .footer-info-contact{
        width: 100%;
    }
    .form-group{
        flex-direction: column;
    }

/*************************************/


}

@media (max-width: 480px) {

/***************SERVICES**************/
    .services-rs{
        padding: 0;
    }
    .services-rs-block{
        flex-direction: column;
        align-items: center;
    }
    .services-rs-block-title h2{
        text-align: center;
    }
    .services-rs-block-title p{
        text-align: center;
    }
/**************************************/

/****************ABOUT****************/
    .counter-number{
        font-size: 6rem;
    }
/*************************************/

}
@media (max-width: 455px) { 
/****************ABOUT****************/
    .counter-number{
        font-size: 4.8rem;
    }
/*************************************/

}
@media (max-width: 350px) { 
/****************ABOUT****************/
    .counter-number{
        font-size: 3.5rem;
    }

/*************************************/
}