* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    list-style: none;
    text-decoration: none;
}

:root {
    --main-color: #012CB5;
    --text-color: #111111;
    --secound-color: #9e9e9e;
    --other-color: #212121;
    --bg-color: #fff;

    --big-font: 4.5rem;
    --h2-font: 2.6rem;
    --p-font: 1rem;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

/*---------Header Section----------*/

header {
    position: sticky;
    width: 100%;
    min-height: 66px;
    padding: 0 100px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

header .logo img {
    width: 200px;
    cursor: pointer;
}

header ul {
    position: relative;
}

header ul li {
    position: relative;
    float: left;
}

header ul li a {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    margin: 0px 20px;
    padding: 7px 0;
    display: flex;
    justify-content: space-between;
}

header ul li a:hover {
    color: var(--main-color);
}

header ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    padding: 10px 0; 
    background-color: #fff;
    border-radius: 5px;
    display: none;
}

header ul li:hover ul {
    display: block;
}

header ul li ul li {
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.header_btn {
    font-size: 15px;
    font-weight: 500;
    padding: 7px 24px;
    margin: 0 20px;
    background-color: var(--main-color);
    color: var(--bg-color);
    border: none;
    border-radius: 18px;
    cursor: pointer;
    letter-spacing: 1px;
}

/*---------Slider Section----------*/

.slider {
    width: 100%;
    height: auto;
    display: none;
    overflow: hidden;
}

.dotsbox {
    display: none;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 20px;
    cursor: pointer;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 3px solid var(--bg-color);
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: 0.8;}
    to {opacity: 1;}
}

@keyframes fade {
    from {opacity: 0.8;}
    to {opacity: 1;}
}

.slider_container {
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 50%;
    margin-top: 100px;
    height: auto;
    color: var(--bg-color);
    letter-spacing: 2px;
    line-height: 35px;
    -webkit-animation-name: posi;
    -webkit-animation-duration: 3s;
    animation-name: posi;
    animation-duration: 3s;
    z-index: 1;
}

@-webkit-keyframes posi {
    from {left: 15%;}
    to {left: 0%;}
}

@keyframes posi {
    from {left: 15%;}
    to {left: 0%;}
}

.slider_info {
    position: relative;
    width: 100%;
    height: auto;
}

.slider_info h1 {
    color: var(--bg-color);
    font-weight: bold;
    line-height: 50px;
    padding-top: 15%;
    padding-left: 10%;
}

.slider_element {
    width: 100%;
    height: 100%;
    padding-top: 3%;
    text-align: center;
}

.slider_element img {
    width: 80%;
    height: 100%;
}

.hero_bg {
    width: 800px;
    height: 100%;
}

.hero_btn {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 500;
    padding: 10px 25px;
    margin-top: 2%;
    margin-left: 10%;
    border: 2px solid var(--bg-color);
    color: var(--bg-color);
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    letter-spacing: 1px;
}

.hero_btn:hover {
    transform: scale(1.1,1.1);
    opacity: 100%;
}

/*---------Products Section----------*/

.products_slider {
    width: 100%;
    padding: 0px 35px;
    margin-bottom: 30px;
    position: relative;
}

.products_slider .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min-content max-content auto;
    gap: 120px;
    margin-left: 130px;
    margin-right: 120px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}


.nav_btns {
    display: flex;
    justify-content: space-between;
}

.nav_btns #right {
    margin-right: 70px;
}

.products_slider i {
    width: 50px;
    height: 50px;
    opacity: 30%;
    font-size: 25px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.products_slider i:first-child {
    left: 30px;
}

.products_slider i:last-child {
    right: -30px;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel.dragging .product_box {
    cursor: grab;
    user-select: none;
}

.products_title {
    font-size: 28px;
    text-transform: uppercase;
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.carousel .product_box {
    scroll-snap-align: start;
    height: 420px;
}

.carousel .product_box {
    cursor: grab;
    user-select: none;
}

.product_box {
    display: flex;
    flex-direction: column;
    width: 300px;
    padding: 15px;
    border: 1px solid var(--other-color);
    border-radius: 10px;
    position: relative;
}

.product_image_container {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.product_image a, .product_image {
    width: 100%;
    height: 280px;
    display: flex;
}

.product_image img {
    width: 100%;
    height: auto;
    object-position: center;
    object-fit: contain;
    animation: fade_product 0.6s;
}

.product_image_back {
    display: none;
}

.product_image_container:hover .product_image_back {
    display: block;
}

.product_image_container:hover .product_image_front {
    display: none;
}

@keyframes fade_product {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.product_box_text {
    margin-top: 5px;
    width: 100%;
}

.product_category {
    display: flex;
    justify-content: center;
    opacity: 80%;
    font-size: 0.8rem;
    color: var(--secound-color);
    font-weight: 300;
    margin: 5px 0px;
}

.product_name {
    font-size: 16px;
    text-align: center;
    color: var(--other-color);
    font-weight: 600;
    transition: all ease 0.3s;
    margin-bottom: 20px;
}

.product_name:hover {
    color: var(--text-color);
    opacity: 0.7;
    transition: all ease 0.3s;
}

.product_price {
    display: flex;
    justify-content: center;
    padding: 5px;
    font-size: 1.3rem;
    color: var(--other-color);
    font-weight: 600;
}

.buy_button {
    display: flex;
    justify-content: center;
    padding: 7px 24px;
    background-color: var(--main-color);
    border: none;
    border-radius: 18px;
    color: var(--bg-color);
    margin: 0px 5px;
    font-weight: 500;
}

.buy_button:hover {
    text-decoration: underline;
    opacity: 75%;
}

.product_discount {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 65px;
    height: 24px;
    color: var(--bg-color);
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    letter-spacing: 1px;
    z-index: 100;
}

section a {
    display: flex;
    justify-content: center;
}

.btn_products {
    font-size: 20px;
    font-weight: 500;
    padding: 7px 30px;
    margin-top: 50px;
    margin-left: 30px;
    color: var(--bg-color);
    background-color: var(--main-color);
    border: none;
    border-radius: 18px;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn_products:hover {
    opacity: 75%;
}

/*---------Demo Section----------*/

.demo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    height: auto;
    background: var(--main-color);
    padding: 3%;
    color: var(--bg-color);
    position: relative;
    z-index: 1;
}


.demo_column {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.demo_right {
    margin-left: 70px;
}

.demo_title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
}

.demo_text {
    padding: 20px;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 2%;
    text-align: center;
}

.demo_info {
    padding: 20px;
    font-size: 20px;
    font-weight: 400;
}

.demo_info_two {
    padding-left: 20px;
    font-size: 15px;
    font-weight: 400;
    opacity: 80%;
}

.demo_btn {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 500;
    padding: 10px 25px;
    margin-top: 25px;
    margin-left: 30px;
    border: 2px solid var(--bg-color);
    color: var(--bg-color);
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    letter-spacing: 1px;
}

.demo img {
    margin: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: auto;
    max-width: 100%;
    top: 0;
    object-fit: cover;
    height: 90%;
    opacity: 60%;
    z-index: -1;
}

/*---------Package Section----------*/

.package {
    width: 100%;
    height: auto;
    background: var(--bg-color);
}


.package_container {
    padding: 0% 3% 1% 3%;
}

.package_title_box {
    font-size: 28px;
    text-transform: uppercase;
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 30px;
}

.package_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.package_item {
    color: var(--bg-color);
    border: 1px solid var(--other-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.package_item img {
    width: 100%;
}

.package_title h3 {
    padding: 10px 0px;
    color: var(--other-color);
    font-weight: 500;
    text-align: center;
}

/*--TEST--*/

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
  }

/*--TEST--*/
  
.layer {
    width: 100%;
    height: 0%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), var(--main-color));
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}

.layer h3 {
    color: var(--bg-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.layer a i {
    margin-top: 30px;
    color: var(--main-color);
    text-decoration: none;
    font-size: 25px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}


.package_item:hover .layer {
    height: 100%;
    z-index: 999;
}

.package a {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: -20px;
}

/*---------Cookies Section----------*/

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none; 
}

.cookies-container {
    width: 1600px;
    margin: auto;
}

.cookies-subcontainer {
    width: 85%;
    margin: auto;
}

#cookies {
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: #111;
    color: #fff;
    z-index: 10000;
    display: none;
}

.cookies {
    min-height: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

.cookies a {
    color: #012CB5;
    font-weight: 600;
}

#cookies-btn-accept {
    font-size: 15px;
    font-weight: 500;
    padding: 7px 24px;
    background-color: var(--main-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
    border-radius: 18px;
    cursor: pointer;
    letter-spacing: 1px;
}

#cookies-btn-reject {
    font-size: 15px;
    font-weight: 500;
    padding: 7px 24px;
    background-color: var(--main-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
    border-radius: 18px;
    cursor: pointer;
    letter-spacing: 1px;
}
/*---------Footer Section----------*/

footer {
    width: 100%;
    height: auto;
    padding: 3% 3% 0% 3%;
    background: var(--main-color);
    color: var(--bg-color);
    position: relative;
    z-index: 0;
}

.footer_bg_img img {
    margin: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: 100%;
    top: 0;
    object-fit: cover;
    height: 90%;
    opacity: 50%;
    z-index: -1;
}

.footer_columns {
    display: flex;
    justify-content: space-evenly;
}

.footer_column {
    flex-basis: 30%;
}

.footer_logo img {
    padding: 30px;
    margin-top: 20px;
    width: 300px;
}

.footer_info {
    margin-left: 10px;
}

.footer_info li {
    font-size: 17px;
    font-weight: 400;
}

.footer_info li i {
    font-size: 20px;
    padding: 5px;
}

.footer_social {
    display: flex;
    justify-content: flex-start;
    
}

.footer_social i {
    padding: 40px 0px;
    display: inline-block;
    align-items: center;
    font-size: 25px;
    color: var(--bg-color);
    margin: 0 20px;
    transition: all 0.5s ease;
}

.footer_social i:hover {
    transform: scale(1.3);
}

.footer_links {
    padding-top: 50px;
    text-align: center;
    line-height: 30px;
}

.footer_links a {
    color: var(--bg-color);
    font-size: 18px;
    opacity: 60%;
}

.footer_links a:hover {
    opacity: 100%;
}

.anpc {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.footer_column_service {
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    padding: 20% 0%;
    z-index: 1;
    position: relative;
}

.footer_title {
    display: flex;
    justify-content: center;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

.footer_text {
    text-align: center;
    line-height: 18px;
    margin-bottom: 15px;
}

.footer_btn {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    padding: 10px 25px;
    border: 1px solid var(--bg-color);
    border-radius: 20px;
    color: var(--bg-color);
    margin-top: 3px;
    background: transparent;
    cursor: pointer;
    letter-spacing: 1px;
}

.footer_btn:hover {
    background: var(--bg-color);
    color: var(--main-color);
}

.copyright {
    display: flex;
    justify-content: center;
    font-size: 16px;
}
  
/*---------Responsive Design----------*/

@media screen and (max-width: 1600px) {
    .cookies-container{
        width: 100%;
    }
}

@media screen and (max-width: 1442px) {
    header {
        padding: 10px 20px;
    }

    header .logo img {
        width: 150px;
    }

    header nav {
        position: absolute;
        width: 100%;
        top: 66px;
        left: 0;
        background-color: #fff;
        display: none;
    }

    .header_btn {
        margin-bottom: 10px;
    }

    header.active nav {
        display: initial;
    }

    header ul li a {
        padding: 10px 0;
    }

    header nav ul li {
        width: 100%;
    }

    header nav ul li ul {
        position: relative;
        width: 100%;
        left: 0;
    }

    .menuToggle {
        position: relative;
        width: 30px;
        height: 20px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuToggle::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: #012CB5;
        transform: translateY(-12px);
        box-shadow: 0 12px #012CB5;
    }

    .menuToggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: #012CB5;
        transform: translateY(12px);
    }

    header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: 0 0 #012CB5;
    }

    header.active .menuToggle::after {
        transform: rotate(315deg);
        box-shadow: 0 0 #012CB5;
    }
}


@media screen and (max-width: 1440px) {
    .products_slider .carousel {
        gap: 20px;
        margin-left: 50px;
        margin-right: 50px;
    }
}


@media screen and (max-width: 1372px) {
    .products_slider .carousel {
        gap: 130px;
        margin-left: 50px;
        margin-right: 80px;
    }

    .btn_products {
        font-size: 13px;
    }
    
    .demo_title {
        font-size: 25px;
    }

    .demo_text {
        font-size: 17px;
    }
    
    .demo_info {
        font-size: 17px;
    }

    .demo_info_two {
        font-size: 12px;
    }

    .demo_btn {
        font-size: 13px;
    }
}

@media screen and (max-width: 1196px) {
    .products_slider .carousel {
        gap: 40px;
        margin-left: 60px;
        margin-right: 75px;
    }

    .footer_info li {
        font-size: 13px;
    }
    
    .footer_info li i {
        font-size: 17px;
    }

    .footer_logo img {
        width: 250px;
    }

    .footer_social i {
        font-size: 20px;
    }

    .footer_links {
        line-height: 20px;
        padding-top: 20px;
    }

    .footer_links a {
        font-size: 13px;
    }

    .footer_title {
        font-size: 17px;
    }

    .footer_text {
        font-size: 12px;
    }

    .footer_btn {
        font-size: 12px;
    }

    .copyright {
        font-size: 12px;
    }   
}

@media screen and (max-width: 1024px) {
    .products_slider .carousel {
        gap: 20px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .slider_info h1 {
        line-height: 25px;
        font-size: 20px;
    }

    .hero_btn {
        font-size: 12px;
    }

    .nav_btns {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .slider_info{
        line-height: 25px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-animation-name: posi2;
        -webkit-animation-duration: 2s;
        animation-name: posi2;
        animation-duration: 2s;
    }

    @-webkit-keyframes posi2 {
        from {top: 50%}
        to {top: 50%;}        
    }

    @keyframes posi2 {
        from {top: 50%}
        to {top: 50%;}        
    }

    .slider_text h1 {
        line-height: 15px;
        font-size: 25px;
    }
    
    .dot {
        display: none;
    }

    .products_slider .carousel {
        gap: 40px;
        margin-left: 40px;
        margin-right: 30px;
    }

    .demo_title {
        font-size: 25px;
    }

    .demo_text {
        font-size: 12px;
        line-height: 20px;
    }
    
    .demo_info {
        font-size: 15px;
    }

    .demo_info_two {
        font-size: 10px;
    }

    .demo_btn {
        font-size: 10px;
    }

    .footer_info li {
        font-size: 10px;
    }
    
    .footer_info li i {
        font-size: 13px;
    }

    .footer_logo img {
        width: 200px;
    }

    .footer_social i {
        font-size: 15px;
    }

    .footer_links {
        line-height: 20px;
        padding-top: 20px;
    }

    .footer_links a {
        font-size: 10px;
    }

    .footer_title {
        font-size: 12px;
    }

    .footer_text {
        font-size: 10px;
    }

    .footer_btn {
        font-size: 9px;
    }

    .copyright {
        font-size: 10px;
    }   
}

@media screen and (max-width: 768px) {
    .products_slider .carousel {
        gap: 28px;
        margin-left: 30px;
        margin-right: 15px;
    }

    .slider_info h1 {
        line-height: 25px;
        font-size: 18px;
    }

    .hero_btn {
        font-size: 9px;
        font-weight: 200;
        padding: 6px 8px;
        border: 1px solid var(--bg-color);
        color: var(--bg-color);
    }

    .anpc a img {
        width:100px;
        margin:5px;
    }
}


@media screen and (max-width: 680px) {
    .slider_info h1 {
        line-height: 15px;
        font-size: 10px;
    }

    .nav_btns {
        display: none;
    }

    .products_title {
        font-size: 20px;
    }

    .products_slider .carousel {
        gap: 70px;
        margin-left: 80px;
        margin-right: 30px;
    }

    .demo_column {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .demo_title {
        padding-top: 30px;
        text-align: center;
        font-size: 20px;
    }

    .demo_text {
        text-align: center;
        font-size: 12px;
        line-height: 20px;
    }

    .demo_right {
        margin-left: 0px;
    }
    
    .demo_info {
        text-align: center;
        font-size: 12px;
    }

    .demo_info_two {
        text-align: center;
        font-size: 10px;
    }

    .demo_btn {
        font-size: 10px;
        margin-left: 0px;
        margin-bottom: 30px;
    }

    .package_title {
        font-size: 20px;
    }

    .footer_columns {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer_info li {
        font-size: 13px;
    }
    
    .footer_info li i {
        font-size: 15px;
    }

    .footer_logo img {
        width: 250px;
    }

    .footer_social {
        display: flex;
        justify-content: center;
    }

    .footer_social i {
        font-size: 17px;
    }

    .footer_links {
        line-height: 20px;
        padding-top: 20px;
    }

    .footer_links a {
        font-size: 14px;
    }

    .footer_column_service {
        padding: 8% 0%;
    }

    .footer_title {
        font-size: 16px;
    }

    .footer_text {
        font-size: 13px;
    }

    .footer_btn {
        font-size: 12px;
    }

    .copyright {
        font-size: 12px;
    }   
}

@media screen and (max-width: 470px) {
    .slider_element img {
        width: 100%;
        height: 100%;
    }

    .slider_info{
        margin-top: -30px;
    }

    .dot {
        width: 7px;
        height: 7px;
        border: 1px solid var(--bg-color);
    }

    .btn_products {
        margin-left: 0;
        font-size: 13px;
    }

    .products_slider .carousel {
        gap: 60px;
        margin-left: 50px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 450px) {
    .slider_element img {
        width: 100%;
        height: 100%;
    }

    .slider_info{
        margin-top: -30px;
    }

    .dot {
        width: 7px;
        height: 7px;
        border: 1px solid var(--bg-color);
    }

    .btn_products {
        margin-left: 0;
        font-size: 13px;
    }

    .products_slider .carousel {
        gap: 50px;
        margin-left: 30px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 440px) {
    .slider_element img {
        width: 100%;
        height: 100%;
    }

    .slider_info{
        margin-top: -30px;
    }

    .dot {
        width: 7px;
        height: 7px;
        border: 1px solid var(--bg-color);
    }

    .btn_products {
        margin-left: 0;
        font-size: 13px;
    }

    .products_slider .carousel {
        gap: 50px;
        margin-left: 30px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 400px) {
    .slider_element img {
        width: 100%;
        height: 100%;
    }

    .slider_info{
        margin-top: -30px;
    }

    .dot {
        width: 7px;
        height: 7px;
        border: 1px solid var(--bg-color);
    }

    .btn_products {
        margin-left: 0;
        font-size: 13px;
    }

    .products_slider .carousel {
        gap: 50px;
        margin-left: 20px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 390px) {
    .products_slider .carousel {
        gap: 50px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .slider_info{
        margin-top: -40px;
    }

    .product_box {
        width: 290px;
    }

    .btn_products {
        margin-left: 0;
        font-size: 13px;
    }
}
