:root {
    --primary-color: #0A1752;
    --secondary-color: #070F3C;
    --accent-color: #3498DB;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --dark-color: #070F3C;
    --gray-color: #6c757d;
    --white: #ffffff;
}


.nav-menu .btn-primary {
    margin-left: 110px; ;
}
/* Fontes */
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica World';
    src: url('../fonts/helveticaworld.woff2') format('woff2'),
         url('../fonts/helveticaworld.woff') format('woff');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica World', sans-serif;
    scroll-behavior: Smooth;
}

h1, h2, h3, h4, h5, h6 {
        font-family: 'Quicksand', sans-serif;
}

body {
    background-color: var(--light-gray);
    line-height: 1.6;
    padding-top: 50px;
    margin-top: 50px;

}

/* Header */
.header {
    background: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 0.8);
}

.navbar .btn-primary {
    background-color: transparent;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid white;
    font-family: 'Helvetica World', sans-serif;
}

.navbar .btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 7rem;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    gap: 1rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.btn-primary {
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: 2px solid white;
    font-family: 'Helvetica World', sans-serif;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 600px;
    margin-top: -80px; /* Compensar o header fixo */
}

.hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Angella White', serif;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--primary-color);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 1.5rem;
}

/* Filtro de Imóveis */
.filter-section {
    background: var(--white);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.filter-input {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    font-size: 1rem;
}

/* Cards de Imóveis */
.properties-grid {
    padding-top: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 66.67%; /* Proporção 3:2 */
}

.property-card-image-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card-image-link:hover img {
    transform: scale(1.05);
}

.property-info {
    padding: 1rem;
}

.property-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: Helvetica;
}

.property-card-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.property-card-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.property-card-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.property-card-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.property-card-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.property-card-location i {
    color: var(--primary-color);
}

.property-card-agent {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.property-card-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.btn-details {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-family: 'Helvetica World', sans-serif;
}

.btn-details:hover {
    background-color: var(--primary-color-dark);
    color: white;
}

/* Property Info Card */
.property-info-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.property-main-info {
    flex: 1;
}

.property-main-info h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
        font-family: 'Quicksand', sans-serif;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.property-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.agent-info {
    background: #f8f9fa;
   /* padding: 1.5rem; */
    border-radius: 8px;
    min-width: 250px;
    margin-left: 2rem;
}

.agent-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.agent-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.agent-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
}

.agent-contact-item i {
    width: 20px;
    color: var(--primary-color);
}

.agent-contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.agent-contact a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .property-info-card {
        flex-direction: column;
    }

    .agent-info {
        margin-left: 0;
        margin-top: 1.5rem;
        width: 100%;
    }
}

/* Formulário de Contato */
.contact-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Página da Empresa */
.company-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

.company-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Página do Imóvel */
.property-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.property-title {
    font-weight: 400;
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'Helvetica World';
}

.property-price {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.property-gallery {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    height: 600px;
}

@media (max-width: 768px) {
    .property-gallery {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        height: auto;
    }
}

.property-main-image {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.property-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-thumbnails {
    height: 100%;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding-right: 10px;
}

.property-thumbnails::-webkit-scrollbar {
    width: 6px;
}

.property-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.property-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.property-thumbnail {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    display: block;
    text-decoration: none;
}

.property-thumbnail:hover {
    transform: scale(1.02);
}

.property-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.property-description {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.property-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.property-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-contact {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.property-contact .form-control {
    border-color: #e0e0e0;
}

.property-contact .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}

.property-contact .input-group-text {
    background-color: #f8f9fa;
    border-color: #e0e0e0;
    color: #6c757d;
}

.property-contact .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Helvetica World', sans-serif;
}

.property-contact .btn-primary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

.similar-properties {
    margin-top: 3rem;
}

.similar-properties h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Property Features */
.property-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Seção de Distritos */
.districts-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: 'Angella White', serif;
}

.section-title.text-center {
    text-align: center;
    margin: 40px 0;
    font-size: 32px;
    font-weight: 600;
    color: #333;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.district-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.district-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.district-content {
    width: 100%;
}

.district-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Angella White', serif;
}

.district-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-district {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    font-family: 'Helvetica World', sans-serif;
}

.btn-district:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-district i {
    margin-left: 8px;
    font-size: 0.9rem;
}

/* Responsividade para Distritos */
@media (max-width: 768px) {
    .districts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 15px;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .district-card {
        min-height: 180px;
        padding: 20px;
    }

    .district-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .districts-grid {
        grid-template-columns: 1fr;
    }

    .district-card {
        min-height: 160px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float span {
    font-weight: 500;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
    max-width: 70%;
}

.cookie-banner .btn-group {
    display: flex;
    gap: 1rem;
}

.cookie-banner .btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Helvetica World', sans-serif;
}

.cookie-banner .btn-accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-banner .btn-accept:hover {
    background-color: #0a1752;
}

.cookie-banner .btn-reject {
    background-color: #f5f5f5;
    color: #333;
}

.cookie-banner .btn-reject:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner p {
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

/* Footer */
.footer {
    background-color: rgba(17,17,17,0.96);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    border-radius: 8px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-heading {
    color: white;
    font-family: 'Angella White', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact i {
    width: 20px;
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }

    .navbar .btn-primary {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        font-family: 'Helvetica World', sans-serif;
    }
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 34px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        padding-top: 35px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        background: var(--primary-color);
        padding: 20px;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
        margin: 0 auto;
    
    }

    .nav-menu .btn-primary {
        margin: 10px auto;
        width: fit-content;
        font-family: 'Helvetica World', sans-serif;
    }

    .nav-link {
        padding: 10px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }
}

.property-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: Helvetica;
}
.property-title {
    font-family: Quicksand;
    font-weight: 600;
}
.active .btn-primary {
    margin: 0 auto;
    font-family: 'Helvetica World', sans-serif;
}

.nav-menu .btn-primary {
    font-family: quicksand;
}

.property-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.property-title-link:hover {
    color: var(--primary-color);
}

.property-card-image-link {
    cursor: pointer;
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 66.67%; /* Proporção 3:2 */
}

/* Novo Slider */
.new-slider {
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
}

.new-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.new-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-slider .swiper-button-next,
.new-slider .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 5px;
}

.new-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.7;
}

.new-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #007bff;
}
button {
    font-family: Helvetica World;
}
.btn-primary {
    background-color: var(--primary-color); /* Blue primary color */
    color: white; /* White text */
    transition: font-size 0.2s ease; /* Smooth transition for font size */
    cursor: pointer;
    font-family: 'Helvetica World', sans-serif;
}

.btn-primary:hover {
    font-size: 1.05rem; /* Slightly increase font size on hover */
}
.fa-bars {
    margin-right: 15px;
}

@media (min-width:900px){

    
    .fa-bars {
     display: none;   
    }
        
    }
    
    