/**
 * @file
 * Reinsurance styles
 */


  /**
 * Phone block
 */

 .block-phone {
  background: var(--color-secondary--1);
  padding: 4.5rem 0;
 }

 .block-phone__wrapper {
  display: flex;
  flex-direction: column;
  color: var(--color-neutral--1);
  text-align: center;
 }

.block-phone__title {
  font-size: 2rem;
}

.block-phone__text {
  padding-top: 2rem;
}
.block-phone__text p{
  font-size: 1rem;
  margin-top: 0.5rem;

}
.block-phone__text::before{
  content: url(../../images/phone-block/icon-phone-block.svg);
  margin-bottom: 0.5rem;
}
.block-phone__phone {
  font-family: "interpol-sans", sans-serif;
  font-size: 2rem;
  font-weight: 850;
  line-height: normal;
}


 @media all and (min-width: 1000px) {
  .block-phone__title,
  .block-phone__phone {
    font-size: 3rem;
  }
  .block-phone__text p{
    font-size: 1.5rem;
    font-weight: 500;
  }
}










