@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root{
    --primary:#0077b6;
    --secondary:#48cae4;
    --black:#333;
    --white:#fff;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: none;
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: var(--primary);
    border-radius: .5rem;
}

section{
    padding: 5rem 7%;
}

.heading{
    font-size: 4rem;
    color: var(--primary);
    text-align: center;
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 3rem;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 3rem;
    background: var(--primary);
    border-radius: .5rem;
    color: var(--white);
    font-size: 1.7rem;
    cursor: pointer;
}

.btn:hover{
    background: var(--secondary);
}

/* header */

.header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
}

.header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
}

.header .logo i{
    color: var(--primary);
    padding-right: .5rem;
}

/* Logo Image Styling */
.header .logo img.logo-img {
    height: 150px;  /* slightly bigger than original HOTEL logo */
    width: auto;   /* keeps aspect ratio */
    display: block;
}

/* Mobile version */
@media (max-width: 768px){
    .header .logo img.logo-img {
        height: 70px;  /* fits smaller screens */
    }
}

.header .navbar a{
    font-size: 1.7rem;
    color: var(--black);
    margin: 0 1rem;
}

.header .navbar a:hover{
    color: var(--primary);
}

.header .navbar .btn{
    margin-top: 0;
    color: var(--white);
}

.header .navbar .btn:hover{
    color: var(--white);
}

#menu-btn{
    display: none;
    font-size: 2.5rem;
    margin-left: 1.7rem;
    cursor: pointer;
    color: var(--black);
}

#menu-btn:hover{
    color: var(--primary);
}

/* end */

/* home */

.home{
    padding: 0;
}

.home .slide{
    min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.home .slide .content{
    width: 80rem;
    text-align: center;
}

.home .slide .content h3{
    font-size: 4rem;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    padding: 2rem 0;
}

.swiper-button-next,
.swiper-button-prev{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    background: var(--white);
    color: var(--black);
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background: var(--primary);
    color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 2rem;
}

/* end */

/* availability */

.availability form{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: #eee;
    padding: 2rem;
    border-radius: .5rem;
}

.availability form .box{
    flex: 1 1 20rem;
}

.availability form .box p{
    font-size: 2rem;
    color: var(--primary);
}

.availability form .box .input{
    width: 100%;
    padding: 1rem;
    font-size: 1.8rem;
    color: var(--black);
    margin: 1rem 0;
    border-radius: .5rem;
}

/* end */

/* about */

.about .row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6rem;
}

.about .row .image{
    flex: 1 1 30rem;
}

.about .row .image img{
    width: 100%;
}

.about .row .content{
    flex: 1 1 51rem;
}

.about .row .content h3{
    font-size: 3.5rem;
    color: var(--primary);
    padding: 2rem 0;
}

.about .row .content p{
    font-size: 1.6rem;
    color: #666;
    padding: 1rem 0;
    line-height: 1.8;
}

/* end */

/* rooms */

.room .slide{
    background: var(--white);
    border: .1rem solid rgba(0, 0, 0, 0.2);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 4rem;
}

.room .slide .image{
    height: 25rem;
    width: 100%;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
}

.room .slide .image img{
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

.room .slide .image .price{
    position: absolute;
    top: 2.5rem; left: 2.5rem;
    background: var(--primary);
    color: var(--white);
    font-size: 1.7rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    text-transform: lowercase;
}

.room .slide .image .fa-shopping-cart{
    position: absolute;
    top: 2.5rem; right: 2.5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
    font-size: 2rem;
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
}

.room .slide .image .fa-shopping-cart:hover{
    background: var(--secondary);
    color: var(--white);
}

.room .slide .content{
    padding: 2rem;
    padding-top: 0;
}

.room .slide .content h3{
    font-size: 2.5rem;
    color: var(--black);
}

.room .slide .content p{
    font-size: 1.6rem;
    color: #666;
    padding: .5rem 0;
    line-height: 1.5;
}

.room .slide .content .stars{
    padding: 1rem 0;
}

.room .slide .content .stars i{
    font-size: 1.7rem;
    color: var(--primary);
}

/* end */

/* services */

.services .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem,1fr));
    gap: 2rem;
}

.services .box-container .box{
    text-align: center;
}

.services .box-container .box img{
    height: 10rem;
    margin-bottom: .7rem;
}

.services .box-container .box h3{
    font-size: 1.7rem;
    color: var(--black);
    padding: .5rem 0;
}

/* end */

/* gallery */

.gallery .slide{
    height: 30rem;
    position: relative;
    overflow: hidden;
}

.gallery .slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery .slide .icon{
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0; left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.gallery .slide .icon i{
    font-size: 6rem;
    color: var(--white);
}

.gallery .slide:hover .icon{
    display: flex;
}

/* end */

/* review */

.review{
    background-image: url("images/review.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 48rem;
    position: relative;
    margin: 4rem 0;
}

.review .review-slider{
    background: var(--secondary);
    padding: 2rem;
    width: 50%;
    height: 145%;
    margin-top: -8rem;
    margin-right: 60rem;
    padding-top: 6%;
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.review .slide{
    text-align: center;
}

.review .slide .heading{
    color: var(--white);
}

.review .slide i{
    font-size: 6rem;
    color: var(--primary);
}

.review .slide p{
    padding-bottom: 1.5rem;
    padding-top: 3rem;
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--white);
}

.review .slide .user{
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    border-radius: .5rem;
}

.review .slide .user img{
    height: 7rem;
    width: 7rem;
    border-radius: 15%;
    object-fit: cover;
}

.review .slide .user h3{
    font-size: 2rem;
    color: var(--black);
    padding-bottom: .5rem;
}

.review .slide .user i{
    font-size: 1.3rem;
    color: var(--primary);
}

/* end */

/* faq */

.faqs .row{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.faqs .row .image{
    flex: 1 1 40rem;
}

.faqs .row .image img{
    width: 100%;
}

.faqs .row .content{
    flex: 1 1 40rem;
}

.faqs .row .content .box{
    margin-top: 2rem;
}

.faqs .row .content .box h3{
    font-size: 2rem;
    color: var(--primary);
    padding: 1.5rem;
    cursor: pointer;
}

.faqs .row .content .box p{
    font-size: 1.6rem;
    padding: 1.5rem 2rem;
    line-height: 2;
    color: var(--text);
    box-shadow: var(--box-shadow);
    display: none;
}

.faqs .row .content .box.active p{
    display: inline-block;
}

/* end */

/* reservation */

.reservation form{
    padding: 2rem;
    border: .2rem solid rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
}

.reservation form .container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.reservation form .container .box{
    flex: 1 1 40rem;
}

.reservation form .container .box p{
    font-size: 1.8rem;
    color: var(--primary);
}

.reservation form .container .box .input{
    font-size: 1.8rem;
    width: 100%;
    padding: 1rem 0;
    margin: 1rem 0;
    border-bottom: .2rem solid rgba(0, 0, 0, 0.1);
    color: var(--black);
}

/* end */

/* footer */

.footer{
    background: var(--secondary);
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h3{
    font-size: 2.2rem;
    padding: 1rem 0;
    color: var(--primary);
}

.footer .box-container .box a{
    font-size: 1.6rem;
    display: block;
    color: var(--white);
    padding: 1rem 0;
}

.footer .box-container .box a i{
    color: var(--primary);
    padding-right: .5rem;
}

.footer .box-container .box a:hover{
    color: var(--primary);
}

.footer .share{
    padding-top: 2rem;
    text-align: center;
}

.footer .share a{
    color: var(--primary);
    font-size: 2rem;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    border-radius: 50%;
    border: .1rem solid var(--primary);
    margin: .3rem;
}

.footer .share a:hover{
    color: var(--white);
    background: var(--primary);
    transform: rotate(360deg);
}

.footer .credit{
    font-size: 2rem;
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: .1rem solid rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.footer .credit span{
    color: var(--primary);
}

/* end */

/* media queries */

@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem 3rem;
    }

}

@media (max-width: 768px){

    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 110%; right: -110%;
        width: 30rem;
        box-shadow: var(--box-shadow);
        background: var(--white);
        border-radius: .5rem;
    }

    .header .navbar.active{
        right: 2rem;
        transition: .4s linear;
    }

    .header .navbar a{
        font-size: 2rem;
        margin: 2rem 2.5rem;
        display: block;
    }

    .home .slide .content{
        width: 50rem;
    }

    .review .review-slider{
        width: 100%;
        padding: 1rem;
        padding-top: 15%;
    }

}

@media (max-width: 450px){

    html{
        font-size: 50%;
    }

    .home .slide .content{
        width: 30rem;
    }

    .home .slide .content h3{
        font-size: 3rem;
    }

}

/* WhatsApp Floating Button */
.whatsapp-float-text {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-float-text i {
    font-size: 20px;
}

.whatsapp-float-text:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}

/* ----------------------------
   Accordion / Collapsible Section
---------------------------- */
/* ===== Centered Accordion Container ===== */
.accordion-container {
    width: 90%;
    max-width: 900px;       /* wide enough for content */
    margin: 40px auto;      /* centers horizontally */
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* ===== Accordion Button ===== */
.accordion {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    padding: 22px 30px;      /* larger padding */
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    font-size: 24px;         /* bigger button text */
    font-weight: 600;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.accordion:hover {
    background-color: #0056b3;
}

/* ===== Accordion Panel ===== */
.panel {
    padding: 25px 30px;
    display: none;            /* hidden by default */
    background-color: #f9f9f9;
    overflow: hidden;
    border-left: 2px solid #007BFF;
    border-right: 2px solid #007BFF;
    border-bottom: 2px solid #007BFF;
    border-radius: 0 0 10px 10px;
    margin-top: 5px;
}

/* ===== Panel Text Styling ===== */
.panel p {
    margin: 0;
    line-height: 1.8;        /* spacing between lines */
    font-size: 20px;          /* bigger text for readability */
    font-weight: 500;         /* slightly bold for clarity */
    color: #333;              /* soft black text */
}

/* Optional: make emojis slightly bigger */
.panel p strong::before {
    font-size: 22px;
}
.transfer-container{
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 3rem;
   margin-top: 2rem;
   padding: 0 5%;
}

.transfer-box{
   width: 100%;
   background: #fff;
   text-align: center;
   padding: 2rem;
   border-radius: 12px;
   box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.transfer-box img{
   width: 100%;
   height: 350px;
   object-fit: cover;
   border-radius: 12px;
}

@media (max-width: 768px){
   .transfer-container{
      grid-template-columns: 1fr;
      padding: 0 3%;
   }
}
.room .content h3{
   font-size: 2rem;
   color: var(--black);
}

.room .content p{
   font-size: 1.5rem;
   line-height: 1.6;
   color: var(--light-color);
}

.single-transfer{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 3rem;
   padding: 3rem 5%;
}

.single-transfer .image{
   flex: 1;
}

.single-transfer .image img{
   width: 100%;
   height: 400px;
   object-fit: cover;
   border-radius: .8rem;
}

.single-transfer .content{
   flex: 1;
}

.single-transfer .content h3{
   font-size: 2.5rem;
   color: var(--black);
}

.single-transfer .content p{
   font-size: 1.6rem;
   line-height: 1.6;
   color: var(--light-color);
   padding: 1rem 0;
}
@media (max-width: 768px){
   .single-transfer{
      flex-direction: column;
      text-align: center;
   }

   .single-transfer .image img{
      height: auto;
   }
}

.room-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 20px;
}

.slide {
   border: 1px solid #ddd;
   border-radius: 10px;
   overflow: hidden;
   background: #fff;
}

.image img {
   width: 100%;
   display: block;
}
/* =========================================
   STATIC GRID ONLY FOR TRANSFERS + CAR RENTALS
========================================= */

#transfers .room-container,
#car-rentals .room-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Remove any slider behavior */
#transfers .slide,
#car-rentals .slide {
  width: 100% !important;
  margin: 0 !important;
}

/* =========================================
   UNIFORM IMAGE SIZE (BOTH SECTIONS)
========================================= */

#transfers .slide .image,
#car-rentals .slide .image {
  width: 100%;
  height: 220px;
overflow: visible;
  position: relative;
}

/* Ensure full image is visible */
#transfers .slide .image img,
#car-rentals .slide .image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* FULL car visible */
  display: block;
  margin: 0 auto;
  border-radius: .5rem;
}

/* TABLET FIX */
@media (min-width: 769px) and (max-width: 1024px) {

  .managua-slide .image{
      height: auto !important;
      padding-top: 3rem;
      overflow: visible !important;
  }

  .managua-slide .image img{
      max-height: 320px;
      width: auto !important;
      max-width: 100%;
      object-fit: contain !important;
      background: transparent !important;
  }

}

/* SMALL LAPTOPS */
@media (min-width: 1025px) and (max-width: 1366px) {
  #transfers .slide .image,
  #car-rentals .slide .image {
    height: 200px !important;
  }
}

/* DESKTOP */
@media (min-width: 1367px) {
  #transfers .slide .image,
  #car-rentals .slide .image {
    height: 210px !important;
  }
}

/* =========================================
   STATIC GRID (NO SLIDER)
========================================= */

#transfers .room-container,
#car-rentals .room-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

#transfers .slide,
#car-rentals .slide {
  width: 100% !important;
  margin: 0 !important;
}

/* =========================================
   IMAGE SIZE (SIMPLE + STABLE)
========================================= */

#transfers .slide .image,
#car-rentals .slide .image {
  width: 100%;
  height: 210px; /* ONE clean value for all devices */
  overflow: hidden;
  position: relative;
}

#transfers .slide .image img,
#car-rentals .slide .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: .5rem;
}
.flatpickr-day.flatpickr-disabled {
    background: repeating-linear-gradient(
        45deg,
        #ffe5e5,
        #ffe5e5 5px,
        #ffd6d6 5px,
        #ffd6d6 10px
    ) !important;
    color: #cc0000 !important;
    border: 1px solid #ff3b3b !important;
    opacity: 1 !important;
    cursor: not-allowed;
}

/* =========================================
   TRANSFERS WITHIN MANAGUA
========================================= */

/* =========================================
   TRANSFERS WITHIN MANAGUA
========================================= */

.sub-heading{
   font-size: 3rem;
   color: var(--primary);
   text-align: center;
   margin: 4rem 0 2rem;
   font-weight: bold;
}

.managua-slide{
   max-width: 1200px;
   margin: 0 auto 5rem auto;
   position: relative;
   overflow: visible;
}

/* IMAGE CONTAINER */
.managua-slide .image{
   width: 100%;
   padding: 2rem 2rem 0 2rem;
   background: transparent;
   display: flex;
   justify-content: center;
   align-items: center;
   overflow: visible !important;
   border-radius: 0;
   position: relative;
   z-index: 1;
}

/* CAR IMAGE */
.managua-slide .image img{
   width: auto !important;
   max-width: 100%;
   max-height: 500px;
   height: auto !important;
   object-fit: contain !important;
   object-position: center;
   display: block;
   margin: 0 auto;
   background: transparent !important;
   border-radius: 0;
   position: relative;
   z-index: 1;
}

/* CONTENT */
.managua-slide .content{
   position: relative;
   z-index: 5;
   margin-top: -2rem;
   padding: 0 2rem 2rem 2rem;
}

/* TITLE */
.managua-slide .content h3{
   position: relative;
   z-index: 10;
   font-size: 3rem;
   margin-bottom: 1rem;
}

/* DESCRIPTION */
.managua-slide .content p{
   position: relative;
   z-index: 10;
   font-size: 1.7rem;
   line-height: 1.7;
   margin-bottom: 2rem;
}

/* FORM */
.managua-transfer-form{
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   margin-top: 2rem;
   position: relative;
   z-index: 20;
}

/* INPUTS */
.managua-transfer-form .box{
   width: 100%;
   padding: 1.4rem;
   font-size: 1.6rem;
   border: 1px solid #ccc;
   border-radius: .7rem;
   background: #fff;
   color: #333;
}

/* BUTTON */
.managua-transfer-form .btn{
   width: 100%;
   text-align: center;
   font-size: 1.8rem;
}

/* MOBILE */
@media (max-width: 768px){

   .managua-slide .image{
      padding: 1rem 1rem 0 1rem;
   }

   .managua-slide .image img{
      max-height: 300px;
      width: auto !important;
      max-width: 100%;
   }

   .managua-slide .content{
      margin-top: -1rem;
      padding: 0 1rem 2rem 1rem;
   }

   .sub-heading{
      font-size: 2.3rem;
   }

   .managua-slide .content h3{
      font-size: 2.3rem;
   }

}

/* FIX TITLES ABOVE CAR IMAGE */

#transfers .heading,
#transfers .sub-heading {
   position: relative;
   z-index: 100;
   background: #fff;
}

.managua-slide {
   position: relative;
   z-index: 1;
}
/* =========================================
   BOOKING SUMMARY
========================================= */

.booking-summary {
   margin-top: 2rem;
   background: #fff;
   padding: 2rem;
   border-radius: .8rem;
   box-shadow: var(--box-shadow);
   font-size: 1.6rem;
}

.booking-summary h3 {
   font-size: 2.5rem;
   color: var(--primary);
   margin-bottom: 1.5rem;
}

.booking-summary p {
   font-size: 1.6rem;
   color: var(--black);
   line-height: 1.8;
   margin-bottom: .8rem;
}

.price-breakdown {
   background: #f5f5f5;
   padding: 1.5rem;
   border-radius: .7rem;
   margin: 1.5rem 0;
}

.summary-total {
   font-size: 2rem !important;
   color: var(--primary) !important;
   font-weight: bold;
}

#reserveWhatsappBtn {
   display: inline-block;
   width: 100%;
   text-align: center;
   margin-top: 1.5rem;
}

/* =========================================
   MODERN MANAGUA ESTIMATE FORM
========================================= */

.managua-transfer-form{
   background: #fff;
   padding: 30px;
   border-radius: 20px;
   box-shadow: 0 10px 30px rgba(0,0,0,.08);
   margin-top: 25px;
}

.managua-transfer-form .box{
   width: 100%;
   background: #f8f9fa;
   border: 2px solid #e9ecef;
   border-radius: 12px;
   padding: 16px;
   font-size: 17px;
   color: #333;
   margin-bottom: 15px;
}

.managua-transfer-form .box:focus{
   border-color: #14a94a;
   background: #fff;
}

.managua-transfer-form select.box{
   cursor: pointer;
}

.managua-transfer-form .btn{
   width: 100%;
   background: var(--primary);
   color: #fff;
   border: none;
   border-radius: 14px;
   padding: 18px;
   font-size: 22px;
   font-weight: 900;
   margin-top: 10px;
   cursor: pointer;
   transition: .3s;
}

.managua-transfer-form .btn:hover{
   background: var(--secondary);
   transform: translateY(-2px);
}

.managua-transfer-form .btn:hover{
   background: #0f8c3d;
   transform: translateY(-2px);
}

.transfer-badges{
   display:flex;
   gap:15px;
   margin-bottom:20px;
}

.transfer-badge{
   flex:1;
   background:#f8f9fa;
   border-radius:12px;
   padding:14px;
   text-align:center;
   font-size:14px;
   font-weight:700;
   color:#333;
}

.transfer-badge span{
   display:block;
   font-size:22px;
   margin-bottom:5px;
}

@media(max-width:768px){

   .managua-transfer-form{
      padding:20px;
   }

   .transfer-badges{
      flex-direction:column;
   }

}

.reservation-title{
   text-align:center;
   margin:20px 0 15px;
}

.reservation-title h2{
   display:inline-block;
   background:#0077b6;
   color:#fff;
   padding:12px 35px;
   border-radius:6px;
   font-size:28px;
   font-weight:700;
   margin:0;
}