@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    line-height: 1.3;
    letter-spacing: 1px;
}

a {
    color: #fff;
    text-decoration: none;
}

ul {
    list-style: none;
}

.section-container {
    max-width: 1180px;
    margin: auto;
    padding: 0 20px;
}

.section-btn-dark a {
    color: #1D1C1C;
    border: 2px solid #1D1C1C;
    border-radius: 50px;
    padding: 10px 38px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: background-color 0.2s ease,
        color 0.2s ease,
        border 0.2s ease;
}

.section-btn-dark a:hover {
    background-color: #BF1E2d;
    border: 2px solid #BF1E2d;
    color: #fff;
}

.section-btn-light a {
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 10px 38px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: background-color 0.2s ease,
        color 0.2s ease,
        border 0.2s ease;
}

.section-btn-light a:hover {
    background-color: #fff;
    color: #BF1E2d;
}

/* Hamburger Menu Icon */
.hamburger {
    cursor: pointer;
    width: 40px;
    height: 18px;
    position: relative;
    background: none;
    border: none;
    z-index: 100;
    transition: all 0.25;
    display: none;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #ffffff;
    transform: rotate(0);
    transition: all 0.5s;
}

.hamburger-middle {
    transform: translateY(7px);
}

.hamburger-bottom {
    transform: translateY(14px);
}

.open .hamburger-top {
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-middle {
    display: none;
}

.open .hamburger-bottom {
    transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 110px;
    right: 0;
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    height: 100%;
    padding: 30px 54px;
    box-shadow: 1px 1px 5px 0 rgb(97 95 109 / 20%);
    transition: all 0.3s;
    z-index: 1000;
}

.mobile-menu ul {
    line-height: 3;
    padding-bottom: 10px;
    margin-bottom: 0;
    margin-top: 0;
    text-align: right;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s ease;
    width: 100%;
}

.mobile-menu a:hover {
    color: #A62B34;
    text-shadow: 0px 2px 4px rgba(190, 11, 11, 0.572);
}

.hidden {
    transform: translateX(100%);
}

.no-scroll {
    overflow: hidden;
}

/* Header: Top Bar */
section.header-top-bar {
    background-color: #A62B34;
}

.bar-contact-info {
    display: flex;
}

.bar-contact-info img {
    width: 18px;
    margin-right: 15px;
}

.bar-contact-info p {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 300;
}

.bar-contact-info .phone,
.bar-contact-info .email {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
}

.bar-contact-info .phone:hover,
.bar-contact-info .email:hover {
    cursor: pointer;
}

.contact-info-divider {
    border-left: 1px solid rgba(240, 240, 240, 0.656);
    margin: auto 20px;
    height: 60%;
}

.header-top-bar-container {
    display: flex;
    justify-content: space-between;
}

.bar-social-icons {
    display: flex;
}

.bar-social-icons a {
    align-items: center;
    padding: 8px 10px;
    transition: background-color 0.3s ease;
}

.bar-social-icons a:hover {
    background-color: #bf313b;
}

.bar-social-icons img {
    height: 20px;
}

/* Header: Main Navbar */
section.main-header {
    background-color: #000;
}

.main-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo a img {
    width: 200px;
}

ul.navbar-nav {
    display: flex;
}

.navbar-nav li a {
    display: flex;
    align-items: center;
    height: 80px;
}

ul.navbar-nav li {
    padding: 0 10px;
    margin-left: 20px;
    text-transform: uppercase;
    transition: box-shadow 0.3s ease;
}

ul.navbar-nav li:hover {
    box-shadow: inset 0px -5px #bf313b;
    background-color: #212121;
    cursor: pointer;
}

    /* dropdown menu style */
.navbar-nav li a svg {
    padding: 0;
    margin-left: 10px;
    margin-bottom: 2px;
    transition: transform 400ms ease;
}

.navbar-nav li a:hover svg {
    transform: rotate(180deg);
    margin-bottom: 4px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #000000;
    margin-left: -11px;
    padding: 0;
}

.dropdown-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item .dropdown-menu ul {
    padding: 0;
    margin: 0;
}

.dropdown-item .dropdown-menu li {
    padding: 0 20px;
    margin: 0;
}

.dropdown-item .dropdown-menu li:hover {
    background-color: transparent;
    box-shadow: none;
}

.dropdown-item .dropdown-menu li a {
    color: #A8A8A8;
    text-transform: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    height: 60px;
}

.dropdown-item .dropdown-menu li a:hover {
    color: #A62B34;
}

.menu-divider {
    border: 1px solid #2a2a2a52;
    width: 90%;
    margin: auto;
}

/* Main Section/Hero */
section.main-section {
    background: linear-gradient(18.12deg, rgba(5, 5, 5, 0.8372) 44.97%, rgba(5, 5, 5, 0.2576) 113.72%), url("img/main-bg.jpg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.main-content {
    max-width: 800px;
    margin: auto;
    padding: 100px 20px;
}

.main-content h1 {
    text-align: center;
    color: #fff;
    font-size: 3.9rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.main-content .main-btn {
    text-align: center;
}

.main-content .main-btn a {
    background-color: #BF1E2d;
    font-size: 1.3rem;
    padding: 16px 45px;
    border-radius: 50px;
    transition: background-color 0.2s ease;
}

.main-content .main-btn a:hover {
    background-color: #e12538;
}

.mobile-hero-cards {
    display: none;
}

/* hero cards */
.cards-wrapper {
    justify-content: flex-end;
    margin: 0 20px;
}

.hero-cards {
    display: flex;
    max-width: 800px;
    margin: auto;
}

.hero-cards .card {
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    justify-content: space-between;
    cursor: pointer;
    background: rgba(122, 0, 0, 0.44);
    transition: background-color 0.2s ease,
        box-shadow 300ms ease;

}

.hero-cards .card:hover {
    background: rgba(195, 12, 12, 0.333);
    box-shadow: 0 9px #bf313b;
}

.hero-cards .card img {
    width: 120px;
}

.hero-cards .card3 img {
    width: 78px;
}

.hero-cards .card4 img {
    width: 68px;
}

.hero-cards .card h3 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 18px;
    align-content: flex-end;
}

/* About Section */
section.about-section {
    background: linear-gradient(95.69deg, rgba(255, 255, 255, 0.99) 53.67%, rgba(217, 217, 217, 0.22) 101.57%), url("img/city-bg.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    padding: 130px 0;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-content .divider {
    width: 105px;
    height: 3px;
    background: #BF1E2D;
}

.about-content p {
    max-width: 760px;
    margin: 40px 0;
    font-size: 1.1rem;
    font-weight: 400;
}

.about-content .section-btn-dark {
    margin-top: 80px;
}


/* Left/Right Cards */
section.two-cards-section {
    display: flex;
}

.left-card-container {
    background: linear-gradient(261.66deg, rgba(217, 217, 217, 0.93) 57.77%, rgba(217, 217, 217, 0.3) 92.64%), url("img/buildings-bg.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    padding: 130px 20px;
    width: 50%;
    display: flex;
}

.left-card-content {
    width: 550px;
    margin-left: auto;
}

.right-card-container {
    background: linear-gradient(93.52deg, rgba(191, 51, 61, 0.99) 52.3%, rgba(191, 51, 61, 0.33) 97.56%), url("img/truck-stop.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    padding: 130px 20px;
    width: 50%;
}

.right-card-content {
    margin-left: 50px;
}

.two-cards-section h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.left-card-content .divider {
    width: 85px;
    height: 3px;
    background: #BF1E2D;
}

.right-card-content .divider {
    width: 85px;
    height: 3px;
    background: #ffffff;
}

.left-card-content p {
    font-weight: 400;
    font-size: 1.1rem;
}

.right-card-content p {
    font-weight: 300;
    font-size: 1.1rem;
}

.two-cards-section p {
    margin: 70px 0 120px 0;
    max-width: 550px;
    line-height: 1.8rem;
}

.right-card-content h3,
.right-card-content p {
    color: #fff;
}

/* Section D */
section.section-D {
    background-color: #F4F4F4;
    padding: 120px 0;
}

.section-container-D .content {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.section-container-D .content h3 {
    font-size: 2.1rem;
    font-weight: 600;
    color: #BF353F;
    margin-bottom: 20px;
}

.section-container-D .content p {
    font-size: 1.4rem;
}

.section-container-D .content img {
    width: 450px;
    margin-right: 30px;
}

/* Services Section */
section.services {
    display: flex;
    justify-content: end;
    background-color: #F4F4F4;
}

section.services .grey-bg {
    background-color: #F4F4F4;
    position: relative;
    height: 50%;
}

.services-container {
    background-color: #181818;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 55px 15px rgba(0, 0, 0, 0.25);
    border-radius: 351.5px 0px 0px 351.5px;
    margin-left: 90px;
    padding: 75px;
    margin-bottom: -280px;
}

.services-container img {
    width: 400px;
}

.services-container .text {
    margin: 0 60px;
    max-width: 600px;
    text-align: center;
}

.services-container .text h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #BF353F;
    margin-bottom: 20px;
}

.services-container .text p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8rem;
    color: #C5C5C5;
    margin-top: 40px;
}

/* Contact Secion */
section.contact {
    padding: 140px 20px;
    margin-top: 280px;
}

section.contact .contact-container {
    background: linear-gradient(90.99deg, #5C0505 27.84%, #8B0505 96.05%);
    box-shadow: 0px 0px 55px 15px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    padding: 68px 50px;
    display: flex;
    align-items: center;
    max-width: 990px;
    transition: box-shadow 100ms ease-in;
}

section.contact .contact-container:hover {
    box-shadow: 0px 0px 55px 15px rgba(0, 0, 0, 0.321);
}

.contact-container .call-to-action {
    margin-left: 80px;
}

section.contact .contact-container h4 {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 4px;
}

section.contact .contact-container p {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 60px;
    max-width: 300px;
}

/* Footer Secion */
.red-accent-line {
    background: #BF333D;
    height: 4px;
}

section.footer {
    background: #141414;
}

.footer-container {
    display: flex;
    max-width: 1140px;
    padding: 40px 20px;
}

.footer-container .logo-column {
    margin-right: 40px;
    margin-top: 20px;
}

.footer-container .logo-column img {
    width: 160px;
}

.footer-contact .phone, 
.footer-contact .email {
    display: flex;
    align-items: center;
    margin: 30px 0;
    cursor: pointer;
}

.footer-contact .phone img,
.footer-contact .email img {
    width: 20px;
    margin-right: 20px;
}

.footer-contact .phone p, 
.footer-contact .email p {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-nav ul {
    display: flex;
}

.footer-nav ul li {
    justify-content: space-between;
    padding: 20px 30px;
    height: 140px;
    cursor: pointer;
}

.footer-nav ul li:hover {
    background: rgba(150, 149, 149, 0.11);
}

.footer-nav ul li a p {
    font-size: 1rem;
}

.footer-nav .link-info p {
    color: #7A7A7A;
    margin-top: 20px;
    font-size: 0.9rem;
}

.footer-divider {
    max-width: 1200px;
    height: 1px;
    background: rgba(188, 188, 188, 0.194);
    margin: auto;
}

.footer-base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    padding: 20px 20px;
}

.footer-base p {
    color: #7A7A7A;
    font-size: 0.7rem;
}

.footer-social {
    width: 180px;
    height: 28px;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.footer-base a img {
    width: 18px;
}

.footer-base a img:hover {
    width: 19px;
}


    /* ==== ABOUT US PAGE ==== */
/* Main Section */
section.about-main-section {
    background: linear-gradient(18.12deg, rgba(29, 29, 29, 0.8464) 53.71%, rgba(5, 5, 5, 0.2576) 146.96%), url("img/panorama-city.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-main-content {
    padding: 85px 0;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    max-width: 650px;
}

.about-main-content .divider {
    width: 120px;
    height: 3px;
    background: #BF1E2D;
    margin: 20px 0;
}

.about-main-content h1 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 600;
}

.about-main-content p {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    margin-top: 10px;
}

/* About Checklist Section */
section.checklist-section {
    background-color: #06141E;
}

section.checklist-section .checklist-container {
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

section.checklist-section img {
    width: 470px;
}

section.checklist-section h3 {
    color: #BD101C;
    font-size: 1rem;
    text-transform: uppercase;
}

section.checklist-section h2 {
    color: #fff;
    font-size: 2.3rem;
    padding: 20px 0;
    font-weight: 600;
}

section.checklist-section h2 .red-text {
    color: #BD101C;
}

.section-content {
    padding: 50px 0 50px 100px;
}

.checklist .list-item {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.checklist .list-item img {
    width: 40px;
}

.checklist .list-item p {
    color: #fff;
    font-size: 0.9rem;
    margin-left: 30px;
}

/* FAQ Section */
section.faq-section {
    background-color: #F7F7F9;
    height: 600px;
}

.bg-pattern {
    width: 200px;
    position: absolute;
    margin-left: -80px;
}

.faq-container {
    display: flex;
    padding: 120px 20px;
    /* align-items: center; */
    /* justify-content: center; */
    /* margin: auto; */
}

.faq-info-text {
    z-index: 100;
}

.faq-info-text h3 {
    color: #BD101C;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-info-text h2 {
    color: #0E0E2C;
    font-size: 2rem;
    margin-bottom: 35px;
}

.faq-info-text p {
    color: #6B6B7E;
    font-size: 1.1rem;
    max-width: 400px;
    line-height: 2rem;
}

/* === Accordion Start ===  */
.faq-accordion-container {
    padding: 0 40px;
    margin-left: 250px;
    margin: auto;
}

.accordion {
    margin: 0 40px;
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 0 30px;
    margin-bottom: 20px;
    background: #FFFFFF;
    border-radius: 4px;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05));
  }
  
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #1D1D39;
    /* color: #A62B34; */
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  }

  .accordion button .icon {
    color: #A62B34;
  }
  
  .accordion button:hover,
  .accordion button:focus {
    cursor: pointer;
    color: #A62B34;
  }
  
  .accordion button:hover::after,
  .accordion button:focus::after {
    cursor: pointer;
    color: #A62B34;
    border: 1px solid #A62B34;
  }
  
  .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
  }
  
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
  }
  
  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  
  .accordion button[aria-expanded='true'] {
    color: #A62B34;
  }
  .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 11em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
  }
  /* === Accordion END ===  */


    /* ==== CONTACT US PAGE ==== */
section.contact-info-section {
    background-image: url("img/BG-dotted-patter.png");
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 580px;
}

.contact-cards {
    display: flex;
    justify-content: space-between;
    padding: 80px 0;
}

.contact-card {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
}

.center-card {
    margin: 0 30px;
}

.contact-card .icon {
    background-color: #BF1E2D;
    border-radius: 50%;
    padding: 15px 15px 10px 15px;
    transition: background-color 150ms ease;
}

.contact-card:hover .icon {
    background-color: #FF0000;
}

.contact-card .icon img {
    width: 45px;
    height: 45px;
}

.contact-card .text {
    margin-left: 30px;
}

.contact-card .text .title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card .text .info {
    color: #8D0404;
    font-size: 0.9rem;
}

/* Contact Form */
.form-title {
    margin-left: 10px;
}

.form-title p {
    font-size: 1.7rem;
    font-weight: 600;
}

.form-title .divider {
    width: 70px;
    height: 3px;
    background: #BF1E2D;
    margin: 20px 0;
}

section.form-section {
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 80px;
}

.contact-form-container {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.04);
    border-radius: 15px;
    max-width: 1140px;
    padding: 50px 40px;
    margin-top: -280px;
    /* height: 700px; */
}

.main-form .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-item {
    display: flex;
    align-items: center;
    width: 100%;
}

.input-field {
    position: relative;
    width: 96%;
    margin: 0 auto;
}

.column-input-field {
    width: 98%;
}

.textarea-input-item {
    align-items: flex-start;
}

.textarea-input-item img {
    margin-top: 28px;
}

.input-item img {
    width: 24px;
    height: 24px;
    margin-left: 28px;
    z-index: 100;
    position: absolute;
    /* display: block; */
}

.input-item input {
    width: 100%;
    height: 65px;
    padding: 20px 50px;
    background-color: #fff;
    border: 2px solid rgba(15, 51, 104, 0.151);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #9B9B9B;
    margin: 10px 0;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.textarea-input-item textarea {
    height: 180px;
    width: 100%;
    padding: 20px 50px;
    background-color: #fff;
    border: 2px solid rgba(15, 51, 104, 0.151);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #9B9B9B;
    margin: 10px 0;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #BF1E2D;
    border-width: 1px;
  }

.form-btn {
    margin-left: 10px;
    margin-top: 20px;
}

.form-btn button {
    background-color: #BF1E2d;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    padding: 16px 45px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form-btn button:hover {
    background-color: #e12538;
}

/* Form Success, Page Not Found */
section.success,
.not-found {
    margin: 0 auto;
    display: flex;
    text-align: center;
    padding: 250px 0;
}

section.success h1,
section.not-found h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

section.success p,
section.not-found p {
    font-size: 1.1rem;
    margin-bottom: 80px;
}


    /* ==== TRUCKLOAD PAGE ==== */
section.truckload-main-section {
    background-color: #0A0A0A;
}

.truckload-main-content {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.truckload-main-content .truckload-section-text {
    color: #fff;
    margin-right: 50px;
    text-align: left;
    padding-left: 20px;
}

.truckload-main-content h1 {
    font-size: 2.7rem;
    padding-bottom: 20px;
}

.red-text {
    color: #BD101C;
}

.truckload-main-content p {
    margin-top: 28px;
    line-height: 1.8rem;
}

.truckload-main-content img {
    width: 480px;
}

/* Cards section */
section.truckload-cards {
    background-color: #F0F5F6;
}

.section-cards-container {
    padding: 100px 0;
}

.cards-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-cards-container h2 {
    margin-bottom: 18px;
    font-size: 2rem;
}

.section-cards-container p {
    text-align: center;
    margin-bottom: 45px;
    font-size: 1rem;
    color: #6B6B7E;
    max-width: 400px;
}

.cards {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.card-content p {
    margin-bottom: 0;
}

.truckload-cards .card {
    align-items: center;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    width: 340px;
    height: 300px;
    justify-content: center;
    margin: 0 10px;
    transition: box-shadow 0.2s ease;
}

.truckload-cards .card:hover {
    /* box-shadow: 0 4px #bf313b; */
    box-shadow: 0 0 3px 0 #bf313b;
}

.card img {
    width: 80px;
}

.card1 img {
    width: 74px;
}

.card3 img {
    width: 85px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.card h4 {
    padding: 20px 0;
}

.card p {
    width: 82%;
    font-size: 0.9rem;
}

/* Contact card */
section.truckload-contact {
    margin: 0;
}

    /* ==== LESS THAN TRUCKLOAD PAGE ==== */
/* Main section */
section.ltl-main-section {
    background-color: #0A0A0A;
    background-image: url("img/bg-circle-lines.png");
    display: flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.truckload-main-content {
    display: flex;
    align-items: center;
    padding: 80px 0;
    justify-content: center;
    text-align: center;
}

.ltl-main-content .section-text {
    color: #fff;
    text-align: center;
    margin: 140px 0;
}

.ltl-main-content h1 {
    font-size: 3.2rem;
    padding-bottom: 20px;
}

.ltl-main-content p {
    margin-top: 28px;
    line-height: 1.8rem;
    margin: 30px;
    max-width: 600px;
}

/* LTL Services/ Checklist */
section.ltl-services {
    background: linear-gradient(18.12deg, rgba(172, 172, 172, 0.8832) 101.49%, rgba(5, 5, 5, 0.2576) 147.95%), url("img/sunset-road.jpg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
}

.ltl-services-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20px;
}

.ltl-textarea {
    max-width: 580px;
}

.ltl-textarea h2 {
    font-size: 3rem;
}

.ltl-textarea p {
    font-size: 1.1rem;
    margin-top: 22px;
    line-height: 1.8rem;
}

.ltl-checklist {
    margin-right: 20px;
}

.ltl-checklist .list-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.list-item img {
    width: 48px;
    height: 40px;
    margin-right: 25px;
}

.ltl-checklist .list-item p {
    font-size: 1.3rem;
    font-weight: 600;
    max-width: 340px;
}


/* MOBILE */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    /* Header: Top Bar */
    .bar-contact-info .phone p {
        font-size: 0.9rem;
    }

    .bar-contact-info .email {
        display: none;
    }

    .contact-info-divider {
        display: none;
    }

    .bar-social-icons img {
        height: 22px;
        padding-top: 4px;
    }

    /* Header: Main Navbar */
    section.header-top-bar {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    section.main-header {
        background-color: #000;
        position: sticky;
        top: 43px;
        width: 100%;
        z-index: 1000;
    }

    .main-header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-logo a img {
        width: 170px;
        padding: 14px 0;
    }

    ul.navbar-nav {
        display: none;
    }

    /* Mobile dropdown menu */
    .nav-mobile li a svg {
        padding: 0;
        margin-right: 10px;
        margin-bottom: -3px;
        transition: transform 400ms ease;
    }
    
    .nav-mobile li a:hover svg {
        transform: rotate(180deg);
        margin-bottom: 0;
    }

    .mobile-dropdown-menu {
        display: none;
        background-color: #000000;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .mobile-dropdown-item:hover .mobile-dropdown-menu {
        display: block;
    }
    
    .mobile-dropdown-item .mobile-dropdown-menu li a {
        color: #A8A8A8;
        text-transform: none;
        font-size: 1.3rem;
    }
    
    .mobile-dropdown-item .mobile-dropdown-menu li a:hover {
        color: #A62B34;
    }
    
    .menu-divider {
        display: none;
    }

    /* Main Section/Hero */
    section.main-section {
        background: linear-gradient(18.12deg, rgba(5, 5, 5, 0.8372) 44.97%, rgba(5, 5, 5, 0.2576) 113.72%), url("img/mainBG-mobile.jpg");
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: cover;
        height: auto;
    }

    .main-content h1 {
        font-size: 3rem;
        letter-spacing: 8px;
        margin-top: 40px;
        margin-bottom: 100px;
        font-weight: 600;
    }

    .main-content .main-btn {
        margin-bottom: 70px;
    }

    .main-content .main-btn a {
        font-size: 1.1rem;
    }

    /* mobile hero cards */
    .hero-cards {
        display: none;
    }

    .mobile-hero-cards {
        display: flex;
        flex-direction: column;
    }

    .hero-cards-row {
        display: flex;
        justify-content: center;
    }
    
    .hero-cards-row .mobile-card {
        padding: 25px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background: rgba(122, 0, 0, 0.44);
        transition: background-color 0.2s ease;
    }
    
    .mobile-hero-cards .mobile-card:hover {
        background: rgba(195, 12, 12, 0.333);
    }
    
    .mobile-hero-cards .mobile-card3 img {
        width: 78px;
    }
    
    .mobile-hero-cards .mobile-card4 img {
        width: 68px;
    }
    
    .mobile-hero-cards .mobile-card h3 {
        color: #fff;
        font-size: 0.7rem;
        font-weight: 400;
        margin-top: 18px;
        align-content: flex-end;
    }

    .mobile-hero-cards .mobile-card img {
        width: 90px;
    }

    .mobile-hero-cards .mobile-card3 img {
        width: 85px;
    }

    .mobile-hero-cards .mobile-card4 img {
        width: 58px;
    }

    /* About, Home */
    section.about-section {
        background-position: bottom;
    }

    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .about-content .divider {
        width: 90px;
        height: 3px;
    }

    .about-content p {
        margin: 30px 0;
        font-size: 1rem;
        font-weight: 400;
        padding-right: 70px;
    }

    .about-content .section-btn-dark a {
        font-size: 1rem;
    }

    /* Left/Right Cards, Home */
    section.two-cards-section {
        flex-direction: column;
    }

    .left-card-container {
        padding: 90px 20px;
        width: 100%;
        /* display: flex; */
    }

    .left-card-content {
        /* width: 550px; */
        /* margin-left: auto; */
        text-align: right;
        justify-content: right;
    }

    .left-card-content .divider {
        float: right;
        width: 90px;
        height: 3px;
    }

    .left-card-content a, 
    .right-card-content a {
        font-size: 1rem;
    }

    .right-card-container {
        background-position: right;
        background-size: cover;
        padding: 90px 20px;
        width: 100%;
    }

    .right-card-content {
        margin-left: 0px;
    }

    .two-cards-section h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .right-card-content .divider {
        width: 90px;
        height: 3px;
    }

    .left-card-content p {
        font-weight: 400;
        font-size: 1rem;
        padding-left: 90px;
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .right-card-content p {
        font-weight: 300;
        font-size: 1rem;
        padding-right: 90px;
        margin-top: 40px;
        margin-bottom: 80px;
    }

    /* Section D */
    section.section-D {
        padding: 90px 0;
    }

    .section-container-D .content {
        display: flex;
        flex-direction: column;
    }

    .section-container-D .content h3 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }

    .section-container-D .content p {
        font-size: 1.7rem;
        text-align: center;
        margin-bottom: 50px;
    }

    .section-container-D .content img {
        width: 350px;
        margin: auto;
        padding: 40px 0;
    }

    /* Services Section */
    section.services .grey-bg {
        background-color: #F4F4F4;
        position: relative;
        height: 50%;
    }

    .services-container {
        flex-direction: column-reverse;
        border-radius: 180px 0px 0px 180px;
        margin-bottom: -470px;
        margin-left: 20px;
        padding: 50px;
    }

    .services-container img {
        max-width: 270px;
        margin-top: 60px;
    }

    .services-container .text {
        margin: 0 5px;
        text-align: center;
    }

    .services-container .text h3 {
        font-size: 2rem;
        margin-top: 50px;
    }

    .services-container .text p {
        font-size: 1rem;
        margin-top: 40px;
    }

    /* Contact Secion, Home */
    section.contact {
        padding: 130px 20px;
        margin-top: 470px;
    }

    section.contact .contact-container {
        padding: 58px 20px;
        display: flex;
        flex-direction: column;
    }

    .contact-container .call-to-action {
        margin-left: 0;
    }

    .contact-container .call-to-action .section-btn-light {
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-container .call-to-action .section-btn-light a {
        font-size: 1rem;
    }

    section.contact .contact-container h4 {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 30px;
    }

    section.contact .contact-container p {
        font-size: 1.1rem;
        margin-bottom: 60px;
        max-width: 300px;
        text-align: center;
        font-weight: 300;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
    }
    
    .footer-nav ul {
        flex-direction: column;
        margin-top: 10px;
    }
    
    .footer-nav ul li {
        padding: 10px 10px;
        height: 100px;
        max-width: 300px;
    }
    
    .footer-nav .link-info p {
        margin-top: 10px;
    }
    
    .footer-divider {
        margin: 0 20px;
    }
    
    .footer-base {
        flex-direction: column;
    }

    .footer-base p {
        margin-top: 20px;
    }


        /* ==== ABOUT US PAGE ==== */
    /* Main Section */
    .about-main-content {
        padding: 65px 0;
    }

    .about-main-content h1 {
        font-size: 2.4rem;
    }

    .about-main-content p {
        font-size: 0.9rem;
        padding: 0 40px;
    }

    /* Checklist section */
    .checklist-container {
        flex-direction: column;
    }

    section.checklist-section img {
        padding: 40px 10px;
        max-width: 320px;
    }

    section.checklist-section h2 {
        font-size: 2rem;
    }

    section.checklist-section .section-content {
        padding: 0;
        margin: 50px 0;
    }

    section.checklist-section .checklist img {
        padding: 0;
    }

    section.checklist-section .checklist p {
        font-size: 1rem;
    }

    /* FAQ Section */
    section.faq-section {
        height: auto;
    }

    .bg-pattern {
        display: none;
    }
    
    .faq-container {
        padding: 60px 20px;
        flex-direction: column;
    }
    
    .faq-info-text h3 {
        font-size: 1.2rem;
    }
    
    .faq-info-text h2 {
        font-size: 1.6rem;
        padding: 0;
        margin: 0;
    }

    .faq-info-text p {
        font-size: 1rem;
        margin: 10px 0;
    }

    /* === Accordion Start ===  */
    .faq-accordion-container {
        margin: 40px 0;
        padding: 0;
    }

    .accordion {
        padding: 0;
        margin: 0;
    }

    .accordion .accordion-item {
        padding: 0 14px;
    }

    .accordion button .accordion-title {
        margin-right: 30px;
    }

    /* === Accordion END ===  */

        /* ==== CONTACT US PAGE ==== */
    section.contact-info-section {
        background-image: url("img/BG-dotted-patter-mobile.png");
        height: 920px;
    }

    .contact-cards {
        flex-direction: column;
    }
    
    .contact-card {
        margin: 14px auto;
        width: 100%;
        padding: 30px 20px;
    }

    .contact-form-container {
        margin-top: -300px;
        padding: 50px 8px;
    }

    .form-title p {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .form-title .divider {
        margin: 20px auto;
    }

    .main-form {
        margin-top: 40px;
    }

    .main-form .row {
        flex-direction: column;
    }

    .input-field,
    .column-input-field {
        width: 93%;
    }

    .form-btn {
        display: flex;
        justify-content: center;
    }

        /* ==== TRUCKLOAD PAGE ==== */
    .truckload-main-content {
        flex-direction: column;
    }

    .truckload-main-content h1 {
        font-size: 2.7rem;
        width: 100%;
    }

    .truckload-main-content .section-img {
        margin-top: 50px;
    }

    .truckload-main-content .section-img img {
        padding-left: 60px;
        width: 100%;
    }

    /* cards */
    .section-cards-container .cards {
        flex-direction: column;
    }

    .section-cards-container .card {
        margin-bottom: 20px;
    }

    /* Contact card, truckload */
    section.truckload-contact {
        margin: 0;
    }

        /* ==== LESS THAN TRUCKLOAD PAGE ==== */
    section.ltl-main-section {
        display: flex;
        background-position: left;
    }
    
    .ltl-main-content .section-text {
        text-align: left;
        margin: 100px 0;
    }
    
    .ltl-main-content h1 {
        font-size: 3.2rem;
    }
    
    .ltl-main-content p {
        margin: 30px 0;
        padding-right: 10px;
    }

    /* LTL Checklist */
    .ltl-services-container {
        padding: 70px 20px;
        flex-direction: column;
    }
    
    .ltl-textarea {
        max-width: 440px;
        text-align: center;
    }
    
    .ltl-textarea h2 {
        font-size: 3rem;
    }
    
    .ltl-textarea p {
        font-size: 1rem;
        margin-top: 22px;
        line-height: 1.5rem;
        font-weight: 400;
    }
    
    .ltl-checklist {
        margin-top: 65px;
    }
    
    .list-item img {
        width: 48px;
        height: 40px;
    }
    
    .ltl-checklist .list-item p {
        font-size: 1.3rem;
        max-width: 290px;
    }
        
}