.blank{
    width: 100%;
    margin-top: 85px;
    background-color: red;
}

.primary-button{
    background-color: #245EE2;
    font-weight: 500;
    color: white;
    padding: 10px 20px;
    margin-right: 16px;
}

.primary-button:hover{
    background-color: #194abb;
    color: white;
}

.secondary-button{
    background-color: white;
    color: #245EE2;
    border: 2px solid #245EE2;
    font-weight: 500;
    padding: 10px 20px;
}

.secondary-button:hover{
    background-color: #194abb;
    color: white;
}

.text-deco{
    color: #245EE2;
}

.primary-button-white{
    background-color: white;
    font-weight: 500;
    color: #245EE2;
    padding: 10px 20px;
    margin-right: 16px;
}

.primary-button-white:hover{
    background-color: #f1f1f1;
    color: #194abb;
}

.secondary-button-white{
    color: white;
    border: 2px solid white;
    font-weight: 500;
    padding: 10px 20px;
}

.secondary-button-white:hover{
    background-color: #f1f1f1;
    color: #194abb;
}



.hero-image{
    background-image: url('../assets/hero-images/freight-broker-hero-image.png');
    background-size: cover;
    background-position: center;
    height: 650px;
    overflow: hidden;
}


.hero-image img{
    width: 100%;
}

.hero-content{
    position: absolute;
    left: 6%;
    width: 40%;
    top: 30%;
}

.hero-content h1{
    margin-top: 16px;
    margin-bottom: 16px;
}

.hero-content p{
    margin-top: 16px;
    margin-bottom: 24px;
}

.training-learn{
    margin-top: 60px;
    margin-bottom: 60px
}

.training-learn-heading{
    margin-bottom: 24px;
}

.training-card{
    background-color: #F9FAFB;
    border: 1px solid #F1F1F1;
    border-radius: 16px;
    margin-top: 16px;
}

.training-icon{
    margin-bottom: 24px;
}

.training-card-bonus{
    background-color: #F3F5FB;
    margin-top: 16px;
    border-radius: 16px;
}

.training-demo{
    background-color: #F9FAFB;
    padding-top: 60px;
    padding-bottom: 60px;
}
 
.training-demo-video{
    margin-top: 40px;
    border-radius: 24px;
    width: 832px;
    height: 468px;
    border: 1px solid #e3e3e3;
    /* background-color: black; */
    overflow: hidden;
}

.training-demo-video iframe{
    width: 832px;
    height: 468px;
}

.training-about{
    margin-top: 60px;
    margin-bottom: 60px;
}

.tick-text {
    position: relative;
    padding-left: 24px; /* Space for the icon */
    line-height: 1.6;
}

.tick-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px; /* Adjust this to align the icon vertically */
    width: 18px;
    height: 18px;
    background-image: url('../assets/icons/tick-text.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.training-points{
    margin-top: 24px;
}

.why-welocity{
    background-color: #F9FAFB;
    padding-top: 60px;
    padding-bottom: 60px;
}

.why-welocity-cards{
    margin-top: 40px;
}

.why-welocity-card{
    background-color: white;
    border: 1px solid #F1F1F1;
    border-radius: 16px;
}

.why-welocity-icon{
    /* background-color: #245EE2; */
    width: 60px;
    height: 60px;
    border-radius: 60px;
    margin-bottom: 24px;
}


.join-section{
    background-image: linear-gradient(to right, #2562E9 , #1E41B0);
    padding-top: 120px;
    padding-bottom: 120px;
}

.join-section h2, p{
    color: white;
}

.join-section p {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 400;
}

.join-section-buttons{
    margin-top: 30px;
}


@media screen and (min-width: 1920px) {
    .hero-image {
        height: 750px; /* reduce height on large screens */
    }
}


@media (max-width: 767px) {

    .hero-image{
    background-image: url('../assets/hero-images/mobile/freight-broker-hero-image-mobile.png');
    background-size: cover;
    background-position: center;
    height: 800px;
    overflow: hidden;
  }

    .hero-content{
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        left: 0%;
        top: 14%;
        text-align: center;
    }

    .training-demo-video{
        width: 350px;
        height: 197px;
        object-fit: cover;
        padding-left: 10px;
        padding-right: 10px;
    }

    .training-demo-video iframe{
        width: 350px;
        height: 197px;
    }

    .join-section{
        padding-left: 20px;
        padding-right: 20px;
    }

    .join-section-buttons{
        padding-left: 40px;
        padding-right: 40px;
    }

    .join-section-buttons a{
        width: 100%;
        margin-bottom: 16px;
    }

}