.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/certification-hero-image.png');
    background-size: cover;
    background-position: center;
    height: 650px;
    overflow: hidden;
}

.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
}

.benefits-section{
    margin-top: 60px;
}

.benifits-section-cards{
    margin-top: 40px
}

.benefits-section-card{
    background-color: #F9FAFB;
    border: 1px solid #f1f1f1;
    border-radius: 16px;
}

.benefits-section-icon{
    margin-bottom: 24px;
}



.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;
}

.tick-blue {
    position: relative;
    padding-left: 40px; /* Space for the icon */
    line-height: 1.6;
}

.tick-blue::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px; /* Adjust this to align the icon vertically */
    width: 28px;
    height: 28px;
    background-image: url('../assets/icons/tick-blue.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.services-section{
    background-color: #F9FAFB;
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.services-section-cards{
    margin-top: 40px;
}

.services-section-card{
    background-color: white;
    border: 1px solid #f1f1f1;
    border-radius: 16px;
}

.services-section-card-blank{
    border-radius: 16px;
}

.services-section-content{
    margin-left: 24px;
}


.join-section{
    background-image: linear-gradient(to right, #2562E9 , #1E41B0);
    padding-top: 120px;
    padding-bottom: 120px;
}

.join-section h2{
    color: white;
}

.join-section p {
    color: white;
    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/certificates-hero-image-mobile.png');
    background-size: cover;
    background-position: center;
    height: 650px;
    overflow: hidden;
  }

    .hero-content{
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        left: 0%;
        top: 10%;
        text-align: center;
    }

    .benifits-section-heading{
        padding: 0px 10px 0px 10px;

    }

    .join-section{
        padding-left: 20px;
        padding-right: 20px;
    }

    br{
        display: none;
    }
}