* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
}

/*  */
.eol-container {
    width: 100%;
    max-width: 1510px;
    padding: 0 30px;
    margin: 0 auto;
    padding-top: 40px;
}
.eol-header-component h2 {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
}
.eol-product-list-component {
    padding-left: calc((100% - 1450px) / 2);
    margin-top: 35px;
    /* margin-left: calc((100% - 1450px) / 2); */
}
.eol-product-list-component .img-block {
    position: relative;
    /* padding-bottom: 45%; */
}
.eol-product-list-component .img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 300px;
    min-width: 380px;
}
.eol-product-list-component .owl-carousel .owl-stage,
.eol-product-list-component .slick-track {
    display: flex !important;
}
.eol-product-list-component .slick-list {
    display: flex;
    flex-direction: column;
}
.eol-product-list-component .eol-product-item {
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
    height: inherit;
    margin: 0 10px;
    max-width: 400px;
}

.eol-product-list-component .img-bg {
    height: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(8, 0, 0, 0) 86%);
    position: absolute;
    bottom: 0;
    width: 100%;
}
.eol-product-list-component .eol-blue-gradient .img-bg {
    background: linear-gradient(0deg, rgb(71 106 129) 0%, rgba(8, 0, 0, 0) 86%);
}
.eol-product-list-component .eol-green-gradient .img-bg {
    background: linear-gradient(0deg, rgb(98 115 68) 0%, rgba(8, 0, 0, 0) 86%);
}

.eol-product-list-component .card-info-block {
   /* position: absolute; */
    bottom: 0;
    left: 0;
    padding: 10px 30px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1 1;
    justify-content: space-between;
}


.eol-product-list-component .eol-blue-gradient .card-info-block  {
    background: #476a81;
}
.eol-product-list-component .eol-green-gradient .card-info-block  {
    background: #627344;
}
.eol-product-list-component .card-info-block h3 {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 8px;
}
.eol-product-list-component .card-info-block p {
    color: #FDFDFD;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.eol-product-list-component .eol-price-buy-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.eol-product-list-component .eol-price {
    color: #FDFDFD;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26.2px;
}
.eol-components .eol-buy-btn {
    border-radius: 2px;
    background: #0060EF;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px 20px;
    padding-right: 40px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.eol-components .eol-buy-btn:hover {
    opacity: 0.8;
}
.eol-components .eol-buy-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    background: url('images/eol-arrow-right.svg') no-repeat 0 0;
    width: 14px;
    height: 14px;
    background-size: 100%;
}

/*  */
.eol-product-list-component .owl-carousel .owl-stage {
    margin-left: auto;
    margin-right: auto;
}
.eol-product-list-component .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.eol-product-list-component .owl-theme .owl-dots {
    margin-top: 40px;
}
.eol-product-list-component .owl-theme .owl-dots .owl-dot span {
    width: 300px;
    height: 2px;
    margin: 0;
    background: #C9D3E3;
    display: block;
    -webkit-backface-visibility: visible;
    transition: all 0.3s ease-in-out;
    border-radius: 0;
}
.eol-product-list-component .owl-theme .owl-dots .owl-dot.active span {
    background: #272727;
    height: 4px;
    width: 100px;
}
.eol-product-list-component .owl-carousel .owl-nav {
    position: absolute;
    top: -70px;
    width: 100%;
    transform: translateY(-50%);
    max-width: 1510px;
}
.eol-product-list-component button.slick-arrow {
    position: absolute;
    top: -70px;
    width: 100%;
    transform: translateY(-50%);
    max-width: 1510px;
    color: transparent;
    cursor: pointer;
}
.eol-product-list-component button.slick-prev {
    right: 100px;
}
.eol-product-list-component button.slick-arrow.slick-prev::after {
    content: '';
    background: url('images/eol-arrow-right-blue.svg') 0 0 no-repeat;
    width: 18px;
    height: 18px;
    background-size: 100%;
    position: absolute;
    transform: rotateY(180deg);
    top: 12px;
    left: 12px;
}
.eol-product-list-component button.slick-arrow.slick-next {
    right: 40px;
}
.eol-product-list-component button.slick-arrow.slick-next::after {
    content: '';
    background: url('images/eol-arrow-right-blue.svg') 0 0 no-repeat;
    width: 18px;
    height: 18px;
    background-size: 100%;
    position: absolute;
    top: 12px;
    left: 12px;
}
.eol-product-list-component .owl-carousel .owl-nav button,
.eol-product-list-component button.slick-arrow {
    border: 0 !important;
    border-radius: 2px;
    background: #ECECEC;
    width: 40px;
    height: 40px;
    position: absolute;
    margin: 0;
    transition: all 0.3s ease-in-out;
}
.eol-product-list-component button.slick-arrow {
    top: -60px;
}
.eol-product-list-component .owl-carousel .owl-nav button img,
.eol-product-list-component button.slick-arrow::after {
    filter: brightness(0.2);
    transition: all 0.3s ease-in-out;
}
.eol-product-list-component .owl-carousel .owl-nav button.owl-prev {
    right: 60px;
}
.eol-product-list-component .owl-carousel .owl-nav button.owl-prev img {
    transform: rotate(180deg);
}
.eol-product-list-component .owl-carousel .owl-nav button.owl-next {
    right: 0;
}
.eol-product-list-component .owl-carousel .owl-nav button:hover,
.eol-product-list-component button.slick-arrow:hover {
    background: rgba(0, 96, 239, 0.08);
}
.eol-product-list-component .owl-carousel .owl-nav button:hover img,
.eol-product-list-component button.slick-arrow:hover::after {
    filter: grayscale(0);
}
.eol-product-list-component button.slick-arrow.slick-disabled {
    cursor: auto;
    background: #ECECEC;
}
.eol-product-list-component button.slick-arrow.slick-disabled::after {
    filter: brightness(0.2);
}

.eol-product-list-component .eol-product-item .img-block:before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  /* background gets injected by Elementor from the control */
}


.eol-product-list-component .slick-list {
    /* padding-left: calc((100% - 1450px) / 2); */
    padding-right: 0;
}

/* eol slider component */
.eol-hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.eol-hero-banner .eol-content-block {
    position: absolute;
    width: 100%;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}
.eol-hero-banner video {
    /* width: 100%; */
    /* position: absolute; */
    height: auto;
    object-fit: cover;
    z-index: 1;
}
.eol-hero-banner .banner-img img {
    width: 100%; 
}
.eol-hero-banner .banner-img {
    position: relative;
}

.eol-hero-banner .eol-title {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: inline;
}
.eol-hero-banner h1 {
   /* text-shadow: 0 2px 4px #FF5A9B;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(180deg, #FF5A9B 23.17%, #EB2271 87.2%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
    line-height: 1.2;*/
     font-size: 60px;
    font-style: normal;
    font-weight: 700;
    color: #fff;
}
.eol-hero-banner p {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 10px;
}
.eol-hero-banner .banner-img img {
    height: 600px;
    object-fit: cover;
}
.eol-hero-banner .eol-buy-btn {
    margin-top: 20px;
}
.eol-hero-banner .slick-initialized .slick-slide {
    overflow: hidden;
    position: relative;
}
.eol-hero-banner .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 1rem 0;
	list-style-type: none;
    transform: translateY(-50%);
    z-index: 99;
}
.eol-hero-banner .slick-dots li {
    margin: 0 0.25rem;
}
.eol-hero-banner .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50px;
    background-color: #ECECEC;
    text-indent: -9999px;
    transition: all 0.3s ease-in-out;
}
.eol-hero-banner .slick-dots li.slick-active button {
    background-color: #0071E3;
    width: 30px;
}




@media (max-width:767px) {
    .eol-hero-banner h1 {
        font-size: 40px;
    }
    .eol-hero-banner .title {
        font-size: 16px;
    }
    .eol-hero-banner p {
        font-size: 16px;
    }
}

/*  */
@media (max-width: 1600px) {
    /* .eol-product-list-component {
        padding-left: calc((100% - 1450px) / 2);
    } */
    .eol-product-list-component .card-info-block {
        padding: 10px 15px 20px;
    }
    .eol-product-list-component .eol-product-item {
        margin: 0 5px;
    }

}

@media (max-width: 1440px) {
    .eol-header-component h2 {
        font-size: 28px;
    }
    .eol-product-list-component .card-info-block h3 {
        font-size: 22px;
    }
    .eol-product-list-component .card-info-block p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .eol-product-list-component {
        /* margin-left: 0; */
        margin-top: 20px;
        /* padding-left: calc((100% - 1450px) / 2); */
    }
    .eol-product-list-component .img-block img {
        /* max-height: 500px; */
    }
    .eol-product-list-component .owl-theme .owl-dots .owl-dot span {
        width: 50px;
    }
    .eol-product-list-component .owl-carousel .owl-nav button.owl-prev {
        right: 40px;
    }
    .eol-product-list-component button.slick-arrow.slick-prev {
        right: 60px;
    }
    .eol-product-list-component button.slick-arrow.slick-next {
        right: 20px;
    }
    .eol-product-list-component .owl-carousel .owl-nav button,
    .eol-product-list-component button.slick-arrow {
        width: 30px;
        height: 30px;
    }
    .eol-product-list-component button.slick-arrow.slick-prev::after,
    .eol-product-list-component button.slick-arrow.slick-next::after {
        top: 6px;
        left: 7px;
    }
    .eol-product-list-component .owl-carousel .owl-nav button img {
        max-width: 14px;
    }
    .eol-header-component h2 {
        font-size: 20px;
    }
    .eol-product-list-component .owl-carousel .owl-nav {
        right: 10px;
    }
    .eol-product-list-component .eol-price-buy-block {
        margin-top: 20px;
    }
    .eol-product-list-component .card-info-block h3 {
        font-size: 18px;
    }
    .eol-product-list-component .card-info-block p {
        font-size: 15px;
    }
    .eol-components .eol-buy-btn {
        font-size: 15px;
        padding: 8px 16px;
        padding-right: 40px;
    }
    .eol-product-list-component .eol-price {
        font-size: 16px;
    }
    .eol-product-container {
        padding: 0 15px;
    }
    .eol-product-list-component button.slick-prev {
        right: 80px;
    }
    .eol-product-list-component button.slick-arrow {
        top: -44px;
    }
}
