/* BOOK (Regular 400) */
@font-face {
  font-family: "CFastystd";
  src: url("../fonts/cfastystd-book-webfont.woff2") format("woff2"),
       url("../fonts/cfastystd-book-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* MEDIUM (500) */
@font-face {
  font-family: "CFastystd";
  src: url("../fonts/cfastystd-medium-webfont.woff2") format("woff2"),
       url("../fonts/cfastystd-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* BOLD (700) */
@font-face {
  font-family: "CFastystd";
  src: url("../fonts/cfastystd-bold-webfont.woff2") format("woff2"),
       url("../fonts/cfastystd-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}



body {
   background-color: #e5e0da;
  color: #002d6e;
  line-height: 1.6;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}


.top-border {
  border-top: 2px solid #002d6e;
  border-bottom: 2px solid #002d6e;
  background-color: #e5e0da;
  margin-top:30px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  position: relative;
}


.header-left {
  flex: 1;
}


.header-logo {
   position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-logo img {
  width: 180px;
  margin: 0 auto 4px;
}


.header-contact {
  font-family: "CFastystd", serif;
  font-weight: 500; 
 margin-left: auto;
  display: flex;
  gap: 50px;
  font-size: 16px;
  white-space: nowrap;
 line-height: 1;
}



.fade-up {
  opacity: 0.3;
  transform: translateY(6px);
  animation: fadeUp 0.4s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





.hero {
  padding: 30px 20px 0px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-image-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
display: block;
}

.hero-heading {
	font-family: georgiapro-condensed, sans-serif;
font-weight: 400;
font-style: italic;
  font-size: 28px;
  margin-bottom: 10px;
margin-top:10px;
}

.hero-subtitle {
  font-family: "CFastystd", serif;
  font-weight: 400;
  font-size: 16px;
  color: #002d6e;
  max-width: 900px;
  margin: 0 auto;
}

.hero-sub {
font-family: "CFastystd", serif;
  font-weight: 700;
}

.mobile-footer {
  display: none;
}

@media (max-width: 900px) {
	


 .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-left {
    display: none;
  }

  .header-logo {
    position: static;
    transform: none;
    margin: 0;
  }

  .header-logo img {
    width: 220px;
  }


  .header-contact {
    display: none !important;
  }


  .hero {
    padding-top: 20px;
  }

  .hero-image-wrapper {
    max-width: 360px;
    margin: 0 auto 30px;
  }

  .hero-heading {
    font-size: 24px;
	  line-height:24px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 30px;
  }


  .mobile-footer {
    display: block;
    border-top: 2px solid #002d6e;
    padding: 16px 0;
    margin-top: 40px;
    text-align: center;
  }

  .mobile-footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
	  gap:40px;
    font-size: 16px;
    font-family: "CFastystd", sans-serif;
    font-weight: 500;
  }


}




@media (max-height: 800px) {
  .hero-image-wrapper img {
    max-height: 55vh;  
    width: auto;
    margin: 10px auto;
  }

.hero {
    padding-top: 10px;
    padding-bottom: 0;
  }
}



@media (min-height: 800px) {
  .hero-image-wrapper {
    max-width: 760px;   
  }

  .hero-heading {
    font-size: 30px;
  }

  .hero {
    padding-top: 80px;  
  }

  .hero-text {
margin-top:40px;
}

}

@media (min-height: 1200px) {
  .hero-image-wrapper {
    max-width: 820px;
  }

  .hero {
    padding-top: 100px;
  }
}



