/*--------------------------------------------------------------
# CSS-Styles
--------------------------------------------------------------*/
body {
  color: #000000;
  background-color: #fffcf1;
  font-family: Verdana, sans-serif;
}

a {
  color: #00175d;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {  
  color: #00175d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #00175d;
  font-family: "Century Gothic", CenturyGothic, Geneva, AppleGothic, sans-serif;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #000000;
  background-color: #fffcf1;
  padding: 60px 0;
  scroll-margin-top: 81px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  z-index: 1;
  display: block;  
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;  
}

.hero:before {
  content: "";  
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative; top: 180px;
  z-index: 3;
  text-align: left;
}

.hero h2 {
  margin: 0;
  color: #fffcf1;
  font-size: 24px;
  font-weight: 500;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 12px;
  color: #fffcf1;
}

.hero .btn-get-started {
  color: #fffcf1;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, #fffcf1, transparent 50%);
}

.hero .btn-get-started:hover {
  color: #00175d;
  background: #ffd872;
  border-color: #ffd872;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: #fffcf1;
  text-transform: uppercase;
}

.scrolled .header {
  background-color: #00175d;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #00175d;
}

.about .content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00175d;
}

.about .content a {
  color: #00175d;
  text-decoration: none;
  transition: 0.3s;
}

.about .content a:hover {  
  text-decoration: underline;
}

.about .content ul  {
  list-style-type: disc;
  padding: 5px;
  margin-left: 10px;
}

.about .content li::marker  {
  color: #f18e00;
}

.about .content ul li {
  margin-top: 5px;  
}

.about .content img {
  width: auto;	
  height: 80%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: #00175d;
	padding: 30px 0;
	color: #fffcf1;
	font-size: 16x;
}

#footer a {
	color: #fffcf1;
	outline: none;
	text-decoration: none;
}

#footer h4 {
	color: #ffd872;
}

#footer img {
	width: 100%;	
	height: 100%;
}

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}