@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Regular.woff') format('woff'), url('../font/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Bold.woff') format('woff'), url('../font/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Bold.woff') format('woff'), url('../font/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
}

p {
    font-family: 'Roboto', sans-serif;
}
.info-text {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #828282;

}
.link-info {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */
    display: flex;
    align-items: center;
    text-align: right;
    text-decoration-line: underline;
    /* Gray 3 */
    color: #828282;
    transition: 0.2s;
}

.link-info:hover {
    color: #242D33;
    transition: 0.2s;
}

.block-info {
    position: fixed;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 10;
}
.block-info-text {
    background-color: #fff; 
    position: relative;
}
.block-info-text:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #fff; 
}
.icon img {
    width: 128px;
}

.icon-text {
    font-weight: normal;
    font-size: 30px;
    padding-left: 4px;
}

h1 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    /* identical to box height */
    /* black */
    color: #242D33;
    margin-bottom: 40px;
}

.text {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    /* Gray 2 */
    color: #4F4F4F;
}

.bold-text {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    /* Gray 5 */
    color: #E0E0E0;
}

.normal-text {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 32px;
    line-height: 37px;
    color: #E0E0E0;
}

.big-text {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 41px;
    line-height: 48px;
    /* Gray 5 */
    color: #E0E0E0;
}

.phone-click {
    background: #2F80ED;
    padding: 30px 40px;
    margin-top: 60px;
}

section {
    padding-top: 100px;
    padding-bottom: 50px;
    /*background: url("../img/bg.svg");*/
    background-repeat: no-repeat;
    background-position: center center;
}
.cookies {
    position: fixed;
    display: none;
    z-index: 10;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    color: #000;
    padding: 2px 0; }
    .cookies-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .cookies-container a {
        font-size: 12px; }
    .cookies p {
      margin: 0 15px 0 0;
      font-size: 13px; }
    .cookies .document-link {
      color: #000;
      font-size: 13px;
      text-decoration: underline;
      margin-right: 15px; }
    .cookies__close {
      background-color: transparent;
      color: #000;
      border: 2px solid #adb5bd;
      height: auto;
      border-radius: 2px;
      padding: 5px; }
      .cookies__close:hover {
        background-color: rgba(0, 0, 0, 0.2);
        color: #000; }
  
@media (max-width: 576px) {
    section {
        background-size: contain;
        padding-top: 30px;
        padding-bottom: 30px;
        background-position: 0 0;
    }
    h1 {
        font-size: 25px;
        line-height: 35px;
        /* identical to box height */
        /* black */
        margin-bottom: 25px;
    }
    .icon img {
        width: 64px;
    }
    .icon-text {
        font-weight: normal;
        font-size: 20px;
        padding-left: 2px;
    }
    .text {
        font-size: 20px;
        line-height: 24px;
    }
    .bold-text {
        font-size: 20px;
        line-height: 25px;
    }
    .normal-text {
        font-size: 20px;
        line-height: 25px;
    }
    .big-text {
        font-size: 25px;
        line-height: 30px;
    }
    .phone-click {
        background: #2F80ED;
        padding: 15px 20px;
        margin-top: 25px;
    }
}