.car-insurance {
  flex-direction: row-reverse;
  justify-content: space-between;
  display: flex;
  padding: 70px;
  padding-right: 0;
  background: linear-gradient(180deg, #EEF3F7 51.39%, rgba(238, 243, 247, 0) 100%);
}

.car-insurance .content {
  flex: 0 0 40%;
}

.car-insurance .image {
  flex: 0 0 60%;
}

.car-insurance .content h1{
  color:#1CB0CA;
  font-size: 56px;
  line-height: 66px;
  margin: 0;
}

.car-insurance .content b {
  font-family: 'Montserrat';
}

.car-insurance .content h2 {
  font-size: 40px;
  line-height: 47px;
  margin: 0;
  font-weight: 700;
}

.car-insurance .content p {
  font-size: 20px;
  line-height: 23px;
  margin-top: 30px;
  font-weight: 400;
}

.car-insurance .content h3{
  margin-top: 30px;
  color: #1CB0CA;
}

.car-insurance .content a {
  margin-top: 30px;
  background: #003B70;
  text-decoration: none;
  border-radius: 8px;
  color:#91EEFF;
  padding: 20px 30px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
}

.car-insurance .content a:hover {
  background:#1CB0CA;
  color: white;
}

.car-insurance img{
  width: 100%;
  height: auto;
}

@media(max-width:908px){
  .car-insurance {
    flex-direction: column;
    padding: 25px;
    margin-top: 100px;
  }
  .car-insurance img {
    width: 100%;
    margin-top: -100px;
  }
  .car-insurance .content h1 {
    font-size: 35px;
    line-height: 41px;
  }
  .car-insurance .content h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .car-insurance .content p {
    font-size: 16px;
    line-height: 30px;
  }
  .car-insurance .content h3 {
    font-size: 16px;
    line-height: 19px;
  }
  .car-insurance .content a {
    display: block;
    text-align: center;
  }
}