/* fonts*/
@import url('https://fonts.googleapis.com/css2?family=Barrio&family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&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&family=Questrial&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:wght@400;500&display=swap');


html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    background: #ffe7c6;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 9999 !important;
}

.overlay.visible {
    opacity: 1; /* Visible cuando se activa */
    pointer-events: all; /* Interacción habilitada */
}


.navbar-sup {
    background-color: #ffb44e;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: rgba(143, 93, 0, 0.3) 0px 20px 30px -10px;
    display: flex;
    align-items: center;
    z-index: 10 !important;
}

.logo-heading {
    width: 150px;
    height: 150px;
    margin: 12px;
    margin-right: 100px;
    cursor:pointer !important; 
    pointer-events:all;
}

.navbar-link {
    cursor: pointer !important;
    margin: auto;
    color: #043475;
    font-family: "Raleway";
    font-size: 15px;
    font-weight: bold;
    transition: all .3s ease-in-out;
}

.navbar-link:hover {
    font-size: 16px;
    filter: brightness(150%);
}

.btn-header {
    cursor: pointer !important;
    position: relative; 
    background: #043475;
    padding: 12px 15px;
    border-radius: 50px;
    box-shadow: rgba(21, 0, 143, 0.5) 0px 20px 30px -10px;
    color: #ffffff;
    font-family: "Raleway";
    font-size: 18px;
    font-weight: bold;
    margin-left: 100px;
    margin-right: 60px;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-header:hover {
    filter: brightness(150%);
}

.menu-drawer {
    display: none;
    font-size: 30px;
    color: #043475;
    float: right;
}

.hero-area {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-images {
    display: flex;
    position: relative;
    width: 100%;
}

.carousel-images img {
    width: 100%;
    height: auto;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-images img.active {
    opacity: 1;
    z-index: 1;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    z-index: 2;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.section {
    position: relative;
    scrollbar-width: none;
    overflow: hidden;
}

.section::-webkit-scrollbar {
    opacity: 0; /* Oculta visualmente */
    width: 0;
    height: 0;
}

.illust-abs {
    position: absolute;
    width: 100%;
    left: 0;
    top: 60vh;
    z-index: 1;
}



h2 {
    font-family: "Poppins";
    font-size: 45px;
    width: 40%;
    margin-left: 50px;
    color: #043475;
    margin-top: 100px;
    text-align: left;
    float: left;
    font-weight: 400;
}

p {
    font-family: "Roboto";
    font-size: 25px;
    width: 40%;
    margin-left: 50px;
    color: #043475;
    margin-top: 0px;
    text-align: left;
    float: left;
    font-weight: 400;
}
.texts {
    display: grid;
}

.gallery-aligned-right {
    width: 50%;
    height: auto;
    float: right;
    margin-top: 50px;
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
}

.rectangle-bg {
    width: 90%;
    height: 100px;
    transform: translateX(-50%);
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    background-color: #ffa52a;
}

.cards-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: auto;
    margin-bottom: 50px;
}

.card {
    position: relative;
    width: 30%;
    border-radius: 40px;
    margin: auto;
    background-color: #ffb44e;
    height: 300px;
    z-index: 2;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 40px 40px 0px 0px;
}

.card h3 {
    text-align: center;
    margin: auto;
    font-family: "Barrio";
    font-size: 40px;
    color: #043475;
}

.card p {
    text-align: center !important;
    margin: auto !important;
    float: none !important;
    font-weight: bold;
    font-size: 30px;
}

.card .btn-action {
    position: absolute;
    cursor: pointer !important;
    background: #043475;
    padding: 12px 15px;
    border-radius: 50px;
    box-shadow: rgba(21, 0, 143, 0.5) 0px 20px 30px -10px;
    color: #ffffff;
    font-family: "Raleway";
    font-size: 25px;
    font-weight: bold;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    transform: translateX(-50%);
    left: 50%;
    bottom: -20px;
    justify-content: center;
}

.btn-action:hover {
    filter: brightness(150%);
}

.big-badge {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 40px;
    background-color: #ffbf67;
}

.big-badge-gradient {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 40px;
    background: linear-gradient(to left, #ff8200, #ffbf67);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.mini-card {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 30px;
    background-color: #ffb44e;
    box-shadow: rgba(93, 76, 50, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    margin: auto;
    padding: 20px;
    margin-bottom: 100px;
}

.mini-card img {
    width: 100px;
    height: 100px;
    margin: auto;
}

.mini-card p {
    position: absolute;
    font-family: "Raleway";
    font-size: 20px;
    color:#043475;
    font-weight: bold;
    transform: translateX(-50%);
    left: 50%;
    bottom: -50px;
    margin: auto;
    text-align: center;
    float: none;
    width: 120%;
}

.cards-group-grid {
    display: grid;
    width: 90%;
    margin: auto;
}

.card-flex {
    display: flex;
    align-items: center;
    width: 100%;
    height: 200px;
    border-radius: 30px;
    margin: auto;
    margin-bottom: 50px;
    background-color: #ffb44e;
    color:#043475;
    img {
        height: 200px !important;
        border-radius: 30px;
        width: 200px;
        object-fit: cover;
        margin-right: 50px;
        display: block;
    }
    .texts p {
        margin: 0;
        font-size: 20px;
        width: 95%;
    }
    .texts h3 {
        margin: 0;
        font-size: 30px;
        font-family: "Raleway";
    }
}

.location-title {
    font-family: "Bebas Neue";
    font-size: 70px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    margin-left: 50px;
    float: none;
}

.location-image {
    position: absolute;
    border-radius: 30px;
    border: solid 5px #ffbf67;
    height: 200px;
    width: 400px;
    object-fit: cover;
    transform: translateY(-50%);
    right: 0px;
    top: 50%;
}


.unity-title {
    margin: auto;
    margin-top: 20px;
    font-size: 40px;
    margin-bottom: 20px;
    margin-left: 50px;
    float: none;
    width: 60%;
}

.unities-section {
    position: relative;
}

.unities-section p {
    font-size: 27px;
    float: none;
    width: 60%;
}

.unities-section ul li {
    font-family: "Roboto";
    font-size: 24px;
    margin-left: 50px;
    color: #043475;
    margin-top: 0px;
    text-align: left;
    font-weight: 400;
    width: 60%;
}

ul li {
    font-family: "Roboto";
    font-size: 21px;
    margin-left: 50px;
    color: #043475;
    margin-top: 0px;
    text-align: left;
    font-weight: 400;
    margin-bottom: 10px;
    width: 60%;
}

.right-section {
    position: absolute;
    background-color: #ffbf67;
    width: 26%;
    height: 500px;
    right: 30px;
    top: -50px;
    z-index: -1;
    padding-top: 100px;
}

.right-section p {
    font-size: 25px;
    margin-left: 20px;
    width: 90%;
}


/* Estilos gerais */
.carrousel-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 65%;
    margin-left: 40px;
    background-color: #ffbf67;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 30px;
    z-index: 0;
  }

.carrousel-btn {
    z-index: 1 !important;
}
.carrousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 80%;
}

.carrousel-item {
    min-width: 100px;
    height: 100px;
    margin: 0 10px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carrousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.carrousel-btn {
    background-color: #043475;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.carrousel-btn.left-btn {
    margin-right: 10px;
    border-radius: 50%;
}

.carrousel-btn.right-btn {
    margin-left: 10px;
    border-radius: 50%;
}

/* Overlay */


.overlay.hidden {
    display: none;
}

.overlay-content {
    position: relative;
}

.overlay-content img {
    max-width: 50%;
    max-height: 170vh;
    border-radius: 10px;
    margin-left: 25%;
    margin-right: 25%;
    transition: transform 0.5s ease; /* Suaviza el escalado */
    transform: scale(0.95); /* Tamaño inicial */
}

.overlay.visible img {
    transform: scale(1); /* Escala normal cuando visible */
}

.close-overlay {
    position: absolute;
    top: 0px;
    right: 100px;
    background: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    z-index: 1100;
}

.testimonial {
    position: relative;
    display: flex;
    align-items: center;
    margin: auto;
    width: 50%;
    height: 350px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.right-button {
    cursor: pointer;
    font-size: 30px;
    position: absolute;
    top: 50%;
    right: -50px;
}

.left-button {
    cursor: pointer;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: -50px;
}

.testimonial img {
    width: 150px;
    height: 150px;
}

.testimonial .texts p {
    font-size: 25px;
    font-family: "Roboto";
    font-style: italic;
    color: #694600;
    width: 90%;
    margin: auto;
}

.testimonial .texts .author {
    margin-top:20px;
    font-size: 20px;
    font-style: normal;
    color: #9f6a00;
    font-weight: bold;
}

#testimonial-text, #testimonial-author, #testimonial-image {
    transition: all 0.5s ease-in-out;
}

.circle-1 {
    position: absolute;
    background-color: #694600;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 20px;
    left: 50px;
    z-index: 5;
    animation: spinner-8k6ao5md 2s infinite;
}

.circle-2 {
    position: absolute;
    background-color: #694600;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: -50px;
    right: 50px;
    z-index: 5;
    animation: spinner-8k6ao5md 5s infinite;
}

.circle-3 {
    position: absolute;
    background-color: #694600;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    bottom: -35px;
    left: 70px;
    z-index: 5;
    animation: spinner-8k6ao5md 4s infinite;
}

.circle-4 {
    position: absolute;
    background-color: #694600;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    bottom: 35px;
    right: 100px;
    z-index: 5;
    animation: spinner-8k6ao5md 3s infinite;
}


@keyframes spinner-8k6ao5md {
    0% {
       transform: perspective(224px) rotateY(0deg);
    }
 
    10% {
       transform: perspective(224px) rotateY(-65deg);
    }
 
    90%, 100% {
       transform: perspective(224px) rotateY(2880deg);
    }
 }
  
.text-contact {
    color:#694600;
    width: 100%;
}

.title-contact {
    color: #694600;
    width: 100%;
}

.image-contact {
    position: absolute;
    top: -50px;
    right: 0px;
    width: 40%;
}

#texts-contact {
    width: 50%;
}

.group-flex {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.button-brown {
    cursor: pointer !important;
    position: relative; 
    background: #694600;
    padding: 12px 15px;
    border-radius: 50px;
    box-shadow: rgba(143, 69, 0, 0.5) 0px 20px 30px -10px;
    color: #ffffff;
    font-family: "Raleway";
    font-size: 30px;
    font-weight: bold;
    margin-left: 50px;
    margin-right: 10px;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
    &:hover {
        background: #ffa52a;
        color:#694600;
    }
}

.text-in-flex {
    font-size: 20px;
    font-style: italic;
    margin: auto;
    float: none;
    text-align: center;
    width: auto;
    color:#9f6a00;
    margin-right:10px;
    margin-left:0px;
}

.button-transparent {
    text-decoration: underline;
    cursor: pointer !important;
    font-family: "Poppins";
    font-size: 25px;
    color: #694600;
    transition: all 0.3s ease-in-out;
    &:hover {
        color:#9f6a00;
    }
}


.flex-images-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    margin-bottom: 100px;
    flex-wrap: nowrap;
    width: 95%;
    gap: 10px;
}

.flex-image-item {
    position: relative;
    flex: 1;
    width: 30%;
    margin: auto;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.50) 0px -200px 50px -100px inset;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: grid;
    transition: all 0.5s ease-in-out;
}



.flex-image-item.hov {
    flex: 4; /* Aumenta el ancho del elemento en hover */
}

.flex-image-item.dimmed {
    flex: 1; /* Reduce el ancho de los elementos que no están en hover */
}

.flex-image-item.dimmed h2,
.flex-image-item.dimmed p,
.flex-image-item.dimmed .btn-action {
    opacity: 0; /* Oculta los textos de los elementos que no están en hover */
    transition: opacity 0.5s ease-in-out;
}

.flex-image-item h2 {
    position: absolute;
    bottom: 60px;
    transform: translateX(-50%);
    left: 50%;
    font-family: "Raleway";
    font-size: 30px;
    color: #ffffff;
    font-weight: bold;
    margin: auto;
    margin-bottom: 10px;
    text-align: center;
    float: none;
    width: 100%;
}

.flex-image-item p {
    position: absolute;
    bottom: 30px;
    transform: translateX(-50%);
    left: 50%;
    font-family: "Raleway";
    font-size: 20px;
    color: #ffffff;
    margin: auto;
    margin-bottom: 10px;
    text-align: center;
    float: none;
    width: 100%;
}

.flex-image-item .btn-action {
    position: absolute;
    cursor: pointer !important;
    background: #043475;
    padding: 12px 15px;
    border-radius: 50px;
    box-shadow: rgba(21, 0, 143, 0.5) 0px 20px 30px -10px;
    color: #ffffff;
    font-family: "Raleway";
    font-size: 25px;
    font-weight: bold;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    transform: translateX(-50%);
    left: 50%;
    bottom: -20px;
    justify-content: center;
    text-align: center;
    width: 60%;
}

#footer img {
    margin-left: 45%;
    margin-right: 45%;
    width: 10%;
}

#footer .group-flex .texts h3 {
    font-family: "Bebas Neue" !important;
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 400;
}

#footer .group-flex .texts ul li {
    cursor: pointer;
    font-family: "Roboto" !important;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 400;
    list-style: none;
}

#footer .group-flex .texts {
    margin: auto;
    padding-left:50px;
    margin-top: 20px;
    color:#043475;
    width: 50%;
}

#footer .group-flex {
    align-items: start;
    margin-bottom: 0px;
}


@media screen and (max-width: 1233px) {
    .illust-abs {
        top: 40vh;
    }
}

@media screen and (max-width: 1226px) {
    .card p {
        width: 50%;
    }
}

@media screen and (max-width: 1000px) {
    .gallery-aligned-right {
        float: none;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 0px;
        width: 90%;
    }
    h2 {
        width: 90%;
    }
    .wo-mb {
        margin-bottom: 0px;
    }
    .w-100 {
        width: 90%;
    }
    .card-flex {
        height: 300px;
        img {
            height: 300px !important;
        }
    }
    .testimonial {
        width: 60%;
    }
    .navbar-link {
        display: none;
    }
    .menu-drawer {
        display: inline-flex;
        position: absolute;
        transform: translate(0%, -50%);
        right: 20px;
        top: 50%;
    }
}

@media screen and (max-width: 981px) {
    .card p {
        width: 80%;
    }
    .card .btn-action {
        text-align: center;
        width: 80%;
    }
}

@media screen and (max-width: 950px) {
    .right-section p {
        font-size: 20px;
    }
    .carrousel-container {
        width: 70%;
    }
    .wo-mb {
        margin-top: 0px;
    }
    .card {
        height: 350px;
    }
}

@media screen and (max-width: 850px) {
    .carousel-images img {
        height: 700px;
        object-fit: cover;
    }
}
@media screen and (max-width: 800px) {
    .right-section {
        right: 2px;
    }
    .location-image {
        width: 300px;
    }
    .testimonial {
        width: 80%;
    }
    #oqhdb-1 {
        display: block;
        justify-content: center;
        width: 100%;
    }
    #oqhdb-1 .flex-image-item {
        width: 90%;
        margin-bottom: 100px;
        &:hover {
            filter: brightness(0.5);
        }
    }
    ul li {
        width: 90%;
    }
}

@media screen and (max-width: 800px) {
    
    .navbar-sup {
        height: 150px !important;
    }
    .carousel {
        margin-top: 150px !important;
    }
    .illust-abs {
        top: 700px !important;
    }
    .carousel-images img {
        height: 700px !important;
    }
    .btn-header {
        font-size: 30px !important;
        margin-left: 10px !important;
    }
    .menu-drawer {
        font-size: 40px !important;
    }
    h2 {
        font-size: 50px !important;
    }
    .flex-image-item h2 {
        font-size: 40px !important;
    }
    
    p {
        font-size: 30px !important;
    }

    .mini-card p {
          font-size: 25px !important;
    }

    .card {
        width: 40% !important;
        margin-bottom: 35px !important;
    }
    .cards-group {
        flex-wrap: wrap !important;
    }
    .rectangle-bg {
        top: 100px !important;
    }
    .card .btn-action {
        font-size: 30px !important;
    }
    .card-flex {
        display: grid !important;
        height: 100% !important;
        align-items: start !important;
        padding-bottom: 30px !important;
    }
    .card-flex img {
        width: 100% !important;
    }
    .card-flex .texts {
        width: 90% !important;
        margin: auto !important;
    }
    .card-flex .texts p {
        font-size: 30px !important;
    }
    .card-flex .texts h3 {
        font-size: 40px !important;
        margin-top: 35px !important;
    }
    .cards-group-grid {
        display: block !important;
    }
    .carrousel-item {
        height: 200px !important;
        width: 200px !important;
    }
    .carrousel-btn {
        font-size: 30px !important;
    }
    .carrousel {
        overflow-x: auto !important;
    }
    .carrousel-container {
        width: 95% !important;
        margin-left: 20px;
        margin-top: 100px;
        z-index: 0;
        box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    }
    #pousadas {
        margin-bottom: 70px;
    }
    .right-section {
        width: 40% !important;
        top: -10px !important;
    }

    .unities-section p {
        width: 50% !important;
        margin-left: 20px !important;
        font-size: 30px !important;
    }
    .right-section p {
        font-size: 30px !important;
        width: 95% !important;
    }
    .unity-title {
        width: 65% !important;
        margin-left: 20px !important;
    }
    
    .unities-section ul li {
        width: 50% !important;
        margin-left: 20px !important;
    }
    .testimonial {
        margin-top: 100px !important;
        margin-bottom: 100px !important;
        width: 80% !important;
    }
    #testimonial-text {
        font-size: 30px !important;
    }
    .image-contact {
        width: 60% !important;
        right: -30% !important;
        top:100px !important;
    }
    .title-contact {
        width: 100% !important;
    }
    #texts-contact {
        width: 90% !important;
    }
    .text-contact {
        width: 70% !important;
    }

    #footer img {
        width: 20% !important;
        margin-left: 40% !important;
        margin-right: 40% !important;
    }
    #footer .group-flex .texts ul li {
        font-size: 30px !important;
        word-break: break-all !important;
    }
    #footer .group-flex .texts ul {
        margin-left: 0px !important;
        padding-inline-start: 0px !important;
    }
    #footer .group-flex .texts {
        margin-left: 20px !important;
        margin-right: 20px !important;
        padding-left: 0px !important;
    }
    .location-title {
        margin-left: 20px !important;
    }
    .right-section {
        height: 100% !important;
    }
    #long {
        height: 700px !important;
    }
    .overlay.visible img {
        transform: scale(2) !important;
    }
    .close-overlay {
        top:-250px !important;
        right: 20px !important;
        font-size: 30px !important;
        width: 50px !important;
        height: 50px !important;
    }
    .minicard p {
        font-size: 25px !important;
    }
}

#overlay-sidepanel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    z-index: 11;
}

/* Panel lateral */
#side-panel {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100%;
    background: linear-gradient(to top, #ff8200, #ffbf67);
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    transition: all ease-in-out 0.3s;
    z-index: 12;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

#side-panel .btn-header {
    font-size: 50px;
}

/* Botón de cerrar */
.close-btn {
    position: absolute;
    top: 60px;
    right: 60px;
    font-size: 70px;
    color: #043475;
    margin-bottom: 20px;
    cursor: pointer;
    align-self: flex-end;
}

/* Menú de opciones */
.menu-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-options li {
    margin: 50px 50px;
}

.menu-options a {
    color: #043475;
    text-decoration: none;
    font-size: 50px;
    font-family: "Raleway", sans-serif;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.menu-options a:hover {
    font-size: 35px;
}

#logo-heading {
    width: 100px;
    height: 100px;
    margin: 12px;
    margin-right: 100px;
    cursor:pointer !important; 
    pointer-events:all;
}

