@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;600&display=swap');

/*reseting values*/
* {
    margin: 0;
    padding: 0;
    border: none;
}

body {
    background-color: #F7F7F7;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    color: #3a3a3a;
    -ms-overflow-style: none;
    /* hide scroll bar for Internet Explorer, Edge */
    /*for Firefox */
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    display: none;
    /* hide scroll bar for Chrome, Safari, and Opera */
}

/*logo and menu*/
.logo-box {
    float: left;
    margin-left: 30px;
    overflow: hidden;
    position: relative;
}

.logo-image {
    height: 82px;
    width: 326px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.menu {
    font-size: 120%;
    float: right;
    line-height: 75px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.menu li {
    float: left;
    list-style-type: none;
    margin-right: 30px;
}

.menu a {
    text-decoration: none;
    font-weight: 600;
    color: #2E294E;
}

.menu a:hover {
    color: #D90368;
}

.active {
    border-bottom: 1px solid #2E294E;

}

/* hero_image */
section {
    display: flex;
    flex-direction: column;
}

.hero-outer {
    height: auto;
    width: 100%;
    overflow: hidden;
    clear: both;
    position: relative;
}

.hero-image-box {
    height: 600px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: url('../images/new_hero_image.webp') no-repeat center right;
}

/*text over hero image*/
.text-over-hero-image {
    font-family: Work Sans;
    width: 520px;
    height: 113px;
    top: 140px;
    left: 120px;
    position: absolute;
}

.text-over-hero-image h2 {
    font-weight: bold;
    font-size: 45px;
    color: #fffcf8;
}

.text-over-hero-image p {
    font-style: normal;
    font-size: 28px;
    color: #fffcf8;
}

/*button contact over hero image*/
.hero-contact-button {
    width: 267px;
    line-height: 265px;
    border-radius: 18px;
    padding: 11px 40px 11px 40px;
    background-color: #d90368;
    color: #fffcf8;
    text-decoration: none;
}

.hero-contact-button:hover {
    background-color: #fafafa;
    color: #d90368;
}

/*greeting message*/
.greeting-box-container {
    display: flex;
    justify-content: center;
    margin: 50px 0 50px 0;
}

.flex-greeting {
    width: 450px;
    margin: 10px;
}

.greeting-header {
    padding: 80px 0;
    text-align: right;
    margin-left: 150px;
    font-size: 400%;
}

.greeting-message {
    margin-right: 150px;
    padding: 80px 0;
    text-align: justify;
    font-weight: 600;
}

/*product types section*/
.featured-items {
    clear: both;
    background-color: #07070708;
}

.looking-for, .make-choice {
    margin-left: 6%;
    padding: 3% 0;
    font-size: 40px;
}

.featured-flex-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    align-content: flex-end;
    margin-left: 30px;
    margin-right: 30px;
}

.individual-item {
    width: 17vw;
    height: 17vw;
    display: inline-block;
    position: relative;
    margin-bottom: 100px;
    padding: 4%;
    vertical-align: top;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    border: solid rgba(128, 128, 128, 0.342);
    border-width: thin;
}

.individual-item p {
    text-align: center;
    font-weight: bold;
    font-size: 100%;
    text-transform: capitalize;
    padding-top: 2px;
}

.individual-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

/*page footer*/
footer {
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.social-networks {
    text-align: center;
    height: 100px;
}

.social-networks>li {
    display: inline;
}

.social-networks i {
    font-size: 160%;
    margin: 1%;
    padding: 5%;
    color: #3a3a3a;
}

/*contact form section background*/
.contact-section {
    clear: both;
    background: url(../images/elegant-balloons-frame-design-vector.webp);
    background-size: cover;
    background-position: center right;
    height: 600px;
    align-content: center;
    padding: 5% 0;
}

/*contact-form*/
.form-div {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 100%;
}

.contact-form {
    color: #fffcf8;
    background-color: rgb(0 0 0 / 85%);
    width: 50%;
    position: absolute;
    padding: 4%;
    align-content: center;
    margin-left: 30px;
    border-radius: 18px;
    font-size: 20px;
}

.contact-form h2 {
    padding-bottom: 30px;
    text-align: left;
    font-size: 26px;
}

.text-input {
    background: transparent;
    color: #fffcf8;
    width: 100%;
    height: 25px;
    margin: 5px 0 20px 0;
    border: 1px solid #5CC2B6;
    border-radius: 2px;
    font-size: 18px;
}

.message-input {
    font-family: 'Work Sans', sans-serif;
    background: transparent;
    color: #fffcf8;
    width: 100%;
    height: 100%;
    margin: 5px 0 20px 0;
    border: 1px solid #5CC2B6;
    border-radius: 2px;
    font-size: 18px;
}

.text-input:hover {
    border-color: #DA0369;
}

.message-input:hover {
    border-color: #DA0369;
}

.contact-button {
    margin-top: 20px;
    border-radius: 18px;
    padding: 11px 40px 11px 40px;
    text-align: center;
    font-size: 100%;
    background-color: #d90368;
    color: #fafafa;
    display: block;
}

.contact-button:hover {
    background-color: #fafafa;
    color: #d90368;
}

/* Media queries */
/* For larger to medium screens size from 1170px wide and down */
@media screen and (max-width: 1170px) {
    .menu {
        margin-bottom: 20px;
        margin-left: 30px;
        clear: left;
        float: left;
        line-height: 25px;
    }

    .greeting-box-container {
        display: flex;
        float: none;
        width: 100%;
        flex-wrap: wrap;
    }

    .greeting-header {
        margin: 0 30px 0 30px;
        padding: 0 5%;
        text-align: center;
    }

    .greeting-message {
        margin: 0 30px 0 30px;
        padding: 0 5%;
        text-align: center;
    }

    .flex-greeting {
        width: 100%;
    }

    .featured-flex-content {
        grid-gap: 30px;
    }

    .individual-item {
        width: 25vw;
        height: 25vw;
        padding: 7%;
    }

    .text-over-hero-image {
        font-family: Work Sans;
        width: 219px;
        height: 84px;
        top: 430px;
        left: 350px;
        position: absolute;
    }

    .text-over-hero-image h2 {
        font-size: 20px;
    }

    .text-over-hero-image p {
        font-size: 14px;
    }

    .hero-contact-button {
        line-height: 59px;
    }
}

/* For small screen sizes 800px and down */
@media screen and (max-width: 700px) {
    .featured-flex-content {
        display: flex;
    }

    .individual-item {
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .hero-image-box {
        height: 400px;
        width: 100%;
        background: url('../images/mobile/new_hero_image.webp') no-repeat center right;
    }

    .text-over-hero-image {
        font-family: Work Sans;
        width: 219px;
        height: 84px;
        top: 228px;
        left: 81px;
        position: absolute;
    }

    .text-over-hero-image h2 {
        font-size: 20px;
    }

    .text-over-hero-image p {
        font-size: 14px;
    }

    .hero-contact-button {
        line-height: 59px;
    }

    .form-div {
        justify-content: center;
    }

    .contact-form {
        width: 80%;
        margin-left: 0;
    }
}