/**
* Based on: Free Sailor Template (BootstrapMade)
* Customized by: Abgraphic
* Description: Custom website template built with Bootstrap 5 and open-source libraries.
* Technologies: Bootstrap, Animate.css, Bootstrap Icons

*/

/*--------------------------------------------------------------
# Root / Global
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #4f6b80;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #000000;opacity: 0.90;
  text-decoration: none;
}

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

h4 {
  color: #2B499E;
  font-size: 32px;
  font-weight: bold;
}

h3 {
  color: #aa8f7d;
  font-size: 40px !important;
  line-height: 45px !important;
  text-align: center;
}
#scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 38px;   /* smaller box */
    height: 38px;

    background-color: #007bff;
    color: #fff;

    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999;
}
#scroll-top i {
    font-size: 42px;
    line-height: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  --nav-color: #EADED2;
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.9);
  --nav-color: #000000;
  color: #000000 !important;
}

.header .logo img {
  max-height: 120px;
  margin-right: 8px;
}
#footer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
	text-align: center;
	padding-bottom: 45px;padding-top: 34px;
	background: #F6F6F6
}
#footer small {
   font-size:12px;line-height: 1.0!important
}

@media screen and (max-width: 360px) {
  .header .logo img {
    max-height: 65px;
  }
}
.pages .header {
  background-color: rgba(255,255,255,0.95);
  color: #000;
  --nav-color: #000;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

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

  .navmenu ul {
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu a {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
  }

  .navmenu .dropdown ul {
    background: #115B88;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }
}

/*--------------------------------------------------------------
# Navigation - Mobile
--------------------------------------------------------------*/
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 52px;
    font-weight: bold;
    cursor: pointer;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    background-color: rgba(20,20,20,0.95);
    border-radius: 10px;
    z-index: 9998;
  }

  .navmenu a {
    font-size: 17px;
    padding: 10px 20px;
  }

  .navmenu .dropdown ul {
    display: none;
    position: static;
  }

  .navmenu .dropdown.dropdown-active > ul {
    display: block;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(33,37,41,0.8);
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  .navmenu i {
    font-size: 55px;
  }
}

@media (max-width: 1199px) {

  /* REMOVE BULLETS */
  .navmenu ul {
    list-style: none;
    padding-left: 0;
  }

  .navmenu li {
    list-style: none;
  }

  /* CLEAN LINKS */
  .navmenu a {
    font-size: 18px;
    font-weight: 500;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	  color: #ffffff;
  }

  /* FIX ARROW SIZE + POSITION */
  .navmenu a i {
    font-size: 16px;
    width: auto;
    height: auto;
    background: none;
    margin-left: 10px;
  }
	.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: #EADED2; /* light blue */
}

  /* REMOVE CIRCLE BACKGROUND ON ICON */
  .navmenu a i {
    background: none !important;
  }

  /* DROPDOWN SPACING */
  .navmenu .dropdown ul {
    margin: 5px 15px;
    padding: 5px 0;
  }

  /* SUBMENU LINKS */
  .navmenu .dropdown ul a {
    font-size: 16px;
    padding: 8px 15px;
  }

}
@media (min-width: 1200px) {

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #115B88;
    position: absolute;
    top: 100%;
    left: 0;                 /* align under parent */
    min-width: 220px;        /* fixed width */
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
  }

  .navmenu .dropdown ul li {
    width: 100%;
  }

  .navmenu .dropdown ul a {
    display: block;          /* forces vertical layout */
    padding: 10px 20px;
    font-size: 15px;
    color: #ffffff;
    white-space: nowrap;     /* prevents weird wrapping */
  }

  .navmenu .dropdown ul a:hover {
    color: #ffff97;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }

}

/*--------------------------------------------------------------
# Arrow
--------------------------------------------------------------*/
.arrow {
  border: solid;
  border-width: 0 3px 3px 0;
  padding: 3px;
  display: inline-block;
}

.down {
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #126293;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #e1444d;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero .container {
  position: relative;
  z-index: 3;
}


.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h2 {
  margin-top: 30px;
  font-size: 48px;
  font-weight: 700;
  color: #FFFF97;
  opacity: 1;
font-family: "Playfair Display", serif;

}

.hero .container p {
  color: #ffffff !important;
  font-size: 32px;
  opacity: 1;
font-family: "Playfair Display", serif !important;
}




/* Mobile hero */
@media (max-width: 768px) {
  .hero h2 { font-size: 32px; }
  .hero .container p { font-size: 24px; }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  margin-top: -30px;
  position: relative;
  z-index: 5;
}

.about .container {
	margin-top: -160px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about .content {
  padding-left: 50px;
}

.about .content ul li {
  font-size: 21px;
}

.about .content H2 {
  padding-top: 170px;color: #126293 
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: #126293;
  text-align: center;
  padding: 50px 0 60px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
}

.pages main {
  padding-top: 210px;
}
@media (max-width: 768px) {
  .pages main {
    padding-top: 200px;
  }
}
.pages h1 {
  color: #126293;
font-family: "Playfair Display", serif
}
.pages {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pages main {
  flex: 1;
}
/* IMAGE BANNER */
.image-banner {
  position: relative;
  margin-top: 80px;

  width: 100vw;
  margin-left: calc(-50vw + 50%);

  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed; /* 🔥 parallax */

  overflow: hidden;
}

/* Overlay */
.image-banner .overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Text */
.image-banner h2 {
  color: #fff;
  font-size: 42px;
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
}

.image-banner p {
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile fixes */
@media (max-width: 768px) {
  .image-banner {
    height: 250px;
    background-attachment: scroll; /* disable parallax on mobile */
  }

  .image-banner h2 {
    font-size: 26px;
  }

  .image-banner p {
    font-size: 16px;
  }
}