@font-face {
    font-family: 'Geometria';
    src: url(../fonts/Geometria.ttf);
}

@font-face {
    font-family: 'Geometria Bold';
    src: url(../fonts/Geometria-Bold.ttf);
}

* {
    font-family: 'Geometria';
}

.container-center {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.btn-primary {
    background: #109cfd;
    border-color: #109cfd;
}

.title {
    text-align: center;
    text-transform: uppercase;
    color: #001741;
    font-family: 'Geometria Bold';
    font-size: 33px;
}

.button {
    position: relative;
    padding: 24px;
    padding-right: 80px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    text-transform: uppercase;
    color: #fff;
    border: none;
    background: #109cfd;
    font-family: 'Geometria Bold';
    font-size: 16px;
}

.button:hover {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
}

.button::after {
    position: absolute;
    top: 50%;
    right: 22px;
    display: inline-block;
    width: 36px;
    height: 38px;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/button-arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
}

.button_center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.button_center:hover{
  -webkit-transform: translateX(-40%);
  transform: translateX(-40%);
}

.button_white {
    color: #109cfd;
    border: 1px solid #109cfd;
    background: #fff;
}

.button_white::after {
    width: 38px;
    background-image: url(../img/button-arrow-blue.png);
}

.button_phone {
    margin-top: 55px;
}

.button_phone::after {
    width: 42px;
    background-image: url(../img/button-phone.png);
}

.button_mail {
    margin-top: 55px;
    margin-left: 30px;
}

.button_mail:hover {
    margin-left: 30px;
}

.button_mail::after {
    width: 44px;
    background-image: url(../img/button-mail.png);
}

.one-screen {
    position: relative;
    overflow: hidden;
}

.header {
    position: relative;
    height: 360px;
    vertical-align: middle;
}

.header.fixed {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 70px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background: #fff;
}

.header.fixed .header__logo img {
    width: 50px;
}

.header.fixed .language {
    margin-top: 8px;
}

.header.fixed .header__arrow {
    display: none;
}

.header.fixed .add-text {
    display: none;
}

.header__title {
    display: inline-block;
    text-transform: uppercase;
}

.header__title span {
    font-family: 'Geometria Bold';
}

.header__title span.add-text {
    font-family: 'Geometria';
}

.header .container-center {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(50%);
    transform: translateX(-50%) translateY(50%);
}

.header__phone {
    position: absolute;
    right: 20px;
    bottom: 0;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.header__phone:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(50%) scale(1.2);
    transform: translateY(50%) scale(1.2);
}

.language {
    margin-top: 45px;
}

.language__link {
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
}

.language__link.active {
    color: #109cfd;
}

.language__link:hover {
    text-decoration: none;
    color: #109cfd;
}

.language__link:focus {
    text-decoration: none;
}

.header-right {
    position: relative;
    z-index: 200;
}

.header-right.fixed div.part {
    background: #fff;
}

.header-right.fixed .language__link.active {
    color: #fff;
}

.navigation {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: #109cfd;
}

.navigation.fixed {
    display: block;
}

.navigation ul {
    position: relative;
    left: 50%;
    display: inline-block;
    overflow: auto;
    width: 100%;
    max-height: 100vh;
    padding-top: 100px;
    padding-left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.navigation ul li {
    width: 100%;
    margin-top: 35px;
    list-style: none;
    text-align: center;
}

.navigation ul li a {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Geometria Bold';
    font-size: 33px;
}

.navigation ul li a:hover {
    text-decoration: none;
}

.navigation ul li a:focus {
    text-decoration: none;
}

.bmenu {
    position: relative;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

div.part {
    width: 50px;
    height: 7px;
    margin: 5px 0;
    background: #109cfd;
}

.bmenu .top {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}

.bmenu .bottom {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}

.bmenu .middle {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}

.bmenu.active .top {
    -webkit-transform: rotate(45deg) translateY(9px) translateX(9px);
    transform: rotate(45deg) translateY(9px) translateX(9px);
}

.bmenu.active .bottom {
    -webkit-transform: rotate(-45deg) translateY(-9px) translateX(9px);
    transform: rotate(-45deg) translateY(-9px) translateX(9px);
}

.bmenu.active .middle {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.chart {
    position: relative;
    overflow: hidden;
    width: 80%;
    height: 650px;
    margin-top: -70px;
    margin-left: 20%;
}

.chart__title {
    text-transform: uppercase;
    color: #001741;
    font-family: 'Geometria Bold';
    font-size: 33px;
}

.chart-title {
    padding-top: 160px;
}

.chart-text {
    padding-top: 160px;
}

.chart-text p {
    margin-bottom: 45px;
    color: #80959b;
    font-size: 20px;
}

.chart-text p span {
    display: block;
    text-transform: uppercase;
}

.chart-photo img {
    width: 100%;
}

.program {
    position: relative;
    overflow: hidden;
    margin-top: -170px;
}

.program .container-center {
    position: relative;
    padding-top: 80px;
    padding-left: 50px;
    background: #109cfd;
}

.program .container-center::before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100px;
    height: 80%;
    content: '';
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background: #001741;
}

.program-all {
    margin-top: 90px;
    padding-bottom: 50px;
    background: #001741;
}

.program-all p {
    margin: 50px 0;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Geometria Bold';
    font-size: 33px;
}

.program-text-top {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.program-text-top img {
    display: inline-block;
}

.program-text-top p {
    display: inline-block;
    padding: 0 30px;
    color: #fff;
    font-size: 20px;
}

.program-text-bottom {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
    padding-bottom: 70px;
    color: #fff;
    font-size: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.program-text-bottom p {
    margin-bottom: 0;
    margin-left: 50px;
    font-weight: bold;
}

.program-text-bottom ul {
    margin-left: 50px;
    padding-left: 0;
}

.advantages {
    height: calc(100vh - 360px);
    padding-top: 60px;
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.advantages.fixed {
    margin-top: 360px;
}

.advantages ul li {
    margin-top: 10px;
    color: #fff;
    font-size: 30px;
}

.prices .container-center {
    padding-top: 100px;
    background: #e3e9eb;
}

.prices-container {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 40px;
    padding-top: 55px;
    padding-bottom: 80px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.price-item {
    width: 33%;
}

.price-item__text {
    text-align: center;
    vertical-align: bottom;
    color: #001741;
    font-size: 30px;
}

.price {
    position: relative;
    left: 50%;
    width: 175px;
    height: 175px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 70px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background: #109cfd;
}

.price p {
    margin-bottom: 0;
    font-family: 'Geometria Bold';
    font-size: 33px;
    line-height: 33px;
}

.price span {
    font-size: 20px;
}

.price span.point {
    position: relative;
    top: -5px;
    font-size: 15px;
}

.price_big {
    width: 220px;
    height: 220px;
    margin-top: 0;
    margin-bottom: 14px;
    padding-top: 90px;
}

.shares {
    width: 100%;
    height: 750px;
    margin-top: 60px;
    background: #109afd;
    background: -webkit-gradient(left top, right top, color-stop(0%, #109afd), color-stop(85%, #109afd), color-stop(85%, white), color-stop(100%, white));
    background: -webkit-linear-gradient(left, #109afd 0%, #109afd 85%, white 85%, white 100%);
    background: -webkit-gradient(linear, left top, right top, from(#109afd), color-stop(85%, #109afd), color-stop(85%, white), to(white));
    background: linear-gradient(to right, #109afd 0%, #109afd 85%, white 85%, white 100%);
}

.shares .container-center {
    height: 100%;
    padding-top: 75px;
    background: #109cfd;
}

.shares-container {
    position: relative;
    margin-top: 100px;
}

.shares-item {
    width: 80%;
    margin: 0 auto;
    color: #fff;
    outline: none;
    font-size: 42px;
}

.shares-item p {
    width: 61%;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Geometria Bold';
}

.shares-item p span {
    font-family: 'Geometria Bold';
    font-size: 75px;
}

.slick-dots {
    position: absolute;
    top: 50%;
    right: 10%;
    padding-left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slick-dots li {
    list-style: none;
}

.slick-dots li.slick-active button {
    opacity: 1;
}

.slick-dots li button {
    display: block;
    width: 12px;
    height: 12px;
    margin-bottom: 12px;
    padding: 0;
    opacity: 0.6;
    color: transparent;
    border: none;
    border-radius: 10px;
    outline: none;
    background: #fff;
}

.slick-prev {
    position: absolute;
    z-index: 20;
    top: 100px;
    width: 60px;
    height: 60px;
    color: transparent;
    border: none;
    outline: none;
    background-image: url(../img/slider-up.jpg);
}

.slick-next {
    position: absolute;
    z-index: 20;
    top: 200px;
    width: 60px;
    height: 60px;
    color: transparent;
    border: none;
    outline: none;
    background-image: url(../img/slider-down.jpg);
}

.services {
    position: relative;
    z-index: 10;
}

.parallax-window {
    width: 85%;
    height: 385px;
    margin-top: -100px;
}

.parallax-window p {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Geometria Bold';
    font-size: 42px;
    line-height: 385px;
}

.services-info {
    position: relative;
    z-index: 10;
    width: 631px;
    height: 631px;
    margin: 0 auto;
    margin-top: 30px;
    padding: 150px;
    background-image: url(../img/services.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.services-info span {
    position: relative;
    top: 50%;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    font-size: 30px;
}

.contacts {
    position: relative;
    z-index: 5;
    overflow: hidden;
    padding-top: 100px;
    background: white;
    background: -webkit-gradient(left top, right top, color-stop(0%, white), color-stop(15%, white), color-stop(15%, #001741), color-stop(100%, #001741));
    background: -webkit-linear-gradient(left, white 0%, white 15%, #001741 15%, #001741 100%);
    background: -webkit-gradient(linear, left top, right top, from(white), color-stop(15%, white), color-stop(15%, #001741), to(#001741));
    background: linear-gradient(to right, white 0%, white 15%, #001741 15%, #001741 100%);
}

.contacts__arrow {
    position: absolute;
    z-index: 10;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.contacts .title {
    margin-top: 0;
    margin-bottom: 50px;
    text-align: left;
    color: #fff;
}

.contacts-info p {
    margin-bottom: 0;
    color: #fff;
    font-size: 20px;
}

.contacts-info__phone {
    display: block;
    margin-top: 20px;
    color: #fff;
    font-size: 30px;
}

.contacts-info__phone:hover {
    text-decoration: none;
    color: #fff;
}

.contacts-info__phone:focus {
    text-decoration: none;
    color: #fff;
}

.map #map {
    width: 100%;
    height: 560px;
}

.socials p {
    margin-top: 70px;
    margin-bottom: 20px;
}

.socials a {
    display: inline-block;
    width: 57px;
    height: 57px;
    margin-right: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-align: center;
    text-decoration: none;
    opacity: 0.4;
    color: #001741;
    border-radius: 50%;
    background: #fff;
    font-size: 30px;
    line-height: 57px;
}

.socials a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
}

.nav-tabs {
    position: relative;
    overflow: hidden;
    border: none;
}

.nav-tabs>li>a {
    padding: 40px 70px;
    text-transform: uppercase;
    color: #a5b3b7;
    font-family: 'Geometria Bold';
    font-size: 33px;
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    color: #fff;
    border-color: #109cfd;
    background: #109cfd;
}

.tab-content {
    background-color: #109cfd;
}

.offer {
    margin-top: 100px;
}

.offer-list {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding: 50px;
    padding-left: 0;
}

.offer-list li {
    float: left;
    width: 20%;
    list-style: none;
}

.offer-list li .img-container {
    height: 130px;
    text-align: left;
}

.offer-list li .img-container img {
    position: relative;
    top: 50%;
    left: 50%;
    display: inline-block;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.offer-list li div {
    margin-top: 30px;
    text-align: center;
    color: #fff;
    font-size: 20px;
}

.offer-list_second li {
    width: 25%;
}

.modal {
    background-color: rgba(16, 156, 253, 0.5);
}

.modal-content {
    box-sizing: border-box;
    padding: 30px;
    border-radius: 0px;
    background: #e3e9eb;
}

.modal-content input {
    width: 100%;
    height: 40px;
    /*margin-bottom: 24px;*/
    margin-bottom: 0;
    padding-left: 20px;
    border: none;
    outline: none;
}

.modal-content textarea {
    width: 100%;
    height: 140px;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
    resize: none;
    border: none;
    outline: none;
}

.close {
    margin-bottom: 20px;
}

.modal.in .modal-dialog {
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 480px;
    margin: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.footer {
    height: 100px;
    background: white;
    background: -webkit-gradient(left top, right top, color-stop(0%, white), color-stop(15%, white), color-stop(15%, #001741), color-stop(100%, #001741));
    background: -webkit-linear-gradient(left, white 0%, white 15%, #001741 15%, #001741 100%);
    background: -webkit-gradient(linear, left top, right top, from(white), color-stop(15%, white), color-stop(15%, #001741), to(#001741));
    background: linear-gradient(to right, white 0%, white 15%, #001741 15%, #001741 100%);
    line-height: 100px;
}

.footer .container-center {
    background: #001741;
}

.footer span {
    margin-left: 40px;
    color: #fff;
    font-size: 14px;
}

.footer a {
    float: right;
}

@media (min-width: 1024px) {
    .contacts__arrow:hover {
        -webkit-transition: 0.3s;
        transition: 0.3s;
        -webkit-transform: rotate(180deg) scale(1.2);
        transform: rotate(180deg) scale(1.2);
    }
}

@media (max-width: 1600px) {
    .header {
        height: 230px;
    }
    .advantages {
        height: calc(100vh - 230px);
    }
    .advantages.fixed {
        margin-top: 230px;
    }
}

@media (max-width: 1599px) {
    .chart__title {
        font-size: 30px;
    }
}

@media (max-width: 1400px) {
    .header.fixed .header-right {
        margin-right: 100px;
    }
}

@media (max-width: 1366px) {
    .navigation ul li {
        margin-top: 20px;
    }
    .navigation ul li a {
        font-size: 24px;
    }
    .prices .container-center {
        padding-top: 20px;
    }
    .prices-container {
        padding-bottom: 50px;
    }
    .price-item__text {
        font-size: 24px;
    }
    .price {
        width: 120px;
        height: 120px;
        margin-bottom: 45px;
        padding-top: 45px;
    }
    .price p {
        font-size: 22px;
        line-height: 22px;
    }
    .price span {
        font-size: 16px;
    }
    .price_big {
        width: 180px;
        height: 180px;
        padding-top: 80px;
    }
    .shares {
        height: 580px;
    }
    .shares .container-center {
        padding-top: 25px;
    }
    .shares-container {
        margin-top: 40px;
    }
    .contacts {
        padding-top: 25px;
    }
    .socials p {
        margin-top: 35px;
    }
}

@media (max-width: 1200px) {
    .parallax-window p {
        font-size: 30px;
    }
}

@media (max-width: 1140px) {
    .container-center {
        padding: 0 20px;
    }
}

@media (max-width: 1023px) {
    .chart {
        width: 100%;
        margin-left: 0;
        padding: 0 20px;
    }
    .chart-title {
        padding-top: 100px;
    }
    .chart-text {
        padding-top: 100px;
    }
    .chart-text p {
        font-size: 18px;
    }
    .program-text-top p {
        font-size: 18px;
    }
    .program-text-bottom {
        font-size: 16px;
    }
    .advantages ul li {
        font-size: 22px;
    }
    .shares {
        height: auto;
    }
    .shares .button_white {
        margin-bottom: 30px;
    }
    .shares-container {
        margin-bottom: 30px;
    }
    .shares-item {
        font-size: 30px;
    }
    .shares-item p span {
        font-size: 50px;
    }
    .slick-prev {
        top: 43px;
    }
    .slick-next {
        top: 135px;
    }
    .services-info {
        width: 400px;
        height: 400px;
        padding: 100px;
    }
    .services-info span {
        font-size: 22px;
    }
    .contacts-info p {
        font-size: 18px;
    }
    .socials a {
        width: 35px;
        height: 35px;
        margin-right: 15px;
        font-size: 20px;
        line-height: 35px;
    }
    .offer-list li {
        width: 50%;
    }
    .offer-list_second li {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .offer-list{
      padding: 20px;
    }
    .header.fixed .header-right {
        display: -ms-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        margin-right: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .language__link {
        display: block;
        padding-right: 10px;
        text-align: right;
    }
    .header.fixed .language {
        position: absolute;
        top: -10px;
        right: -40px;
    }
    .header.fixed .language__link {
        display: inline-block;
        padding-right: 0;
    }
    .header__title {
        font-size: 18px;
        display: none;
    }
    .bmenu {
        transform: scale(0.5);
    }
    .header__title .add-text {
        display: none;
    }
    .header.fixed .header__title {
        display: none;
    }
    .header__logo img {
        width: 120px;
        margin-right: 10px
    }
    .btn-primary {
        max-width: 100px;
        white-space: inherit;
    }
    .header__phone {
        right: 5px;
        -webkit-transform: translateY(50%) scale(0.5);
        transform: translateY(50%) scale(0.5);
    }
    .header__phone:hover {
        -webkit-transform: translateY(50%) scale(0.5);
        transform: translateY(50%) scale(0.5);
    }
    .navigation ul li {
        margin-top: 15px;
    }
    .navigation ul li a {
        font-size: 20px;
    }
    .chart {
        height: auto;
    }
    .chart-title {
        padding-top: 35px;
    }
    .chart-text {
        padding-top: 25px;
    }
    .program {
        margin-top: 0;
    }
    .program .container-center {
        padding-top: 30px;
        padding-left: 20px;
    }
    .program-all {
        margin-top: 0;
    }
    .program-all p {
        margin: 0;
    }
    .program-text-top {
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .program-text-top p {
        margin-top: 20px;
        font-size: 16px;
    }
    .program-text-bottom {
        flex-direction: column;
        margin-top: 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .program-text-bottom img {
        position: relative;
        left: 50%;
        display: inline-block;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .program-text-bottom p {
        margin-top: 20px;
        margin-left: 0;
        text-align: center;
    }
    .program-text-bottom ul {
        position: relative;
        display: inline-block;
        margin-left: 0;
        padding-left: 50px;
    }
    .program-text-bottom div {
        width: 100%;
    }
    .advantages {
        height: 470px;
    }
    .prices-container {
        padding-top: 10px;
    }
    .price-item {
        width: 100%;
        margin-top: 30px;
    }
    .price {
        margin-top: 0;
        margin-bottom: 0;
    }
    .shares-item {
        font-size: 22px;
    }
    .shares-item p span {
        font-size: 30px;
    }
    .slick-dots {
        right: 10px;
    }
    .slick-prev {
        top: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    .slick-next {
        top: 85px;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    .parallax-window p {
        padding-top: 150px;
        font-size: 20px;
        line-height: normal;
    }
    .contacts {
        padding: 0 15px;
        background: #001741;
    }
    .contacts__arrow {
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%) rotate(180deg);
        transform: translateX(-50%) rotate(180deg);
    }
    .contacts .title {
        margin-bottom: 15px;
        text-align: center;
    }
    .contacts-info {
        margin-top: 20px;
        text-align: center;
    }
    .contacts-info__phone {
        font-size: 26px;
    }
    .map {
        padding: 0;
    }
    .map #map {
        height: 400px;
    }
    .socials {
        position: relative;
        left: 50%;
        margin-bottom: 90px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .nav-tabs>li>a {
        padding: 10px;
        font-size: 22px;
    }
    .offer-list li {
        margin-bottom: 30px;
    }
    .offer-list li .img-container {
        height: 80px;
    }
    .offer-list li .img-container img {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(0.5);
        transform: translateX(-50%) translateY(-50%) scale(0.5);
    }
    .offer-list li p {
        margin-top: 0;
    }
    .modal-content {
        width: 100%;
        height: 100%;
    }
    .modal.in .modal-dialog {
        width: 100vw;
        height: auto;
        min-height: 100vh;
    }
    .modal.in .modal-dialog {
        top: 0;
        left: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@media (max-width: 480px) {
    .header__logo img {
        width: 85px;
    }
    .advantages ul li {
        font-size: 18px;
    }
    .price-item__text {
        font-size: 22px;
    }
    .shares-item {
        font-size: 16px;
    }
    .shares-item p span {
        font-size: 20px;
    }
    .services-info {
        width: 300px;
        height: 300px;
        padding: 50px;
    }
    .contacts__arrow {
        bottom: 0;
    }
    .contacts-info .button {
        width: 100%;
        margin-top: 20px;
        margin-left: 0;
    }
    .offer-list li {
        width: 100%;
    }
    .offer-list_second li {
        width: 100%;
    }
    .footer {
        height: auto;
        background: #001741;
    }
    .footer .container-center {
        display: -ms-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column-reverse;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer span {
        display: block;
        width: 100%;
        height: 60px;
        margin-bottom: 20px;
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }
    .footer a {
        position: relative;
        left: 50%;
        display: inline-block;
        float: none;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .footer a img {
        position: relative;
        left: 50%;
        display: inline-block;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media (max-width: 400px) {
    .chart {
        margin-top: -92px;
    }
}
