/*---------------------
   01. Reset
----------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@300;400;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;600&display=swap');
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 15px;
  line-height: 1.5;
  color: #48455a;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
}


/*---------------------
   02. HEADER
----------------------*/
.main_header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99 !important;
}
html[data-direction="down"] .main_header, 
html[data-direction="down"] .shop_header_inner {
    transition-delay: 3s;
    transform: translate3d(0, -140%, 0);
    transition: 0.7s all ease;
    z-index: 99999;
    box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.12);
    transition: 1s all ease;
}
.main_header.ShowIt, 
.shop_header_inner.ShowIt {
    transform: translate3d(0, 0, 0);
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99999;
    box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.12);
    transition: 1s all ease;
}
header .row {
    display: flex;
    align-items: center;
}
.top-bar {
    overflow: hidden;
    padding: 3px 0;
}
.top-bar a {
    color: #fff;
    font-size: 12px;
}
.main-logo {
    width: 100px;
    margin-top: 5px;
}
.main-logo h4 {
  color: #fff;
  font-size: 14px;
}
.header .header_info {
    display: flex;
    justify-content: space-between;
    z-index: 99;
}
.header .header_info ul li {
    display: inline-block;
    margin-right: 37px;
}
.header .header_info ul li a {
    font-weight: 300;
    line-height: 28px;
    color: white;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
    text-transform: uppercase;
}
.header .header_menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header .header_menu p {
    font-weight: 300;
    font-size: 14px;
    color: white;
    text-transform: uppercase;;
}
.header .header_menu:hover p {
    color: rgba(255,255,255,0.4);
}
.menu {
    background: #303030;
    padding: 0 8px;
    border-radius: 3px;
}
.hamburger {
    cursor: pointer;
    height: 40px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hamburger__line_wrapper {
    width: 25px;
    background: 0 0;
}
.hamburger__line_wrapper .line {
    position: relative;
    margin-bottom: 6.5px;
}
.hamburger__line_wrapper .line:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 25px;
    background: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: width .2s cubic-bezier(.34,.54,.51,.73);
}
.hamburger__line_wrapper .line:last-child {
    margin-top: 14px;
}
.hamburger:hover .hamburger__line_wrapper .line:nth-child(2):after {
    width: 16px;
}
.hamburger:hover .hamburger__line_wrapper .line:nth-child(3):after {
    width: 10px;
}
.main-menu {
    position: fixed;
    right: 0;
    top: 0;
    background: rgba(0,0,0,.84);
    height: 100vh;
    width: 300px;
    z-index: 999;
    padding: 80px 0;
    transform: translateX(100%);
    transition: all .5s ease;
}
.main-menu .close-menu {
    position: absolute;
    right: 25px;
    top: 20px;
    cursor: pointer;
}
.main-menu .close-menu img {
    height: 20px;
}
.main-menu li a {
    padding: 10px 60px;
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
}
.main-menu li a:hover, .main-menu li a.active {
    background: #000;
    color: #f58220;
}

.explore_project {
  height: auto !important;
  position: absolute;
  bottom: 30px;
  top: unset;
  left: 50%;
}
.explore_project .arrow {
    margin-bottom: 15px;
    transition: 0.4s ease;
}
.explore_project .explore_project_button {
    width: 134px;
    height: 134px;
    display: inline-flex;
    justify-content: center;
    border-radius: 50%;
    left: 50%;
    position: absolute;
    bottom: 0;
    transform: translate(-50%, 0);
    overflow: hidden;
    transition: 1s all cubic-bezier(0.37, 0, 0.63, 1);
    z-index: 0;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
}
.explore_project_button.main_button {
    z-index: 9;
}
.explore_project .explore_project_button:hover .arrow {
  transform: scale(2);
}
.explore_project .explore_project_button.ongoing {
    opacity: 0;
    transition: 1s all cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.explore_project .explore_project_button.completed {
    opacity: 0;
    transition: 1s all cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.explore_project .explore_project_button.upcomming {
    opacity: 0;
    transition: 1s all cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.explore_project .explore_project_button.open.main_button {
    transform: translate(-50%, 300%);
    opacity: 0;
}
.explore_project .explore_project_button.open.ongoing {
    transform: translate(-195%, 0);
    z-index: 9;
    opacity: 1;
}
.explore_project .explore_project_button.open.completed {
    z-index: 9;
    opacity: 1;
}
.explore_project .explore_project_button.open.upcomming {
    transform: translate(95%, 0);
    z-index: 9;
    opacity: 1;
}
.explore_project .explore_project_button.open.ongoing {
    transform: translate(-195%, 0);
    z-index: 9;
    opacity: 1;
}
.explore_project .explore_project_button.open.completed {
    z-index: 9;
    opacity: 1;
}
.explore_project .explore_project_button.open.upcomming {
    transform: translate(95%, 0);
    z-index: 9;
    opacity: 1;
}
.explore_project .explore_project_button a {
    display: block;
    text-align: center;
    padding-top: 25px;
    font-family: "Montserrat",sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    line-height: 17px;
}
.footer_social_sticky {
    position: fixed;
    right: 0;
    z-index: 15;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}
.footer_social_sticky li a {
    background: #003C8C;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1s all ease;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.footer_social_sticky li a i {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    transition: 1s all ease;
}
.footer_social_sticky li a:hover {
    background: black;
}
.call_us {
    position: fixed;
    left: 0;
    z-index: 15;
    top: 50%;
    z-index: 99;    
    transition: 1s all ease;
    transform: translateX(-105px);
}
.showit {
    transform: none;
}
.call_num {
    background: #fff;
    padding: 8px;
    display: flex;
    align-items: center;
}
.call_num a {
    color: #000;
}
.call_txt {
    background: #d33;
    color: #fff;
    padding: 8px 7px;
    border-radius: 0 3px 3px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}
/*-----------------------
  03. Home slider
-----------------------*/
.home_slider {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
/*-----------------------
  04. Our Project
-----------------------*/
.our_project {
  background: #000;
}
.pt-150 {
  padding-top: 150px;
}
.pb-150 {
  padding-bottom: 150px;
}
.section_heading {
    text-align: center;
    margin-bottom: 80px !important;
    font-family: "Montserrat",sans-serif;
    margin: 0;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    color: #000;
}
.section_heading:after {
    background: #E5001F;
    height: 3px;
    position: absolute;
    width: 50px;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
}
.our_project .section_heading {
  color: #fff;
}
.our_ascen .section_heading:after {  
    background: #003C8C;
}
.feature_single_iteam_wrapp {
    padding: 5px;
}
.feature_single_iteam_wrapp .image {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}
.feature_single_iteam_wrapp .image img {
    transition: all 1s ease;
}
.feature_single_iteam_wrapp:hover .image img {
    transform: scale(1.05);
}
.feature_single_iteam_wrapp .hover_content {
    position: absolute;
    text-align: center;
    top: 50%;
    padding: 0 25px;
    z-index: 1;
    transform: translateY(0%);
    transition: all 1s ease;
    opacity: 0;
    width: 100%;
}
.feature_single_iteam_wrapp .hover_content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    color: #FFFFFF;
    text-transform: none;
}
.feature_single_iteam_wrapp .dcBtn {
    font-family: "Montserrat",sans-serif;
    font-size: 14px;
    padding: 7px 15px;
    background: transparent;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    position: relative;
    transition-duration: .7s;
    transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
    text-transform: uppercase;
    font-weight: 500;
    overflow: hidden;
    display: inline-block;
    margin: 30px 0 0;
    color: white;
}
.feature_single_iteam_wrapp .image:after {
    content: "";
    background: rgba(0,0,0,0);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 1s ease;
}
.feature_single_iteam_wrapp:hover .image:after {
    background: rgba(0,0,0,0.7);
}

.feature_single_iteam_wrapp .dcBtn:hover {
    transition-delay: .5s;
    color: black !important;
}
.feature_single_iteam_wrapp .dcBtn:before {
    content: '';
    position: absolute;
    transition: inherit;
    z-index: -1;
    right: 0;
    height: 0;
    width: 100%;
    top: 0;
    border: 1px solid white;
    border-top: none !important;
    border-bottom: none !important;
}
.feature_single_iteam_wrapp .dcBtn:after {
    content: '';
    position: absolute;
    transition: inherit;
    z-index: -1;
    left: 0;
    height: 0;
    width: 100%;
    bottom: 0;
    height: 0;
}
.dcBtn:hover::before {
    transition-delay: 0s;
    height: 100%;
}
.dcBtn:hover:after {
    background: white;
    transition-delay: .35s;
    height: 100%;
}
.feature_single_iteam_wrapp:hover .hover_content {
    transform: translateY(-50%);
    opacity: 1;
}
.feature_single_iteam_wrapp .content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0 0 5px;
    line-height: 17px;
    text-transform: uppercase;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
.feature_single_iteam_wrapp .content p {
    font-size: 12px;
    font-weight: 300;
    color: #FFFFFF;
    margin: 0 0 5px;
    line-height: 17px;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
}

.our_ascen {
    background: #F2F2F2;
}
.tab-left {
    background: #1B1B1B;
    height: calc(100% - 60px);
    z-index: 9;
    padding: 70px;
    width: 100%;
}
.tab-left {
    margin-right: -60px;
    width: 100%;
}
.tab-right {
    transform: translateY(-30px);
}
.tab-left .nav {
    display: flex;
    flex-wrap: inherit;
}
.tab-left .nav li {
    display: inline-block;
    margin: 0;
    width: 100%;
    transition-duration: .7s;
    transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
    position: relative;
}
.tab-left .nav li:after {
    content: "";
    height: 1px;
    background: #C1C1C0;
    bottom: 0;
    left: 0;
    width: 100%;
    position: absolute;
    transition-duration: .7s;
    transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
.tab-left .nav li.active:after {
    height: 3px;
    background: white;
    bottom: -1px;
}
.tab-left .nav li.active:after {
    height: 3px;
    background: white;
    bottom: -1px;
}
.tab-left .nav li a {
    font-size: 12px;
    text-align: center;
    line-height: 25px;
    text-transform: uppercase;
    border-radius: 0;
    color: #C1C1C0;
    background: transparent;
    transition-duration: .7s;
    transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
    padding: 15px;
}
.tab-left .nav li a.active {
    border-bottom: 2px solid #fff;
    padding: 1px;
}
.tab-left .nav li.active a {
    color: white;
}
.tab-content .tab-pane p {
  margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: #FFFFFF;
}
.our_testimonial {
  background: #d5d5d5;
}
.testimonials .testimonial_item {
    display: flex !important;
    padding: 0 !important;
    margin: 0 10px;
}

.testimonials .testimonial_item .testimonial_single_left {
    width: 100%;
}
.testimonials .testimonial_item .testimonial_single_right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -40px;
}
.testimonials .testimonial_item .avatar {
    box-shadow: 0 0 4px #ddd;
}
.testimonials .testimonial_item .testimonial_single_right .black_content {
    background: black;
    height: calc(100% - 40px);
    padding: 30px;
}
.testimonials .testimonial_item .testimonial_single_right .black_content p {
    font-size: 14px;
    line-height: 20px;
    color: white;
}
.testimonials .testimonial_item .testimonial_single_right .black_content p.client {
    margin-top: 30px;
}
.maps {
  overflow: hidden;
}
.Footer-area {
    background: #001a33;
    padding-top: 100px;
    padding-bottom: 20px;
}
.widget-title-footer {
    font-size: 17px;
    color: #eee;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
.contact_sidebar_wrap p {
  color: #bbb;
  line-height: 22px;
  font-size: 14px;
  margin-bottom: 4px;
  padding-bottom: 4px;
}
.contact_sidebar_wrap i {
    margin-right: 13px;
    width: 13px;
}

.contact_sidebar_wrap a {
    color: #bbb;
    font-weight: 600;
}

.Footer__social a {
    width: 41px;
    height: 41px;
    padding: 11px 0;
    background-color: #002547;
    margin: 0 10px 10px 0;
    text-align: center;
    display: inline-block;
    border-radius: 5px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.Footer__social a:hover {
    background-color: #0073e1;
    color: #fff;
}

.Footer__social ul {
    padding-top: 17px;
    padding-bottom: 17px;
    border-top: 1px solid rgba(255,255,255,0.21);
    border-bottom: 1px solid rgba(255,255,255,0.21);
}
.category_list_widget li a {
    color: #bbb;
    line-height: 35px;
}
.category_list_widget li a:hover,
.listing_name a:hover {
    color: #0073e1;
}
.category_list_widget .category_no {
    margin-left: 5px;
    color: #bbb;
}
.widget_latest_internal {
    margin-bottom: 13px;
    width: 100%;
    height: auto;
    min-height: 70px;
    float: left;
}
.widget_latest_listing_image img {
  width: 100%;
  transition: all .7s ease;
}
.widget_latest_listing_image img:hover {
    transform: scale(1.1);
}
.widget_latest_listing_image {
    position: relative;
    float: left;
    max-width: 40%;
    overflow: hidden;
    border-radius: 2px;
}
.listing_name {
    display: inline;
    margin-left: 0;
    float: left;
    line-height: 20px;
    position: relative;
    width: 60%;
    padding-left: 13px;
}
.listing_name a {
    color: #bbb;
    line-height: 22px;
}

.Footer__social {
    margin-top: 31px;
}

.Footer__social ul li {
    display: inline-block;
}
.Footer__top-left p a {
    color: #ffffff;
    text-transform: lowercase;
}
.Footer__social ul li a {
    margin-right: 15px;
    color: #fff;
}
.Footer__copyright {
    margin-top: 100px;
}
.Footer__copyright p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}
.Footer__copyright p a {
    color: #ffffff;
}

@media (max-width: 480px) {
    .header .header_logo,
    .header .header_menu {
        width: 50%;
    }
    .header .header_info {
        display: none;
    }
    
}
.fullscreen {
    width: 100%;
}
.video_bg:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
}
.video_bg:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #e5e5f7;
    background-image:  linear-gradient(#000 2.6px, transparent 2.6px), linear-gradient(90deg, #000 2.6px, transparent 2.6px), linear-gradient(#000 1.3px, transparent 1.3px), linear-gradient(90deg, #000 1.3px, #e5e5f7 1.3px);
    background-size: 65px 65px, 65px 65px, 13px 13px, 13px 13px;
    background-position: -2.6px -2.6px, -2.6px -2.6px, -1.3px -1.3px, -1.3px -1.3px;
    opacity: 0.1;
    z-index: 9;
}
.video_bg2:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #e5e5f7;
    background-image:  linear-gradient(#000 2.6px, transparent 2.6px), linear-gradient(90deg, #000 2.6px, transparent 2.6px), linear-gradient(#000 1.3px, transparent 1.3px), linear-gradient(90deg, #000 1.3px, #e5e5f7 1.3px);
    background-size: 65px 65px, 65px 65px, 13px 13px, 13px 13px;
    background-position: -2.6px -2.6px, -2.6px -2.6px, -1.3px -1.3px, -1.3px -1.3px;
    opacity: 0.1;
    z-index: 9;
}

/*woocommerce*/
.shop_header {
    position: relative;
    z-index: 9;
    height: 130px;
}
.shop_header_inner {
    background: #fff;
    position: fixed;
    width: 1349px;
    margin-top: 0px;
    margin-bottom: 0px;
    top: 0px;
    left: 0px;
}
.entry-header h1 {
    padding: 50px 0;
    font-size: 42px;
    text-transform: uppercase;
    font-family: 'Bellefair', serif;
    font-weight: 400;
}

/*filter sidebar*/
.shop_header {
    position: relative;
    z-index: 9;
    height: 130px;
}
.shop_header_inner {
    background: #fff;
    position: fixed;
    width: 1349px;
    margin-top: 0px;
    margin-bottom: 0px;
    top: 0px;
    left: 0px;
}
.page_head {
    padding: 20px 0;
}
.page_head h1 {
    font-size: 42px;
    text-transform: uppercase;
    font-family: 'Bellefair', serif;
    font-weight: 400;
}
.filter_panel:first-child {
    padding-top: 0;
    border: navajowhite;
}
.filter_panel {
    border-top: 1px solid #ececec;
    padding-top: 16px;
}
.filter_body {
    margin-top: 10px;
    padding-bottom: 20px;
}
.expandable__panel {
    max-height: 186px;
    overflow: hidden;
    transition: max-height .5s;
    text-transform: capitalize;
}
.expandable_btn {
    color: #1a9cb7;
    cursor: pointer;
    font-family: Roboto-Medium;
    margin-top: 5px;
}
.expandable__expand {
    max-height: 500px;
    overflow-y: auto;
}
.filter_title {
    color: #212121;
    font-size: 14px;
}
.filter_panel .form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: inherit;
}
.filter_price_row .filter_price_input {    
    background-color: #fff;
    border: 1px solid #a8a8a8;
    border-radius: 3px;
    box-shadow: 0 1px 1px 0 #ececec;
    color: #404040;
    float: left;
    height: 30px;
    min-width: auto;
    outline: 0;
    padding: 0 7px;
    text-align: left;
    transition: all .3s linear;
    width: 60px !important;
}
.filter_price_spliter {
    color: grey;
    float: left;
    line-height: 30px;
    text-align: center;
    width: 10px;
}
.filter_price_btn {
    background-color: #108ee9;
    border-color: #108ee9;
    color: #fff;
    border-radius: 3px;
    float: left;
    height: 30px;
    margin-left: 4px;
    outline: 0;
    padding: 0 12px;
}
.ant-btn {
    border: 1px solid #d9d9d9;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 0;
    position: relative;
    text-align: center;
    touch-action: manipulation;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    user-select: none;
    white-space: nowrap;
}
.form-check.checked {
    display: block !important;
}
.container.woocommerce {
    padding-bottom: 40px;
}
.woocommerce .woocommerce-result-count {
    color: #727272;
}
.products {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.products::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    border: 1px solid #edeef5;
    border-radius: 3px;
    pointer-events: none;
    z-index: 1;
}
.products .product {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    min-width: 0;
    z-index: 1;
    border-right: 1px solid #edeef5;
    border-bottom: 1px solid #edeef5;
}

.products.columns-4 .product {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 25% !important;
    flex: 0 0 25% !important;
    max-width: 25% !important;
    margin: 0 !important;
}
.products .product-title {
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.4;
}
.products .product-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #202435;
    text-decoration: none;
}
.products .product-title a:hover {
    color: #233A95;
}
.w_content {
    text-align: left;
}
.woocommerce .star-rating::before {
    color: #FFCD00;
    letter-spacing: 3px;
    font-size: 10px;
}
.woocommerce .star-rating span::before {
    color: #FFCD00;
    letter-spacing: 3px;
    font-size: 10px;
}
.price {
    font-family: 'Dosis', sans-serif;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
}
.price del .amount {
    color: #C2C2D3;
}
.price .amount {
    color: #D51243;
}
.price ins {
    text-decoration: none;
    margin-left: .3125rem;
}
.products .theme-btn {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0 .9375rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s cubic-bezier(.28,.12,.22,1);
    display: flex;
    justify-content: center;
}
.products .product:hover .theme-btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.products .product:hover {
    z-index: 9;
}
.woocommerce span.onsale {
    font-size: 13px;
    background-color: #2BBEF9;
    color: #fff;
    min-height: 25px !important;   
    min-width: 50px;
    line-height: 25px;
    border-radius: 3px;
}
.woocommerce ul.products li.product .onsale {
    top: 25px;
    right: auto;
    left: auto;
}
.products .product_overlay {
    position: absolute;
    top: -1px;
    bottom: 0;
    left: -1px;
    right: -1px;
    background-color:#fff;
    border-radius: 7px;
    opacity: 0;
    -webkit-transition: opacity 0.2s cubic-bezier(.28,.12,.22,1);
    transition: opacity 0.2s cubic-bezier(.28,.12,.22,1);
    box-shadow: 5px 15px 30px rgba(62,68,90,.1);
    pointer-events: none;
    border: 1px solid #C2C2D3 !important;
}
.products .product:hover .product_overlay {
    opacity: 1;
}
.product-item {
    position: relative;
    z-index: 2;
} 
.woocommerce a.button, 
.woocommerce button.button {
    font-weight: normal;
    color: #fff;
    background-color: #233A95;
} 

.woocommerce a.button:hover, 
.woocommerce button.button:hover {
    font-weight: normal;
    color: #fff;
    background-color: #233A95;
}
.products .theme-btn .added {
    display: none !important;
}
.woocommerce a.wc-forward, 
.woocommerce button.wc-forward {
    font-weight: normal;
    color: #fff;
    background-color: #233A95;
} 

.woocommerce a.wc-forward {
    line-height: 1;
    cursor: pointer;
    padding: .618em 1em;
    font-weight: 700;
    border-radius: 3px;
    left: auto;
    font-weight: normal;
    color: #fff;
    background-color: #233A95;
}