/* Add custom CSS styles below */ 

:root {
  --text-btn: #f5f5f5;
 
}
.s-block--banners img {
  transition: transform 0.5s ease; 
}

.s-block--banners img:hover {
  transform: scale(1.2) rotate(10deg);
}

#popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 400px;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 8px;
    text-align: center;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#popup button {
    background-color: #ff7700;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

#popup button:hover {
    background-color: #ff5500;
}

section.s-block--banners:nth-child(2) img {
  border-radius: 100px !important;
}
#squares-3 img{
  border-radius: 550px ;
}

* {
    padding: 0;
    margin: 0;
}


.angel-features {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0 40px 0;
    gap: 40px;
    position: relative;
    margin-top: 100px;
    overflow-y: hidden;
    /* min-height: 200px; */
}

.angel-features .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

 
 .header h1 {
    font-size: 50px;
} 

.angel-features .boxs {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    /* display: grid;
    grid-template-columns: repeat(3,auto);
    justify-content: space-around;
    align-items: center; */
    width: 100%;
    gap: 10px;
    overflow: hidden;
    /* background-color: black; */
}

@media(max-width:768px) {
    .angel-features .boxs {

        grid-template-columns: repeat(2, auto);


    }

}
.animation {
    width: 350px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.scc {
    scale: 1.5;
}

.animation .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateY(-10px);
    text-align: center;
}

@media(width < 830px) {
    .header h1 {
        font-size: 30px;
    } 
    .animation {
        width: 130px;
    }

    .animation .text h1 {
        font-size: 19px;
    }

    .animation .text h3 {
        font-size: 15px;
    }
    .animation{
        width: 200px !important;
    }
}

.carAnimation {
    scale: 1.3;
}

@media(width < 413px) {
    .carAnimation {
        scale: 1.1;
    }
}

@media(width < 450px) {
    .text h3 {
        font-size: 15px !important;
        line-height: 1.3rem;
    }
    .animation{
        width: 100px !important;
    }
}


.max-h-12 {
    max-height: 13rem; 
}
.s-block--features{
  background-color: #E6E6E6;
}