.content_video_lead .video {
    width: auto !important;
    height: 77% !important;
}
body{
    overflow-x: hidden;
}
section.consultorio {
    padding-bottom: 70px;
    position: relative;
}
section.consultorio:after{
    animation: animation_icon_sections 3s infinite alternate;
    content: "";
    position: absolute;
    right: 0px;
    top: -250px;
    width: 560px;
    height: 1316px;
    background-image: url("../img/o-consultorio/asset_right.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
}
section.consultorio:before{
    animation: animation_icon_sections_invert 4s infinite alternate;
    pointer-events: none;
    z-index: -1;
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 777px;
    height: 597px;
    background-image: url("../img/o-consultorio/asset_left.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
section.consultorio h2{
    text-align: center;
    font-size: 33.33px;
    font-weight: 600;
    color: var(--verde);
    margin-bottom: 70px;
}
section.consultorio .wrapper {
    text-align: justify;
}
section.consultorio .wrapper p{
    font-size: 16.67px;
    font-weight: 500;
    margin-bottom: 15px;
}
section.consultorio .wrapper .text-diferenciais {
    margin-bottom: 50px;
}
section.consultorio .wrapper .text-diferenciais p{
    font-size: 16.67px;
}
section.consultorio .wrapper .text-diferenciais p strong{
    font-weight: 600;
}
section.consultorio .wrapper .text-diferenciais ul {
    padding-left: 18px;
}
section.consultorio .wrapper .text-diferenciais ul li{
    font-size: 16.67px;
}
section.consultorio .diferenciais{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    gap: 165px;
}
section.consultorio .diferenciais .item{
    cursor: pointer;
    position: relative;
    width: 240px;
    height: 240px;
    background-color: transparent;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: circle();
    transition: all .3s ease-in-out;
    text-align: center;
    color: var(--verde);
}
section.consultorio .diferenciais .item:hover,
section.consultorio .diferenciais .item.active{
    flex-direction: column-reverse;
    background: rgba(202, 146, 62, 0.3);
    background: linear-gradient(270deg, rgba(202,147,62,0.3) 0%, rgba(255,244,165,0.3) 50%, rgba(202,147,62,0.3) 100%);
}
section.consultorio .diferenciais .item::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../img/circle-trataments.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
section.consultorio .diferenciais .item h3{
    font-size: 33.33px;
    font-weight: 500;
    -webkit-text-stroke: 1.5px var(--verde);
}
section.consultorio .wrapper .text-diferenciais p,
section.consultorio .wrapper .text-diferenciais ul li{
    font-weight: 500;
}
section.consultorio .wrapper .text-diferenciais strong{
    font-weight: 600;
}
section.consultorio .galery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    grid-gap: 12px;
}
section.consultorio .content.gallery {
    max-width: 1350px;
}
section.consultorio .galery .image{
    background-color: var(--verde);
    cursor: pointer;
    width: 100%;
    height: 100%;
}
section.consultorio .galery .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.consultorio .galery .image.vertical {
    grid-row: span 2;
}
section.consultorio .galery .image.horizontal {
    grid-column: span 2;
}
section.lead {
    min-height: 450px;
}
section.lead .box-form h3{
    margin-bottom: 10px;
}
@media(max-width: 1100px) {
    section.consultorio h2{
        text-align: left;
    }
    section.consultorio .diferenciais{
        flex-direction: column;
        row-gap: 20px;
    }
}
@media(max-width: 768px){
    section.consultorio:before{
        width: 100%;
    }
    section.consultorio .galery {
        display: flex;
        flex-direction: column;
    }
    section.consultorio .galery .image{
        width: 100% !important;
    }
}
@media(max-width: 468px){
    .content_video_lead .video {
        width: 80% !important;
        height: auto !important;
    }
}