/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*************** ADD CUSTOM CSS HERE.   ***************/
body {
	max-width: 100%;
	overflow: hidden;
    font-family: "Roboto", sans-serif;
}
@media only screen and (min-width: 1024px) {
    .widget ul.menu > li {
        position: relative;
    }
    .widget ul > li.has-child:hover >.sub-menu{
        display:block !important;
    }
    .widget ul.menu ul.sub-menu {
        display: none !important;
        position: absolute;
        width: 100%; 
        left:99%;
        top: 0;
        z-index: 999;
        border: 1px solid #e1e1e1 !important;
        background: #fff;
        margin: 0;
        padding: 0;
    }
    .widget .toggle{
        transform: rotate(-90deg);
        margin-right: 10px;
    }
    .widget ul.menu>li li {
        padding: 2px 0;
        border-bottom: 1px solid #e1e1e1;
    }
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
    .blog-archive .post-sidebar.col {
        padding: 0 15px !important;
    }

}
/* */
body.nav-dropdown-has-border .nav-dropdown {
    border: none;
    padding: 0;
}
body.nav-dropdown-has-border .nav-dropdown a {
    padding: 10px !important;
    margin: 0 !important;
    border-radius: 0;
}
.post_comments  {
    display: none;
}

/* Sidebar */

/* */
.entry-image img {
    width: auto;
}
.entry-content.single-page {
    text-align: justify;
}
h1.entry-title {
    font-size: 50px;
    font-weight: 100;
}
.nav>li.header-divider {
    height: 20px;
}
/* */
.product-small.box ins *,
.product-small.box .price > .amount * {
    color: red;
    font-size: 16px;
}
.product-small.box del * {
    color: #333;
}
.product-small.box .product-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 20px;
    font-weight: 500 !important;
}
.product-small.box .box-excerpt {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-small.box .box-image img {
    height: 450px;
    object-fit: cover;
}
/* */
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}
.pulse {
    transition: all 150ms linear 0s;
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

blockquote {

    font-size: 110%;
    color:#666;

    margin: 0 auto;
    border-left:0px;
    margin-left: 20px;
    padding-bottom: 50px;
}
blockquote h1 {
    font-size: 3rem;
}
blockquote p {
    font-style: italic;
    margin-bottom: 0;
}
blockquote p::before,
blockquote p::after {
    content: "“";
    font-family: Georgia;
    font-size: 6rem;
    margin: -3rem 0 0 -4rem;
    position: absolute;
    opacity: 0.5;
    color:var(--primary-color);
}
blockquote p::after {
    content: "”";
    margin: -2rem -3rem 0 0;
}
blockquote cite {
    font-size: 1.5rem;
}


.category .page-wrapper {
    padding-top: 0;
}
:root{
  --iws-red:#e8342a;
  --iws-text:#1a1a1a;
  --iws-bg-card:#f2f2f2;
  --iws-gap:14px;
}

.iws-wrap{
  margin:0 auto;
}

.iws-grid-row{
  display:flex;
  gap:var(--iws-gap);
  margin-bottom:var(--iws-gap);
  flex-wrap:wrap;
}

.iws-card{
  position:relative;
  background:var(--iws-bg-card);
  display:flex;
  flex-direction:column;
  flex:1 1 0;
  min-width:280px;
}
.iws-card.wide{
  flex:2 1 0;
}

.iws-thumb{
  position:relative;
  width:100%;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#ddd;
}
.iws-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
  transform:scale(1);
}
.iws-card:hover .iws-thumb img{
  transform:scale(1.08);
}

.iws-badge{
  position:absolute;
  top:0;
  left:0;
  width:44px;
  height:44px;
  background:var(--iws-red);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.iws-badge svg{
  width:20px;
  height:20px;
  fill:#fff;
}

.iws-meta{
  padding: 15px;
}
.iws-date{
  font-size:14px;
  color: #5B5B5B;
  margin-bottom:6px;
}
.iws-title a{
  color:var(--iws-red);
  text-decoration:none;
  font-size:16px;
  line-height:1.35;
  font-weight:400;
}
.iws-title a:hover{
  text-decoration:underline;
}

.iws-card.wide .iws-thumb{
  aspect-ratio:16/5;
}

.iws-card.wide .iws-foot{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.iws-excerpt{
  padding:15px;
  font-size:16px;
  line-height:1.6;
  color:var(--iws-text);
}

@media (max-width:700px){
  .iws-card.wide .iws-foot{
    grid-template-columns:1fr;
  }
}

/* ---------- Header (title / tabs / button) ---------- */
.iws-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top: 1px solid #111;
  padding-top:15px;
  margin-bottom:15px;
  flex-wrap:wrap;
  gap:16px;
}
.iws-head-left{
  display:flex;
  align-items:center;
  gap:36px;
  flex-wrap:wrap;
}
.iws-head-title{
  font-weight: 400;
  letter-spacing:.5px;
  font-size:16px;
  white-space:nowrap;
}
.iws-tabs{
  display:flex;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
}
.iws-tabs li {
    margin-bottom: 0;
}
.iws-tabs li a{
  text-decoration:none;
  color:var(--iws-text);
  font-size:16px;
}
.iws-tabs li.active a{
  text-decoration:underline;
}
.iws-btn-upcoming{
  background:var(--iws-red);
  color:#fff;
  text-decoration:none;
  font-size:16px;
  font-weight: 400;
  letter-spacing:.5px;
  padding: 6px 26px;
  display:inline-block;
}
.iws-btn-upcoming:hover {
    color: #fff;
}

/* ---------- Pagination ---------- */
.iws-pagination{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:20px;
  flex-wrap:wrap;
  gap:16px;
}
.iws-page-numbers{ font-size:14px; }
.iws-page-numbers .current{ font-weight:700; }
.iws-page-numbers a{
  color:var(--iws-text);
  text-decoration:none;
  margin-left:6px;
}
.iws-pager-btns{ display:flex; gap:10px; }
.iws-pager-btns a{
  border:1px solid var(--iws-red);
  color:var(--iws-red);
  text-decoration:none;
  font-size:12px;
  font-weight:700;
  letter-spacing:.5px;
  padding:10px 22px;
}

.button.is-outline, input[type=button].is-outline, input[type=reset].is-outline, input[type=submit].is-outline {
    border: 1px solid;
    font-weight: 400;
}
h1.product-title.product_title {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 100;
}

.woocommerce-tabs.tabbed-content .tabs {
    display: none;
}
.button i, button i {
    top: 0;
}
@media(min-width: 850px) {
    .header-top {
        position: relative;
        top: 15px;
    }
}
@media (max-width: 900px){
  .iws-card, .iws-card.wide{ flex:1 1 100%; }
  .iws-head-left{ gap:18px; }
  .iws-tabs{ gap:16px; }
}
@media (max-width: 480px) {
    .iws-card.wide .iws-thumb {
        aspect-ratio: 16 / 10;
    }
    .iws-card.wide .iws-foot {
        gap: 0;
    }
    .iws-excerpt {
        padding-top: 0;
    }
    h1.product-title.product_title {
        font-size: 30px;
    }
    .lienhef-row .ctform-row {
        display: flex;
        justify-content: space-between;
    }
    .ctform-col2, 
    .ctform-col1 {
        width: 48%;
        margin: 0;
    }
    .lienhef-row input[type=submit]{
        position: relative !important;
        margin-top: 20px !important;
    }
}
.post-title {
	color:#E22119; 
	font-weight:500; 
	font-size:16px; 
	margin-bottom:10px !important;
	    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
	line-height: 22px !important;
	height: 44px;
}
.show-arr .flickity-prev-next-button {
	opacity: 1;
	bottom: 25%;
}
.xt-but:hover span {
	color: red;
}
.cus-blog .blog-post-inner {
	display: flex;
    align-content: center;
    flex-direction: column-reverse;
}
.cus-blog .blog-post-inner .post-meta {
	margin-bottom: 10px;
	font-size: 16px;
}
.cus-blog .blog-post-inner .post-title {
	margin-bottom: 0 !important;
}
body .button.is-outline {
    line-height: 2.9em;
}