html, body {
    height: 100%;
    font-family: 'Roboto';
}

body {
    margin: 0;
}

.no-margin {
    margin: 0;
}

/*****************************************************************************************************************************
 * HEADER
 *****************************************************************************************************************************/
#header {
    position: relative;
    background-image: url("../img/cover.jpg");
    background-size: cover;
    height: 50vw;
    width: auto;
    text-align: center;
}

#header-logo {
    position: absolute;
    left: 3vw;

    height: 18vw;
    width: auto;
}

#header-footer {
    position: absolute;
    left: 17.5%;
    bottom: 0;

    width: 65vw;
    height: auto;
}

.header-title {
    position: absolute;
    right: 7%;
    top: 8vw;
    color: white;
    text-align: right;
    font-size: 4.5vw;
}

/*****************************************************************************************************************************
 * SLIDER
 *****************************************************************************************************************************/
.slider {
    position: relative;
    text-align: center;
    height: 50vw;
}

.image {
    height: 50vw;
}

.label {
    position: absolute;
    color: #f2f2f2;
    font-size: 5vw;
    top: 50%;
    text-align: center;
    width: 100%;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    color: white;
    font-size: 3vw;
}

.prev {
    left: 5vw;
}

.next {
    right: 5vw;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 1.5vw;
    width: 1.5vw;
    margin: 0 0.3vw;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

#dots {
    position: absolute;
    text-align:center;
    bottom: 2vw;
    width: 100%;
}

.active, .dot:hover {
    background-color: #717171;
}

/*****************************************************************************************************************************
 * DESCRIPTION
 *****************************************************************************************************************************/
#description {
    padding: 1vw 15vw;
    text-align: center;
}

.description-wrapper {
    width: 22vw;
    height: auto;
}

.text {
    text-align: center;
    font-size: 1.4vw;
}

.title {
    text-align: center;
    font-size: 3vw;
    font-weight: bold;
}

/*****************************************************************************************************************************
 * GRID
 *****************************************************************************************************************************/
.grid-container {
    height: 50vw;
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 1vw 3vw;
    grid-column-gap: 3vw;
    grid-row-gap: 3vw;
}

.grid-item {
    position: relative;
    background-color: black;
    text-align: center;
    color: white;
    font-size: 2vw;
    font-weight: bold;
    background-repeat: no-repeat;
    background-size: 40vw auto;
}

.grid-text {
    position: absolute;
    width: 100%;
    top: 8vw;

}

#grid-intro {
    padding: 10vw 0;
    text-align: center;
}

.big-icon {
    width: 90vw;
    height: auto;
}

#grid1 {
    background-image: url("../img/novagama.jpg");
}

#grid2 {
    background-image: url("../img/coimbrashopping.jpg");
}

#grid3 {
    background-image: url("../img/celas.jpg");
}

#grid4 {
    background-image: url("../img/pastelaria-02.jpg");
}

#grid5 {
    background-image: url("../img/solum.jpg");
}

#grid6 {
    background-image: url("../img/nortondematos.jpg");
}

/*****************************************************************************************************************************
 * SOCIAL
 *****************************************************************************************************************************/
#social {
    padding: 10vw 0;
}

.social-icon {
    width: 5vw;
}

#social-text {
    font-size: 2vw;
    font-weight: bold;
}

/*****************************************************************************************************************************
 * FOOTER
 *****************************************************************************************************************************/
.footer {
    position: relative;
    height: 7vw;
    background-color: black;
    color: white;
}

.footer-text {
    margin: 0;
    position: absolute;
    top: 1vw;
    left: 1vw;
    font-size: 0.8vw;
}

#footer-logo {
    position: absolute;
    right: 0;
    height: 7vw;
}

#footer-logo2 {
    position: absolute;
    left: 1vw;
    height: 3vw;
    top: 3.0vw;
}

/*****************************************************************************************************************************
 * Botões
 *****************************************************************************************************************************/

.myButton {
	background-color:#291e29;
	border-radius:13px;
	border:1px solid #000000;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:25px;
	font-weight:bold;
	padding:17px 46px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}
.myButton:hover {
	background-color:#000000;
}
.myButton:active {
	position:relative;
	top:1px;
}

