   /* MENU PAGE ======================================================  */

   .menu-container h3 {
    text-align: center;
    padding: 1rem 0;
    background: #6E478F;
    color: white;
    font-weight: 400;
    margin-bottom: 1rem;
}

.wb__menudetails {
    position: relative;
    vertical-align: top;
    overflow-x: hidden;
    margin: 0 2%;
}

.wb__menudetails p {
    margin: 1rem 0 2rem;
    padding: 0;
}

.wb__menudetails p:before {
    float: left;
    width: 0;
    white-space: nowrap;
    content: ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . ";
}

span.left {
    overflow-x: hidden;
    padding: 0 2% 0 0;
    background: #FFFFFF;
    font-size: 1.125em;
}

span.right {
    float: right;
    background-color: #FFF;
    padding: 0 0 0 1%;
    overflow-x: hidden;
    font-size: 1.125em;
}

span.descrip {
    display: block;
    margin-top: 2%;
}

.wb__menudetails img {
    margin: 0 0 2em 0;
}


/*---- Specials PAge ----*/
.cw-specials-col {
    display: flex;
    flex-direction: column;
}
.cw-special1-img,
.cw-special2-img,
.cw-special3-img {
    border-radius: 13px;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .cw-specials {
        margin-bottom: 2rem;
    }
    .cw-specials-col {
        flex-direction: row;
    }
    .cw-special1-img,
    .cw-special2-img,
    .cw-special3-img {
        padding-bottom: 0;
    }
}

/*POP UP*/

	.modal {
		display: none;
		position: fixed;
		z-index: 10;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: auto;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.modal-content {
		margin: 10% auto;
		width: 80%;
		padding: 10px 30px 30px 30px;
		box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
		animation-name: modalopen;
		animation-duration: 1s;
		background: var(--color-theme-primary);
		border: 4px solid #6E478F;
	}

    .modal-header .close {
        color: #6E478F !important;
    }

	@media (min-width: 991px) {
		.modal-content {
			margin: 10% auto;
			width: 40%;
			padding: 10px 30px 30px 30px;
			box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
			animation-name: modalopen;
			animation-duration: 1s;
			background: var(--color-theme-primary);
			border: 4px solid #6E478F;
		}
	}

	.modal-header {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: start;
		align-items: flex-start;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding: 0 !important;
		border-bottom: none !important;
		border-top-left-radius: 0 !important;
		border-top-right-radius: 0 !important;
	}

	.modal-body {
		padding: 10px 20px;
		background: #fff;
	}

	.close {
		font-size: 30px;
	}

	.close:hover,
	.close:focus {
		text-decoration: none;
		cursor: pointer;
	}

	@keyframes modalopen {
		from {
			opacity: 0;
		}

		to {
			opacity: 1;
		}
	}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

@media (min-width: 280px){
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
}

@media (min-width: 768px){
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
}

@media (min-width: 1200px){
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}
}



    /* Hero */
    .hero-wrapper {
        position: relative;
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .hero {
        display: block;
        position: relative;
        background: transparent;
        overflow: hidden;
    }


    .hero:after {
        overflow: hidden;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }


    .hero .container {
        position: relative;
        z-index: 2;
        color: #fff;
    }

    .hero .hero-row {
        padding-top: 3em;
        padding-bottom: 3em;
        min-height: 700px;
    }


    .hero .hero-row h2,
    .hero .hero-row .lead {
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.6;
    }


    .hero .hero-content {
        padding: 1em;
    }

    .hero:after {
        background: rgba(33, 33, 45, 0.5);
    }

    @media(max-width: 767px){
       

        .hero .hero-row {
            min-height: auto;
        }

        .hero .hero-row h1 {
            font-size: 2.3rem;
        }

        .hero .hero-row h2,
        .hero .hero-row .lead {
            font-size: 1rem;
        }
    }