/* IMPORTING FONT  */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

/* RESET CSS */

*,
body {
    box-sizing: border-box;
    margin: 0;
    padding: auto;
}


/* GENERIC STYLES */
:root {
    --primary-color: #381DDB;
    --footer-bg-color: rgba(34, 34, 34, 0.03);
    --font-family: 'Montserrat', sans-serif;
    --secondary-font: 'Raleway', sans-serif;
    --white-color: #FFFFFF;
    --border-radius: 5px;

}

body {
    font-family: var(--font-family)
}

a {
    text-decoration: none;
    cursor: pointer;
}

button {
    cursor: pointer;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


.show-line {
    display: block;
}

.active {
    color: var(--primary-color);
}

.section-center {
    max-width: 80vw;
    margin: auto;
}

.hide {
    display: none !important;
}

.hide-menu {
    display: none !important;
}

button.menu-btn {
    padding: 0.5rem;
    border: none;
    font-style: normal;
    border: 1px solid var(--primary-color);
    background-color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    border-radius: var(--white-color);
    color: var(--primary-color);
}

/* .hide {
    display: none !important;
}

.menu-hide {
    display: none !important;
}

.menu-show {
    display: block !important;
} */

/* NAVIGATION SECTION */

.navigation-wrapper {
    display: grid;
    grid-template-columns: 1fr 4fr 1.5fr;
    padding: 3.4rem 4.3rem;
    align-items: center;
    justify-items: flex-start;
}

.logo-wrapper {
    width: 4.3rem;
    height: 1.6rem;
    cursor: pointer;
}

ul.navigation-items {
    display: flex;
    gap: 2rem;
}

li.navigation-item {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #222222;
    text-transform: uppercase;
}

.btn-container {
    display: flex;
    gap: 2rem;
    justify-self: end;
    align-items: center;
}


.btn-container a {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

a.signup-btn {
    padding: 0.5rem;
    border: 1px solid;
}


@media screen and (max-width:767px) {
    nav.navigation-wrapper {
        padding: 20px;
        padding-bottom: 65px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* NAVIGATION SECTION END */


/* HERO SECTION START*/

section.hero {
    max-width: 80vw;
    margin: auto;
}

h1.hero-heading {
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    line-height: 68px;
    margin-bottom: 2.5rem;
    text-transform: capitalize;
    color: #000000;
    text-shadow: 0px 2px 0px rgba(34, 34, 34, 0.1);
}

p.hero-paragraph {
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 28px;
    width: 80%;
    margin: auto;
    margin-bottom: 4.375rem;
}

.subscribtion {
    display: grid;
    grid-template-columns: 3fr 1fr;
    width: 50vw;
    margin: auto;
    gap: 1.5rem;
}

input.hero-email {
    height: 3.125rem;
    padding: 1rem 2.5rem;
}

button.subscribtion-btn {
    border: none;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: capitalize;
}

@media screen and (max-width:767px) {
    section.hero {
        max-width: 90vw;
        margin: auto;
    }

    h1.hero-heading {
        font-style: normal;
        font-weight: 700;
        font-size: 36px;
        line-height: 44px;
        text-align: center;
        text-transform: capitalize;
        color: #000000;
    }

    p.hero-paragraph {
        font-family: var(--secondary-font);
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        width: 100%;
    }

    .subscribtion {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    button.subscribtion-btn {
        align-self: center;
        padding: 1rem 1rem;
        width: 157px;
        border-radius: var(--white-color);
    }
}

/* HERO SECTION END */


/* SOLUTIONS SECTION */

section.solutions {
    margin-top: 130px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

h2.content-heading {
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 130%;
    text-align: center;
    color: #222222;
}

p.content-para {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: rgba(34, 34, 34, 0.7);
}

.card-img-container {
    width: 70px;
    height: 70px;
}

section.cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 75px;
    margin-top: 60px;
    margin-bottom: 130px;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 2rem;
    border: 1px solid var(--primary-color);
}

.card-1 {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.arraow {
    width: 14px;
    height: 12px;
}


@media screen and (max-width:767px) {
    section.cards {
        display: flex;
        flex-direction: column;
        margin-top: 24px;
        gap: 16px;
        margin-bottom: 62px;
    }

    .content {
        gap: 20px;
    }
}

/* SOLUTION SECTION END */

/* SIGN UP SECTION */

.signup-image {
    position: relative;
}

.signup-image img {
    filter: brightness(0.5);
    height: 500px;
}

.section-signup {
    position: absolute;
    top: 20%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    left: 50%;
    gap: 165px;
    transform: translateX(-50%);
}

article.article {
    color: var(--white-color);
}

h1.article-heading {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 800;
    font-size: 64px;
    line-height: 78px;
    text-align: center;
    text-transform: capitalize;
}

.btn-signup-container {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
}


button.btn-signup {
    border: none;
    padding: 16px 24px;
    background: var(--primary-color);
    color: var(--white-color);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: capitalize;
    border-radius: var(--white-color);
}


@media screen and (max-width:767px) {
    .section-signup.section-center {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        top: 15%;
    }

    h1.article-heading {
        font-style: normal;
        font-weight: 800;
        font-size: 36px;
        line-height: 44px;
        text-align: center;
        text-transform: capitalize;
    }

    p.article-paragraph {
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
        text-align: center;
        text-transform: capitalize;
    }
}

/* SIGN UP SECTION END */



.creativity-grid {
    display: flex;
    gap: 3.75rem;
    max-width: 82vw;
    margin-top: 8.125rem;
}

.creativity-grid>div {
    flex: 50%;
}

h2.creativity-heading {
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 130%;
    color: #222222;
    margin-bottom: 2rem;
}

p.creativity-paragraph {
    font-family: var(--secondary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #222222;
    opacity: 0.7;
}

.creativity-wrapper {
    display: grid;
    flex: 50%;
    gap: 3.75rem;
}


h2.true-values-heading {
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 130%;
    margin-bottom: 2rem;
    color: #222222;
}

li.true-value-item {
    font-family: var(--secondary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    display: flex;
    align-items: flex-start;
    color: #222222;
    opacity: 0.7;
    position: relative;
    /* margin-left: 1rem; */
}

.circle-container {
    margin-right: 0.5rem;
}

/* ul li::before {
    content: "\2022";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    position: absolute;
    top: 0px;
    margin-right: 1rem;
    left: 0rem;
} */

.creativity-wrapper article {
    padding: 1rem 0;
}


.solution-image-container {
    width: 1.5rem;
    height: 1.5rem;
}

.link-section {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 3rem;
}

a.check-solution {
    font-family: var(--secondary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #381DDB;
}

@media screen and (max-width:767px) {
    .creativity-grid {
        flex-direction: column;
    }

    .creativity-imgae-conatiner {
        order: 1;
    }
}

/* Footer Section  */

section.footer-section {
    background-color: rgba(34, 34, 34, 0.03);
}

footer.footer-wrapper {
    padding-bottom: 30px;
    margin-top: 8.125rem;
}

.footer-items {
    justify-self: flex-end;
}


section.section-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4.3rem;
}

p.section-2-para {
    font-family: var(--secondary-font);
    max-width: 25rem;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    padding-bottom: 2rem;
    /* or 150% */


    /* General / Dark */

    color: #222222;
    opacity: 0.3;
}

.images-container {
    display: flex;
    /* width: 10rem; */
    gap: 2rem;
    justify-content: space-between;
}

.image-container {
    /* width: 2rem; */
    height: 1rem;
    cursor: pointer;
}


@media screen and (max-width:767px) {
    footer.footer-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-left: 0;
        padding-right: 0;
    }

    section.section-2 {
        flex-direction: column;
        gap: 28px;
    }

    p.section-2-para {
        order: 1;
    }
}

/* Footer Section End */


/* LINE SECTION */

section.line-wrapper {
    margin-bottom: 62px;
}