@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;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

*,
*::after,
*::before {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    scroll-behavior: smooth;
    background-color: hsla(226, 81%, 96%, 0.3);
}

.header {
    background-image: url("https://lh3.googleusercontent.com/n1lIvgGLiXxvGMhLftRlWHJ98aplO2LEIB_xfBVQOt5lsFnEg4LrMqlZQCm13sjt55AqBrkrIYNU6J9ytTg9CWNECMYTdyIQXdXXi58=w1800");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 50vw;
    padding: 20px 5vw 0px;
}

.header .details {
    max-width: 1000px;
    width: 100%;
    color: white;
    margin: auto;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 45vw;
}

.details .intro {
    width: max-content;
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
}

.intro > span {
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    display: block;
}

.details .heading {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    min-height: 30vw;
    max-width: 500px;
}

.heading > h2 {
    font-size: 56px;
    line-height: 70px;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.45);
}

.heading > .subheading {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    margin-top: 20px;
}

.sticky-interest .interested,
.heading > .interested {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    background: linear-gradient(90deg, #B089F4 0%, #ED5191 100%);
    border-radius: 12px;
    padding: 16px 60px;
    text-decoration: none;
    color: white;
    margin-top: 30px;
    cursor: pointer;
}

section.offering {
    /* background-color: hsla(226, 81%, 96%, 0.3); */
    padding-top: 100px;
    padding-bottom: 50px;
}

section.offering.brands,
section.offering.perks {
    background-color: white;
}

section.offering.form-section {
    display: grid;
    grid-template-columns: 50% 50%;
    max-width: 1000px;
    margin: auto;
}

section.offering.form-section .offering-header {
    text-align: left;
    margin-right: 12px;
}

.offering-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.offering-header > h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: #2E108E;
}

.offering-header > p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #333333;
    margin-top: 12px;
}

.offering .offering-details {
    padding: 60px 0px;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: auto;
}

.offering-details-image-holder {
    width: 100%;
}

.offering-details-image {
    display: block;
    width: 100%;
}

.offering-point {
    display: flex;
    align-items: center;
    padding-right: 20px;
    gap: 16px;
    margin: 20px 0px;
}

.offering-point .index {
    border-radius: 1000px;
    height: 60px;
    width: 60px;
    min-width: 60px;
    background-color: #6561E8;
    font-size: 30px;
    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
}

.offering-point .detail {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #838383;
}

.perks .perk-holder {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}

.perk-holder .perk {
    width: 275px;
    height: 322px;
    padding: 20px;
    padding-top: 100px;
    background-blend-mode: soft-light;
    filter: drop-shadow(37px 26px 68px rgba(0, 0, 0, 0.05));
    border-radius: 10px;
    border: 0.5px solid #DEDEDE;
    box-shadow: 37px 26px 60px rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    background-color: #fff;
    text-align: center;
    margin-top: 100px;
    position: relative;
}

.perk .perk-icon {
    width: 140px;
    height: 140px;
    border-radius: 1000px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.perk .perk-title {
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
}

.perk .perk-subtitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #838383;
}

.perk.employee {
    padding-top: 30px;
    margin-top: 30px;
    height: 348px;
}

.perk.employee .perk-icon {
    position: static;
    transform: none;
    border-radius: 0px;
    width: auto;
    height: 90px;
    margin-bottom: 12px;
}

.form-section .form {
    padding: 40px;
    background: #FFFFFF;
    box-shadow: 0px 0px 32px rgba(215, 228, 249, 0.3);
    border-radius: 20px;
}

.form .form-heading {
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
    color: #333333;
}

.form > * {
    display: block;
    width: 100%;
    margin-top: 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.form > label > input,
.form > label > select {
    width: 100%;
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    background: rgba(239, 240, 242, 0.4);
    border-radius: 8px;
    padding: 16px;
    margin-top: 4px;
    border: none;
}

.form > label > select > option {
    color: #333;
}

.form > button {
    width: 100%;
    padding: 16px;
    background-color: #6561E8;
    border-radius: 16px;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.form-section .offering-header .contact-info {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #838383;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0px;    
}

.contact-info > a {
    text-decoration: none;
    color: #838383;
}

.contact-info .contact-info-icon {
    width: 28px;
}

.offering.brands .brands-holder {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    background-color: rgba(0, 0, 0, 0.2);
    gap: 1px;
    margin: auto;
    margin-top: 40px;
    max-width: 1000px;
}

.brands-holder > div {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.brands-holder > div > img {
    max-height: 50px;
    width: 160px;
    object-fit: contain;
}

.sticky-interest {
    display: none;
    font-size: 20px;
    line-height: 32px;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 65px;
    color: rgb(54, 54, 54);
    background: rgb(255, 255, 255);
    box-shadow: rgba(28, 28, 28, 0.08) 0px -0.4rem 0.8rem, rgba(0, 0, 0, 0.05) 0px 0.03rem 0px inset;
    -webkit-box-pack: justify;
    justify-content: space-between;
    z-index: 10;
}

.sticky-interest > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    width: 1000px;
}

.sticky-interest .interested {
    margin: 0px;
}

.footer {
    background: linear-gradient(89.88deg, #6A0ECB 28%, #8700F2 97.85%);
    display: flex;
    justify-content: space-around;
    color: #fff;
    padding: 50px 50px;
    font-size: 20px;
    gap: 10px;
    padding-bottom: 80px;
}

.footer h4 {
    font-weight: bold;
    margin-bottom: 16px;
}

.footer article {
    max-width: 300px;
}

.footer .content {
    font-size: 18px;
    line-height: 27px;
    margin-top: 10px;
}

.footer-categories p.label {
    color: #ef1c74;
    padding-left: 0;
    text-align: center;
    display: block;
    font-weight: bold;
}

.footer-categories .category-holder {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    text-align: center;
}

.footer-categories p, .footer-categories a {
    display: inline-block;
    padding: 8px;
    font-size: 16px;
    line-height: 1.25;
    color: #ffffff;
}

.footer-social a {
    padding: 0 8px;
    display: inline-block;
}

@media (max-width: 800px) {
    .sticky-interest > div > p {
        display: none;
    }

    .sticky-interest .interested {
        flex-grow: 1;
        text-align: center;
        border-radius: 6px;
        margin: 0px 6px;
    }

    .heading > .interested {
        padding: 12px 40px;
        margin-top: 16px;
    }

    .details .heading {
        max-width: 100%;
        align-items: center;
    }

    .heading > h2 {
        font-size: 30px;
        line-height: 42px;
    }

    .heading > .subheading {
        font-size: 18px;
        line-height: 24px;
        margin-top: 8px;
        text-align: center;
    }

    .offering-header > h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .offering .offering-details {
        padding: 30px 0px;
    }

    .offering-point .index {
        height: 40px;
        width: 40px;
        font-size: 20px;
        line-height: 20px;
        min-width: 40px;
    }

    .offering-point .detail {
        font-size: 14px;
        line-height: 18px;
    }
    
    .offering .offering-details,
    section.offering.form-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header {
        background-image: url("https://lh3.googleusercontent.com/n1lIvgGLiXxvGMhLftRlWHJ98aplO2LEIB_xfBVQOt5lsFnEg4LrMqlZQCm13sjt55AqBrkrIYNU6J9ytTg9CWNECMYTdyIQXdXXi58=w800");
    }

    section.offering {
        padding: 20px;
    }

    .footer {
        flex-direction: column;
        padding: 20px;
        padding-bottom: 80px;
    }

    .footer article {
        max-width: none;
        text-align: center;
    }

    .footer .magicpin-info {
        text-align: center;
    }

    .footer .flex-div {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }
    
    .footer .social-links {
        margin-top: 30px;
    }

    .footer-categories .category-holder {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 16px;
    }

    section.offering.form-section .offering-header {
        text-align: center;
    }
}

@media (max-width: 570px) {
    .heading > h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .heading > .subheading {
        font-size: 14px;
        line-height: 18px;
        margin-top: 4px;
    }

    .heading > .interested {
        padding: 10px 24px;
        font-size: 14px;
        line-height: 18px;
    }
}