:root {
    --theme-dark: #222222;
    --theme-pink: #fc95c4;
    --theme-white: #ffffff;
}

body {
    font-family: 'Poppins';
}

/* Header Section Start */
header {
    width: 100%;
    float: left;
    background-image: url(../images/banner-bg.png);
    height: auto;
    background-size: 100%;
    background-repeat: no-repeat;
}

.navbar {
    padding: 15px 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 3px 15px;
    font-size: 18px;
    color: var(--theme-dark);
    margin: 0px 6px;
    transition: all 0.3s ease-in-out;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-nav .nav-link.active {
    color: var(--theme-pink);
}

.navbar-nav .nav-link:hover {
    color: var(--theme-pink);
}

.login_btn a {
    font-size: 18px;
    color: #222222;
    padding: 0px 50px 0px 30px;
}

.form-inline a:hover {
    color: var(--theme-pink);
}

.form-control-feedback a {
    font-size: 18px;
    color: #222222;
    transition: all 0.3s ease-in-out;
}

.form-control-feedback a:hover {
    color: var(--theme-pink);
}

.banner_section {
    width: 100%;
    float: left;
    padding: 90px 0px 145px 0px;
}

.banner_title {
    width: 30%;
    font-size: 60px;
    color: var(--theme-dark);
}

.banner_text {
    width: 70%;
    font-size: 16px;
    color: var(--theme-dark);
    margin: 0px;
}

.started_text {
    width: 170px;
    float: left;
    padding-top: 20px;
}

.started_text a {
    width: 100%;
    float: left;
    padding: 8px 10px;
    color: var(--theme-white);
    background-color: var(--theme-pink);
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.started_text a:hover {
    color: #252525;
    background-color: #faf8f9;
}

/* Header Section End */

/* About Section Start */
.about {
    width: 100%;
    float: left;
    padding: 90px 0px 0px 0px;
}

.about_img {
    width: 100%;
    float: left;
}

.about_title {
    width: 80%;
    float: left;
    font-size: 40px;
    color: #373736;
    font-weight: bold;
    padding-top: 120px;
    position: relative;
}

.about_title::after {
    position: absolute;
    content: '';
    width: 80px;
    height: 6px;
    background-color: #ffd6e1;
    bottom: 20px;
    right: 0px;
    border-radius: 4px;
}

.about_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #373736;
    margin-left: 0px;
}

.read_btn_1 {
    width: 180px;
    float: left;
    margin-top: 20px;
}

.read_btn_1 a {
    width: 100%;
    float: left;
    font-size: 16px;
    text-align: center;
    background-color: var(--theme-pink);
    color: var(--theme-white);
    padding: 10px 0px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.read_btn_1 a:hover {
    background-color: #1e1e1e;
    color: #faf8f9;
}

/* About Section End */

/* Cream Section Start */
.cream {
    width: 100%;
    float: left;
    padding: 90px 0px 0px 0px;
    position: relative;
}

.cream::before {
    position: absolute;
    content: '';
    width: 120px;
    height: 140px;
    background-image: url(../images/img-6.png);
    background-size: 100%;
    background-repeat: no-repeat;
    top: 180px;
    right: 0px;
}

.cream_section_2 {
    width: 100%;
    float: left;
    padding-top: 30px;
}

.cream_box {
    width: 100%;
    float: left;
    background-image: linear-gradient(0deg, var(--theme-white) 37%, #f2f2f0 37%);
    height: auto;
    padding: 10px;
    box-shadow: 0px 0px 20px 10px #ededec;
}

.cream_box:hover {
    background-image: linear-gradient(0deg, var(--theme-white) 37%, #faf0c7 37%);
}

.cream_img {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    min-height: 210px;
}

.price_text {
    width: 80px;
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
    color: #373736;
    font-weight: bold;
    background: #fff;
    padding: 18px 15px;
    border-radius: 100px;
    font-style: italic;
}

.strawberry_text {
    width: 100%;
    font-size: 22px;
    color: #373736;
    text-align: center;
    font-weight: bold;
}

.cart_btn {
    width: 150px;
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
}

.cart_btn a {
    width: 100%;
    float: left;
    font-size: 16px;
    text-align: center;
    border: 1px solid var(--theme-pink);
    color: var(--theme-pink);
    padding: 8px 0px;
    border-radius: 40px;
    transition: all 0.3s ease-in-out;
}

.cart_btn a:hover {
    border: 1px solid #373736;
    color: #373736;
}

.seemore_btn {
    width: 180px;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
    display: flex;
}

.seemore_btn a {
    width: 100%;
    float: left;
    font-size: 16px;
    text-align: center;
    background-color: var(--theme-pink);
    color: #fefefd;
    padding: 10px 0px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.seemore_btn a:hover {
    background-color: #1e1e1e;
    color: #faf8f9;
}

/* Cream Section End */

/* Service Section Start */
.services_section_2 {
    width: 100%;
    float: left;
    padding-top: 30px;
}

.services_box {
    width: 100%;
    float: left;
    border: 1px solid #fc9cc8;
    padding: 10px 20px;
    height: auto;
}

.services_title {
    width: 66%;
    float: left;
    font-size: 40px;
    color: #373736;
    font-weight: 500;
}

.services_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #373736;
    margin: 0px;
}

.tasty_text {
    width: 100%;
    float: left;
    font-size: 20px;
    color: #373736;
}

.icon_img {
    padding-right: 15px;
}

.lorem_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #373736;
    margin: 0px;
}

.seemore_btn {
    width: 180px;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
    display: flex;
}

.seemore_btn a {
    width: 100%;
    float: left;
    font-size: 16px;
    text-align: center;
    background-color: var(--theme-pink);
    color: #fefefd;
    padding: 10px 0px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.seemore_btn a:hover {
    background-color: #1e1e1e;
    color: #faf8f9;
}

/* Service Section End */

/* Contact Section Start */

.contact {
    width: 100%;
    float: left;
    background-color: #262526;
    height: auto;
    padding: 90px 0px;
}

.contact_main {
    width: 100%;
    float: left;
}

.contact_title {
    width: 65%;
    float: left;
    font-size: 40px;
    font-weight: bold;
    color: var(--theme-white);
    border-bottom: 1px solid var(--theme-white);
}

.form-group {
    margin-bottom: 1rem;
    display: flex;
    width: 100%;
    float: left;
}

.email-bt {
    color: #fefefd;
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding: 20px 20px 0px 0px;
    background-color: transparent !important;
    border-bottom: 1px solid #6d6d6d !important;
    border: 0px;
    outline: 0;
    text-transform: uppercase;
}

.massage-bt {
    color: #fefefd;
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding: 20px 20px 0px 0px;
    background-color: transparent !important;
    border-bottom: 1px solid #6d6d6d !important;
    border: 0px;
    outline: 0;
    text-transform: uppercase;
}

.main_bt {
    width: 150px;
    float: left;
    padding-top: 10px;
}

.main_bt a {
    width: 100%;
    float: left;
    color: #fefefd;
    font-size: 16px;
    padding: 10px 0px;
    background-color: var(--theme-pink);
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.main_bt a:hover {
    color: #252525;
    background-color: var(--theme-white);
}

.location_text {
    width: 100%;
    float: left;
}

.location_text ul {
    margin: 0px;
    padding: 0px;
    float: right;
}

.location_text li {
    float: left;
    font-size: 16px;
    color: var(--theme-white);
    padding: 0px 7px 0px 16px;
}

.location_text li a {
    color: var(--theme-white);
}

.location_text li a:hover i {
    color: var(--theme-pink);
}

.mail_main {
    width: 70%;
    float: right;
}

.newsletter_text {
    width: 100%;
    float: left;
    font-size: 20px;
    color: var(--theme-white);
    font-weight: 500;
    margin-top: 130px;
}

.form-group {
    margin-bottom: 1rem;
    display: flex;
    width: 100%;
    float: left;
}

.update_mail {
    color: #444444;
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding: 13px 10px 0px 10px;
    background-color: var(--theme-white);
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    display: block;
    margin-top: 10px;
    border: 0px;
    outline: 0;
    text-transform: uppercase;
}

.subscribe_btn {
    width: 170px;
    float: left;
    padding-top: 10px;
}

.subscribe_btn a {
    width: 100%;
    float: left;
    color: var(--theme-white);
    font-size: 16px;
    padding: 13px 0px 14px 0px;
    background-color: var(--theme-pink);
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.subscribe_btn a:hover {
    color: #363636;
    background-color: var(--theme-white);
}

.footer_social_icon {
    width: 100%;
    float: right;
    padding-top: 20px;
    text-align: right;
}

.footer_social_icon ul {
    margin: 0px;
    padding: 0px;
    display: inline-block;
}

.footer_social_icon li {
    float: left;
}

.footer_social_icon li a {
    float: left;
    padding: 10px;
    background-color: #fff;
    color: #252525;
    border-radius: 100%;
    font-size: 19px;
    margin-left: 15px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
}

.footer_social_icon li a:hover {
    background-color: var(--theme-pink);
    color: #ffff;
}

.padding_left_10 {
    font-size: 30px;
    color: var(--theme-white);
    padding-right: 10px;
    position: relative;
    top: 4px;
}

.padding_left_10.active {
    color: var(--theme-pink);
}

/* Contact Section End */

/* Footer Section Start */
.copyright_section {
    width: 100%;
    float: left;
    background-color: #262526;
    height: auto;
}

.copyright_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: var(--theme-white);
    text-align: center;
    margin-left: 0px;
    border-top: 1px solid #6d6d6d;
    padding-top: 30px;
}

.copyright_text a {
    color: var(--theme-white);
    transition: all 0.3s ease-in-out;
}

.copyright_text a:hover {
    color: var(--theme-pink);
}

/* Footer Section End */