* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}

*::-moz-selection {
  background-color: #000;
  color: #fff;
}

*::selection {
  background-color: #000;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #FD6769;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #FD6769;
}

/***************************** Global Style *****************************/
body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
  margin-bottom: 0;
}

h4, h5, h6 {
  margin-bottom: 0;
}

p {
  font-size: 12px;
  color: #555;
  margin-bottom: 0;
}

section .heading .title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}

section .table {
  border: 0;
}

section .table thead tr {
  border-bottom: 2px solid #000;
}

section .table thead tr th {
  border: 0;
  font-weight: 700;
  font-size: 14px;
}

section .table tbody tr {
  border-bottom: 1px solid #D8D8D8;
}

section .table tbody tr td {
  padding: 25px 0;
  vertical-align: middle;
  border: 0;
}

section .table tbody tr .img-form a .img-thumbnail {
  border: 0;
}

section .table tbody tr .img-form .info-item {
  float: left;
}

section .table tbody tr .img-form .type {
  color: #D8D8D8;
  font-size: 12px;
  font-weight: 400;
}

section .table tbody tr .img-form .name {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
}

section .table tbody tr .img-form .num {
  color: #676767;
  font-size: 12px;
  font-weight: 400;
}

section .table tbody tr .add-more .qt-plus,
section .table tbody tr .add-more .qt-minus {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: solid 1px transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  color: #000;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
}

section .table tbody tr .add-more .qt-plus:hover,
section .table tbody tr .add-more .qt-minus:hover {
  background-color: #E04F3F;
  color: #000;
}

section .table tbody tr .add-more .qt-plus .fa,
section .table tbody tr .add-more .qt-minus .fa {
  font-weight: 300;
}

section .table tbody tr .add-more .qt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.44;
  color: #000;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 5px;
  min-width: 30px;
  text-align: center;
}

section .table tbody tr .count {
  width: 20% !important;
}

section .table tbody tr .unit {
  font-weight: 300;
  font-size: 14px;
  color: #000;
  width: 20%;
}

section .table tbody tr .total {
  font-weight: 700;
  font-size: 14px;
  color: #000;
  width: 20%;
}

section .more-info {
  padding: 20px 0;
}

section .more-info .continue {
  color: #FD6769;
  border: 1px solid #FD6769;
  font-weight: 700;
  font-size: 16px;
  background-color: #fff;
  border-radius: 22px;
  width: 241px;
  height: 40px;
  line-height: 40px;
  padding: 0;
}

section .more-info .continue:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

section .more-info .clear {
  color: #E2E2E2;
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin: 10px 35px;
}

section .more-info .subtotal {
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0;
}

section .more-info .subtotal span {
  font-size: 18px;
  font-weight: 700;
  margin: 0 50px;
}

section .line {
  background-color: #D8D8D8;
  width: 100%;
  height: 1px;
  display: block;
  margin: 20px 0;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

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

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled):active:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #000;
}

.scroll-top-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 2px dashed #FD6769;
  border-radius: 50%;
  color: #FD6769;
  text-align: center;
  line-height: 50px;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 1000;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: #FD6769;
}

.scroll-top-btn:hover i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.scroll-top-btn i {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

/***************************** Animations *****************************/
@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@-webkit-keyframes besticon {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes besticon {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/***************************** Start Edit Navbar *****************************/
.navbar {
  background-color: #F7FFDE;
  padding: 15px 1rem;
}

.navbar .navbar-brand .img-logo {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.navbar .dropdown-toggle::after {
  border-top: 0;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
}

.navbar .dropdown-menu {
  border: 0;
  padding: 25px;
  border-bottom: 2px solid #FD6769;
  right: -300px;
  left: auto;
  width: 839px;
  height: 180px;
}

.navbar .dropdown-menu .menu {
  display: table;
  margin: auto;
}

.navbar .dropdown-menu .menu .list-unstyled {
  display: table-cell;
  padding-right: 90px;
}

.navbar .dropdown-menu .menu .list-unstyled .dropdown-title {
  padding: 15px;
  font-weight: 700;
  font-size: 15px;
}

.navbar .dropdown-menu .menu .list-unstyled .dropdown-submenu {
  padding: 2px 15px;
  font-weight: 300;
  font-size: 13px;
}

.navbar .nav-link {
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  padding: 0 35px;
}

.navbar .nav-link:hover::after, .navbar .nav-link:active::after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.navbar .nav-link::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #FD6769;
  display: block;
  margin: auto;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.navbar .navbar-nav .nav-item .nav-link {
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  padding: 0 35px;
}

.navbar .navbar-nav .nav-item .nav-link:hover::after, .navbar .navbar-nav .nav-item .nav-link:active::after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.navbar .navbar-nav .nav-item .nav-link::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #FD6769;
  display: block;
  margin: auto;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.navbar .form-clicks .cart-icon {
  border: 0;
}

.navbar .form-clicks .person-cart {
  position: absolute;
  right: 100px;
  top: 55px;
  background-color: #fff;
  z-index: 5;
  display: block;
  padding: 25px 20px;
  width: 335px;
  min-width: 300px;
  border-radius: 10px;
  -webkit-transform: translate(50px, 15px);
          transform: translate(50px, 15px);
  opacity: 0;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.navbar .form-clicks .person-cart.active {
  opacity: 1;
  -webkit-transform: translate(0px, 15px);
          transform: translate(0px, 15px);
}

.navbar .form-clicks .person-cart .cart-item .btns-cart {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.navbar .form-clicks .person-cart .cart-item .btns-cart .sign {
  background-color: #FD6769;
  border-radius: 22.5px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  padding: 4px 35px;
  border: 2.8px solid #FD6769;
}

.navbar .form-clicks .person-cart .cart-item .btns-cart span {
  color: #979797;
  font-weight: 400;
  font-size: 14px;
  padding: 0 8px;
}

.navbar .form-clicks .person-cart .cart-item .btns-cart .create {
  border-radius: 22.5px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  padding: 4px 35px;
  border: 2.8px solid #FD6769;
  color: #FD6769;
}

.navbar .form-clicks .shopping-cart {
  position: absolute;
  right: 100px;
  top: 55px;
  background-color: #fff;
  z-index: 5;
  display: block;
  padding: 25px 20px;
  width: 335px;
  min-width: 300px;
  border-radius: 10px;
  -webkit-transform: translate(50px, 15px);
          transform: translate(50px, 15px);
  opacity: 0;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.navbar .form-clicks .shopping-cart.active {
  opacity: 1;
  -webkit-transform: translate(0px, 15px);
          transform: translate(0px, 15px);
}

.navbar .form-clicks .shopping-cart .cart-header {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  position: relative;
}

.navbar .form-clicks .shopping-cart .cart-header .delete-btn {
  top: -15px;
  background-color: transparent;
  color: #666;
  border: transparent;
  position: absolute;
  right: 0;
}

.navbar .form-clicks .shopping-cart .cart-header .delete-btn:hover {
  color: #FF3C78;
}

.navbar .form-clicks .shopping-cart .cart-item {
  padding: 1rem .3rem;
}

.navbar .form-clicks .shopping-cart .cart-item .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.navbar .form-clicks .shopping-cart .cart-item .item .type-item {
  color: #D8D8D8;
  font-weight: 400;
  font-size: 11px;
}

.navbar .form-clicks .shopping-cart .cart-item .item .name-item {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
}

.navbar .form-clicks .shopping-cart .cart-item .item .price {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  right: 0;
}

.navbar .form-clicks .shopping-cart .cart-item .item .unit {
  color: #676767;
  font-weight: 400;
  font-size: 11px;
}

.navbar .form-clicks .shopping-cart .cart-item .item .cart-img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.navbar .form-clicks .shopping-cart .cart-item .item .item-content {
  padding: 5px 15px;
}

.navbar .form-clicks .shopping-cart .cart-item .item .delete-btn {
  background-color: transparent;
  color: #666;
  border: transparent;
  position: absolute;
  right: 30px;
}

.navbar .form-clicks .shopping-cart .cart-item .item .delete-btn:hover {
  color: #FF3C78;
}

.navbar .form-clicks .shopping-cart .cart-item .total .title-total {
  color: #000000;
  font-weight: 700;
  font-size: 14px;
}

.navbar .form-clicks .shopping-cart .cart-item .total .total-price {
  color: #000000;
  font-weight: 300;
  font-size: 14px;
  float: right;
}

.navbar .form-clicks .shopping-cart .cart-item .btns-cart {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding-top: 15px;
}

.navbar .form-clicks .shopping-cart .cart-item .btns-cart .check {
  background-color: #FD6769;
  border-radius: 22.5px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  width: 137px;
  height: 36px;
}

.navbar .form-clicks .shopping-cart .cart-item .btns-cart .check:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar .form-clicks .shopping-cart .cart-item .btns-cart .view {
  background-color: #fff;
  border: 1px solid #FD6769;
  border-radius: 22.5px;
  color: #FD6769;
  font-weight: 700;
  font-size: 16px;
  width: 137px;
  height: 36px;
}

.navbar .form-clicks .shopping-cart .cart-item .btns-cart .view:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar .form-clicks .signin {
  background-color: #FD6769;
  border-radius: 22.5px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  padding: 10px 44px;
  border: 2.8px solid #FD6769;
  margin: 0 25px;
}

.navbar .form-clicks .signin:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar .form-clicks .signup {
  background-color: #FFFFFF;
  border-radius: 22.5px;
  font-size: 16px;
  font-weight: 700;
  color: #FD6769;
  padding: 10px 44px;
  border: 2.8px solid #FD6769;
}

.navbar .form-clicks .signup:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar .form-clicks .btn-primary:not(:disabled):not(.disabled):active {
  background-color: #FD6769;
  border-color: #FD6769 !important;
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

/***************************** end Edit Navbar *****************************/
/***************************** Start section  header*****************************/
.header {
  background-color: #F7FFDE;
  padding-top: 70px;
  overflow: hidden;
}

.header .header-content {
  position: relative;
}

.header .header-content .images .header-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 718px;
  height: 449px;
  position: absolute;
  left: 41px;
  bottom: 0;
}

.header .header-content .header-text {
  padding-bottom: 70px;
  -webkit-animation: text-focus-in 1.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.header .header-content .header-text .title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #000000;
}

.header .header-content .header-text .title .helight {
  color: #FD6769;
}

.header .header-content .header-text .text {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  width: 80%;
  padding: 40px 0 25px 0;
}

.header .header-content .header-text .heaer-zip {
  position: relative;
  width: 65%;
  margin: 0 0 60px 0;
}

.header .header-content .header-text .heaer-zip .icon-location {
  position: absolute;
  left: 30px;
  top: 12px;
}

.header .header-content .header-text .heaer-zip .input-zip {
  border-radius: 22.5px;
  background-color: #FFFFFF;
  height: 50px;
  line-height: 50px;
  display: block;
  border: 0;
  padding: 0 70px;
}

.header .header-content .header-text .heaer-zip .input-zip::-webkit-input-placeholder {
  color: #D8D8D8;
  font-size: 18px;
  font-weight: 400;
}

.header .header-content .header-text .heaer-zip .input-zip:-ms-input-placeholder {
  color: #D8D8D8;
  font-size: 18px;
  font-weight: 400;
}

.header .header-content .header-text .heaer-zip .input-zip::-ms-input-placeholder {
  color: #D8D8D8;
  font-size: 18px;
  font-weight: 400;
}

.header .header-content .header-text .heaer-zip .input-zip::placeholder {
  color: #D8D8D8;
  font-size: 18px;
  font-weight: 400;
}

.header .header-content .header-text .heaer-zip .input-zip:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #FD6769;
}

.header .header-content .header-text .heaer-zip .button-go {
  background-color: #FD6769;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 0;
  line-height: 35px !important;
  display: block;
  padding: 0;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  position: absolute;
  right: 13px;
  top: 6px;
}

.header .header-content .header-text .download .title {
  font-weight: 400;
  font-size: 21px;
  color: #000000;
}

.header .header-content .header-text .download .download-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
}

.header .header-content .header-text .download .download-box a {
  width: 35%;
  height: 68px;
}

.header .header-content .header-text .download .download-box a .box {
  background-color: #1A1919;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  border-radius: 10px;
  padding: 13px 4px;
  margin-right: 11px;
}

.header .header-content .header-text .download .download-box a .box .images img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header .header-content .header-text .download .download-box a .box .title {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  width: 72%;
  text-transform: capitalize;
}

.header .header-content .header-text .download .download-box a .box .title .helight {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  text-transform: capitalize;
}

/***************************** end section header *****************************/
/***************************** start section work *****************************/
.work {
  padding: 70px 0;
  overflow: hidden;
}

.work .work-content {
  padding: 40px 0;
}

.work .work-content .work-card {
  border: 0;
  text-align: center;
}

.work .work-content .work-card:hover .images::before {
  -webkit-animation: circle .95s;
          animation: circle .95s;
}

.work .work-content .work-card:hover .images .card-img-top {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.work .work-content .work-card .images {
  background-color: #FED9DB;
  border-radius: 40px;
  width: 325px;
  height: 184px;
  line-height: 184px;
  position: relative;
  overflow: hidden;
}

.work .work-content .work-card .images::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
}

.work .work-content .work-card .images .card-img-top {
  -webkit-transition: .7s;
  transition: .7s;
  width: 198px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}

.work .work-content .work-card .card-body .card-title {
  font-weight: 700;
  font-size: 20px;
  color: #000000;
}

.work .work-content .work-card .card-body .card-text {
  font-weight: 400;
  font-size: 15px;
  color: #000;
}

/***************************** end section work *****************************/
/***************************** start section product *****************************/
.product {
  overflow: hidden;
}

.product .product-content {
  padding: 40px 0;
}

.product .product-content .product-card {
  -webkit-box-shadow: 1px 5px 15px #ccc;
          box-shadow: 1px 5px 15px #ccc;
  width: 100%;
  border-radius: 3px;
  padding: 2em;
  margin: 1em;
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  height: 100%;
}

.product .product-content .product-card:hover .img-top {
  -webkit-transform: rotate(-3deg) scale(1.1);
          transform: rotate(-3deg) scale(1.1);
}

.product .product-content .product-card:hover .product_inner .icon {
  -webkit-animation: besticon 1.5s ease-in-out infinite both;
          animation: besticon 1.5s ease-in-out infinite both;
}

.product .product-content .product-card .product_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  position: relative;
}

.product .product-content .product-card .product_inner .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  border: 2px dashed #FD6769;
  display: inline-block;
  text-align: center;
  position: absolute;
  left: 4px;
  top: -16px;
}

.product .product-content .product-card .product_inner .icon i {
  color: #FD6769;
}

.product .product-content .product-card .product_inner .card-title {
  color: #000;
  font-weight: 700;
  font-size: 24px;
}

.product .product-content .product-card .product_inner .num {
  font-weight: 700;
  color: #000;
  font-size: 15px;
}

.product .product-content .product-card .product_inner .add {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #000;
  border-radius: 3px;
  padding: 11px 35px;
  margin: 1em 0 0 0;
  background: white;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.product .product-content .product-card .product_inner .add .shopping {
  width: 20px;
  position: absolute;
  width: 20px;
  left: 5px;
}

.product .product-content .product-card .product_inner .add:hover {
  background: white;
  color: #2b2d42;
}

.product .product-content .product-card .img-top {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  width: 198px;
  height: 140px;
  padding-bottom: 25px;
}

.product .product-content .blue {
  background: linear-gradient(-45deg, #92dce5 50%, rgba(255, 255, 255, 0.5) 50%);
}

.product .product-content .orange {
  background: linear-gradient(-45deg, #ef6f6c 50%, rgba(255, 255, 255, 0.5) 50%);
}

.product .product-content .yellow {
  background: linear-gradient(-45deg, #e8db7d 50%, rgba(255, 255, 255, 0.5) 50%);
}

.product .product-content .product-s-card {
  border-radius: 25px;
  width: 22rem !important;
  -webkit-box-shadow: 0 5px 15px #0001;
          box-shadow: 0 5px 15px #0001;
  padding: 20px 0 0 0;
}

.product .product-content .product-s-card:hover .images img {
  -webkit-transform: rotate(-3deg) scale(1.1);
          transform: rotate(-3deg) scale(1.1);
}

.product .product-content .product-s-card:hover .card-body .price-product {
  background-color: #ECC238;
}

.product .product-content .product-s-card .images {
  margin: auto;
}

.product .product-content .product-s-card .images img {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  width: 198px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.product .product-content .product-s-card .card-body .rate {
  color: #E0E0E0;
  line-height: 35px;
}

.product .product-content .product-s-card .card-body .rate .active {
  color: #FEBE38;
}

.product .product-content .product-s-card .card-body .price-product {
  background-color: #FD6769;
  text-align: center;
  border-radius: 10px;
  width: 80px;
  font-weight: 700;
  display: block;
  margin: auto;
  height: 35px;
  line-height: 35px;
  color: #fff;
  font-size: 13px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.product .product-content .product-s-card .group-button .card-button .fav {
  background-color: #ECC235;
  width: 100%;
  height: 40px;
  border: 0 !important;
  border-radius: 0 !important;
  position: relative;
}

.product .product-content .product-s-card .group-button .card-button .fav:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.product .product-content .product-s-card .group-button .card-button .fav .heart {
  width: 30px;
  height: 30px;
}

.product .product-content .product-s-card .group-button .card-button .fav .num {
  position: absolute;
  background: #000;
  height: 17px;
  width: 17px;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  left: 53%;
  color: #fff;
  line-height: 17px;
}

.product .product-content .product-s-card .group-button .card-button .add {
  background-color: #E04F3F;
  width: 100%;
  height: 40px;
  border: 0 !important;
  border-radius: 0 !important;
}

.product .product-content .product-s-card .group-button .card-button .add:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.product .product-content .product-s-card .group-button .card-button .add .shopping {
  width: 30px;
  height: 30px;
}

.product .product-content .product-s-card .group-button .card-button .add .num {
  position: absolute;
  background: #000;
  height: 17px;
  width: 17px;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  left: 53%;
  color: #fff;
  line-height: 17px;
}

/***************************** end section product *****************************/
/***************************** start section offer *****************************/
.offer {
  padding: 50px 0 150px 0;
}

.offer .offer-content {
  background-color: #F5F5F5;
  border-radius: 50px;
  height: 241px;
  width: 85%;
  margin: auto;
  padding: 30px 0;
}

.offer .offer-content .images {
  position: relative;
}

.offer .offer-content .images .offer-img {
  width: 110%;
  height: 310px;
  position: absolute;
  left: -115px;
  top: -45px;
}

.offer .offer-content .offer-text .title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  width: 65%;
}

.offer .offer-content .offer-text .text {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  padding: 40px 0 20px 0;
  padding: 20px 0 15px 0;
}

.offer .offer-content .offer-text .offer-email {
  position: relative;
  width: 60%;
}

.offer .offer-content .offer-text .offer-email .input-email {
  border-radius: 22.5px;
  background-color: #FFFFFF;
  height: 46px;
  line-height: 50px;
  display: block;
  border: 0;
  padding: 0 32px;
}

.offer .offer-content .offer-text .offer-email .input-email::-webkit-input-placeholder {
  color: #D8D8D8;
  font-size: 18px;
  font-weight: 400;
}

.offer .offer-content .offer-text .offer-email .input-email:-ms-input-placeholder {
  color: #D8D8D8;
  font-size: 18px;
  font-weight: 400;
}

.offer .offer-content .offer-text .offer-email .input-email::-ms-input-placeholder {
  color: #D8D8D8;
  font-size: 18px;
  font-weight: 400;
}

.offer .offer-content .offer-text .offer-email .input-email::placeholder {
  color: #D8D8D8;
  font-size: 18px;
  font-weight: 400;
}

.offer .offer-content .offer-text .offer-email .input-email:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #FD6769;
}

.offer .offer-content .offer-text .offer-email .button-go {
  background-color: #FD6769;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 0;
  line-height: 35px !important;
  display: block;
  padding: 0;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  position: absolute;
  right: 13px;
  top: 6px;
}

/***************************** end section offer *****************************/
.footer {
  background-color: #F5F5F5;
  padding: 20px 0;
}

.footer .email {
  font-weight: 700;
  color: #FD6769;
  font-size: 18px;
}

.footer .links .fa-instagram,
.footer .links .fa-facebook-square,
.footer .links .fa-twitter {
  color: #000;
  font-size: 30px;
  padding: 0 20px;
}
/*# sourceMappingURL=index.css.map */