.list-style-none {
    list-style: none;
}

p, a, li, span, label, b, i, u {
    font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5, h5, p, a, li, span, label, b, i, u {
    color: #814A3C;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Vidaloka", serif;
}

.bgr-primary {
    background-color: #C6B1AB;
}
.bgr-primary.d-btn:hover {
    background-color: #6C5852;
}

.bgr-secondary {
    background-color: #00ABAA;
}
.bgr-secondary.d-btn:hover {
    background-color: #008d8c;
}

.bgr-tertiary {
    background-color: #CEE5E8;
}

.btn-dark {
    background-color: #814A3C;
}
.btn-dark:hover {
    background-color: #683232;
}

.d-btn {
    color: white;
    border: 0;
    outline: none;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    font-family: "Vidaloka", serif;
    font-size: 16px;
}
.d-btn:hover {
    text-decoration: none;
    color: white;
}

.round-bottom {
    border-bottom-right-radius: 15px;
}

.round-top {
    border-top-right-radius: 25px;
}

.bar {
    position: relative;
}
.bar::after {
    content: "";
    position: absolute;
    background-color: #DCE2DE;
    width: 100px;
    height: 5px;
    bottom: -20px;
    left: 0;
}

.bgr-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    min-height: 200px;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.bars {
    position: relative;
    width: 50px;
    height: 35px;
}
.bars .hamburger-bar {
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #00ABAA;
    border-radius: 5px;
    top: 15px;
    left: 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}
.bars .hamburger-bar::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 100%;
    background-color: #00ABAA;
    border-radius: 5px;
    top: -15px;
    left: 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}
.bars .hamburger-bar::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 100%;
    background-color: #00ABAA;
    border-radius: 5px;
    bottom: -15px;
    left: 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}
.bars .hamburger-bar.active {
    width: 0;
    left: 25px;
}
.bars .hamburger-bar.active::before {
    top: 0;
    left: -25px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #00ABAA;
}
.bars .hamburger-bar.active::after {
    bottom: 0;
    left: -25px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #00ABAA;
}

body {
	padding-top: 120px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	background-color: white;
	z-index: 1;
}

nav {
    display: none;
    padding-top: 35px;
}
nav ul {
    text-align: center;
}
nav ul li {
    display: block;
}
nav ul li a {
    font-family: "Vidaloka", serif;
    transition: .1s ease;
}
nav ul li.active a {
    color: #00ABAA;
}
nav ul li a:not(.d-btn):hover {
    text-decoration: none;
    color: #00ABAA;
}

.banner {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.banner.banner-sm {
    height: 300px;
}
.banner.banner-lg {
    height: 450px;
}
.banner.banner-lg .overlay {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.banner.banner-lg .overlay img {
    width: 90%;
}
.rellax {
    position: absolute;
    width: 100%;
    height: calc(100% + 150px);
    bottom: 0;
}

.img-grid {
    background-color: transparent;
}
.img-grid-bg {
    background-color: #DCE2DE;
}

.card-hover {
    overflow: hidden;
}
.card-hover:hover .bgr-img {
    background-size: calc(100% + 10%);
}

form input:not([type="checkbox"]), form textarea {
    width: 100%;
    padding: 10px 17px;
    border: 2px solid #C6B1AB;
    outline: none;
}
form textarea {
    min-height: 150px;
}

footer * {
    color: white;
}

footer i {
    color: #6C5852;
}

footer a:hover {
    text-decoration: underline;
    color: white;
}

.contact-list {
    list-style-position: outside;
}

.socket {
    background-color: #6C5852;
}

@media (min-width: 576px) {
    .banner.banner-lg .overlay img {
        width: 80%;
    }
}
@media (min-width: 768px) {
    .banner.banner-lg .overlay img {
        width: 65%;
    }

    .img-grid {
        background-color: #CEE5E8;
    }
    .img-grid-bg {
        background-color: transparent;
    }

    .img-half {
        position: absolute;
        width: 50%;
        height: 100%;
        top: 0;
    }
    .img-half.img-right {
        right: 0;
    }
    .img-half.img-left {
        left: 0;
    }
}
@media (min-width: 992px) {
    nav {
        display: block;
        padding: 0;
    }
    nav ul {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .banner.banner-lg .overlay img {
        width: 50%;
    }
}

#oa_widget div.oanl-columns-container {
    max-width: 100% !important;
}

#oa_widget .col-1, #oa_widget .col-2 {
	min-width: 100%;
}

.share {
    margin: 15px 0 30px 0;
}

.share .label {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 0;
    font-family: "Vidaloka", serif;
}

.share .buttons a {
    font-size: 30px;
    margin: 0 2px;
    transition: .3s;
    color: #808080;
}

.share .buttons a:hover {
    color: #606060;
}

.share .buttons a:first-child {
    margin: 0 2px 0 0;
}

.share .buttons a.facebook {
    color: #3b5998;
}

.share .buttons a.facebook:hover {
    color: #364882;
}

.share .buttons a.twitter {
    color: #33CCFF;
}

.share .buttons a.twitter:hover {
    color: #3096c6;
}

.share .buttons a.linkedin {
    color: #4875B4;
}

.share .buttons a.linkedin:hover {
    color: #3c5b8e;
}

.share .buttons a.whatsapp {
    color: #25D366;
}

.share .buttons a.whatsapp:hover {
    color: #249a4d;
}