/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    display: grid;
    place-items: center;
}

.hero .container {
    grid-area: 1 / 1;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}/*--# End-Hero Section--*/

@media (max-width: 768px) {
    #index-hero {
        display: none;
    }
}

/*--------------------------------------------------------------
# Hero2
--------------------------------------------------------------*/
.hero2 {
    background-color: var(--pure-white-color);
}

.hero2 img {
    grid-area: 1 / 1;
    width: 80;
    object-fit: cover;
    z-index: 1;
}

.hero2 h1 {
    font-weight: 600;
    font-size: 60px;
    color: var(--font-color);
    text-align: left;
    margin-bottom: 20px;
}

.hero2 p {
    font-weight: 500;
    font-size: 22px;
    color: var(--font-color);
    text-align: left;
}

@media (max-width: 768px) {
    .hero2 h1 {
        font-weight: 600;
        font-size: 38px;
        color: var(--font-color);
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero2 p {
        font-weight: 500;
        font-size: 20px;
        color: var(--font-color);
        text-align: center;
    }
}/*--# End-Hero2--*/

/*--------------------------------------------------------------
# Index-Sec1
--------------------------------------------------------------*/
.index-sec1 {
    background-color: var(--pure-white-color);
}

.index-sec1 h1 {
    font-weight: 600;
    font-size: 38px;
    color: var(--font-color);
    text-align: center;
}

/*--# End-Index Sec 1--*/

/*--------------------------------------------------------------
# Index-Sec2
--------------------------------------------------------------*/
.index-sec2 {
    background-color: var(--main-color);
}

.index-sec2 h1 {
    font-weight: 600;
    font-size: 40px;
    color: var(--white-color);
    text-align: center;
}

/*--# End-Index Sec2--*/

/*--------------------------------------------------------------
# Index-Sec3
--------------------------------------------------------------*/
.index-sec3 {
    background-color: var(--pure-white-color);
}

.index-sec3 img {
    grid-area: 1 / 1;
    width: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.index-sec3 h1 {
    font-weight: 600;
    font-size: 50px;
    color: var(--font-color);
    text-align: left;
    margin-bottom: 20px;
}

.index-sec3 p {
    font-weight: 500;
    font-size: 24px;
    color: var(--font-color);
    text-align: left;
}

@media (max-width: 768px) {
    .index-sec3 h1 {
        font-weight: 600;
        font-size: 40px;
        color: var(--font-color);
        text-align: center;
        margin-top: 50px;
        margin-bottom: 20px;
    }
    
    .index-sec3 p {
        font-weight: 500;
        font-size: 22px;
        color: var(--font-color);
        text-align: center;
    }
}/*--# End-Index Sec3--*/

/*--------------------------------------------------------------
# About-Sec2
--------------------------------------------------------------*/
.about-sec2 {
    background-color: var(--main-color);
}

.about-sec2 img {
    grid-area: 1 / 1;
    width: 80;
    object-fit: cover;
    z-index: 1;
}

.about-sec2 h1 {
    font-weight: 600;
    font-size: 40px;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-sec2 h1 {
        font-weight: 600;
        font-size: 30px;
        color: var(--white-color);
        text-align: center;
        margin-bottom: 20px;
    }
}/*--# End-About Sec1--*/

/*--------------------------------------------------------------
# Blog-Sec1
--------------------------------------------------------------*/
.blog-sec1 {
    background-color: var(--white-color);
}

.blog-sec1 img {
    grid-area: 1 / 1;
    object-fit: cover;
    z-index: 1;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    /* or any other percentage */
    border-radius: 20px;
    margin-bottom: 50px;
}

.blog-sec1 h1 {
    font-weight: 600;
    font-size: 60px;
    color: var(--font-color);
    text-align: center;
    margin-bottom: 50px;
}/*--# End-Blog Sec1 --*/

/*--------------------------------------------------------------
# Blog-Sec-White
--------------------------------------------------------------*/
.blog-sec-white {
    background-color: var(--white-color);
}

.blog-sec-white h1 {
    font-weight: 600;
    font-size: 60px;
    color: var(--font-color);
    text-align: center;
    margin-bottom: 50px;
}/*--# End-Blog Sec White --*/

/*--------------------------------------------------------------
# Blog-Sec-Pure-White
--------------------------------------------------------------*/
.blog-sec-pure-white {
    background-color: var(--pure-white-color);
}

.blog-sec-pure-white h1 {
    font-weight: 600;
    font-size: 60px;
    color: var(--font-color);
    text-align: center;
    margin-bottom: 50px;
}/*--# End-Blog Sec White --*/

/*--------------------------------------------------------------
# Blog-Sec-Green
--------------------------------------------------------------*/
.blog-sec-green {
    background-color: var(--main-color);
}

/*--# End-Blog Green --*/

/*--------------------------------------------------------------
# Employers (Blog-Content)
--------------------------------------------------------------*/
.blog-content {
    background-color: var(--white-color);
}

.blog-content img {
    grid-area: 1 / 1;
    width: 80;
    object-fit: cover;
    z-index: 1;
}

.blog-content h1 {
    font-weight: 600;
    font-size: 40px;
    color: var(--font-color);
    text-align: left;
    margin-bottom: 20px;
}

.blog-content h2 {
    font-weight: 600;
    font-size: 35px;
    color: var(--font-color);
    text-align: left;
    margin-bottom: 20px;
}

.blog-content p {
    font-weight: 500;
    font-size: 24px;
    color: var(--font-color);
    text-align: left;
}

.blog-content ul li {
    font-weight: 500;
    font-size: 24px;
    color: var(--font-color);
    text-align: left;
}

@media (max-width: 768px) {
    .blog-content h2 {
        font-weight: 600;
        font-size: 28px;
        color: var(--font-color);
        text-align: left;
        margin-bottom: 20px;
    }

    .blog-content ul li {
        font-weight: 500;
        font-size: 20px;
        color: var(--font-color);
        text-align: left;
    }
}/*--# End-Employers (Blog-Content) --*/

/*--------------------------------------------------------------
# Thank-you
--------------------------------------------------------------*/
.thank-you {
    background-color: var(--pure-white-color);
}

.thank-you img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    margin-bottom: 50px;
    /* or any other percentage */
  }

.thank-you h1 {
    font-weight: 600;
    font-size: 60px;
    color: var(--font-color);
    text-align: center;
    margin-bottom: 20px;
}

.thank-you p {
    font-weight: 500;
    font-size: 22px;
    color: var(--font-color);
    text-align: center;
}/*--# End-Hero2--*/

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.events .card {
    background-color: var(--background-color);
    border: 0;
    padding: 0 30px;
    margin-bottom: 30px;
    position: relative;
}

.events .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 20px;
}

.events .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.events .card-body {
    z-index: 10;
    background: var(--surface-color);
    border-top: 4px solid var(--surface-color);
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    transition: 0.3s;
}

.events .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.events .card-title a {
    color: var(--default-color);
    transition: 0.3s;
}

.events .card-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .card:hover img {
    transform: scale(1.1);
}

.events .card:hover .card-body {
    border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
    color: var(--accent-color);
}

/*--# End-Gallery-Section --*/

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    padding-top: 8px;
    padding-bottom: 40px;
}

.contact .info-item+.info-item {
    margin-top: 40px;
}

.contact .info-item i {
    color: var(--pure-white-color);
    background: var(--secondary-color);
    font-size: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--font-color);
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--font-color);
}

.contact .php-email-form {
    height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 10px;
    color: var(--secondary-color);
    background-color: color-mix(in srgb, var(--pure-white-color), transparent 50%);
    border-color: color-mix(in srgb, var(--secondary-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--main-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--secondary-color), transparent 70%);
}/*--# End-Contact Section --*/