@import url("../plugins/flaticon/css/flaticon.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0');
body {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
  color: #1B1717;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* colors */

.text-primary-fgl {
  color: #CC2B00!important;
}

.text-secondary-fgl {
  color: #373435!important;
}

.bg-primary-fgl {
  background: #CC2B00;
  color: #fff;
}

.bg-secondary-fgl {
  background: #373435;
  color: #fff;
}

.bg-primary-fgl > p,
.bg-primary-fgl > span,
.bg-primary-fgl > a,
.bg-primary-fgl > button,
.bg-secondary-fgl > p,
.bg-secondary-fgl > span,
.bg-secondary-fgl > a,
.bg-secondary-fgl > button {
  color: #fff;
}


/* Link / button */

a {
  color: #1a1a1a;
}

a:hover {
  color: #000;
}

a.btn-primary-fgl {
  color: #CC2B00!important;
}

a.btn-primary-fgl:hover {
  color: #CC2B00!important;
}

a.btn-outline-fgl {
  color: #CC2B00!important;
  border: solid 2px #CC2B00;
}

a.btn-secondary-fgl {
  background: #373435;
  color: #fff;
}

a.btn-secondary-fgl:hover {
  background: #1d1d1d;
  color: #fff;
}

a.btn-white-fgl {
  color: #fff!important;
}

a.btn-white-fgl:hover {
  color: #CC2B00!important;
}

a.btn-fgl-transparent {
  background: none;
}

a.btn-fgl-transparent:hover {
  color: #CC2B00!important;
}

/* Input */

.group {
  position:relative;
}
input {
  font-size:18px;
  padding:10px 10px 10px 5px;
  display:block;
  border:none;
  border-bottom:1px solid #757575;
}
input:focus {
  outline:none;
}

/* LABEL ======================================= */
label 				 {
  color:#999;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  max-height: 1.33em;
  word-break: break-all;
  overflow: hidden;
  transition:0.2s ease all;
  -moz-transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
}

/* active state */
input:focus ~ label, input:valid ~ label 		{
  top:-20px;
  font-size:14px;
  color:#000;
}

/* BOTTOM BARS ================================= */
.bar 	{ position:relative; display:block; }
.bar:before, .bar:after 	{
  content:'';
  height:2px;
  width:0;
  bottom:1px;
  position:absolute;
  background:#000;
  transition:0.2s ease all;
  -moz-transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%;
}

/* active state */
input:focus ~ .bar:before, input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position:absolute;
  height:60%;
  width:100px;
  top:25%;
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
  from { background:#000; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
  from { background:#000; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
  from { background:#000; }
  to 	{ width:0; background:transparent; }
}

/* Header */

.header-uper {
  padding: 0!important;
  position: fixed;
  top: 0;
  left: auto;
  right: auto;
  height: 110px;
  width: 100vw;
  z-index: 1000;
  background: #fff;
  transition: all .25s;
}

.action-header {
  margin: 0;
  padding: 0;
  height: 75px;
  vertical-align: middle;
  align-items: center;
  justify-content: space-between;
  margin-left: 250px;
}

li.item.item-menu.item-menu-last-icons {
  position: relative;
  height: 24px;
}

li.item.item-menu.item-menu-last-icons:before {
  content: '';
  height: 24px;
  width: 2px;
  background: #999;
  position: absolute;
  left: -15px;
}

li.item.item-menu.item-menu-last-icons ul {
  padding: 0;
}

li.item.item-menu.item-menu-last-icons ul li {
  padding: 0 15px;
}

li.item.item-menu.item-menu-last-icons ul li:last-child {
  padding-right: 0;
}

.header-uper.scroll-header,
.header-uper.scroll-header .item.item-menu {
  height: 90px;
  transition: all .25s;
}


.header-uper .content-header-fgl {
  display: flex;
  height: 110px;
  vertical-align: middle;
  align-items: center;
}

.scroll-header.header-uper .content-header-fgl {
  height: 90px;
}

.content-header-fgl figure,
.content-header-fgl .contact-info {
  margin: 0;
}

.content-header-fgl .btn-fgl,
.nav-content-search .btn-fgl {
  padding: 4px 10px;
  border-left: none;
  border-width: 2px;
}

.content-header-fgl .btn-fgl:hover {
  background: #fff;
  color: #CC2B00;
  font-weight: bold;
}

.form-control:focus {
    border: 2px solid #CC2B00!important;
}

.form-control:focus + .content-header-fgl .btn-fgl {
    border: 2px solid #CC2B00!important;
}

.content-header-fgl .btn-fgl i:before {
  margin: 0;
  font-size: 18px;
}

.btn-wpp-mobile {
  width: 70px;
  height: 70px;
  background: #25d366;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  box-shadow: 0 0 3px #000;
}
.btn-wpp-mobile i {
  margin: 0 auto;
  line-height: 70px;
}

.btn-wpp-mobile i:before {
  font-size: 2.8em;
  color: #fff;
}

.navbar-fgl .logo-mobile figure{
  margin: 0;
}

.navbar-fgl .logo-mobile img{
  width: 140px;
}

.nav-content-search {
  padding: 20px 0;
}

.nav-content-search .inpt-fgl {
  padding: 20px 15px;
}

.nav-content-search .input-group-append i:before {
  margin: 0;
}

/* Header Fim */

/* Navbar */

.navbar-default.navbar-fgl {
  background: none!important;
  padding: 0!important;
  border-top: solid 2px #efefef;
  border-bottom: solid 4px #faaa31;
}

nav.navbar {
  background: none!important;
}

.navbar-fgl .navbar .navbar-nav li a {
  color: #666!important;
  padding: 10px 8px;
}

.navbar-fgl .navbar .navbar-nav li.active a {
  color: #CC2B00!important;
}

.nav-content-frases {
  display: none;
  background: #e7e6e9;
  padding: 10px;
}

.nav-content-frases h3{
  font-size: 1.5em;
  color: #CC2B00!important;
}

.navbar.navbar-fgl button.navbar-toggler {
  background: none;
  border: none;
  padding: 0;
}

.submenu-item:hover > .dropdown-menu {
  display: flex;
}

.submenu-item > .content-all-results-menu {
    flex-direction: column;
    border: none;
    border-radius: 0;
    color: #fff;
    right: 0!important;
    position: fixed!important;
    top: auto!important;
    left: 0!important;
    width: 100vw!important;
    -webkit-transform: initial!important;
       -moz-transform: initial!important;
        -ms-transform: initial!important;
         -o-transform: initial!important;
            transform: initial!important;
    margin: 0 auto;
    padding: 0;
    max-height: max-content;
    background: #CC2B0099;
}

.submenu-item > .content-all-results-menu a {
    color: #fff;
}

.header-uper .contact-info .item.item-menu a.content-destaque-categoria:hover,
.header-uper .contact-info .item.item-menu a.content-destaque-categoria:active,
.header-uper .contact-info .item.item-menu a.content-destaque-categoria:focus {
  background: none!important;
  color: #CC2B00;
}

.header-uper .contact-info .item.item-menu a:after {
  opacity: 0;
}

.header-uper .contact-info .item.item-menu a:hover::after {
  opacity: 1;
}

/* Fim Navbar */

/* Breadcrumb */
.section.section-fgl.section-breadcrumb {
  padding: 30px 15px;
  background: #FCCD23;
}

.section.section-fgl.section-breadcrumb .title-fgl:before {
  content: '';
  width: 80px;
  height: 80px;
  border: 10px solid rgba(0, 0, 0, 0.10);
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 10px;
}

.section-breadcrumb .items-breadcrumb ul{
  margin: 0;
}

.section-breadcrumb .items-breadcrumb a{
  font-size: 1.2em;
  color: #666;
}

.section-breadcrumb .items-breadcrumb li i:before{
  font-size: 0.5em;
  margin: 0 5px;
  color: #666;
}


/* Fim breadcrump */

/* Slider */

.content-page-slider {
  background: #FCCD23; 
  min-height:60vh;
}

.content-page-slider-topo {
  padding-top: 120px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.content-page-slider-topo::before {
  content: '';
  position: absolute;
  background: #FCCD23;
  height: 120px;
  width: 100vw;
  top:0;
  bottom: 0;
}

.content-page-slider-topo .container {
  margin-top: -60px;
}

.content-text-slider h2.text-destaque{
  font-size: 7em!important;
  line-height: 0.5em!important;
  margin: 0;
  color: #CC2B00!important;
}

.content-text-slider p {
  color: #CC2B00!important;
  font-size: 2em!important;
  line-height: 2em!important;
  text-transform: uppercase;
  margin: 0;
}

.content-text-slider span.text-bg {
  background: #fff;
  padding: 10px;
  color: #fdac31;
  text-transform: uppercase;
  font-weight: bold;
}

.content-hero-slide {
  margin-top: 130px;
  padding-bottom: 20px;
  vertical-align: middle;
  align-items: center;
  align-content: center;
}

.hero-slider.slider-fgl {
  color: #CC2B00;
}

.slider-fgl-wrapper {
  width: 100%;
  margin: 0 auto;
  margin-top: 130px!important;
}

.hero-slider.slider-fgl .slick-dots li.slick-active button:before {
    color: transparent;
  border: solid #fff 1px;
  border-radius: 50%;
}

.slider-fgl .slick-dots li button:before {
  opacity: 1;
  color: white;
}

/* Fim Slider */

/* Aside */

.content-filter-fgl {
  border: 3px solid #CC2B00;
  border-radius: 10px!important;
}

ol.list-filter-fgl li {
  position: relative;
  margin-bottom: 5px;
  font-size: 1.2em;
}

ol.list-filter-fgl li a {
  color: #666666;
}

ol.list-filter-fgl li:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #eee;
  display: block;
}

.content-filter-fgl .slidecontainer {
  width: 100%;
}

.content-filter-fgl .slider {
  -webkit-appearance: none;
  width: 100%;
  height: 7px;
  background: #b2b2b2;
  outline: none;
  -webkit-transition: .2s;
  transition: opacity .2s;
  position: relative;
}

.content-filter-fgl .slider:hover {
  opacity: 1;
}

.content-filter-fgl .slider:before {
  content: '';
  position: absolute;
  left: 0px;
  top: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #666;
  z-index: 1;
}

.content-filter-fgl .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #666;
  cursor: pointer;
  z-index: 2;
}

.content-filter-fgl .slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
}

/* Fim Aside */

/* CTA */

.cta.cta-fgl {
  padding: 0;
  background: #e2e2e2;
}

.cta.cta-fgl .cta-block .item{
  background: none;
  display: flex;
  align-items: center;
  vertical-align: middle;
  border-left: solid 2px #bababa;
}

.cta.cta-fgl .cta-block .item:first-child{
  border-left: none;
}

.cta.cta-fgl .cta-block .item i{
  display: contents;
}

.cta.cta-fgl .cta-block .item i:before{
  color: #CC2B00;
  font-size: 1.5em!important;
}

.cta.cta-fgl .cta-block .item .content-text-before-slide{
  margin-left: 15px;
  color: #CC2B00;
  font-size: 1em;
}

.cta.cta-fgl .cta-block .item .content-text-before-slide h4{
  font-size: 1em;
}

/* Fim CTA */

/* Categorias */

.section-category h4,
.section-category p,
.section-category h3,
.section-category a {
  font-family: "Poppins", sans-serif;
  color: #CC2B00;
}

.section-category h4,
.section-category p,
.section-category h3,
.section-category a {
  font-family: "Poppins", sans-serif;
  color: #CC2B00!important;
}

.section-category h4 {
  font-size: 0.75em;
}

.section-category h4:before {
  display: none;
}

.section-category p {
  font-family: 'Aero Matics Regular'!important;
  text-transform: uppercase;
  font-size: 0.6em;
  line-height: 0.6em;
  margin: 0;
}

.section-category h3 {
  font-size: 1.3em;
}

.section-category a {
  color: #fff!important;
  text-transform: uppercase;
  display: block;
  width: 80%;
  margin: 10px auto 0;
  letter-spacing: 2px;
  font-size: 0.5em;
}

.section-category .banner-fgl{
  display: inline-block;
  position: relative;
  height: 450px;
  width: 100%;
}

.section-category .banner-fgl::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: '';
  z-index: 1;
  background: rgba(0,165,213,0.5);
  background: -moz-linear-gradient(top, rgba(27, 59, 66, 0.2) 0%, rgba(0, 168, 107, 0.2) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(27, 59, 66, 0.2)), color-stop(100%, rgba(250,170,49,0.5)));
  background: -webkit-linear-gradient(top, rgba(27, 59, 66, 0.2) 0%, rgba(0, 168, 107, 0.2) 100%);
  background: -o-linear-gradient(top, rgba(27, 59, 66, 0.2) 0%, rgba(0, 168, 107, 0.2) 100%);
  background: -ms-linear-gradient(top, rgba(27, 59, 66, 0.2) 0%, rgba(0, 168, 107, 0.2) 100%);
  background: linear-gradient(to bottom, rgba(27, 59, 66, 0.2) 0%, rgba(0, 168, 107, 0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#CC2B00', endColorstr='#faaa31', GradientType=0 );
}

.section-category .banner-fgl img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.section-category .banner-fgl .contents {
  position: absolute;
  left: auto;
  right: auto;
  width: 100%;
  bottom: 15px;
  font-size: 40px;
  color: black;
  background: none!important;
  z-index: 2;
}
/* Fim Categorias */

/* Produtos em destaque e mais vendidos */


.content-img-product {
  position: relative;
  overflow: hidden;
  z-index: -1;
}

.content-description-product {
  margin: -40px 1.5em 0;
  background: #fff;;
}

.product:hover .btn-add-to-cart {
  display: block;
}
.btn-add-to-cart {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(255,255,255,.3);
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .9em;
}

.section-products-featured h6,
.section-plus-sale h6,
.section-products h6,
.section-product-sugestion h6 {
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}

.section-products-featured h5,
.section-plus-sale h5,
.section-products h5,
.section-product-sugestion h5 {
  font-family: "Poppins", sans-serif;
}

.section-products-featured a.btn-fgl-second,
.section-plus-sale a.btn-fgl-second,
.section-products a.btn-fgl-second,
.section-product-sugestion a.btn-fgl-second {
  text-transform: uppercase;
  width: 100%;
  padding: 0;
  margin-top: 5px
}

.section-products-featured img.img-product,
.section-plus-sale img.img-product,
.section-products img.img-product,
.section-product-sugestion img.img-product {
  width: 100%;
  min-width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.section-products-featured .category-name,
.section-plus-sale .category-name,
.section-products .category-name,
.section-product-sugestion .category-name {
  color: #707070;
  font-size: 0.9em;
}

.section-products-featured .product-name,
.section-plus-sale .product-name,
.section-products .product-name,
.section-product-sugestion .product-name {
  color: #000;
  font-size: 1.2em;
  font-weight: 500;
}

.section-products-featured .last-price,
.section-plus-sale .last-price,
.section-products .last-price,
.section-product-sugestion .last-price {
  color: #7f7f7f;
  font-size: 1.2em;
  margin-top: 15px;
}

.section-products-featured .price,
.section-plus-sale .price,
.section-products .price,
.section-product-sugestion .price{
  color: #CC2B00;
  font-size: 1.2em;
  font-weight: 500;
}

.section-products-featured .installment-price,
.section-plus-sale .installment-price,
.section-products .installment-price,
.section-product-sugestion .installment-price {
  color: #353535;
  font-size: 1.2em;
}

.carousel-mobile-fgl {
  padding-bottom: 30px;
}

.section-products-featured .carousel-indicators,
.section-plus-sale .carousel-indicators,
.section-category .carousel-indicators,
.section-product-sugestion .carousel-indicators,
.section-product .carousel-indicators  {
  bottom: -90px;
}

.section-products-featured ol.carousel-indicators li,
.section-plus-sale ol.carousel-indicators li,
.section-category ol.carousel-indicators li,
.section-product-sugestion ol.carousel-indicators li,
.section-product ol.carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: red;
  border: none;
}

.section-products-featured ol.carousel-indicators li.active,
.section-plus-sale ol.carousel-indicators li.active,
.section-category ol.carousel-indicators li.active,
.section-product-sugestion ol.carousel-indicators li.active,
.section-product ol.carousel-indicators li.active {
  background: #CC2B00;
}

.section-products-featured .etiqueta span{
  position: absolute;
  line-height: 1em;
  font-weight: bold;
  font-size: 1em;
  padding: 2px 5px;
  top: 10px;
  left: 25px;
  background: #fff;
  border: solid 1px #CC2B00;
  color: #CC2B00;
  text-transform: uppercase;
}

.inner-box:hover > .img_holder img{
  border: solid 2px #8ca6ab;
}

.inner-box:hover > .image-content .product-name{
  font-weight: 700;
}

.inner-box > .image-content .btn.btn-fgl-first,
.inner-box > .image-content .btn{
  border: solid 2px;
  border-color: #fff;
}

.inner-box:hover > .image-content .btn.btn-fgl-first{
  border: solid 2px #01603e;
}


.inner-box:hover > .image-content .btn{
  border: solid 2px #8ca6ab;
}

/* Fim Produtos em destaque e mais vendidos */

/* Instagram */

.insta-fgl {
  margin-top: 20px;
  margin-bottom: 20px;
}


.insta-fgl img {
  border-radius: 10px;
}

/* Fim Instagram */

/* Footer */


.logo-slider {
  margin-top: -80px;
}

.logo-slider img {
  height: 50px;
  margin: 0 auto;
  filter: grayscale(1);
}

.footer-cta {
  color: #fff;
  padding: 2rem 1rem;
  position: relative;
}
.footer-cta h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.link-email-footer a {
  font-size: 0.77em;
  color: #000;
  font-weight: 600;
}

.social-icons img {
  filter: opacity(0.7);
  -webkit-filter: opacity(0.7);
}

.content-newsletter-fgl .form-group,
.content-newsletter-fgl ul.list-inline.social-icons {
  margin: 0;
}

.footer-main .footer-top .content-newsletter-fgl input.inpt-newsletter {
  font-size: initial;
  line-height: initial;
  font-weight: 100;
  background: #e7e6e9;
  padding: 25px 20px;
  border-radius: 10px!important;
  margin-right: 10px;
  text-transform: inherit;
  color: #CC2B00;
}

.footer-main .footer-top .content-newsletter-fgl input.inpt-newsletter:focus {
  border: solid 2px #CC2B00!important;
}

.content-newsletter-fgl .input-group-append button {
  padding: 0 15px;
  border-radius: 10px!important;
  color: #CC2B00;
  letter-spacing: 0;
  font-size: 1.2em;
  border: none;
}

.content-title-newsletter {
  text-align: right;
  color: #fff;
}

.content-newsletter-fgl ul.list-inline.social-icons {
  display: inline-flex;
}

.content-newsletter-fgl ul.list-inline.social-icons li a i{
  font-size: 16px;
  color: #fff;
}

.social-midia-fgl h4{
  color: #fff;
  margin-bottom: 8px;
}

.social-midia-fgl i:before{
  font-size: 25px;
  margin-right: 10px;
}

.footer-fgl .footer-top {
  background: #373435;
  padding: 40px 15px!important;
}

.footer-fgl .footer-top .title-footer-top {
  color: #fff!important;
  font-family: "Poppins", sans-serif;
  font-size: 1.5em;
  padding-bottom: 35px;
  font-weight: 600;
}

.footer-fgl .footer-top .subtitle-footer-top {
  color: #CC2B00!important;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  padding-bottom: 15px;
}

.footer-fgl .footer-top .menu-link li {
  padding-bottom: 20px!important;
  line-height: 1.2em;
}

.footer-fgl.footer-main .footer-top .menu-link li a,
.footer-fgl.footer-main .footer-top .menu-link li span {
  color: #CC2B00;
  font-size: 0.9em;
  line-height: 1;
}

.footer-fgl.footer-main .footer-top .menu-link li a:hover {
  font-weight: 700;
}

.footer-fgl-cards img {
  width: 100%;
}

.footer-fgl-icons-secure {
  position: initial
}

.footer-fgl-icons-secure img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
}

.footer-fgl .footer-bottom {
  color: #fff!important;
  padding: 15px 0;
}

.footer-fgl .footer-bottom .copyright-text p {
  color: #fff;
}

.footer-social-media {
  background: #fff;
}

.footer-social-media ul.social-icons {
  margin: 0;
  padding: 0 0 10px;
}

.content-newsletter-fgl-bottom ul.social-icons > li > a {
  background: none!important;
  margin-right: 5px;
}

.content-newsletter-fgl-bottom ul.social-icons > li > a > i:before {
  font-size: 2em!important;
  color: #CC2B00;
  padding: 10px 0;
  margin-right: 10px!important;
}

.footer-social-media h4 {
  color: #fff;
  padding-top: 10px;
}

.footer-bottom-link li {
  margin-left: 0!important;
}

.logo-peterson img,
.woocommerce .logo-peterson img {
  max-width: 120px; 
}

/* Fim footer */

/*=========================================
=============== Páginas ===================
=========================================*/

/* Produto simples */

.carousel-vertical {
  max-width: 115px;
  max-height: 450px;
  overflow: overlay;
  position: relative;
}

.carousel-vertical ul li {
  width: 100%;
}

.carousel-vertical a {
  width: 100%;
}

.carousel-vertical a.nav-link {
  width: 100%;
  height: 85px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 0;
  object-fit: cover;
  display: block;
}

.carousel-vertical a.nav-link.active {
  border: solid 3px #CC2B00;
}

.carousel-vertical a.nav-link img {
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-vertical .img-product {
  width: 100%;
}

#productSimple .carousel-item {
  max-height: 450px;
  overflow: hidden;
}

#productSimple .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#productSimple figure.zoom {
  background-position: 50% 50%;
  position: relative!important;
  width: 100%!important;
  overflow: hidden;
  cursor: zoom-in;
}
#productSimple figure.zoom img:hover {
  opacity: 0;
}
#productSimple figure.zoom img {
  transition: opacity .5s;
  display: block;
  width: 100%;
}

#productSimple .carousel-indicators {
  display: flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
}

#productSimple .carousel-indicators li.active {
  background: #CC2B00;
  background: transparent;
  height: 20px;
  width: 20px;
  border: solid #CC2B00 3px;
}

#productSimple .carousel-indicators li {
  width: 15px;
  height: 15px;
  border: none;
  margin: 5px 7px;
  background: #CC2B00;
  opacity: 1;
  flex: none;
}

.content-price-product img {
  width: 100%;
}

#descriptionProduct.collapse:not(.show) {
    display: block;
    max-height: 200px;
    overflow: hidden;
}

#descriptionProduct.collapse:not(.show):before {
  content: "";
  position: absolute;
  height: 50px;
  top: 150px;
  left:0;
  width: 100%;
  margin: 0 15px;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */

}

.description-product a.btn-fgl-see-more.collapsed:after  {
    content: '+ Ler descrição completa';
}

.description-product a.btn-fgl-see-more:not(.collapsed):after {
    content: '- Fechar descrição completa';
}

.description-product a.btn-fgl-see-more {
  z-index: 1;
  position: absolute;
  width: fit-content;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.content-information-product h1,
.content-information-product h2,
.content-information-product h3,
.content-information-product h4,
.content-information-product h5,
.content-information-product h6,
.content-information-product span,
.content-information-product p {
  font-family: "Poppins", sans-serif;
}

.reference-product {
  color: #939393;
  text-transform: uppercase;
}

.content-rating-product ul li i{
  margin: 0;
  color: #CC2B00;
}

.content-price-product .price {
  font-size: 3.5em;
  font-weight: bold;
}

.content-price-product .installment-price {
  font-weight: 400;
}

.content-select-color .nav-tabs a.nav-link {
  padding: 0!important;
  width: 50px;
  height: 40px;
}

.content-select-color .nav-tabs a.nav-link,
.content-select-size .nav-tabs a.nav-link {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.content-select-color .nav-tabs a.nav-link.active,
.content-select-color .nav-tabs a.nav-link:active,
.content-select-color .nav-tabs a.nav-link:focus,
.content-select-size .nav-tabs a.nav-link.active,
.content-select-size .nav-tabs a.nav-link:active,
.content-select-size .nav-tabs a.nav-link:focus {
  border: 4px solid #CC2B00!important;
}

.content-select-size .nav-tabs a.nav-link.active,
.content-select-size .nav-tabs a.nav-link:active,
.content-select-size .nav-tabs a.nav-link:focus {
  padding: 3px!important;
}

#tabColor001 {
  background: #7A7653;
}

#tabColor002 {
  background: #FE554E;
}

#tabColor003 {
  background: #96D3E4;
}

.content-select-size a.nav-link {
  background: #ccc;
  padding: 5px!important;
  width: 50px;
}

.content-select-size a.nav-link.active {
  background: #ccc;
}

#productSimple .carousel-control-next,
#productSimple .carousel-control-prev {
  z-index: 100;
  top: 40px;
}

#productSimple .carousel-control-prev {
  transform: rotate(180deg);
}

#productSimple .carousel-control-next span:before,
#productSimple .carousel-control-prev span:before {
  font-size: 2.5em;
}

.box-notice-images {
  background: #CC2B00;
  color: #fff;
  padding: 8px 15px;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.box-notice-images small {
  line-height: 1;
  margin-right: 30px;
  display: block;
}

.box-notice-images a {
  position: absolute;
  right: 8px;
  left: auto;
  top: 10px;
  bottom: auto;
  height: 15px;
}

.box-notice-images a.glightbox i {
  color: #fff;
  padding-bottom: 8px;
  margin-bottom: 8px;
  line-height: 1;
  display: block;
  font-size: 1.5em;
}

/* Fim Produto simples */

/* Registrar */

.section-register a.btn-face,
.section-register button.btn-face {
  background: #6163a8;
  border-color: #6163a8;
  color: #fff;
}

.section-register a.btn-face:hover,
.section-register button.btn-face:hover {
  background: #51538c;
  border-color: #51538c;
  color: #fff;
}

.section-register a.btn-face:focus,
.section-register a.btn-face:active,
.section-register button.btn-face:focus,
.section-register button.btn-face:active {
  background: #51538c!important;
  border-color: #51538c!important;
  box-shadow: 0 0 0 0.2rem rgba(81, 83, 140, 0.45)!important;
}

.content-login-fgl .input-group label,
.content-login-fgl .input-group p,
.content-login-fgl .input-group a.btn {
  width: 80%;
  margin: 0 auto;
}

.content-register-fgl hr,
.content-register-fgl a.btn {
  width: 80%;
  margin: 0 auto;
  display: block;
}

.content-register-fgl hr {
  margin: 15px auto!important;
  background-color: #cbcbcb;
}

.content-login-fgl {
  border-right: solid 2px #cbcbcb;
}

/* Fim registrar */

/* Carrinho */

.card-fgl {
  background: #ebebeb;
  border: none;
  border-radius: 5px;
}

.content-img-card-product {
  height: 160px;
}

.content-img-card-product img {
  object-fit: cover;
  max-height: 100%;
  border-radius: 5px;
}

.content-cart-product-fgl .card-body {
  padding: 0 15px!important;
}

.card-fgl .card-body {
  padding: 0;
}

.content-cart-product-fgl .card-body .title-product,
.content-cart-product-fgl .card-body .reference-product {
  margin: 0;
  line-height: 1.2em;
}

.content-img-card-product button.close span,
.content-text-card-product button.close span {
  font-size: 50px;
  line-height: 25px;
}

.card-variable-cart li {
  margin-right: 20px;
}

.price-card li {
  margin-left: 20px;
}

.list-resume-price h5,
.list-resume-price h6 {
  font-family: "Poppins", sans-serif;
}

.list-resume-price li {
  padding: 10px 0;
  position: relative;
}

.list-resume-price li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #cccccc;
  bottom: 0;
  left: 0;
}

.list-resume-price li:last-child:before {
  display: none;
}

.list-resume-price li .col-6 {
  padding: 0;
}

/* Fim carrinho */

/* Checkout */
.footer-checkout .copyright-text {
  display: contents;
}
.footer-checkout .footer-top {
  padding: 15px!important;
}
.section.section-fgl.section-header-checkout {
  padding: 10px;
  background: #e7e6e9;
}

.section-header-checkout .row {
  display: flex;
  vertical-align: middle;
  align-items: center;
  height: 60px;
}
.section.section-fgl.section-header-checkout h3 {
  text-transform: uppercase;
}
.section.section-fgl.section-header-checkout figure {
  margin: 0;
}

.section.section-fgl.section-header-checkout img {
  width: 100px;
}
#checkout-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
#checkout-steps li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#checkout-steps li span.active {
    background: #CC2B00;
}
#checkout-steps li span {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 5px solid #454545;
}
#checkout-steps li.separator::before {
    position: relative;
    content: "";
    width: 100px;
    height: 5px;
    background: #454545;
    margin: 40px 0px;
    top: -14px;
}
#checkout-steps li:first-child {
  margin-right: -14px
}
#checkout-steps li:last-child {
  margin-left: -17px
}
.section.section-fgl.section-steps-checkout {
  padding: 15px 0;
}

.section.section-fgl.section-checkout {
  padding: 0 0 20px;
}

.section.section-fgl.section-checkout .item-product-checkout.card-fgl .card-body {
    padding: 0 15px;
}

.section.section-fgl.section-checkout .content-img-card-product {
    height: 110px;
}

.content-checkout-form-fgl .card-body {
  padding: 0!important;
}

.content-checkout-form-fgl .btn-group-fgl .btn-fgl-cta {
  float: right;
  width: fit-content;
}

.section.section-fgl.section-checkout .btn-group-fgl a.btn-fgl {
  font-family: "Poppins", sans-serif;
  font-size: 1.2em!important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Fim checkout */

/* media query's fgl */

@media screen and (max-width: 1199px) and (min-width: 992px) {

  .header-uper .contact-info .item {
    margin-right: 0!important;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .content-header-fgl .logo {
    margin: 0!important;
  }
  .content-header-fgl .logo img {
    width: 100%; 
  }
  .content-newsletter-fgl input.inpt-newsletter,
  .content-newsletter-fgl .input-group-append {
    flex: auto;
    margin-right: 0!important;
  }
  .content-newsletter-fgl .input-group-append #button-addon2 {
    padding: 10px;
  }
}

@media screen and (max-width: 991px) {
  .navbar.navbar-fgl > .container > nav{
    padding: 10px 0!important
  }
  .navbar-default.navbar-fgl {
    border-top: none!important;
    border-bottom: solid 2px #eee!important;
  }
  .navbar.navbar-fgl .navbar-collapse {
    margin-top: 15px;
  }
  .section.section-fgl {
    padding: 15px 0;
  }
}

@media screen and (max-width: 767px) {
  .btn-wpp-mobile {
    display: flex;
  }
  .footer-newsletter {
    height: 170px!important;
    background: #CC2B00!important;
  }
  .content-title-newsletter {
    padding: 15px;
    text-align: center;
  }
  .content-title-newsletter h3 {
    font-size: 1.5em;
    margin: 0 auto;
    float: none;
  }
  .content-newsletter-fgl-bottom h4 {
    font-size: 1.3em;
  }
  .footer-fgl-cards img {
    margin-bottom: 2.5em
  }
  .content-login-fgl {
    border-right: none;
    border-bottom: solid 2px #cbcbcb;
    padding-bottom: 25px;
  }
  .content-login-fgl .input-group label,
  .content-login-fgl .input-group p,
  .content-login-fgl .input-group a.btn,
  .content-register-fgl hr,
  .content-register-fgl a.btn {
    width: 100%;
    margin: 0 auto;
  }
  .content-login-fgl ,
  .content-register-fgl {
    margin-bottom: 35px;
  }
  .content-logo-checkout {
    text-align: center!important;
  }

  .content-checkout-form-fgl .btn-group-fgl,
  .section.section-fgl.section-checkout > .container > .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .content-checkout-form-fgl .btn-group-fgl a,
  .content-checkout-form-fgl .btn-group-fgl a.btn-fgl-cta {
    display: flex!important;
    text-align: center!important;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 575px) {
  .card-variable-cart {
    padding: 15px 0;
  }
  .card-variable-cart li {
    display: block;
  }
  .card-fgl .content-text-card-product .card-body {
    padding: 0!important;
  }
  .content-cart-product-fgl .btn-group-fgl > a {
    display: block!important;
  }
  .content-img-card-product {
    margin-bottom: 40px;
  }
  .card-price-cart .row > div.col-2,
  .card-price-cart .row > div.col-10 {
    display: contents;
  }
  .card-price-cart .row > div.col-2 label,
  .card-price-cart .row > div.col-10 ul {
    width: 100%;
  }
  .card-price-cart .row > div.col-10 ul li {
    width: 50%;
    display: block!important;
    margin: 0;
    float: left;
  }
  .card-price-cart .row > div.col-10 ul li:first-child {
    text-align: left;
  }
  .card-price-cart .row > div.col-10 ul li:last-child {
    text-align: right;
  }
  .card-price-cart .row > div.col-10 ul {
    margin: 0;
  }
  #checkout-steps li.separator::before {
    width: 50px;
    margin: 40px 0px;
  }
  .form-checkout.card-fgl .card-body > .container {
    padding: 0;
  }
  .footer-fgl-icons-secure img {
    position: relative!important;
    display: block;
    float: none;
    margin: 0 auto;
    width: 120px;
  }
}

@media screen and (max-width: 375px) {
  .content-newsletter-fgl input.inpt-newsletter,
  .content-newsletter-fgl .input-group-append {
    flex: auto;
    margin-right: 0!important;
  }
  .content-newsletter-fgl .input-group-append #button-addon2 {
    padding: 10px;
  }
}

/* Fim media query's fgl */

/*=== MEDIA QUERY ===*/
body {
  font-family: "Poppins", sans-serif;
}

input, button, select, textarea {
  font-family: "Poppins", sans-serif;
}

input.inpt-fgl {
  width: 100%;
  height: 40px;
  color: #777777;
  padding: 10px;
  background: #f4f4f4;
  border: 2px solid #CC2B00;
  border-radius: 5px;
}

.content-search input.inpt-fgl {
  border-right: none!important;
}

input.inpt-fgl-second {
  width: 100%;
  height: 40px;
  color: #777777;
  padding: 10px 25px;
  background: #f4f4f4;
  border-radius: 5px;
}

input.inpt-fgl-third {
  width: 100%;
  height: 25px;
  color: #777;
  padding: 5px 10px;
  background: #e1e1e1;
  border: none;
  border-radius: 5px;
  text-align: center;
}

section.section-fgl {
  padding: 40px 0;
}

.section-title {
  font-family: "Poppins", sans-serif;
  color: #1B1717;
  text-transform: capitalize;
}

.subtitle-fgl {
  font-family: "Poppins", sans-serif;
  color: #1B1717;
} 

.section-title p {
  font-family: "Poppins", sans-serif;
}

button.btn-fgl,
a.btn-fgl {
  background: #fff;
  border-color: #CC2B00;
  color: #CC2B00;
}

button.btn-fgl:hover,
a.btn-fgl:hover {
  background: #CC2B00;
  border-color: #CC2B00;
}

button.btn-fgl:focus,
button.btn-fgl:active,
a.btn-fgl:focus,
a.btn-fgl:active {
  background: #CC2B00!important;
  border-color: #CC2B00!important;
  box-shadow: 0 0 0 0.2rem rgba(0, 165, 213, 0.45)!important;
}

a.btn-fgl-first,
button.btn-fgl-first {
  font-family: "Poppins", sans-serif;
  width: 100%;
  text-transform: uppercase;
  color: #00720B;
  border: solid 3px #00720B;
  padding: 5px;
  font-weight: 700;
}

a.btn-fgl-first:hover,
button.btn-fgl-first:hover {
  color: #fff;
  background: #00720B;
  border-color: #00720B;
}

a.btn-fgl-first:focus,
a.btn-fgl-first:active,
button.btn-fgl-first:focus,
button.btn-fgl-first:active {
  color: #fff;
}

a.btn-fgl-second,
button.btn-fgl-second {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  background: #CC2B00;
  border-color: #CC2B00;
  color: #FFFFFF;
}

a.btn-fgl-second:hover,
button.btn-fgl-second:hover {
  background: #f83600;
  border-color: #f83600;
  color: #FFFFFF;
}

a.btn-fgl-second:focus,
a.btn-fgl-second:active,
button.btn-fgl-second:focus,
button.btn-fgl-second:active {
  background: #bfbfbf!important;
  border-color: #bfbfbf!important;
  box-shadow: 0 0 0 0.2rem rgba(27, 59, 66, 0.45)!important;
}

a.btn-fgl-third,
button.btn-fgl-third {
  background: #d7d7d7;
  border-color: #d7d7d7;
}

a.btn-fgl-third:hover,
button.btn-fgl-third:hover {
  background: #ccc;
  border-color: #ccc;
  color: #fff;
}

a.btn-fgl-third:focus,
a.btn-fgl-third:active,
button.btn-fgl-third:focus,
button.btn-fgl-third:active {
  background: #ccc!important;
  border-color: #ccc!important;
  box-shadow: 0 0 0 0.2rem rgba(222, 150, 40, 0.45)!important;
}

a.btn-fgl-cta,
button.btn-fgl-cta {
  background: #CC2B00;
  border-color: #cc2b00;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #FFF;
  border-radius: 0;
}

a.btn-fgl-cta-simple ,
button.btn-fgl-cta-simple {
  font-size: 1.2em!important;
}

a.btn-fgl-cta:hover,
button.btn-fgl-cta:hover {
  background: #f33500;
  border-color: #f33500;
  color: #fff;
}

a.btn-fgl-cta:focus,
a.btn-fgl-cta:active,
button.btn-fgl-cta:focus,
button.btn-fgl-cta:active {
  background: #f33500!important;
  border-color: #f33500!important;
  box-shadow: 0 0 0 0.2rem hsla(13, 100%, 48%, 0.45)!important;
}

.header-top .top-left h6 {
  font-size: 15px;
  line-height: 26px;
  color: #777777;
  font-weight: 400;
  padding: 14px 0px;
  font-family: "Poppins", sans-serif;
}

.header-top .top-right {
  float: right;
}

@media (max-width: 767px) {
  .header-top .top-right {
    float: unset;
    text-align: center;
  }
}

.header-top .top-left .contact-links li {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: #b2b2b7;
  margin-right: 40px;
  font-family: 'Open Sans', sans-serif;
}

.header-top .top-right .social-links {
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  .header-top .top-right .social-links {
    padding-left: 0;
  }
}

.header-top .top-right .social-links li {
  display: inline-block;
}

.header-top .top-right .social-links li i {
  width: 50px;
  height: 56px;
  line-height: 56px;
  margin: -1px;
  font-size: 16px;
  color: #777777;
  font-weight: 600;
  text-align: center;
  border: 1px solid #ececec;
}

.header-top .top-right .social-links li:hover i {
  color: #7b64cb;
  border-color: #7b64cb;
}

.header-uper {
  padding: 40px 0px;
}

.header-uper .logo {
  float: left;
}

.header-uper .right-side {
  float: right;
}

@media (max-width: 991px) {
  .header-uper .right-side {
    float: unset;
    text-align: center;
  }
}

.header-uper .contact-info {
  float: none;
  display: flex;
  width: 100%;
  padding: 0;
}

@media (max-width: 991px) {
  .header-uper .contact-info {
    padding-left: 0;
    float: unset;
    margin-bottom: 30px;
  }
}

.header-uper .link-btn {
  float: right;
}

@media (max-width: 991px) {
  .header-uper .link-btn {
    float: unset;
  }
}

.header-uper .contact-info .item {
  display: inline-flex;
  vertical-align: middle;
  height: 110px;
  align-items: center;
  margin: auto;
  padding: 0;
}

.header-uper.scroll-header .contact-info .item {
  height: 90px;
}

.header-uper .contact-info .item a {
  display: flex;
  padding: 8px;
  vertical-align: middle;
  align-items: center;
  margin: 0;
  border-radius: 8px;
}

.header-uper .contact-info .item .icon-box,
.navbar-fgl button.navbar-toggler {
  position: relative;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  display: block;
  margin-right: 7px;
  text-align: center;
}

.navbar-fgl button.navbar-toggler:active,
.navbar-fgl button.navbar-toggler:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.navbar-fgl button.navbar-toggler i:before {
  color: #CC2B00;
  text-align: center;
  display: contents;
}

.header-uper .contact-info .item .icon-box i:before {
  color: #5ec5cc;
  font-size: 22px;
}



.header-uper .contact-info .item.item-menu strong {
  color: #CC2B00;
  font-weight: 700!important;
}


.header-uper .contact-info .item.item-menu a:hover {
  background: #CC2B00!important;
}

.header-uper .contact-info .item a:hover {
  background: #e2e2e2!important;
}

.header-uper .contact-info .item.item-menu a:hover strong {
  color: #fff!important;
}

.header-uper .contact-info .item.item-menu a:hover .icon-box {
  position: relative;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  display: block;
  margin-right: 7px;
  text-align: center;
}

.item.item-menu a {
  height: 100%;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 0 10px;
  width: 100%;
  text-transform: uppercase;
}

.item.item-menu a:hover {
  background: #CC2B00!important;
  color: #FFF;
}

.content-menu .item.item-menu {
  height: 110px;
  position: relative;
}

.header-uper .item.item-menu .dropdown-content {
  display: none;
  position: fixed;
  z-index: -1;
  top: 110px;
  left: 0;
  text-align: center;
  width: 100vw;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.header-uper.scroll-header .item.item-menu .dropdown-content {
  top: 90px!important;
}

.item.item-menu .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.item.item-menu .dropdown-content a:hover {background-color: #ddd;}

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

.menu-destaque {
  height: 125px;
  display: flex;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  background: #ffffffc7;
  color: #CC2B00;
}

.menu-destaque ul {
  padding-left: 100px;
}

.menu-destaque ul li i {
  margin-top: 15px;
  display: block;
}

.menu-destaque ul li i:before {
  margin: 0;
  font-size: 3.5em;
}



.header-uper .contact-info .item.item-cart a {
  border: solid 2px #CC2B00;
}

.header-uper .contact-info .item strong {
  font-size: 16px;
  line-height: 16px;
  display: block;
  font-weight: 600;
  color: #222222;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}

.header-uper .contact-info .item span {
  font-size: 15px;
  line-height: 16px;
  margin: 1px 0;
  display: block;
  font-weight: 400;
  color: #777777;
  font-family: "Poppins", sans-serif;
}

.header-uper .right-side .link-btn {
  margin-left: 20px;
  margin-top: 5px;
}

@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}

.main-header {
  position: relative;
  width: 100%;
  z-index: 9999;
  margin-bottom: -60px;
  background: rgba(0, 0, 0, 0.66);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.fixed-header {
  position: fixed;
  top: 0px;
  left: 0px;
  margin: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.66);
  transition: all 500ms ease;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.60s;
  animation-duration: 0.60s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.11);
}

.navbar {
  margin-bottom: 0;
  background: #48bdc5;
  border: none;
  border-radius: 0;
}

.navbar .navbar-nav li a {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: #fff;
  text-transform: uppercase;
  padding: 25px 20px;
}


.navbar .navbar-nav li.active a {
  background: transparent;
  color: #fff;
  font-weight: bold;
}

.navbar .navbar-nav li.active a:hover {
  background: transparent;
  color: #fff;
}

.accordion-section .accordion-holder {
  margin-top: 60px;
}

.accordion-section .accordion-holder .panel-default {
  box-shadow: none;
  border-radius: 0;
}

.accordion-section .accordion-holder .panel-default .panel-heading {
  background: #fff;
  padding: 0;
  border-radius: 0;
}

.accordion-section .accordion-holder .panel-default .panel-heading h4 {
  position: relative;
}

.accordion-section .accordion-holder .panel-default .panel-heading h4 a {
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  display: block;
  background: #48bdc5;
  color: #fff;
  padding: 20px 30px;
  transition: all .3s ease;
}

.accordion-section .accordion-holder .panel-default .panel-heading h4 a:before {
  content: '\f106';
  position: absolute;
  right: 20px;
  font-family: FontAwesome;
}

.accordion-section .accordion-holder .panel-default .panel-heading h4 a.collapsed {
  background: #fff;
  color: #000;
}

.accordion-section .accordion-holder .panel-default .panel-heading h4 a.collapsed:before {
  content: '\f107';
  position: absolute;
  font-family: FontAwesome;
}

.accordion-section .accordion-holder .panel-default .panel-heading h4 a.collapsed:hover {
  color: #48bdc5;
}

.accordion-section .accordion-holder .panel-default .panel-body {
  padding: 20px 30px;
}

.hero-slider {
  margin-top: 130px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-breadcrumb,
.section-404 {
  margin-top: 110px;
}

.section-404 {
  padding-top: 80px!important;
  padding-bottom: 80px!important;
}

.section-404 h1{
  font-size: 80px!important;
}

.hero-slider .slider-item,
.hero-slider *.slider-item {
  width: 100vw;
  height: 100%;
  margin: 0 auto;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  box-sizing: border-box;
}

.slider-item img {
  max-width: 100%;
  height: auto;
  border-radius: inherit;
  clip-path: inherit;
}

.hero-slider .slick-slide {
  display: flex !important;
  justify-content: center;
  margin: 0 auto;
}

.hero-slider .slider-item {
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
}

.hero-slider .slider-item:before {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  content: '';
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
}


.hero-slider .content {
  position: relative;
  z-index: 2;
}

.hero-slider .content.style h2 {
  font-size: 60px;
}

@media (max-width: 767px) {
  .hero-slider .content.style h2 {
    font-size: 30px;
  }
}

.hero-slider .content.style .offer-text {
  letter-spacing: 7px;
  font-size: 15px;
  margin-bottom: 5px;
}

.hero-slider .content.style .tag-text {
  font-size: 20px;
  font-weight: normal;
}

.hero-slider .content.style .btn-main {
  border-radius: 3px;
  padding: 16px 50px;
  font-weight: 700;
}

.hero-slider .content h2 {
  font-size: 35px;
  text-transform: capitalize;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.hero-slider .content p {
  font-size: 26px;
  color: #fff;
}

.hero-slider .content .btn-white {
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  border: 1px solid #fff;
  transition: all .3s ease;
}

.hero-slider .content .btn-white:hover {
  background: #fff;
  color: #000;
}

.hero-slider .slick-dots {
  bottom: 20px;
}

.hero-slider .slick-dots li {
  margin: 0 3px;
}

.hero-slider .slick-dots li button:before {
  font-size: 8px;
}

.hero-slider .slick-dots li.slick-active button:before {
  color: #fff;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
  border-radius: 20px;
}

.cta {
  padding: 40px 0;
}

.cta .cta-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .cta .cta-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta .cta-block .emmergency {
  background: #48bdc5;
}

.cta .cta-block .emmergency a {
  color: #fff;
  font-size: 30px;
}

.cta .cta-block .emmergency p {
  padding-top: 20px;
}

.cta .cta-block .top-doctor {
  background: #5bc4cb;
}

.cta .cta-block .top-doctor .btn-main {
  margin-top: 10px;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  transition: all .3s ease;
}

.cta .cta-block .top-doctor .btn-main:hover {
  background: #fff;
  color: #48bdc5;
}

.cta .cta-block .working-time {
  background: #6fcbd1;
}

.cta .cta-block .working-time ul {
  margin: 0;
  padding: 0;
}

.cta .cta-block .working-time ul li {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta .cta-block .working-time ul li span {
  float: right;
}

.cta .cta-block .working-time ul li:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.cta .cta-block .item {
  padding: 10px 30px;
  -ms-flex-preferred-size: 33.33%;
      flex-basis: 33.33%;
}

.cta .cta-block .item i, .cta .cta-block .item h2, .cta .cta-block .item p {
  transition: all .2s ease;
  color: #fff;
}

.cta .cta-block .item i {
  font-size: 30px;
  margin-bottom: 20px;
}

.cta .cta-block .item h2 {
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 25px;
  margin-bottom: 30px;
}

.cta .cta-block .item p {
  font-size: 16px;
  line-height: 19px;
}

.map {
  position: relative;
}

.map #map {
  height: 400px;
  color: white;
}

.contact .contact-form .form-control {
  margin-bottom: 30px;
}

.contact .address-block .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .contact .address-block .media {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  .contact .address-block .media:last-child {
    margin-bottom: 30px;
  }
}

.contact .address-block .media i {
  color: #48bdc5;
  font-size: 30px;
  margin-right: 35px;
  width: 40px;
  display: block;
}

@media (max-width: 767px) {
  .contact .address-block .media i {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.contact .address-block .media .media-body h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact .address-block .media .media-body p {
  line-height: 25px;
}

.contact .address-block .media:not(:last-child) {
  margin-bottom: 20px;
}

.form-control {
  box-shadow: none;
  border-radius: 0;
  padding: 15px 20px;
  font-size: 14px;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #CC2B00;
}

.form-control:focus + .input-group-append button.btn-fgl {
  border-color: #CC2B00!important;
}

.form-control.main {
  padding: 20px;
}

.feature-section {
  position: relative;
}

.feature-section .image-content .section-title {
  margin-bottom: 20px;
}

.feature-section .image-content .section-title {
  position: relative;
  padding-bottom: 15px;
}

.feature-section .image-content .section-title p {
  margin-bottom: 40px;
}

.feature-section .image-content .item {
  position: relative;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .feature-section .image-content .item {
    padding: 0 30px;
  }
}

.feature-section .image-content .icon-box {
  height: 50px;
  margin-bottom: 20px;
}

.feature-section .image-content .item h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

.feature-section .image-content .item p {
  font-size: 15px;
  line-height: 28px;
}

.feature-section .contact-info .item {
  position: relative;
  display: inline-block;
  margin: -2px;
  padding: 22px 67px 20px 105px;
}

.feature-section .contact-info .item:nth-child(1) {
  background: #8383d1;
}

.feature-section .contact-info .item:nth-child(2) {
  background: #7491ce;
}

.feature-section .contact-info .item:nth-child(3) {
  background: #6fb4d0;
}

.feature-section .contact-info .icon-box {
  position: absolute;
  top: 40px;
  left: 45px;
}

.feature-section .contact-info i:before {
  font-size: 30px;
  color: #ffffff;
}

.feature-section .contact-info h6 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.feature-section .contact-info p {
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.feature-section.style-two {
  position: relative;
  padding: 0px;
  margin-top: -56px;
  margin-bottom: -50px;
  z-index: 11;
}

.service-tab-section {
  position: relative;
}

.service-tab-section .outer-box {
  position: relative;
  z-index: 1;
}

.tabs .nav-tabs > li, .tabs .nav-pills > li {
  float: none;
  display: inline-block;
  margin-bottom: 10px;
}

.tabs .nav-tabs {
  text-align: center;
  border-bottom: 0;
  margin-bottom: 20px;
}

.tabs .nav-tabs li:not(:last-child) {
  margin-right: 10px;
}

.tabs .nav-tabs li a {
  text-transform: capitalize;
  font-size: 20px;
  padding: 10px 25px;
  font-weight: 600;
  color: #CC2B00;
  font-family: "Poppins", sans-serif;
  border: 2px solid #48bdc5;
  border-radius: 0;
  transition: all .3s ease;
}

.tabs .nav-tabs li a:hover {
  background: #48bdc5;
  color: #fff;
  border: 2px solid #48bdc5;
}

.tabs .nav-tabs li.active a {
  color: #fff;
  background: #48bdc5;
  border: 2px solid #48bdc5;
}

.tab-content {
  position: relative;
  float: left;
  width: 100%;
  z-index: 99;
}

.service-box {
  position: relative;
  width: 100%;
}

.service-box img {
  border-radius: 14px;
  width: 100%;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}

.service-box .contents {
  margin-left: 30px;
}

@media (max-width: 991px) {
  .service-box .contents {
    margin-left: 0;
    margin-top: 50px;
  }
}

.service-box .contents .btn-style-one {
  margin-top: 20px;
}

.service-box .section-title h3 {
  position: relative;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 45px;
  color: #000;
  text-transform: uppercase;
}

.service-box .section-title h3:before {
  position: absolute;
  left: 0px;
  content: '';
  bottom: 0px;
  background: #333333;
  height: 1px;
  width: 55px;
}

.service-box .text {
  position: relative;
  margin-bottom: 15px;
}

.service-box .text p {
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  padding-top: 5px;
}

.service-box .icon-box {
  position: absolute;
  top: 0px;
  left: -5px;
}

.service-box .content-list {
  padding-left: 0;
}

.service-box .content-list li {
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  padding: 7px 0px;
  list-style: none;
}

.service-box .content-list li i:before {
  margin-right: 15px;
}

.service-section {
  position: relative;
}

.service-section .section-title h3 {
  position: relative;
  padding-bottom: 15px;
}

.service-section .section-title p {
  font-size: 15px;
  line-height: 26px;
  color: #777777;
  font-weight: 400;
}

.service-section .items-container {
  margin-top: 30px;
}

.service-section .items-container .slick-prev:before, .service-section .items-container .slick-next:before {
  font-size: 25px;
  color: #48bdc5;
}

.service-section .items-container .item {
  margin: 10px 20px;
  outline: 0;
}

.service-section .inner-box {
  position: relative;
  border-radius: 5px 5px 0px 0px;
  box-shadow: 0 0 20px #f1f1f1;
  margin-bottom: 20px;
}

.service-section .inner-box .img_holder img {
  width: 100%;
  border-radius: 5px;
}

.service-section .inner-box .image-content {
  padding: 38px 30px;
  background: #fff;
}

.service-section .inner-box .image-content span {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #777777;
  letter-spacing: .5px;
}

.service-section .inner-box .image-content h6 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #222222;
  padding-top: 6px;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.service-section .inner-box .image-content p {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #777777;
  padding-bottom: 15px;
}

.service-two .left-side {
  padding: 140px 0px;
}

.service-two .left-side .section-title h3 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 22px;
}

.service-two .left-side .section-title h3:before {
  position: absolute;
  content: '';
  background: #ececec;
  bottom: 0px;
  left: 0px;
  height: 1px;
  width: 240px;
}

.service-two .left-side .section-title h3:after {
  position: absolute;
  content: '';
  background: #48bdc5;
  bottom: 0px;
  left: 0px;
  height: 1px;
  width: 50px;
}

.service-two .left-side .section-title p {
  font-size: 15px;
  line-height: 26px;
  color: #777777;
  font-weight: 400;
  padding-bottom: 40px;
}

.service-two .social-links {
  margin-bottom: 50px;
}

.service-two .social-links li {
  position: relative;
  display: inline-block;
  width: 170px;
  margin-right: 40px;
}

.service-two .social-links li .icon-box {
  width: 95px;
  height: 95px;
  line-height: 95px;
  border-radius: 50%;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid #dfdfdf;
}

.service-two .social-links li .icon-box i:before {
  font-size: 35px;
  color: #222222;
}

.service-two .social-links li .border-shep {
  position: absolute;
  content: '';
  top: 50px;
  right: 0px;
  background: #cdcdcd;
  height: 1px;
  width: 20px;
}

.service-two .social-links li h6 {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  font-weight: 400;
  padding-bottom: 5px;
  letter-spacing: .5px;
}

.service-two .link-buttons li {
  display: inline-block;
  color: #777777;
  font-size: 18px;
  font-weight: 400;
}

.service-two .link-buttons li.link-btn a {
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  height: 45px;
  padding: 0px 35px;
  line-height: 45px;
}

.service-two .link-buttons li.link-btn.style-one {
  background: #48bdc5;
  transition: all 500ms ease;
}

.service-two .link-buttons li.link-btn.style-one:hover {
  background: #7b64cb;
  transition: all 500ms ease;
}

.service-two .link-buttons li.or-background {
  margin: 0px 20px;
}

.service-two .link-buttons li.link-btn.style-two {
  background: #7b64cb;
  transition: all 500ms ease;
}

.service-two .link-buttons li.link-btn.style-two:hover {
  background: #48bdc5;
  transition: all 500ms ease;
}

.service-two .image-box img {
  width: 100%;
  margin-top: 28px;
}

.service-details {
  padding: 120px 0px;
}

.service-details .left-side {
  margin-right: 40px;
}

.service-details .left-side .image-holder .image-box {
  margin-bottom: 40px;
}

.service-details .left-side .image-holder img {
  width: 100%;
}

.service-details .left-side .text-title h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #222222;
  padding: 10px 0px;
  text-transform: uppercase;
}

.service-details .left-side .links-btn a {
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  color: #222222;
  padding: 11px 32px;
  display: inline-block;
  border-radius: 5px;
  margin-left: 10px;
  border: 1px solid #ececec;
  text-transform: uppercase;
}

.service-details .left-side .links-btn a i {
  font-size: 14px;
  margin-right: 10px;
}

.service-details .left-side .text p {
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: #777777;
  padding-top: 30px;
  letter-spacing: 0.3px;
}

.service-details .left-side .image-text {
  margin-top: 40px;
  margin-bottom: 10px;
}

.service-details .left-side .image-text h6 {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  color: #222222;
  line-height: 30px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .left-side .image-text h6:before {
  position: absolute;
  content: '';
  background: #e0e0e0;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 50px;
}

.service-details .left-side .image-text p {
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: #777777;
  margin-bottom: 0px;
}

.accordion-box {
  margin-top: 40px;
}

.accordion-box .accordion {
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 0 20px #f1f1f1;
}

.accordion-box .accordion .accord-btn {
  position: relative;
  cursor: pointer;
  padding: 20px;
  background: #fafafa;
  transition: all 500ms ease;
}

.accordion-box .accordion .accord-btn h6 {
  font-size: 15px;
  font-weight: 400;
  color: #222222;
  line-height: 26px;
  transition: all 500ms ease;
}

.accordion-box .accordion .accord-btn::after {
  position: absolute;
  color: #777777;
  content: "\f107";
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  top: 20px;
  right: 20px;
  width: 26px;
  text-align: center;
  height: 26px;
  border-radius: 25px;
  font-family: 'FontAwesome';
  transition: all 500ms ease 0s;
}

.accordion-box .accordion .accord-btn.active {
  background: #f4f4f4;
  transition: all 500ms ease;
}

.accordion-box .accordion .accord-btn.active h6 {
  font-weight: 700;
  transition: all 500ms ease;
}

.accordion-box .accordion .accord-btn.active:after {
  content: "\f106";
  color: #012f5d;
  transition: all 500ms ease 0s;
}

.accordion-box .accordion .accord-content {
  position: relative;
  display: none;
  padding-left: 20px;
  padding-right: 50px;
}

.accordion-box .accordion .accord-content.collapsed {
  display: block;
}

.accordion-box .accordion .accord-content p {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #777777;
  padding: 20px 0px;
}

.service-details .right-side {
  margin-left: -30px;
}

.service-details .right-side .categori-list {
  margin-top: 25px;
}

.service-details .right-side .categori-list li {
  transition: all 500ms ease 0s;
}

.service-details .right-side .categori-list li:hover {
  transition: all 500ms ease 0s;
  background: linear-gradient(to right, rgba(122, 102, 203, 0.8) 0%, rgba(72, 189, 197, 0.74) 100%);
}

.service-details .right-side .categori-list li a {
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  color: #222222;
  display: inline-block;
  padding: 20px 30px;
  width: 100%;
  border: 1px solid #ececec;
}

.service-details .right-side .categori-list li i:before {
  margin-top: 8px;
  margin-right: 10px;
  color: #334d5e;
}

.service-details .right-side .categori-list li:hover a, .service-details .right-side .categori-list li:hover i:before {
  color: #ffffff;
  transition: all 500ms ease 0s;
}

.service-details .service-testimonials {
  margin-top: 65px;
  margin-bottom: 60px;
}

.service-details .service-testimonials .text-title h6 {
  margin-bottom: 30px;
}

.service-details .service-testimonials .item {
  padding: 40px 17px;
  border: 2px solid #e5e5e5;
}

.service-details .service-testimonials .text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: #777777;
  padding-top: 15px;
}

.service-details .service-testimonials strong {
  font-size: 14px;
  line-height: 26px;
  color: #222222;
  font-weight: 700;
  text-transform: uppercase;
}

.service-details .service-testimonials .image img {
  display: inline-block;
}

.service-details .service-testimonials .owl-theme .owl-controls {
  display: none;
}

.service-details .contact-links {
  padding: 50px 30px;
  border: 2px solid #e5e5e5;
}

.service-details .contact-links .text-title h6 {
  margin-bottom: 30px;
}

.service-details .contact-text .item {
  position: relative;
  padding-left: 65px;
  margin-bottom: 20px;
}

.service-details .contact-text .item:last-child {
  margin-bottom: 0px;
}

.service-details .contact-text .item .icon-box {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f2f2f2;
}

.service-details .contact-text .item i:before {
  font-size: 20px;
  color: #53c0c8;
}

.service-details .contact-text .item p {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #777777;
  margin-bottom: 0px;
}

.service-overview .content-block {
  margin-bottom: 100px;
}

.service-overview .content-block h2 {
  font-size: 40px;
  color: #000;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}

.service-overview .content-block h2:before {
  position: absolute;
  width: 50px;
  height: 1px;
  content: '';
  bottom: -10px;
  background: #48bdc5;
}

.service-overview .content-block p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 30px;
}

.service-overview .content-block ul {
  padding-left: 0;
  padding-bottom: 20px;
}

.service-overview .content-block ul li {
  text-transform: capitalize;
  font-weight: bold;
  font-size: 16px;
}

.service-overview .content-block ul li i {
  margin-right: 10px;
}

.service-overview .accordion-holder {
  margin-top: 0;
}

.team-section {
  position: relative;
  background: #ffffff;
  z-index: 1;
}

.team-section .section-title h3 {
  position: relative;
  padding-bottom: 30px;
}

.team-section .section-title p {
  font-size: 15px;
  line-height: 26px;
  color: #777777;
  font-weight: 400;
  padding-bottom: 30px;
}

.team-section .banner-fgl {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}

.team-section .banner-fgl img {
  width: 100%;
}

.team-section .banner-fgl .contents {
  background: #fff;
  padding: 20px 10px;
}

.team-section .banner-fgl .contents h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #000;
  position: relative;
}

.team-section .banner-fgl .contents h4:before {
  position: absolute;
  content: '';
  width: 30px;
  height: 1px;
  background: #777777;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.team-section .banner-fgl .contents .btn-main {
  margin-top: 30px;
  background: #fff;
  text-transform: uppercase;
  color: #48bdc5;
  padding: 10px 25px;
  border: 1px solid #48bdc5;
  transition: all .2s ease-in;
}

.team-section .banner-fgl .contents .btn-main:hover {
  background: #48bdc5;
  color: #fff;
}

.banner-fgls .team-person {
  margin-top: 30px;
}

.banner-fgls .team-person img {
  border-radius: 5px;
  width: 100%;
}

.banner-fgls .team-person h6 {
  margin-top: 20px;
  font-size: 20px;
  text-transform: uppercase;
  color: #000;
}

.banner-fgls .team-person p {
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.blog-section .section-title h3 {
  position: relative;
  font-size: 36px;
}

.blog-section .blog-side {
  margin-right: -30px;
}

.blog-section .item-holder {
  position: relative;
  margin-top: 60px;
}

.blog-section .image-box {
  position: relative;
  display: table-cell;
}

.blog-section .content-text {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding-left: 30px;
}

.blog-section .content-text h6 {
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  padding-bottom: 4px;
  letter-spacing: .4px;
  margin-top: -5px;
  text-transform: uppercase;
}

.blog-section .content-text span {
  font-size: 13px;
  font-weight: 400;
  color: #777777;
  line-height: 24px;
}

.blog-section .content-text p {
  font-size: 15px;
  font-weight: 400;
  color: #777777;
  line-height: 24px;
  padding: 10px 0px 15px 0px;
  letter-spacing: .4px;
}

.contact-area {
  padding-left: 70px;
}

.contact-area form {
  margin-top: 60px;
}

.contact-area .form-group {
  position: relative;
  margin-bottom: 20px;
}

.contact-area input, .contact-area textarea {
  position: relative;
  width: 100%;
  height: 50px;
  color: #777777;
  padding: 10px 25px;
  background: #f4f4f4;
  display: block;
  border: 1px solid #ececec;
}

.contact-area .form-group select {
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  height: 50px;
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #ececec;
  background: #f4f4f4 url(../images/icons/icon-select.png) right center no-repeat;
  cursor: pointer;
}

.contact-area .form-group option {
  font-weight: normal;
  display: block;
  white-space: pre;
  height: 50px;
  padding: 20px;
}

.contact-area .form-group option:hover {
  background: #7b64cb;
}

.contact-area textarea {
  height: 190px;
  resize: none;
}

.contact-area button {
  width: 100%;
  height: 50px;
}

.contact-area .form-group i {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 15px;
}

.blog-section.style-two .section-title h3 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 22px;
}

.blog-section.style-two .section-title h3:before {
  position: absolute;
  content: '';
  background: #ececec;
  bottom: 0px;
  left: 50%;
  margin-left: -115px;
  height: 1px;
  width: 230px;
}

.blog-section.style-two .section-title h3:after {
  position: absolute;
  content: '';
  background: #48bdc5;
  bottom: 0px;
  left: 50%;
  margin-left: -25px;
  height: 1px;
  width: 50px;
}

.blog-section.style-two .section-title p {
  font-size: 15px;
  line-height: 26px;
  color: #777777;
  font-weight: 400;
  padding-bottom: 40px;
}

.blog-section.style-two .item-holder {
  margin-top: 0px;
}

.blog-section.style-two .content-text {
  padding: 55px 37px;
  border: 1px solid #ececec;
}

.blog-section.style-two .owl-theme .owl-controls .owl-nav {
  display: none;
}

.blog-section.style-two .owl-theme .owl-controls .owl-dots {
  margin-top: 40px;
}

.blog-section.style-two .owl-theme .owl-controls .owl-dots span {
  height: 6px;
  width: 12px;
  background: #e2e2e2;
}

.blog-section.style-two .owl-theme .owl-controls .owl-dot.active span {
  height: 6px;
  width: 30px;
  background: #e2e2e2;
}

.blog-section.style-four .content-text h5 {
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  line-height: 26px;
  padding-bottom: 4px;
  letter-spacing: .4px;
  margin-top: -5px;
  text-transform: uppercase;
}

.blog-section.style-four .left-side {
  margin-right: 45px;
}

.blog-section.style-four .item-holder {
  margin-top: 50px;
}

.blog-section.style-four .item-holder:first-child {
  margin-top: 0px;
}

.blog-section.style-four .image-box {
  display: block;
}

.blog-section.style-four .image-box img {
  border-radius: 10px;
  width: 100%;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}

.blog-section.style-four .content-text {
  display: block;
  padding-top: 40px;
  padding-left: 10px;
}

.blog-section.style-four .right-side {
  margin-left: -15px;
  margin-top: 10px;
}

.blog-section.style-four .link-btn a {
  border-radius: 4px;
}

.right-side .search-box {
  position: relative;
  margin-bottom: 40px;
}

.right-side .text-title h6 {
  position: relative;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #222222;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}

.right-side .text-title h6:before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  content: '';
  height: 1px;
  width: 40px;
  background: #48bdc5;
}

.right-side .search-box input {
  height: 50px;
  width: 100%;
  padding: 10px 20px;
  font-size: 15px;
  line-height: 26px;
  color: #777777;
  font-weight: 400;
  background: #ffffff;
  border: 1px solid #ececec;
}

.right-side .search-box button {
  position: absolute;
  top: 12px;
  right: 20px;
  background: #ffffff;
}

.right-side .search-box i:before {
  font-size: 20px;
}

.right-side .categorise-menu {
  margin-bottom: 20px;
}

.right-side .categorise-list {
  padding-left: 0;
}

.right-side .categorise-list li {
  padding: 15px 0px;
  border-bottom: 1px solid #e0e0e0;
}

.right-side .categorise-list li:last-child {
  border-bottom: none;
}

.right-side .categorise-list li:first-child {
  padding-top: 10px;
}

.right-side .categorise-list li a {
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

.right-side .categorise-list li a:hover {
  color: #48bdc5;
}

.right-side .categorise-list li span {
  float: right;
}

.right-side .tag-list {
  position: relative;
  margin-right: -6px;
}

.right-side .tag-list a {
  border-radius: 4px;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #777777;
  padding: 6px 26px;
  margin-right: 5px;
  margin-bottom: 10px;
  display: inline-block;
  border: 1px solid #48bdc5;
  transition: all 0.5s ease;
}

.right-side .tag-list a:hover {
  background: #48bdc5;
  color: #fff;
}

.blog-section.style-five .content-text .social-link {
  margin-top: 20px;
  margin-bottom: 50px;
}

.blog-section.style-five .content-text .social-link li {
  position: relative;
  display: inline-block;
  width: 29px;
  height: 29px;
  line-height: 26px;
  border-radius: 50%;
  margin: 5px;
  border: 2px solid #888888;
}

.blog-section.style-five .content-text .social-link li i {
  font-size: 14px;
  color: #969696;
}

.blog-section.style-five .comments-area {
  margin-top: 50px;
}

.blog-section.style-five .comment {
  position: relative;
  margin-bottom: 40px;
}

.blog-section.style-five .comment.reply-comment {
  position: relative;
  padding-left: 150px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.blog-section.style-five .image-holder {
  display: table-cell;
}

.blog-section.style-five .image-holder img {
  border-radius: 50%;
}

.blog-section.style-five .image-text {
  display: table-cell;
  padding-left: 20px;
  vertical-align: middle;
}

.blog-section.style-five .content-text p {
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  padding-top: 20px;
}

.blog-section.style-five .content-text .text {
  margin-top: 10px;
}

.blog-section.style-five .content-text .image-side {
  margin-right: 40px;
}

.blog-section.style-five .content-text .image-side img {
  width: 100%;
}

.blog-section.style-five .item-title h6 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #222222;
  padding-bottom: 20px;
  text-transform: capitalize;
}

.blog-section.style-five .text-image {
  margin-left: -15px;
}

.blog-section.style-five .text-image p {
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  padding-top: 0px;
  margin-top: -5px;
}

.blog-section.style-five .image-text h6 {
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  color: #222222;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.blog-section.style-five .image-text h6 span {
  position: relative;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #777777;
  margin-left: 10px;
  padding-left: 10px;
  text-transform: capitalize;
}

.blog-section.style-five .image-text h6 span:before {
  position: absolute;
  top: 4px;
  left: 0px;
  content: '';
  height: 15px;
  width: 1px;
  background: #c1c1c1;
}

.blog-section.style-five .comment h5 {
  position: absolute;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #222222;
  right: 0px;
  top: 0px;
  text-transform: capitalize;
}

.blog-section.style-five .comment h5 i {
  color: #48bdc5;
  margin-right: 10px;
}

.blog-section.style-five .comment p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #777777;
}

.blog-section.style-five .form-group {
  margin-bottom: 20px;
}

.blog-section.style-five .sec-title h6 {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #222222;
  padding-bottom: 20px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.blog-section.style-five .sec-title h6:before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  content: '';
  height: 2px;
  width: 35px;
  background: #48bdc5;
}

.blog-section.style-five .form-group input {
  height: 50px;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  border-radius: 0px;
  box-shadow: none;
  padding: 10px 20px;
  display: inline-block;
  border: 1px solid #ececec;
}

.blog-section.style-five .form-group textarea {
  height: 160px;
  border-radius: 0px;
  box-shadow: none;
  padding: 10px 20px;
  resize: none;
  border: 1px solid #ececec;
}

.appointment-image-holder {
  padding: 20px;
}

.appointment-image-holder img {
  border-radius: 14px;
  margin-top: -10px;
}

.sponsors-logos {
  padding: 52px 0px;
  background: #f8f8fa;
}

.sponsors-logos .owl-theme .owl-controls {
  display: none;
}

.sponsors-logos img {
  padding: 15px 50px;
  width: 100%;
}

.story {
  padding: 100px 0;
}

.story img {
  border-radius: 14px;
  width: 100%;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .story .story-content {
    margin-top: 50px;
  }
}

.story .story-content h2 {
  text-transform: uppercase;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 40px;
  text-transform: capitalize;
}

.story .story-content .tagline {
  color: #48bdc5;
  font-size: 20px;
  font-weight: normal;
  font-style: italic;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.story .story-content p {
  font-size: 16px;
  line-height: 19px;
}

.story .story-content h6 {
  margin-top: 30px;
  color: #333333;
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

.promo-video {
  position: relative;
  padding: 150px 0;
  background: url("../images/background/promo-video.jpg");
  background-size: cover;
  background-position: center center;
}

.promo-video:before {
  position: absolute;
  top: 0;
  content: '';
  height: 100%;
  width: 100%;
  background: rgba(12, 120, 163, 0.8);
}

.promo-video .block {
  position: relative;
  z-index: 10;
}

.promo-video h6, .promo-video h1, .promo-video i {
  color: #fff;
}

.promo-video h6 {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;
}

.promo-video h1 {
  font-size: 60px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  margin-bottom: 30px;
}

.promo-video a {
  display: block;
  height: 80px;
  width: 80px;
  margin: 0 auto;
  border: 5px solid #fff;
  transition: all .3s ease;
  border-radius: 100%;
}

.promo-video a i {
  line-height: 70px;
  font-size: 20px;
}

.promo-video a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.gallery {
  padding: 100px 0;
}

.gallery .gallery-item {
  margin-top: 30px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}

.gallery .gallery-item img {
  width: 100%;
}

.gallery .gallery-item:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  top: 0;
  opacity: 0;
  transition: all .3s ease;
}

.gallery .gallery-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.gallery .gallery-item h3 {
  position: absolute;
  z-index: 5;
  bottom: 70px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  transition: all .3s ease;
  padding: 30px;
  font-family: "Poppins", sans-serif;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.gallery .gallery-item p {
  position: absolute;
  z-index: 5;
  bottom: 20px;
  color: #fff;
  font-weight: normal;
  opacity: 0;
  transition: all .3s ease;
  padding: 30px;
  font-size: 14px;
  line-height: 16px;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.gallery .gallery-item:hover:before {
  opacity: 1;
}

.gallery .gallery-item:hover h3, .gallery .gallery-item:hover p {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.video-gallery {
  padding: 100px 0;
}

.video-gallery .video-gallery-item {
  margin-top: 50px;
}

.video-gallery .video-gallery-item .image-holder {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}

.video-gallery .video-gallery-item .image-holder img {
  width: 100%;
}

.video-gallery .video-gallery-item .image-holder:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(19, 38, 70, 0.7);
  top: 0;
}

.video-gallery .video-gallery-item .image-holder a {
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  text-align: center;
  z-index: 5;
  border: 5px solid #fff;
  border-radius: 50%;
  transition: all .3s ease-in-out;
}

.video-gallery .video-gallery-item .image-holder a i {
  font-size: 25px;
  line-height: 70px;
  color: #fff;
}

.video-gallery .video-gallery-item h3 {
  text-align: center;
  color: #48bdc5;
  margin-top: 15px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

.work-skill {
  position: relative;
  z-index: 1;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.work-skill:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
  background: linear-gradient(to right, rgba(122, 102, 203, 0.8) 0%, rgba(72, 189, 197, 0.74) 100%);
}

.work-skill .pie-value {
  display: block;
  position: absolute;
  font-size: 24px;
  height: 40px;
  top: 50%;
  margin-top: -26px;
  margin-left: -25px;
  left: 50%;
  color: #ffffff;
  font-weight: 600;
  line-height: 40px;
}

.work-skill .knob {
  position: relative;
  text-align: center;
  width: 270px;
}

.work-wkill .knob {
  position: relative;
}

.work-skill .knob:before {
  position: absolute;
  top: 9px;
  left: 59px;
  right: 59px;
  bottom: 18px;
  content: '';
  border: 24px solid #ffffff;
  border-radius: 50%;
}

.work-skill .skills {
  padding: 105px 0px;
}

.work-skill .skills h6 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding-top: 25px;
  text-transform: capitalize;
}

.page-title {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-title:before {
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(19, 38, 70, 0.6);
}

.page-title .title-text h1 {
  position: relative;
  font-size: 40px;
  color: #ffffff;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

.page-title .title-text .title-menu {
  padding-left: 0;
}

.page-title .title-text .title-menu li {
  position: relative;
  color: #48bdc5;
  font-size: 17px;
  display: inline-block;
  line-height: 30px;
  text-transform: capitalize;
}

.page-title .title-text .title-menu li a {
  margin-right: 8px;
  color: #ffffff;
  font-weight: 500;
  transition: all 500ms ease;
}

.page-title .title-text .title-menu li a:hover {
  color: #48bdc5;
  transition: all 500ms ease;
}

.styled-pagination {
  padding-top: 50px;
}

.styled-pagination ul {
  padding-left: 0;
}

.styled-pagination ul li {
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

.styled-pagination ul li a {
  position: relative;
  display: block;
  line-height: 50px;
  font-size: 16px;
  width: 50px;
  height: 50px;
  color: #777777;
  font-weight: 500;
  text-align: center;
  background: #f4f4f4;
  border-radius: 4px;
  transition: all 500ms ease;
}

.styled-pagination ul li a.prev, .styled-pagination ul li a.next {
  font-size: 18px;
}

.styled-pagination ul li a:hover, .styled-pagination ul li a.active {
  color: #ffffff;
  background: #48bdc5;
  transition: all 500ms ease;
}

.footer-main {
  position: relative;
  background-size: cover;
  z-index: 1;
}

.footer-main .footer-top {
  padding-top: 85px;
  padding-bottom: 60px;
}

.footer-main .footer-top .container {
  border-top: solid #D8D8D8 2px;
  padding-top: 50px;
}

.footer-main .menu-footer-navegation {
  text-transform: uppercase;
}

.footer-main ul li a {
  color: #fff!important;
}

.footer-main .content-middle-footer img {
  width: 100%;
  max-width: 220px;
}

.footer-main .footer-top .footer-logo {
  padding-bottom: 20px;
}

.footer-main .footer-top p {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
}

.footer-main .footer-top .location-link {
  padding-top: 10px;
  padding-left: 0;
}

.footer-main .footer-top .location-link .item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.footer-main .footer-top .location-link .item i {
  position: absolute;
  top: 0px;
  left: 0px;
}

.footer-main .footer-top .location-link .item i:before {
  font-size: 20px;
  color: #ababab;
}

.footer-main .footer-top .social-icons {
  margin-top: 20px;
}

.footer-main .footer-top .social-icons li a {
  display: block;
  height: 30px;
  width: 30px;
  color: #48bdc5;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}

.footer-main .footer-top .social-icons li a i {
  line-height: 30px;
}

.footer-main .footer-top .menu-link {
  padding-left: 0;
}

.footer-main .footer-top .menu-link li {
  padding-bottom: 15px;
}

.footer-main .footer-top .menu-link li a {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
  letter-spacing: .5px;
  font-family: "Poppins", sans-serif;
}

.footer-main .footer-top .menu-link li i {
  margin-right: 12px;
  font-size: 13px;
}

.footer-main .footer-top .social-links ul {
  padding-left: 0;
}

.footer-main .footer-top .social-links ul li {
  position: relative;
  margin-bottom: 30px;
}

.footer-main .footer-top .social-links ul li h4 {
  margin-bottom: 15px;
}

.footer-main .footer-top .social-links ul li p {
  margin-top: -7px;
  line-height: 24px;
}

.footer-main .footer-top .social-links ul li a {
  color: #ffffff;
}

.footer-main .footer-top .social-links ul li i {
  position: absolute;
  left: 0px;
  top: 7px;
  width: 47px;
  height: 47px;
  color: #ffffff;
  line-height: 47px;
  text-align: center;
  background: #48bdc5;
  margin-right: 10px;
}

.footer-main .footer-top .social-links span {
  color: #ababab;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
}

.footer-main .footer-top .gallery-widget {
  position: relative;
  margin-left: 15px;
}

.footer-main .footer-top .gallery-widget .image {
  position: relative;
  float: left;
  width: 30%;
  margin: 2.5px;
  overflow: hidden;
}

.footer-main .footer-top .gallery-widget .image img {
  position: relative;
  width: 100%;
}

.footer-main .footer-top .gallery-widget .image .lightbox-image {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  top: 0px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 99;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(to right, rgba(122, 102, 203, 0.8) 0%, rgba(72, 189, 197, 0.74) 100%);
  transition: all 500ms ease;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
}

.footer-main .footer-top .gallery-widget .image .lightbox-image i {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
}

.footer-main .footer-top .gallery-widget .image:hover .lightbox-image {
  transition: all 500ms ease;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.footer-bottom {
  padding: 24px 0px;
}

.footer-bottom .copyright-text {
  float: left;
}

.footer-bottom .copyright-text p {
  font-size: 15px;
  font-weight: 400;
  color: #ababab;
  line-height: 26px;
  margin-bottom: 0px;
  letter-spacing: .5px;
  text-transform: capitalize;
}

.footer-bottom .copyright-text a {
  color: #ababab;
}

.footer-bottom .footer-bottom-link {
  float: right;
  margin-bottom: 0px;
  padding-left: 0;
}

.footer-bottom .footer-bottom-link li {
  display: inline-block;
  margin-left: 32px;
}

.footer-bottom .footer-bottom-link li a {
  font-size: 15px;
  line-height: 26px;
  color: #ababab;
  font-weight: 400;
}

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  color: #ffffff;
  font-size: 24px;
  line-height: 45px;
  width: 50px;
  height: 50px;
  border: 1px solid #7b64cb;
  background: #7b64cb;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  display: none;
  border-radius: 25px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.scroll-to-top:hover {
  background: #ffffff;
  color: #7b64cb;
  border-color: #7b64cb;
  transition: all 500ms ease;
}

/*  Theme HTML Template */
@media only screen and (min-width: 768px) {
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
  }
}

@media only screen and (min-width: 1920px) {
  .service-tab-section .tab-list-column .tab-list {
    margin-left: 30% !important;
    margin-right: -30% !important;
  }
}

@media only screen and (max-width: 1200px) {
  .action-header {
    margin-left: 90px;
  }
  .service-section .filter {
    margin-bottom: 20px !important;
  }
  .footer-bottom .copyright-text {
    float: none !important;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-bottom .footer-bottom-link {
    float: none !important;
    text-align: center;
  }
  .feature-section.style-two {
    margin-bottom: 0px !important;
  }
  .feature-section .contact-info .item {
    display: block !important;
    margin-bottom: 20px !important;
  }
}

@media only screen and (max-width: 1100px) {
  .service-tab-section .tab-list-column {
    width: 40% !important;
  }
  .service-tab-section .tab-content {
    width: 60% !important;
  }
}

@media only screen and (max-width: 991px) {
  .hero-slider,
  .section-breadcrumb,
  .section-404 {
    margin-top: 0!important;
  }
  .main-header .search-box {
    display: none;
  }
  .header-uper .logo {
    float: none !important;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
  }
  .main-header.style-two .logo {
    float: none !important;
    text-align: center;
    margin-bottom: 20px;
  }
  .main-header.style-two .search-box-btn {
    top: 95px !important;
  }
  .main-header.style-two .main-menu {
    float: none !important;
  }
  .service-tab-section .tab-content .inner-box {
    padding-left: 0px;
  }
  .feature-section .image-content {
    margin-left: 0px !important;
    margin-top: 40px;
  }
  .feature-section .contact-info .item {
    width: 100%;
    margin-right: 30px !important;
    margin-bottom: 20px !important;
  }
  .service-tab-section .tab-list-column {
    width: 100% !important;
  }
  .service-tab-section .tab-list-column .tab-list,
  .service-tab-section .tab-content .inner-box {
    float: none !important;
    padding-left: 115px !important;
    max-width: 700px !important;
  }
  .service-tab-section .tab-content {
    width: 100% !important;
  }
  .service-tab-section .tab-content .content-list {
    margin-top: 40px !important;
  }
  .service-section .inner-box {
    margin-bottom: 40px !important;
  }
  .fact-counter .column .item {
    margin-bottom: 40px !important;
  }
  .contact-area {
    margin-top: 70px !important;
    padding-left: 0px !important;
  }
  .footer-main .footer-top .social-links {
    margin-left: 0px !important;
  }
  .footer-bottom .footer-bottom-link {
    margin-top: 30px;
    text-align: center !important;
  }
  .blog-section.style-four .content-text {
    padding-left: 0px !important;
  }
  .blog-section.style-four .right-side {
    margin-left: 0px !important;
    margin-top: 40px !important;
  }
  .blog-section.style-four .left-side {
    margin-right: 0px !important;
  }
  .blog-section.style-four .image-box img {
    width: 100%;
  }
  .blog-section.style-five .text-image {
    margin-left: 0px !important;
    margin-top: 40px !important;
  }
  .service-details .right-side {
    margin-left: 0px !important;
  }
  .gallery-section .owl-theme .owl-controls .owl-nav .owl-prev {
    left: 90px !important;
  }
  .gallery-section .owl-theme .owl-controls .owl-nav .owl-next {
    right: 90px !important;
  }
  .feature-section.style-two {
    margin-bottom: 40px !important;
  }
  .slider-fgl-wrapper {
    width: 100%;
    margin-top: 50px!important;
  }
  .hero-slider .slider-item {
    aspect-ratio: 1 / 1.2;
  }
  .content-hero-slide {
    margin-top: 25px!important;
  }
  .content-hero-slide {
    height: auto;
  }
  .content-hero-slide .cta {
    padding: 0;
  }
  .footer-bottom .row {
    display: block;
    text-align: center;
  }
  .footer-bottom .row div {
    width: 100%;
    max-width: 100%;
  }
  .item.item-menu a:hover {
    background: none!important;
  }
  .gallery-item img {
    height: 100px!important;
  }
}

@media only screen and (max-width: 767px) {
  .main-header .main-menu {
    top: 0px;
    width: 100%;
  }
  .main-menu .navbar-header {
    position: relative;
    float: none;
    display: block;
    text-align: right;
    width: 100%;
    padding: 0px;
    right: 0px;
    z-index: 12;
  }
  .main-menu .navbar-header .navbar-toggle {
    display: block;
    border: 1px solid #ffffff;
    float: left;
    height: 50px;
    width: 50px;
    padding-left: 12px;
    text-align: center;
    margin: 0px 0px 0px 0px;
    border-radius: 0px;
    background: #7b64cb;
  }
  .main-menu .navbar-header .navbar-toggle .icon-bar {
    background: #ffffff;
  }
  .main-menu .navbar-collapse > .navigation {
    float: none !important;
    margin: 0px !important;
    width: 100% !important;
    background: #48bdc5;
    border: 1px solid #ffffff;
    border-top: none;
  }
  .main-menu .navbar-collapse > .navigation > li {
    margin: 0px !important;
    float: none !important;
    width: 100%;
  }
  .main-menu .navigation > li > a,
  .main-menu .navigation > li > ul:before {
    border: none;
  }
  .main-menu .navbar-collapse > .navigation > li > a {
    padding: 10px 10px !important;
    border: none !important;
  }
  .main-menu .navigation li.dropdown > a:after,
  .main-menu .navigation > li.dropdown > a:before,
  .main-menu .navigation > li > ul > li > a::before,
  .main-menu .navigation > li > ul > li > ul > li > a::before {
    color: #ffffff !important;
    right: 15px;
    font-size: 16px;
    display: none !important;
  }
  .main-menu .navbar-collapse > .navigation > li > ul,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul {
    position: relative;
    border: none;
    float: none;
    visibility: visible;
    opacity: 1;
    display: none;
    margin: 0px;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100%;
    background: #e4b700;
    border-radius: 0px;
    transition: none !important;
    -webkit-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    -moz-transition: none !important;
  }
  .main-menu .navbar-collapse > .navigation > li > ul,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul {
    border-top: 1px solid white !important;
  }
  .main-menu .navbar-collapse > .navigation > li,
  .main-menu .navbar-collapse > .navigation > li > ul > li,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li {
    border-top: 1px solid white !important;
    opacity: 1 !important;
    top: 0px !important;
    left: 0px !important;
    visibility: visible !important;
  }
  .main-menu .navbar-collapse > .navigation > li:first-child {
    border: none;
  }
  .main-menu .navbar-collapse > .navigation > li > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li > a {
    padding: 15px 10px !important;
    line-height: 22px;
    color: #ffffff;
    background: #7b64cb;
    text-align: left;
  }
  .main-header.style-two .main-menu .navigation > li > a {
    color: #ffffff !important;
  }
  .main-menu .navbar-collapse > .navigation > li > a:hover,
  .main-menu .navbar-collapse > .navigation > li > a:active,
  .main-menu .navbar-collapse > .navigation > li > a:focus {
    background: #1cc9ce;
  }
  .main-menu .navbar-collapse > .navigation > li:hover > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li:hover > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li:hover > a,
  .main-menu .navbar-collapse > .navigation > li.current > a,
  .main-menu .navbar-collapse > .navigation > li.current-menu-item > a {
    background: #48bdc5;
    color: #fff !important;
  }
  .main-menu .navbar-collapse > .navigation li.dropdown:after,
  .main-menu .navigation > li > ul:before {
    display: none !important;
  }
  .main-menu .navbar-collapse > .navigation li.dropdown .dropdown-btn {
    display: block;
    position: absolute;
    right: 15px;
    top: 12px;
    color: #ffffff;
  }
  .main-menu .navbar-collapse > .navigation li.current .dropdown-btn,
  .main-menu .navbar-collapse > .navigation li:hover .dropdown-btn {
    color: #ffffff;
  }
  .main-header {
    margin-bottom: 0px !important;
  }
  .main-header .logo {
    position: absolute !important;
    top: -5px;
    left: 30%;
  }
  .search_option {
    position: absolute !important;
    top: 2px;
    right: 5px;
  }
  .footer-main .footer-top .menu-link {
    margin-left: 0px !important;
  }
  .main-header.style-two .search-box-btn {
    top: 15px !important;
  }
  .footer-main .footer-top .gallery-widget {
    margin-left: 0px !important;
  }
  .service-tab-section .tab-list-column .tab-list,
  .service-tab-section .tab-content .inner-box {
    margin-left: 0px !important;
  }
  .rev_slider_wrapper .tp-caption img {
    display: none;
  }
  .header-uper .right-side {
    float: none !important;
    text-align: center !important;
  }
  .header-uper .contact-info {
    float: none !important;
    margin-bottom: 30px !important;
  }
  .header-uper .logo {
    margin-bottom: 40px !important;
  }
  .header-uper .contact-info .item {
    text-align: left !important;
    margin-left: 40px !important;
    margin-right: 0px !important;
  }
  .header-uper .link-btn {
    float: none !important;
    margin-left: 0px !important;
  }
  .gallery-section .owl-theme .owl-controls {
    display: none !important;
  }
  .work-skill .knob {
    display: inline-block !important;
  }
  .work-skill .skills h6 {
    margin-bottom: 40px;
  }
  .service-two .social-links li .border-shep {
    display: none !important;
  }
  .service-two .social-links li {
    margin-bottom: 20px;
  }
  .service-two .link-buttons li {
    margin-bottom: 20px;
  }
  .service-two .left-side {
    padding: 50px 0px !important;
  }
  .fixed-header {
    background: #000000 !important;
  }
  .google-map-area {
    margin-right: 0px !important;
  }
  .content-page-slider-topo::before {
    display: none;
  }
}

@media only screen and (max-width: 567px) {
  .blog-section .content-text {
    display: block !important;
    padding-left: 0px !important;
    margin-top: 20px !important;
  }
  .header-uper .contact-info {
    margin-bottom: 0px !important;
  }
  .header-uper .contact-info .item {
    margin-left: 0px !important;
    margin-bottom: 30px !important;
  }
  .service-tab-section .tab-list-column .tab-list,
  .service-tab-section .tab-content .inner-box {
    padding-left: 20px !important;
  }

}

@media only screen and (max-width: 467px) {
  .rev_slider_wrapper .tp-caption {
    display: none !important;
  }
  .main-header .logo {
    position: relative !important;
    top: 0px !important;
    left: 0px !important;
  }
  .main-header.style-two .search-box-btn {
    top: 95px !important;
  }
  .section-title, .title-fgl {
    font-size: 2em;
  }
  .content-hero-slide .cta a {
    width: 100%;
  }
}

@media only screen and (max-width: 350px) {
  .feature-section .contact-info .item {
    padding-left: 50px !important;
    padding-right: 0px !important;
  }
  .feature-section .contact-info .icon-box {
    left: 10px !important;
  }
}

/*# sourceMappingURL=maps/style.css.map */

/* Landing page FGL */


.section-title::before {
  content: '';
  width: 80px;
  height: 80px;
  border: 15px solid rgba(255, 71, 18, 0.15);
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 15px;
  z-index: -10;
}

.object-fit-cover {
  object-fit: cover;
  height: 100%;
}

.process-card {
  transition: transform 0.3s ease;
}
.process-card:hover {
  transform: translateY(-5px);
}


.carousel-infinite {
  position: relative;
}

.carousel-track {
  animation: scroll-carousel 100s linear infinite;
  white-space: nowrap;
}

.carousel-infinite .carousel-item {
  display: inline-block;
  margin-right: 16px;
  flex: 0 0 auto;
  width: 300px;
  height: 250px;
}

.carousel-infinite .carousel-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}


@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.video-wrapper {
  position: relative;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #cc2c00;
  color: white;
  border: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}


.testimonial-avatar {
  width: 60px;
  height: 60px;
  background-color: #ccc;
  border-radius: 50%;
}

.testimonial-slider .testimonial-box {
  transition: transform 0.3s ease;
}

.stars i {
  font-size: 1.2rem;
  margin-right: 2px;
}

.custom-arrow {
  background: none;
  border: none;
  color: #373435;
  font-size: 1.5rem;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.custom-arrow:hover {
  color: #CC2B00;
}

.slick-prev {
  left: -35px;
}

.slick-next {
  right: -35px;
}

.imagem-fundador {
  width: 150px;
  bottom: 50px; 
  left: 20px; 
  transform: translateY(50%);
}

.gallery-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.gallery-item {
  flex: 1;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.quote-section {
  padding: 2rem 0;
}

.quote-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1140px;
  margin: 0 auto;
}

.quote-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.quote-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.quote-box {
  background-color: #fff;
  color: #333;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.quote-icon {
  font-size: 2rem;
  margin-right: 0.8rem;
}

.quote-box h3 {
  font-weight: bold;
  margin: 0 0 0.3rem;
}

.quote-box p {
  margin: 0;
}

.whatsapp {
  color: gray;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.whatsapp i:before{
  font-size: 0.9rem!important;
  font-weight: 700;
}

.quote-text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-left: 2rem;
}

.quote-text p {
  margin: 0;
  white-space: pre-line;
}

@media screen and (max-width: 798px) {
  .quote-info {
    justify-content: center;
  }
}