body {
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 23px;
}

.container {
    margin: 0 auto;
    text-align: center;
    max-width: 1030px;
    margin-top: 50px;
    /* this is for the width of the container center */
    width: 100%;
    
}


h1{
    text-align: center;
}

section{
    margin-top: 60px;
}

h2 {
    font-size: 22px;
    text-align: left;
}

h3, h4, h5, h6 {
    text-align: left;
}

@media(max-wdith: 1200px) {
    .container{
        font-size: 3rem;
    }
}

#cad2 p {
    text-align: left;
}

#cad2 h4 {
    font-weight: bold;
    margin-bottom: 20px;
}

#footer {
    text-align: center;
}


.share-art {
   display: block;

}


.share-art a {
    float: left;
    font-size: 12px;
    /* line-height: 30px; */
    color: #fff;
    border-radius: 2px;
    height: 50px;
    min-width: 30px;
    text-align: center;
}

/* .share-art .facebook {
    margin-top: 1px;
} */



.slider {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    display: flex;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-out;
}

.slider-slide {
    flex-shrink: 0;
    width: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}