.intro_title {
    font-size: 48px;
}

.wedding-intro .img-box {
    padding-left: 80px;
}
.cyl-circle {
    --circle: 450px;
    height: var(--circle);
    background: #000;
    border-radius: 200px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px #00000026;
    margin: 15px;
    border: 8px solid #29c32b;
}
.cyl-circle img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.services {
    padding: 40px 0 30px;
}

.serv_wrapper {
    display: flex;
    column-gap: 60px;
}
.serv_box {
    min-width: 65%;
    height: 350px;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 10px 30px -10px #00000026;
    padding: 30px;
    border-radius: 10em;
    transition: all 0.3s linear;
    overflow: hidden;
}
.serv_box:hover {
    background: #29c32b;
/*    color: #fff;*/
}
.serv_box:hover h3 {
    border-bottom: 1px solid #fff;
}
.serv_box img {
    --circle: 300px;
    width: var(--circle);
    height: var(--circle);
    object-fit: cover;
    border-radius: 50%;
    object-position: center;
}

.service_cont {
    padding: 25px;
    margin-left: 30px;
    margin-right: 30px;
}
.serv_box h3 {
    font-size: 38px;
    border-bottom: 1px solid #ffdc09;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.bt-cta {
    background-image: url(../images/wedding/CTA.jpg);
}


ul.list-styled li {
    margin-bottom: 12px;
    display: flex;
}

@media screen and (max-width: 1199px) {
    .intro_title { font-size: 48px; }
    .wedding-intro .img-box {  padding-left: 25px;  }
    .cyl-circle { margin: 5px; }
    
    .serv_wrapper { background: #fff; }
    .services { margin-top: 0; padding: 0; }
    .serv_box  { padding: 15px; min-width: 74%; height: 254px; }
    .service_cont {
        padding: 8px;
        margin-left: 24px;
        margin-right: 20px;
    }
    .serv_box h3 { font-size: 32px; }
    .serv_box img { --circle: 220px; }
    
}

@media screen and (max-width: 991px) {
    .intro_title { font-size: 40px; }
    
    .serv_box h3 { font-size: 30px; }
    
    .sec_title  br, .intro_title br { display: none; }
    
    .serv_wrapper {
        flex-wrap: wrap;
        column-gap: 30px;
    }
    .serv_box {  width: 100%; height: auto; margin-bottom: 25px; }
    .serv_box:nth-child(even) {  flex-direction: row-reverse; }
    .serv_box:nth-child(even) .service_cont { margin-left: 50px; }
    
}

@media screen and (max-width: 767px) {
    .intro_title { font-size: 30px; }
    
    .cyl-circle { margin: 0; --circle: 60vw; }
    
    .serv_wrapper {
        margin-top: 30px;
    }
    .serv_box h3 { font-size: 23px; }
    
    .serv_box { flex-direction: column; border-radius: 2em; }
    .serv_box:nth-child(even) {  flex-direction: column; }
    
    .serv_box img { width: 100%; border-radius: 20px; margin-bottom: 15px; }
    .service_cont, .serv_box:nth-child(even) .service_cont { margin: 0; margin-left: 0; }
    
}