/* 
    font-family: 'Montserrat', sans-serif;
    font-family: 'Nunito Sans', sans-serif;
*/

@import url('font-awesome.css');
@import url('flaticon.css');
@import url('animate.css');
@import url('owl.css');
@import url('jquery-ui.css');
@import url('jquery.fancybox.min.css');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');

/*@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@200&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
*//*** 

====================================================================
    Reset
====================================================================

***/

/**/
* {
    margin:0px;
    padding:0px;
    border:none;
    outline:none;
}


/*** 

====================================================================
    Global Settings
====================================================================

 ***/

html {
    scroll-behavior: smooth;
}
body {
    /*font-family: 'Advent Pro', sans-serif;*/
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #262626;
    line-height: 1.7em;
    font-weight: 700;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a{
    text-decoration:none;
    cursor:pointer;
    color:#0060ff;
    /* transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    display: inline-block;*/
}

button,
a:hover,a:focus,a:visited{
    text-decoration:none;
    outline:none !important;
}

h1,h2,h3,h4,h5,h6 {
    position:relative;
    font-weight:normal;
    margin:0px;
    background:none;
    line-height:1.6em;
}

p{
    position:relative;
    line-height:1.8em;  
    font-weight: 400;
}


/* Typography */

h1{
    font-size:72px;
}

h2{
    font-size:36px;
}

h3{
    font-size:30px;
}

h4{
    font-size:24px;
}

h5{
    font-size:20px;
}

h6{
    font-size:18px;
}

ul,li{
    list-style:none;
    padding:0px;
    margin:0px; 
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    display: inline-block;
}

input,
input.form-control:focus, 
input[type=text]:focus, 
[contenteditable].form-control:focus {
  box-shadow: inset 0 0px 0 ;
}
input[type="text"],input[type="password"],input[type="email"],textarea,select{
    width: 100%;
    padding: 7px;
    border: 1px solid #ece6e6;
    /*background: linear-gradient(45deg, white, transparent);*/
    margin:  0;
    display: inline-block;
    outline: none;
}
::placeholder{
    opacity: 0.9;
    font-size: 13px;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.block {
    display: block;
}
.m-b-30{
    margin-bottom: 30px;
}

.pad-80 {
    padding: 80px 0px;
}
.pad-50 {
    padding: 50px 0px;
}
.pad-80-20 {
    padding: 80px 0px 20px;
}
.pad-20 {
    padding: 20px 0px;
}
.pad-80-50 {
    padding: 80px 0px 50px;
}
.pad-100 {
    padding: 100px 0px;
}
.bg-1 {
    background: #f7f7f7;
}
.centered {
    text-align: center;
}
.mb-20 {
    margin-bottom: 20px!important;
}
.mb-40 {
    margin-bottom: 40px!important;
}
.p-75{
    padding-top: 75px;
}
.box-shadow-1 {
    -webkit-box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
    box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
}
.bg-img {
    background-size: cover!important;
    background-repeat: no-repeat!important;
    background-position: center center!important;
    background-color: linear-gradient(184deg, #d1223e, #a2636d)!important;
}
.mb-15 {
    margin-bottom: 15px!important;
}

.overlay {
    position: relative;
    z-index: 0;
}


.bg-overlay {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-size: cover;
}
.bg-overlay::after {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}
.bg-fixed {
    background-attachment: fixed !important;
}

/*Animation*/

@-webkit-keyframes mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}

@keyframes mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@-webkit-keyframes movebounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}


@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes fly {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
   -webkit-transform: translateX(600px);
            transform: translateX(600px);
  }
  50% {
   top: 10px;
  }
}


/*==================Section Title Css===============*/

.section-title {
    position: relative;
    margin-bottom: 35px;
    color: #262261;
    font-family: "Roboto", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: capitalize;
}

.section-title span {
    color: #faaa3a;
}

/*==================Button Css===============*/
.theme-btn{
    cursor: pointer;
    display: inline-block;
    -webkit-transition:all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
    line-height: normal;
}
.btn-style-one {
    display: inline-block;
    font-size: 19px;
    color: #ffffff;
    padding: 8px 10px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: capitalize;
    font-family: 'Montserrat';
    background: -webkit-linear-gradient(to right, #7b0101, #007e01);
    background: linear-gradient(to right, #7b0101, #007e01);
}
.btn-style-one:hover {
    color: #000;
    transition: 500ms ease-out;
}

/*** 

====================================================================
    Top-Bar Css
====================================================================

***/
.header-top{
    padding: 5px 0px;
    background-color: #000;
}
.header-top ul li a{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.8px;
}
.header-top ul li a:hover{
    color: #397119;
}
.header-top ul li a .fa{
    font-size: 20px;
    padding: 0px 10px;
    color: #509e50;
}
.header-top-right{
    text-align: right;
}
.header-top-middle p{
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    position: relative;
}
.header-top-middle p span{
    color: #509b30;
    font-size: 16px;
    font-weight: 700;
}
/*** 

====================================================================
    Header Css
====================================================================

***/
.header {
    width: 100%;
    z-index: 99999;
    top: 0;
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.main-nav .site-navigation {
    padding: 0px;
}

.main-nav .site-navigation .navbar-brand {
    padding: 0;
}

.main-nav .site-navigation .navbar-brand img {
    height: 80px;
    vertical-align: middle;
    object-fit: cover;
    width: 100%;
    line-height: 80px;
    padding: 10px;
}
.main-nav .site-navigation .site-menu .nav-item {
    margin-right: 25px;
    position: relative;
}
.main-nav .site-navigation .site-menu .menu-link {
    color: #000;
    position: relative;
    display: block;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.7px;
}
.main-nav .site-navigation .site-menu .menu-link:hover {
    color: rgb(5 103 57);
}
.main-nav .site-navigation .site-menu .menu-link.active {
    color: #f15380;
}
.main-nav .site-navigation .outer-box .btn-box {
    display: flex;
    align-items: center;
}
.main-nav .site-navigation .outer-box .btn-box .nav-user {
    width: 38px;
    height: 38px;
    background: #10958714;
    text-align: center;
    display: inline-block;
    line-height: 38px;
    border-radius: 50px;
    box-shadow: 0px 0px 3px 0px rgb(98 195 184);
    margin-right: 30px;
    font-size: 22px;
    font-weight: 600;
    padding-left: 3px;
    color: #056839;
}
.main-nav .site-navigation .outer-box .btn-box .theme-btn {
    min-width: 80px;
    text-transform: uppercase;
    font-size: 15px;
}
.main-nav .site-navigation .close-menu-wrap {
    display: none;
}

.main-nav .site-navigation .site-menu .has-children span {
    font-size: 10px;
    margin-left: 4px;
    color: #484d66;
}

/*Mobile Menu*/
.mobile-menu-trigger {
    cursor: pointer;
    margin-left: 30px;
    display: none;
    background: #fff;
    padding: 13px 11px;
}
.mobile-menu-trigger span {
    height: 3px;
    display: block;
    width: 20px;
    margin-bottom: 5px;
    background-color: #000;

}
.mobile-menu-trigger span:last-child {margin-bottom: 0; }
.mobile-menu-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #282462;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow-x: hidden;
    -webkit-transition: .4s;
    transition: .4s;
}
.mobile-menu-container li {
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
    transform: translateX(100px);
    -webkit-transition: 1s;
    transition: 1s;
    border-top: 1px solid rgb(255 255 255 / 8%);
}
.mobile-menu-container li:nth-last-child(1) {border-bottom: 1px solid rgb(255 255 255 / 8%); }
.mobile-menu-container li > a .slicknav_arrow:after {content: "\f067"; position: absolute; font-family: 'FontAwesome'; top: 0; bottom: 0; color: white; z-index: 999; margin: 0 auto; text-align: center; right: 0; left: 0; font-size: 16px; line-height: 50px; }
.mobile-menu-container.menu-open li.slicknav_open > a .slicknav_arrow:after{content: "\f068";}
.mobile-menu-container.menu-open {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu-container.menu-open li {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.mobile-menu-close {
    position: absolute;
    right: 20px;
    top: 50px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}
.mobile-menu-close::before {
    left: 15px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mobile-menu-close::after {
    right: 13px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.mobile-menu-close::before, .mobile-menu-close::after {
    position: absolute;
    height: 30px;
    width: 2px;
    background: #ffffff;
    content: '';
    top: 0;
}
#mobile-menu-wrap {
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    padding: 150px 20px 20px 20px;
}
#mobile-menu-wrap div {background-color: transparent; }
#mobile-menu-wrap .slicknav_item i{display: none;}
/*Sidebar Start*/
.slicknav_nav, .slicknav_nav.slicknav_hidden {
    display: block !important;
}
.slicknav_btn {display: none !important; }
.slicknav_menu {padding-left: 0; }
.slicknav_item.slicknav_row a {border-bottom: 0; }
.slicknav_nav .slicknav_row, .slicknav_nav a {
    padding: 10px 0px;
    margin: 0;
}
.slicknav_nav .slicknav_arrow {
    font-size: 0;
    background: rgb(255 255 255 / 8%);
    height: 100%;
    width: 50px;
    display: inline-block;
    position: absolute;
    top: 0;
}
.slicknav_nav ul {margin: 0 0 0 0px; }
.slicknav_nav .menu-item-has-children ul {margin-bottom: 00px; }
.slicknav_nav .menu-item-has-children ul li {padding-left: 25px; }
.sub-menu .menu-item-has-children a i {position: absolute; right: 20px; top: 20px; }
.slicknav_nav a:hover, .slicknav_nav .slicknav_row:hover {background-color: transparent; }
.slicknav_nav .slicknav_row:hover, .slicknav_nav a:hover {border-radius: 0; }
.slicknav_item.slicknav_row {display: inline-block; width: 100%; position: relative; }
.slicknav_arrow {-webkit-transition: .3s; transition: .3s; right: 0; top: 17px; position: absolute; }
.slicknav_nav a, .slicknav_row a {color: #ffffff; font-size: 15px; font-weight: 400; display: inline-block; }           
/* Mobile Menu CSS End*/


/*-========Sub Menu/Dropdown=========*/
.site-navigation .site-menu .nav-item.has-children{
    position: relative;
}

.site-navigation .site-menu .nav-item.has-children .dropdown {
    position: absolute;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    z-index: 9999;
    box-shadow: 0 0px 6px 3px rgba(0, 0, 0, 0.05);
    text-align: left;
    margin-top: 10px;
    transition: all .5s ease;
    visibility: hidden;
    opacity: 0;
    top: 68px;
    border-top: 2px solid #007e01;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.site-navigation .site-menu .nav-item.has-children .dropdown .dropdown {
    min-width: 300px;
}

.site-navigation .site-menu .has-children .dropdown .dropdown {
    left: 200px;
    top: 3px;
}

.site-navigation .site-menu .nav-item.has-children .dropdown .nav-item {
    display: block;
    position: relative;
    padding: 5px 20px;
    border-bottom: 1px solid #ebefef;
    width: 100%;
}

.nav-item.has-children .dropdown .nav-item  a {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 10px;
    color: rgb(123 1 1 / 79%);
    display: block;
    line-height: normal;
    text-transform: capitalize;
    transition: all .5s ease;
}

.site-navigation .site-menu .nav-item.has-children .dropdown .nav-item:last-child {
    border-bottom: 0;
}

.nav-item.has-children .dropdown .nav-item a:hover {
    color: rgb(5 103 57);
    margin-left: 5px;
}

.site-navigation .site-menu .has-children:hover >.dropdown {
    opacity: 1;
    visibility: visible;
    transition: all .5s ease;
    margin-top: -4px;
}

/*Common Css*/
.p-20{
    padding: 20px 0px;
}
.p-30 {
    padding: 30px 0px 0px 0px;
}
.p-40{
    padding: 40px 0px;
}
.p-50 {
    padding: 50px 0px 20px;
}
.p-70 {
    padding: 70px 0px;
}
.relative {
    position: relative;
}

/*** 

====================================================================
    Home Banner Css
====================================================================

***/

.hero-slider-item {
    width: 100%;
    height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.hero-slider-item .d-table {
    width: 100%;
    height: 100%;
}

.hero-slider-item .d-table-cell {
    vertical-align: middle;
}


.hero-slider-content .welcome-text {
    display: inline-block;
    padding: 10px;
    background: red;
    color: red!important;
    z-index: 1;
}
.animated.fadeInUp.welcome-text {
    color: #fff;
    font-size: 20px;
    border: 2px solid #b5aeae;
    padding: 1px 15px;
    border-radius: 50px;
    line-height: normal;
    font-weight: 600;
    font-family: monospace;
    margin-bottom: 30px;
    display: inline-block;
}
.hero-slide-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #ffffff;
    line-height: normal;
}

.hero-slider-area .owl-carousel {
    z-index: 1;

}
.hero-slider-area .owl-nav div {
    z-index: 9!important;

}

.hero-slider-area .owl-nav div {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50px;
   -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    line-height: 51px;
}
.hero-slider-area .owl-nav .owl-prev {
  top: 47%;
  left: 30px;
}

.hero-slider-area .owl-nav div:hover {
  border-color: #7b0101!important;
  background-color: transparent;
}

.hero-slider-area .owl-nav div span {
  color: #ffffff;
  font-size: 18px;
}

.hero-slider-area .owl-nav .owl-next {
  top: 47%;
  right: 30px;
}


.hero-slider{
    position: relative;
}
.header-section{
    position: fixed;
    z-index: 99999;
    width: 100%;
}
/*** 

====================================================================
    Home Text Box  Css
====================================================================

***/
.box-area {
    margin-top: -60px;
}
.single-box {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    background-position: 
    center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 18px;
    font-family: 'Poppins';
    border-top: 5px solid #98cf99;
    border-radius: 5px;
}
.nth-01 {
    z-index: 2;
}
.single-box:nth-child(odd) {
    background: #7b0101;
}
.single-box.bg-2 {
    background: #007e01!important;
}
.single-box:nth-child(3) {
    background: #7b0101;
}
.single-box h2 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.single-box p {
    color: #e6e1e1;
    margin-bottom: -6px;
    font-size: 15px;
}

/*** 

====================================================================
    Footer Section
====================================================================

***/
.main-footer {
    position: relative;
    padding: 70px 0px 0px;
}

.widget-section {
    position: relative;
    padding-bottom: 40px;
}

.footer-widget .about-widget img {
    width: 35%;
    margin-bottom: 25px;
}

.footer-widget p {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.8em;
    margin-bottom: 25px;
    color: #fff;
}

.footer-widget .title {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 14px;
    margin-bottom: 35px;
    color: #fff;
}

.footer-widget ul li {
    position: relative;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-widget ul li a {
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
}
.footer-widget .contact-info-widget ul li a {
    padding-left: 16px;
    color: #fff;
}

.footer-widget .contact-info-widget ul li .icon {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.footer-widget .social-media-widget a {
    display: inline-block;
    height: 35px;
    width: 35px;
    background: #ffffff;
    margin-right: 10px;
    box-shadow: 0 8px 10px -1px #00000070;
    color: #262626;
    text-align: center;
    transition: background 500ms ease-out;
}

.footer-widget .social-media-widget a:hover {
    background: #df2121;
    color: #fff;
}

.footer-widget .social-media-widget a i {
    line-height: 35px;
    font-size: 17px;
}

.footer-bottom-area {
    padding: 12px 0 12px;
    border-top: 1px solid #ddd;
}
.copyright p{
    color: #fff;
    font-size: 15px;
}
.copyright a{
    color: #ff5842;
}

/*Content Text*/
.content-part span{
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 1px;
}
.content-part h3{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.content-part p{
    font-size: 18px;
    font-weight: 400;
}
.content-part h4 {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
.content-button {
    background: #d92d5e;
    padding: 10px 15px;
    font-size: 16px;
    color: #fff!important;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 400;
}
.content-part .product-rating{
    padding: 0px!important;
    font-size: 15px!important;
}

/*Product Section*/
.card {
  border: none!important;
}

.card-head {
  position: relative;
}
.product-img {
  position: absolute;
  left: 0;
  margin-top: -16px;
  margin-left: 50px;
}

.card-body {
    padding: 10px 0px;
    background: #fff;
}

.product-title {
    display: block;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #000;
}

.product-rating {
  padding: 0 20px;
  font-size: 11px;
  color: #000;
}

.product-rating i.grey {
  color: #acacab;
}

/*Photo Gallery*/

.gallery-section {
    position: relative;
    z-index: 1;
}
.gallery-section img{
    height: 190px;
}

/*Single Product Section*/
.image-details img{
    border: 1.5px solid #ddd;
    padding: 5px;
    border-radius: 20px;
    max-width: 450px;
    object-fit: contain;
}

.breadcumb-content{
    padding: 45px 0px;
}
.breadcumb-content span{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.breadcumb-content h2{
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

/*category css*/
.category-box{
    overflow: hidden;
}
.category-content {
    padding: 15px;
    position: absolute;
    top: 65%;
    width: 100%;
}
.category-content span{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.category-content a{
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
}

.category-single-box{
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.category-single-box span{
    color: #000;
    font-weight: 400;
    font-size: 15px;
}
.category-single-box .fa{
    color: #000;
    font-size: 11px;
    font-weight: 400;
    padding: 0px 10px 0px 0px;
}

.about-us-section p{
    text-align: justify;
}


.navbar-nav li a{
    color: #000;
    display: block;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.7px;
}
.navbar-nav li a:hover {
    color: #3d916a;
}
.navbar-nav img {
    height: 60px;
    vertical-align: middle;
    object-fit: cover;
    width: 100%;
    line-height: 60px;
}
.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid #0000008c;
    border-radius: 0.25rem;
}
.mbl-v-logo img{
    height: 45px;
}

/*Service Css*/
.service-box{
    background: #edededc2;
    padding: 20px;
    border-radius: 10px;
    color: #000;
    min-height: 300px;
}


.iconbox_icon {
    background-color: #da455e;
    border: 1px solid #da455e;
    color: #ffffff;
    float: none;
    position: absolute;
    left: 50%;
    top: -26px;
    margin: 0 0 0 -26px;
    padding: 15px;
    border-radius: 50%;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    font-size: 20px;
    line-height: 20px;
}

.side-whatsapp-buttons {
    display: block;
    position: fixed;
    z-index: 99999;
    right: 25px;
    bottom: 130px;
}

.client-section img{
    object-fit: fill;
}
.product-section img{
    object-fit: contain;
}

.project-block .inner-box .image {
    height: 200px;
    width: 100%;
}

.project-block .inner-box .image .overlay-box {
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    -webkit-transition:-webkit-transform 0.4s ease;
    transition:-webkit-transform 0.4s ease;
    transition:transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
}

.project-block .inner-box:hover .overlay-box{
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.project-block .inner-box .image .overlay-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, #ca233e 100%);
    background-image: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ca233e 100%);
}

.project-block .inner-box .image img {
    height: 100%;
    display: block;
}


.project-block .inner-box .image .overlay-box .content {
    bottom: 75px;
    z-index: 1;
    width: 100%;
}

.project-block .inner-box .image .overlay-box .content h4 {
    line-height: 1.3em;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

.project-block .inner-box .image .overlay-box .content .category {
    margin-top: 5px;
}

.project-menu ul li.mixitup-control-active {
    background: #3b4a4d;
}
.project-menu ul li {
    display: inline-block;
    padding: 8px 25px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(184deg, #d1223e, #a2636d);
    color: #fff;
    border-radius: 50px;
    margin: 34px 4px;
    margin-bottom: 60px;
    cursor: pointer;
}
