/*=============== GOOGLE FONTS ===============*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*=============== VARIABLES CSS ===============*/

:root {
    --primary-color: hsl(229, 54%, 51%);
    --primary-color-dark: hsl(230, 50%, 19%);
    --text-dark: #e5e5e5;
    --text-light: #767676;
    --extra-light: #e5e5e5;
    --text-dark: #262626;
    --white: #ffffff;
    --max-width: 100%;
    --body-bg: #fffaee;
    --item-bg: #ffffff;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: hsl(230, 50%, 19%);
    border-radius: 0;
}

/*=============== BASE ===============*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sana', sans-serif;
}

body {
    justify-content: flex-end;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}


/*=============== REUSABLE CSS CLASSES ===============*/

.container1 {
    max-width: 1170px;
    margin: auto;
    padding: 0 5px;
}



.container2 {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section2 {
    padding-block: 5rem 1rem;
}

.section__title,
.section__subtitle {
    text-align: center;
}

.section__title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
}

.section__subtitle {
    display: block;
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--second-color);
    margin-bottom: .5rem;
}

.main {
    overflow: hidden;
}

/*=============== HEADER & NAV ===============*/

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
    z-index: 9999999999;
    transition: .6s ease;
    padding: 20px 40px;
}

header.sticky {
    background: hsl(230, 50%, 19%);
    border-bottom: 1px solid hsl(229, 38%, 61%);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo img {
    vertical-align: middle;
    height: 40px;
    transition: 0.6s ease;
}

.header .menu .head {
    display: none;
}

.header .menu ul {
    list-style: none;
}

.header .menu>ul>li {
    display: inline-block;
}

.header .menu>ul>li:not(:last-child) {
    margin-right: 40px;
}

.header .menu .dropdown {
    position: relative;
}

.header .menu a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    color: hsl(0, 0%, 100%);
    line-height: 1.5;
    display: block;
}

.header .menu>ul>li>a {
    padding: 24px 0;
}

.header .menu>ul>.dropdown>a {
    padding-right: 15px;
}

.header .menu i {
    font-size: 10px;
    pointer-events: none;
    user-select: none;
    position: absolute;
    color: hsl(0, 0%, 100%);
    top: calc(50% - 5px);
}

.header .menu>ul>li>i {
    right: 0;
}

.header .menu .sub-menu {
    position: absolute;
    border-radius: 5px;
    top: 100%;
    left: 0;
    width: 230px;
    padding: 15px 0;
    background-color: hsl(230, 50%, 19%);
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.5);
    z-index: 1;
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
}

.header .menu .sub-menu-right {
    left: 100%;
    top: 0;
}

.header .menu .sub-menu-left {
    top: 0;
    left: auto;
    right: 100%;
}

.header .menu li:hover>.sub-menu {
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: all 0.5s ease;
}

.header .menu .sub-menu a {
    padding: 6px 24px;
}

.header .menu .sub-menu .dropdown>a {
    padding-right: 34px;
}

.header .menu .sub-menu span {
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}

.header .menu .sub-menu li:hover>a>span {
    background-size: 100% 1px;
}

.header .menu .sub-menu i {
    transform: rotate(-90deg);
    right: 24px;
}

.header-right {
    display: flex;
}

.header-right>* {
    margin-left: 25px;
}

.header-right a {
    text-decoration: none;
    color: hsl(0, 0%, 100%);
}


.header-right .login-btn a {
    padding-left: 10px;
}

.header-right .register-btn {
    background-color: hsl(229, 54%, 51%);
    padding: 10px 15px;
    outline: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
    /* display: none; */
}

.header-right .employers-btn {
    background-color: hsl(229, 66%, 64%);
    padding: 10px 15px;
    outline: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
    /* display: none; */
}

.header-right .register-btn span {
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}

.header-right .employers-btn span {
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}

.header-right .register-btn:hover {
    background-color: hsl(230, 50%, 19%);
    box-shadow: 2px 2px 10px rgba(78, 89, 156, 0.5);
}

.header-right .employers-btn:hover {
    background-color: hsl(230, 50%, 19%);
    box-shadow: 2px 2px 10px rgba(78, 89, 156, 0.5);
}

.header-right .register-btn span:hover {
    background-size: 100% 1px;
}

.header-right .employers-btn span:hover {
    background-size: 100% 1px;
}

.header-right .icon-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: hsl(0, 0%, 100%);
    font-size: 16px;
}

.header-right .icon-btn i:hover {
    color: hsl(230, 50%, 19%);
    text-shadow: 2px 2px 10px rgba(78, 89, 156, 0.5);
}

.header-right .icon-btn a:hover {
    color: hsl(230, 50%, 19%);
    text-shadow: 2px 2px 10px rgba(78, 89, 156, 0.5);
}

.header-right .open-menu-btn {
    display: none;
}

.header-right .logo_profile {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 30px;
    transition: .3s ease;
    /* display: none; */
}


.header-right .menu_profile {
    position: absolute;
    width: 200px;
    background: var(--primary-color-dark);
    top: 85px;
    right: 30px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease;
}

.header-right .menu_profile.active{
    visibility: visible;
    opacity: 1;
}



.header-right .menu_profile::before{
    content: "";
    background: var(--primary-color-dark);
    width: 15px;
    height: 15px;
    position: absolute;
    top: -8px;
    right: 17px;
    rotate: 45deg;
}

.header-right .menu_profile h3{
    text-align: center;
    margin-top: 20px;
    color: #fff;
}

.header-right .logo_profile:hover {
    color: hsl(229, 54%, 51%);
    text-shadow: 2px 2px 10px rgba(78, 89, 156, 0.5);
}

.menu_profile ul{
    margin-bottom: 20px;
}

.menu_profile ul li{
    padding: 15px 20px;
    border-top: 1px solid #33333310;
    transition: 0.3s ease;
}

.menu_profile ul li:hover{
    background: hsla(230, 49%, 27%, 0.327);
}

.menu_profile ul li a{
    margin-left: 10px;
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}

.menu_profile ul li i{
    color: #fff;
}

.menu_profile ul li a:hover{
    background-size: 100% 1px;
}

@media (max-width: 991px) {
    .header {
        padding: 12px 20px;
    }

    .header .menu {
        position: fixed;
        right: 0;
        top: 0;
        width: 320px;
        height: 100%;
        background-color: hsl(230, 50%, 19%);
        padding: 15px 30px 30px;
        overflow-y: auto;
        z-index: 1;
        transform: translateX(100%);
    }

    .header .menu.open {
        transform: none;
    }

    .header .menu .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
    }

    .header .menu .close-menu-btn {
        height: 35px;
        width: 35px;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        cursor: pointer;
        border: none;
    }

    .header .menu .close-menu-btn::before,
    .header .menu .close-menu-btn::after {
        content: '';
        position: absolute;
        width: 80%;
        height: 2px;
        background-color: hsl(0, 0%, 100%);
    }

    .header .menu .close-menu-btn::before {
        transform: rotate(45deg);
    }

    .header .menu .close-menu-btn::after {
        transform: rotate(-45deg);
    }

    .header .menu>ul>li {
        display: block;
    }

    .header .menu>ul>li:not(:last-child) {
        margin-right: 0;
    }

    .header .menu li {
        border-bottom: 1px solid hsla(0, 0%, 100%, 0.25);
    }

    .header .menu li:first-child {
        border-top: 1px solid hsla(0, 0%, 100%, 0.25);
    }

    .header .menu>ul>li>a {
        padding: 12px 0;
    }

    .header .menu>ul>.dropdown>a {
        padding-right: 34px;
    }

    .header .menu i {
        height: 34px;
        width: 34px;
        border: 1px solid hsla(0, 0%, 100%, 0.25);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        cursor: pointer;
        top: 7px;
    }

    .header .menu .dropdown.active>i {
        background-color: hsla(0, 0%, 100%, 0.25);
        transform: rotate(180deg);
    }

    .header .menu .sub-menu {
        position: static;
        opacity: 1;
        transform: none;
        visibility: visible;
        padding: 0;
        transition: none;
        box-shadow: none;
        width: 100%;
        display: none;
    }

    .header .menu .dropdown.active>.sub-menu {
        display: block;
    }

    .header.menu .sub-menu li:last-child {
        border: none;
    }

    .header .menu .sub-menu a {
        padding: 12px 0 12px 15px;
    }

    .header .menu .sub-menu .sub-menu a {
        padding-left: 30px;
    }

    .header .menu .sub-menu .sub-menu .sub-menu a {
        padding-left: 45px;
    }

    .header .menu .sub-menu span {
        background-image: none;
    }

    .header .menu .sub-menu i {
        transform: none;
        right: 0;
    }

    .header-right .open-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 44px;
        cursor: pointer;
        position: relative;
        background-color: transparent;
        border: none;
    }

    .header-right .open-menu-btn .line {
        height: 2px;
        width: 30px;
        background-color: hsl(0, 0%, 100%);
        position: absolute;
    }

    .header-right .open-menu-btn .line-1 {
        transform: translateY(-8px);
    }

    .header-right .open-menu-btn .line-3 {
        transform: translateY(8px);
    }

    .header-right .menu_profile{
        top: 60px;
    }

    .header-right .menu_profile::before{
        right: 66px;
    }
       
}

/*=============== FOOTER ===============*/

.footer {
    background-color: hsl(230, 50%, 19%);
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 3rem 1rem;
}

.footer .container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.footer .container .row {
    display: flex;
    justify-content: space-between;
}

.footer .container .row .footer-info {
    margin-bottom: 15px;
    background: #010246;
    color: #fff;
    border-top: 4px solid #80d244;
    text-align: center;
    padding: 30px 20px;
}

.footer .container .row .footer-info .col {
    min-width: 250px;
    color: hsl(0, 0%, 100%);
    padding: 0 2rem;
    text-transform: capitalize;
}

.footer .container .row .footer-info .col h3::after {
    content: '';
    height: 3px;
    width: 0px;
    background-color: hsl(229, 38%, 61%);
    position: absolute;
    bottom: 0;
    left: 46px;
    transition: 0.3s ease;
    text-align: center;
}

.footer .container .row .col1 {
    min-width: 250px;
    color: hsl(0, 0%, 100%);
    padding: 0 2rem;
    text-transform: capitalize;
}

.footer .container .row .col1 img {
    width: 100%;
    margin-bottom: 25px;
}

.footer .container .row .col1 h3 {
    color: hsl(0, 0%, 100%);
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.footer .container .row .col p {
    line-height: 1.5;
}

.footer .container .row .col h3::after {
    content: '';
    height: 3px;
    width: 0px;
    background-color: hsl(229, 38%, 61%);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

.footer .container .row .col h3:hover::after {
    width: 100px;
}

.footer .container .row .col .social a i {
    color: hsl(0, 0%, 100%);
    margin-top: 2rem;
    margin-right: 5px;
    border-radius: 15%;
    transition: 0.5s ease;
    padding: 5px;
}

.footer .container .row .col .social a i:hover {
    background-color: hsl(229, 38%, 61%);
    border-radius: 50%;
    transform: scale(1.5);
}

.footer .container .row .col .links a {
    display: block;
    text-decoration: none;
    color: #f2f2f2;
    margin-bottom: 5px;
    position: relative;
    transition: 0.3s ease;
}

.footer .container .row .col .links a::after {
    content: '';
    height: 3px;
    width: 0px;
    background-color: hsl(229, 38%, 61%);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

.footer .container .row .col .links a:hover::after {
    width: 35px;
}

.footer .container .row .col .links a:before {
    content: '';
    height: 16px;
    width: 3px;
    position: absolute;
    top: 5px;
    left: -10px;
    background-color: hsl(229, 38%, 61%);
    transition: 0.5s ease;
    opacity: 0;
}

.footer .container .row .col .links a:hover::before {
    opacity: 1;
}

.footer .container .row .col .links a:hover {
    transform: translateX(10px);
    color: hsl(229, 38%, 61%);
}

.footer .container .row .col .contact-details {
    margin-top: 10px;
    line-height: 1.5;
}

.footer .credit {
    color: hsl(0, 0%, 100%);
    text-align: center;
    margin-top: 20px;
}

.text-lowercase {
    text-transform: none;
}

@media (max-width: 991px) {
    .footer .container .row {
        flex-direction: column;
    }

    .footer .container .col {
        width: 100%;
        text-align: left;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .footer .container .row {
        flex-direction: column;
    }

    .footer .container .col {
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }
}

/*=============== HOME ===============*/

.main_landing {
    min-height: 100vh;
    background: url(../image/bg.jpg) rgba(1, 1, 1, 0.529) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: color;
}

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section__header {
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.section__header span {
    color: var(--primary-color);
}

.section__description {
    max-width: 600px;
    margin-inline: auto;
    color: var(--text-light);
    line-height: 1.75rem;
    text-align: center;
}

.header__container {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.header__container h1 {
    margin-top: 10rem;
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: 700;
    color: var(--extra-light);
    text-align: center;
    line-height: 5.5rem;
}

.header__container h1 span {
    color: var(--primary-color);
}

.header__container p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
    color: #a5a5a5;
    line-height: 2rem;
    text-align: center;
}

.btn {
    padding: 1rem 2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color-dark);
    box-shadow: 2px 2px 10px rgba(78, 89, 156, 0.5);
}

.header__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.header__btns .btn span {
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
    color: var(--extra-light);
}


.header__btns .btn span:hover {
    background-size: 100% 1px;
}


.header__btns a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--extra-light);
}

.header__btns a .span2 {
    padding: 5px 11px;
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 100%;
    transition: 0.3s;
}

.header__btns a:hover .span2 {
    background-color: var(--primary-color-dark);
    box-shadow: 2px 2px 10px rgba(78, 89, 156, 0.5);
}

.white-example {
    background: hsl(0, 0%, 100%);
    min-height: 80vh;
}

/*=============== SECOND SECTION (ABOUT) ===============*/

.about {
    background-color: #eff0f1;
}

.btn2 {
    display: inline-flex;
    padding: 1rem 2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.btn2:hover {
    background-color: var(--primary-color-dark);
    box-shadow: 2px 2px 10px rgba(78, 89, 156, 0.5);
}

.about__container {
    row-gap: 2rem;
}

.about__container .about__data {
    text-align: center;
    background-color: hsl(0, 0%, 100%);
    padding: 30px;
    border-radius: 20px;
}

.about__container .about__data p {
    color: var(--text-light);
}

.about__container .about__data h2 {
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.about__container .about__data h2 span {
    color: var(--primary-color);
}

.about__container .about__data h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.about__description {
    margin-bottom: 2rem;
}

.about__container .about__list {
    text-align: initial;
    grid-template-columns: repeat(2, 130px);
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about__list-item {
    display: flex;
    column-gap: .5rem;
    color: var(--text-dark);
}

.about__list-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.about__images {
    position: relative;
    justify-self: center;
}

.about__img-1 {
    width: 450px;
}

.about__img-2 {
    width: 220px;
    border: 5px solid #eff0f1;
    position: absolute;
    bottom: 0;
}


@media (min-width: 850px) {
    .about__img-1 {
        margin-top: 20px;
        width: 250px;
        top: -50px;
        margin-left: 0;
    }

    .about__img-2 {
        width: 350px;
        left: -50px;
        bottom: -10px;
    }

    .about__img-3 {
        margin-top: 20px;
        width: 250px;
        top: -50px;
        margin-left: 0;
    }
}

@media (min-width: 1150px) {
    .container2 {
        margin-inline: auto;
    }

    .section2 {
        padding-block: 0 2rem;
    }

    .about__container {
        grid-template-columns: repeat(2, 480px);
        column-gap: 5rem;
        padding: 5rem 4rem;
    }

    .about__images {
        order: -1;
        /*important change position (image to right) order: 1;*/
    }

    .about__images2 {
        order: 1;
    }

    .about__img-1 {
        margin-top: 20px;
        width: 100%;
        top: -50px;
        margin-left: 10px;
    }

    .about__img-2 {
        width: 350px;
        left: -50px;
        bottom: -10px;
    }

    .about__img-3 {
        margin-top: 50px;
        width: 100%;
        top: -50px;
        margin-left: 10px;
    }
}

/*=============== THIRD SECTION (STEP) ===============*/
.steps {
    min-height: 100vh;
    background-image: url("../image/line.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.steps__grid {
    margin: 0 2rem;
    margin-top: 4rem;
    display: grid;
    gap: 1rem;
}

.steps__card {
    padding: 1rem;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    transition: .5s ease;
}

.steps__card:hover {
    background-color: var(--primary-color-dark);
}

.steps__card:hover p {
    color: #bfbfbf;
}

.steps__card:hover h4 {
    color: var(--extra-light);
}

.steps__card span {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 5px 11px;
    font-size: 1.5rem;
    border-radius: 100%;
}

.steps__card:nth-child(1) span {
    color: #095dfa;
    background-color: #eef4ff;
    transition: .3s ease;
}

.steps__card:nth-child(1) span:hover {
    color: #eef4ff;
    background-color: #095dfa;
}

.steps__card:nth-child(2) span {
    color: #7684c1;
    background-color: #eef1ff;
    transition: .3s ease;
}

.steps__card:nth-child(2) span:hover {
    color: #eef1ff;
    background-color: #7684c1;
}

.steps__card:nth-child(3) span {
    color: #80d244;
    background-color: #f1ffe6;
    transition: .3s ease;
}

.steps__card:nth-child(3) span:hover {
    color: #f1ffe6;
    background-color: #80d244;
}

.steps__card:nth-child(4) span {
    color: #2f2b2b;
    background-color: #e7e6e6;
    transition: .3s ease;
}

.steps__card:nth-child(4) span:hover {
    color: #e7e6e6;
    background-color: #2f2b2b;
}

.steps__card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.steps__card p {
    color: var(--text-light);
}

@media (width > 540px) {

    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .explore__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width > 768px) {

    .steps__grid {
        margin-top: 6rem;
        grid-template-columns: repeat(4, 1fr);
    }

    .steps__card:nth-child(2n - 1) {
        transform: translateY(-2rem);
    }
}

@media (width > 1024px) {

    .steps__card {
        padding: 1.5rem;
    }

    .explore__card {
        padding: 1.5rem;
    }

    .offer__grid {
        gap: 2rem;
    }
}

/*=============== ADDITION (SAME AS SECOND SECTION BUT IMAGE ON THE LEFT) ===============*/



/*=============== FOURTH SECTION (STEP) ===============*/

.explore__grid {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-block: 4rem;
    display: grid;
    gap: 1rem;
}

.explore__card {
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.explore__card:hover {
    background-color: var(--primary-color-dark);
}

.explore__card span {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 5px 11px;
    font-size: 1.5rem;
    border-radius: 5px;
    transition: 0.3s;
}

.explore__card:nth-child(1) span {
    color: #f04a0c;
    background-color: #f6efef;
}

.explore__card:nth-child(2) span {
    color: #6a38c2;
    background-color: #e9ddff;
}

.explore__card:nth-child(3) span {
    color: #ff0101;
    background-color: #fff2f2;
}

.explore__card:nth-child(4) span {
    color: #fbbc09;
    background-color: #fff8e3;
}

.explore__card:nth-child(5) span {
    color: #4680e7;
    background-color: #e7edf8;
}

.explore__card:nth-child(6) span {
    color: #34a753;
    background-color: #f1fef5;
}

.explore__card:nth-child(7) span {
    color: #443ee0;
    background-color: #f6f5ff;
}

.explore__card:nth-child(8) span {
    color: #3ac2ba;
    background-color: #f0fffe;
}

.explore__card:nth-child(9) span {
    color: #c2bf3b;
    background-color: #ffffe9;
}

.explore__card:nth-child(10) span {
    color: #a7349f;
    background-color: #ffeffe;
}

.explore__card:nth-child(11) span {
    color: #e03e79;
    background-color: #fff3f7;
}

.explore__card:nth-child(12) span {
    color: #187b75;
    background-color: #ebfcfb;
}



.explore__card:hover span {
    color: var(--white);
    background-color: var(--primary-color);
}

.explore__card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: 0.3s;
}

.explore__card p {
    color: var(--text-light);
    transition: 0.3s;
}

.explore__card:hover h4 {
    color: var(--white);
}

.explore__card:hover p {
    color: var(--extra-light);
}

.explore__btn {
    text-align: center;
}

@media (width > 540px) {
    .explore__grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (width > 768px) {
    .explore__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (width > 1024px) {
    .explore__card {
        padding: 1.5rem;
    }
}

/*=============== FIFTH SECTION (STEP) ===============*/
.section__container3 {
    padding: 2rem 1rem;
    margin: 2rem;
}

.job__grid {
    margin: 0 2rem;
    margin-top: 4rem;
    display: grid;
    gap: 1rem;
}

.job__card {
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.job__card:hover {
    background-color: var(--primary-color-dark);
}

.job__card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.job__card img {
    max-width: 50px;
    padding: 10px;
    border-radius: 100%;
    background-color: var(--white);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.job__card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: 0.3s;
}

.job__card h6 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: 0.3s;
}

.job__card h4 {
    margin-block: 1rem 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: 0.3s;
}

.job__card p {
    margin-bottom: 1rem;
    color: var(--text-light);
    transition: 0.3s;
}

.job__card__footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.job__card__footer span {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.3s;
}

.job__card__footer span:nth-child(1) {
    color: #4680e7;
    background-color: #e7edf8;
}

.job__card__footer span:nth-child(2) {
    color: #f04a0c;
    background-color: #f6efef;
}

.job__card__footer span:nth-child(3) {
    color: #3ac2ba;
    background-color: #f0fffe;
}

.job__card:hover :is(h5, h4) {
    color: var(--white);
}

.job__card:hover :is(h6, p) {
    color: #bfbfbf;
}

.job__card:hover .job__card__footer span {
    color: var(--white);
    background-color: var(--primary-color);
}

@media (width > 540px) {
    .job__grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (width > 768px) {
    .job__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*=============== SIXTH SECTION (STEP) ===============*/

.img1 {
    display: flex;
    width: 100%;
}

.offer__grid {
    margin: 0 2rem;
    margin-top: 4rem;
    display: grid;
    gap: 2rem 1rem;
}

.offer__card img {
    margin-bottom: 1rem;
    border-radius: 5px;
}

.offer__details {
    display: flex;
    align-items: flex-start;
}

.offer__details span {
    font-size: 2rem;
    font-weight: 800;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--text-dark);
    padding-right: 1rem;
}

.offer__details div {
    padding-left: 1rem;
    border-left: 2px solid var(--primary-color);
}

.offer__details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.offer__details p {
    color: var(--text-light);
}

@media (width > 540px) {
    .offer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width > 768px) {
    .offer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (width > 1024px) {
    .offer__grid {
        gap: 2rem;
    }
}

/*===============   SEVENTH SECTION (STEP) ===============*/
.swiper {
    padding-top: 4rem;
    width: 100%;
    max-width: 600px;
}

.client__card img {
    max-width: 80px;
    margin-inline: auto;
    margin-bottom: 2rem;
    border-radius: 100%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.client__card p {
    margin-bottom: 1rem;
    line-height: 1.75rem;
    color: var(--text-dark);
    text-align: center;
}

.client__ratings {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.client__ratings span {
    color: goldenrod;
}

.client__card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.client__card h5 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
}

/*===============   EIGHTH SECTION (STEP) ===============*/

.wrapper_logo {
    margin-bottom: 5rem;
    width: 90%;
    max-width: 1536px;
    margin-inline: auto;
    position: relative;
    height: 100px;
    margin-top: 5rem;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 80%,
            rgba(0, 0, 0, 0));
}

@keyframes scrollLeft {
    to {
        left: -200px;
    }
}

.item {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    position: absolute;
    left: calc(200px * 8);
    animation-name: scrollLeft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.item img {
    width: 100px;
}

.item1 {
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.item2 {
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.item3 {
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item4 {
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.item5 {
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.item6 {
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7 {
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item8 {
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
}

/*===============   EIGHTH SECTION (STEP) TEST 2 ===============*/

.partner_section {
    padding: 64px 0;
}

.logos_slider {
    overflow-x: hidden;
}

.overflow {
    display: flex;
    padding: .5rem 1rem;
    overflow: hidden;
}

.logos_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    animation: logoLoop 30s linear infinite;
}

.logo_item {
    margin-left: 1rem;
    padding: 1rem;
    aspect-ratio: 30/9;
    background: var(--item-bg);
    display: grid;
    place-items: center;
    border-radius: 1rem;
}

.logo_item img {
    height: 3rem;
    /* width: 7rem; */
    margin-inline: 2rem;
}

@keyframes logoLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translate(-100%);
    }
}

/*=============== LOGIN SECTION ===============*/

.container_background {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(../image/bg.jpg) rgba(1, 1, 1, 0.529) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: color;
}

.container-logo {
    position: relative;
    width: 850px;
    height: 550px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    margin: 20px;
    overflow: hidden;
}

.form-box {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    text-align: center;
    padding: 40px;
    z-index: 1;
    transition: .6s ease-in-out 1.2s, visibility 0s 1s;
}

.container-logo.active .form-box {
    right: 50%;
}

.form-box.register {
    visibility: hidden;
}

.container-logo.active .form-box.register {
    visibility: visible;
}

.form-box form {
    width: 100%;
}

.form-box .section__header {
    margin: -10px 0;
}

.form-box .input-box {
    position: relative;
    margin: 30px 0;
}

.form-box .input-box input {
    width: 100%;
    padding: 13px 50px 13px 20px;
    background: #eee;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.form-box .input-box input::placeholder {
    color: #888;
    font-weight: 400;
}

.form-box .input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #888;
}

.forgot-link {
    margin: -15px 0 15px;
}

.forgot-link a {
    font-size: 14.5px;
    color: #333;
    text-decoration: none;
    background-image: linear-gradient(hsl(0, 0%, 20%), hsl(0, 0%, 20%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}

.forgot-link a:hover {
    background-size: 100% 1px;
}

.btn-login {
    width: 100%;
    height: 40px;
    outline: none;
    border: none;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-login:hover {
    background-color: var(--primary-color-dark);
    box-shadow: 2px 2px 10px rgba(78, 89, 156, 0.5);
}

.btn-login span {
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
    color: var(--extra-light);
}

.btn-login span:hover {
    background-size: 100% 1px;
}

.container-logo .section__description {
    font-size: 14.5px;
    max-width: 600px;
    margin: 15px 0;
    color: #333;
    line-height: 1.75rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    display: inline-flex;
    padding: 10px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 24px;
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 8px;
}

.social-icons a:hover {
    border: 2px solid var(--primary-color-dark);
    color: var(--primary-color-dark);
    text-shadow: 2px 2px 10px rgba(175, 175, 175, 0.5);
}

.toggle-box {
    position: absolute;
    width: 100%;
    height: 100%;
}

.toggle-box::before {
    content: '';
    position: absolute;
    left: -250%;
    width: 300%;
    height: 100%;
    background: var(--primary-color-dark);
    border-radius: 150px;
    z-index: 2;
    transition: 1.8s ease-in-out;
}

.container-logo.active .toggle-box::before {
    left: 50%;
}

.toggle-panel {
    position: absolute;
    width: 50%;
    height: 100%;
    color: var(--extra-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: .6s ease-in-out;
}

.toggle-panel.toggle-left {
    left: 0;
    transition-delay: 1.2s;
}

.container-logo.active .toggle-panel.toggle-left {
    left: -50%;
    transition-delay: .6s;
}

.container-logo.active .toggle-panel.toggle-right {
    right: 0;
    transition-delay: 1.2s;
}

.toggle-panel.toggle-right {
    right: -50%;
    transition-delay: 1.2s;
}

.toggle-panel .section__header {
    color: var(--extra-light);
}

.toggle-panel .section__description {
    color: var(--extra-light);
    margin-bottom: 20px;
}

.toggle-box .btn-login {
    width: 160px;
    height: 46px;
    background: transparent;
    border: 2px solid var(--extra-light);
    box-shadow: none;
}

.toggle-box .btn-login:hover {
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
    ;
}

@media screen and (max-width: 650px) {

    .container-logo {
        margin-top: 80px;
        margin-bottom: 5rem;
        height: calc(100vh - 110px);
    }

    .form-box {
        bottom: 0;
        width: 100%;
        height: 70%;
    }

    .form-box .section__header {
        font-size: 40px;
    }

    .toggle-panel .section__header {
        font-size: 40px;
    }

    .container-logo.active .form-box {
        right: 0;
        bottom: 30%;
    }

    .toggle-box::before {
        left: 0;
        top: -270%;
        width: 100%;
        height: 300%;
        border-radius: 20vw;
    }

    .container-logo.active .toggle-box::before {
        left: 0;
        top: 70%;
    }

    .toggle-panel {
        width: 100%;
        height: 30%;
    }

    .toggle-panel.toggle-left {
        top: 0;
    }

    .container-logo.active .toggle-panel.toggle-left {
        left: 0;
        top: -30%;
    }

    .toggle-panel.toggle-right {
        right: 0;
        bottom: -30%;
    }

    .container-logo.active .toggle-panel.toggle-right {
        bottom: 0;
    }
}

@media screen and (max-width: 440px) {

    .form-box {
        padding: 20px;
    }

    .form-box .section__header {
        font-size: 30px;
    }

    .toggle-panel .section__header {
        font-size: 30px;
    }
}

/*=============== JOB HERO SECTION (Job.html) ===============*/

.sec-space {
    padding: 4rem 0 0;
}

.extra-space {
    padding-top: 8rem;
}

.obj-width {
    max-width: 1200px;
    margin: auto;
}

#w-btn {
    margin-left: 40px;
    background: #fff;
    color: #1f4a40;
    padding: 9px 30px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    box-shadow: none;
    border: none;
}

#g-btn {
    text-decoration: none;
    background-color: hsl(229, 54%, 51%);
    color: hsl(0, 0%, 100%);
    padding: 9px 30px;
    border-radius: 20px;
    cursor: pointer;
}

.hero {
    background: hsl(0, 0%, 100%);
}

.hero-box {
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
    height: 100vh;
    align-items: center;
}

.hero-box .section__header {
    text-align: left;
}

.h-left {
    width: 45%;
}

.h-left p {
    padding: 1.5rem 0;
}

.search {
    position: relative;
}

.search a {
    position: absolute;
    top: 12px;
    right: 20px;
}

.search input {
    width: 100%;
    height: 4rem;
    border-radius: 35px;
    padding: 0 20px;
    font-size: 1rem;
    outline: none;
    border: 2px solid hsl(0, 0%, 20%);
}

.h-right {
    width: 50%;
}

.h-right img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 699px) {

    .hero-box {
        flex-direction: column-reverse;
        justify-content: center;
        height: auto;
        align-items: start;
        padding: 8rem 2rem;
    }

    .h-left {
        width: 100%;
    }

    .h-right {
        display: none;
    }

}

@media (width > 762px) {
    .hero-box {
        padding: 8rem 2rem;
    }
}

@media (width > 768px) {
    .hero-box {
        padding: 8rem 2rem;
    }
}

@media (width > 1024px) {
    .hero-box {
        padding: 8rem 2rem;
    }
}

/*=============== FEATURES HERO SECTION (Job.html) ===============*/

.features .fe-box {
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    margin-top: 2rem;
    border: 4px solid hsl(230, 50%, 19%);
    border-radius: 20px;
}

.features .fe-box img {
    width: 50px;
    margin-top: 3rem;
}

.features .fe-box div {
    width: 200px;
}


h3 {
    font-size: 1.2rem;
    padding-bottom: 1rem;
    font-weight: 500;
}

@media (max-width: 990px) {
    .features .fe-box {
        margin: 2rem 2rem;
    }
}

@media (max-width: 699px) {
    .features .fe-box {
        margin: 2rem 2rem;
    }

    .features .fe-box div {
        width: 40%;
    }
}

/*=============== JOB LISTING HERO SECTION (Job.html) ===============*/

.jobs-list{
    margin-top: 3rem;
}

.jobs-list .job-id {
    margin: 0 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

.jobs-container {
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.jobs-list .job-id li {
    padding: 20px 40px;
    cursor: pointer;
    color: #000;
}

.jobs-list .job-id li.active {
    background: hsl(229, 54%, 51%);
    color: hsl(0, 0%, 100%);
}

.jobs-list .jList {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #ccc;
    align-items: center;
    justify-items: start;
    cursor: pointer;
    color: #000;
    padding: 2rem 2rem;
    transition: .3s ease;
}

.jobs-list .jList.delete {
    display: none;
}

.jobs-list .jList:hover {
    background: hsl(229, 54%, 51%);
    color: #fff;
}

.jobs-list .jList img {
    width: 40px;
}

.jobs-list .jList h3 {
    padding-bottom: 0;
}

/* Grid Layout for Job Cards */
.jobs-list .jList {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);  /* Ensure grid layout is maintained */
    border: 1px solid #ccc;
    align-items: center;
    justify-items: start;
    cursor: pointer;
    color: #000;
    padding: 2rem 2rem;
    transition: .3s ease;
}

/* Keep layout consistent for smaller screens */
@media (max-width: 699px) {
    .jobs-list .jList {
        width: 48%;
        margin-top: 1rem;
        grid-template-columns: repeat(1, 1fr);  /* Single column layout on mobile */
        grid-gap: 15px;
        padding: 2rem 1rem;
        text-align: center;
        justify-items: center;
    }
}

/* When a job item is filtered (example: add a 'delete' class for hidden jobs) */
.jobs-list .jList.delete {
    display: none;  /* This hides filtered job items without affecting grid layout */
}

@media (max-width: 699px) {
    .jobs-list .job-id {
        position: relative;
        width: 100%;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .jobs-list .job-id li {
        padding: 20px 30px;
        text-wrap: nowrap;
    }

    .jobs-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .jobs-list .jList {
        width: 48%;
        margin-top: 1rem;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
        padding: 2rem 1rem;
        text-align: center;
        justify-items: center;
    }
}

/*=============== TEAM HERO SECTION (Job.html) ===============*/

.team-container {
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.team-container .fl-box {
    border: 1px solid hsl(228, 100%, 94%);
    width: 280px;
    padding: 2rem 0;
    border-radius: 20px;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fl-box img {
    border-radius: 50%;
    margin-bottom: 1rem;
}

.skill {
    padding-bottom: 2rem;
}

#key {
    font-size: .8rem;
    background-color: hsl(228, 100%, 94%);
    padding: 10px 20px;
    border-radius: 20px;
    color: #000;
}

@media (max-width: 699px) {
    .skill {
        padding-bottom: 1rem;
    }

    .team-container .fl-box {
        width: 48%;
        text-align: center;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

/*=============== JOBS ALL LIST WITH SEARCH BAR HERO SECTION (Job.html) ===============*/

.jobs-list form {
    width: 95%;
    border: 1px solid hsl(230, 50%, 19%);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem;
}

.jobs-list form i {
    padding-left: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.jobs-list form input {
    width: 100%;
    border: none;
    outline: none;
    padding: 1rem .5rem;
    font-size: 1.1rem;
}

.explore__btn a {
    text-decoration: none;
    color: hsl(0, 0%, 100%);
}

@media (max-width: 699px) {
    .jobs-list form{
        width: 85%;
    }
}

/*=============== JOB DETAILS HERO SECTION (Job.html) ===============*/

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fcfa;
    border: 1px solid hsl(230, 50%, 19%);
    border-radius: 38px;
    padding: 2rem;
    margin: 0 2rem;
}

.job-img-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-header img {
    width: 100px;
    background: #fff;
    padding: 1rem;
    border-radius: 15px;
    margin-right: 2rem;
}

.job-description {
    border: 4px solid hsl(230, 50%, 19%);
    border-radius: 20px;
    margin: 2rem 0 5rem;
    padding: 2rem;
}

.job-description p {
    padding-bottom: 2rem;
}

@media (max-width: 990px) {
    .job-description {
        margin: 2rem 2rem;
    }
}

@media (max-width: 699px) {
    .job-description {
        margin: 2rem 2rem;
    }
}

/*=============== RESPOND JOB DETAILS HERO SECTION (Job.html) ===============*/

@media (max-width: 699px) {
    .job-header {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border-radius: 15px;
        padding: 1rem;
    }

    .job-img-row {
        margin-bottom: 1.5rem;
    }

    .job-header img {
        padding: 0rem;
        border-radius: 10px;

    }
}

/*=============== ABOUT SECTION (about.html) ===============*/

.about-home {
    min-height: 60vh;
    background: url(../image/bg.jpg) rgba(1, 1, 1, 0.529) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: color;
}

/*=============== ABOUT FEATURES SECTION (about.html) ===============*/

.about-features .fea-base {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
}

.about-features .fea-box {
    padding: 2rem;
    border-radius: 15px;
    text-align: start;
    margin: 0 2rem;
    background: hsl(228, 31%, 84%);
    transition: .3s ease;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

.about-features .fea-box:hover {
    background: hsl(230, 50%, 19%);
    color: white;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

.about-features .fea-box i {
    font-size: 2.3rem;
    color: rgba(44, 44, 80);
}

.about-features .fea-box:hover i {
    color: white;
}

.about-features .fea-box:hover h3 {
    color: white;
}

.about-features .fea-box:hover p {
    color: white;
}

.about-features .fea-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(46, 46, 59);
    padding: 13px 0 7px 0;
}

.about-features .fea-box p {
    font-size: 1rem;
    font-weight: 400;
    color: rgb(130, 130, 136);
    text-align: left;
}

/*=============== CONTACT US SECTION (contact.html) ===============*/

.section__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(../image/bg.jpg) rgba(1, 1, 1, 0.529) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: color;
}

.contact-container {
    position: relative;
    min-width: 1100px;
    min-height: 550px;
    display: flex;
    z-index: 1000;
}

.contact-container .contactInfo {
    margin-top: 3rem;
    position: absolute;
    top: 40px;
    width: 350px;
    height: calc(100% - 80px);
    background: hsl(230, 50%, 19%);
    z-index: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.contact-container .contactInfo .section__header {
    color: hsl(0, 0%, 100%);
    margin-bottom: 2rem;
}

.contact-container .contactInfo ul.info {
    position: relative;
    margin: 20px 0;
}

.contact-container .contactInfo ul.info li {
    position: relative;
    display: flex;
    margin: 20px 0;
    cursor: pointer;
    align-items: flex-start;
}

.contact-container .contactInfo ul.info li span:nth-child(1) {
    width: 30px;
    min-width: 30px;
}

.contact-container .contactInfo ul.info li span:nth-child(1) i {
    max-width: 100%;
    filter: invert(1);
}

.contact-container .contactInfo ul.info li span:nth-child(2) {
    color: #fff;
    margin-left: 10px;
    font-weight: 300;
}

.contact-container .contactInfo ul.sci {
    position: relative;
    display: flex;
    justify-content: center;
}

.contact-container .contactInfo ul.sci li {
    margin-right: 15px;
}

.contact-container .contactInfo ul.sci li a {
    text-decoration: none;
}

.contact-container .contactInfo ul.sci li a i {
    color: hsl(0, 0%, 100%);
}

.contact-container .contactForm {
    margin: 3rem;
    position: absolute;
    padding: 70px 50px;
    padding-left: 250px;
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 100%;
    background: #fff;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.25);
}

.contact-container .contactForm .formBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}

.contact-container .contactForm .formBox .inputBox {
    position: relative;
    margin-bottom: 35px;
}

.contact-container .contactForm .formBox .inputBox.w50 {
    width: 47%;
}

.contact-container .contactForm .formBox .inputBox.w100 {
    width: 100%;
}

.contact-container .contactForm .formBox .inputBox input,
.contact-container .contactForm .formBox .inputBox textarea {
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #464646;
    border: none;
    outline: none;
    border-bottom: 1px solid #777;
}

.contact-container .contactForm .formBox .inputBox textarea {
    height: 120px;
}

.contact-container .contactForm .formBox .inputBox span {
    position: absolute;
    left: 0;
    color: #3a3a3a;
    padding: 5px 0;
    pointer-events: none;
    font-size: 18px;
    font-weight: 300;
    transition: 0.3s;
}

.contact-container .contactForm .formBox .inputBox input:focus~span,
.contact-container .contactForm .formBox .inputBox input:valid~span,
.contact-container .contactForm .formBox .inputBox textarea:focus~span,
.contact-container .contactForm .formBox .inputBox textarea:valid~span {
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: hsl(230, 50%, 19%);
    font-weight: 500;
}

.contact-container .contactForm .formBox .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: hsl(229, 54%, 51%);
    color: #fff;
    border: none;
    border-radius: 15px;
    max-width: 150px;
    padding: 12px;
    transition: .3s ease;
}

.contact-container .contactForm .formBox .inputBox input[type="submit"]:hover {
    background: hsl(230, 50%, 19%);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
    .contact-container {
        width: 90%;
        min-width: auto;
        margin: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .contact-container .contactInfo {
        margin-top: 3rem;
        top: 0;
        height: 550px;
        position: relative;
        box-shadow: none;
    }

    .contact-container .contactForm {
        margin-top: 3rem;
        position: relative;
        width: calc(100% - 350px);
        padding-left: 0;
        margin-left: 0;
        padding: 40px;
        height: 550px;
        box-shadow: none;
    }
}

@media (max-width: 991px) {

    .contact-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .contact-container .contactForm {
        margin-top: 5rem;
        margin-bottom: 0;
        width: 100%;
        height: auto;
    }

    .contact-container .contactInfo {
        margin-top: 0;
        width: 100%;
        height: auto;
        flex-direction: row;
    }

    .contact-container .contactInfo ul.sci {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .contact-container .contactForm {
        padding: 25px;
    }

    .contact-container .contactInfo {
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-container .contactInfo ul.sci {
        width: 100%;
        margin-top: 40px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-container .contactForm .formBox .inputBox span {
        font-size: 14px;
    }

    .contact-container .contactForm .formBox .inputBox input,
    .contact-container .contactForm .formBox .inputBox textarea {
        font-size: 14px;
    }
}