/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
/* Font Family */

/* Universal Css Start Here */
:root {
  --first-color: #005de0;
  --second-color: #00ecfb;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
}
h2 {
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 60px;
}
h3 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}
h4 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  line-height: 40px;
}
h5 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 30px;
}
a.btn {
  background: #005de0;
  color: #fff;
  font-size: 16px;
  border-radius: 0;
  padding: 10px 30px;
  font-weight: 500;
  transition: 0.6s;
}
a.btn:hover {
  color: #fff;
}
/* Universal Css End Here */

/* Inner Breadcrumbs Start Here */
.bread_crumbs {
  background: #e5e5e5;
  padding: 15px 30px;
}
.bread_crumbs ul.inner_breadcrumbs {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.bread_crumbs ul.inner_breadcrumbs li {
  font-size: 16px;
  color: #5a5a5a;
}
.bread_crumbs ul.inner_breadcrumbs li.active {
  color: #000;
}
.bread_crumbs ul.inner_breadcrumbs li.spacer {
  padding: 0 20px;
}
.bread_crumbs ul.inner_breadcrumbs li.spacer i {
  font-size: 28px;
  color: #000;
}
@media (max-width: 991px) {
  .bread_crumbs ul.inner_breadcrumbs {
    display: block;
  }
  .bread_crumbs ul.inner_breadcrumbs li {
    padding: 3px 0;
  }
  .bread_crumbs ul.inner_breadcrumbs li.spacer {
    display: none;
  }
  .product_detail .product_desc ol li {
    font-size: 12px;
    line-height: 22px;
  }
}
/* Inner Breadcrumbs End Here */

/* Related products Css Start Here */
.related_products {
  padding: 30px 0 100px;
}
.related_products .title h4 {
  font-size: 25px;
  color: #232323;
  font-weight: 600;
}
/* Related products Css End Here */

/* Universal Inner Pages Banner Css Start Here */
.universal_banner {
  background-image: url(../img/inner-banner.png);
  padding: 110px 0 90px;
  background-size: cover;
  background-repeat: no-repeat;
}
.universal_banner .page_content {
  padding-top: 60px;
  text-align: center;
}
.universal_banner .page_content h2.title {
  color: #fff;
  padding-bottom: 10px;
}
.universal_banner .page_content ul.breadcrumbs {
  padding: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  list-style: none;
}
.universal_banner .page_content ul.breadcrumbs li {
  color: #ffffffa6;
}
.universal_banner .page_content ul.breadcrumbs li:nth-child(2) {
  padding: 0 15px;
}
.universal_banner .page_content ul.breadcrumbs li a {
  color: #ffffffa6;
  text-decoration: none;
}
@media (max-width: 480px) {
  .universal_banner .page_content h2.title {
    font-size: 35px;
  }
}
/* Universal Inner Pages Banner Css Start Here */

/* Mobile Header Css Start Here */
header .canvas_btn {
  display: none;
  justify-content: end;
}
header .canvas_btn i.fa.fa-bars {
  color: #fff;
  font-size: 20px;
}
.mobile_header {
  position: fixed;
  width: 25%;
  height: 100%;
  background: #0044a3;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  right: 0;
  padding-left: 20px;
  transition: 0.8s;
  transform: translateX(120%);
}
.mobile_header.show {
  transform: translateX(0%);
}
.mobile_header ul.mobile_menus {
  padding: 0;
  list-style: none;
  margin: 0;
}
.mobile_header ul.mobile_menus li.menu_items {
  padding: 4px 0;
}
.mobile_header ul.mobile_menus li.menu_items a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.mobile_header .cancel {
  background: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (max-width: 768px) {
  header .canvas_btn {
    display: flex;
  }
}
@media (max-width: 575px) {
  .mobile_header {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .mobile_header {
    width: 65%;
  }
}
/* Mobile Header Css Start Here */

/* Header Css Start Here */
header#header-top {
  position: absolute;
  top: 0;
  z-index: 5;
  width: 100%;
  padding-top: 15px;
}
header#header-top .logoDv figure {
  margin-bottom: 0;
}
header#header-top .logoDv img {
  width: 100%;
}
header#header-top .navbar_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header#header-top .navbar_menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
header#header-top .navbar_menu ul.navs-menu {
  flex: 1;
  text-align: center;
}
header#header-top .navbar_menu ul li {
  display: inline-block;
}
header#header-top .navbar_menu ul.navs-menu .menu-items .menu-links {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  padding: 0 10px;
}
header#header-top .navbar_menu ul.right_menus li a {
  text-decoration: none;
}
header#header-top .navbar_menu ul.right_menus li .menu-links.btn {
  border: 2px solid #005de0;
}
header#header-top .navbar_menu ul.right_menus li .menu-links.btn:hover {
  background: transparent;
  color: #fff;
}
header#header-top .navbar_menu ul.right_menus .cart-icon {
  margin: 0 20px;
  position: relative;
}
header#header-top .navbar_menu ul.right_menus .cart-icon span.count {
  background: #e00000;
  color: #fff;
  font-size: 12px;
  width: 20px;
  position: absolute;
  text-align: center;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  font-weight: 600;
  top: -8px;
  right: -9px;
}
@media (max-width: 991px) {
  header#header-top .navbar_menu ul.navs-menu .menu-items .menu-links {
    font-size: 12px;
    padding: 0 4px;
  }
  header#header-top .navbar_menu ul.right_menus .cart-icon {
    margin: 0 10px;
  }
  header#header-top .navbar_menu ul.right_menus li .menu-links.btn {
    padding: 7px 10px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  header#header-top .navbar_menu ul {
    display: none;
  }
}
/* Header Css Start Here */

/* Banner Css Start Here */
.banner_slider .slick-arrow {
  display: none !important;
}
.banner_slider .ban_slider {
  position: relative;
  overflow: hidden;
}
.banner_slider .ban_slidess.slide_one {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/banner.png);
}
.banner_slider .ban_slidess.slide_two {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/banner.png);
}
.banner_slider .ban_slidess.slide_three {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/banner.png);
}
.banner_slider .ban_slidess {
  height: 650px;
  background-size: cover;
  display: flex;
  align-items: center;
  background-position: center center;
}
.banner_slider .contentDv h4.sub_ttile {
  font-size: 28px;
}
.banner_slider .contentDv h2.title span.colored {
  color: #00ecfb;
}
.banner_slider .contentDv h2.title {
  line-height: 70px;
  color: #fff;
}
.banner_slider .contentDv p.para {
  line-height: 28px;
}
.banner_slider .contentDv .button-group a.btn {
  width: 135px;
  padding: 11px 0;
  margin-right: 10px;
}
.banner_slider .contentDv .button-group a.btn.shop {
  background: #fff;
  color: #005de0;
  border: 2px solid #fff;
}
.banner_slider .contentDv .button-group a.btn.shop:hover {
  background: transparent;
  color: #fff;
}
.banner_slider .contentDv .button-group a.btn.signup {
  border: 2px solid #005de0;
}
.banner_slider .contentDv .button-group a.btn.signup:hover {
  background: transparent;
  color: #fff;
}
.banner_slider ul.slick-dots {
  position: absolute;
  bottom: 0;
  width: unset;
  right: 0;
  padding: 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
  transform: rotate(90deg);
}
.banner_slider ul.slick-dots li button:before {
  color: #fff !important;
  opacity: 1;
  font-size: 13.7px;
  border-radius: 50%;
}
.banner_slider ul.slick-dots li.slick-active button:before {
  border: 1px solid #fff;
}
@media (max-width: 575px) {
  .banner_slider .ban_slidess {
    height: 600px;
  }
  .banner_slider ul.slick-dots {
    transform: unset;
    height: unset;
    width: 100%;
    bottom: 80px;
    left: 0;
    right: 0;
    margin: 0px auto;
    display: table;
  }
}
@media (max-width: 480px) {
  .banner_slider .ban_slidess {
    height: 500px;
  }
  .banner_slider .contentDv h4.sub_ttile {
    font-size: 18px;
    line-height: 28px;
  }
  .banner_slider .contentDv h2.title {
    font-size: 25px;
    line-height: 35px;
  }
  .banner_slider .contentDv p.para {
    font-size: 14px;
    line-height: 24px;
  }
  .banner_slider ul.slick-dots {
    bottom: 20px;
  }
}
/* Banner Css Start Here */

/* Feature Products Css Start Here */
.featured_products {
  padding-bottom: 60px;
}
.featured_products .feature_box {
  background: #fff;
  box-shadow: 0px 0px 4px #ccc;
  padding: 15px 40px;
  /*margin-top: -15%;*/
  position: relative;
}
.featured_products  .feature_pro {
    margin: 15px 10px;
}
.featured_products .feature_box .feature_pro .img_box {
  overflow: hidden;
  position: relative;
}
.featured_products .feature_box .feature_pro img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 6s;
}
/*.featured_products .feature_box .feature_pro .img_box:hover img {*/
/*  transform: scale(1.5);*/
/*}*/
.feature_box button.slick-prev::before {
    content: "\f104";
    font-family: 'FontAwesome';
    color: #000;
    font-size: 30px;
    opacity: 1;
}
.feature_box button.slick-next::before {content: "\f105";
    font-family: 'FontAwesome';
    color: #000;
    font-size: 30px;
    opacity: 1;
  }
.featured_products .feature_box .feature_pro figure {
  margin-bottom: 0;
}
.featured_products .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature_pro h5 {
  font-size: 16px;
  /* color: #000; */
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feature_pro p {
  font-size: 13px;
  color: #000;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured_products .feature_pro .contentDv {
    min-height: 189px;
    max-height: 189px;
    position: relative;
}

.featured_products .feature_pro .contentDv .cart_btns {position: absolute;bottom: 0px;}

.featured_products .head h4 {
  color: #131313;
  font-weight: 600;
}
.featured_products .head a.view_btn {
  color: #131313;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 0 20px;
  transition: 0.6s;
}
.featured_products .head a.view_btn:hover {
  color: #005de0;
}
@media (max-width: 1100px) {
  .featured_products .feature_box .feature_pro img {
    height: 130px;
  }
}
@media (max-width: 991px) {
  .featured_products .feature_box .feature_pro img {
    height: auto;
  }
}
@media (max-width: 575px) {
  .featured_products .head {
    display: block;
    text-align: center;
  }
  .featured_products .feature_box {
    margin: 0;
  }
  .featured_products .feature_box .feature_pro .img_box {
    padding: 0 110px;
  }
}
@media (max-width: 480px) {
  .featured_products .feature_box {
    padding: 15px 10px;
  }
  .featured_products .feature_box .feature_pro .img_box {
    padding: 0 0px;
  }
}
/* Feature Products Css End Here */

/* Our Products Css Start Here */
.our_products {
  padding: 20px 0 100px;
}
.our_products .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #70707066;
  margin-bottom: 10px;
}
.our_products .head .title {
  position: relative;
}
.our_products .head .title h3 {
  color: #363636;
}
span.line {
  background: #005de0;
  width: 80px;
  height: 8px;
  display: block;
  margin-top: 20px;
  position: relative;
}
span.line:after {
  content: "";
  background: #363636;
  width: 15px;
  height: 8px;
  position: absolute;
  right: 0;
}
.our_products .head .action_btns {
  display: flex;
  align-items: center;
}
.our_products .head .action_btns a.view_all {
  width: 150px;
  font-size: 18px;
  color: #005de0;
  text-decoration: none;
  font-weight: 500;
}
.our_products .head .action_btns #select_category {
  border: 0;
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  border-right: 1px solid #a5a5a5;
  width: 190px;
  border-radius: 0;
  margin-right: 30px;
  outline: none;
  box-shadow: none;
}
.product_box {
  box-shadow: 0px 0px 10px #00000036;
  padding: 15px 15px;
  transition: 0.6s;
}
.product_box:hover {
  box-shadow: 0px 0px 6px #005de0;
}
.product_box .img_box {
  /* height: 300px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_box .img_box img {
  width: 100%;
  /* padding: 0 40px; */
  height: 220px;
  object-fit: cover;
}
.product_box .pro_detail .rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
.product_box .pro_detail .rating span.category {
  font-size: 15px;
  color: #0000004f;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product_box .pro_detail .rating .stars i {
  color: #005de0;
}
.product_box .pro_detail .pro_name h5 a {
  color: #000;
  padding-bottom: 5px;
  text-decoration: none;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product_box .pro_detail .pro_price h4 {
  color: #005de0;
  font-weight: 700;
}
.product_box .pro_detail .pro_price del {
  font-size: 15px;
  font-weight: 400;
  color: #313131;
}
.product_box .pro_detail .cart_btns a.cart_btn.btn {
  width: 78%;
  padding: 10px 0;
  transition: 0.6s;
  border: 2px solid #fff;
}
.product_box .pro_detail .cart_btns a.cart_btn.btn:hover {
  box-shadow: 0px 0px 0px 1px #005de0;
}
.product_box .pro_detail .cart_btns a.wishlist.btn {
  padding: 10px 0;
  width: 20%;
  background: #e5e5e5;
  color: #005de0;
  transition: 0.6s;
}
.product_box .pro_detail .cart_btns a.wishlist.btn:hover {
  background: #005de0;
  color: #fff;
}
.product_box .pro_detail .cart_btns a.cart_btn.btn:hover {
  color: #fff;
}
.our_products .view_all_btn {
  text-align: center;
  margin-top: 60px;
}
.our_products .view_all_btn a.visit {
  color: #005de0;
  font-weight: 600;
  font-size: 18px;
  transition: 0.6s;
}
.our_products .view_all_btn a.visit:hover {
  color: #000;
}
@media (max-width: 1100px) {
  .product_box .img_box {
    height: 230px;
  }
  .product_box .img_box img {
    padding: 0 0px;
  }
  .product_box .pro_detail .pro_name h5 {
    font-size: 15px;
    line-height: 25px;
  }
  .product_box .pro_detail .pro_price h4 {
    font-size: 20px;
  }
  .product_box .pro_detail .cart_btns a.cart_btn.btn {
    width: 77%;
  }
}
@media (max-width: 991px) {
  .our_products .head .title h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .our_products .head {
    display: block;
  }
  .our_products .head .title {
    padding-bottom: 30px;
    text-align: center;
  }
  .our_products span.line {
    margin: 0px auto;
  }
  .our_products .head .action_btns {
    justify-content: center;
  }
  .product_box {
    margin: 0 70px;
  }
}
@media (max-width: 480px) {
  .our_products .head .action_btns {
    text-align: center;
  }
  .our_products .head .action_btns #select_category {
    width: 240px;
  }
  .product_box {
    margin: 0 0px;
  }
}
/* Our Products Css Start Here */

/* Blogs Css Start Here */
.blogs_sec {
  padding: 60px 0 170px;
  background: #f6f6f6;
}
.blogs_sec .title {
  text-align: center;
  padding-bottom: 40px;
}
.blogs_sec .title span.line {
  margin: 0px auto;
}
.blogs_sec .blogs {
  background: #fff;
  box-shadow: 0px 0px 5px #00000036;
}
.blogs_sec .blogs .img_box {
  overflow: hidden;
}
.blogs_sec .blogs figure {
  margin-bottom: 0;
}
.blogs_sec .blogs img {
  width: 100%;
  transition: 6s;
  height: 160px;
  object-fit: cover;
}
.blogs_sec .blogs:hover img {
  transform: scale(1.5);
}
.blogs_sec .blogs .contentDv {
  padding: 16px 20px;
}
.blogs_sec .blogs .contentDv h5 {
  font-size: 17px;
  line-height: 27px;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blogs_sec .blogs .contentDv .blog_desc p {
  font-size: 14px;
  color: #000000;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}
.blogs_sec .blogs .contentDv .blog_btns a.read_more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  border-top: 1px solid #70707061;
  padding-top: 10px;
}
.blogs_sec .blogs .contentDv .blog_btns a.read_more span {
  color: #005de0;
  font-size: 18px;
  font-weight: 500;
}
.blogs_sec .blogs .contentDv .blog_btns a.read_more svg {
  opacity: 0;
  transition: 0.4s;
}
.blogs_sec .blogs .contentDv .blog_btns a.read_more:hover svg {
  opacity: 1;
}
.blogs_sec .view_all_btn {
  text-align: center;
  margin-top: 60px;
}
.blogs_sec .view_all_btn a.visit {
  color: #005de0;
  font-weight: 600;
  font-size: 18px;
  transition: 0.6s;
}
.blogs_sec .view_all_btn a.visit:hover {
  color: #000;
}
@media (max-width: 575px) {
  .blogs_sec .blogs {
    margin: 0 50px;
  }
  .blogs_sec h2 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 480px) {
  .blogs_sec .blogs {
    margin: 0 0px;
  }
}
/* Blogs Css End Here */

/* Newsletter Css Start Here */
.newsletter_sec .newsletter_box {
  background: #005de0;
  padding: 5px 30px;
  margin-bottom: -156px;
  position: relative;
}
.newsletter_sec {
  width: 45%;
  float: right;
}
.newsletter_sec .newsletter_box .contentDv h1 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
}
.newsletter_sec .newsletter_box .contentDv h2 {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
}
.newsletter_sec .newsletter_box .contentDv p {
  color: #fff;
  margin-top: -8px;
}
.newsletter_sec .newsletter_box .newsletter form .form-control {
  border-radius: 0;
  padding: 5px 15px;
  margin-bottom: 10px;
}
.newsletter_sec .newsletter_box .newsletter form .form-control::placeholder {
  color: #00000059;
}
.newsletter_sec .newsletter_box .newsletter form button {
  width: 100%;
  padding: 8px 0;
  background: #3b3b3b;
  color: #fff;
  /*font-size: 18px;*/
  border: 2px solid #005de0;
  transition: 0.6s;
}
.newsletter_sec .newsletter_box .newsletter form button:hover {
  box-shadow: 0px 0px 0px 2px #3b3b3b;
}
@media (max-width: 1100px) {
  .newsletter_sec .newsletter_box .contentDv h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .newsletter_sec .newsletter_box .contentDv h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .newsletter_sec {
    width: unset;
    float: unset;
  }
}
@media (max-width: 480px) {
  .newsletter_sec .newsletter_box {
    padding: 30px 20px;
  }
  .newsletter_sec .newsletter_box .contentDv h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
/* Newsletter Css Start Here */

/* Footer Css Start Here */
footer {
  background: #3b3b3b;
  padding: 145px 0 100px;
}
footer .footer_content .footer_logo img {
  width: 70%;
}
footer .footer_content p {
  padding-right: 30px;
}
footer .footer_content ul.social_icons {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}
footer .footer_content ul.social_icons li a i {
  color: #fff;
  margin-right: 15px;
  font-size: 20px;
}
footer .footer_content .head h4 {
  font-weight: 700;
  font-size: 25px;
  padding-bottom: 10px;
}
footer .footer_content ul.footer_menus {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer_content ul.footer_menus li {
  padding: 5px 0;
}
footer .footer_content ul.footer_menus li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .footer_content {
    text-align: center;
  }
  footer .footer_content p {
    padding: 0;
  }
  footer .footer_content ul.social_icons {
    justify-content: center;
    margin-bottom: 20px;
  }
  .footer_content {
    text-align: center;
  }
  footer .footer_content ul.social_icons {
    justify-content: center;
    margin-bottom: 20px;
  }
  footer .footer_content .footer_logo img {
    width: 200px;
    margin: 0px auto;
    display: table;
  }
}
@media (max-width: 575px) {
  footer {
    padding: 170px 0 60px;
  }
}
/* Footer Css Start Here */

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #005de0;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*product-slider */
.picContainer {
    position: relative;
    width: 100%;
    height: 220px;
}
.picContainer img {
    width: 100%;
    transition: 1s;
}
.picContainer .img {
    width: 100%;
    position: absolute;
    z-index: 0;
    transition: 1s;
}
.right {
    position: absolute;
    height: 100%;
    width: 60px;
    z-index: 99;
    cursor: pointer;
    color: #fff;
    transition: 1s;
    right:0;
    top:0;
}
.right {
    font-weight: 900;
    content: "\f104";
    font-size: 45px;
    position: absolute;
    right: -35px;
    top: 70%;
    transform: translateY(-50%) scale(0.75);
    margin-right: 10px;
    transition: .5s;
}
.right:hover:before{
    transform: translateY(-50%) scale(1);
}
.left {
    position: relative;
    height: 100%;
    width: 60px;
    z-index: 99;
    cursor: pointer;
    color: #fff;
    transition: 1s;
}
.left {
    font-weight: 900;
    content: "\f104";
    font-size: 45px;
    position: absolute;
    left: 0;
    top: 70%;
    transform: translateY(-50%) scale(0.75);
    margin-left: 10px;
    transition: .5s;
}
.left:hover:before{
    transform: translateY(-50%) scale(1);
}
/*Product Slider End*/
