:root {
    --primaryColor: #ff6b6b;
}

/* General Styles */

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

#mcNumber {
    font-size:14px;
    font-weight: 700;
}


#dotNumber {
        font-size:14px;
        font-weight: 700;
}

.equiptFont{ 
 
 font-family: "Poppins", sans-serif;
 font-weight: 700;
    
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a,
button {
    display: inline-block;
    font: inherit;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
}

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

.btn {
    font-family: "Bebas Neue", cursive;
    text-transform: uppercase;
    min-width: 300px;
    margin-top: 3vh;
    line-height: 100px;
    padding: 0 86px;
    font-size: 19px;
    letter-spacing: 5px;
    text-align: center;
    color: #000000;
    background: #ffffff;
    position: relative;
}

.btn::after {
    content: " ";
    width: 90px;
    height: 3px;
    background: var(--primaryColor);
    position: absolute;
    left: -45px;
    top: 50%;
    transition: all 300ms ease;
    transform: translateY(-50%);
}

.btn:hover::after {
    width: 120px;
}

.anchor-proxy {
    position: absolute;
    top: -115px;
}

/* Text Styles */

h1,
h2,
h3 {
    font-family: "Bebas Neue", cursive;
    margin-bottom: 1rem;
    line-height: 1;
}

h1 {
    font-size: 4vw;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

p {
    font-size: 0.875rem;
    font-family: "Montserrat", sans-serif;
    line-height: 2;
    margin: 15px 0;
}

/* Navigation Bar Styles */

header {
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 999;
}

.nav-container {
    position: relative;
    padding: 10px 3vw;
    background-color: #fff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    text-align: center;
}

.logo h3 {
    margin-bottom: 5px;
}

.logo span {
    font-size: 0.875rem;
    font-family: "Montserrat", sans-serif;
    line-height: 2;
    margin: 15px 0;
}

.logo p {
    margin: 5px;
}

.logo-img {
    width: 150px;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    margin-left:40rem;
}

.nav-list li {
    margin: 10px 45px;
    transition: color 0.5s;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -ms-transition: color 0.5s;
    -o-transition: color 0.5s;
}

.nav-list li:hover {
    color: var(--primaryColor);
}

.nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin-top: 5px;
    background: var(--primaryColor);
    transition: width 0.5s;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -ms-transition: width 0.5s;
    -o-transition: width 0.5s;
}

.nav-link:hover:after {
    width: 100%;
}

/* Hamburger Styles */

.hamburger {
    display: none;
}

.hamburger {
    width: 32px;
    height: 32px;
    margin-top: 10px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primaryColor);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 10px;
}

.hamburger span:nth-child(4) {
    top: 20px;
}

.hamburger.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* Hero Section Styles */

/*.hero-section {
    display: flex;
    align-items: center;
    width: 100%;
    height: 540px;
    background: url(../images/hero-1.jpg) left no-repeat;
    color: #fff;
    animation: heroBackground 15s infinite;
}

@keyframes heroBackground {
    0% {
        background-image: url(../images/hero-1.jpg);
    }
    30% {
        background-image: url(../images/hero-1.jpg);
    }
    35% {
        background-image: url(../images/hero-2.jpg);
    }
    65% {
        background-image: url(../images/hero-2.jpg);
    }
    70% {
        background-image: url(../images/hero-3.jpg);
    }
    100% {
        background-image: url(../images/hero-3.jpg);
    }
}*/

.hero-section::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
}

.hero-section .container {
    position: relative;
    padding: 0 8vw;
    z-index: 1;
}

.hero-section h1 {
    margin-bottom: 5px;
}

/* About Section Styles */

.about-section .text-container {
    background-color: #000;
    color: #fff;
}

/*.about-section .img-container {
    background: center / cover no-repeat url(../images/about-img.jpg);
}*/

.about-section .text-container {
    width: 66.66667%;
    padding: 7.5vh 16vw 13.5vh 11vw;
}

.about-section .img-container {
    width: 33.33333%;
}

/* Service Section Styles */

.service-section {
    text-align: center;
    height: 800px;
    padding-top: 100px;
    margin-bottom: 280px;
    background-image: url(../images/service.jpg);
    background-color: var(--primaryColor);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-section .container {
    padding: 0 15px;
}

.service-section::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.service-section .container {
    position: relative;
    height: 100%;
}

.service-flex {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    position: relative;
    flex: 1 1 0;
    text-align: center;
    min-width: 280px;
    font-family: "Poppins", sans-serif;
    max-width: 500px;
    padding: 50px;
    background-color: #fff;
    box-shadow: 0 3px 5px rgb(0, 0, 0, 0.16);
    z-index: 1;
}

.service-section h2 {
    position: relative;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.service-icon img {
    width: auto;
    height: 60px;
}

/*.service-flex .service-card:nth-of-type(3) img {
    height: 40px;
}*/

/* Deliveries Section Styles */

/*.deliveries-section .img-container {
    background: center / cover no-repeat url(../images/deliveries-img.jpg);
}*/

.deliveries-section .text-container {
    width: 58.33333%;
    padding: 18vh 11.5vw 21vh 7.5vw;
}

.deliveries-section .img-container {
    width: 41.66667%;
}

/* Footer Styles */

footer {
    width: 100%;
    text-align: center;
}

.footer-content {
    padding: 4em 0 0;
    background-color: #19191b;
    background-image: url(../images/carbon-bg.png);
}

.footer-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-brand {
    max-width: 400px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.footer-logo {
    max-width: 200px;
    margin: 20px auto;
}

.footer-contact-flex {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.footer-contact {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    width: 220px;
    margin: 25px;
    word-break: break-word;
}

.footer-contact svg {
    fill: var(--primaryColor);
    width: 40px;
}

.footer-link {
    display: inline-block;
    transition: all 0.5s;
    width: 16rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.footer-link:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.carrier-pro {
    max-width: 260px;
    margin: 0 auto 100px;
    border-radius: 20px;
    overflow: hidden;
}

.copyright-text {
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    padding: 1.5em 0;
    background: rgba(0, 0, 0, 0.25);
    margin: 0;
}

@media only screen and (max-width: 1669px) {
    /* Text Styles */

    h1 {
        font-size: 3.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 0.875rem;
        font-family: "Montserrat", sans-serif;
        line-height: 2;
        margin: 15px 0;
    }

    .about-section br {
        display: none;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    /* Navigation Bar Styles */

    .hamburger {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 30px 0;
        margin: 0px;
        background-color: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        transform: translateY(-100%);
        transition: transform 0.5s, box-shadow 0.5s;
        z-index: -1;
    }

    .nav-list.open {
        transform: translateY(0);
        box-shadow: 0 25px 34px 5px rgba(0, 0, 0, 0.06);
    }

    .logo-img {
        display: none;
    }

    .btn {
        min-width: 0;
        line-height: 75px;
        padding: 0 45px;
    }

    .btn::after {
        width: 50px;
        left: -25px;
        top: calc(50% - 1.5px);
    }

    .btn:hover::after {
        width: 60px;
    }

    .flex {
        flex-direction: column;
    }

    .img-container {
        width: 100% !important;
    }

    .text-container {
        width: 100% !important;
        text-align: center;
        padding: 10vh 7vw !important;
    }

    /* Service Section Styles */

    .service-section {
        height: auto;
        padding: 100px 0;
        margin-bottom: 0;
    }

    .service-flex {
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-card {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Footer Styles */

}


@media only screen and (max-width: 1020px) {
    /* Text Styles */

    h1 {
        font-size: 3.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 0.875rem;
        font-family: "Montserrat", sans-serif;
        line-height: 2;
        margin: 15px 0;
    }

    .about-section br {
        display: none;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    /* Navigation Bar Styles */

    .hamburger {
        display: block;
    }


    .logo-img {
        display: none;
    }

    .btn {
        min-width: 0;
        line-height: 75px;
        padding: 0 45px;
    }

    .btn::after {
        width: 50px;
        left: -25px;
        top: calc(50% - 1.5px);
    }

    .btn:hover::after {
        width: 60px;
    }

    .flex {
        flex-direction: column;
    }

    .img-container {
        width: 100% !important;
    }

    .text-container {
        width: 100% !important;
        text-align: center;
        padding: 10vh 7vw !important;
    }

    /* Service Section Styles */

    .service-section {
        height: auto;
        padding: 100px 0;
        margin-bottom: 0;
    }

    .service-flex {
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-card {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Footer Styles */

    .footer-contact-flex {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 140px;
        background: url(../images/hero-1.jpg) right no-repeat;
        background-size: cover;
    }

    /* Service Section Styles */

    .service-flex .service-card {
        max-width: 100%;
        margin-right: 0 !important;
    }
}
