* {
    margin: 0;
    padding: 0;
}
body {
    box-sizing: border-box;
    background-color: #fff;
    color: #333;
}

a{
    text-decoration: none;
    color: blueviolet;
}
img {
    width: 100%;
}
h1, h2, h3, h4 {
    margin-top: 10px;
    font-size: 1.9rem;
    color: blueviolet;
}
p {
    margin: 15px 0;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Image slider */
.image-slider {
    width: 90%;
    margin: auto;
    overflow: hidden;
}
.slides {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7050px;
    height: 500px;
    margin: auto;
    
}

.slide img {
    width: 600px;
    height: 420px;
    justify-content: center;
}


.slide div {
    width: 400px;
    margin-top: 60px;
    margin-right: -50px;
    justify-content: center;
}
.slide {
    padding: 0 100px;
    justify-content: center;
    transition: 1s ease-in-out;
}
.slides input {
    margin-left: 1px;
    display: none;
}
.slide a {
    display: block;
    width: fit-content;
    margin-top: 10px;
    font-size: 14px;}

/*radio buttons */
.manual-navigation {
    position: absolute;
    width: 800px;
    height: 10px;
    margin-bottom: -460px;
    left: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.manual-navigation .manual-btn{
    padding: 5px;
    background-color: rgb(212, 177, 245);
    border-radius:10px;
    border: 1px solid rgb(138, 130, 146);
    cursor: pointer;
    transition: 1s;
    margin-right: 5px;
}
.manual-btn:hover{
    background-color: blueviolet;
}
.manual-btn:checked{
    background-color: blueviolet;
}

.slides .text {
    
}
.slide-6-text-right {
    border-left: 1px solid #e2e2e2 ;
    padding-left: 60px;
}
.slide-6-text-right .btn {
    font-size: 14px;
}

/*Manual slide buttons */

#radio1:checked ~ .first {
    margin-left: 0;
}
#radio2:checked ~ .first {
    margin-left: -26%;
}
#radio3:checked ~ .first {
    margin-left: -66%;
}
#radio4:checked ~ .first {
    margin-left: -107%;
}
#radio5:checked ~ .first {
    margin-left: -149%;
}
#radio6:checked ~ .first {
    margin-left: -187%;
}

#radio1:checked ~ .manual-navigation .dot1 {
    background-color: blueviolet
}
#radio2:checked ~ .manual-navigation .dot2 {
    background-color: blueviolet
}
#radio3:checked ~ .manual-navigation .dot3 {
    background-color: blueviolet
}
#radio4:checked ~ .manual-navigation .dot4 {
    background-color: blueviolet
}
#radio5:checked ~ .manual-navigation .dot5 {
    background-color: blueviolet
}
#radio6:checked ~ .manual-navigation .dot6 {
    background-color: blueviolet
}
/*Utilities */
.container {
    max-width: 1100x;
    padding: 40px;
    margin: 0 auto;
}
.grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr) ;
    gap: 50px;
}
.btn{
    background-color: blueviolet;
    color: cornsilk;
    padding: 14px;
    border-radius: 5px;
    font-size: 12px;
    text-transform: uppercase;
}

