_text-pg.scss 1.47 KB
.title-1{
  font-size: 20px;
  line-height: 0.89;
  text-align: left;
  color: #0f4775;
  text-transform: uppercase;
  margin: 25px 0;
}
.title-2{
  text-transform: uppercase;
  color: #2572a6;
  font-size: 18px;
  margin: 20px 0;
}
.title-3{
  color: #2572a6;
  font-size: 18px;
  margin: 10px 0;
}
blockquote.map-blockquote{
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0px 9px 13px 0 rgba(15, 71, 117, 0.05);
  border: solid 2px #e3f3f1;
  padding: 20px 50px 20px 95px;
  position: relative;
  margin: 20px 0;
  min-height: 115px;
  &:before{
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    top: 25px;
    left: 25px;
    background: url("../img/locationt-ico.png") center no-repeat;
  }
}
blockquote.blockquote{
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0px 9px 13px 0 rgba(15, 71, 117, 0.05);
  border: solid 2px #e3f3f1;
  padding: 20px 50px;
  position: relative;
  margin: 20px 0;
}
.text-yellow{
  color: #ffb521;
}

.inner-map-container, .regular-text{
  font-size: 16px;
  line-height: 1.25;
}
.background-blue{
  border-radius: 3px;
  background-color: #e3f3f1;
  border: solid 2px #e3f3f1;
  padding: 20px;
}
ol.map-numeric-list{
  counter-reset: myCounter;
  margin-bottom: 20px;
  padding-left: 0;
  li{
    list-style: none;
  }
  li:before {
    counter-increment: myCounter;
    content:counter(myCounter);
    color:  #2572a6;
    //display: inline-block;
    margin-left: -20px;
    padding-right: 10px;
  }
}