* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

header {
  background-color: darkred;
  width: 100%;
}
header #redHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
header #redHeader .icons ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 30px;
}
header #redHeader .icons ul li a .fa-brands {
  color: black;
}
header #redHeader .icons ul li a .fa-brands:hover {
  color: white;
  transition: 0.5s;
}
header #redHeader nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}
header #redHeader nav ul li a {
  text-decoration: none;
  color: black;
  height: 100%;
}
header #redHeader nav ul li a:hover {
  color: white;
  transition: 0.5s;
}

#head-white {
  background-color: #fff;
  width: 100%;
}
#head-white .container #whiteHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
#head-white .container #whiteHeader .logo p {
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 0;
}
#head-white .container #whiteHeader nav .list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 30px;
}
#head-white .container #whiteHeader nav .list li a {
  text-decoration: none;
  color: gray;
}
#head-white .container #whiteHeader nav .list li a:hover {
  color: darkred;
  transition: 0.5s;
}

#home .home #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption {
  top: 300px;
}
#home .home #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption .row .col .years {
  font-family: "Dancing Script", cursive;
  font-size: 35px;
}
#home .home #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption .row .col .bold-text {
  font-size: 35px;
  font-weight: 700;
}
#home .home #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption .row .col .lorem {
  color: gray;
}

#steps .container .steps .row .col .img-info img {
  max-width: 100%;
}

#children {
  background-color: #F8F9FA;
}
#children .container .children .head .title-p {
  font-size: 35px;
  font-weight: 400;
}

#stories .container .stories .head p {
  font-size: 35px;
  font-weight: 400;
}
#stories .container .row .col .hover-div {
  overflow: hidden;
}
#stories .container .row .col .hover-div img {
  transition: 0.3s;
}
#stories .container .row .col .hover-div img:hover {
  transition: 0.3s all ease;
  transform: scale(1.1);
}/*# sourceMappingURL=main.css.map */