@charset "utf-8";
.title {
    height: 450px;
    background-image:  url(../images/20230510pet-84.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 10px #4b2c14;
}
.title h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: bold;
}
.title p {
    font-size: 14px;
    margin-top: 15px;
}
.lead {
    max-width: 800px;
    margin: 30px auto;
}
.lead p {
    line-height: 2;
    text-align: left;
}
.feature {
    display: flex;
    justify-content: space-between;
    width: 930px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}
.feature img {
    width: 360px;
}
.feature-text {
    max-width: 500px;
    margin-right: 40px;
}
.feature-text h2 {
    font-size: 30px;
}
.reverse {
    flex-direction: row-reverse;
}
.reverse .feature-text {
    margin-left: 40px;
    margin-right: 0;
}
.feature-text h2 {
    font-size: 25px;
    font-weight: bold;
    line-height: 30px;
}
.feature-text h2::after {
    content:'';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #042274;
    margin-top: 20px;
}
.feature-text p {
    font-size: 18px;
    line-height: 28px;
    margin-top: 25px;
}

@media (max-width: 800px) {
  .lead {
        padding-left: 20px;
        padding-right: 20px;
    }
  .lead p {
        text-align: left;
    }
  .feature {
    display: block;
    width: 500px;
    margin-top: 45px;
  }  
  .feature-text {
    margin-right: 0;
  }
  .reverse .feature-text {
    margin-left: 0;
  }
  .feature img {
    width: 100%;
    height: auto;
    margin-top: 25px;
  }

}