/* @media only screen and (min-width: 1500px) and (max-width: 8000px) {
    .header-container {
       	display: flex !important;
		flex-direction: row;
		align-items: center;
		gap: 20px;
		padding-top: 15px !important;
		padding-bottom: 15px !important;
    }
	
	.header-container .nav>ul>li>a {
		padding: 15px 0;
	}
} */
.category-content-and-description {
	background-color: #f7f7f7;
	padding-top: 60px;
	padding-bottom: 60px;
}
.term-description {
	text-align: center;
}

.general-section a:hover, .general-section a:hover h5 {
    color: #FF9B33 !important;
}

/*.product-category-extra-content*/

.product-category-extra-content{
	background-color: #f7f7f7;
    padding-top: 60px;
	padding-bottom: 60px;
    position: relative;
    display: block;
    float: left;
    width: 100%;
}

.product-category-extra-content .faq_subtitle  {
    color:#f39c12;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
}


.product-category-extra-content .faq_title {
    color:#333;
    font-weight:700;
    line-height:1.1;
    margin:0 0 50px;
	position: relative;
}

.product-category-extra-content .faq_title:after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    background:#f39c12;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translatex(-50%);
}

.category-content-item{
    border-bottom:1px solid #e5e5e5;
    border-radius:0;
    overflow:hidden;
    margin-bottom:5px;
}

.category-content-title{
    margin:0;
    padding:20px 60px 20px 0;
    cursor:pointer;
    position:relative;
    font-size:20px;
    line-height:1.4;
    transition:all .3s ease;
}

.category-content-title:hover{
    color: #FF9B33;
}

.category-content-title:after{
    content:"+";
	color: #FF9B33;
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    font-weight:300;
    transition:all .3s ease;
}

.category-content-item.active .category-content-title:after{
    transform:translateY(-50%) rotate(45deg);
}

.category-content-description{
    display:none;
    padding:20px 0;
}

.category-content-description > *:first-child{
    margin-top:0;
}

.category-content-description > *:last-child{
    margin-bottom:0;
}


/*.choose-right-container*/

.choose-right-container {
	background-color: #f7f7f7;
	padding-top: 60px;
	padding-bottom: 60px;
}

.choose-right-container__header{
    margin-bottom:30px;
}

.choose-right-container__items {
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:0;
	width: 100%;
}
@media (min-width: 640px) and (max-width: 1024px){
    .choose-right-container__items.multi-cols{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (min-width: 1024.9px){
    .choose-right-container__items.multi-cols{
        grid-template-columns:repeat(2,1fr);
    }
}

/* @media (min-width: 1200px){
    .choose-right-container__items{
        grid-template-columns:repeat(4,1fr);
    }
} */

.choose-right-container__items.single-col  .choose-right-container__item .choose-right-container__subtitle {
	display: none;
}

.choose-right-container__item{
    padding:20px;
    border:1px solid #e5e5e5;
	background-color: #ffffff;
    border-radius:0;
}
.choose-right-container__subtitle {
	color: #FF9B33;
}

.choose-right-container__title{
	font-size: 24px;
    margin-bottom:10px;
}

/* good-to-know-section */

.good-to-know-section {
	background-color: #f7f7f7;
	padding-top: 60px;
	padding-bottom: 60px;
}

.good-to-know-section .container {
	padding:30px;
    border-radius:4px;
    text-align:center;
    background:#333333;
	color: #ffffff;
}

.good-to-know-section .good-to-know-subtitle {
	color:#f39c12;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
}
.good-to-know-section .good-to-know-title {
	color: #ffffff;
}
.good-to-know-section .good-to-know-content ul li {
	margin-bottom: 15px;
}

@media (min-width: 1200px){
	.good-to-know-section .container {
    	padding:60px;
	}
}


/* How to order */

.how-to-order-section{
	background-color: #f7f7f7;
    padding:80px 0;
}

.how-to-order-subtitle{
    color:#f39c12;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.how-to-order-title{
    color:#333;
    font-weight:700;
    line-height:1.1;
    margin:0;
}

.how-to-order-title:after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    background:#f39c12;
    margin-top:40px;
}

.how-to-order-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:60px;
}

.how-to-order-step{
    background:#fff;
    border-top:3px solid #f39c12;
    padding:36px 28px;
    min-height:220px;
}

.step-number{
    color:#f39c12;
    font-size:34px;
    font-weight:700;
    line-height:1;
    margin-bottom:24px;
}

.step-number::before{
    content:"";
}

.step-content{
    color:#444;
    font-size:18px;
    line-height:1.7;
}

.step-content p:last-child{
    margin-bottom:0;
}

@media(max-width:1199px){

    .how-to-order-steps{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .how-to-order-title{
        font-size:38px;
    }

    .how-to-order-steps{
        grid-template-columns:1fr;
        gap:20px;
    }

    .how-to-order-step{
        min-height:auto;
    }

}

/* product-category-cta  */

.product-category-cta {
	background-color: #f7f7f7;
	display: flex;
	margin: 0 0 30px;
	width: 100%;
}
.product-category-cta .container {

}
.product-category-cta .container > .row {
    padding:30px;
    border-radius:4px;
    text-align:center;
    background:#FF9B33;
	color: #333333;
}
.product-category-cta__content {
	text-align: center;
}
@media (min-width: 768px){
	.product-category-cta__content {
		text-align: left;

	}
}

@media (min-width: 1200px){
	.product-category-cta .container > .row {
    	padding:60px;
	}
}

.product-category-cta__subtitle{
	color: #333333;
	font-size:14px;
	font-weight:700;
	letter-spacing:4px;
	text-transform:uppercase;
	margin-bottom:20px;
}

.product-category-cta__title{
	color: #333333;
	font-weight:700;
}

.product-category-cta__description{
	color: #333333;
}

.product-category-cta__buttons{
    display:flex;
    gap:15px;
    align-items: center;
    justify-content:center;
    flex-wrap:wrap;
}

@media (min-width: 768px){
	.product-category-cta__buttons{
		justify-content: flex-end;
	}
}

.product-category-cta__buttons .cta-btn-primary {
    display: inline-flex !important;
    position: relative;
    height: 40px;
    background: rgba(255, 255, 255, .8);
    align-items: center;
    justify-content: center;
    margin: 5px 0;
	padding: 15px 25px;
    font-size: 14px;
	font-weight: 700;
    line-height: 24px;
    color: #fff;
    letter-spacing: 0px;
	background-color: #333333;
    border-radius: 4px;
    text-transform: uppercase;
    max-width: 100%;
}

.product-category-cta__buttons .cta-btn-primary:hover {
	background-color: #ffffff;
	color: #333333;
}

.product-category-cta__buttons .cta-btn-secondary {
	 margin: 5px 0;
	padding: 15px 25px;
    font-size: 14px;
	font-weight: 700;
    line-height: 36px;
}

.product-category-cta__buttons .cta-btn-outline:hover {
	color: #ffffff;
}

@media (min-width: 1200px){
	.product-category-cta__buttons .cta-btn-primary,
	.product-category-cta__buttons .cta-btn-secondary {
		padding: 15px 25px;
    	line-height: 30px;
		height: 48px;
	}
}