/* ==========================================================================
   1. IMPORTS & GLOBAL RESET
   ========================================================================== */
/* Import Montserrat & Roboto from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  position: relative;
  font-size: 16px;
}

body {
    overflow-x: hidden;
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 0 !important;
  padding-bottom: 4rem !important;
  font-family: "Roboto", sans-serif;
  background: #fff;
  color: #000;
}

/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */
   p {
    font-family: "Roboto", sans-serif;
    margin-bottom: 8px;
    line-height: 1.32;
   }
ul,
ul li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #000;
  text-decoration: none !important;
  display: inline-block;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, .fHeading .fModuleTitle h3 {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  margin-bottom: 1rem;
}
h1 {
  font-size: 1.5rem; /* 24px */
}
.fHeading .fModuleTitle {
  text-align: center;
  margin-bottom: 20px;
}
.fHeading .fModuleTitle h3 {
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.fModule {
  margin: 1rem 0;
  padding: 1rem 0;
}
header .fModule,
footer .fModule {
  margin: 0;
  padding: 0;
}

header {
  background: transparent;
  color: #fff;
  text-align: left;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
.f-scrolled header {
  background: #fff;
}
header .wrap {
  max-width: 100%;
  width: 100%;
  position: relative;
}
.region-header.row {
  align-items: center;
}
header h1 {
  font-size: 1.5rem;
}
footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background-color: #f5f6f7;
  color: #fff;
  text-align: center;
  font-size: 0.875rem; /* 14px */
}

/* ==========================================================================
   5. NAVIGATION
   ========================================================================== */
nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem; /* 10px */
  text-align: right;
}
nav ul li a {
  color: #fff;
  padding: 5px;
  transition: color 0.3s ease;
}
.main-menu a {
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem; /* 15px */
  text-transform: capitalize;
  letter-spacing: -0.2px;
  color: #000;
  position: relative;
}
.main-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #03a4e5;
  transition: width 0.6s ease;
}
.main-menu a:hover {
  color: #03a4e5;
}
.main-menu a:hover::before {
  width: 100%;
}
.main-menu .fMenu li{
    position: relative;
}
.main-menu .fMenu ul {
    position: absolute;
    top: 100%;
    width: 150px;
    background: #fff;
    left: 0;
    padding: 0;
    text-align: left;
}
.main-menu .fMenu li:hover ul {
    display: block;
}
.main-menu .fMenu ul li {
    margin: 0;
}
.main-menu .fMenu ul li a {
    display: block;
    padding: 0.5rem;
}
/* ==========================================================================
   7. FORM ELEMENTS
   ========================================================================== */
.fForm label {
  display: block;
  width: 100%;
  margin: 0.625rem 0 0; /* 10px 0 0 */
  font-weight: normal;
  color: #000;
}

.fForm input[type="text"],
.fForm input[type="email"],
.fForm input[type="password"],
.fForm textarea,
.fForm select,
.fForm .date {
  width: 100%;
  max-width: 100%;
  height: 42px;
  padding: 0 0.9375rem; /* 15px */
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  background: #fff;
  transition: border-color 0.3s ease;
}

.fForm input[type="text"]:hover,
.fForm input[type="email"]:hover,
.fForm input[type="password"]:hover,
.fForm textarea:hover,
.fForm input[type="text"]:focus,
.fForm input[type="email"]:focus,
.fForm input[type="password"]:focus,
.fForm textarea:focus {
  border-color: #92def5;
}

.fForm .buttons {
  clear: both;
  padding-left: 0;
}

.fForm .buttons input,
a.fButton,
a.fButton2 {
  display: inline-block;
  margin: 0.75rem 0.625rem 0 0; /* 12px 10px 0 0 */
  padding: 0.875rem 0.8125rem; /* 14px 13px */
  min-width: 200px;
  min-height: 42px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: #0070f2;
  border: 2px solid #0070f2;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.fForm .buttons input:hover,
a.fButton:hover,
.fbutton-btn a:hover,
.fForm input[type="submit"]:hover {
  background: transparent;
  color: #0070f2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   8. ICON SET
   ========================================================================== */
.iconset .fMenu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.iconset .fMenu > li {
  flex: 1 1 280px;
  list-style: none;
  padding: 1rem;
  background: #f5f5f5;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  position: relative;
  text-align: left;
  transition: transform 0.5s ease;
}
.iconset .fMenu > li:hover {
  transform: translateY(-5px);
}
.iconset .fMenu > li > a {
  font-weight: bold;
  color: #000;
  display: block;
}
.iconset img {
  max-width: 64px;
  margin-bottom: 0.5rem;
}
.iconset .fMenu ul {
  margin: 1rem 0 0 1.375rem; /* 1rem top, indent for bullets */
}
.iconset .fMenu ul li {
  margin-bottom: 0.25rem;
  list-style: square inside;
}
.iconset .fMenu ul a {
  font-weight: 500;
}

/* ==========================================================================
   9. HIDE & UTILITY OVERRIDES
   ========================================================================== */
.no-title .fPageTitle,
.no-header header,
.no-footer footer,
#nav-up {
  display: none !important;
}

.fLogo img {
    max-height: 100px;
}


/* ==========================================================================
   CUSTOM
   ========================================================================== */
.fBanner .fGalleryText  {
    position: absolute;
    top: 35%;
    left: 9%;
    transform: translateY(-50%);
    width: 33%;
}
.fBanner .fGalleryText h3 {
    color: #1d3358;
    font-size: 40px;
    margin-bottom: 0;
}
.fBanner .fGalleryText p {
    font-size: 16px;
    color: #000;
}
.banner-wrapper {
  position: relative;
}

/* ==========================================================================
   10. MEDIA QUERIES
   ========================================================================== */
@media (max-width: 480px) {
  .body {
    padding: 0 0.9375rem; /* 15px */
  }
  .navbar-toggle-container {
    display: block;
    text-align: right;
    padding: 0.5rem; /* 8px */
  }
  .navbar-toggle {
    border: 1px solid #fff;
    padding: 5px;
  }
  .navbar-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin-bottom: 5px;
  }
  .main-menu nav {
    position: fixed;
    top: 50px;
    right: -100%;
    width: 300px;
    background: #000;
    z-index: 9999;
    transition: right 0.4s ease;
  }
  .main-menu nav.show {
    right: 0;
  }
  .main-menu nav ul li {
    border-bottom: 2px dashed #fff;
  }
  .main-menu nav ul li:last-child {
    border-bottom: none;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
  }
  nav ul li a {
    padding: 0.625rem; /* 10px */
    text-align: right;
  }
  .main-menu a {
    font-size: 0.8rem;
  }
}