/*   Theme default css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* ======font family=========
font-family: "Montserrat", sans-serif;
*/

:root {

    --bgColor: #F3F3F3;
    --thmColor: #E30613;
    --textColor: #211A2C;
    --offTextColor: #5A5A5A;
    --f18: 18px;
    --f20: 20px;
    --f22: 22px;
    --f24: 24px;
    --f28: 28px;
    --f30: 30px;
    --f32: 32px;
    --f36: 36px;
    --f40: 40px;
    --f48: 48px;
}


body {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--textColor);
}

body:after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100vh - 140px);
    background: #000;
    top: 140px;
    left: 0;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out;
}

body.overly {
    overflow: hidden;
}

body.overly:after {
    opacity: .5;
    z-index: 8;
}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    padding: 0;
    background: none;
}

a:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

a,
button {
    color: inherit;
    outline: medium none;
    text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
    font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: var(--f40);
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: var(--f32);
}

h4 {
    font-size: var(--f24);
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

.pb_150 {
    padding-bottom: 150px;
}

.pb_100 {
    padding-bottom: 100px;
}

.pb_50 {
    padding-bottom: 50px;
}

.pt_150 {
    padding-top: 150px;
}

.pt_100 {
    padding-top: 100px;
}

.pt_50 {
    padding-top: 50px;
}

.mb_150 {
    margin-bottom: 150px;
}

.mb_100 {
    margin-bottom: 100px;
}

.mb_50 {
    margin-bottom: 50px;
}

.mt_150 {
    margin-top: 150px;
}

.mt_100 {
    margin-top: 100px;
}

.mt_50 {
    margin-top: 50px;
}

.sec__padding {
    padding: 100px 0;
}

.thm_btn {
    background: var(--thmColor);
    color: #fff;
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    border: 1px solid var(--thmColor);
    transition: all .3s;
}

.thm_btn:hover {
    background: #fff;
    color: var(--thmColor);
}

.thm_btn.black {
    background: #211A2C;
}

.thm_btn.white {
    background: #fff;
    color: var(--thmColor);
}

.container {
    max-width: 1430px;
}

/* default-css END 
================================== */

.header-area {
    padding-bottom: 1rem;
    position: relative;
}

.header-area .container-fluid {
    padding: 0 30px;
}

.header__top {
    border-bottom: 1px solid #D6D6D6;
    padding: 10px 0;
    margin-bottom: 1rem;
}


.header__top .src__blk {
    display: none;
}


.header__info {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.header__info a {
    font-size: 13px;
}

.header__info a span {
    display: block;
    border-right: 1px solid #0003;
    margin-right: -8px;
    padding-right: 10px;
}

.lng__icon {
    max-width: 24px;
}

.menu-area {
    display: flex;
    justify-content: end;
    gap: 20px;
    align-items: center;
}

.menu-area ul li:hover .mega__menu {
    visibility: visible;
    pointer-events: all;
}

.mega__menu {
    position: absolute;
    left: 0;
    background: var(--thmColor);
    width: 100%;
    z-index: 9;
    display: flex;
    color: #fff;
    padding: 32px 40px 50px;
    margin-top: 30px;
    visibility: hidden;
    pointer-events: none;
    gap: 30px;
}

.mega__menu__blk h5 {
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.mega__menu__blk ul {
    flex-wrap: wrap;
    gap: 12px !important;
}

.mega__menu__blk ul li {
    width: 30%;
}

.mega__menu__blk ul li a {
    color: #fff !important;
    padding-bottom: 0 !important;
    font-size: 14px !important;
    text-transform: capitalize;
}

.mega__menu__blk ul li a:hover {
    text-decoration: underline;
}

.menu-area ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-area ul li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--offTextColor);
    padding-bottom: 33px;
}

.menu-area ul li a:hover {
    color: var(--thmColor);
}

.menu-area ul li a i {
    font-size: 22px;
    position: relative;
    margin-left: 4px;
    bottom: -4px;
}

.src__blk {
    border: 1px solid var(--thmColor);
    padding: 0 10px;
    border-radius: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 265px;
    justify-content: space-between;
    gap: 10px;
}

.src__blk a {
    color: var(--thmColor);
}

.src__blk input {
    border: none;
    font-size: 14px;
    width: 100%;
}



/* humbergar */
.humbergar {
    cursor: pointer;
    display: block;
    max-width: 35px;
    margin-left: auto;
}

.humbergar span,
.humbergar span:before,
.humbergar span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 34px;
    background: var(--thmColor);
    position: relative;
    display: block;
    content: '';
    transition: all 250ms ease-in-out;
}

.humbergar span:before {
    top: -12px;
}

.humbergar span:after {
    bottom: -9px;
}

.humbergar.active span {
    background-color: transparent;
}

.humbergar.active span:before {
    top: 0px;
    transform: rotate(45deg);
}

.humbergar.active span:after {
    bottom: 3px;
    transform: rotate(-45deg);
}

/* humbarger END */


/* mobile-menu START */
.mobile-menu {
    position: fixed;
    width: 320px;
    height: calc(100vh - 138px);
    background: var(--thmColor);
    z-index: 99;
    box-shadow: 0px 10px 9px -1px #737373;
    top: 138px;
    left: 0;
    transition: .3s;
    margin-left: -400px;
    padding-left: 40px;
    padding-top: 60px;
}

.mobile-menu .siteBar-btn {
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
}

.siteBar {
    margin-left: 0;
}

.mobile-menu ul#pills-tab {
    margin-top: 90px;
    margin-bottom: 35px !important;
    display: block;
}

.mobile-menu nav ul li {
    list-style: none;
    display: block;
}

.mobile-menu nav ul li a {
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    transition: .3s;
}

.mobile-menu nav ul li a i {
    font-size: 22px;
    margin-left: 10px;
    position: relative;
    top: 3px;
}

.mobile-menu a.bars {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 32px;
    color: rgb(255, 0, 43);
}

/* Header section END */


/*============hero Area Start =============*/
.hero-area {
    padding: 100px 0;
    border-bottom: 8px solid var(--thmColor);
    position: relative;
    z-index: 1;
    background-position: center;
    background-size: cover;
}

section.hero-area.v2:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0008;
    top: 0;
    z-index: -1;
}

.hero-area.v2 {
    padding-top: 200px;
}


.hero-area.EmpresaHero {
    padding: 150px 0;
}

.NoticHero {
    padding: 140px 0 60px !important;
}

.heroV2__text {
    color: #fff;
    max-width: 1050px;
}

.heroV2__text h1 {
    font-weight: 600;
}

.heroV2__text p {
    margin: 0;
    line-height: var(--f32);
}

.sub__nav {
    position: absolute;
    top: 0;
    width: 100%;
    background: #0008;
    padding: 28px 0;
}

.sub__nav .sub__nav__content ul {
    display: flex;
    align-items: end;
    gap: 10px;
    color: #fff;
}

.sub__nav .sub__nav__content ul li {
    line-height: 1;
}

.sub__nav .sub__nav__content ul li a {
    display: block;
    line-height: 1;
}

.hero__content {
    background: #0009;
    color: #fff;
    max-width: 680px;
    padding: 32px;
}
.sell__content .thm_btn.white:hover {
	background: transparent;
	color: #fff;
	border-color: #fff;
}
.thm_btn.black:hover {
	background: transparent;
	color: #211A2C;
	border-color: #211A2C;
}
.sell-area.v2 .sell__btn a.thm_btn:hover {

	background: transparent;
	color: #fff;
	border-color: #fff;
}
.hero__content h1 {
    font-weight: 600;
}
.mega__menu__blk {
	width: 50%;
}
.MC__Type-area {
    padding: 80px 0;
}

.MC__Type__select select {
    height: 46px;
}

.MC__Type__all {
    text-align: center;
}

.MC__Type__all ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--f24);
}

.MC__Type__all ul li a {
    padding: 16px 24px;
    border: 1px solid var(--thmColor);
    display: block;
    border-radius: 8px;
    font-size: var(--f18);
    line-height: 1.1;
    transition: all .3s;
}

.MC__Type__all ul li a:hover {
    background: var(--thmColor);
    color: #fff;
}

/*============hero Area End =============*/


/*============Featured Area Start =============*/

.Featured-area {
    background: var(--bgColor);
    padding-top: 80px;
}

.Featured__title {
    text-align: center;
    margin-bottom: 30px;
}

.title {
    color: var(--thmColor);
    font-size: var(--f32);
}


.owl__arrow .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 110%;
    left: -5%;
    transform: translateY(-50%);
}

.owl__arrow .owl-nav i {
    font-size: 30px;
}


.Featured__blk h4 {
    color: var(--thmColor);
    margin: 16px 0 5px;
}

.Featured__blk p {
    margin-bottom: 5px;
}

.Featured__blk p i {
    width: 20px;
}

.f22 {
    font-size: var(--f22);
}

.Featured__btn {
    position: relative;
    bottom: -28px;
    width: max-content;
    margin: auto;
}

/*============Featured Area End =============*/


/*============Brand Area Start =============*/


.Brand__content {
    text-align: center;
}

.Brand__content ul {
    max-width: 1030px;
    margin: auto;
}

.Brand__content ul .owl-nav i {
    font-size: 20px;
}

.Brand__content h3 {
    margin-bottom: 70px;
}

.Brand__content ul li a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Brand__content ul li a img {
    width: auto !important;
    height: 100%;
    object-fit: contain;
}

/*============Brand Area End =============*/


/*============sell Area Start =============*/
.sell-area {
    background-image: url(../img/sell-bg.png);
    color: #fff;
    padding-top: 80px;
    background-size: cover;
}

.sell__title {
    text-align: center;
    margin-bottom: 70px;
    max-width: 930px;
    margin-inline: auto;
}

.sell__title span {
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.sell__img {
    position: relative;
    margin-bottom: -80px;
    max-width: 600px;
}

.sell__content {
    margin-left: -30px;
}

.sell__content ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--f40) var(--f36);
    margin-bottom: 50px;
}

.sell__content ul li {
    width: calc(50% - 20px);
}

.sell__blk {
    max-width: 320px;
}

.sell__blk h4 {
    width: max-content;
}

.sell__blk p {
    margin-bottom: 0;
}

.sell__blk i {
    font-size: 40px;
    margin-bottom: 10px;
}

.sell__btn {
    margin: 80px auto;
    width: max-content;
}

/*============sell Area End =============*/


/*============contact Area Start =============*/
.contact-area {
    padding: 200px 0 120px;
}

.contact-area.v2 {
    padding: 120px 0 0;
}

.contact__form {
    margin-right: -24px;
}

.contact__form p {
    margin: 12px 0 30px;
}

.contact__form .row {
    gap: var(--f24) 0;
}


.input__blk textarea {
    width: 100%;
    height: 135px;
    border-radius: 8px;
    border: 1px solid var(--thmColor);
    padding: 10px;
    padding-left: 14px;
}

.input__blk input {
    width: 100%;
    height: 40px;
    border: 1px solid var(--thmColor);
    border-radius: 8px;
    font-size: 14px;
    padding: 0 14px;
}

.check__box {
    margin-bottom: 20px;
}

.contact__img {
    max-width: 620px;
    margin-left: auto;
    margin-top: 30px;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-check-input {
    width: 24px;
    height: 24px;
}

.form-check-label {
    position: relative;
    left: 12px;
    bottom: -3px;
}

.form-check-label a {
    text-decoration: underline;
}

/*============contact Area End =============*/


/*============notice Area Start =============*/

.notice-area {
    background: var(--bgColor);
    padding: 80px 0 0;
}


.notice__blk h4 {
    font-weight: 600;
}

.notice__blk i {
    display: block;
    border-radius: 17px;
    overflow: hidden;
    margin-bottom: 10px;
}

.notice__btn {
    margin-top: 30px;
}

.notice__btn a {
    width: max-content;
    margin: auto;
    display: block;
    position: relative;
    bottom: -24px;
}

/*============notice Area End =============*/


/*============footer Area Start =============*/
.footer-area {
    padding: 100px 0;
    background-image: url(../img/footer-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.footer__btm {
    font-size: 13px;
    margin-top: var(--f48);
}

.footer__btm ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__btm ul li a:hover {
    color: var(--thmColor);
}

.footer__btm ul span {
    font-size: 20px;
}

.footer__logo {
    margin-bottom: 20px;
}


.footer__info p {
    font-weight: 500;
    color: #707070;
    margin-bottom: 0;
}

.footer__info a {
    font-weight: 700;
    color: #616161;
    display: block;
    margin-bottom: 10px;
}

.footer__info a:hover {
    color: var(--thmColor);
}


.footer__nav.nav-2 {
    margin-left: -65px;
}

.footer__nav ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #707070;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.footer__nav ul li a:hover {
    color: var(--thmColor);
}

.footer__nav h5 {
    margin-bottom: 24px;
    color: var(--thmColor);
}

/*============footer Area End =============*/


/*============product Area Start =============*/


.product__blk {
    padding-bottom: 24px;
    border-bottom: 1px solid #0002;
    margin-bottom: 24px;
}

.product__blk ul li a {
    display: block;
    margin-bottom: 5px;
}

.product__blk ul li a:hover {
    color: var(--thmColor);
}

.product__blk ul li h5 {
    font-size: var(--f20);
    color: var(--thmColor);
    margin-bottom: 16px;
}

.product__blk ul li a b {
    color: var(--thmColor);
}

.product-area .Featured__blk {
    margin-bottom: var(--f36);
    display: block;
}

.product-area .Featured__blk>i {
    display: block;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
}

.product-area .Featured__blk>i img {
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.product-area .Featured__blk:hover>i img {
    scale: 1.1;
}


.product-btn a {
    display: block;
    width: max-content;
    margin: auto;
    margin-top: 20px;
}

/*============product Area End =============*/


/*============productInfo Area Start =============*/


.productInfo__img {
    padding-right: 30px;
}

.productInfo__img iframe {
    width: 100%;
    height: 500px;
}


.productInfo__img__wrp>i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
}

.productInfo__img__wrp>i img {
    height: 100%;
    object-fit: cover;
}

.productInfo__img__wrp ul {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 30px;
}

.productInfo__img__wrp ul li a {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    overflow: hidden;
}

.productInfo__img__wrp ul li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.productInfo__content a.thm_btn {
    padding: 12px 32px;
}


.productInfo__content ul li {
    display: flex;
    border-bottom: 1px solid #D6D6D6;
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.productInfo__content ul li p {
    margin: 0;
}

.productInfo__content ul li span {
    display: block;
    width: 25%;
    min-width: 180px;
}

.productInfo__content ul li:last-child {
    border: none;
    padding-bottom: 24px;
}

.productInfo__content h1 {
    color: var(--thmColor);
}

.productInfo__text {
    margin: var(--f36) 0;
}

.productInfo__text li {
    margin-bottom: 1rem;
}

.productInfo-area .contact__form {
    background: #F3F3F3;
    padding: var(--f32);
    border-radius: 1rem;
}


.productInfo-area .contact__form h3 {
    margin-bottom: 20px;
    font-size: var(--f24);
}

/*============productInfo Area End =============*/


/*============ Area Start =============*/
.blog-area {
    padding: 80px 0;
}


.SglBlog__blk>i {
    display: flex;
    align-items: center;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 30px;
}

.SglBlog__blk>i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog__blk {
    display: flex;
    gap: var(--f40);
    margin-bottom: var(--f40);
}

.blog__blk>i {
    max-width: 320px;
    height: 214px;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.blog__blk i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.SglBlog__blk .blog__content p {
    margin-bottom: 16px;
}

.blog__content p {
    margin: 0;
    line-height: var(--f32);
}

.blog__content h4 {
    color: var(--thmColor);
    margin-bottom: 10px;
}

.blog__info {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog__info span {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}


.pagination__nav ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pagination__nav ul li a {
    display: flex;
    align-items: self-end;
}

.pagination__nav ul li {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.blog__list {
    margin-bottom: 40px;
}

.blog__list ul li {
    margin-bottom: 20px;
}

.blog__list ul li a {
    display: flex;
    gap: 1rem;
}

.blog__list ul li a h6 {
    color: var(--offTextColor);
}

.blog__list ul li a i {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 1rem;
    overflow: hidden;
}

.blog__list ul li a i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog__list h5 {
    color: var(--thmColor);
    font-size: var(--f20);
    margin-bottom: 20px;
}

.blog__photo a {
    width: 320px;
    height: 340px;
    display: flex;
    position: relative;
    border-radius: 1rem;
    align-items: end;
    padding: 20px;
    background-size: cover;
    background-position: center;
    margin-bottom: var(--f36);
}

.blog__photo a h4 {
    position: relative;
    color: #fff;
    z-index: 9;
    margin: 0;
}

.blog__photo a img {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

/*============ Area End =============*/


/*============industrial Area Start =============*/

.industrial-area {
    padding: 120px 0 180px;
}

.industrial__title {
    max-width: 375px;
}


/*============industrial Area End =============*/


/*============experienc Area Start =============*/

.experienc-area {
    background: #F3F3F3;
    padding: 80px 0;
    position: relative;
}

.experienc__text {
    max-width: 600px;
}


.experienc__img img {
    position: absolute;
    bottom: 0;
}

/*============experienc Area End =============*/


/*============ Area Start =============*/


.mejores__text h1 {
    font-size: 42px;
    color: var(--thmColor);
}

/*============ Area End =============*/


/*============ Area Start =============*/

/*============ Area End =============*/