@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

h1 {
  font-size: 50px;
  font-weight: 600;
}

.rounded {
  border-radius: 50%;
  object-fit: cover;
}

h2 {
  font-size: 25px;
  font-weight: 600;
}

.header {
  display: flex;
  justify-content: space-around;
  padding: 0 80px;
  align-items: center;
  background-image: url(images/top-banner.png);
  background-size: cover;
}

.header-left,
.header-right {
  width: 50%;
}

.header-right {
  padding-left: 20px;
  display: flex;
  justify-content: flex-end;
}

.header-image {
  width: 80%;
  max-width: 100%;
  height: auto;
}

.orange {
  color: orange;
}

.btn {
  color: white;
  padding: 5px 20px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 18px;
  text-decoration: none;
  background-image: linear-gradient(red, orange);
}

.drem-section {
  display: flex;
  margin-top: 50px;
  justify-content: space-around;
  padding: 20px 80px;
  align-items: center;
  background-image: url(images/dream-bg.png);
  background-position: right;
  background-repeat: no-repeat;
}

.dream-left,
.dream-right {
  width: 50%;
}

.experience-area {
    margin-top: 50px;
    padding: 40px 50px;
    background: url(images/exp-bg.png);
    background-repeat: no-repeat;
    background-position: left;
}

.experience-part {
    display: flex;
    justify-content: space-between;
}

.experience-item {
    width: 40%;
    padding-left: 0 5%;
    padding: 20px;
    border-left: 7px solid;
    background: white;
    box-shadow: 10px 5px 30px rgb(182 102 49);
}

.full-experience {
    border-image: linear-gradient(gray,orange);
    border-image-slice: 1;
}
.baby-experience {
    border-image: linear-gradient(rgb(138, 13, 240),rgb(40, 221, 23));
    border-image-slice: 1;
}

footer {
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
}
