@charset "utf-8";
/* CSS Document */

/*font group*/
/*Sans serif font for headline:
.poppins-regular {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
}

.poppins-medium {
font-family: "Poppins", sans-serif;
font-weight: 500;
font-style: normal;
}
*/

/*Serif font for paragrah:
.playfair-display-regular {
font-family: "Playfair Display", serif;
font-weight: 400;
font-style: normal;
}

.playfair-display-bold {
font-family: "Playfair Display", serif;
font-weight: 700;
font-style: normal;
}
*/

/*Script front for accent:
.inspiration-regular {
  font-family: "Inspiration", cursive;
  font-weight: 400;
  font-style: normal;
}
*/

/*color group*/
/*fuse.:
peacoat: #212B40
opal*: #A4BFB5
gainsboro*: #D9D8D7
aluminim*: #8C8C8C
eigengrau*: #131926
flamingo: #E35D40
*/

.container-fluid {
    padding-top: 50px; /* ✅ Adjust this value as needed */
}

h2 {
	color: #E35D40;
	font-family: "Poppins", sans-serif;
	font-size: 36px;
	padding-bottom: 10px;
}

.sp {
	padding-top: 30px;
}

.card-title {
    text-align: left;
}

h1 {
    font-size: 36px;
    color: #131926;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    text-align: left; /* Ensures left alignment */
    display: block; /* Removes flex properties */
}

h5 {
    font-size: 36px;
    color: #E35D40;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
	text-align: left;
}


p {
	font-size: 24px;
    color: #131926;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
}

/* Footer */
footer {
  padding: 20px 0 20px;
  background-color: #212B40;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
}
.email-link {
  margin-left: 10px;
  display: inline-block;
  text-decoration: none;
}
.bi-envelope-fill {
  fill: white;
  transition: transform 0.3s ease-in-out;
}
.email-link:hover .bi-envelope-fill {
  transform: scale(1.1);
}

.img-fluid {
    display: block;
    margin-left: auto;
}

/* Responsive Media Queries */
/* SMALL SIZE ONLY (350px) */
@media screen and (min-width: 350px) {
    h1 {
        font-size: 35px;
    }
	h5 {
		font-size: 18px;
	}
	p {
		font-size: 12px;
	}
	
}

/* MEDIUM SIZE (576px) */
@media screen and (min-width: 576px) {
    h1 {
        font-size: 40px;
    }
	h5 {
		font-size: 22px;
	}
	p {
		font-size: 16px;
	}
	
}

/* X-SMALL SIZE (768px) */
@media screen and (min-width: 768px) {
	h1 {
        font-size: 45px;
    }
	h5 {
		font-size: 24px;
	}
	p {
		font-size: 18px;
	}
}


/* LARGE SIZE (992px) */
@media screen and (min-width: 992px) {
	h1 {
        font-size: 50px;
    }
	h5 {
		font-size: 30px;
	}
	p {
		font-size: 24px;
	}
}
