.h3-like,
h3{
  font-family: $font_title;
  font-size: 16px;
  padding-bottom: 15px;
  display: block;
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6{
  margin: 0;
  padding: 0;
  font-family: $font_title;
}

b, strong{
  font-weight: bold;
}

.h6-like,
h6{
  color: #6D7E95;
  font-size: 13px;
  display: block;
  margin: 0;
  padding-bottom: 5px;
  padding-top: 10px;
}

.h1-like,
h1{
  font-size: 35px;
  line-height: 130%;
  color: #203045;
  margin: 0;
  padding: 0;
}

.h2-like,
h2{
  font-size: 30px;
  line-height: 140%;
  color: #203045;
  margin: 0;
  padding: 0;
}

.clr-blue{
  color: #2097F2;
}

.content-box{
  background: #fff;
  border-radius: 8px;
  padding: 37px;
  margin-top: 75px;
  &.text-box{
    p{
      color: #203045;
      font-size: 16px;
      line-height: 150%;
    }
  }
}

blockquote{
  background: #F0FBFD;
  border-left: 2px solid #2097F2;
  margin: 20px 0;
  padding: 40px;
  p{
    padding-bottom: 10px;
    margin: 0;
    &:last-of-type{
      padding-bottom: 0;
    }
  }
}

a{
  transition: 0.3s;
}

.text-box{
  *:first-child{
    padding-top: 0 !important;
  }
  h2{
    padding: 30px 0 15px !important;
  }
  h3{
    padding: 30px 0 15px !important;
    display: block;
    a{
      color: $text_color_main;
      text-decoration: none;
      &:hover{
        color: #13A7E6;
      }
      i{
        display: inline-block;
        vertical-align: middle;
        position: relative;
        top: -5px;
        margin-left: 5px;
      }
    }
  }
  p{
    padding: 0 0 15px 0;
    margin: 0;
  }
  p a{
    color: #2097F2;
    text-decoration: none;
    &:hover{
      text-decoration: underline;
    }
  }
}

.box-with-icon{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  .box-with-icon_text{
    p{
      padding: 0;
      margin: 0;
    }
  }
  .box-with-icon_ic{
    margin-right: 20px;
    i{
      width: 60px;
      height: 60px;
      display: block;
    }
  }
}