/********** Template CSS **********/


/* @font-face {
    font-family: Poppins;
    src: url(fonts/Poppins.ttf);
} */


body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;

    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #111
}

.my-font {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 900;
}

.primary {
    color: #aa2c34;
}

.secondary {
    color: #0b412b;
}

.faixa-imagem {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 10px 30px;
    top: -4%;
    rotate: -1deg;
}

.faixa-imagem::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/bck-text.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Texto corrigido e acima da imagem */
.faixa-imagem .texto {
    position: relative;
    display: inline-block;
    color: white;
    z-index: 1;
    font-size: 1.3em;
    letter-spacing: .1em;
    /* font-size:calc(1.575rem + 3.9vw) */
}

:root {
    --primary: #aa2c34;
    --secondary: #0b412b;
    --light: #F7F8FC;
    --dark: #111111;
}

.bg-green {
    background-color: var(--secondary);
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    display: inline-flex;
    align-items: center;
    margin: 10px 0;
}

.btn i {
    margin-left: 8px;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background-color: #d54a4d !important;
    border: #aa2c34 1px solid;
}

.btn.btn-outline-primary:hover {
    background-color: #aa2c34 !important;
    border: #aa2c34 1px solid;
}

.btn.btn-secondary:hover {
    background-color: #00755d !important;
    border: #0b412b 1px solid;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    background-color: #aa2c34;
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    color: white;
    display: flex;
    align-items: center;

}

.top-bar a {
    color: white;
}

.top-bar ul,
.bottom-bar ul {
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0px;
    margin: 0px;
}

@media (max-width: 1140px) {
    .top-bar ul {
        display: block;
          margin-left: 15px;
    }

    .top-bar ul li:last-child {
        float: inline-end;
        margin-top: -37px;
        margin-right: 15px;
    }
}

@media (max-width: 992px) {

    .top-bar {
        display: none;
    }
}

.bottom-bar {
    background-color: #aa2c34;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    color: white;
    display: flex;
    position: fixed;
    align-items: center;
    margin-top: -120%;
    padding: 15px;
    transition: transform 0.2s ease-in-out
}

.bottom-bar a {
    color: white;
    display: flex;
}



.bottom-bar ul {
    display: inline-block;
    text-align: center;
}

.bottom-bar ul li {
    padding: 5px 0px;
    display: inline-flex;

}

@media (min-width: 992px) {
    .bottom-bar {
        display: none;
    }
}




.navbar {
    background-color: #FFFFFF;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #0b412b;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link {
    color: #0b412b;
     /* font-weight: bold !important; */

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .dropdown:hover {
    color: #aa2c34;
}


.dropdown {
    position: relative;
    display: inline-block;
    padding: 25px 15px;
    color: #fff;
    font-weight: 500;
    outline: none;
    background: #0b412b;
}

.navbar p {
    margin: 0 !important;
    align-content: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 12px;
    z-index: 1;
    margin: 10px 0px 0px -15px;
}

.hide-pc {
    display: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    padding: 10px 15px !important;
}


@media (max-width: 991.98px) {

    .dropdown {
        color: #0b412b;
        font-weight: 500;
        background: #fff;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active,
    .navbar .navbar-nav .dropdown:hover {
        color: #0b412b;

    }

    .hide-pc {
        display: inline-block;
    }

    .dropdown-content {
        display: block;
        background-color: transparent;
        box-shadow: none;
        margin: 0px;
    }


    .navbar .navbar-nav {
        margin-top: 70px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: transparent;
        height: 100vh;
        background-image: #0b412b;

    }

    .navbar .navbar-nav .nav-link,
    .dropdown {
        padding: 10px 0;
    }

}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/

.carousel-caption h1 {
    text-shadow: rgb(0, 0, 0) 1px 0 1px;
    background-color: rgba(10, 10, 10, 0);
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 50% 50% 0px;
}

.carousel-caption h2 {
    color: #fff !important;
    text-shadow: rgb(37, 37, 37) 1px 0 5px;
    background-color: rgba(10, 10, 10, 0);
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 50% 50% 0px;
    font-size: 1.5rem;
}

.carousel-caption {
    display: flex;
    justify-content: center;
    z-index: 1;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

/* 
#header-carousel {
    height: 100%;
}

#header-carousel img {
   background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
} */


#header-carousel img {
    min-height: 700px;
    position: relative;

    object-fit: cover;

}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 700px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    height: 32rem;
    background: url(../img/about-header.jpg) center right no-repeat;
    background-size: cover;
}

.page-header-menu {
    height: 32rem;
    background: url(../img/menu-header.jpg) center right no-repeat;
    background-size: cover;
}

.page-header-contato {
    height: 32rem;
    background: url(../img/contato-header.jpg) center right no-repeat;
    background-size: cover;
}

.page-header h1,
.page-header-menu h1,
.page-header-contato h1 {
    color: #fff;
    text-shadow: rgb(0, 0, 0) 1px 0 1px;
    background-color: rgba(10, 10, 10, 0);
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    position: absolute;
    top: 40%;
    left: 30%;
    transform: translate(-30%, -40%) !important;
}



.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header h1 {
    font-size: 2rem;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.text-start,
.text-start a,
.text-start i,
.text-end,
.text-end i,
.text-end a {
    color: #fff;
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
    color: #fff;
}

/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}


.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item img {
    transition: .5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item small a:hover {
    color: var(--primary) !important;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.primary {
    color: #aa2c34 !important;
    color: var(--primary);
}

.secudary {
    color: #0b412b !important;
}


/********************* shopping Demo-1 **********************/
/* 
@media only screen and (max-width:990px){.product-grid{margin-bottom:30px}
} */



.container_foto {
    background-color: rgba(57, 62, 93, 0.7);
    padding: 0;
    overflow: hidden;
    margin: 0px;
    margin: 5px solid var(--secondary);

}

.container_foto article {
    padding: 10%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;


}

.container_foto article h2 {
    font-size: 3rem;
    text-shadow: rgb(0, 0, 0) 1px 0 1px;
    background-color: rgba(10, 10, 10, 0);
    opacity: 1;

}

.container_foto img {
    width: 100%;
    top: 0;
    left: 0;
    opacity: 100;
    -webkit-transition: all 4s ease;
    -moz-transition: all 4s ease;
    -o-transition: all 4s ease;
    -ms-transition: all 4s ease;
    transition: all 4s ease;
}

.ver_mas {
    background-color: #0b412b;
    position: absolute;
    padding: 30px 0px 0px 0px;
    width: 100%;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    transform: translate(0px, 70px);
    -webkit-transform: translate(0px, 70px);
    -moz-transform: translate(0px, 70px);
    -o-transform: translate(0px, 70px);
    -ms-transform: translate(0px, 70px);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.ver_mas p {
    color: #fff;
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding: 0px 25px;
}

.btn-menu {
    display: block;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.container_foto:hover {
    cursor: pointer;
}

.container_foto:hover img {
    transform: scale(1.2);
}

.container_foto:hover article {
    z-index: -1;
    transform: translate(-150px, 100px);
    -webkit-transform: translate(-150px, 100px);
    -moz-transform: translate(-150px, 100px);
    -o-transform: translate(-150px, 100px);
    -ms-transform: translate(-150px, 100px);
}

.container_foto:hover .ver_mas {
    transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    opacity: 2;
}

.details i {
    font-size: 3rem;
    text-align: center;
    color: #0b412b
}

#team .card {
    border: none;
    background: #ffffff;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.frontside .card,
.backside .card {
    min-height: 412px;
    display: inline-grid;
    vertical-align: middle;
}

.backside .card a {
    font-size: 18px;
}


.wpp {
    position: fixed;
    left: 95%;
    bottom: 45px;
    z-index: 99;
    color: #25D366 !important;
    transition: .5s;
}



.wpp:hover {
    color: #fff !important;
    padding: 15px;
    background-color: #25D366;
    border-radius: 100%;
    border-bottom-left-radius: 10px;
}

.hide {
    opacity: 0;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
}

.show {
    opacity: 1;
    transition: opacity .5s ease-out, visibility 0s linear 5s;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
    -moz-animation: tada 1s 15s infinite alternate;
    -o-animation: tada 3s 15s infinite alternate;
    -webkit-animation: tada 1s 15s infinite alternate;
    animation: tada 3s 5s infinite alternate;
}

.animated2 {
    animation-duration: 3s;
    animation-fill-mode: both;
}

.tada2 {
    -webkit-animation-name: tada;
    animation-name: tada;
    -moz-animation: tada 5s 1s infinite alternate;
    -o-animation: tada 5s 1s infinite alternate;
    -webkit-animation: tada 5s 1s infinite alternate;
    animation: tada 5s 1s infinite alternate;
}



#menu .photo-Bebidas {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-size: cover;
    margin: 2.3rem 0rem;
}

#menu .photo-per-iniziare {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/cardapio-index/entradas.jpg) center right no-repeat;
    background-size: cover;
    margin: 2.3rem 0rem;
}

#menu .photo-Saladas {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-size: cover;
    margin: 2.3rem 0rem;
}

#menu .photo-Risotos {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-size: cover;
    margin: 2.3rem 0rem;
}

#menu .photo-Carnes {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-size: cover;
    margin: 2.3rem 0rem;
}

#menu .photo-Guarnições {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-size: cover;
    margin: 2.3rem 0rem;
}

#menu .photo-Massas {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-size: cover;
    margin: 2.3rem 0rem;
}

#menu .photo-Vinhos {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-size: cover;
    margin: 2.3rem 0rem;
}

#menu .photo-Doces {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-size: cover;
    margin: 2.3rem 0rem;
}

#menu .photo-pizza {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-size: cover;
    margin: 2.3rem 0rem;
}


#menu .photo-pizzas-doces {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-size: cover;
    margin: 2.3rem 0rem;
}

.option-menu-title {
    text-transform: uppercase;
    color: #0b412b;
    font-weight: 600;
}

#menu .section-header h1 {
    color: #aa2c34;
}

#menu h1 {
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 100;
}

#menu .hr-menu {
    border: 2px solid #0b412b;
    width: 100%;
}

#menu .list-group-item {
    border: none;
    border-bottom: 1px solid #0b412b;
    padding: 0 auto;
}

#menu .tab-content .tab-pane h3 {
    text-align: center;
}

#menu .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

#menu .list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

#menu .badge {
    border-radius: 0;
    background-color: #0b412b;
    font-size: 12px;
    color: #fff;
}

#menu .list-group-item h4 {
    text-align: left;
    color: #0b412b;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 900;
    font-family: "Open Sans", sans-serif;
}

#menu .list-group-item p {
    text-align: left;
    color: #555555;
    font-weight: 500;
    font-style: italic;
    font-size: 14px;

}

#menu .list-group-item p::first-letter {
    text-transform: uppercase;
}

#myMenuFixed .nav {
    background-color: #fff !important;
    display: flex !important;
    justify-content: center !important;
}

#myMenuFixed {
    background-color: #fff !important;


}

.fixed-scroled {
    padding: 20px;
    width: -webkit-fill-available;
    background-color: #fff;
    position: fixed;
    top: 75px;
    z-index: 99;
    transition: 1s;
}

#bebidas,
#entradas,
#saladas,
#Risotos,
#carnes,
#guarnicoes,
#massas,
#vinhos,
#sobremesas,
#pizzas,
#pizzas-doces {
    scroll-behavior: smooth;
    scroll-margin-top: 200px !important;
}

.video-testimonial-block2 {
    position: relative;
    width: auto;
    height: 500px;
    overflow: hidden;
}

.video-testimonial-block {
    position: relative;
    width: auto;
    height: 600px;
    overflow: hidden;
}


.video-testimonial-block .video-thumbnail,
.video-testimonial-block2 .video-thumbnail {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    background-size: cover;
    top: 0;
    left: 0;
}

/* .video-testimonial-block .video-thumbnail img
 {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    background-size: cover;
    top: 0;
    left: 0;
} */

.video-testimonial-block .video iframe,
.video-testimonial-block2 .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0px;
}

.video-testimonial-block .video-play,
.video-testimonial-block2 .video-play {
    z-index: 2;
    position: absolute;
    top: 45%;
    left: 45%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    color: #F7F8FC;
    text-shadow: rgb(0, 0, 0) 1px 0 1px;
    background-color: rgba(10, 10, 10, 0);
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 50% 50% 0px;
}

.video-testimonial-block .video-play:hover {
    text-shadow: #0b412b 5px 0 5px;
    background-color: #0b412b10;
    opacity: 1;


}

@media (max-width: 992px) {
    .wpp {
        left: 80%;
    }

    .col-reverse {
        flex-direction: row-reverse;
    }

    .fixed-scroled,
    .pc {
        display: none;
    }

    .navbar-expand-lg {
        top: 0px !important;
    }


    .video-testimonial-block {
        height: 360px;
    }

    .video-testimonial-block2 {
        height: 170px;
        margin-bottom: 50px;

    }
}


@media (min-width: 993px) {
    .cel {
        display: none;
    }



}

.navbar-brand img {
    position: absolute;
    margin-top: -1.5%;
    max-width: 150px;
}


@media (max-width: 1440px) {
    .navbar-brand img {
        position: absolute;
        margin-top: -2%;
        max-width: 140px;
    }


    .faixa-imagem .texto {
        font-size: 1em;
    }
}

@media (max-width: 992px) {

    .top-bar {
        display: none;
    }

    .navbar-brand img {
        margin-top: -2.3%;
        max-width: 130px;

    }

}

@media (max-width: 580px) {
    .navbar-brand img {
        margin-top: -4%;
        max-width: 120px;
    }

    .carousel-caption h2 {
        max-width: 80%;
        text-align: center;
        display: inline-flex;
    }

    .faixa-imagem .texto {
        font-size: .9em;
    }
}