@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&family=Rubik:wght@300;400;500;600;700;800&family=Sofia&display=swap");
:root {
  --ff-body:'Poppins', sans-serif;
  /* colors */
  --common-white:#ffffff;
  --common-black:#000;
  --common-placeholder: #4A5764;
  --heading-primary: #285D81;
  --text-body: #646464;
  --body-primary: #ffffff;
  --text-primary: #000;
  --primary-color:#D83F33;
  --seccondry-color:#97C067;
  --shadow-primary: 0px 30px 60px 0px rgba(0, 15, 32, 0.1);
  --border-primary: 1px solid #9FBF54;
  --box-shadow-1: 0px 25px 70px rgba(0, 0, 0, 0.08);
  --box-shadow-2: 0px 10px 70px rgba(0, 0, 0, 0.1);
  --border-color-1: #E7E7E7;
  --border-color-2: #E9E9E8;
  --border-color-3: rgba(19, 19, 19, 0.1);
  --border-color-4: rgba(19, 19, 19, 0.06);
}
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-weight: 300;
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: normal;
  color: var(--text-body);
  line-height: var(--lh-body);
  background: var(--body-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	transition: 0.4s;
}
a {  
  outline: none;
  color: inherit;
  text-decoration: none;
}
a,
button,
i {
	text-decoration: none;
	color: inherit;
}
a:focus,
a:hover {
	text-decoration: none;
	color: inherit;
}
p {
  font-size: 16px;
  font-weight: 400;
  color: var(--common-black);
  line-height: 28px;
}
.mb-30 {
  margin-bottom: 30px;
}

.list-bg {
  background: rgba(211, 242, 175, 0.1);
}
section{
  padding: 80px 0px;
}

.bg-cover {
  background-position: center !important;
  background-size: cover !important;
}

.intro {
  margin-bottom: 40px;
}
.intro h6{
  font-weight: 400;
  color: #ff4500;
}
.intro p{
  max-width: 500px;
  margin: auto;
}

.top-header {
  background-color: #97C067;
  padding: 7px 0px;
  overflow: hidden;
  position: relative;
}
header {
  background-color: #fff;
  padding: 0px;
  position: relative;
}
.logo {
  width: 350px;
}
.icon-logo {
  width: 220px;
}
/* @media only screen and (min-width: 250px) and (max-width: 991px) {
  .icon-logo {
    width: 150px;
  }
} */
.social-links a{
  width: 32px;
  height: 32px;
  background-color: rgb(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  margin: 0px 3px;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.5s;
}
.social-links a:hover{
  background-color: #fff;
  color: #651711;
}

.top-contact {
  padding: 5px;
  background-color: #97C067;
  border-radius: 5px;
}
.top-contact ul{
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px dashed #fff;
  border-radius: 5px;
  padding: 10px;
}
.top-contact ul li {
  font-size: 20px;
  font-weight: 500;
  color: #920606;
  list-style: none;
  display: inline-block;
  line-height: 20px;
  position: relative;
}
.top-contact ul li i {
  font-size: 18px;
  line-height: 10px;
}
@media only screen and (min-width: 250px) and (max-width: 991px) {
  .icon-logo {
    width: 150px;
  }
  .top-contact {
    padding: 5px;
    background-color: #97C067;
    border-radius: 5px;
    margin-top: 15px;
    width: auto;
  }
  .top-contact ul{
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px dashed #fff;
    border-radius: 5px;
    padding: 10px;
  }
  .top-contact ul li {
    font-size: 16px;
    font-weight: 500;
    color: #920606;
    list-style: none;
    display: inline-block;
  }
}

.menubar {
  width: 100%;
  height: auto;
  background-color: #920606;
  padding: 0px;
  margin: 0px;
}

.nav-item > .nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: #fff;
}


.nav-item {
  font-size: 16px;
  padding: 10px 10px !important;
  font-weight: 500;
  border-right: 1px solid #9f2a2a;
  transition: 0.5s all ease-in-out;
}
.nav-item:last-child {
  border-right: none;
}
.nav-item:hover{
  background-color: #651711;
}
.nav-item:hover .nav-link{
  color: #fff !important;
}
/* drop down menu */
.dropdown-menu {
  border-radius: 0px !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 9999;
  background-color: #fff;
}
.dropdown:hover .dropdown-menu {
  display: block;
  transition: all 2s ease-in-out;
}
.dropdown-item.active, .dropdown-item:active {
  background-color: #651711;
  color: #fff;
}
.dropdown-item {
  border-bottom: 1px solid #f5f3f3;
}

.dropdown-item:hover {
  background-color: #651711;
  color: #fff;
}
.navbar-nav .dropdown-menu {
  margin-top: 10px;
  padding:0px;
  left: 0px;
  top: 80%;
}
.dropdown-item {
  padding: 10px !important;
}

@media only screen and (min-width: 250px) and (max-width: 991px) {
  .menubar {
    width: 100%;
    height: auto;
    background-color: #920606;
    padding: 10px 0px;
    margin: 0px;
}
}

/* verticle menu */
@media only screen and (min-width: 250px) and (max-width: 991px) {
  nav {
    position: relative;
  }
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav ul li {
    /* Sub Menu */
  }
  nav ul li a {
    display: block;
    background: #fff;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
  }
  nav ul li a:hover {
    background: #e7e7e7;
    color: #000;
  }
  nav ul li a .fa {
    width: 16px;
    text-align: center;
    margin-right: 5px;
    float:right;
  }
  nav ul ul {
    background-color:#ebebeb;
  }
  nav ul li ul li a {
    background: #f8f8f8;
    border-left: 4px solid transparent;
    padding: 10px 20px;
  }
  nav ul li ul li a:hover {
    background: #ebebeb;
    border-left: 2px solid #3a922f;
  }
  }

  .navbar-toggler-icon{
    color: #fff !important;
  }
  .navbar-toggler {
    background-color: #fff !important;
    border:1px solid #fff !important;
  }


  /* Slider */
.btn{
  padding: 9px  24px;
}
.btn-brand {
  background-color: #ff4500;
  color: #fff;
  border-color: #ff4500;
}
.btn-brand:hover {
  color: #fff;
  background: #da3c03;
}
.slide1{
  width: 100%;
  height: 550px;
}
/* .slide2{
  background: linear-gradient(rgba(9, 32, 50, 0.4), rgba(9, 32, 50, 0.4)), url('../images/bg_banner2.jpg');
  height: 600px;
} */

/* Owl Crousel */

.owl-prev, 
.owl-next {
  position: absolute;
  top: 50%;
  width: 60px !important;
  height: 60px !important;
  display: grid;
  place-items: center;
  background-color: rgba(255, 255, 255, 0.2) !important;
  margin-top: -30px !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  border-radius: 100% !important;
}
.owl-prev{
  left: 0;
}
.owl-next {
  right: 0;
}
.owl-next:hover,
.owl-prev:hover{
  background-color: #ff4500 !important;
  color: #fff !important;
}


  /* about us */
  .abt-img {
    width: 100%;
    height: auto ;
    background: #fff;
    border: 1px solid #3a922f;
    padding: 5px;
    border-radius: 2px;
  }
  #about-section {
    position: relative;
  }
  #about-section::before {
    content: "";
    width: 15%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(216, 47, 47, 0.5);
    z-index: -1;
  }
  .aboutus h1{
    font-size: 25px;
    font-weight: 500;
    color: #920606;
    line-height: 30px;
    padding: 10px 0px;
  }
  .aboutus p{
    font-size: 16px;
    font-weight: 300;
    color: #333;
    line-height: 28px;
  }
  .profile-btn {
    background-color: #a51212;
    color: #fff;
    padding: 15px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.5s;
  }
  .profile-btn:hover {
    background-color: #960d0d;
    color: #fff;
    border: none;
  }
  
  /*----------------------------------------*/
/*  2.7 breadcrumb
/*----------------------------------------*/
.breadcrumb-space {
  padding: 40px 0px;
  background: linear-gradient(rgba(9, 9, 9, 0.8), rgba(9, 9, 9, 0.7)), url('../images/bg_banner2.jpg');
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-space {
    padding: 40px 0px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-space {
    padding: 30px 0px;
  }
}

.breadcrumb__area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.breadcrumb__area.overly {
  position: relative;
  z-index: 1;
}

.breadcrumb__title {
  color: #fff;
  font-family: var(--rr-ff-heading);
  font-weight:700;
  font-size: 35px;
  line-height: 40px;
  font-style: normal;
  margin-bottom: 14px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .breadcrumb__title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb__title {
    font-size: 35px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__title {
    font-size: 25px;
    line-height: 25px;
  }
  .breadcrumb__menu ul li span a {
    background-color: none !important;
  }
}
@media (max-width: 575px) {
  .breadcrumb__title {
    font-size: 28px;
    line-height: 28px;
  }
  .breadcrumb__menu ul li span a {
    background-color: none !important;
  }
}
@media (max-width:450px) {
  .breadcrumb__title {
    font-size: 20px;
    font-weight: bold;
  }
  .breadcrumb__menu ul li span a {
    background-color: none !important;
  }
}

.breadcrumb__menu ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flexbox;
  display: inline-flex;
  gap: 27px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.breadcrumb__menu ul li {
  list-style: none;
  position: relative;
  line-height: 1;
  color: var(--body-primary);
  font-size: 15px !important;
  font-weight: 300 !important;
}
.breadcrumb__menu ul li:not(:last-child)::before {
  display: inline-block;
  content: "»";
  position: absolute;
  top: 0%;
  font-family: 'fontawesome';
  inset-inline-end: -17px;
  color: var(--rr-text-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 10px;
}
.breadcrumb__menu ul li span {
  color: var(--rr-text-body);
  font-family: var(--rr-ff-body);
  font-weight: var(--rr-fw-regular);
  line-height: var(--rr-lh-h5);
  font-size: 15px;
  font-style: normal;
}

.breadcrumb__menu ul li span a:hover {
  color: var(--rr-theme-primary);
}

.breadcrumb__menu ul li.active span {
  color: var(--rr-text-body);
  font-family: var(--rr-ff-body);
  font-weight: var(--rr-fw-regular);
  line-height: var(--rr-lh-h5);
  font-size: 16px;
  font-style: normal;
}

.breadcrumb__area .inner-top-shape {
  z-index: -1;
  opacity: 0.5 !important;
  top: -55px;
  left: 621px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb__area .inner-top-shape {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb__area .inner-top-shape {
    display: none;
  }
}
.breadcrumb__area .banner-all-shape-wrapper .first-shape {
  top: 222px;
  left: 585px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .breadcrumb__area .banner-all-shape-wrapper .first-shape {
    left: 370px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb__area .banner-all-shape-wrapper .first-shape {
    left: 245px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb__area .banner-all-shape-wrapper .first-shape {
    display: none;
  }
}
.breadcrumb__area .banner-all-shape-wrapper .second-shape {
  top: 500px;
  left: 33px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb__area .banner-all-shape-wrapper .second-shape {
    display: none;
  }
}
.breadcrumb__area .banner-all-shape-wrapper .right-shape {
  position: absolute;
  right: 35px;
}
.breadcrumb__area .banner-all-shape-wrapper .right-shape img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb__area .banner-all-shape-wrapper .right-shape img {
    display: none;
  }
}

  .certificate {
    background-color: rgba(242, 98, 62, 0.1);
  }
  .certificate-box {
    width: 100%;
    height: auto;
    margin: 20px 0px;
    background-color: var(--body-primary);
  }
  .certificate-box .logo {
    width: 100%;
    height: 100px;
    text-align: center;
    display: block;
    padding: 15px 0px;
  }
  .certificate-box h4{
    font-size: 16px;
    font-weight: 400;
    color: #0d5e04;
    text-align: center;
    line-height: 25px;
    overflow: hidden;
    padding: 0px 5px;
  }
  
  /* Certificates */
  .certi-box {
    background: #fff;
    width: 100%;
    height: auto;
  }
  
  .certi-box > .certi-img{
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
  }
  .certi-box h5{
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--common-black);
    text-align: center;
    margin-top: 0px;
    padding: 10px 0px;
  }
  
  hr {
    margin: 7px 0px;
  }
  /* Blog Post */
  /* Blogs */
  .blog-post{
    position: relative;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);;
  }
  .blog-post img{
    margin-bottom: 14px;
  }
  .blog-post .tag{
    padding: 4px 10px;
    background-color: #ff4500;
    color: #fff;
    border-radius: 50px;
    top: 20px;
    left: 20px;
    position: absolute;
  }
  .blog-post a{
    font-weight: 700;
  }
  .blog-post h4{
    margin: 12px 0px;
    font-size: 16px;
  }
  .blog-post small{
    color: #ff4500;
    text-transform: uppercase;
    text-decoration: underline;
  }
  .blog-post .contents{
    padding: 20px;
  }
  /* Footer */
  footer{
    padding-top: 80px;
    padding-bottom: 40px;
    color: #fff;
    text-align: center;
    background: linear-gradient(rgba(79, 160, 54, 0.6), rgba(84, 138, 39, 0.4)), url('../images/bg_banner1.jpg');
  }
  footer .navbar-brand{
    color: #fff;
    margin-bottom: 28px;
    display: inline-block;
  }
  .footer-top{
    margin-bottom: 40px;
  }
  .footer-bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding-top: 20px;
  }
  footer .social-links a {
    margin-left: 5px;
    margin: 5px;
  }
  
  /* Contact Us */
  /*==========================================================================
  Contact Two CSS
  ==========================================================================*/
  
  .conbix-contact-item {
    position: relative;
  }
  .conbix-contact-item span {
    position: absolute;
    right: 16px;
    top: 23px;
    color: var(--primary-color);
    font-weight: 400;
  }
  .conbix-contact-item input,
  .conbix-contact-item textarea {
    font-size: 15px;
  }
  
  
  .contact__two-content {
    max-width: 600px;
    margin: 0 auto;
  }
  .contact__two-box {
    box-shadow: var(--box-shadow-1);
    padding: 40px 30px;
    margin: 0;
    background: var(--bg-white);
    position: relative;
    z-index: 2;
  }
  .contact__two-left {
    margin-right: 50px;
  }
  .contact__two-left-item {
    border-bottom: 1px solid var(--border-color-1);
    margin-bottom: 28px;
    padding-bottom: 25px;
    display: flex;
    gap: 20px;
  }
  .contact__two-left-item-icon img {
    max-width: 45px;
  }
  .contact__two-left-item-info span {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
  }
  .contact__two-left-item-info p {
    text-transform: lowercase;
    line-height: 27px;
    color: var(--text-heading-color);
    font-weight: 600;
    max-width: 240px;
  }
  .contact__two-left-item-info p a {
    transition: 0.4s;
  }
  .contact__two-left-item-info p a:hover {
    color: var(--primary-color-1);
  }
  .contact__two-left-item-socialIcon ul {
    padding: 0;
    margin: 0;
    margin-top: 20px;
  }
  .contact__two-left-item-socialIcon ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
  }
  .contact__two-left-item-socialIcon ul li:last-child {
    margin: 0;
  }
  .contact__two-left-item-socialIcon ul li a i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--color-6);
    font-size: 15px;
    border-radius: 50%;
    transition: 0.4s;
  }
  .contact__two-left-item-socialIcon ul li a i:hover {
    background: var(--primary-color-1);
    color: var(--text-white);
  }
  .contact__two-right p {
    max-width: 500px;
    margin-bottom: 30px;
  }
  .contact__two-right-form-item textarea {
    height: 177px;
  }
  .contact__two-map {
    margin-top: -150px;
    margin-bottom: -130px;
    z-index: 1;
    position: relative;
  }
  .contact__two-map iframe {
    width: 100%;
    height: 700px;
    display: block;
    filter: grayscale(1);
  }
  
  .contact__two-left-item-socialIcon ul {
    padding: 0;
    margin: 0;
    margin-top: 20px;
  }
  .contact__two-left-item-socialIcon ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
  }
  .contact__two-left-item-socialIcon ul li:last-child {
    margin: 0;
  }
  .contact__two-left-item-socialIcon ul li a i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(215, 216, 214, 0.6);
    font-size: 15px;
    border-radius: 50%;
    transition: 0.4s;
  }
  .contact__two-left-item-socialIcon ul li a i:hover {
    background: var(--primary-color);
    color: var(--body-primary);
  }
  
  input[type="text"],input[type="email"],textarea{
    color: var(--common-black);
    border-radius: 6px;
    width: 100%;
    height: 60px;
    border: 1px solid var(--border-color-2);
    padding: 0 15px;
    background: var(--body-primary);
  }
  
  input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus {
    color: var(--primary-color);
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color-1);
  }

  .product-img {
    padding: 10px;
    border-radius: 3px;
  }

  .product-detail h1{
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    color: #920606;
  }
  .product-detail h1::after{
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #920606;
    left: 18px;
    top: 50px;
  }

  .bulk-btn {
    background: #d11f08;
    padding: 15px 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    border: 0;
    transition: 0.3s all ease-in-out;
  }
  .bulk-btn:hover {
    background: #ac1905;
    color: #fff;
  }
  
  @media only screen and (min-width: 250px) and (max-width: 991px) {
    .bulk-btn {
      background: #d11f08;
      padding: 10px 15px;
      color: #fff;
      font-size: 14px;
      font-weight: 400;
      border-radius: 5px;
      border: 0;
      transition: 0.3s all ease-in-out;
    }
    .bulk-btn:hover {
      background: #ac1905;
      color: #fff;
    }
  }

  .prd-slide-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 200px;
    padding: 0 15px;
  }

  .blog-img img {
    border-radius: 20px;
    padding: 15px 10px 10px 10px;
    border: none;
  }

  /* whatsapp */

.whatsapp {
  content: '';
  width: 70px;
  height: 70px;
  line-height: 50px;
  position: fixed;
  bottom: 25px;
  left: 1%;
  font-size: 17px;
  z-index: 2;
  color: #fff;
  text-align: center;
  cursor: pointer
}
.whatsapp:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .25) 0, rgba(0, 0, 0, 0) 80%)
}
.whatsapp img {
  width: 50px
}
.vibrate-2 {
  -webkit-animation: vibrate-2 1.5s ease-in-out 0s infinite alternate;
  animation: vibrate-2 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s
}
@-webkit-keyframes vibrate-2 {
  0% {
    bottom: 25px
  }
  50% {
    bottom: 40px
  }
  100% {
    bottom: 25px
  }
}
@keyframes vibrate-2 {
  0% {
    bottom: 25px
  }
  50% {
    bottom: 40px
  }
  100% {
    bottom: 25px
  }
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  height: 60px;
  width: 60px;
  padding: 15px !important;
  background-color: rgba(0, 0, 0, 0.3);
  background-size: 100%, 100%;
  border-radius: 50%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
  background-size: 15px;
 }
 .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
  background-size: 15px;
}