@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');




  

  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  body {
    font-family: 'Open Sans';
  }
  
  a {
    color: #668CC0;
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, #668CC0, transparent 25%);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Open Sans';
  }


  /*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
  .header {
    background-color: #fff; 
    color: #040834;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .header .topbar {
    height: 100px;
    padding: 0;
    transition: all 0.5s;
  }

  
  @media (max-width: 575px) {
  
    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
      font-size: 14px;
    }
  }
  
  .header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;

  }
  
  .header .topbar .contact-info i a:hover {
    color: red;
    text-decoration: underline;
  }
  

  
  .header .topbar .languages ul a:hover {
    color: red;
  }
  
  .header .topbar .languages ul li+li {
    padding-left: 10px;
  }
  
  .header .topbar .languages ul li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, #fff, transparent 10%);
    content: "/";
  }
  
  .header .branding {
    background-color: #fff;
    min-height: 60px;
    padding: 10px 0;
    transition: 0.3s;
    height: 100px;

  }
  
  .header .logo {
    line-height: 1;
    
  }
  
  .header .logo img {
    
    height: 78px;

  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: #040834;
  }
  
  .header .btn-book-a-table,
  .header .btn-book-a-table:focus {
    color: #fff;
    font-family: 'Open Sans';
    
    font-size: 16px;
    padding: 6px 36px;
    margin: 0 5px 0 30px;
    border-radius: 50px;
    transition: 0.3s;
    background: #668CC0;
    font-style: normal;
    line-height: normal;
    transition: background-color 0.3s;
  }
  
  .header .btn-book-a-table:hover,
  .header .btn-book-a-table:focus:hover {
    color: #fff;
    background: #040834;
    
  }
  
  .scrolled .header .topbar {
    height: 0;
    visibility: hidden;
    overflow: hidden;
  }
  
  .scrolled .header .branding {
    border-color: color-mix(in srgb, red, transparent 80%);
  }
  
  /* Global Header on Scroll
  ------------------------------*/
  .scrolled .header {
    --background-color: #0c0b09;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/



  /* Navmenu - Desktop */
  @media (min-width: 1200px) {
    

    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: #040834;
      padding: 18px 15px;
      font-family: 'Open Sans';
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      font-size: 16px;
      font-style: normal;
      line-height: normal;
      margin: 0 24px;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 16px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu li:last-child a {
      padding-right: 0;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #668CC0;
        font-family: 'Open Sans';
        font-size: 16px;
        font-style: normal;
        
        line-height: normal;
    }
    }
  
  /* Navmenu - Mobile */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: #040834;
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      color: #668CC0;
      border: 1px solid color-mix(in srgb, #668CC0, transparent 90%);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: #fff;
      padding: 10px 20px;
      font-family: 'Open Sans';
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: red;
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: #668CC0;
    }
  
 
    
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }



/* Hero Section */
.hero {
    margin-top: 116px;
    /* background: url('../img/home/hero.jpg') no-repeat center/cover; */
    max-width: 100%;
    color: #fff;
    text-align: center;
    padding: 250px 0;
}

.hero h1 {
    color: #040834;
    font-family:'Open Sans';
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.hero p {
    color: #040834;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.btn-reserva {
    background: #668CC0;
    color: #fff;
    gap: 10px;
    padding: 13px 36px;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color 0.3s;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    line-height: normal;
}

.btn-reserva:hover {
    background-color: #040834; 
    color: #fff;
}



/* Media Queries */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
  margin-top: 120px;
}

.section-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  font-family: "Open Sans";
  line-height: normal;
  margin: 0;
  letter-spacing: 1.5px;
  /*text-transform: uppercase;*/
  color:  #040834;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: #668CC0;
  margin: 4px 10px;
}

.section-title p {
  color: #668CC0;
  font-family: "Playfair Display";
  margin: 0;
  font-style: normal;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}


/*--------------------------------------------------------------
# Global Description Section 
--------------------------------------------------------------*/
.description {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.description p {
  margin-bottom: 0;
  color: #040834;
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid #9496A1;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #9496A1;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: #fff;
    border: 6px solid #9496A1;
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #668CC0;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #668CC0, transparent 20%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}





/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff; 
}

.testimonials .testimonial-item h3 {
  margin: 10px 0 5px 45px;
  color: #668CC0;
  font-family: "Playfair Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color:  #040834; 
  margin: 0 0 0 45px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #BCC5D3;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #EDE7E3;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  color: #040834;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  opacity: 1;
  border: 1px solid #9496A1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #9496A1;
}




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  margin-top: 100px;
  color: #040834;
  background: url('../img/footer.png') no-repeat center/cover;
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer .icon {
  color: #040834;
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  margin-bottom: 15px;
  font-family: "Playfair Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #040834;
  font-size: 16px;
  color: #040834;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #668CC0;
  border-color: #668CC0;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid  #BCC5D3;
}

.footer .copyright p {
  margin-bottom: 0;
  color: #040834;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}



/*--------------------------------------------------------------
/ banner Section 
--------------------------------------------------------------*/



.banner h2 {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  align-items: end;
}




.banner {
  position: relative;
  margin-top: 116px;
  background: url('../img/plan/banner.png') no-repeat center center;
  background-size: cover;
  height: 550px;
  display: flex;
  align-items: flex-end; 
  justify-content: flex-start; 
  color: #fff;
}

.banner-text {
  margin-bottom: 60px;
}

.banner-text h2 {
  font-family: "Playfair Display";
  font-size: 40px;
  font-weight: 600;
  color: white;
}


.content-section p {
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0;
}



/*--------------------------------------------------------------
# Specials Section
--------------------------------------------------------------*/
.specials {
    overflow: hidden;
  }
  
  .specials .nav-tabs {
    border: 0;
  }
  
  .specials .nav-link {
    border: 0;
    padding: 12px 15px;
    transition: 0.3s;
    color: #040834;
    border-radius: 0;
    border-right: 2px solid #668CC0;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  
  .specials .nav-link:hover {
    color: #668CC0;
  }
  
  .specials .nav-link.active {
    color: #fff;
    background-color: #668CC0;
  }
  
  .specials .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
  }
  
  .specials .details h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #040834;
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  
  .specials .details p {
    color: color-mix(in srgb, #040834, transparent 20%);
  }
  
  .specials .details p:last-child {
    margin-bottom: 0;
  }
  
  @media (max-width: 992px) {
    .specials .nav-link {
      border: 0;
      padding: 15px;
    }
  
    .specials .nav-link.active {
      color: #fff;
      background: #668CC0;
    }
  }
  




/*--------------------------------------------------------------
/ banner About Section 
--------------------------------------------------------------*/



.banner-about h2 {
    color: #fff;
    font-family: "Playfair Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    align-items: end;
  }
  
  
  
  
  .banner-about {
    position: relative;
    margin-top: 116px;
    background: url('../img/about/banner-about.png') no-repeat center center;
    background-size: cover;
    height: 550px;
    display: flex;
    align-items: flex-end; 
    justify-content: flex-start; 
    color: #fff;
  }
  
  

  

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.about:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
  
.about .container {
    position: relative;
  }
  
  .about .content p {
    color: #040834;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .about .content p:last-child {
    margin-bottom: 0;
  }
  




/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

  
  .team .member {
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .team .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
  }
  
  .team .member .member-info-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
  }
  
  .team .member .member-info-content h4 {
    color: #fff;
    margin-bottom: 2px;
    font-size: 18px;
    color: #FFF;
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  
  .team .member .member-info-content span {
    font-style: italic;
    display: block;
    color: #fff;
    color: #FFF;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
  }
  
  .team .member .social {
    position: absolute;
    left: 0;
    bottom: -38px;
    right: 0;
    height: 48px;
    transition: bottom ease-in-out 0.4s;
    text-align: center;
  }
  
  .team .member .social a {
    transition: color 0.3s;
    color: color-mix(in srgb, #fff, transparent 20%);
    margin: 0 10px;
    display: inline-block;
  }
  
  .team .member .social a:hover {
    color: #668CC0;
  }
  
  .team .member .social i {
    font-size: 18px;
    margin: 0 2px;
  }
  
  .team .member:hover .member-info {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    transition: 0.4s;
  }
  
  .team .member:hover .member-info-content {
    bottom: 60px;
    transition: bottom 0.4s;
  }
  
  .team .member:hover .social {
    bottom: 0;
    transition: bottom ease-in-out 0.4s;
  }



/*--------------------------------------------------------------
/ banner blog Section 
--------------------------------------------------------------*/



.banner-blog h2 {
    color: #fff;
    font-family: "Playfair Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    align-items: end;
  }
  
  
  
  
  .banner-blog {
    position: relative;
    margin-top: 116px;
    background: url('../img/blog/banner-blog.png') no-repeat center center;
    background-size: cover;
    height: 550px;
    display: flex;
    align-items: flex-end; 
    justify-content: flex-start; 
    color: #fff;
  }



/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts .title-wrap {
    padding-bottom: 30px;
  }
  
  .blog-posts .content-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
  }
  
  .blog-posts .content-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .blog-posts .post-entry .thumb {
    margin-bottom: 20px;
  }
  
  .blog-posts .post-entry .thumb img {
    transition: 0.3s all ease;
  }
  
  .blog-posts .post-entry .thumb:hover img {
    opacity: 0.8;
  }
  
  .blog-posts .post-entry .meta {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .blog-posts .post-entry .meta .cat {
    color: #040834;
    text-align: center;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
  }
  
  .blog-posts .post-entry .meta .date {
    color: #727577;
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
  }
  
  .blog-posts .post-entry .post-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .blog-posts .post-entry .post-content h3 {
    color: #040834;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  
  .blog-posts .post-entry .post-content h3 a {
    color: #040834;
  }
  
  .blog-posts .post-entry .post-content h3 a:hover {
    color: #668CC0;
  }
  
  .blog-posts .author .pic {
    flex: 0 0 50px;
    margin-right: 20px;
  }
  
  .blog-posts .author .author-name {
    line-height: 1.3;
  }
  
  .blog-posts .author .author-name strong {
    color: #040834;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  
  .blog-posts .author .author-name span {
    color: color-mix(in srgb, #668CC0, transparent 25%);
    color: #040834;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }



/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, #040834, transparent 40%);
  }
  
  .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
  }
  
  .blog-pagination li a {
    color: color-mix(in srgb, #040834, transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .blog-pagination li a.active,
  .blog-pagination li a:hover {
    background: #EDE7E3;
    color: #668CC0;
  }
  
  .blog-pagination li a.active a,
  .blog-pagination li a:hover a {
    color: #040834;
  }





/*--------------------------------------------------------------*/







/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: #040834;
    background: #EDE7E3;
    padding: 20px 0;
    position: relative;
  }
  
  .page-title h1 {
    margin: 0 0 5px 0;
    color: #040834;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  .page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
  }
  
  .page-title .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb,#040834, transparent 70%);
  }


  .page-title h3 {
    color: #668CC0;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 125% */
  }
  
  .page-title p {
    color: #040834;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
  }






/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
  }
  
  .blog-details .article {
    background-color: #fff;
    padding: 30px;
    
  }
  
  .blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
  }
  
  .blog-details .title {
    padding: 0;
    margin: 30px 0;
    color: #040834;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  
  .blog-details .content {
    margin-top: 20px;
  }
  
  .blog-details .content h3 {
    margin-top: 30px;
    font-weight: bold;
    color: #040834;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    line-height: normal;
  }
  
  .blog-details .content blockquote {
    overflow: hidden;
    background-color:  #E8E9EF;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
  }
  
  .blog-details .content blockquote p {
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    color: #040834;
    font-family: "Open Sans";
    line-height: normal;
  }
  
  .blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color:  #668CC0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .blog-details .meta-top {
    margin-top: 20px;
    color: #9496A1;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  .blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    
    padding: 0;
    margin: 0;
  }
  
  .blog-details .meta-top ul li+li {
    padding-left: 20px;
  }
  
  .blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: #9496A1;
  }
  
  .blog-details .meta-top a {
    color: #9496A1;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }
  
  .blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid #9496A1;
  }
  
  .blog-details .meta-bottom i {
    color: #9496A1;
    display: inline;
  }
  
  .blog-details .meta-bottom a {
    color: #9496A1;
    transition: 0.3s;
  }
  
  .blog-details .meta-bottom a:hover {
    color: #668CC0;
  }
  
  .blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
  }
  
  .blog-details .meta-bottom .cats li {
    display: inline-block;
  }
  
  .blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
  }
  
  .blog-details .meta-bottom .tags li {
    display: inline-block;
  }
  
  .blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: #668CC0;
    content: ",";
  }
  
  .blog-details .meta-bottom .share {
    font-size: 16px;
  }
  
  .blog-details .meta-bottom .share i {
    padding-left: 5px;
  }
  
  /*--------------------------------------------------------------
  # Blog Comments Section
  --------------------------------------------------------------*/
  .blog-comments {
    padding: 10px 0;
  }
  
  .blog-comments .comments-count {
    font-weight: bold;
  }
  
  .blog-comments .comment {
    margin-top: 30px;
    position: relative;
  }
  
  .blog-comments .comment .comment-img {
    margin-right: 14px;
  }
  
  .blog-comments .comment .comment-img img {
    width: 60px;
  }
  
  .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
  }
  
  .blog-comments .comment h5 a {
    font-weight: bold;
    color:  #040834; 
    transition: 0.3s;
  }
  
  .blog-comments .comment h5 a:hover {
    color: #668CC0;
  }
  
  .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: color-mix(in srgb, #040834, transparent 20%);
  }
  
  .blog-comments .comment h5 .reply i {
    font-size: 20px;
  }
  
  .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: #9496A1;
    margin-bottom: 5px;
  }
  
  .blog-comments .comment.comment-reply {
    padding-left: 40px;
  }
  
  /*--------------------------------------------------------------
  # Comment Form Section
  --------------------------------------------------------------*/
  .comment-form {
    padding-top: 10px;
  }
  
  .comment-form form {
    background-color: #fff;
    margin-top: 30px;
    padding: 30px;
    border: 2px solid color-mix(in srgb, #668CC0, transparent 50%);
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
  }
  
  .comment-form form h4 {
    font-weight: bold;
    font-size: 22px;
    color:#668CC0;
  }
  
  .comment-form form p {
    font-size: 14px;
  }
  
  .comment-form form input {
    background-color: #fff;
    color: #040834;
    border: 1px solid color-mix(in srgb, #9496A1, transparent 70%);
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
  }
  
  .comment-form form input:focus {
    color: #040834;
    background-color: #fff;
    box-shadow: none;
    border-color: #668CC0;
  }
  
  .comment-form form input::placeholder {
    color: color-mix(in srgb, #040834, transparent 50%);
  }
  
  .comment-form form textarea {
    background-color: #fff;
    color: #040834;
    border: 1px solid color-mix(in srgb, #9496A1, transparent 70%);
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
    height: 120px;
  }
  
  .comment-form form textarea:focus {
    color: #040834;
    box-shadow: none;
    border-color: #668CC0;
    background-color: #fff;
  }
  
  .comment-form form textarea::placeholder {
    color: color-mix(in srgb, #040834, transparent 50%);
  }
  
  .comment-form form .form-group {
    margin-bottom: 25px;
  }
  
  .comment-form form .btn-primary { 
    padding: 6px 36px;
    border: 0;
    border-radius: 100px;
    background: #668CC0;
    color: #fff;
  }
  
  .comment-form form .btn-primary:hover {
    color: #fff;
    background: #040834;
  }




/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    margin: 48px 0 30px 0;

  }
  
  .widget-title {
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 0 10px;
    margin: 0 0 20px 0;
    border-left: 4px solid #668CC0;;
    color: #040834;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  
  .widget-item {
    margin-bottom: 30px;
    border-radius: 5px;
    border: 1px solid #9496A1;

    background: rgba(148, 150, 161, 0.10);
    padding: 30px;
    border-radius: 5px;
  }
  
  .widget-item:last-child {
    margin-bottom: 0;
  }
  
  .blog-author-widget img {
    max-width: 160px;
  }
  
  .blog-author-widget h4 {
    font-weight: 600;
    margin: 15px 0 0 0;
    padding: 0;
    color: #040834;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    line-height: normal;
  }
  
  .blog-author-widget .social-links {
    margin: 5px 0;
  }
  
  .blog-author-widget .social-links a {
    color: #040834;
    margin: 0 3px;
    font-size: 18px;
  }
  
  .blog-author-widget .social-links a:hover {
    color: #668CC0;
  }
  
  .blog-author-widget p {
    font-style: italic;
    margin: 10px 0 0 0;
    color: #040834;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
  }
  
  .search-widget form {
    background: #fff;
    border: 1px solid #9496A1;
    padding: 3px 10px;
    position: relative;
    border-radius: 50px;
    transition: 0.3s;
  }
  
  .search-widget form input[type=text] {
    border: 0;
    padding: 4px 10px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: #fff;
    color: #040834;
  }
  
  .search-widget form input[type=text]:focus {
    outline: none;
  }
  
  .search-widget form button {
    background: none;
    color: #040834;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 16px;
    transition: 0.3s;
    line-height: 0;
  }
  
  .search-widget form button i {
    line-height: 0;
  }
  
  .search-widget form button:hover {
    color: red;
  }
  
  .search-widget form:is(:focus-within) {
    border-color: red;
  }
  
  .recent-posts-widget .post-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  
  .recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
  }
  
  .recent-posts-widget .post-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .recent-posts-widget .post-item h4 a {
    transition: 0.3s;
    color: #040834;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  
  .recent-posts-widget .post-item h4 a:hover {
    color: #668CC0;
  }
  
  .recent-posts-widget .post-item time {
    display: block;
    color: #9496A1;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
  }
  
  .tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .tags-widget ul li {
    display: inline-block;
  }
  
  .tags-widget ul a {
    background-color:#EDE7E3;
    border-radius: 50px;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 6px 8px 0;
    display: inline-block;
    transition: 0.3s;
    color: #040834;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
  
  .tags-widget ul a:hover {
    background: #668CC0;
    color: #fff;
  }
  
  .tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, green, transparent 60%);
    font-size: 14px;
  }



/*--------------------------------------------------------------
/ Banner Contact Section 
--------------------------------------------------------------*/



.banner-contact h2 {
    color: #fff;
    font-family: "Playfair Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    align-items: end;
  }
  
  
  
  
  .banner-contact {
    position: relative;
    margin-top: 116px;
    background: url('../img/contact/banner-contact.png') no-repeat center center;
    background-size: cover;
    height: 550px;
    display: flex;
    align-items: flex-end; 
    justify-content: flex-start; 
    color: #fff;
  }  



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  margin-top: 100px;
  background-color: #fff;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: #668CC0;
  background:#EDE7E3;
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-weight: 600;
  margin-bottom: 5px;
  color: #040834;
  font-family: "Playfair Display";
  font-size: 16px;
  font-style: normal;
  line-height: normal;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  color: #040834;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #040834;
  background-color: #fff;
  border-color: #9496A1;

}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #668CC0;
  color: #040834
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #9496A1;
}

.contact .php-email-form button[type=submit] {
  background: none;
  padding: 8px 36px;
  transition: 0.4s;
  border-radius: 100px;
  background: #668CC0;
  padding: 6px 36px;
  color: #FFF;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: 1px solid #668CC0;
}

.contact .php-email-form button[type=submit]:hover {
  background: #040834;
  color: #FFF;
}



/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




