@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,700");

.headerTitle {
  margin-top: 71px;
}

.contentWrap{
  padding-left: 10%;
  padding-right: 10%;
}

.cardsWrap {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 3%;
  width: 100%;
}

.cardItem {
  display: flex;
  margin-bottom: 15px;
  min-height: fit-content;
  height: 470px;
  width: 400px;
}

#carousel {
  width: 100%;
}

html {
	background-image: image("../img/bg.svg")
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
  background: #dddddd;
}

.masthead {
	background-size: cover;
	background-image: url("../img/bg-kup.svg");
	min-height: 80vh;
	position: relative;
	
}

.navbar {
  padding: 0.8rem;
}

.navbar-nav li {
  padding-left: 30px;
}

.nav-link {
  font-size: 1.1em !important;
}

.navbar .navbar-nav .nav-link:hover {
  background-color: #0174B3;
  color: white;
  border-radius: 5px;
  transition: 1s;
}

.navbar .dropdown li {
	padding-left: 0px;
	text-align: center;
}

.carousel-inner img {
  width: 100%;
  height: 100%;
}

.carousel-caption {
  position: absolute;
}

.carousel-caption h1 {
  font-size: 500%;
  text-transform: uppercase;
  text-shadow: 1px 1px 10px #000;
}

.carousel-caption h3 {
  font-size: 200%;
  font-weight: 500;
  text-shadow: 1px 1px 10px #000;
  padding-bottom: 1rem;
}

.btn-primary {
  background-color: #6648b1;
  border: 1px solid #6648b1;
}

.btn-primary:hover {
  background-color: #563d7c;
  border: 1px solid #563d7c;
}

.jumbotron {
  border-radius: 0;
  color: white;
  background: #0174B3;
}

.jumbotron-caption h1 {
  font-weight: 4px;
  text-shadow: 1px 1px 10px #000;
}

#title {
	padding: 3rem;
}

.greeting {
	font-size: 18px;
	font-weight: 500;
}

.news-item {
	padding-left: 3rem;
	padding-right: 3rem;
	border-bottom: 1px solid #A1A1A1;
}

.card {
	border: 1px solid #A1A1A1;
}

#contact {
  text-align: center;
}

.social a {
  font-size: 4.5em;
  padding: 3rem;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

.container {
	font-weight: 500;
	font-size: 18px;
}
/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
	height: 50px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

footer {
  text-align: center;
  color: #c8ccd7;
  background: #0174B3;
	bottom: 0;
	position: absoulute;
	width: 100%;
}

/*---Media Queries --*/
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
}

/*---Firefox Bug Fix --*/
.carousel-item {
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
/*--- Fixed Background Image --*/
figure {
  position: relative;
  width: 100%;
  height: 60%;
  margin: 0 !important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#fixed {
  background-image: url("../img/bg.svg");
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
  padding: 1rem;
}

.card-body {
  display: flex;
  flex-direction: column;
}

button.btn {
  margin-bottom: 1rem;
}

