/*CONTENT 1*/

.content-1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
    text-align: center;
    background-color: #1b1919;
    position: relative;
    z-index: 1;
    box-shadow: rgba(255, 255, 255, 0.212) 0px 5px 15px;
}

.element img {
    width: 300px;
}

@media only screen and (max-width: 993px) {
    .content-1 {
        flex-direction: column;
        gap: 80px;
    }
}

/*CONTENT 2*/

.content-2 {
    background-color: #1b1919;
}

.titles-2 {
    position: relative;
    color: #d4d4d4;
    z-index: 2;
    display: flex;
    align-items: end;
    padding: 50px;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    gap: 20px;
}

.main-title-2 {
    flex: 1;
}

.main-title-2 h2 {
    font-size: 60px;
}

.main-title-2 .upper-strong {
    color: #f85d03;
    font-size: 30px;
    margin-bottom: 20px;
}

.second-title-2 {
    flex: 1;
}

.second-title-2 p {
    font-size: 16px;
    line-height: 1.5;
}

.btn-cta {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #f85d03;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 20px;
    gap: 10px;
    width: fit-content;
}

.img-carousel {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px;
    justify-content: space-between;
}

.img-carousel img {
    height: auto;
    width: 330px;
    border-radius: 20px;
}

.show-more {
    display: none;
}

.more-images {
    text-align: center;
    font-weight: bold;
    color: #fff;
    margin: 0;
    padding: 20px;
}

.more-images:hover {
    text-decoration: underline;
}

@media (min-width: 993px) and (max-width: 1024px) {
    .img-carousel img {
        width: 280px;
    }
}

@media only screen and (max-width: 993px) {

    .titles-2 {
        align-items: start;
    }

    .upper-strong {
        font-size: 20px !important;
    }

    .img-carousel img {
        width: 30%;
    }

    .main-title-2 h3 {
        text-align: left;
    }

    .main-title-2 h2 {
        text-align: left;
        font-size: 40px;
    }

    .second-title-2 p {
        text-align: left;
    }

    .img-carousel{
        margin-top: 0px;
    }
}

@media only screen and (max-width: 600px) {
    .titles-2 {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .img-carousel {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        padding: 20px;
    }

    .img-carousel img {
        width: 100%;
    }
}

/*CONTENT 3*/

.card-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    background-color: #1b1919;
    gap: 50px;
}

.title-products {
    text-align: center;
    color: #d4d4d4;
    background-color: #1b1919;
    margin: 0;
    padding-top: 50px;
}

.product {
    background-color: #1b1919;
    padding: 30px;
    flex: 1;
    height: 700px;
    box-shadow: rgba(255, 255, 255, 0.212) 0px 5px 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    transition: 1s;
}

.product:hover {
    transform: scale(1.05);
    box-shadow: rgba(248, 93, 3, 0.5) 0px 5px 15px;
}

.product h3 {
    color: #d4d4d4 !important;
}

.short-description {
    color: #d4d4d46a !important;
    margin: 0;
}

.product-content {
    color: #d4d4d4 !important;
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-content img {
    width: 100%;
    border-radius: 10px;
}

.product-content div {
    flex: 1;
}

.product .price a {
    color: #d4d4d4 !important;
    border: 1px solid #d4d4d4;
    border-radius: 20px;
    padding: 10px 20px;
    width: fit-content;
}

.product hr {
    border: 1px solid #f85d03;
    width: 40%;
    margin: 0;
}

.price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price span {
    color: #f85d03;
    font-size: 18px;
}

.product-text {
    color: #d4d4d4;
    background-color: #1b1919;
    margin: 0;
    padding: 20px 50px;
}

.extra-product-text {
    color: #d4d4d4;
    margin: 0;
    padding: 20px 0px;
}

.cta-end {
    font-weight: bold;
    padding-top: 20px;
    text-align: center;
    font-size: 30px;
    color: #f85d03;
}

.extra-services {
    color: #d4d4d4;
    background-color: #1b1919;
    margin: 0;
    padding: 50px;
}

@media only screen and (max-width: 1024px) {

    .title-products {
        padding-bottom: 20px;
    }

    .card-container {
        flex-direction: column;
        gap: 50px;
        padding: 10px;
    }

    .product {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }

    .product-text {
        padding: 20px;
    }

    .product h3 {
        font-size: 24px;
    }

    .product-content {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .product-content p {
        font-size: 16px;
    }

    .product-content div img {
        margin-left: 0;
        width: 100%;
    }

    .product hr {
        width: 60%;
    }

    .extra-services {
        padding: 20px;
    }

    .cta-end {
        font-size: 20px;
        text-align: left;
    }
}