/*@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat: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&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');*/
@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');
/*@font-face {
    font-family: 'Carino Sans';
    src: url(../fonts/CarinoSansBold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: 'Carino Sans';
    src: url(../fonts/CarinoSansSemiBold.ttf);
    font-weight: 400;
}

@font-face {
    font-family: 'Carino Sans';
    src: url(../fonts/CarinoSansRegular.ttf);
}*/

:root {
    --main-color: #2060dc;
    --black-color: #000000;
    --white-color: #ffffff;
    --text-color: #5B5B5B;
    --content-color: #FEF6D0;
    --main-font-family: 'Poppins', sans-serif;
    --text-font-family: 'Poppins', sans-serif;
    --btn-background-color: #2060dc;
    --corporate-form-bg: #faf8ef;
    --primary-color: #2060dc;
    --secondary-color: #fff;
    --corporate-form-bg: #faf8ef;
}

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

a {
    text-decoration: none;
    color: var(--main-color);
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

span {
    display: inline-block;
    vertical-align: middle;
}

input,
textarea {
    border: none;
    outline: none;
}

.contener {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.header_main .contener {
    position: relative;
}
.txt-center {
    text-align: center;
}

.center-position {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* btn common css  */

.btn {
    display: inline-block;
    background: var(--btn-background-color);
    font-family: var(--main-font-family);
    font-style: normal;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: var(--content-color);
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.align_items_center {
    align-items: center;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col_1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col_2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col_3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col_4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col_5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col_6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col_7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col_8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col_9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col_10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col_11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col_12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

#back_to_top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #0000007a;
    width: 50px;
    height: 50px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#back_to_top:hover {
    cursor: pointer;
    background-color: #333;
}

#back_to_top:active {
    background-color: #555;
}

#back_to_top.show {
    opacity: 1;
    visibility: visible;
}

#back_to_top img {
    max-width: 35px;
    width: 100%;
}

.sub_title {
    color: var(--main-color);
    text-align: center;
    text-transform: capitalize;
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
.main_title {
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
    font-family: var(--main-font-family);
    font-weight: 700;
    font-size: 54px;
    line-height: 54px;
    position: relative;
    word-break: break-word;
}
.main_title:before {
    content: '';
    position: absolute;
    width: 395px;
    height: 28px;
    background: url(/wp-content/themes/sugars/images/title_shape.png);
    bottom: -40px;
    left: 35%;
}
.header_menu ul li a.nav_item_i {
    display: none;
}
@media(min-width:1023px) and (max-width:1199px){
    .header_menu ul li.mega-menu-active a.nav_item_i {
        display: inline-block;
        padding: 0 5px;
    }
    .header_menu ul li{
        padding: 0 20px !important;
    }
}
@media(min-width: 1023px){
    .header_main .mega-menu {
        background: #fff;
        position: absolute;
        width: calc(100% - 30px);
        padding: 15px;
        /* top: -420px; */
        transition: 0.2s ease-in-out;
        z-index: -1;
        left: 15px;
        opacity: 0;
        transform: translate(0, 25px);
        transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
        visibility: hidden;
    }
    .header_menu ul li.mega-menu-active:hover .mega-menu{
        display: block;
        /* top: 90px; */
        opacity: 1;
        transform: translate(0, 15px);
        visibility: visible;
    }
}
/* .header_main .mega-menu.active{
    display: block;
    top:90px;
} */
.header_main .mega-menu .mega-row {
    display: flex;
    flex-wrap: wrap;
}
.header_main .mega-menu .menu-col {
    max-width: 15%;
    width: 100%;
}
.header_main .mega-menu.only_menu .menu-col{
    max-width: 20%;
}
.header_main .mega-menu .menu-col h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2060dc;
}
.header_menu ul ul.inner-menu {
    justify-content: flex-start;
}
.header_menu ul ul.inner-menu li {
    padding: 0 !important;
    width: 100%;
}
.header_main .mega-menu .menu-col h2 a:hover {
	text-decoration: underline;
    color: #303339;
}	
.header_main .mega-menu .menu-col ul li a {
    margin-bottom: 10px;
    font-weight: 600;
}
.header_main .mega-menu .img-col {
    max-width: 70%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.header_main .mega-menu .img-col .mega_img {
    max-width: 32%;
    width: 100%;
    max-height: 302px;
    height: 100%;
}
.header_main .mega-menu .img-col .mega_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.hero_main img {
    width: 100%;
}

.shop_sider .product_box a {
    padding: 5px;
    margin: 0 15px;
    display: inline-block;
    background: var(--main-color);
    border-radius: 5px;
    min-height: 340px;
    color: var(--white-color);
}

.slider_main {
    padding: 100px 0;
}

.shop_main {
    padding: 60px 0;
}

.shop_sider .product_box a h2 {
    font-family: var(--main-font-family);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 22px;
    text-align: center;
    padding: 20px 10px;
	min-height: 84px;
}

.slider_main .slide-arrow {
    position: absolute;
    bottom: -80px;
    right: 13px;
    width: 60px;
    height: 60px;
}

.slider_main .prev-arrow {
    right: 100px !important;
}

.slider_main .next-arrow {
    transform: rotate(180deg);
}

.slider_main .slide-arrow {
    position: absolute;
    bottom: -80px;
    right: 13px;
    width: 60px;
    height: 60px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
}

.slider_main .slide-arrow img {
    margin: 0 auto;
}

.hot_topics_main .row {
    justify-content: space-around;
    padding: 80px 0;
}

.hot_topics_main .row .topic_box {
    margin: 0 20px;
    text-align: center;
    padding: 5px;
    margin: 0 15px 15px;
    display: inline-block;
    /*background: var(--main-color);*/
    border-radius: 5px;
    color: #ffffff;
}

.hot_topics_main .row .topic_box p {
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    color: var(--main-color);
    padding: 0 30px;
    margin: 30px 0 20px;
}
img.topic-img {
    padding: 30px;
    background-color: #EFEFEF;
    border-style: solid;
    border-width: 5px 5px 5px 5px;
    border-color: #393939;
    box-shadow: 5px 5px 5px 0px rgb(0 0 0 / 43%);
}
.hot_topics_main .row a.topic-box {
    background: transparent;
}
.hot_topics_main .row a.topic-box p {
    color: var(--main-color);
}
.join_the_family_main .align_items_center {
    border: solid 2px var(--main-color);
    text-align: center;
    padding: 40px;
}
.join_the_family_main .align_items_center h3 {
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
    font-family: var(--main-font-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    position: relative;
    word-break: break-word;
    margin-bottom: 24px;
}
.join_the_family_main .align_items_center p {
    font-family: 'Poppins';
    font-size: 19px;
    line-height: 25px;
    color: var(--main-color);
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}
.img-inner-box img {
    padding: 45px 45px 45px 45px;
    background-color: #EFEFEF;
    border-style: solid;
    border-width: 5px 5px 5px 5px;
    border-color: #393939;
    box-shadow: 5px 5px 5px 0px rgb(0 0 0 / 43%);
}

.our_merchandise_main {
    padding: 60px 0;
    FONT-VARIANT: JIS04;
}

.merchandise_box .merchandise_img {
    margin: 0 15px;
    border: solid 4px var(--main-color);
    border-radius: 5px;
}
.merchandise_box .merchandise_img a {
    display: block;
}
.gift_main .contener .row {
    background: url(/wp-content/themes/sugars/images/gift_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    position: relative;
    min-height: 683px;
    display: inline-flex;
    width: 100%;
}

.gift_main .contener .row:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 40px;
    background: red;
    top: 140px;
    z-index: 1;
}

.gift_main .content_col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.gift_main .content_col .content_box {
    max-width: 410px;
    width: 100%;
}

.gift_main .content_col h2 {
    text-transform: uppercase;
    font-family: var(--main-font-family);
    font-weight: 700;
    font-size: 47px;
    line-height: 54px;
    color: var(--white-color);
    margin-bottom: 20px;
}
.gift_main .content_col .only-tab {
    display: none;
}
.gift_main .content_col p {
    font-family: 'Poppins';
    font-size: 16px;
    color: var(--white-color);
    line-height: 26px;
}

.gift_main .contener .row:after {
    height: 100%;
    width: 40px;
    position: absolute;
    content: '';
    background: red;
    left: 200px;
}

.gift_main .contener .row .img_box .logo {
    position: absolute;
    left: 100px;
    top: 50px;
    width: 234px;
    height: 234px;
    object-fit: contain;
}

.gift_main .contener .row .img_box .gift_img {
    position: absolute;
    left: 30px;
    top: 360px;
    width: 450px;
    height: 275px;
    object-fit: contain;
}

.gift_main .form_main {
    max-width: 430px;
    width: 100%;
    background-color: var(--white-color);
    padding: 50px 20px;
    border-radius: 5px;
    z-index: 9;
    position: absolute;
    bottom: -130px;
    box-shadow: 0px 0px 10px 5px #00000026;
}

.gift_main .form_main h2 {
    font-family: 'Poppins';
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    color: var(--main-color);
}

.gift_main {
    padding-bottom: 200px;
}

#msform fieldset:not(:first-of-type) {
    display: none
}

#progressbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#progressbar li {
    margin: 0 5px;
    text-align: center;
    max-width: 85px;
    width: 100%;
}

#progressbar li .step {
    height: 50px;
    width: 50px;
    background: #959595;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

#progressbar li strong {
    font-family: 'Poppins';
    font-weight: 400;
    color: #454545;
    font-size: 16px;
    line-height: 16px;
    padding: 30px 0;
    display: inline-block;
}

#progressbar li .step:before {
    content: '';
    position: absolute;
    width: 62px;
    height: 62px;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    top: -8px;
    left: -8px;
    opacity: 0;
}

#progressbar li.active strong {
    color: var(--main-color);
    font-weight: bold;
}

#progressbar li.active .step {
    background-color: var(--main-color);
}

#progressbar li.active .step:before {
    opacity: 1;
}

#progressbar li.active+li .step:after {
    left: -33px;
}

#progressbar li.active .step:after {
    color: var(--main-color);
    left: -37px !important;
}

.gift_main .form_main fieldset {
    border: 0;
    padding-top: 50px;
}

.action-button {
    width: 100%;
    height: 50px;
    background: var(--main-color);
    color: var(--white-color);
    border: 0;
    font-family: 'Poppins';
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    background-image: url(/wp-content/themes/sugars/images/next_arrow.png);
    background-repeat: no-repeat;
    background-position-x: 65%;
    background-position-y: center;
    padding: 10px;
    cursor: pointer;
}

.action-button-previous {
    width: 100%;
    height: 50px;
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-family: 'Poppins';
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    background-image: url(/wp-content/themes/sugars/images/previous_arrow.png);
    background-repeat: no-repeat;
    background-position-x: 32%;
    background-position-y: center;
    padding: 10px;
    cursor: pointer;
}

.form_fild_box label {
    width: 100%;
    display: inline-block;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--main-color);
}

.form_fild_box select {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/wp-content/uploads/2023/02/select_arrow.png);
    background-position-y: center;
    background-position-x: 96%;
    background-repeat: no-repeat;
    color: var(--main-color);
    border-color: var(--main-color);
}
.gift_main .form_main:before {
    content: '';
    position: absolute;
    height: 142px;
    width: 130px;
    background: url(/wp-content/themes/sugars/images/form_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    left: -170px;
    bottom: 20px;
}

.form_fild_box input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.form_submit {
    background-image: none;
}

#progressbar li .step p {
    color: var(--white-color);
    font-family: var(--main-font-family);
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#progressbar li .step:after {
    content: '• • •';
    position: absolute;
    left: -38px;
    top: 14px;
    font-weight: 700;
    font-size: 18px;
    color: #d9d9d9;
}

#progressbar li:first-child .step:after {
    display: none;
}

.img_box {
    z-index: 9;
    position: relative;
}

.social_activities_main .tow_img {
    margin: 0 10px;
}

.single_img img {
    width: 633px;
    height: 100%;
    object-fit: cover;
}

.social_activities_main .tow_img img {
    width: 325px;
    height: 302px;
    object-fit: cover;
}

.social_activities_main .tow_img img:nth-child(1) {
    margin-bottom: 10px;
}

.social_activities_slider .slick-disabled {
    display: none !important;
}

.social_activities_slider .slide-arrow {
    z-index: 9;
    background: var(--white-color);
}

.social_activities_slider .prev-arrow {
    left: 20px;
    top: 50%;
}

.social_activities_slider .next-arrow {
    top: 50%;
}

.social_activities_main .slider_main {
    padding-bottom: 0;
}
.slider_main .row {
    flex-wrap: nowrap;
}
.slider_main .row .single_img {
    max-width: 64%;
    width: 100%;
}
.slider_main .row .tow_img {
    max-width: 33.7%;
    width: 100%;
}

/* Newsletter */
.newsletter-section {
    margin-top: -200px;
}

.newsletter-wpr {
    background: var(--main-color);
    border-radius: 40px;
    display: block;
    padding: 55px 40px 55px;
    max-width: 85%;
    margin: auto;
}

.newsletter_form form {
    max-width: 583px;
    margin: 0 auto;
}

.newsletter_form .row {
    flex-wrap: nowrap;
}
.newsletter_form form input {
    font-weight: 500;
    font-family: var(--text-font-family);
    font-size: 20px;
    line-height: 20px;
    color: var(--black-color);
    background: #EEEEEE;
    border-radius: 12px 0 0 12px;
    padding: 21px 23px;
    width: 100%;
}

.newsletter_form form button {
    padding: 22px 70px;
    text-align: center;
    background: #303339;
    border-radius: 0px 12px 12px 0px;
    border: none;
    cursor: pointer;
    display: flex;
    outline: none;
}

.newsletter-header {
    padding-top: 45px;
    max-width: 810px;
    margin: 0 auto;
}
.newsletter-header h2 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 500;
    color: var(--white-color);
    font-family: var(--text-font-family);
    text-align: center;
}
.join-popup img {
    margin: 0 auto;
}
.join-popup h2 {
    font-size: 28px;
    max-width: 400px;
    line-height: normal;
    margin: 16px auto 8px;
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}
.join-popup p {
    font-size: 16px;
    color: #000000;
    font-weight: 700;
}
div.wpforms-container-full.join-form .wpforms-form input[type=tel],
div.wpforms-container-full.join-form .wpforms-form input[type=email] {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    text-transform: capitalize;
    background: #EDEDED;
    width: 100%;
    padding-left: 15px;
    padding-top: 24px;
    padding-bottom: 24px;
    color: var(--text-color);
}
button#wpforms-submit-8526 {
    width: 100%;
    height: 50px;
    background: var(--main-color);
    color: var(--white-color);
    border: 0;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    padding: 10px;
    cursor: pointer;
}
.pum-theme-8514 .pum-container, .pum-theme-hello-box .pum-container {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%,-50%);
}
div.wpforms-container-full.join-form .wpforms-form label.wpforms-error {
    font-weight: 400;
    margin-top: 8px;
}
@media(max-width:1199px){
    .social_activities_main .tow_img img {
        height: 160px;
    }
}
@media(max-width: 450px){
.pum-theme-8514 .pum-container, .pum-theme-hello-box .pum-container {
    width: 90%;
}
}
/* Footer */
.footer .container {
    max-width: 1297px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.footer .footer-container {
    padding-top: 70px;
}

.footer {
    background: #303339;
    color: var(--white-color);
    padding: 50px 0;
    margin-top: 210px;
        margin-bottom: -25px;
}
.footer-logo {
    margin-bottom: 22px;
    font-size: 0;
}
.footer-logo .custom-logo {
    width: 76px;
    height: 100%;
}

.footer-about p {
    font-family: var(--text-font-family);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 23px;
}

.footer-social-links ul {
    display: flex;
    align-items: center;
}
.footer-social-links ul li {
    margin-right: 24px;
}
.footer-social-links ul li a {
    display: inline-block;
    text-align: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid;
    font-size: 16.92px;
    line-height: 35px;
    transition: 0.2s all;
}
.footer-social-links ul li a:hover {
    color: #2060dc;
}
.footer .col_4 {
    padding-right: 70px;
}
.footer .col_2 {
    margin-right: 35px;
    /*max-width: 256px;*/
    max-width: calc(22.23% - 35px);
    width: 100%;
    flex: none;
}
.footer .col_2:last-child {
    margin: 0;
}
.footer-link-section h4 {
    font-family: var(--main-font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 62px;
    text-transform: capitalize;
    color: var(--white-color); 
    margin-bottom: 0px;
}
.footer_link_main ul li a {
    font-weight: 400;
    font-size: 20px;
    line-height: 48px;
    color: var(--white-color);
    text-transform: capitalize;
    font-family: var(--text-font-family);
    transition: 0.4s all;
}
.footer_link_main ul li a:hover{
    text-decoration: underline;
}
.footer-link-wpr li a {
    font-family: var(--text-font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 52px;
    text-decoration-line: underline;
    text-transform: capitalize;
    color: var(--white-color); 
}

.footer-link-address p {
    font-family: var(--text-font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-transform: capitalize;
    color: var(--white-color); 
}

.footer-link-address p:first-child {
    margin-bottom: 63px;
}
.copy_rights_main {
    padding-top: 25px;
    text-align: center;
    border-top: 1px solid #fff;
    margin-top: 25px;
}
@media (max-width: 1199px) {
    .footer-link-section h4 {
        font-size: 20px;
    }
    .footer_link_main ul li a {
        font-size: 18px;
    }
    .shop_sider .product_box a h2{
        font-size: 18px;
        min-height: 108px;
    }
    .shop_sider .product_box a{
        min-height: 290px;
        margin: 0 10px;
    }
    .hot_topics_main .row .topic_box{
        max-width:16%;
        margin: 0 10px 15px;
    }
    .hot_topics_main .row .topic_box p {
        font-size: 20px;
        padding: 0 10px;
        margin: 30px 0 20px;
    }
    .hot_topics_main .row{
        padding: 80px 0 30px;
    }
    .gift_main{
        padding-bottom: 50px;
    }
}
@media (max-width: 1024px) {
/*  .footer{
        margin-top: 0px;
    } */
    .newsletter_main {
/*         margin-top: 0; */
        padding-bottom: 50px;
    }
    .newsletter-wpr {
        padding: 80px;
    }
    .newsletter-header h2 {
        font-size: 28px;
        line-height: 32px;
    }
    .footer .col_3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
    .footer-link-section h4 {
        line-height: 32px;
    }
    .footer-link-wpr li {
        margin-bottom: 20px;
    }
    .footer-link-wpr li a,    
    .footer-link-address p {
        font-size: 18px;
        line-height: 26px;
    }    
    .footer-link-address p:first-child {
        margin-bottom: 33px;
    }    
}
@media(max-width: 991px){
    .footer .col_4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
        text-align: center;
    }
    .footer-social-links ul {
        justify-content: center;
    }
    .footer .col_2 {
        max-width: calc(33.33% - 35px);
        margin-bottom: 20px;
    }
    .footer_link_main ul li a {
        font-size: 16px;
        line-height: 36px;
    }
    .footer-social-links {
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .newsletter-wpr {
        padding: 50px 40px;
    }
    .newsletter-header {
        padding-top: 35px;
    }
    .newsletter-header h2 {
        font-size: 22px;
        line-height: 28px;
    }
    .newsletter_form form button,
    .newsletter_form form input {
        padding: 15px 20px;
    }
    .footer .footer-container {
        padding-top: 20px;
    }
    .footer-about p {
        font-size: 16px;
        line-height: 24px;
    }
    .footer .col_3 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }
    .footer-link-section h4 {
        font-size: 22px;
        line-height: 30px;
    }
    .footer-link-wpr li a,    
    .footer-link-address p {
        font-size: 16px;
        line-height: 20px;
    }
}
@media (max-width: 767px) {
    .footer .col_4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        text-align: left;
    }
    .footer .col_2 {
        max-width: 100%;
    }
    .footer-social-links ul {
        justify-content: flex-start;
    }
    .shop_sider .product_box a h2{
        min-height:auto;
    }
}
@media (max-width: 480px) {
    .newsletter_main .container {
        padding: 0;
    }
    .newsletter-wpr {
        padding: 50px 20px;
        border-radius: 28px;
    }
    .newsletter_form form input {
        font-size: 16px;
        line-height: 20px;
    }
    .newsletter-header h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/* Header */
.header_main .row {
    align-items: center;
    position: relative;
    z-index: 2;
    background: #fff;
    padding-top: 12px;
}

.logo .custom-logo-link img {
    max-width: 75px;
    width: 100%;
    object-fit: contain;
    height: auto;
}

.header_main {
    padding: 12px 0;
    padding-top: 0;
}

.header_menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.header_menu ul li {
    font-family: var(--main-font-family);
    font-weight: 600;
    font-size: 16px;
    padding: 0 25px;
    color: var(--main-color);
}

.header_main .icon_main {
    text-align: right;
}

.header_main .icon_main a {
    display: inline-block;
    padding: 0 10px;
}

.navbar-toggle {
    display: none;
}

@media (max-width: 1023px) {
    .navbar  {
        max-width: inherit;
        flex: 0 0 auto;
    }
  
    .header_main .contener > .row {
        justify-content: space-between;
    }
    .header_menu {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        height: 100vh;
        background: #fff;
        padding-top: 70px;
        transform: translateX(100%);
        transition: transform 0.2s linear;
    }
    .header_main .mega-menu .img-col {
        display: none;
    }
    .header_menu.active {
        transform: translateX(30%);
        box-shadow: 0 -11px 11px rgba(0, 0, 0, 0.2);
    }

    .header_menu ul.menu {
        flex-direction: column;
    } 

    .header_menu ul.menu li {
        padding-bottom: 40px;
    }

    .navbar-toggle {
        display: block;
        width: 24px;
        height: 24px;
        position: relative;
        background: transparent;
        border: none;
        margin: 0 10px;
        cursor: pointer;
        transition: transform 0.2s linear;  
    }

    .navbar-toggle span {
        display: block;
        background-color: var(--main-color);
        height: 2px;
        width: 100%;
    }

    .navbar-toggle.active {
        transform: translateY(-30px);
    }

    .navbar-toggle span:first-child {
        transform: translateY(-6px);
    }

    .navbar-toggle span:last-child {
        transform: translateY(6px);
    }

    .header-icons {
        max-width: inherit;
        flex: 0 0 auto;
    }
    
    .header_main .icon_main {
        display: flex;
        align-items: center;
    }
}

.top_bar {
    background: var(--main-color);
    text-align: center;
    margin-bottom: 0px;
}

.top_bar p {
    font-family: var(--main-font-family);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 1px;
}

a {
    display: inline-block;
}

.ml-auto {
    margin-left: auto;
}

/* btn common css  */

.align_items_center {
    align-items: center;
}

/* Main css */
.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
}

.skip-link {
    top: 5px;
    left: 5px;
}

/* announcement bar  */
.global_announcement_wrap {
    text-align: center;
    background: var(--main-color);
    color: var(--white-color);
}

.global_announcement_wrap .global_announce_inner {
    min-height: 32px;
}

.global_announcement_wrap .announce {
    font-family: var(--text-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding-top: 2.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header  */
.header_main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: #fff;
}

nav.header-nav {
    padding: 0 40px;
}

.header-nav .web_logo svg {
    fill: var(--main-color);
}

.header-nav .header_wrapper .row {
    align-items: center;
}

.header-nav .nav-bar {
    margin-left: 40px;
    width: 85%;
}

.header-nav .nav-bar_list {
    padding: 33px 0;
}

.header-nav .nav-bar_links {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #000096;
    text-transform: uppercase;
    margin: 0 20px;
    letter-spacing: .5px;
}

/* User login and cart  */
.header-nav .user_cart_wrap {
    margin-left: 20px;
}

.user_cart_wrap .cart_wrap {
    margin-left: 20px;
}

/* main content  */
/* #MainContent {
    margin-top: 106px;
} */
/* breadcrumbs  */
.breadcrumbs {
    padding: 20px 35px 0px;
    display: none;
}

.breadcrumbs .breadcrumbs__item {
    list-style: none;
    display: inline-flex;
    color: var(--main-color);
}

.breadcrumbs__item:last-of-type {
    color: black;
}

.breadcrumbs__item:not(:last-child):after {
    padding-left: 6px;
    content: "/\00a0";
}

.breadcrumbs .breadcrumbs__link {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    line-height: 15px;
    text-transform: uppercase;
}

.corporate-gifting-hero {
    height: calc(100vh - 84px);
    position: relative;
    /* overflow: hidden; */
    margin: 0;
    min-height: 90vh;
}

.corporate-gifting-hero .hero__bg {
    width: 100%;
    height: 100%;
}

.corporate-gifting-hero .hero-img_wrap {
    height: 100%;
}

.corporate-gifting-hero .hero-img_inner {
    height: 100%;
}

.corporate-gifting-hero .hero-img_inner img {
    height: 100%;
    width: 100%;
}

.corporate-gifting-hero .hero__overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .3) 2%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.corporate-gifting-hero .hero__contain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 458px;
    width: 100%;
    z-index: 2;
    text-align: center;
}

.hero__textwrap .hero__heading {
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    font-size: 65px;
    line-height: 55px;
    letter-spacing: 0.9996px;
    color: var(--white-color);
    margin-bottom: 12px;
}

.hero__textwrap .hero__label,
.send-joy_label {
    font-family: var(--text-font-family);
    font-weight: 400;
    font-style: normal;
    line-height: 18.66px;
    font-size: 14px;
    color: var(--white-color);
    margin-bottom: 17px;
}

.hero__textwrap .corporate-gifting-hero__text-box p {
    font-family: var(--text-font-family);
    font-weight: 500;
    font-size: 16px;
    font-style: normal;
    line-height: 23.94px;
    letter-spacing: normal;
    color: var(--white-color);
}

.hero__textwrap .hero__btn,
.corporate-submit_wrap .submitBtn,
.corporate-submit_wrap .submit-Btn {
    font-family: var(--text-font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 16.02px;
    letter-spacing: 0.5004px;
    margin-top: 30px;
    max-width: 250px;
    width: 100%;
    padding: 15px;
    background: var(--white-color);
    color: var(--main-color);
    border: 1px solid var(--white-color);
    border-radius: 5px;
    transition: background-color .2s ease, color .2s ease;
}

.hero__textwrap .hero__btn:hover {
    background: var(--main-color);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.corporate-submit_wrap .submit-Btn {
	background: var(--main-color);
    color: var(--white-color);
	cursor: pointer;
}

/* Content with img css  */

.contener.content_with_img_wrap {
    padding: 0;
}

.content_with_img_inner {
    padding: 100px 60px 100px 140px;
}

.content_with_img_inner .send-joy_content {
    color: var(--main-color);
    width: 44%;
    padding: 0 50px;
}

.send-joy_content .send-joy_inner {
    margin-bottom: 10px;
}

.send-joy_content .send-joy_label {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: var(--main-color);
    margin-bottom: 40px;
}

.send-joy_content .send-joy__heading {
    font-family: var(--main-font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 65px;
    line-height: 55px;
    letter-spacing: 0.9996px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.send-joy_content .send-joy_box p {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.25002px;
}

.content_with_img_inner .send-joy_img {
    width: 56%;
    padding: 0 50px;
}

.content_with_img_inner .row {
    margin: 0 -50px;
}

.accordion .accordion_wrap {
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.send-joy_accordion .accordion__title {
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    font-size: 18px;
    letter-spacing: 0.49992px;
    text-transform: uppercase;
    padding: 20px 70px 20px 0;
    position: relative;
    display: block;
}

.send-joy_accordion .accordion__title::after {
    content: 'More +';
    font-family: var(--text-font-family);
    font-weight: 500;
    line-height: 16px;
    font-size: 14px;
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--main-color);
    transition: all 0.3s;
}

.send-joy_accordion .accordion__content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.accordion_wrap.acoordion-open {
    padding-bottom: 30px;
}

.send-joy_accordion .accordion_wrap.acoordion-open .accordion__content {
    max-height: 100vh;
    opacity: 1;
    margin-top: 20px;
}

.send-joy_accordion .accordion_wrap.acoordion-open .accordion__title::after {
    content: 'Less -';
}

.send-joy_accordion .accordion__content p {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.19998px;
    line-height: 22px;
    margin-bottom: 30px;
}

.accordion__content a,
.corporate-infowrap .text a,
.corporate-infowrap .text1 a {
    color: var(--main-color);
    text-decoration: underline;
}

/* Gifting css  */

.gifting-test {
    color: var(--white-color);
}

.gifting-test .gifting-test_container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0;
    text-align: center;
}

.gifting-test .gifting-test_container img {
    width: 100%;
}

.gifting-test .gifting_img {
    margin-bottom: 20px;
}

/* .gifting-test .gifting_img img{
    margin: 0 auto;
} */
.gifting-test .gifting_quote .title {
    font-family: var(--main-font-family);
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-style: normal;
    line-height: 55px;
    color: var(--white-color);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.gifting_quote .author {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21.98px;
    color: var(--white-color);
}

/* Corporate form css  */
.corporate-infowrap.info-sticky {
    position: sticky;
    top: 150px;
    left: 0;
}

.corporate-infowrap .text {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: -0.25004px;
    color: var(--main-color);
    margin: 14px 0;
}

.corporate-infowrap .text1 {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.25004px;
    color: var(--main-color);
    margin-bottom: 40px;
}

.corporate-form_steps .data_style {
    display: flex;
    align-items: center;
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 22.08px;
    letter-spacing: 0.49992px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--main-color);
}

/* .corporate-form_steps .data_style::before{
    transition: all 0.2s cubic-bezier(0.1, 0.7, 1.0, 0.1) 0.2s;
} */
.corporate-form_steps .data_style.active::before,
.corporate-form_steps .data_style.current_active::before {
    background: var(--main-color);
    color: var(--white-color);
}

.corporate-form_steps .data_style::before {
    content: attr(data-number);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    margin-right: 20px;
    font-size: 15px;
    transition: all 0.2s cubic-bezier(0.1, 0.7, 1.0, 0.1) 0.2s;
}



/* corporate Right side  */
.form-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
}

.form-control {
    position: relative;
}

.form-grid__half {
    grid-column: span 3;
}

.form-grid__full {
    grid-column: span 6;
}

.form-grid__third {
    grid-column: span 2;
}

.corporate-form-wrap {
    background: var(--corporate-form-bg);
}

.corporate-form-wrap .corporate-form_inner {
    padding: 260px 15px 80px;
    max-width: 1110px;
    margin: 0 auto;
}

.corporate-form-wrap .corporate_container {
    flex-basis: 25%;
    max-width: 25%;
}

.corporate-form-wrap .corporate-form_right {
    flex-basis: calc(100% * (8 / 12));
    max-width: calc(100% * (8 / 12));
}

.corporate-form-wrap fieldset.fieldset {
    padding: 80px 72px 80px;
    position: relative;
    background: #fffef8;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 4px #0000000d;
    margin-bottom: 87px;
}

.corporate-form-wrap fieldset.fieldset::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9f4f1;
    width: 80px;
    height: 80px;
    border-radius: 80px;
}

.corporate-form-wrap fieldset.fieldset::after {
    content: attr(data-number);
    font-family: var(--main-font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 22.08px;
    letter-spacing: 0.49992px;
    text-transform: uppercase;
    background: var(--main-color);
    color: #fff;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 80px;
}

.corporate-form-wrap .row.corporate-form_container {
    justify-content: space-between;
}

.corporate-form_right legend.fieldset_legend {
    float: left;
    width: 100%;
    text-align: center;
    font-family: var(--main-font-family);
    font-weight: 700;
    font-style: normal;
    font-size: 45px;
    line-height: 46px;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 60px;
}

.clear-grid {
    clear: both;
}

.corporate-form_right .form-control input,
.corporate-form_right .form-control select,
.corporate-form_right .form-control textarea,
.form-control-message textarea {
    width: 100%;
    border: solid 1px #f0edde;
    background-color: #faf8ef;
    font-family: var(--main-font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 16.2px;
    color: #09009a;
    padding: 33px 20px 10px;
    text-transform: uppercase;
    border-radius: 2px;
    min-height: 68px;
}

.corporate-form_right .form-control label {
    font-family: var(--text-font-family);
    font-weight: 500;
    font-stretch: normal;
    color: var(--main-color);
    font-size: 14px;
    line-height: 16px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    transition: all .2s ease-in-out;
    width: calc(100% - 20px);
}

.corporate-form_right .form-control-required {
    color: #cd4828;
}

.form-control input:focus+label,
.corporate-form_right .form-control.has-value label ,
.form-control input[type="date"]+label {
    top: 10px;
    transform: translateY(0);
}

.corporate-form_right .form-error {
    font-family: var(--text-font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 13.71px;
    margin-top: 5px;
    color: #cd4828;
    display: none;
}

.corporate-form_right .form-control.form-control--error .form-error {
    display: block;
}

hr {
    border: 0;
    border-top: 1px solid #f0edde;
    margin: 40px 0;
    display: block;
    height: 1px;
}

.corporate-form-wrap fieldset.fieldset p {
    font-family: var(--text-font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 40px;
    margin-top: 14px;
    color: var(--main-color);
}

.order-step .form-control_qty {
    border: solid 1px #f0edde;
    background-color: #faf8ef;
    border-radius: 4px;
    color: var(--main-color);
    overflow: hidden;
}

.order-step .form-qty_number {
    font-family: var(--main-font-family);
    font-weight: 700;
    color: var(--main-color);
    font-size: 18px;
    line-height: 30px;
    padding: 42px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.order-step .form-qty_number::after {
    display: block;
    font-family: var(--text-font-family);
    color: var(--main-color);
    font-size: 12px;
    line-height: 16px;
    margin-top: 10px;
}

.form-qty_fieldwrap.row {
    align-items: center;
    background: var(--main-color);
    padding: 10px 20px;
}

.form-qty_fieldwrap label {
    font-family: var(--text-font-family);
    font-stretch: normal;
    font-size: 14px;
    line-height: 16px;
    color: var(--white-color);
    margin-right: 20px;
}

.form-qty_fieldwrap input {
    flex: 1;
    min-width: 0;
    text-align: center;
    font-family: var(--main-font-family);
    font-size: 18px;
    background: no-repeat;
    border-radius: 2px;
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.form-qty_fieldwrap input::placeholder {
    color: var(--white-color);
}

.form-qty_fieldwrap input::-webkit-outer-spin-button,
.form-qty_fieldwrap input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-control input::-webkit-outer-spin-button,
.form-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.corporate-form_right .form-control textarea+label {
    top: 14%;
    width: calc(100% - 40px);
}

.corporate-form_right .form-control textarea:focus+label {
    top: 10px;
    margin-top: 6px;
}

.form-control-radio {
    position: relative;
}

.form-control-radio input {
    position: absolute;
    opacity: 0;
}

.form_fields_wrap .form-control-radio label {
    border: solid 1px #f0edde;
    background-color: #faf8ef;
    border-radius: 4px;
    padding: 14px 80px 14px 20px;
    min-height: 64px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    font-family: var(--text-font-family);
    font-weight: 500;
    font-stretch: normal;
    color: var(--main-color);
    font-size: 14px;
    line-height: 16px;
    width: 100%;
    position: relative;
}

.form_fields_wrap .form-control-radio label::after {
    content: '';
    background: url('../images/check-unselected.svg');
    background-repeat: no-repeat;
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid;
    border-radius: 50%;
}

.form-control-radio input:checked+label::after {
    /* background: url('../images/check-selected1.svg'); */
    /* background-repeat: no-repeat; */
    background-color: var(--main-color);
}

.form-control-radio input:checked+label::before {
    content: ''; 
    z-index: 1;
    border: 2px solid var(--white-color);
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    display: block;
    width: 20px;
    height: 7px;
    position: absolute;
    right: 20px;
    top: 35%;
}

.form-control-message {
    position: relative;
}

.form-control-message label {
    font-family: var(--text-font-family);
    font-weight: 500;
    font-stretch: normal;
    color: var(--main-color);
    font-size: 14px;
    line-height: 16px;
    width: 100%;
    position: absolute;
    left: 20px;
    top: 14%;
    /* transform: translateY(-50%); */
    transition: all .2s ease-in-out;
}

.form-control-message textarea:focus+label {
    top: 10px;
    /* transform: translateY(0); */
}

.form-control-message.form-grid__full {
    max-height: 0;
    overflow: hidden;
    transition: max-height .15s ease-out;
    margin-top: -15px;
    position: relative;
}

.form-control-message.form-grid__full.active {
    max-height: 100vh;
}

#shipping-address-section {
    display: none;
    padding-top: 40px;
    border-top: 2px solid var(--corporate-form-bg);
    margin-top: 30px;
}

/* Submit button  */
.corporate-submit_wrap {
    text-align: right;
    padding: 0 92px;
}

.corporate-submit_wrap .submitBtn {
    background: var(--main-color);
    color: var(--white-color);
	cursor: pointer;
}

.corporate-submit_wrap .submitBtn:hover, .corporate-submit_wrap .submit-Btn:hover {
    background: var(--white-color);
    color: var(--main-color);
    border: 1px solid #000096;
}


/* flat date picker  */
.flatpickr-current-month .numInputWrapper {
    display: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    padding: 0;
    text-align: center;
    background: transparent;
    border: 0;
    font-size: 17px;
    line-height: 22px;
    font-family: var(--text-font-family);
    height: auto;
    color: var(--main-color);
}

.flatpickr-calendar {
    border: 1px solid #000096;
    border-radius: 5px;
    font-family: var(--text-font-family);
}

.flatpickr-day {
    border: 1px solid #F5EFE6;
    cursor: pointer;
    max-width: 45px;
    width: 14.2857143%;
    -ms-flex-preferred-size: 14.2857143%;
    flex-basis: 14.2857143%;
    height: 37px;
    position: relative;
    color: #7d756b;
    font-family: var(--text-font-family);
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    text-align: left;
    /* padding-left: 4px; */
    border-radius: 0;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
    border: 1px solid #F5EFE6;
}

.flatpickr-calendar.arrowBottom:before {
    content: none;
}

.flatpickr-weekdays {
    display: none;
}

.flatpickr-months {
    padding: 5px 18px;
    position: relative;
    border-bottom: 1px solid var(--main-color);
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    padding: 0 10px;
}

.flatpickr-current-month {
    padding-top: 0;
    /* top: 50%; */
    transform: translateY(-50%);
    height: auto;
    width: auto !important;
}

.flatpickr-day.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day.nextMonthDay:not(.flatpickr-disabled):focus,
.flatpickr-day.nextMonthDay:not(.flatpickr-disabled):hover,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.prevMonthDay:not(.flatpickr-disabled):focus,
.flatpickr-day.prevMonthDay:not(.flatpickr-disabled):hover,
.flatpickr-day.today.inRange,
.flatpickr-day:not(.flatpickr-disabled):focus,
.flatpickr-day:not(.flatpickr-disabled):hover {
    cursor: pointer;
    outline: 0;
    z-index: 1;
    /* color: #fff; */
    background: none;
    border: none;
}

.flatpickr-day:not(.flatpickr-disabled):hover:after {
    content: "";
    position: absolute;
    left: 1.5px;
    top: 1px;
    width: 18px;
    height: 18px;
    background: url('../images/dateHoverImg.svg') no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    color: #fff;
}

.flatpickr-day.today {
    border-color: transparent;
    /* color: #fff; */
}

.flatpickr-day.today::after {
    content: "";
    position: absolute;
    left: 1.5px;
    top: 1px;
    width: 18px;
    height: 18px;
    background: url('../images/dateHoverImg.svg') no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    color: #fff;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
    content: none;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    width: 22px;
    height: 21px;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    display: none;
}

.flatpickr-prev-month::after,
.flatpickr-next-month::after {
    content: '';
    background: url(../images/dateArrow.svg);
    width: 22px;
    height: 21px;
    position: absolute;
}

.flatpickr-prev-month::after {
    left: 20px;
}

.flatpickr-next-month::after {
    right: 20px;
    transform: rotate(180deg);
}


@media (max-width: 1199px) {
    .send-joy_accordion .accordion__title {
        padding-right: 74px;
    }

    .content_with_img_inner {
        padding: 40px;
    }
	.order-step .form-qty_number{
		font-size: 16px;
	}
}

@media (max-width: 1024px) {
    .content_with_img_inner {
        padding: 60px 15px 60px;
    }
    .content_with_img_inner .row {
        margin: 0;
    }
}
@media(min-width:768px) and (max-width:991px){
    .content_with_img_inner .send-joy_content, .content_with_img_inner .send-joy_img {
        max-width: 100%;
        width: 100%;
    }
    .content_with_img_inner .send-joy_img img {
        max-width: 50%;
        margin: 20px auto 0;
    }
    .order-step .form-qty_number {
        min-height: 214px;
    }
}
@media (max-width: 799px) {
    .form-grid__half {
        grid-column: span 6;
    }

    .corporate-gifting-hero .hero__contain {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero__textwrap .hero__heading {
        font-size: 40px;
        line-height: 36px;
    }

    .send-joy_accordion .accordion__title {
        line-height: 15px;
        font-size: 16px;
    }

    .send-joy_content .send-joy__heading {
        line-height: 36px;
        font-size: 40px;
    }

    .corporate-form-wrap .corporate-form_inner {
        padding: 40px 15px 40px;
    }

    .corporate-form-wrap .row.corporate-form_container {
        flex-direction: column;
    }

    .corporate-form-wrap .corporate_container {
        flex-basis: 100%;
        max-width: 100%;
    }

    .corporate-form_steps {
        display: none;
    }

    .corporate-infowrap .text {
        margin-bottom: 40px;
    }

    .corporate-infowrap.info-sticky {
        position: static;
    }

    .corporate-form_right legend.fieldset_legend {
        font-size: 16px;
        line-height: 23px;
        margin: 30px auto 20px;
    }

    .corporate-form-wrap .corporate-form_right {
        flex-basis: 100%;
        max-width: 100%;
    }

    .corporate-form-wrap fieldset.fieldset {
        padding: 20px;
        margin-bottom: 50px;
    }

    .corporate-form-wrap fieldset.fieldset::after {
        width: 24px;
        height: 24px;
        left: 50%;
        top: 20px;
        font-size: 16px;
    }

    .corporate-form-wrap fieldset.fieldset::before {
        content: none;
    }
    .corporate-form_right .form-control input, .corporate-form_right .form-control select, .corporate-form_right .form-control textarea, .form-control-message textarea {
        min-height: 60px;
        padding: 24px 20px 10px;
    }

    .corporate-submit_wrap {
        text-align: center;
        padding: 0;
    }
    .corporate-submit_wrap .submitBtn {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .content_with_img_inner .send-joy_content {
        width: 100%;
        padding: 0;
    }

    .content_with_img_inner .send-joy_img {
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }
    .corporate-form-wrap fieldset.fieldset p{
        margin-bottom: 20px;
    }
}
@media(max-width:650px){
    .form-qty_fieldwrap.row {
        padding: 10px 90px;
    }
}
.contact-us_hero {
    height: 923px;
    background-image: url('../images/contactUsHeroImg.png');
    background-size: cover;
    background-position: center;
}

.contact-hero_content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-hero_content .hero-title {
    font-family: var(--main-font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
    text-transform: capitalize;
    color: var(--content-color);
    margin-bottom: 19px;
}

.contact-hero_content .hero-sub-text {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    text-transform: capitalize;
    color: var(--content-color);
    margin-bottom: 52px;
    max-width: 508px;
    width: 100%;
}

.contact-hero_content .hero-btn.btn {
    max-width: 246px;
    width: 100%;
    padding: 20px 0;
    border-radius: 64.5px;
}

/* form css  */
.position-above {
    margin-top: -200px;
}

.contact-us_form_wrap .form-container,
.newsletter-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.form-container .area_background {
    transform: rotate(0deg);
    padding: 10px 10px 0;
}

.contact-us_form_wrap .form-inner {
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F1F1 100%);
    border-radius: 40px;
    padding: 75px 47px 0px;
    margin: 0px 0px 13px;
}

.contact-us_form_wrap .form-title .title {
    font-family: var(--main-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 55px;
    color: var(--black-color);
    text-transform: capitalize;
    margin-bottom: 29px;
}

.contact-us_form_wrap .form-title .text {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: var(--text-color);
    text-transform: capitalize;
    max-width: 991px;
    margin: 0 auto;
}

.contact-us_form_wrap .form-title {
    margin-bottom: 77px;
}

.form-detail .form-wrapper {
   /* max-width: 593px;*/
   max-width: 50%;
    width: 100%;
}

.form-detail .input-fields {
    width: 100%;
    margin-bottom: 24px;
}

.form-detail .input-fields .field {
    width: 50%;
}

.form-wrapper textarea {
    margin-bottom: 24px;
    min-height: 167px;
}

.form-wrapper .input-fields input,
.form-wrapper textarea {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
    background: #EDEDED;
    border-radius: 15px;
    width: 100%;
    padding-left: 15px;
    padding-top: 30px;
    padding-bottom: 32px;
    color: var(--text-color);
}

.form-wrapper .right-space .field-wrap {
    margin-right: 19px;
}

.form-wrapper .contact-submit {
    width: 100%;
    padding: 28px 0px;
    border-radius: 15px;
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    color: var(--content-color);
    margin-top: 64px;
}

.form-detail .content-wrap {
    max-width: 50%;
      /*max-width: 48%;*/
    width: 100%;
}

.adress-content_wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 49px;
}

.adress-content_wrap .adress-inner.row {
    align-items: center;
    width: 100%;
}

.adress-content_wrap .adress-inner {
    margin-bottom: 59px;
}

.adress-content_wrap .adress-icon {
    height: 66px;
    width: 66px;
    background: var(--btn-background-color);
    border-radius: 50%;
    margin-right: 16px;
    position: relative;
}

.adress-content_wrap .adress-text.text {
    max-width: 365px;
    width: 100%;
}

.adress-content_wrap .adress-text {
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
    color: var(--black-color);
}

.adress-inner.mail_wrap .adress-text {
    color: var(--main-color);
    text-decoration: underline;
}

.email_input_wrap .newsletter {
    max-width: 583px;
    width: 100%;
    position: relative;
}

.email_input_wrap .newsletter input {
    width: 100%;
    padding: 21px 0px 21px 23px;
    font-family: var(--text-font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    color: var(--text-color);
    border-radius: 12px;
}

.contact-us_form_wrap .form-detail {
    margin-bottom: 107px;
    padding-bottom: 129px;
}

.newsletter-wrap {
    margin-bottom: 193px;
}

.area_background {
    background: linear-gradient(180deg, #4D7BA7 0%, #F1F1F1 100%);
    border-radius: 44px;
    transform: rotate(-180deg);
    padding-top: 13px;
}

.newsletter-wrap .newsletter_inner {
    background: linear-gradient(180deg, #BBCAD8 0%, #F1F1F1 100%);
    border-radius: 40px;
    padding-top: 93px;
    padding-bottom: 103px;
    transform: rotate(180deg);
    margin: 0 10px;
}

.email_input_wrap .newsletter .newsletter-icon {
    /* max-width: 158px;
    width: 100%; */
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    max-width: 158px;
    width: 100%;
    background: var(--btn-background-color);
    border-radius: 0px 12px 12px 0px;
}

.newsletter-wrap .join-community_wrap {
    max-width: 1146px;
    margin: 55px auto 0;
}

.newsletter-wrap .join-community_wrap p {
    font-family: var(--main-font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 37px;
    text-align: center;
    text-transform: capitalize;
    color: var(--black-color);
}

.adress-content_wrap .adress-inner.home_wrap .adress-icon::after,
.adress-content_wrap .adress-inner.call_wrap .adress-icon::after {
    content: ' ';
    background: var(--main-color);
    position: absolute;
    bottom: -60px;
    background: var(--main-color);
    width: 4px;
    height: 60px;
}

@media(max-width:1199px){
    .adress-content_wrap .adress-inner {
        margin-bottom: 0;
        margin-top: 59px;
    }
}

/*-----------
Wedding Page
-------------*/

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

.hero__section__wrap {
    min-height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.main__wedding_wrapper {
    padding: 100px 20px;
}

.main__wedding_wrapper .container {
    max-width: 1280px;
    margin: 0px auto;
}

.main__wedding_wrapper .title__box {
    text-align: center;
    margin-bottom: 75px;
}

.title__box .tag__line {
    display: block;
    font-size: 18px;
    line-height: 1.3;
    text-transform: capitalize;
    color: #1153d6;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.main__wedding_wrapper .title__box h2.title {
    font-size: 54px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #1153d6;
    font-family: var(--main-font-family);
}

.main__wedding_wrapper .wedding__box__wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.main__wedding_wrapper .wedding__box__wrapper .img__wrapper {
    width: 550px;
}

.main__wedding_wrapper .wedding__box__wrapper .wedding__content__box {
    width: 700px;
}

.wedding__box__wrapper .wedding__content__box .title {
    font-size: 28px;
    line-height: 1.3;
    color: #2660dc;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--text-font-family);
    margin-bottom: 40px;
}

.wedding__box__wrapper .wedding__content__box .description__wrapper {
    font-size: 22px;
    line-height: 1.3;
    color: #010101;
    font-family: var(--text-font-family);
    margin-bottom: 40px;
}

.button__box .default__btn {
    display: inline-block;
}

.button__box .default__btn a {
    font-size: 20px;
    line-height: 1.3;
    display: block;
    background-color: #2160dd;
    color: #ffffff;
    text-align: center;
    text-transform: capitalize;
    font-family: var(--text-font-family);
    font-weight: 600;
    min-width: 205px;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all ease 300ms;
    border: 2px solid #2160dd;
    position: relative;
}

.button__box .default__btn a::before {
    content: "";
    background-image: url(../images/btn-before.png);
    position: absolute;
    width: 100%;
    height: 20px;
    left: 0px;
    top: 0px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}


.button__box .default__btn a:hover {
    background-color: #ffffff;
    color: #2160dd;
}

.main__wedding_wrapper .event__list__wrap .wedding__box__wrapper:nth-child(odd) .img__wrapper {
    order: 1;
}

.main__wedding_wrapper .event__list__wrap .wedding__box__wrapper:nth-child(odd) .wedding__content__box {
    order: 2;
}

.main__wedding_wrapper .event__list__wrap .wedding__box__wrapper:nth-child(even) .img__wrapper {
    order: 2;
}

.main__wedding_wrapper .event__list__wrap .wedding__box__wrapper:nth-child(even) .wedding__content__box {
    order: 1;
}

.main__wedding_wrapper .event__list__wrap .wedding__box__wrapper+.wedding__box__wrapper {
    margin-top: 60px;
}

/*---------------
Responsive Design
-----------------*/

@media only screen and (max-width: 1440px) {

    .hero__section__wrap {
        min-height: 500px;
    }
}
@media only screen and (max-width: 1024px) {

    .main__wedding_wrapper {
        padding: 80px 20px;
    }

    .main__wedding_wrapper .title__box {
        margin-bottom: 50px;
    }

    .main__wedding_wrapper .wedding__box__wrapper {
        gap: 25px;
    }

    .main__wedding_wrapper .event__list__wrap .wedding__box__wrapper+.wedding__box__wrapper {
        margin-top: 40px;
    }

    .wedding__box__wrapper .wedding__content__box .title,
    .wedding__box__wrapper .wedding__content__box .description__wrapper {
        margin-bottom: 20px;
    }

    .hero__section__wrap {
        min-height: 400px;
    }

}

@media only screen and (max-width: 768px) {

    .wedding__box__wrapper .wedding__content__box .description__wrapper {
        font-size: 20px;
        line-height: 1.3;
    }

    .main__wedding_wrapper .title__box {
        margin-bottom: 40px;
    }
    .hero__section__wrap {
       min-height: 220px;
        margin-top: 70px;
    }

    .main__wedding_wrapper {
        padding: 60px 20px;
    }

    .main__wedding_wrapper .wedding__box__wrapper{display: grid;}

    .main__wedding_wrapper .wedding__box__wrapper .img__wrapper{width: 100%;}

    .main__wedding_wrapper .wedding__box__wrapper .img__wrapper img{margin: 0px auto;}

    .main__wedding_wrapper .wedding__box__wrapper .wedding__content__box {
        width: 100%;
        text-align: center;
    }

    .main__wedding_wrapper .event__list__wrap .wedding__box__wrapper:nth-child(even) .wedding__content__box{order: 2;}

    .main__wedding_wrapper .event__list__wrap .wedding__box__wrapper:nth-child(even) .img__wrapper{order: 1;}
}

@media only screen and (max-width: 384px) {

    .main__wedding_wrapper .title__box h2.title {
        font-size: 45px;
        line-height: 1.2;
    }

    .button__box .default__btn a {
        min-width: 180px;
        font-size: 16px;
        padding: 8px 18px;
    }

    .wedding__box__wrapper .wedding__content__box .description__wrapper {
        font-size: 16px;
        line-height: 1.4;
    }

    .wedding__box__wrapper .wedding__content__box .title {
        font-size: 20px;
        line-height: 1.3;
    }
}

/* About Page */ 
.container {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}
/* About banner */
.about-banner {
    margin-top: 132px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}
.about-banner .container {
    max-width: 1310px;
}
.about-banner-wpr {
    padding: 243px 0 250px;
}
.about-banner-wpr .header-title h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: var(--white-color);
    text-transform: uppercase;
    font-family: var(--main-font-family);
}
@media only screen and (max-width: 1366px) {
    /* About banner */
    .about-banner .container { 
        background: rgba(0, 0, 0, 0.2);
    }
    .about-banner-wpr {
        padding: 150px 0;
    }
}
@media only screen and (max-width: 768px) {
    /* About banner */
    .about-banner-wpr {
        padding: 100px 0;
    }
    .about-banner-wpr .header-title h1 {
        font-size: 30px;
        line-height: 34px;
        text-align: center;
    }
}

/* About */
.about-section {
    margin-top: -63px;    
}
.about-section .container {
    max-width: 1502px;
}
.about-section .about-wpr {
    background: var(--main-color);
    padding: 56px 65px 72px 65px;
    border-radius: 95px;
    display: flex;
}
.about-wpr .about-info {
    position: relative;
    flex-shrink: 0;
    max-width: 575px;
    width: 100%;
}
.about-info .about-image {
    border-radius: 46px;
    height: 100%;
    overflow: hidden;
}
.about-info .about-image img {
    width: 100%;
    height: 100%;
}
.about-info h2 {
    font-weight: 700;
    font-size: 96px;
    line-height: 90px;
    text-transform: capitalize;
    color: var(--white-color);
    position: absolute;
    bottom: 35px;
    left: 38px;
}
.about-wpr .about-desc {
    padding-left: 66px;
}
.about-desc h3 {
    margin: 9px 0 50px;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: var(--white-color);
    text-transform: capitalize;
    font-family: var(--main-font-family);
}
.about-desc p {
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    color: var(--white-color);
    margin-bottom: 5px;
}
@media only screen and (max-width: 1366px) {
    /* About */
    .about-section .about-wpr {
        padding: 50px;
    }
    .about-wpr .about-info {
        max-width: 350px;
    }
    .about-info h2 {
        font-size: 76px;
        line-height: 70px;
    }
    .about-wpr .about-desc {
        padding-left: 45px;
    }
    .about-desc h3 {
        margin: 0 0 30px;
        font-size: 30px;
        line-height: 36px;
    }
    .about-desc p {
        font-size: 18px;
        line-height: 30px;
    }    
}
@media only screen and (max-width: 1024px) {
    .about-section .about-wpr {
        align-items: center;
        flex-direction: column;
/*         border-radius: 0; */
    }
    .about-wpr .about-info {
        margin-bottom: 30px;
    }
    .about-wpr .about-desc {
        padding-left: 0;
        text-align: center;
    }
}
@media only screen and (max-width: 768px) {
    .about-section {
        margin-top: 50px;
    }
    .about-section .about-wpr {
        padding: 20px;
        border-radius: 46px;
    }
    .about-info h2 {
        font-size: 44px;
        line-height: 50px;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }
    .about-desc h3 {
        font-size: 22px;
        line-height: 30px;
    }
    .about-desc p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }
}

/* About video */
.about-video-section {
    padding-top: 105px;
}
.about-video-section .about-video {
    font-size: 0;
    text-align: center;
}
.about-video-section video {
    max-width: 350px;    
    width: 100%;
}

/* About Brand */
.about-brand-section {
    padding: 90px 0 108px;
}
.about-brand-section .container {
    max-width: 1510px;
}
.about-brand-wpr { 
    display: flex;
    align-items: center;
}
.about-brand-wpr .about-brand-image {
    max-width: 692px;
    width: 100%;
    flex-shrink: 0;
}
.about-brand-image img {
    height: 100%;
    width: 100%;
}
.about-brand-wpr .about-brand-desc { 
    padding-left: 98px; 
    max-width: 654px;
    width: 100%;
}
.about-brand-desc h3 { 
    font-weight: 700;
    font-size: 36px;
    line-height: 65px;
    color: var(--main-color);
    text-transform: capitalize;
    margin-bottom: 20px;
    font-family: var(--main-font-family);
}
.about-brand-desc p {
    font-weight: 500;
    font-size: 20px;
    line-height: 36px;
    text-transform: capitalize; 
    color: var(--black-color);
}
@media only screen and (max-width: 1366px) {
    .about-brand-section {
        padding: 90px 0;
    }
    .about-brand-wpr .about-brand-image {
        max-width: 500px;
        width: 100%;
        flex-shrink: 0;
    }
    .about-brand-wpr .about-brand-desc { 
        padding-left: 50px;
    }
}
@media only screen and (max-width: 1024px) {
    .about-brand-section {
        padding: 70px 0;
    }
    .about-brand-wpr {
        flex-direction: column;
    }
    .about-brand-wpr .about-brand-desc { 
        margin-top: 30px;
        padding-left: 0; 
        max-width: 100%;
    }
    .about-brand-desc h3 { 
        font-size: 30px;
        line-height: 40px;
    }
    .about-brand-desc p {
        font-size: 18px;
        line-height: 30px;
    }
}
@media only screen and (max-width: 768px) {
    .about-brand-section {
        padding: 50px 0 80px;
    }
    .about-brand-desc h3 { 
        font-size: 26px;
        line-height: 34px;
    }
    .about-brand-desc p {
        font-size: 16px;
        line-height: 26px;
    }
}

/* Categories section */
.categories-section {
    padding: 18px 0 321px;
    background: var(--corporate-form-bg);
}
.categories-section .container {
    max-width: 1546px;
}

.categories-section .category-header {
    padding: 35px 0;
    text-align: center;
}
.categories-section .category-header h4 {
    font-weight: 700;
    font-size: 36px;
    line-height: 65px;
    text-transform: capitalize;
    color: var(--main-color);
    font-family: var(--main-font-family);
}
.categories-section .categories-sec {
    display: flex;
}

.category-block {
    max-width: 50%;
    width: 100%;
    position: relative;
}
.category-block .category-image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    top: 0;
    left: 0;
}
.category-block .category-image {
    min-height: 700px;
    height: 100%;
	position: relative;
}
.category-block .category-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
}
.category-block .category-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}
.category-info h2 { 
    color: var(--white-color);
    font-size: 60px;
    line-height: 60px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--main-font-family);
}
.category-info p {
    font-weight: 400;
    color: var(--white-color);
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 36px;
    font-family: var(--main-font-family);
}
.category-info a { 
    font-weight: 500;
    color: #525B6E;
    background-color: var(--white-color);
    font-size: 15px;
    line-height: 15px;
    padding: 12px 24px;
    font-family: var(--main-font-family);
    transition: all .3s;
    border-radius: 3px;
    display: inline-block;
}
.category-info a:hover {
    color: var(--white-color);
    background-color: #525B6E;
}
/* blank_content Pages*/

.blank_content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: 150px;
   color: #2160dd;
}
.blank_content p {
    margin-bottom: 9px;
    padding: 5px 0;
    font-size: 16px;
}
.blank_content h2 {
    margin-bottom: 30px;
    margin-top: 30px;
}
.blank_content h4 {
    margin-top: 30px;
    margin-bottom: 10px;
}
body.customize-support .footer-info-items {
    padding: 30px 0 30px;
    overflow: hidden;
}
.footer-info-items .row {
    margin: 0 auto;
}
.footer-info-items .row .col-12 {
    max-width: 33.3333333333%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.footer-info-items .card.card-layout-3 {
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 0;
}
.footer-info-items .card-heading {
    width: 100%;
    background: #2160dd;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    padding: 15px;
}
.card.card-layout-3 .card-body {
    font-size: 16px;
    line-height: 24px;
    color: #4f4f4f;
    text-align: center;
    padding: 25px 20px;
}
section.hero_main {
    margin-top: 114px;
}
@media only screen and (max-width: 1299px) {
    .col_4.col-form {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 100%;
        max-width: 100%;
		background: #fff;
		padding-top: 100px;
		margin-top: 100px;
    }
	.gift_main .col_4.col-form .form_main {
		max-width: 50%;
		width: 100%;
		margin: -180px auto 0;
	}
    .gift_main .col_4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .gift_main .contener .row .img_box .logo {
        position: unset;
        margin: 0 auto;
    }
    .gift_main .contener .row .img_box .gift_img {
        display: none;
    }
    .gift_main .content_col .content_box {
        max-width: 90%;
        margin: 20px auto 20px;
        text-align: center;
    }
    .gift_main .form_main {
        max-width: 100%;
        margin: 90px auto 0;
        position: relative;
        bottom: unset;
    }
    .gift_main .contener .row {
		padding: 30px 0 0;
		max-width: 80%;
		width: 100%;
		margin: 0 auto;
		display: block;
	}
    .gift_main .contener .row:after {
        display: none;
    }
    .gift_main .form_main:before {
        left: -120px;
		top: 5%;
		transform: rotate(45deg);
    }
    .gift_main .form_main h2 {
        text-align: center;
    }
	.gift_main .content_col .only-tab img.gift_img {
		margin: 0 auto;
	}
	.gift_main .content_col .only-tab {
		display: block;
	}
}
@media only screen and (max-width: 1024px) {
    .categories-section {
        padding: 20px 0 70px;
    }
    .categories-section .category-header h4 {
        font-size: 30px;
        line-height: 50px;
    }
    
    .card.card-layout-3 .card-body{
        padding: 15px 20px
    }
  .category-block .category-image {
        min-height: 500px;
        height: 100%;
    }
}
@media(max-width:991px){
	.category-block .category-image {
		min-height: 300px;
	}
	.gift_main .contener .row{
		max-width: 90%;
	}
	.gift_main .col_4.col-form .form_main {
		max-width: 80%;
	}
}
@media(max-width:767px){
	.categories-section .categories-sec {
        flex-direction: column;
    }
	.category-block {
        max-width: 100%;
    }
	.gift_main .contener .row,.gift_main .col_4.col-form .form_main{
		max-width: 100%;
	}
}
@media only screen and (max-width: 1199px) {
    .form-detail .content-wrap {
        max-width: 100%;
        margin-top: 20px;
    }
    .form-detail .form-wrapper {
        max-width: 100%;
    }
    .adress-content_wrap {
        margin-left: 0;
    }
    .hot_topics_main .row a.topic-box{
        max-width: 40% !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 768px) {
    .categories-section .category-header h4 {
        font-size: 22px;
        line-height: 30px;
    }
    .category-info h2 { 
        font-size: 40px;
        line-height: 50px;
    }
    .footer-info-items .row .col-12 {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .hot_topics_main .row a.topic-box {
         max-width: 44% !important;
        width: 100% !important;
    }
    .main_title:before {
        width: 310px;
        left: 20%;
    }
    .adress-inner.mail_wrap .adress-text {
        word-break: break-all;
        flex: 1;
    }
    .adress-content_wrap .adress-text.text {
        flex: 1;
    }
    .contact-us_form_wrap .form-inner {
        padding: 75px 20px 0px;
    }
    .form-wrapper .contact-submit {
        padding: 15px 0px;
        font-size: 20px;
        margin-top: 20px;
    }
    .contact-us_form_wrap .form-title .title {
        font-size: 36px;
        line-height: 46px;
    }
    .contact-us_form_wrap .form-title {
        margin-bottom: 30px;
    }
    .contact-us_form_wrap .form-title .text {
        font-size: 18px;
        line-height: 24px;
    }
    .form-wrapper .right-space .field-wrap {
        margin-right: 0;
        margin-bottom: 24px;
    }
    .form-detail .input-fields .field {
        width: 100%;
    }
    .form-wrapper .input-fields input, .form-wrapper textarea {
        padding-top: 17px;
        padding-bottom: 17px;
    }
    .shop_sider .product_box a {
        min-height: auto;
    }
    .join_the_family_main .col_9,
    .join_the_family_main .col_3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .join_the_family_main .col_3 img {
        margin: 0 auto;
    }
    .join_the_family_main .align_items_center {
        padding: 20px;
    }
    .gift_main .contener .row .img_box .logo {
        width: 168px;
        height: 168px;
    }
    .gift_main .contener .row:before {
        top: 100px;
    }
    .hot_topics_main .row .topic_box{
        max-width: 40%;
        margin: 0 10px 15px;
    }
    .send-joy_content .send-joy_inner {
        text-align: center;
    }
    .front-side, .back-side {
        position: relative !important;
        backface-visibility: visible !important;
        transform: none !important;
    }
    .hot_topics_main .row .topic-box:hover {
        transform: none !important;
    }
}
@media only screen and (max-width: 650px) {
    .adress-content_wrap .adress-inner.home_wrap .adress-icon::after, .adress-content_wrap .adress-inner.call_wrap .adress-icon::after {
        display: none;
    }
    .contact-hero_content .hero-title {
        font-size: 36px;
        line-height: 46px;
        padding: 0 20px;
        text-align: center;
    }
    .contact-hero_content .hero-sub-text {
        font-size: 18px;
        line-height: 23px;
        padding: 0 20px;
        text-align: center;
    }
    .form-grid__third {
        grid-column: span 6;
    }
    .main_title {
        font-size: 40px;
    }
    .gift_main .form_main:before {
        display:none;
    }
    .gift_main .content_col h2 {
        font-size: 36px;
        line-height: 40px;
    }
    .hot_topics_main .row a.topic-box{
        max-width: 100% !important;
    }
}
.gift_main .form_main #progressbar {
    flex-wrap: nowrap;
}
@media only screen and (max-width: 500px) {
    #progressbar li .step:after {
        content: '• •';
        font-size: 14px;
        left: -90%;
        top: 5px;
    }
    .gift_main .form_main #progressbar {
        flex-wrap: nowrap;
        max-width: 270px;
        margin: 0 auto;
    }
    #progressbar li.active+li .step:after {
        left: -83%;
    }
    #progressbar li strong {
        font-size: 12px;
    }
    #progressbar li .step {
        height: 28px;
        width: 28px;
    }
    #progressbar li .step:before {
        width: 40px;
        height: 40px;
    }
#progressbar li .step p {
    font-size: 18px;
    line-height: 20px;
    padding: 4px;
    display: block;
    height: 28px;
    width: 28px;
    font-family: var(--text-font-family);
}
}
@media only screen and (max-width: 450px) {
    .main_title:before {
        width: 239px;
        left: 10%;
    }
    img.topic-img {
        padding: 20px;
    }
    .hot_topics_main .row .topic_box p {
        font-size: 16px;
        padding: 0 5px;
    }
}
    .top-heading h1{
        color: #2160dd;
        font-size: 28px;
        font-weight: 700;
        line-height: normal;
        text-align: center;
        margin: 0px 0 30px;
    }
    .gallary-page {
       margin-top: 180px;
    }
    .gallary-page .gallary-inner {
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
    }
    .img-row {
        display: flex;
        flex-wrap: wrap;
    }
    .img-row .imag-col {
        max-width: 25%;
        width: 100%;
        padding: 10px;
    }
    .img-row .imag-col .imag-main-new {
        width: 100%;
        max-height: 340px;
        padding: 30px;
        background-color: #EFEFEF;
        border-style: solid;
        object-fit: cover;
        border-width: 5px 5px 5px 5px;
        border-color: #393939;
        box-shadow: 5px 5px 5px 0px rgb(0 0 0 / 43%);
        height: 100%;
    }
    .img-row .imag-col .imag-main-new a {
        display: block;
        height: 100%;
    }
    .img-row .imag-col .imag-main-new img {
        height: 100%;
        width: 100%;
    }
    @media(max-width: 1024px){
        .img-row .imag-col {
            max-width: 33.33%;
        }
    }
    @media(max-width: 991px){
        .img-row .imag-col {
            max-width: 50%;
        }
    }
    @media(max-width: 767px){
        .img-row .imag-col .imag-main-new {
            max-height: unset;
        }
    }
    @media(max-width: 550px){
        .img-row .imag-col {
            max-width: 100%;
        }
    }
.our-community {
    background: var(--main-color);
    padding: 60px 0;
    margin-top: 50px;
}
.our-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding-top: 80px;
    justify-content: space-between;
}
.our-col-6 {
    width: 47%;
    padding: 0 15px;
}
.box-banner-image {
    width: 100%;
    object-fit: cover;
    height: 150px;
    object-position: 0% 15%;
    margin-bottom: 15px;
}
.our-community .contener {
    max-width: 1330px;
}
.box-inner-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.our-logo-img {
    width: 100%;
    margin-left: auto;
}
.box-logo-img {
    width: 160px;
    margin: -100px auto 20px;
    border: 4px solid #fff;
    border-radius: 50%;
}
.our-inner-logo {
    padding-left: 20px;
}
.box-inner-logo,
.box-inner-right {
    width: 100%;
}
.view-shop-btn a {
    display: flex;
    align-items: center;
    background: var(--main-color);
    padding: 8px 10px;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    line-height: normal;
    border-radius: 10px;
}
.view-shop-btn {
    max-width: 140px;
    width: 100%;
    margin: 4px;
}
.view-shop-btn a i {
    color: #fff;
	margin-right:5px;
}
.message-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}
.message-btn,
.like-btn {
    max-width: 120px;
	width:100%;
    margin: 4px;
}
.message-btns i {
    margin-right: 5px;
}
.our-shop-menu {
    border-top: 1px solid #cbcbcb;
}
.like-btn-link,
.message-text {
    display: flex;
    align-items: center;
    background: #cbcbcb;
    padding: 8px 5px;
    justify-content: center;
    color: #000000;
    font-size: 16px;
    line-height: normal;
    border-radius: 10px;
}
.our-box-title {
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
.our-box-heading {
    font-size: 18px;
    line-height: normal;
    color: #000000;
}
.shop-dots {
    width: 5px;
    height: 5px;
    background: #9b9b9b;
    border-radius: 50%;
    margin: 0 5px;
}
.shop-info {
    display: flex;
    align-items: center;
    color: #9b9b9b;
    font-size: 14px;
    line-height: normal;
    justify-content: center;
}
ul.our-menu-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}
li.our-menu-item a {
    padding: 5px 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #000000;
    line-height: 36px;
    font-weight: 600;
}
li.our-menu-item .arrow-icon {
    width: 20px;
    height: auto;
}
li.active.our-menu-item {
    border-bottom: 2px solid #2060dc;
}
li.active.our-menu-item a {
    color: #2060dc;
}
.our-posts {
    margin-top: 20px;
}
.our-post-row {
    display: flex;
    flex-wrap: wrap;
}
.our-com-title.main_title {
    color: #ffffff;
}
.our-com-title.main_title:before {
    display: none;
}
p.our-info {
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    line-height: normal;
    margin: 0 0 10px;
}
.our-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ffffff;
    height: 100%;
}
.our-post-row {
    display: flex;
    flex-wrap: wrap;
}
.post-col img {
    height: 100%;
    width: 100%;
    border-radius: 12px;
}
.post-col {
    display: flex;
    width: 33.33%;
}
.post-img {
    padding: 9px 5px;
    border-radius: 10px;
}
.our-box-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
    margin-top: 20px;
}
.our-col-4 {
    width: 30%;
}
.our-col-8 {
    width: 70%;
    padding-left: 20px;
}
.follow-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.follow-text a {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}
.follow-text {
    width: 100%;
}
.follow-btn-ins .follow-btn {
    max-width: 35%;
    margin: 0 auto;
    width: 100%;
}
a.follow-link {
    display: flex;
    align-items: center;
    background: var(--main-color);
    padding: 10px 30px;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    line-height: normal;
    border-radius: 8px;
}
a.follow-link img {
    width: 30px;
    height: 20px;
    object-fit: contain;
    margin-left: 10px;
}
.follow-info {
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    line-height: 24px;
    max-width: 360px;
}
.header_menu.open {
    transform: translateX(0%);
    height: 100%;
    overflow-y: auto;
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .our-col-4 {
        width: 100%;
    }
    .our-logo-img {
        width: 150px;
        margin: 0 auto 20px;
    }
    .our-col-8 {
        width: 100%;
        padding-left: 0;
    }
    .our-inner-logo {
        padding-left: 0px;
    }
    a.follow-link {
        margin-left: 10px;
    }

}
@media(max-width: 1024px){
    .our-col-6 {
        width: 50%;
    }
    .like-btn-link, .message-text {
        padding: 8px 8px;
        font-size: 14px;
    }
    a.follow-link,
    .view-shop-btn {
        font-size: 14px;
    }
    .follow-text a {
        font-size: 16px;
    }
    .our-box {
        padding: 15px;
    }
    .mega-menu {
        display: none;
    }
}
@media(max-width:  767px){
    .our-col-6 {
        width: 100%;
        margin-bottom: 25px;
    }
	.message-btn, .like-btn {
	    max-width: 100px;
	}
}
@media(max-width:  650px){
    ul.our-menu-list {
        padding-left: 0px;
    }
    .box-logo-img {
        width: 100px;
    }
    .our-col-4 {
        width: 100%;
    }
    .our-col-8 {
        width: 100%;
        padding-left: 0;
    }
    .our-logo-img {
        width: 200px;
        margin: 0 auto 20px;
    }
    .our-inner-logo {
        padding-left: 0px;
    }
    .our-box {
        padding: 15px;
    }
}
.close-icon {
    width: 30px;
    height: 30px;
    fill: var(--main-color);
    display: none;
}
.navbar-toggle.show-menu + .close-icon {
    display: block;
    position: relative;
    cursor: pointer;
}
.navbar-toggle.show-menu {
    display: none;
}
.hot_topics_main .contener {
    max-width: 1900px;
}
.hot_topics_main .row .topic-box {
    background: transparent;
    min-height: 400px;
    height: 100%;
    transition: transform 2s;
    transform-style: preserve-3d;
    cursor: pointer;
}
.front-side, .back-side {
    position: absolute;
    /* backface-visibility: hidden; */
    transition: 0.8s all;
}
.hot_topics_main .row .topic-box:hover .back-side {
    opacity: 1;
    background: #fff;
    height: 100%;
    width: 100%;
}
.back-side {
    color: white;
    opacity: 0;
}
.hot_topics_main .row .topic-box:hover .front-side {
    opacity: 0;
}
.hot_topics_main .row .topic-box:hover {
    /* transform: rotateY( 180deg ); */
    /* transition: transform 0.5s; */
}
.description {
    font-size: 16px !important;
    line-height: 20px !important;
}
.announcement-bar-wrap{
    pointer-events: none;
}
.xoo-wsc-ft-buttons-cont a {
    line-height: 44px;
    font-weight: normal;
    letter-spacing: 1px;
}

.wc-fast-cart .woocommerce-product-details__short-description {
    color: #2660dc;
}
.wc-fast-cart .cart-custom-message {
    font-size: 12px !important;
}
.wc-fast-cart .cart-custom-message h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}
.wc-fast-cart .wfc-cart-totals__table>tbody>tr>td,.wc-fast-cart .wfc-cart-totals__table>tbody>tr>th {
    color: #2660dc;
}
.wc-fast-cart .wfc-coupon button.wfc-button,.wc-fast-cart .wc-fast-cart__close-btn {
    background: #2660dc !important;
}
.wc-fast-cart h2 {
    color: #2660dc!important;
}
.other-pro {
    padding: 134px 0 70px;
}
.cross-related .other-pro-row .slide-arrow {
    position: absolute;
    bottom: -80px;
    right: 13px;
    width: 60px;
    height: 60px;
}
.cross-related .other-pro-row .prev-arrow {
    right: 100px !important;
}
.cross-related .other-pro-row .next-arrow {
    transform: rotate(180deg);
}
.cross-related .other-pro-row .slide-arrow {
    position: absolute;
    bottom: -80px;
    right: 13px;
    width: 60px;
    height: 60px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
}
.cross-related .other-pro-row .slide-arrow img {
    margin: 0 auto;
}

/*corporate gift page link hover start css*/
.order-step .form-qty_number a:hover {
	text-decoration: underline;
	color: #303339;
}
/*corporate gift page link hover end css*/

/*home page gift section new design css start*/
.gift_main.new_gift_main .contener .row {
	background: url(/wp-content/uploads/2023/05/bg.png);
	background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
	align-items: center;
}
.gift_main.new_gift_main .contener .row .img_box .logo {
	position: static;
	margin: 0 auto 20px;
	width: 184px;
	height: 234px;
}
.gift_main.new_gift_main .contener .row .col_6 {
	text-align: center;
	padding: 0px 70px;
}
.gift_main.new_gift_main .content_col {
	justify-content: center;
}
.gift_main.new_gift_main .contener .row .col_6.col-form img {
	max-width: 70%;
	margin: 0 0 180px 30px;
}
.gift_main.new_gift_main .form_main {
	bottom: -220px;
}
.gift_main.new_gift_main {
	padding-bottom: 320px;
}
@media screen and (min-width: 1300px) {
	.gift_main.new_gift_main .contener .row:before, .gift_main.new_gift_main .contener .row:after {
		content: none;
	}
}
@media screen and (max-width: 1299px) {
	.gift_main.new_gift_main .contener .row .col_6 {
		width: 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0 10px;
	}
	.gift_main.new_gift_main .contener .row {
		display: flex;
	}
	.gift_main.new_gift_main .contener .row .col_6:first-child {
		margin-bottom: 30px;
	}
	.gift_main.new_gift_main .contener .row .col_6 .gift_img {
		max-width: 80%;
		margin: 10px auto;
	}
	.gift_main.new_gift_main .form_main {
		bottom: unset;
		position: relative;
		margin: -180px auto 0;
	}
	.gift_main.new_gift_main {
		padding-bottom: 50px;
	}
	.gift_main.new_gift_main .contener .row .col_6.col-form img {
		margin: 0 auto 210px auto;
	}
}
@media screen and (max-width: 991px) {
	.gift_main.new_gift_main .form_main {
		max-width: 80%;
	}
}
@media screen and (max-width: 768px) {
	.gift_main.new_gift_main .contener .row .img_box .logo  {
		width: 168px;
    	height: 168px;
	}
	.gift_main.new_gift_main .form_main {
		max-width: 100%;
	}
}
/*home page gift section new design css end*/

.tab-teaser .no-product {
	text-align: center;
	color: #2160DD;
	font-size: 24px;
}

/*form label specing issue fix css start*/
.corporate-form_right .did-floating-input:not(:placeholder-shown) ~ label {
    top: 30%;
}
.corporate-form_right textarea.did-floating-input:not(:placeholder-shown) ~ label {
    top: 10%;
}
.corporate-form_right textarea#other-shipping.did-floating-input:not(:placeholder-shown) ~ label {
	top: 2%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.corporate-form_right .form-control textarea {
		padding-top: 34px;
	}
	.corporate-form_right input[type="date"]:not(:placeholder-shown) ~ label {
		top: 10px;
	}
	.corporate-form_right .form-control input {
		-webkit-min-logical-width: calc(100% - 16px);
		box-sizing: border-box;
		height: 60px;
		display:flex; 
  		display:-webkit-flex;
		min-width:100%;
	}
}
@media screen and (max-width: 767px) {
	.corporate-form_right .form-control textarea {
		padding-top: 54px;
	}
	.corporate-form_right input[type="date"]:not(:placeholder-shown) ~ label {
		top: 10px;
	}
	.corporate-form_right .form-qty_fieldwrap input {
		min-width: 80px;
	}
	.form-qty_fieldwrap.row {
		flex-wrap: nowrap;
		justify-content: center;
	}
	.corporate-form_right .form-control input {
		-webkit-min-logical-width: calc(100% - 16px);
		box-sizing: border-box;
		height: 60px;
		display:flex; 
  		display:-webkit-flex;
		min-width:100%;
	}
}
/*form label specing issue fix css end*/

/*catering & corporate page message popup*/
.corporate-form-wrap .modal, .footer .newsletter-section .footmodal {
	display: none;
	position: fixed;
	z-index: 10;
	left: 0;
	top: 50%;
	transform: translatey(-50%);
	width: 100%;
	height: 100%;
	overflow: auto; 
	background-color: rgba(0,0,0,0.4);
}
.corporate-form-wrap .modal-content, .footer .newsletter-section .modal-content {
	background-color: #2060dc;
	margin: auto;
	padding: 70px 20px;
	width: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	border-radius: 20px;
}
.corporate-form-wrap .modal-content p, .footer .newsletter-section .modal-content p {
	text-align: center;
	color: #fff;
}
.corporate-form-wrap .modal-content h3.thank-text, .footer .newsletter-section .modal-content h3.thank-text {
	color: #ffffff;
	font-size: 30px;
}
.corporate-form-wrap .close, .footer .newsletter-section .close {
	color: #ffffff;
	font-size: 25px;
	position: absolute;
	left: auto;
	right: 12px;
	top: 0px;
}
.corporate-form-wrap .close:hover, .corporate-form-wrap .close:focus,
.footer .newsletter-section .close:hover, .footer .newsletter-section .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
.corporate-form-wrap .modal-content p b, .footer .newsletter-section .modal-content p b {
	text-decoration: underline;
	color: #f59226;
}
@media screen and (min-width: 769px) and (max-width: 991px) {
	.corporate-form-wrap .modal-content, .footer .newsletter-section .modal-content {
		width: 400px;
	}
}
@media screen and (max-width: 768px) {
	.corporate-form-wrap .modal-content, .footer .newsletter-section .modal-content {
		width: 400px;
		/*top: 60%; */
	}
}
@media screen and (max-width: 480px) {
	.corporate-form-wrap .modal-content, .footer .newsletter-section .modal-content {
		width: 80%;
		/*top: 60%;*/
	}
}
/*catering & corporate page message popup*/

.main-product .info-col .variations_form .desing-type-box .main-option input:checked + label {
    border: 5px solid #DD9221;
} 
.main-product .info-col .variations_form .desing-type-box .main-option label {
	border: 5px solid transparent;
}

/*single product page show attribute css start*/
body .main-product .info-col .variations_form th.label {
    display: block;
    width: 100%;
    text-align: left;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    color: #2160DD;
    margin-bottom: 15px;
}
body .main-product .info-col .variations_form td.value {
    display: block;
}
/*single product page show attribute css end*/
/*product page below button text add css start*/
.add-below-text {
	display: flex;	
	justify-content: space-between;
	margin-top: 5px;
}
.add-below-text p {
	font-size: 16px;
	color: #2160dd;
	font-weight: 400;
}
/*product page below button text add css end*/

/*cms page text color & text specing change css start*/
.blank_page_tpl_main .card.card-layout-3 .card-body {
	color: #2160dd;
}
@media screen and (max-width: 580px) {
	.blank_content .footer-info-items {
		padding-top: 40px !important;
	}
}
/*cms page text color & text specing change css end*/

/*top bar mobile responsive css start*/
@media screen and (max-width: 580px) {
	.top_bar .slick-track {
		display: flex;
		align-items: center;
	}
	.top_bar p {
		line-height: 24px;
		font-size: 12px;
	}
}
/*top bar mobile responsive css end*/
/*header cart count css start*/
.header_main .icon_main a.cart_icon {
	position: relative;
}
.header_main .icon_main a.cart_icon span.header-cart {
	background: #25b354;
    color: #ffffff;
    right: 0;
    left: auto;
}
/*header cart count css end*/
/*contact page form text color change css start*/
.contact-us_form_wrap .form-title .title, .contact-us_form_wrap .form-title .text  {
	color: #2660dc;
}
.contact-us_form_wrap .form-detail .adress-inner .adress-text {
	color: #2660dc;
}
.contact-us_wrapper .wpcf7-form input, .contact-us_wrapper .wpcf7-form textarea {
	color: #2660dc;
}
.contact-us_wrapper .wpcf7-form input::placeholder { 
  	color: #2660dc;
  	opacity: 1; 
}
.contact-us_wrapper .wpcf7-form input:-ms-input-placeholder {
  	color: #2660dc;
}
.contact-us_wrapper .wpcf7-form input::-ms-input-placeholder { 
 	color: #2660dc;
}
.contact-us_wrapper .wpcf7-form textarea::-webkit-input-placeholder {
	color: #2660dc;
}
.contact-us_wrapper .wpcf7-form textarea:-moz-placeholder { 
	color: #2660dc;  
}
.contact-us_wrapper .wpcf7-form textarea::-moz-placeholder {  
	color: #2660dc; 
}
.contact-us_wrapper .wpcf7-form textarea:-ms-input-placeholder {
	color: #2660dc; 
}
.form-wrapper .wpcf7-form .contact-submit {
	color: #fff;
}
/*contact page form text color change css end*/
/*corporate page herobanner css start*/
.corporate-gifting-hero .hero__contain {
	max-width: 650px;
	height: 80%;
}
.corporate-gifting-hero .hero__contain .hero__label {
	color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 500;
}
.corporate-gifting-hero .hero__contain .hero__heading {
	color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0;
	line-height: 24px;
	font-weight: 500;
    margin-top: 10px;
}
.hero__textwrap .corporate-gifting-hero__text-box p {
	color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}
.corporate-gifting-hero {
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    min-height: 100%;
	margin-top: 110px;
}
/* .corporate-gifting-hero:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
} */
.corporate-gifting-hero .hero__contain .hero__btn {
	background: #000;
    color: #fff;
    border-color: #000;
    margin-top: auto;
    position: absolute;
    bottom:-34px;
    left: 50%;
    transform: translateX(-50%);
	max-width: 160px;
    padding: 10px;
}
body .corporate-gifting-hero:not(body.customize-support .corporate-gifting-hero) {
	margin-top: 140px;
}
@media screen and (min-width: 1440px) and (max-width: 1580px) {
	.corporate-gifting-hero .hero-img_inner img {
		height: 350px;
	}
	.corporate-gifting-hero .hero__contain {
		height: 92%;
	}
	.corporate-gifting-hero .hero__contain .hero__btn {
		bottom: 0px;
	}
}
@media screen and (min-width: 1281px) and (max-width: 1439px) {
	.corporate-gifting-hero .hero-img_inner img {
		/*height: 300px;*/
	}
	.corporate-gifting-hero .hero__contain .hero__label {
		font-size: 14px;
		margin-bottom: 5px;
	}
	.corporate-gifting-hero .hero__contain .hero__heading {
		font-size: 12px;
	}
	.corporate-gifting-hero .hero__contain {
		height: 90%;
	}
	.corporate-gifting-hero .hero__contain .hero__btn {
		padding: 5px;
		max-width: 147px;
    	font-size: 14px;
		bottom: 0px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
	.corporate-gifting-hero .hero-img_inner img {
		/*height: 280px;*/
	}
	.corporate-gifting-hero .hero__contain .hero__label {
		font-size: 11px;
		margin-bottom: 5px;
	}
	.corporate-gifting-hero .hero__contain .hero__heading {
		font-size: 10px;
	}
	.corporate-gifting-hero .hero__contain {
		height: 90%;
	}
	.corporate-gifting-hero .hero__contain .hero__btn {
		padding: 5px;
		max-width: 147px;
    	font-size: 10px;
		bottom: -4px;
	}
}
@media screen and (min-width: 541px) and (max-width: 767px) {
	.corporate-gifting-hero .hero-img_inner img {
		/*height: 280px;*/
	}
	.corporate-gifting-hero .hero__contain .hero__label {
		font-size: 10px;
		margin-bottom: 5px;
		letter-spacing: 2px;
		line-height: normal;
	}
	.corporate-gifting-hero .hero__contain .hero__heading {
		font-size: 10px;
		line-height: normal;
	}
	.corporate-gifting-hero .hero__contain {
		height: 90%;
	}
	.corporate-gifting-hero .hero__contain .hero__btn {
		padding: 5px;
		max-width: 91px;
		font-size: 9px;
		line-height: 11px;
		bottom: -3px;
	}
}
@media screen and (min-width: 541px) and (max-width: 680px) {
	.corporate-gifting-hero {
		margin-top: 140px;
	}
}
@media screen and (max-width: 540px) {
	.corporate-gifting-hero .hero-img_inner img {
		/*height: 300px;*/
	}
	.hero__textwrap .corporate-gifting-hero__text-box p {
		font-size: 14px;
	}
	.corporate-gifting-hero .hero__contain .hero__label {
		font-size: 8px;
		margin-bottom: 0px;
		letter-spacing: 0px;
		line-height: normal;
	}
	.corporate-gifting-hero .hero__contain .hero__heading {
		font-size: 5px;
		line-height: normal;
		margin-bottom: 0;
	}
	.corporate-gifting-hero .hero__contain {
		height: 100%;
	}
	.corporate-gifting-hero .hero__contain .hero__btn {
		padding: 0px;
		max-width: 67px;
		font-size: 6px;
		line-height: 12px;
		bottom: -3px;
	}
	.corporate-gifting-hero .hero__contain {
		top: 44%;
	}
}
/*corporate page herobanner css end*/

/*contact page banner css start*/
.contact-us_hero {
	margin-top: 110px;
	position: relative;
}
.contact-us_hero img {
	width: 100%;
}
.contact-us_hero .contact-hero_content {
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translatex(-50%);
}
/*contact page banner css end*/
/*mobile image css start*/
@media screen and (min-width: 581px) and (max-width: 1380px){
	.contact-us_hero {
		height: 620px;
	}
}
@media screen and (max-width: 580px) {
	.category-block .category-image img {
		min-height: 300px;
	}
	.contact-us_hero {
		height: 100%;
	}
	.contact-us_content .position-above {
		margin-top: 50px;
	}
	.main-product .product-inner .product-row .image-main, .main-product .product-inner .product-row .image-main img {
		height: 100% !important;
	}
}	
/*mobile image css end*/
/*product page link css start*/
.product-click-link {
	text-decoration: underline;	
	text-decoration-thickness: 2px;
}
/*product page link css end*/
/*home page hero slider css start*/
.hero_main_slider {
	position: relative;
}
.hero_main_slider .slide-arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
	z-index: 1;
	top: 50%;
	transform: translatey(-50%);
	background: #ffffff;
}
.hero_main_slider .slide-arrow.prev-arrow {
	left: 40px;
} 
.hero_main_slider .slide-arrow.next-arrow {
	right: 40px;
	transform: translatey(-50%) rotate(180deg);
} 
.hero_main_slider .slide-arrow img {
	width: auto;
	margin: 0 auto;
}
@media screen and (max-width: 1024px) {
	.hero_main_slider .slide-arrow {
		width: 40px;
		height: 40px;
	}
	.hero_main_slider .slide-arrow.prev-arrow {
		left: 20px;
	} 
	.hero_main_slider .slide-arrow.next-arrow {
		right: 20px;
	}
	.hero_main_slider .slide-arrow img {
		width: 20px;
	}
}
/*home page hero slider css end*/
/*catering page css start*/
.hero__section__wrap {
	margin-top: 132px;
}
/*catering page css end*/
.tab-main-box .tab-box .pro-box-in .pro-img-a {
	cursor: zoom-in;
}

/*product page image zoom css start*/
.zoom {
	background-position: 50% 50%;
	position: relative;
	height: 300px;
	width: 500px;
	overflow: hidden;
	cursor: zoom-in;
}
.zoom img:hover {
	opacity: 0;
}
.zoom img {
	transition: opacity 0.5s;
	display: block;
	width: 100%;
}
/*product page image zoom css end*/
/*popup tent page heading css start*/
section.pop-up-tent-sec .tent-heading {
	margin-top: 146px;
}
/*popup tent page heading css end*/

/*free shipping text align css start*/
.woocommerce ul#shipping_method li {
	margin-bottom: 0px !important;
}
.wfc-cart-totals .woocommerce-shipping-totals ul#shipping_method li label {
	justify-content: end !important;
}
/*free shipping text align css end*/

/*error message color css*/
.corporate-form_right .form-control label.error {
	color: red;
	top: auto;
	bottom: -25px;
}

/*single product page price move css start*/
section.main-product .info-col .product_title {
	max-width: 100%;
	display: block;
}
section.main-product .info-col .top-text {
	max-width: 60%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
	section.main-product .info-col .price {
		max-width: 40%;
		text-align: right;
		font-size: 18px;
	}
	section.main-product .info-col .top-text {
		font-size: 16px;
	}
}
@media screen and (max-width: 767px) {
	section.main-product .info-col .top-text {
		max-width: 100%;
	}
}
/*single product page price move css end*/
.tab-teaser .tab-main-box .tab-box .pro-box-in .pro-title,
.tab-teaser .tab-main-box .tab-box .pro-box-in span.pro-price,
.tab-teaser .pro-main-btn a.pro-btn {
	font-family: 'Poppins',sans-serif;
}
/*checkout page order-notice input css start*/
.woocommerce form .form-row.notes textarea {
	border: 1px solid #2660dc;
	border-radius: 4px;
	padding: 10px;
	height: 8em;
}
/*checkout page order-notice input css end*/
.top_bar .slick-arrow, .hero_main .slick-arrow  {
	display: none !important;
}


/*shipping charge hide css*/
/* .woocommerce-shipping-totals, .wfc-cart-totals .woocommerce-shipping-totals {
	display: none;
} */