
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #eff2f1; 
}

body img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
ul{
    list-style: none;
}
.form-control{
    height: 50px;
    border-radius: 10px;
    font-size: 14px;
}
input:focus, textarea:focus{
    color: #212529 !important;
    background-color: #fff !important;
    border-color: #3b5d50 !important;
    outline: 0 !important;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2) !important;
}

.navbar{
    background-color: #3b5d50 ;
    /* border: 1px solid #ffffff80; */
}
.navbar a{
    color: #ffffffb3;
}
.navbar a:hover{
    color: #FFF;
}
.navbar .navbar-brand{
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
}
.navbar .navbar-brand span{
    opacity: .4;
    font-size: 35px;
    font-weight: 700;
}
.custom-navbar .custom-navbar-nav li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    background: #f9bf29;
    height: 5px;
    opacity: 1;
    visibility: visible;
    width: 0;
    -webkit-transition: .15s all ease-out;
    -o-transition: .15s all ease-out;
    transition: .15s all ease-out;
}
.custom-navbar .custom-navbar-nav li.active a:before {
    width: calc(100% - 16px);
}
/*  color: #3b5d50;
*/
/****************************************************************************************************/
/*********index**********/
.sec1{
    background-color: #3b5d50;
    z-index: -1;
}

.sec1 .cont{
    margin-top: 30px;
    padding: 0 20px;
}
.sec1 .cont h1{
    color: #FFFF;
    font-size: 54px;
    font-weight: 700;
    padding-top: 80px;
    margin-bottom: 30px;
}
.sec1 .cont p {
    color: #ffffff80;
}
.sec1 .cont .button_G{
    display: flex;
    flex-direction: row;
}
.button_G .btn.btn-secondary{
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 700;
    transition: all .7s ease;
}
.sec1 .cont .button_G .btn.btn-secondary{
    background: #f9bf29;
    color: #000;
}
.sec1 .cont .button_G .btn.btn-secondary:hover{
    background: #e3ad24;
    transition: all .7s ease;
}
.sec1 .cont .button_G .btn.btn-white-outline{
    border-radius: 30px;
    background: transparent;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 700;
    transition: all .7s ease;
}
.sec1 .cont .button_G .btn.btn-white-outline:hover{
    border-color: white;
    color: #ffffff;
    transition: all .7s ease;
}
.sec1 .img_sec1 img{
    position: relative;
    z-index: 1;
}
.sec1 .img_sec1::before{
    content: "";
    position: absolute;
    width: 255px;
    height: 217px;
    background-image: url(../images/dots-light.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(219%, 16%);
    z-index: 0;
}
/* .sec1 .img_sec1 img{
    position: static;
    z-index: 100;
} */
/********************/
.product_sec{
    margin: 100px 0 80px;
}
.product_sec h5, .why_choose_section h5, .we_help_section h5,
.blog_section .hederBlog h5{
    color: #2f2f2f;
    font-size: 30px;
}
.product_sec p, .why_choose_section p, .we_help_section p, 
.we_help_section li, .popular_product .contProduct p, .team_sec .team p,
.team_sec .team span, .cotactUs .titelCont .titelContsec .cont p, 
.thankyou .thankyousec .contThank p, .Checkout .customer p{
    line-height: 28px;
    color: #6a6a6a;
    font-size: 14px;
}
.product_sec .button_G .btn.btn-secondary, 
.we_help_section .button_G .btn.btn-secondary,
.Checkoutsec .yourOrder .contOrder .button_G .btn.btn-secondary{
    color: #FFF;
    background: #2f2f2f;
}
.product_sec .button_G .btn.btn-secondary:hover,
.we_help_section .button_G .btn.btn-secondary:hover,
.Checkoutsec .yourOrder .contOrder .button_G .btn.btn-secondary:hover{
    color: #FFF;
    background: #3b5d50d5;
    transition: all .7s ease;
}
.product_sec .product_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.product_sec .product_item::before{
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    background: #dce5e4;
    height: 0%;
    z-index: -1;
    border-radius: 10px;
    transition: .7s all ease;
}
.product_sec .product_item:hover:before {
    height: 70%;
    transition: .7s all ease;
}
.product_sec .product_item h3{
    font-weight: 600;
    font-size: 16px;
    color: #2f2f2f;
}
.product_sec .product_item strong{
    color: #2f2f2f;
    font-weight: 800;
    font-size: 18px;
}
.product_sec .product_item .icon_cross{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #2f2f2f;
    visibility: hidden; 
    border-radius: 30px;
    transform: translateY(50%);
}
.product_sec .product_item:hover .icon_cross{
    visibility: visible;
}
.product_sec .product_item .product_thumbnail {
    margin-bottom: 30px;
    position: relative;
    top: 0;
    transition: all .7s ease;
}
.product_sec .product_item:hover .product_thumbnail {
    top: -25px;
    transition: all .7s ease;
}
.why_choose_section{
    margin: 200px 0 ;
}
.why_choose_section .choose_secLeft{
    margin-top: 70px;
}
.why_choose_section .choose_secLeft h6,.popular_product .contProduct h6{
    font-size: 14px;
    color: #2f2f2f;
}
.why_choose_section .choose_secLeft .features .icon_Features{
display: inline-block;
position: relative;
margin-bottom: 20px;
}
.why_choose_section .choose_secLeft .features .icon_Features::before{
    content: "";
    display: inline-block;
    position: absolute;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #3b5d5033;
    z-index: -1;
    bottom: 0;
    right: -8px;

}
.why_choose_section .choose_secRight .choose_img img{
    border-radius: 20px;
    position: relative;
    right: -177px;
    top: 73px;
    width: 90%;
}
.why_choose_section .choose_secRight .choose_img::before{
    content: "";
    background-image: url(../images/dots-yellow.svg);
    position: absolute;
    width: 255px;
    height: 217px;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(26%, -3%);
    z-index: -1;
}
/**************************/
.we_help_section{
    margin: 300px 0 150px;
}
.we_help_section .imgs_grid {
    display: grid;
    grid-template-columns: repeat(27, 1fr);
    position: relative;

}
.we_help_section .imgs_grid:before {
    content: " ";
    position: absolute;
    width: 255px;
    height: 217px;
    background-image: url(../images/dots-green.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-40%, -40%);
    z-index: -1;
}
.we_help_section .imgs_grid  .grid img{
    border-radius: 20px;
}
.we_help_section .imgs_grid  .grid.grid_1 {
    grid-column: 1 / span 18;
    grid-row: 1 / span 27;
}
.we_help_section .imgs_grid  .grid.grid_2 {
    grid-column: 19 / span 27;
    grid-row: 1 / span 5;
    padding-left: 20px; 
}
.we_help_section .imgs_grid  .grid.grid_3 {
    grid-column: 14 / span 16;
    grid-row: 6 / span 27;
    padding-top: 20px;
}
.we_help_section .custom-list li{
    width: calc(50% - 20px);
    display: inline-block ;
    padding-left: 20px;
    position: relative;
}
.we_help_section .custom-list li::before{
    content: " ";
    position: absolute;
    border: 2px solid #314d43;
    border-radius: 50%;
    transform: translate(-159%, 107%);
    width: 8px;
    height: 8px;
}
/*****************************/
.popular_product .imgProduct{
flex: 0 0 120px;
position: relative;
}
.popular_product .imgProduct::before{
    content: " ";
    position: absolute;
    background-color: #3b5d5033;
    border-radius: 30px;
    width: 129px;
    height: 108px;
    z-index: -1;
    transform: translate(-2%, 10%);
}
.popular_product .contProduct h6{
    font-weight: 700;
    margin-top: 10px;
}
.popular_product .contProduct{
    margin-left: 20px;
}
/**************************************/
.blog_section {
    margin: 150px 0 300px;

}
.blog_section .hederBlog{
    display: flex;
    justify-content: space-between;
}
.blog_section .hederBlog a{
    color: #2f2f2f;
    transition: .7s all ease;
}
.blog_section .hederBlog a:hover{
    color: #3b5d50d8;
    transition: .7s all ease;
}
.blog_section .imgPost img{
    border-radius: 20px;
    margin-top: 40px;
}
.blog_section  .titelPost{
    margin-top: 15px;
    margin-left: 15px;
    margin: 15px 15px 0 15px;
}
.blog_section .writerPost{
    margin: 0 15px;
}
.blog_section .writerPost span{
    color: #6a6a6a;
    font-size: 14px;
}
.blog_section .writerPost span a, .blog_section  .titelPost a{
    font-weight: 600;
    color: #2f2f2f;
    font-size: 14px;
}
/*********************************************/
.team_sec{
    margin-bottom: 150px;
}
.team_sec .team {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}
.team_sec .team a{
    transition: all .3s ease;
    color: #2f2f2f;
    text-decoration: underline;
    font-size: 1.75rem;
}
.team_sec .team a:hover{
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
}
.team_sec .team span{
    margin-bottom: 10px;
}
.team_sec .team .Learn{
    font-size: 14px;
    font-weight: 600;
}

/*************************/
.cotactUs .titelCont{
margin: 100px 0 0;
}
.cotactUs .titelCont .titelContsec {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: calc(10px) ;
}
.cotactUs .titelCont .titelContsec .icon{
    border-radius: 10px;
    flex: 0 0 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #3b5d50;
    margin-right: 20px;
    color: #ffffff;
}
.form{
    margin-top: 40px;
}
.form label{
    font-size: 14px;
    margin-bottom: 10px;
}
.form .form-control{
    border-radius: 10px;
}
.form  input,  .form #c_country {
    height: 50px;
}
.cotactUs .button_G .btn.btn-secondary, 
.thankyou .thankyousec .contThank .btn.btn-secondary{
    background: #2f2f2f;
    margin-top: 35PX;
}

/************************************************/
.thankyou .thankyousec{
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.thankyou .thankyousec .contThank h1{
    font-size: 65px;
}
.thankyou .thankyousec .iconThank{
    color: #314d43;
    font-size: 60px;
}
.thankyou .thankyousec .iconThank::before{
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 93, 80, 0.2);
}
.thankyou .thankyousec .contThank .btn.btn-secondary{margin-top: 10PX;}
/*****************************************************************************************/
.Checkout .customer {
    margin: 70px 0 50px;
    border:1px solid #dee2e6;
    padding: 10px 20px;
    border-radius: 10px;
}
.Checkout .customer a{
    color: #000;
    text-decoration: underline;
}
.Checkout .customer p{
    margin-top: 20px;
}
.Checkoutsec  .form .fromsec{
    background: #FFF;
    padding: 20px 20px 40px;
}
.Checkoutsec  .form #c_create_account,
.Checkoutsec  .form  #c_ship_different_address {
    height: auto;
}
.Checkoutsec .contCoupon, .Checkoutsec .yourOrder .contOrder{
    background: #FFF;
    padding: 20px;
}
.Checkoutsec .apply {
    display: flex;
    flex-direction: row;
    margin-top: 25px;
}
.Checkoutsec .apply input{
    height: 50px;
    border-radius: 10px;
    font-size: 14px;
}
.Checkoutsec .apply .button_G{
    margin-left: 10px;
}
.Checkoutsec .apply .button_G .btn.btn-secondary{
    background: #2f2f2f;
}
.Checkoutsec .yourOrder .contOrder .titelTable{
    border-bottom: 1.5px solid #000 !important;
}
.Checkoutsec .yourOrder .contOrder  .contTable{
    border-bottom: 1px solid #dee2e6 ;
}
.Checkoutsec .yourOrder .contOrder  .contTable th{
    font-weight: 500;
}
.Checkoutsec .yourOrder .contOrder  .contTable .font_bold{
    font-weight: 700;
}
.Checkoutsec .yourOrder .contOrder th{
    padding: 10px;
    width: 100%;
}
.Checkoutsec .yourOrder .contOrder .collapse_sec{
    border-radius: 5px;
    border: 1px solid #dee2e6 ;
    margin: 10px 0;
    padding: 10px;
}
.Checkoutsec .yourOrder .contOrder .collapse_sec .accordion-button{
    text-decoration: underline;
    transition: all .7s ease;
}
.Checkoutsec .yourOrder .contOrder .collapse_sec .accordion-button:hover{
    color: #000;
    text-decoration: none;
    transition: all .7s ease;
}
.Checkoutsec .yourOrder .contOrder .collapse_sec  p{
    color: #6a6a6a;
    font-size: 14px;
}
.Checkoutsec .couponCode{
    margin-top: 40px;
}
/************************************************/
.site-blocks-table {
    overflow: auto;
}
.site-blocks-table thead tr th{
    width: 200px;
    text-align: center;
    border-width: 0px !important;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px;
}
.site-blocks-table td {
    width: 200px;
    text-align: center;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.8);
}






































footer{
    background: #FFF;
    margin: 250px 0 0;
    padding-top: 100px;
    width: 100%;
    position: relative;
}
footer .sofa-img{
    position: absolute;
    top: -140px;
    right: 0;
}
footer .sofa-img img{
    width: 65%;
}
.footer_sec1 {
    margin-bottom: 70px;
}
.footer_sec1 .subscription-form h3 span{
color: #3b5d50;
font-size: 18px;
font-weight: 500;
margin-bottom: 10px;
}
.footer_sec1 .subscription-form .form-control {
    font-size: 15px;
    padding: 12px 15px;
    border-radius: 10px;
}
.footer_sec1 .subscription-form .btn{
    background: #3b5d50;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all .7s ease;
}
.footer_sec1 .subscription-form .btn:hover {
    background: #314d43;
    transition: all .7s ease;
}
/* .footer_sec1 .form-control:focus ,  .form .form-control:focus{
    color: #212529;
    background-color: #fff;
    border-color: #3b5d50;
    outline: 0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
} */
.footer_sec2 .footer-logo-wrap a{
    font-size: 32px;
    color: #3b5d50;
}
.footer_sec2 #footsec{
    margin-left: 0;
    margin-right: 0;
}
.footer_sec2  p, .footer_sec3  p{
    color: #00000090;
    font-size: 14px;
    line-height: 27px;
}

.footer_sec2 .custom-social{
    display: flex;
}
.footer_sec2 .custom-social li {
    margin: 0 4px 0 4px;
}
.footer_sec2 .custom-social li a{
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    background: #dce5e4;
    color: #3b5d50;
    border-radius: 50%;
    transition: all .7s ease;
}
.footer_sec2 .custom-social li a:hover{
    color: #dce5e4;
    background: #3b5d50;
    transition: all .7s ease;
}
.footer_sec2  .links-wrap {
    margin-top: 70px;
}
.footer_sec2  .links-wrap ul li {
    margin-bottom: 10px;
}
.footer_sec2  .links-wrap ul li a, .footer_sec3  a {
    color: #2f2f2f;
    font-size: 15px;
    transition: all .7s ease;
}
.footer_sec2  .links-wrap ul li a:hover, .footer_sec3 a:hover{
    color: #3b5d50c9;
    transition: all .7s ease;
}