/*=============================================================================
                                  CSS GENERAL
===========================================================================*/

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
}

h3 {
  text-transform: uppercase;
  color: #41464B;
}

p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-align: justify !important;
  letter-spacing: 0.7px;
}


/*=============================================================================
                                  LOADER
===========================================================================*/


#loader {

	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
  background: url(../img/loader.gif) center no-repeat #fff;



}


.noloader{
  display: none !important;
}
/*=============================================================================
                                  HOME
===========================================================================*/

#home {
  height: 100%;
}

#home-cover {
  height: 100%;
  background-image: url(../img/portadas/portada4.jpg);
  background-repeat: no-repeat;
    background-position: center;
  -webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
  background-size: cover;
}




#home-content-box {
  width: 100%;
  height: 100%;
  display: table;
}


#home-content-box-inner {
  display: table-cell;
  /*ALINEA CONTENIDO EN EL MEDIO DEL PADRE CONTENEDOR*/
  vertical-align: middle;
  /*SE PUEDE USAR TANTO CON TEXT ALIGN COMO CON LA CLASS TEXT-CENTER DE BOOTSTRAP */
  /* text-align: center; */
}

#home-heading h3 {
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  margin: 20px 0 20px 0;
}



/*=============================================================================
                                  CAROUSEL
===========================================================================*/



.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 2;
}

/*
Fade content bs-carousel with hero headers
Code snippet by maridlcrmn (Follow me on Twitter @maridlcrmn) for Bootsnipp.com
Image credits: unsplash.com
*/

/********************************/
/*       Fade Bs-carousel       */
/********************************/


.fade-carousel {
    position: relative;
    height: 100vh;
}
.fade-carousel .carousel-inner .item {
    height: 100vh;
}
.fade-carousel .carousel-indicators > li {
    margin: 0 2px;
    background-color: #bdb555;
    border-color: #bdb555;
    opacity: .7;
}
.fade-carousel .carousel-indicators > li.active {
  width: 10px;
  height: 10px;
  opacity: 1;
}

/********************************/
/*          Hero Headers        */
/********************************/
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
      -webkit-transform: translate3d(-50%,-50%,0);
         -moz-transform: translate3d(-50%,-50%,0);
          -ms-transform: translate3d(-50%,-50%,0);
           -o-transform: translate3d(-50%,-50%,0);
              transform: translate3d(-50%,-50%,0);
}
.hero h1 {
    font-size: 6em;
    font-weight: bold;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.hero h3 {
    font-size: 2.8em;
    font-weight: lighter;
    margin: 0;
    padding: 0;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: .19em;

}


.fade-carousel .carousel-inner .item .hero {
    opacity: 0;
    -webkit-transition: 2s all ease-in-out 5s;
       -moz-transition: 2s all ease-in-out 5s;
        -ms-transition: 2s all ease-in-out 5s;
         -o-transition: 2s all ease-in-out 5s;
            transition: 2s all ease-in-out 5s;
}
.fade-carousel .carousel-inner .item.active .hero {
    opacity: 1;
    -webkit-transition: 2s all ease-in-out 5s;
       -moz-transition: 2s all ease-in-out 5s;
        -ms-transition: 2s all ease-in-out 5s;
         -o-transition: 2s all ease-in-out 5s;
            transition: 2s all ease-in-out 5s;
}

/********************************/
/*            Overlay           */
/********************************/
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* background-color: #080d15; */
    opacity: .3;

}



/********************************/
/*       Slides backgrounds     */
/********************************/
.fade-carousel .slides .slide-1,
.fade-carousel .slides .slide-2,
.fade-carousel .slides .slide-3 {
  height: 100vh;
  -webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.fade-carousel .slides .slide-1 {
  background-image: url(../img/portadas/portada4.jpg);
}
.fade-carousel .slides .slide-2 {
  background-image: url(../img/portadas/portada2.jpg);
}
.fade-carousel .slides .slide-3 {
  background-image: url(../img/portadas/portada1.jpg);
}

/********************************/
/*          Media Queries       */
/********************************/
@media screen and (min-width: 980px){
    .hero { width: 980px; }
}
@media screen and (max-width: 640px){
    .hero h1 { font-size: 4em; }
    .hero h3{ font-size: 2em;}
}

/*=============================================================================
                                  SUBRAYADO
===========================================================================*/

.underline--magical {
  background-image: linear-gradient(120deg, rgb(232, 222, 88) 0%, #707270 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
}



/*=============================================================================
                                  PARALLAX EFFECT
===========================================================================*/

.bg-parallax {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /*EFECTO PARALLAX*/
  background-attachment: fixed;
}

/*=============================================================================
                                  ANIMATION
===========================================================================*/

#home-cover #home-heading #home-btn{
  -vendor-animation-duration: .3s;
}

#home-cover {
  -vendor-animation-delay: .1s;
}

#home-heading {
  animation-delay: .3s
}

#home-btn {
  animation-delay: .1s;
}

/*=============================================================================
                                  BUTTONS
===========================================================================*/

.btn-general {
  border-width: 2px;
  border-radius: 0;
  padding: 12px 26px 12px 26px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.btn-white {
  border-color: #fff;
  color: #fff;
}



.btn-white:hover, .btn-white:focus {
  background-color: #fff;
  color: #41464b;
}

.btn-blue {
  border-color: rgb(46, 46, 46);
  color: rgb(46, 46, 46);
}

.btn-blue:hover, .btn-blue:focus {
  transition: .09s ease;
  background-color: rgb(232, 222, 88);
  color: #fff;
  border-color: rgb(232, 222, 88);
}

.btn-back-to-top{
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 22px;
  padding: 3px 15px;
  border-radius: 0;
  display: none;
}




/*=============================================================================
                                  CONTENT
===========================================================================*/

.content-box {
  padding: 60px 0 60px 0;
}

.content-title h3 {
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px 0;
  color: rgb(51, 52, 54);
  letter-spacing: 0.4em;
}

.content-title-underline {
  width: 30px;
  height: 3px;
  background-color: rgb(232, 222, 88);
  margin: 0 auto 0 auto;
  margin-bottom: 30px;
}


.content-title-white h3 {
  color: #fff;
}




/*=============================================================================
                                  ABOUT
===========================================================================*/

#about-bg-diagonal {
  background-image: url(../img/portadas/nosotros2.png);
  width: 60%;
  height: 700px;
  float: right;
  border-left: 200px solid #fff ;
  border-top: 700px solid transparent;
}


#about-content-box {
  float: left;
  height: 700px;
}

#about-content-box-outer {
  width: 100%;
  height: 100%;
  display: table;
}

#about-content-box-inner {
  display: table-cell;
  vertical-align: middle;
}

#about .content-title h3 {
  text-align: left;
  color: #383636;
}

#about .content-title-underline {
  margin: 0 0 30px 0;
}

#about-description p {
  margin-bottom: 30px;
  color: #383636;
}

#about{
  background-color: #fff;
}

/*=============================================================================
                                  NOVEDADES
===========================================================================*/


.novedad{
  margin-right: 50px;
  margin-left: 50px;
  margin-bottom: 40px;
  -webkit-box-shadow: 22px 22px 15px -19px rgba(0,0,0,0.4);
  -moz-box-shadow: 22px 22px 15px -19px rgba(0,0,0,0.4);
  box-shadow: 22px 22px 15px -19px rgba(0,0,0,0.4);
  height: 480px;
  background-color: #fff;
  border-radius: 19px;
  overflow: hidden;
}


.novedad:hover{
  transform: scale(1.02);
}


#novedades-list{
margin-bottom: 20px;
}

.novedad h3{
  color: rgb(57, 56, 56);
  font-weight: 900;
  font-size: 1.1em;
  text-align: center;
  margin-left: 2px;
  margin-right: 2px;
}

.novedad p{
  margin: 20px 10px 0 10px;
  font-size: 1em;
  text-align: justify;
  color: #3d3d3d;
  letter-spacing: normal;
}

.novedad img{
height: 50%;
border-top-left-radius: 14px;
border-top-right-radius: 14px;
object-fit: cover;

}

#content-color{
    background:linear-gradient( #ffffff, rgb(214, 214, 214), transparent);
}




/*=============================================================================
                                  MODAL NOVEDADES
===========================================================================*/

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: #fff;
    background-color: rgba(0,0,0,.8);


}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    bottom: 150px;
    border: 1px solid #888;
    width: 75%; /* Could be more or less, depending on screen size */
}

.modal-texto{
  margin-left: -3%;
}

.img-modal-novedad{
  margin-top: 10%;
}


/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.modal h3{
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 5px;
  text-align: left;

}

.modal p{
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.8em;
  text-align: left !important;
  margin-top: 20px;
  color: #3d3d3d;
  letter-spacing: normal;
}


.modal img{
  width: auto;
  height: 100%;
}

.novedad-date{
  color: #000;
  text-align: left !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 2px;
  font-weight: bold !important;
  color: rgb(34, 34, 34);
}



.novedad-by {
  color: #000;
  text-align: center !important;
  text-transform: capitalize !important;
  font-size: 12px !important;
  letter-spacing: 2px;
  margin-top: 5px;

}




/*=============================================================================
                                  OBRAS
===========================================================================*/

/*selecciona todas las columnas dentro de .row.no-gutters*/

.row.no-gutters [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.img-wrapper {
  overflow: hidden;
}

/* .img-wrapper img {
  transition: .5s ease; */

  /*delay del zoom */
}

/* .img-wrapper img:hover {
  transform: scale(1.5); */
  /*1.5 del tamano original en hover */
  /* cursor: zoom-in;
} */


#obras-btn{
margin-bottom: 50px;
}

.centrar-boton{
  text-align: center;
  margin-bottom: 40px;
}



.descripcion-obra{
transition: .5s ease;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
}

.descripcion-obra p{
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .5em;
  width: 100%;
  padding-top: 50px !important;
  padding: 16px 32px;
}

.img-wrapper:hover img {
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
  filter: brightness(.5);
}

.img-wrapper:hover .descripcion-obra {
  opacity: 1;
  -webkit-transition: .8s ease;
  transition: .8s ease;
}



/*=============================================================================
                                  SOCIAL
===========================================================================*/

.social-list {
  padding-left: 0;
  margin-top: 30px;
}

.social-list li {
  list-style: none;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 6px;
  margin-top: 10px;
}

.social-icon i {
  font-size: 17px;
}

.icon-gray i {
  color: #64707b;
}

.social-icon i:hover {
  color: rgb(232, 222, 88);
}

.icon-white i{
  color: #fff;
}

/*=============================================================================
                                  clientes
===========================================================================*/
.cliente img{
  width: 70%;
}

.cliente{
  padding: 30px 0;
}

/* .cliente img{
  max-width: 80%;
  -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
} */

/* .cliente img:hover {
  -webkit-filter: grayscale(0);
	filter: grayscale(0);
} */

#clientes{
  margin: 0 20px;
}



/*=============================================================================
                                  NAVIGATION
===========================================================================*/



.navbar{
  padding: 20px 0px;
  transition: all .5s ease-in-out; /*Hace del efecto del ocultamiento del style del menú mas suave */
}

.navbar-brand{
  position: block;
}

.cg-top-nav{
  background: rgb(255, 254, 254);
  padding: 7px 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.cg-nav-wrapper{
  padding: 0 85px;
}

.navbar-nav{
  float: right;
}

.navbar-nav > li > a{
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.navbar-nav > li > a:hover, .navbar-nav > li > a:focus{
  background: none;
}

.navbar-toggle{
  background-color: rgba(0,0,0,0.1);
  border: 1px solid #fff;
  border-radius: 0;
}

.navbar-toggle .icon-bar{
  background-color: #fff;
}

.navbar-collapse{
  max-height: none !important;
}

.cg-top-nav ul.navbar-nav > li.active > a{
  color: #ffe806;
}

/*=============================================================================
                                  PROD SUBMENU
===========================================================================*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);

h1 {
	font-size: 60px;
	text-align: center;
	color: #FFF;
}

h3 {
	font-size: 30px;
	text-align: center;
}

h3 a {
	color: #FFF;
}

a {
	color: #FFF;
}

h1 {
	margin-top: 100px;
	text-align:center;
	font-size:60px;
	}

#container {
	margin: 0 auto;
}

p {
	text-align: center;
}

nav {
	margin: 0px 0;
}

nav ul {
	padding: 0;
  margin: 0;
	list-style: none;
  position: relative;
	}

nav ul li {
  display:inline-block;
	}

nav li a.smooth-scroll {
  color: white;
}

nav a {
	display:block;
	padding:0px;
	color:black;
	font-size:15px;
	line-height: 50px;
  text-decoration:none;
}

nav a.smooth-scroll:hover {
  transition: .8s ease-out;
  background-color: white;
  color: black;
}

nav ul li div ul {
  height: 0;
  position: absolute;
  background-color: white;
  top: 42px;
}

/* Fisrt Tier Dropdown */
nav ul ul div li {
  display: none;
}

/* Display Dropdowns on Hover */

nav ul li:hover > div ul {
  display: block;
  height: 250px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

nav ul li:hover ul li{
  display: block;
}

.a-products{
  color: #67696a;
  font-weight: lighter;
  letter-spacing: 2.5px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
}

.a-products:hover{
  color: #000;
  text-shadow: 0px 0.3px gray;
  text-decoration: none !important;
}

nav ul li:hover {
  transition: background-color .6s ease-out;
  background-color: white;
}

nav ul li:hover a.smooth-scroll{
  color: rgb(70,64,64) !important;
}

nav ul ul li {
width: 170px;
float: none;
position: relative;
margin-left: 29px;
bottom: -26px;
}

nav ul li div {
  display: flex;
  justify-content: center;
  position: relative;
  top: -1000px;
  opacity: 0;
  transition: opacity  ease-out;
}

nav ul li:hover div {
  top: -45px;
  opacity: 1;
}

nav ul ul {
  display: inline-block;
  width: 700px;
  left: -311px;

}

nav ul li img {
  width: 400px;
  height: 200px;
  z-index: 2;
  position: absolute;
  right: -481px;
  top: -1px;
  object-fit: contain;
  filter: brightness(.8);
}

nav ul li img.img-2 {
  top: -51px;
}

nav ul li img.img-3 {
  top: -101px;
}

nav ul li img.img-4 {
  top: -151px;
}

nav ul li img.img-default{
  top: 67px;
  left: -31px;
  z-index: 1;
}


.li-img img{
  transition: opacity .5s ease-in-out;
  opacity: 0;
}

.li-img:hover img {
  opacity: 1;
  z-index: 999;
}


/* /Mobile Nav/ */
.navMobileWrapper{
width: 100%;
height: 10vh;
background-color: rgba(0, 0, 0, 0.71);
padding: 2vw 4vw;
z-index: 100;
color: black;
position: fixed;
display: flex;
justify-content: space-between;
align-items: center;
}



.navMobileBars{
position: fixed;
right: 2.5vw;
}


.navMobile{
width: 100vw;
height: 100vh;
z-index: 1;
background-color: rgba(0, 0, 0, 0.71);
position: fixed;
transition: all 0.8s;
top: 10vh;
left: 100vw;
display: flex;
flex-flow: column nowrap;
align-items: center;
border-top: 1px solid rgba(255, 255, 255, 0.49);
}

.navMobile a{
font-family: 'Roboto Condensed', sans-serif;
font-size: 2rem;
text-decoration: none;
font-weight: 900;
color: #fff;
letter-spacing: 1.5px;
}

.navMobileProductos{
position: relative;
}

.navMobileProductos span{
content: '>';
transition: all 0.8s;
transform: rotate(90deg);
font-size: 2rem;
position: absolute;
top: .5vh;
left: 99%;
}

.navMobileProductos-options{
width: 100%;
overflow: hidden;
height: 0;
transition: all 0.8s;
display: flex;
flex-flow: column nowrap;
align-items: center;
}

.navMobileProductos-options a{
font-size: 1.6rem;
font-weight: lighter;
}

.hamburger .line{
  width: 30px;
  height: 3px;
  background-color: #ffff;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}

/* ONE */

#hamburger-1.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

/*=============================================================================
                                LOGOCG
===========================================================================*/



img.logocg1{
  width: 90%;
  margin-top: -15px;

}

img.logocg2 {
  opacity: 0;
  width: 80%;
  margin-top: -72px;
  position: relative;
}

.logocgMobile img{
  opacity: 0;
  width: 30%;
  margin-top: -50px;
  position: relative;
}

.navMobileWrapper img{
width: 20%;
position: relative;
left: -6vw;
}


/*=============================================================================
                                MAPA
===========================================================================*/

#map {
       height: 80%;
       margin-top: 30px;
     }


#map-content h5{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    text-align: left;
}

#map-content strong{
    font-size: 13px;
    text-align: left;

}


#map-content a{
  font-size: 10px;
  text-align: left;
  font-weight: 800;
  text-transform: uppercase;
  color: rgb(200, 199, 83);
}


/*=============================================================================
                                FLECHA PORTADA
===========================================================================*/



.arrow {
  opacity: 0;
  position: absolute;
  left: 49%;
  top: 80%;
  transform-origin: 50% 50%;
  transform: translate3d(-50%, -50%, 0);
}
.arrow-first {
  animation: arrow-movement 2s ease-in-out infinite;
}
.arrow-second {
  animation: arrow-movement 2s 1s ease-in-out infinite;
}
.arrow:before, .arrow:after {
  background: #fff;
  content: '';
  display: block;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
}
.arrow:before {
  transform: rotate(45deg) translateX(-23%);
  transform-origin: top left;
}
.arrow:after {
  transform: rotate(-45deg) translateX(23%);
  transform-origin: top right;
}
@keyframes arrow-movement {
  0% {
    opacity: 0;
    top: 78%;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/*=============================================================================
                                  CONTACTO
===========================================================================*/

footer{
  background-color: #41464b;
  padding-top: 30px;
  border-top: 5px solid rgba(0,0,0,0.1);
  padding-bottom: 10px;
}

#contact-left h3, #contact-right h3{
  color: #fff;
  font-size: 27px;
  font-weight: 700;
}

#contact-left p{
  color: #fff;
  font-size: 14px!important;
  margin-bottom: 2px;
}

address{
  color: #fff;
}

address strong, .phone-email strong{
  letter-spacing: 1px;
}

#contact-info address{
  margin-bottom: 30px;
}

form .form-control{
  background: transparent;
  border-radius: 0;
  border-color: #fff;
  font-size: 17px;
  font-weight: 300;
  padding: 8px 16px;
  margin-bottom: 20px;
  color: #fff;
}

.alert {
	padding: 1em;
	color:#fff;
	border-radius: 2px;
	margin-bottom: 20px;
	font-size: 14px;
}

.alert.error {
	background: #F2DEDE;
	border:1px solid #a94442;
	color: #a94442;
}

.alert.success {
	background: #4CAF50;
}



/*=============================================================================
                                  FOOTER
===========================================================================*/

#footer-bottom{
  background-color: #bdb555;
  padding: 30px 0;
  margin-top: 60px;
}

#footer-copyrights p{
  margin:0;
  color: #fff;
}

#footer-menu{
  float: left;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

#footer-menu ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#footer-menu ul li{
  display: inline-block;
}

#footer-menu a{
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin: 0 10px;
  text-decoration: none;
}

#footer-menu a:hover{
  color:rgb(51, 51, 51);
}

#cg-footer-title{
  width: 12%;
  margin-bottom: 10px;
}

#cg-footer-frase{
  margin-bottom: 30px !important;
}
