@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');

body {
    font-family: 'poppins', sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none !important;
}

.header {
    padding: 0 100px;
    position: relative;
    /* background: #f06f47; */
    background: -webkit-linear-gradient(to right, #f956b3, #f06f47, #ff9c50);
    background: linear-gradient(to right, #f956b3, #f06f47, #ff9c50);
}

.header .container {
    /* width: 1140px; */
    margin: 0 auto;
    border-radius: 0 0 150px 150px;
}

/* custom divider */
.header-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.header-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 200px;
}

.header-divider .shape-fill {
    fill: #FFFFFF;
}

.header-divider-mobile {
    visibility: hidden;
}
/* custom divider */


.container-wrap {
    /* width: 1140px; */
    padding: 0 150px;
    margin: 0 auto;
    border-radius: 0 0 150px 150px;
}

.hide {
    display:none;
}

/* nav begin */
.nav {
    padding: 55px 150px 20px 150px !important;
    top: 0;
    z-index: 999;

    /* background: #f06f47; */
    background: -webkit-linear-gradient(to right, #f956b3, #f06f47, #ff9c50);
    background: linear-gradient(to right, #f956b3, #f06f47, #ff9c50);
}

.sticky {
    position: sticky;
}

.fixed {
    position: fixed;
    width: 100%;
}

/* #nav-mobile {
    display: none;
} */

.nav-scrolled {
    background: -webkit-linear-gradient(to right, rgba(249, 86, 179, 1.0), rgba(240, 111, 71, 1.0), rgba(255, 174, 52, 1.0));
    background: linear-gradient(to right, rgba(249, 86, 179, 1.0), rgba(240, 111, 71, 1.0), rgba(255, 174, 52, 1.0));
}

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

.nav-brand img {
    width: 15vw;
    font-size: 25px;
    font-weight: 600;
}

.nav-menu {
    width: 40%;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;;
}

.nav .menu-item {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.nav .menu-item:hover {
    opacity: 1;
    /* border-bottom: 1px solid; */
    font-weight: 600;
    color: #000;
}

.nav .menu-item.active {
    color: #fff;
    text-decoration: none;
    opacity: 1;
    font-weight: 600;
}

.nav .menu-item.active:hover {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.nav-cta {
    /* width: 30%; */
    text-align: right;
}

.nav .cta-signup {
    padding: 10px 25px;
    /* border: 1px solid rgba(255, 174, 52, 0.8); */
    border: 1px solid #fff;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger .bar {
    text-align: right;
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 100px;
}

.cta-signup-m {
    display: none;
}

@media (max-width: 991px) {
    .cta-signup-m {
        display: block;
    }

    .burger {
        display: block;
    }

    .burger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .burger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav {
        padding: 20px 10px !important;
    }

    .nav .container {
        gap: 0% !important;
    }

    .nav-menu.active {
        left: 0;
        padding: 20px;
    }

    .nav-brand img {
        width: 15vw;
        font-size: 25px;
        font-weight: 600;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-brand img {
        width: 25vw;
        font-size: 25px;
        font-weight: 600;
    }
}

/* hero begin */
.hero .container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 135px 0 100px 0;
    gap: 15px;
}

.hero-headline {
    color: white;
    width: 50%;
    margin: auto;
    font-size: 1.15;
    font-weight: 600;
    line-height: 50px;
}

.hero-subheadline {
    width: 40%;
    margin: auto;
    font-size: 1.2em;
    line-height: 1.15;
    font-family: 'Poppins';
    color: rgba(0, 0, 0, 0.6);
}

.hero-cta {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.hero .cta-primary {
    display: inline-block;
    background-color: #ff9c50;
    color: #fff;
    /* font-size: 16px; */
    border-radius: 100px;
    padding: 15px 25px;
    text-decoration: none;
    box-shadow: 0px 15px 30px rgba(255, 174, 52, 0.2);
}

.hero .cta-primary:hover {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 174, 52, 0.8);
    color: #ff9c50;
    box-shadow: none;
    transition: all 0.3s;
}

.hero .cta-secondary:hover {
    background-color: #ff9c50;
    color: #fff;
    box-shadow: 0px 15px 30px rgba(255, 174, 52, 0.2);
    transition: all 0.3s;
}

.hero .cta-secondary {
    display: inline-block;
    border: 1px solid rgba(255, 174, 52, 0.8);
    color: #ff9c50;
    /* font-size: 16px; */
    border-radius: 100px;
    padding: 15px 25px;
    text-decoration: none;
}

.hero-cta .cta-division {
    background-color: rgba(255, 255, 255, 0.8);
    color: #ff9c50;
    border: 1px solid rgba(255, 174, 52, 0.8);
    display: inline-block;
    border-radius: 100px;
    padding: 5px 15px;
    text-decoration: none;
    margin: 5px 0;
    font-weight: 600;
}

.hero-cta .cta-location {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    border-radius: 100px;
    padding: 5px 15px;
    text-decoration: none;
    margin: 5px 0;
    font-weight: 600;
}

@media (max-width: 991px) {
    .hero-headline {
        width: 70%;
    }

    .hero-subheadline {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .hero-headline {
        width: 100%;
    }

    .hero-subheadline {
        width: 70%;
    }
}

/* jobs begin */
.jobs-cta {
    display: flex;
    gap: 15px;
    text-align: center;
}

.jobs .category {
    margin: 0 auto 25 auto;
}

.cta-category {
    display: inline-block;
    border: 1px solid rgba(240, 111, 71, 0.8);
    color: #f06f47;
    border-radius: 100px;
    padding: 5px 15px;
    text-decoration: none;
    margin: 5px 0;
}

.cta-category:hover {
    background-color: #f06f47;
    color: #fff;
    box-shadow: 0px 15px 30px rgba(255, 174, 52, 0.2);
    transition: all 0.3s;
}

.cta-category.active {
    background-color: #f06f47;
    color: #fff;
    box-shadow: 0px 15px 30px rgba(255, 174, 52, 0.2);
}

.jobs-headline {
    font-size: inherit;
}

.jobs .container {
    padding-bottom: 75px;
}

.jobs-list {
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
}

.job {
    /* width: 48%; */
    width: 30%;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 8px;
        /* background-image: url("../images/ec-logo.png");
        background-repeat: no-repeat;
        background-size: 25%;
        background-position: right top; */
        /* box-shadow: 0px 30px 60px rgba(0, 26, 255, 0.1); */
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 5px 20px rgba(240, 111, 71, 0.4);
    text-decoration: none;
    color: black;
}

.job:hover {
    background-color: rgba(143, 31, 97, 0.8);
    transition: all 0.3s;
    color: #fff;
    .job-divisi,
    .job-divider {
        transition: all 0.3s;
        color: #fff;
        border-color: rgba(255, 255, 255, 0.25);
    }
}

.job-title {
    font-size: 18px;
    margin: 0 0 5px 0;
}

.job-divisi {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: rgba(0, 0, 0, 0.7);
}

.job-content {
    display: flex;
    margin: 45px 0;
    gap: 15px;
}

.job-item {
    width: calc(100%/3);
}

.job .item-head {
    font-weight: 600;
    margin: 0 0 5px 0;
}

.job .item-content {
    margin: 0;
}

.job-divider {
    margin: 25px 0;
    border-color: rgba(0, 0, 0, 0.05);
}

.job-footer {
    display: flex;
    gap: 15px;
}

.job-exp {
    width: 60%;
}

.job-location {
    width: 40%;
}

@media(max-width: 991px) {
    .job {
        width: 100%;
    }
}

@media(max-width: 550px) {
    .job-content,
    .job-footer {
        flex-wrap: wrap;
    }

    .job-item {
        width: 100%;
    }
}

/* footer begin */
.footer {
    /* background-color: rgba(128, 128, 128, 0.2);
    box-shadow: 0px 15px 30px rgba(255, 174, 52, 0.2); */
    /* border-radius: 150px 150px 0 0; */
    padding: 0 150px;
    position: relative;
    background: #f06f47;
    background: -webkit-linear-gradient(to left, #f956b3, #f06f47, #ff9c50);
    background: linear-gradient(to left, #f956b3, #f06f47, #ff9c50);
}

    /* custom divider */
    .footer-divider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .footer-divider svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 200px;
    }

    .footer-divider .shape-fill {
        fill: #FFFFFF;
    }

    .footer-divider-mobile {
        visibility: hidden;
    }
    /* custom divider */

.footer .container {
    padding: 75px 0 25px 0;
}

.foot-head{
    color: white;
}

.foot-cr{
    color: white;
}

.foot-info {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 55px;
}

.head-address {
    width: 50%;
}

.head-phone {
    display: flex;
    gap: 5px;
}

.head-title,
.location-title {
    z-index: 1;
    position: relative;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

.location-branch {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.branch-name {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 500;
    min-width: 40%;
    color: white;
}

.foot-hr {
    margin-top: 40px;
    border-color: rgba(255, 255, 255, 0.2);;
}

.foot-cr {
    text-align: center;
}

@media(max-width: 991px) {
    .foot-location {
        width: 100%;
    }

    .location-branch {
        display: block;
    }
}

@media(max-width: 767px) {
    .foot-info {
        display: block;
    }
}

/* detail vacancy */
.job-detail {
    display: flex;
    padding: 0 25px 65px 25px;
}

.job-det-left {
    width: 65%;
}

.job-det-right {
    justify-content: center;
    width: 35%;
}

.job-desc,
.job-qual {
    margin-top: 50px;
    line-height: 25px;
}

.job-desc > p,
.job-qual > p {
    font-size: 25px;
}

.job-det-right .job-content {
    display: flex;
    flex-wrap: wrap;
    margin: 55px auto;
    justify-content: center;
}

.job-det-right .job-item {
    padding: 15px 15px;
    border: 1px solid rgba(255, 174, 52, 0.8);
    border-radius: 10px;
    width: 45%;
}

.job-det-right .item-head {
    font-weight: 600;
    margin: 0 0 5px 0;
}

.job-det-right .item-content {
    margin: 0;
}

.apply {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-apply {
    text-decoration: none;
    background-color: rgb(255, 174, 52);
    /* background-color: rgb(240, 111, 71); */
    border-radius: 10px;
    color: white;
    padding: 15px;
    font-weight: 600;
}

.socmed {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 0;
}

.socmed > p {
    margin: 0;
}

.cta-socmed {
    padding: 10px 0;
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.bi-facebook,
.bi-instagram,
.bi-linkedin {
    /* color: rgb(71, 129, 160); */
    color: rgb(143, 31, 97);
}

@media (max-width: 991px) {
    .job-detail {
        padding: 0;
        flex-direction: column;
    }

    .job-det-left,
    .job-det-right {
        width: 100%;
    }
}
.burger {
    display: none;
    cursor: pointer;
}

.burger .bar {
    text-align: right;
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 100px;
}

@media (max-width: 991px) {
    .burger {
        display: block;
    }

    .burger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .burger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu,
    .nav-cta {
        position: fixed;
        right: -100%;
        top: 6%; /*alt 120px*/
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 20px;
        background: -webkit-linear-gradient(to right, rgba(249, 86, 179, 1.0), rgba(240, 111, 71, 1.0), rgba(255, 174, 52, 1.0));
        background: linear-gradient(to right, rgba(249, 86, 179, 1.0), rgba(240, 111, 71, 1.0), rgba(255, 174, 52, 1.0));
    }
}

/* hero begin */
.hero .container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 135px 0 100px 0;
    gap: 15px;
}

.hero-headline {
    color: white;
    width: 50%;
    margin: auto;
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.5em;
}

.hero-subheadline {
    width: 40%;
    margin: auto;
    /* font-size: 16px; */
    line-height: 1.3em;
    color: rgba(0, 0, 0, 0.6);
}

.hero-cta {
    margin-top: 15px;
    display: flex;
    gap: 25px;
}

.hero .cta-primary {
    display: inline-block;
    background-color: #ff9c50;
    color: #fff;
    /* font-size: 16px; */
    border-radius: 100px;
    padding: 15px 25px;
    text-decoration: none;
    box-shadow: 0px 15px 30px rgba(255, 174, 52, 0.2);
}

.hero .cta-primary:hover {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 174, 52, 0.8);
    color: #ff9c50;
    box-shadow: none;
    transition: all 0.3s;
}

.hero .cta-secondary:hover {
    background-color: #ff9c50;
    color: #fff;
    box-shadow: 0px 15px 30px rgba(255, 174, 52, 0.2);
    transition: all 0.3s;
}

.hero .cta-secondary {
    display: inline-block;
    border: 1px solid rgba(255, 174, 52, 0.8);
    color: #ff9c50;
    /* font-size: 16px; */
    border-radius: 100px;
    padding: 15px 25px;
    text-decoration: none;
}

@media (max-width: 991px) {
    body {
        font-size: 0.8em !important;
    }

    .hero-headline {
        width: 70%;
        line-height: 1.3em;
        font-size: 1.8em;
    }

    .hero-subheadline {
        width: 50%;
        line-height: 1em;
        font-size: 1.4em;
    }
}

@media (max-width: 767px) {
    .hero-headline {
        width: 100%;
    }

    .hero-subheadline {
        width: 70%;
    }
}

/* jobs begin */
.jobs-cta {
    display: flex;
    gap: 15px;
    text-align: center;
}

.jobs .category {
    margin: 0 auto 25 auto;
}

.cta-category {
    display: inline-block;
    border: 1px solid rgba(240, 111, 71, 0.8);
    color: #f06f47;
    border-radius: 100px;
    padding: 5px 15px;
    text-decoration: none;
    margin: 5px 0;
}

.cta-category:hover {
    background-color: #f06f47;
    color: #fff;
    box-shadow: 0px 15px 30px rgba(255, 174, 52, 0.2);
    transition: all 0.3s;
}

.cta-category.active {
    background-color: #f06f47;
    color: #fff;
    box-shadow: 0px 15px 30px rgba(255, 174, 52, 0.2);
}

.jobs-headline {
    font-size: inherit;
}

.jobs .container {
    padding-bottom: 75px;
}

.jobs-list {
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
    justify-content: space-around;
}

.job {
    /* width: 48%; */
    width: 31%;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 8px;
        /* background-image: url("../images/ec-logo.png");
        background-repeat: no-repeat;
        background-size: 25%;
        background-position: right top; */
        /* box-shadow: 0px 30px 60px rgba(0, 26, 255, 0.1); */
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 5px 20px rgba(240, 111, 71, 0.4);
    text-decoration: none;
    color: black;
}

.job:hover {
    background-color: rgba(143, 31, 97, 0.8);
    transition: all 0.3s;
    color: #fff;
    .job-divisi,
    .job-divider {
        transition: all 0.3s;
        color: #fff;
        border-color: rgba(255, 255, 255, 0.25);
    }
}

.job-title {
    font-size: 18px;
    margin: 0 0 5px 0;
}

.job-divisi {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: rgba(0, 0, 0, 0.7);
}

.job-content {
    display: flex;
    margin: 45px 0;
    gap: 15px;
}

.job-item {
    width: calc(100%/3);
}

.job .item-head {
    font-weight: 600;
    margin: 0 0 5px 0;
}

.job .item-content {
    margin: 0;
}

.job-divider {
    margin: 25px 0;
    border-color: rgba(0, 0, 0, 0.05);
}

.job-footer {
    display: flex;
    gap: 15px;
}

.job-exp {
    width: 60%;
}

.job-location {
    width: 40%;
}

@media(max-width: 991px) {
    .job {
        width: 100%;
    }

    .job-content {
        margin: 30px 0;
    }

    .job-divider {
        display: none;
    }
}

@media(max-width: 550px) {
    .job-content,
    .job-footer {
        flex-wrap: wrap;
    }

    .job-item {
        width: 100%;
    }
}

/* footer begin */
.footer {
    /* background-color: rgba(128, 128, 128, 0.2);
    box-shadow: 0px 15px 30px rgba(255, 174, 52, 0.2); */
    /* border-radius: 150px 150px 0 0; */
    padding: 0 150px;
    position: relative;
    background: #f06f47;
    background: -webkit-linear-gradient(to left, #f956b3, #f06f47, #ff9c50);
    background: linear-gradient(to left, #f956b3, #f06f47, #ff9c50);
}

/* custom divider */
.footer-divider {
    /* visibility: visible; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 200px;
}

.footer-divider .shape-fill {
    fill: #FFFFFF;
}

.footer-divider-mobile {
    visibility:hidden;
    display: none;
}
/* custom divider */

.footer .container {
    padding: 75px 0 25px 0;
}

.foot-info {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 55px;
}

.head-address {
    width: 50%;
}

.head-title,
.location-title {
    z-index: 1;
    position: relative;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.location-branch {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.branch-name {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 500;
    min-width: 40%;
}

.foot-hr {
    margin-top: 40px;
    border-color: rgba(255, 255, 255, 0.2);;
}

.foot-cr {
    text-align: center;
}

@media(max-width: 991px) {
    .foot-location {
        width: 100%;
    }

    .head-title, .location-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .location-branch {
        display: block;
    }

    .branch-name {
        font-size: 0.8em;
        margin-bottom: 10px;
    }
}

@media(max-width: 767px) {
    .foot-info {
        display: block;
    }
}

/* iusedtoasktomymom */

/* style mobile */
@media screen and (max-width: 480px) {
    .header {
        padding: 0 20px
    }

    .head-address {
        width: 100%;
    }
    .header-divider {
        visibility: hidden;
    }
    .header-divider-mobile {
        visibility: visible;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .header-divider-mobile svg {
        position: relative;
        display: block;
        width: calc(196% + 1.3px);
        height: 115px;
    }

    .header-divider-mobile .shape-fill {
        fill: #FFFFFF;
    }

    .container-wrap {
        padding: 0 25px;
    }

    .footer {
        padding: 0 25px;
    }

    .footer-divider {
        display: none;
    }

    .footer-divider-mobile {
        visibility: visible;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        transform: rotate(180deg);
    }

    .footer-divider-mobile svg {
        position: relative;
        display: block;
        width: calc(196% + 1.3px);
        height: 115px;
    }

    .footer-divider-mobile .shape-fill {
        fill: #FFFFFF;
    }

    .foot-cr {
        font-size: 10px;
    }
}
/* style mobile */

/* Life At Style */
