@font-face {
    font-family: 'Roboto Slab';
    font-weight: 700;
    src: url(/fonts/RobotoSlab-Bold.ttf);
}

#access {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    background: #fff;
}

._navbar {
    display: none;
}

.special ._navbar {
    display: initial;
}

.grayscale body img {
    filter: grayscale(100%);
}

.pagination {
    display: none;
}

.alert-success {
    display: none;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 12.5px;
    line-height: 1.2;
    color: #0d0000;
}

body * {
    outline: none!important;
}

a {
    color: currentColor;
    text-decoration: none;
}

a:hover,
a:focus {
    color: currentColor;
    text-decoration: none;
}

.underline-links {
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    display: inline;
}

a:hover .underline-links,
a:focus .underline-links {
    border-color: rgba(0, 0, 0, .5);
    opacity: .7;
}

.underline-links.white {
    border-bottom: 2px solid rgba(255, 255, 255, .5);
}

a:hover .underline-links.white,
a:focus .underline-links.white {
    border-color: rgba(255, 255, 255, .6);
}

.btn .underline-links {
    border-bottom: none;
}

.black {
    color: #0d0000;
}

.form-control {
    border: 1px solid rgb(185, 185, 185);
    background-color: rgb(244, 244, 244);
    box-shadow: 0px 3px 6.3px 0.7px rgba(0, 0, 0, 0.06);
    height: 34px;
    border-radius: 0;
    margin-bottom: 25px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0px;
}
.select {
    position: relative;
}
.select:after {
    content: '\25BC';
    position: absolute;
    font-size: .7em;
    padding:0;
    right: calc(15px + 1em);
    top: 1.2em;
    bottom: .3em;
    z-index: 1;
    /* This hack makes the select behind the arrow clickable in some browsers */
    pointer-events:none;

}
.form-control:focus {
    border-color: rgb(185, 185, 185);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 0, 0, 0.06);
}

.form-inline .form-control {
    width: 100%;
}

.form-control:not(.bvi):focus {
    background: #fff;
}

input[type="file"] {
    display: none;
}

.file-input {
    padding-left: 15px;
}
@media (max-width: 767px) {
    .file-input {
        float: none!important;
    }
}
.file-input label div {
    padding-left: 15px;
    font-weight: normal;
    margin-top: 8px;
    font-size: 12px;
    color: #999;
}

.file-input .btn {}


/* Base for label styling */

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
    position: relative;
    padding-left: 1.95em;
    cursor: pointer;
    margin-bottom: 15px;
}


/* checkbox aspect */

[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.25em;
    height: 1.25em;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 0px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1);
}


/* checked mark aspect */

[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
    content: '\2713';
    position: absolute;
    top: 1px;
    left: 1px;
    font-size: 1.25em;
    line-height: 0.8;
    color: #0d0000;
    transition: all .2s;
}


/* checked mark aspect changes */

[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}

[type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}


/* disabled checkbox */

[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

[type="checkbox"]:disabled:checked + label:after {
    color: #999;
}

[type="checkbox"]:disabled + label {
    color: #aaa;
}


/* Base for label styling */

[type="radio"]:not(:checked),
[type="radio"]:checked {
    position: absolute;
    left: -9999px;
}

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
    position: relative;
    padding-left: 1.95em;
    cursor: pointer;
    margin-bottom: 15px;
}


/* radio aspect */

[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.25em;
    height: 1.25em;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 0px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1);
}


/* checked mark aspect */

[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
    content: '✔';
    position: absolute;
    top: 1px;
    left: 1px;
    font-size: 15px;
    line-height: 0.8;
    color: #0d0000;
    transition: all .2s;
}


/* checked mark aspect changes */

[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}

[type="radio"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}


/* disabled radio */

[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

[type="radio"]:disabled:checked + label:after {
    color: #999;
}

[type="radio"]:disabled + label {
    color: #aaa;
}

.justifyfull {
    text-align: justify;
}

.justifyleft {
    text-align: left;
}

.justifyright {
    text-align: right;
}


/* hover style just for information */

label:hover:before {
    border: 2px solid #4778d9!important;
}


/* Header */

header {
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: 0px 3px 24.3px rgba(0, 0, 0, 0.07);
    z-index: 25;
    /*height:160px;*/
}

header.affix {
    top: 0;
}

.top-line {
    display: table;
    min-width: 100%;
    margin: 0;
}

.affix .top-line {
    display: none;
}

header .top-line>div {
    float: none;
    display: table-cell;
    vertical-align: middle;
    padding: 12px 0 0;
}

.logo img {
    max-width: 100%;
    width: 65px;
}

header .logo img {}

h1,
.heading-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 33px;
    text-transform: uppercase;
}
.laureat{
    font-size: 18px; 
}

.heading-title {
    margin: 0;
    line-height: 1.2;
}

.navbar {
    margin-bottom: 0;
    border: none;
}

.navbar-nav {
    width: 100%;
    text-align: center;
}

.navbar-header .logo,
.navbar-header .header-center {
    display: none;
}

@media (min-width: 768px) {
    .navbar-nav > li {
        display: inline-block;
        float: none;
        position: relative;
    }
    .navbar-nav > li:before {
        content: url(/images/navbar-divider.png);
        position: absolute;
        right: 100%;
        top: 0;
    }
    .navbar-nav > li:first-child:before {
        content: "";
    }
}

.navbar-nav > li > a {
    font-size: 17px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 20px;
    padding: 9px 39px 9px 33px;
    color: inherit;
}

.nav > li > a:hover,
.nav > li > a:focus {
    background: transparent;
    text-decoration: none;
    /*text-shadow: 1px 1px 3px rgba(50, 50, 50, 0.25);*/
    color: #000;
}

.navbar-toggle .icon-bar {
    background: #0d0000;
}


/* Main content */

.main-wrapper {
    /*min-height: 650px; kkkk 20220407*/
    background: #f4f4f4;
    padding-bottom: 32px;
    min-height: calc(100vh - 305px);
}

.affix:not(.bvi) + .main-wrapper {
    padding-top: 160px;
}

.affix:not(.bvi) + .jumbotron {
    margin-top: 160px;
}

.affix.bvi + .main-wrapper {
    margin-top: 294px;
}

.affix.bvi + .jumbotron {
    margin-top: 294px;
    ;
}

.breadcrumb {
    padding: 25px 15px 0;
    font-size: 12.5px;
    text-align: left;
}

.breadcrumb > li > span,
.breadcrumb > li > a {
    color: #4b4b4b;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
}

.breadcrumb > li > span,
.breadcrumb > li > a:hover,
.breadcrumb > li > a:focus {
    opacity: .7;
}

.breadcrumb > li + li:before {
    color: #4b4b4b;
}

.navigation h2 {
    max-width: 1100px;
}

.navigation .nav-tabs {
    clear: both;
    border: none;
    margin-bottom: 20px;
}

.navigation .nav-tabs > li > a {
    border: none;
    font-size: 20px;
    padding: 0;
    margin-right: 70px;
}

.navigation .nav > li > a:hover,
.navigation .nav > li > a:focus {}

.navigation .nav-tabs > li.active > a,
.navigation .nav-tabs > li.active > a:hover,
.navigation .nav-tabs > li.active > a:focus {
    color: #0d0000;
    cursor: pointer;
    background-color: transparent;
    border: none;
    text-shadow: none;
}

.navigation .nav-tabs > li.active > a {
    font-weight: 700;
}

.navigation .nav-tabs > li.active > a > .underline-links {
    border: none;
}

.navigation .nav-tabs > li > a:hover,
.navigation .nav-tabs > li > a:focus {
    border: none;
}

h1 {
    margin-top: 3px;
    margin-bottom: 40px;
}

h2 {
    font-size: 17px;
    line-height: 1;
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    /*background: transparent!important;*/
}

h2.bvi {
    background: transparent!important
}

h1 + h2 {
    margin-top: -10px;
}

.box {
    display: block;
    background: #fff;
    min-height: 100px;
    margin-bottom: 48px;
    box-shadow: 0px 3px 38px rgba(0, 0, 0, 0.3);
}

.box:after {
    content: "";
    display: table;
    clear: both;
}

.btn {
    background-color: #fff;
    box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.15);
    color: #0d0000;
    padding: 10px 17px;
    font-size: inherit;
    border-radius: 0;
}

.btn:hover,
.btn:focus {
    box-shadow: 0px 3px 18px rgba(0, 0, 0, 0.3);
}

.box.content {
    padding: 30px 28px 50px;
    color: #565656;
    font-size: 15px;
    line-height: 1.2;
    min-height: 400px;
}

.box.content img {
    max-width: 100%;
    height: initial!important;
    display: block;
    margin: 25px auto 0;
}

.box.content h2 {
    font-size: 25px;
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    text-transform: none;
    color: #0d0000;
}

.box.content b {
    color: #0d0000;
}

.embed-wrapper {
    margin-bottom: 48px;
}

.embed-wrapper iframe {
    box-shadow: 0px 3px 38px rgba(0, 0, 0, 0.39);
}

.panel-group .panel {
    border-radius: 0;
    border: 1px solid #ddd;
    border-width: 1px 0 0 0;
    box-shadow: none;
}

.panel-group .panel + .panel {
    margin-top: 0;
}

.panel-heading {
    position: relative;
    padding: 0;
    color: #0d0000;
    background: #fff;
}

.panel-heading:before {
    content: "\002b";
    position: absolute;
    left: 18px;
    font-size: 23px;
    top: 12px;
    pointer-events: none;
}

.panel-heading.active:before {
    content: "\2212";
}

.panel-heading.active,
.panel-collapse {
    background: #fafafa;
}

.panel-group .panel-heading a {
    padding: 16px 45px;
    display: block;
}

.panel-group .panel-heading a:focus {
    text-decoration: none;
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
    border: none;
}

.panel-body {
    padding: 20px 45px;
}

.panel-body form {
    margin-top: 40px;
}

.btn.blue {
    background: #0491d5;
    color: #fff;
    /*margin-top: 15px;*/
}

.panel-body strong {
    color: #0d0000;
}


/* Home page */

.jumbotron {
    background: transparent;
    height: calc(100vh - 346px);
    min-height: 250px;
    margin-bottom: 0;
    padding-top: 15px;
    padding-top: calc((100vh - 346px) / 8);
    z-index: 10;
    position: relative;
}

.parallax-mirror .bvi-grayscale {
    width: 100%;
}


/*.parallax-slider {
    left: calc(100% - 1600px)!important;
    width: 1600px!important;
    height: initial!important;
}*/

.jumbotron .offer {
    font-size: 35px;
    line-height: 46px;
    color: #fff;
    background-color: rgba(1, 45, 65, .4);
    display: inline;
    box-shadow: 20px 0 0 rgba(1, 45, 65, .4), -20px 0 0 rgba(1, 45, 65, .4);
}

.home-content .section-heading {
    font-size: 33px;
    margin: 40px auto;
}

.main-activity .box {
    position: relative;
    padding: 20px;
    height: 150px;
    box-shadow: 0px 3px 38px rgba(0, 0, 0, 0.15);
}

.main-activity .box:hover,
.main-activity .box:focus {
    box-shadow: 0px 3px 38px rgba(0, 0, 0, 0.3);
}

.main-activity .box .image {
    height: 70px;
}

.main-activity .box .image img {
   max-height: 55px;
   max-width: 55px;
}

.main-activity .box .caption {
    font-size: 18px;
    max-width: 250px;
    margin: 0 auto;
}

.main-activity .box-wrapper:nth-child(4) .box .caption {
    max-width: 235px;
}

.home-news {
    margin: 60px 0 0;
    padding: 50px 15px;
    border: 3px dashed #626262;
    border-radius: 20px;
    position: relative;
}

.home-news>div {
    position: relative;
}

.home-news>div>a:nth-child(4) {
    display: none;
}

.home-news .type {
    position: absolute;
    right: 25px;
    top: -14px;
    background: #6495ED;
    display: inline-block;
    padding: 0 15px;
    font-size: 17px;
    line-height: 27px;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.15);
    z-index: 5;
}
.home-news .type.orange {
    background: #ffa500;
}
.home-news .section-heading {
    position: absolute;
    top: -20px;
    margin: 0;
    text-align: center;
    width: 100%;
}

.home-news .section-heading span {
    background: #fff;
    padding: 0 20px;
}

.home-news .image {
    /*width: 100%;*/ height: 179px; /*kkkk*/
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.home-news .image img {
    width: 100%;
}

.home-news .title {
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 19px;
    border-bottom: 2px solid rgba(0, 0, 0, .2);
    display: inline;
}

.home-branches {
    background-image: url(/images/home-branches-bg.jpg);
    background-position: 60px 0;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.home-branches .section-heading {
    margin: 50px 0;
}

.home-branches .btn {
    width: 100%;
    font-size: 24px;
    line-height: 25px;
    padding: 40px 0;
    margin-bottom: 50px;
    box-shadow: 0px 3px 38px rgba(0, 0, 0, 0.15);
}

.home-branches .btn:hover,
.home-branches .btn:focus {
    box-shadow: 0px 3px 38px rgba(0, 0, 0, 0.3);
}

.home-bottom-links {
    height: 384px;
    padding-bottom: 130px;
    background: transparent;
    color: #fff;
    position: relative;
    z-index: 10;
}

.parallax-mirror {
    z-index: 5!important;
}

.home-bottom-links .section-heading {
    font-size: 33px;
    margin: 80px auto 60px;
}

.home-bottom-links .container {
    padding: 0 100px;
}

.home-bottom-links a {
    display: inline-block;
    margin: 0 40px 25px;
    font-size: 22px;
}

.home-bottom-links + footer {
    background: #f4f4f4;
}


/* Grid pages */


/* Activities */

@media (min-width: 1300px) {
    .activities-grid .box-wrapper:nth-child(even) {
        padding-left: 30px;
    }
    .activities-grid .box-wrapper:nth-child(odd) {
        padding-right: 30px;
        clear: left;
    }
}

.activities-grid {}

.activities-grid .box {
    padding: 17px;
    padding-bottom: 78px!important;
    position: relative;
}
.activities-grid .box .btn {
    position: absolute;
    right: 23px;
    bottom: 23px;
}
.activities-grid .box > .image {
    width: 197px;
    height: 301px;
    overflow: hidden;
    float: left;
    margin-right: 17px;
}

.activities-grid .box > .caption {
    width: calc(100% - 214px);
    float: right;
}

@media (max-width: 767px) {
    .activities-grid .box > .image {
        width: 100%;
        height: initial;
        overflow: hidden;
        float: left;
        margin-right: 17px;
    }
    .activities-grid .box > .caption {
        width: 100%;
        float: right;
    }
}

.activities-grid .box > .caption ul {
    padding-left: 15px;
    margin-bottom: 0;
}

.activities-grid .box > .caption ul > li:not(:last-child) {
    margin-bottom: 12px;
}


/* Branches */

@media (min-width: 1300px) {
    .branches-grid .box-wrapper:nth-child(even) {
        padding-left: 35px;
    }
    .branches-grid .box-wrapper:nth-child(odd) {
        padding-right: 35px;
        clear: left;
    }
}

.branches-grid .box {
    padding: 17px;
    min-height: 215px;
}

.branches-grid .box h2 {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 25px;
    margin-bottom: 15px;
}

.branches-grid .box > .image {
    width: 95px;
    min-height: 100px;
    overflow: hidden;
    float: left;
    margin-right: 26px;
    text-align: center;
}

.branches-grid .box > .image img {
    max-width: 100%;
    max-height: 100px;
}

.branches-grid .box > .caption {
    width: calc(100% - 121px);
    float: right;
}

@media (max-width: 767px) {
    .branches-grid .box > .image {
        width: 100%;
        height: initial;
        overflow: hidden;
        float: left;
        margin-right: 17px;
    }
    .branches-grid .box > .caption {
        width: 100%;
        float: right;
    }
    .branches-grid, .home-branches h2+div {
        display: flex;
        flex-direction: column;
    }
    .branches-grid > div:last-child, .home-branches h2+div > div:last-child {
        order: -99;
    }
}

.branches-grid .box > .caption ul {
    padding-left: 15px;
}

.branches-grid .box > .caption ul > li {
    margin-bottom: 15px;
}


/* News */

.news-grid {
    margin-bottom: 18px;
}

.news-grid .box {
    padding: 26px;
    margin-bottom: 30px;
}

.news-grid .box h2 {
    font-size: 17px;
    text-transform: none;
    margin-bottom: 12px;
    height: 51px;
    overflow: hidden;
}
#new-list .news-grid .box h2 {
    height: 87px;
}
.news-grid .box .image {
    text-align: center;
    margin-bottom: 16px;
    height: 200px;
    overflow: hidden;
}

.news-grid .box .image img {
    width: 100%;
}

.news-grid .box .caption {
    font-size: 14px;
    line-height: 17px;
    height: 3.5em;
    overflow: hidden;
    position: relative;
    color: #565656;
    margin-bottom: 10px;
}

.news-grid .box .bottom {
    font-size: 14px;
    color: #565656;
}

.news-grid .box .bottom a {
    color: #0d0000;
    text-decoration: underline;
}

.news-grid .box .caption:after {
    content: url(/images/p-end.png);
    position: absolute;
    right: 0;
    top: 2.4em;
}

.news-item .caption {
    padding-left: 15px;
    padding-right: 15px;
}

.news-item .caption a {
    text-decoration: underline;
}

.news-item .caption a:hover {
    opacity: .7;
}


/* Partners */

.partners-grid {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
}
.partners-grid .box-wrapper{
    display: flex;
    flex-direction: column;
}
.partners-grid .box {
    padding: 20px 20px 15px;
    height: 100%;
    margin-bottom: 30px;
}

.partners-grid .box h2 {
    font-size: 17px;
    text-transform: none;
    word-wrap: break-word;
    margin-bottom: 20px;
}

.partners-grid .box .image {
    text-align: center;
    width: 100%;
    height: 104px;
}

.partners-grid .box .image img {
    max-width: 100%;
    max-height: 100%;
}

.partners-grid .box .caption {
    font-size: 14px;
    line-height: 17px;
    height: 51px;
    overflow: hidden;
    position: relative;
    color: #565656;
    margin-bottom: 10px;
}

.partners-grid .box .bottom {
    font-size: 14px;
    color: #565656;
}

.partners-grid .box .bottom a {
    color: #0d0000;
    text-decoration: underline;
}

.partners-grid .box .caption:after {
    content: url(/images/p-end.png);
    position: absolute;
    right: 0;
    top: 34px;
}


/* Projects */

.projects-grid {
    margin-bottom: 8px;
}

.projects-grid .box {
    position: relative;
    padding: 0;
    margin-bottom: 40px;
    font-size: 12.5px;
}

.projects-grid .box .type {
    position: absolute;
    right: 9px;
    top: -14px;
    background-color: rgba(27, 68, 87, 0.85);
    display: inline-block;
    padding: 0 15px;
    line-height: 27px;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.projects-grid .box .title {
    position: absolute;
    top: 15px;
    left: 9px;
    right: 9px;
    padding: 10px;
}

.projects-grid .box .title span {
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 23px;
    display: inline;
    text-transform: uppercase;
    color: #0d0000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 10px 0 0 rgba(255, 255, 255, 0.95), -10px 0 0 rgba(255, 255, 255, 0.95);
}

.projects-grid .box .image {
    overflow: hidden;
    text-align: center;
    /*height: 168px;*/
}

.projects-grid .box .image img {
    width: 100%;
}

.projects-grid .box .caption {
    padding: 17px 17px 0;
    font-size: 12.5px;
    line-height: 17px;
    position: relative;
    color: #0d0000;
    min-height: 149px;
}

.projects-grid .box .bottom {
    padding: 0 17px 17px;
    font-size: 12.5px;
    color: #565656;
    clear: both;
}

.projects-grid .box .bottom:after {
    content: "";
    display: table;
    clear: both;
}

.projects-grid .box .btn {
    background-color: rgb(4, 145, 213);
    box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    color: #fff;
    padding: 5px 12px;
}

.projects-more {
    margin-bottom: 48px;
}

.project .content a {
    text-decoration: underline;
}

.project .content a:hover {
    opacity: .7;
}


/* Executives Grid*/

.executives-grid {
    margin-bottom: 18px;
}

.executives-grid .box {
    /*box-shadow: none;*/
    margin-bottom: 30px;
    padding: 14px;
}

.executives-grid .box .image {
    width: 190px;
    height: 230px;
    overflow: hidden;
    float: left;
    margin-right: 14px;
}

.executives-grid .ceo .box .image {
    width: 100%;
    height: initial;
    margin-bottom: 14px;
}

.executives-grid .box .image img {
    width: 100%;
    max-width: 100%;
}

.executives-grid .box .caption {
    color: #565656;
}

.executives-grid .box .name {
    font-size: 15px;
    color: #0d0000;
}


/* News Item */

.news-item h2 {
    margin-bottom: 30px;
}
.news-item .image {
    width: initial;
    max-width: 33%;
    padding-left: 15px;
    padding-right: 25px;
    float: left;
}
.news-item .image img {
    width: initial;
    margin: 0 auto 25px;
}


/* About Us */

.about-us-buttons {
    margin-top: 25px;
    text-align: center;
}

.about-us-buttons .btn {
    display: block;
    float: left;
    width: calc((100% - 150px) / 5);
    min-width: 150px;
    margin: 0 15px 15px;
    padding: 22px;
    font-size: 17px;
    line-height: 21px;
}

.about-us .image img {
    width: 100%;
    margin: 0 auto 15px;
}

.about-us .caption {
    padding: 0 15px;
}


/* Contacts */

.contacts .left {
    width: calc(100% - 280px);
}

.contacts .right {
    width: 280px;
}

.contacts .left .black>div:first-child {
    margin-right: 50px;
}

.contacts .left .map {
    margin-top: 15px;
}

.contacts>.right .btn {
    width: 100%;
    white-space: normal;
    height: 64px;
    display: table;
    margin-bottom: 28px;
    font-size: 15px;
}

.contacts>.right .btn>span {
    display: table-cell;
    vertical-align: middle;
}

.corruption-buttons .box {
    display: table;
    width: 100%;
    box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.15);
}

.corruption-buttons .box:hover,
.corruption-buttons .box:focus {
    box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.25);
}

.corruption-buttons .box .caption {
    font-size: 15px;
    padding-right: 25px;
}

.corruption-buttons .box>div {
    display: table-cell;
    vertical-align: middle;
}

.corruption-buttons .box .image {
    text-align: center;
    width: 80px;
}

.corruption li {
    list-style-image: url(/images/doc-link.png);
    margin-bottom: 15px;
}

.corruption li>a {
    position: relative;
    top: -8px;
}

.corruption li>a {
    color: #0d0000;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    display: inline;
}

.corruption li>a:hover,
.corruption li>a:focus {
    border-color: rgba(0, 0, 0, .5)
}

.box.feedback-form {
    padding: 0 35px 50px;
}

.history p {
    text-align: justify;
}


/*p+ul {
    margin-top: -10px;
    padding-left: 20px
}*/


/* Footer */

footer {
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: 0px 3px 24.3px rgba(0, 0, 0, 0.07);
    z-index: 5;
    padding: 35px 0 20px;
    font-size: 17px;
    color: #0d0000;
    height:153px;
}

footer a {
    font-size: 17px;
    color: #0d0000;
}

.footer-1 {
    width: 200px;
}

.footer-1 img {
    position: relative;
    top: -10px;
}

.footer-2 {
    width: 240px;
}
.footer-3 {
    width: 225px;
}
.footer-3 footer-phone {
    font-size: 21px;
}

.footer-2 span,
.footer-3 span,
.footer-social span {
    line-height: 21px;
}
.footer-social a {
    display: inline-block;
    margin-top: 3px;
}
.footer-social a:hover {
    opacity: .7;
}
.footer-social, .footer-4 {
    text-transform: uppercase;
}

.footer-4 img {
    margin: 5px;
}

.mobile {
    display: none;
}

@media (max-width: 1299px) and (min-width: 992px) {
    .main-activity .box-wrapper:nth-child(7) {
        margin-left: calc(100% / 6);
    }
    .activities-grid .box > .caption h2 {
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .executives-grid .ceo {
        width: 38%;
    }
    .executives-grid .ceo + div {
        width: 62%;
    }
    .jumbotron .offer {
        font-size: 35px;
        line-height: 48px;
        padding-bottom: 2px;
        color: #fff;
        background-color: rgba(1, 45, 65, .4);
        display: inline;
        box-shadow: 20px 0 0 rgba(1, 45, 65, .4), -20px 0 0 rgba(1, 45, 65, .4);
    }
}

@media (max-width: 1299px) {
    .contacts .box.content {
        font-size: 12px;
    }
    .activities-grid .box > .image {
        width: 164px;
        height: 250px;
    }
    .activities-grid .box > .image img {
        width: 100%;
    }
    .activities-grid .box > .caption {
        width: calc(100% - 181px);
        float: right;
    }
    .activities-grid .box {
        min-height: initial;
        max-width: 720px;
        margin: 0 auto 50px;
        padding: 27px 27px 37px;
    }
    .navbar-nav > li > a {
        padding: 9px 20px;
        font-size: 15px;
    }
    .home-branches .btn {
        font-size: 16px;
        padding: 30px 0;
    }
    .home-branches {
        background-position: -80px 0px;
    }
    .home-bottom-links a {
        margin: 0 35px 25px;
    }
    .footer-1 {
        width: 125px;
    }
    .home-bottom-links {
        padding: 0;
    }
    .executives-grid .box {
        min-height: 430px;
    }
    .executives-grid .box p {
        margin-bottom: 5px;
    }
    .executives-grid .box .image {
        width: 100%;
        margin-bottom: 15px;
    }
    .branches-grid .box {
        padding: 17px;
        min-height: 215px;
    }
    .branches-grid .box h2 {
        font-size: 20px;
    }
    .branches-grid .box .caption p:last-child {
        margin-bottom: 0;
    }
    .projects-grid .box .image {
        height: initial;
    }
    .news-grid .box h2 {
        min-height: 68px;
    }
    .project h1 {
        font-size: 25px;
    }
    .footer-3 {
        clear: left;
        margin-top: 15px;
    }
    .footer-social {
        margin-top: -42px;
    }
}

@media (max-width: 992px) {
    .contacts .left {
        width: calc(100% - 250px);
    }
    .contacts .right {
        width: 250px;
    }
    .navbar-nav > li > a {
        padding: 9px 15px;
        font-size: 12px;
    }
    .container > .navbar-collapse {
        margin: 5px -15px 0;
        padding: 0;
    }
    .main-activity .box .caption {
        font-size: 18px;
        max-width: 235px;
        margin: 0 auto;
    }
    .home-news .type {
        right: 20px;
        top: -10px;
        padding: 0 10px;
        font-size: 12px;
        line-height: 20px;
    }
    .home-news .title {
        font-size: 14px;
        line-height: 1.5;
    }
    .home-branches .btn {
        font-size: 14px;
        padding: 20px 0;
    }
    .home-branches {
        background-position: -240px 0px;
    }
    .home-bottom-links .container {
        padding: 0 15px;
    }
    footer,
    footer a {
        font-size: 15px;
    }
    .footer-1 img {
        position: relative;
        top: 5px;
    }
    .footer-2 {
        width: 175px;
    }
    .footer-3 {
        width: 175px;
        clear: left;
        margin-top: 15px;
    }
    .about-us-buttons .btn {
        display: inline-block;
        float: none;
        width: calc((100% - 150px) / 3);
    }
    .navigation .nav-tabs > li > a {
        border: none;
        font-size: 18px;
        padding: 0;
        margin-right: 35px;
    }
    .executives-grid .box {
        min-height: initial;
        height: initial!important;
    }
    .executives-grid .box p {
        margin-bottom: 5px;
    }
    .executives-grid .box .image {
        width: 140px;
        height: initial;
        margin-bottom: 0;
    }
    .branches-grid .box {
        min-height: initial;
    }
    .branches-grid .box {
        min-height: 187px;
        max-width: 470px;
        margin: 0 auto 50px;
    }
    .branches-grid .box > .caption {
        width: calc(100% - 90px);
        float: right;
    }
    .branches-grid .box > .caption p {
        margin-bottom: 5px;
    }
    .branches-grid .box > .image {
        width: 75px;
        min-height: 100px;
        overflow: hidden;
        float: left;
        margin-right: 15px;
        text-align: center;
    }
    .branches-grid .box h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .contacts .left .black>div:first-child {
        margin-right: 0;
    }
    .contacts p {
        font-size: 12.5px;
    }
    .map>ymaps {
        height: 200px!important;
    }
    .laureat{
        font-size: 20px;
    }
    
    .heading-title {
        font-size: 25px;
    }
    .corruption-buttons .box .caption {
        font-size: 12px;
        padding-right: 15px;
    }
    .projects-grid .box .title span {
        font-size: 12px;
        line-height: 16px;
    }
    .projects-grid .box .type {
        font-size: 10px;
    }
    .news-grid .box h2 {
        min-height: 85px;
    }
    .project h1 {
        font-size: 20px;
    }
    .jumbotron .offer {
        font-size: 35px;
        line-height: 48px;
        padding-bottom: 2px;
        color: #fff;
        background-color: rgba(1, 45, 65, .4);
        display: inline;
        box-shadow: 20px 0 0 rgba(1, 45, 65, .4), -20px 0 0 rgba(1, 45, 65, .4);
    }
}

@media (max-width: 767px) {
    .box {
        height: initial!important;
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
    }
    .main-wrapper {
        padding-top: 60px;
    }
    .affix + .main-wrapper {
        padding-top: 60px;
    }
    .jumbotron {
        margin-top: 60px;
        padding-top: 25px;
        height: initial;
        min-height: initial;
    }
    .affix:not(.bvi) + .jumbotron {
        margin-top: 60px;
    }
    .mobile {
        display: block;
    }
    .mobile .box.content {
        padding: 0 28px;
    }
    .container > .navbar-header {
        display: table;
        width: 100vw;
        position: fixed;
        background: #fff;
        left: 0;
        top: 0;
        margin: 0;
        height: 60px;
    }
    .container > .navbar-collapse {
        margin-top: 60px;
    }
    .navbar-nav {
        margin: 0;
        padding-top: 0;
        padding-bottom: 15px;
    }
    .navbar-header .logo,
    .navbar-header .header-center,
    .navbar-header .menu {
        display: table-cell;
        vertical-align: middle;
        float: none;
    }
    .navbar-header .logo,
    .navbar-header .menu {
        padding: 5px 10px;
        width: 50px;
    }
    .navbar-header .header-center {
        padding: 0;
        width: calc(100% - 50px);
    }
    .navbar-header .logo > img {
        max-height: 40px;
    }
    .navbar-toggle {
        position: relative;
        float: right;
        padding: 9px 0px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        background-color: transparent;
        background-image: none;
        border: 1px solid transparent;
        border-radius: 4px;
    }
    .nav-tabs > li+li {
        margin-top: 15px;
    }
    .box.content {
        font-size: 14px;
    }
    .news-item .image {
    	/*max-width: 50%;*/
    }
    .laureat{
        font-size: 10px; 
    }
    .heading-title {
        font-size: 12px;
    }
    h1 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .jumbotron .offer {
        font-size: 18px;
        line-height: 27px;
        padding: 1px 0 2px;
    }
    .home-content .section-heading {
        font-size: 20px;
        top: -10px;
        left: 0;
    }
    .home-branches .btn {
        margin-bottom: 15px;
    }
    .home-branches {
        padding-bottom: 25px;
    }
    .home-bottom-links {
        height: initial;
        padding-bottom: 25px;
    }
    .home-news {
        padding-bottom: 0;
    }
    .home-news a {
        display: block;
        margin-bottom: 35px;
        padding: 0;
    }
    .home-news a:after {
        content: "";
        display: table;
        clear: both;
    }
    footer,
    footer a {
        font-size: 12px;
    }
    .footer-1 {
        width: 100%;
        text-align: center;
    }
    .footer-1 + div {
        width: 100%;
        margin-top: 15px;
    }
    .footer-2 {
        width: 50%;
        font-size: 12px;
    }
    .footer-2 span,
    .footer-3 span,
    .cecutient span {
        white-space: nowrap;
    }
    .footer-social {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
    .footer-3 {
        font-size: 12px;
        width: initial;
        float: right!important;
        clear: none;
        margin-top: 0;
    }
    .footer-4 {
        margin-top: 25px;
        width: 100%;
        text-align: center;
    }
    .about-us-buttons .btn {
        width: 100%;
        margin: 0 0 25px;
    }
    .box.content img {
        width: initial;
        height: initial;
    }
    .executives-grid .box .image {
        width: 100%;
        margin-bottom: 15px;
    }
    .panel-group {
        margin-left: -28px;
        margin-right: -28px;
        margin-bottom: 0;
    }
    .panel-body {
        padding: 15px;
    }
    .box.content {
        min-height: initial;
    }
    .box.content h2 {
        font-size: 20px;
    }
    .panel-group .panel:last-child {
        border-bottom: 1px solid #ddd;
    }
    .activities-grid .box {
        padding: 15px 15px 25px;
    }
    .activities-grid .box > .image {
        width: 100%;
        height: initial;
        text-align: center;
    }
    .activities-grid .box > .image img {
        max-width: 175px;
    }
    .activities-grid .box > .caption {
        width: 100%;
        margin-top: 15px;
    }
    .projects-grid .box .type {
        font-size: 8px;
    }
    .projects-grid .box .caption {
        min-height: initial;
    }
    .news-grid .box .image {
        height: initial;
    }
    .news-grid .box h2 {
        min-height: initial;
    }
    .contacts .left {
        width: 100%;
    }
    .contacts .right {
        width: 100%;
    }
    .branches-grid .box {
        padding-bottom: 30px;
    }
    .branches-grid .box > .image {
        width: 100%;
        margin-bottom: 15px;
        min-height: initial;
    }
    .branches-grid .box > .image img {
        width: 95px;
    }
    .branches-grid .box > .caption {
        width: 100%;
    }
    .career .btn.blue {
        margin-right: 15px;
    }
}

@media (max-width: 319px) {
    body * {
        line-height: 1.5!important;
    }
    body,
    .navigation .nav-tabs > li > a,
    .breadcrumb {
        font-size: 8px;
    }
    .box {
        margin-bottom: 15px;
    }
    .box.content {
        padding: 10px;
        font-size: 8px;
    }
    .main-activity .box .caption,
    .home-news .title,
    .home-branches .btn,
    .home-bottom-links .section-heading,
    .home-bottom-links a,
    h2,
    h1,
    .news-grid .box h2,
    .projects-grid .box .title span,
    .project h1,
    .branches-grid .box h2,
    .partners-grid .box h2,
    .panel-title {
        font-size: 10px;
    }
    .home-content .section-heading {
        margin: 15px auto;
    }
    .laureat{
        font-size: 8px; 
    }
    
    .heading-title {
        font-size: 10px;
    }
    h1 {
        font-size: 10px;
        margin-bottom: 25px;
    }
    .jumbotron .offer {
        font-size: 10px;
        line-height: 19px;
        padding: 1px 0 2px;
        box-shadow: 5px 0 0 rgba(1, 45, 65, .4), -5px 0 0 rgba(1, 45, 65, .4);
    }
    .home-content .section-heading {
        font-size: 10px;
        top: -10px;
        left: 0;
    }
    .home-news a:after {
        content: "";
        display: table;
        clear: both;
    }
    .home-bottom-links a {
        margin: 0 0 15px;
    }
    footer,
    footer a {
        font-size: 10px;
    }
    .footer-2 {
        width: 50%;
        font-size: 10px;
    }
    .footer-3 {
        font-size: 10px;
        width: initial;
        float: left!important;
        clear: none;
        margin-top: 0;
    }
    .footer-4 {
        margin-top: 25px;
        width: 100%;
        text-align: center;
    }
    .about-us-buttons .btn {
        width: 100%;
        margin: 0 0 25px;
    }
    .box.content img {
        width: initial;
        height: initial;
    }
    .box.content h2 {
        font-size: 10px;
    }
    .projects-grid .box .title {
        position: initial;
    }
    .panel-group {
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .col-sm-6:nth-child(2n+1),
    .col-sm-4:nth-child(3n+1),
    .col-sm-3:nth-child(4n+1) {
        clear: left;
    }
}

@media (min-width: 992px) {
    .col-md-6:nth-child(1n),
    .col-md-4:nth-child(1n),
    .col-md-3:nth-child(1n) {
        clear: none;
    }
    .col-md-6:nth-child(2n+1),
    .col-md-4:nth-child(3n+1),
    .col-md-3:nth-child(4n+1) {
        clear: left;
    }
}

@media (min-width: 1300px) {
    .col-lg-6:nth-child(1n),
    .col-lg-4:nth-child(1n),
    .col-lg-3:nth-child(1n) {
        clear: none;
    }
    .col-lg-6:nth-child(2n+1),
    .col-lg-4:nth-child(3n+1),
    .col-lg-3:nth-child(4n+1) {
        clear: left;
    }
}


/* Версия для слабовидящих */

.bvi-panel-menu {
    position: fixed;
    width: 100%;
    background: #fff;
}

.breadcrumb > li > span.bvi,
.breadcrumb > li > a.bvi,
a:hover .underline-links.bvi,
a:focus .underline-links.bvi {
    border-color: currentColor;
}

header.bvi {
    margin-top: 95px;
}

@media (max-width: 992px) {
    header.bvi {
        margin-top: 121px;
    }
    .bvi-panel-menu-bg {
        padding: 0 15px;
    }
}

.bvi .type,
.bvi .projects-grid .title {
    border: 1px solid currentColor;
}

.affix + .main-wrapper.bvi {
    /*padding-top: 0;*/
}

.bvi .box,
.bvi .btn {
    border: 1px solid;
    box-shadow: none;
}

.form-group {
    clear: none!important;
}

.home-news .title.bvi {
    line-height: 1.5
}

.navbar-nav.bvi > li:before {
    display: none;
}

.show-black,
.hide-black.bg-black {
    display: none;
}

.show-black.bg-black {
    display: initial;
}

.jumbotron.bvi {
    background: transparent;
}

a.bvi .underline-links.white.bvi {
    border-color: currentColor;
}

a.bvi:hover .underline-links.white.bvi,
a.bvi:focus .underline-links.white {
    border-color: currentColor;
}

.btn.bvi:hover,
.btn.bvi:focus,
.btn.bvi.focus {
    color: inherit;
    opacity: .7;
}

.news-grid .box .caption.bvi:after {
    display: none;
}

.branches-grid .image.bvi,
.branches-grid .image img.bvi,
.partners-grid .image.bvi,
.partners-grid .image img.bvi {
    background: #fff;
}


/* White background */

.bg-white,
.bg-white .btn.blue,
.bg-white .btn,
.bg-white .box,
.bg-white .projects-grid .box .btn,
.bg-white .projects-grid .box .type,
.bg-white .projects-grid .box .title,
.bg-white .projects-grid .box .title span,
.bg-white .projects-grid .box .caption,
.bg-white .box.content h2 {
    color: #000!important;
    background: #fff;
    border-color: currentColor;
    box-shadow: none!important;
}

.jumbotron .offer.bg-white {
    background: #fff;
    color: #000;
    box-shadow: 20px 0 0 rgba(255, 255, 255, 1), -20px 0 0 rgba(255, 255, 255, 1);
}

.home-bottom-links.bg-white {
    background: transparent;
    color: #000;
}

.home-bottom-links h2.bg-white span {
    padding: 5px;
}

.home-bottom-links h2+div.bg-white {
    padding-top: 10px;
}

.home-bottom-links.bg-white a {
    color: #000;
}

.home-bottom-links + footer.bg-white {
    background: #fff;
}


/* Black background */

.bg-black,
.bg-black .btn.blue,
.bg-black .btn,
.bg-black .box,
.bg-black .projects-grid .box .btn,
.bg-black .projects-grid .box .type,
.bg-black .projects-grid .box .title,
.bg-black .projects-grid .box .title span,
.file-input label div.bg-black,
.form-control.bg-black:focus,
.bg-black .projects-grid .box .caption,
.bg-black .box.content h2 {
    color: #fff!important;
    background: #000;
    border-color: currentColor;
    box-shadow: none;
}

.main-activity .box .image img.bg-black {
    filter: invert(100%);
    background: transparent;
}

.jumbotron .offer.bg-black {
    background: #000;
    color: #fff;
    box-shadow: 20px 0 0 rgba(0, 0, 0, 1), -20px 0 0 rgba(0, 0, 0, 1);
}

.home-news .section-heading span.bg-black {
    background: #000;
}

.home-news .type.bg-black {
    color: #fff;
    background: #000;
}

.logo.bg-black img {
    filter: invert(1);
    background: transparent;
}

.home-bottom-links.bg-black {
    background: transparent;
}

.home-bottom-links h2.bg-black span {
    padding: 5px;
}

.home-bottom-links h2+div.bg-black {
    padding-top: 10px;
}

.home-bottom-links + footer.bg-black {
    background: #000;
}

.branches-grid .image.bvi.bg-black {
    background: #000;
}


/* Blue background */

.bg-blue,
.home-news .type.bg-blue,
.bg-blue .btn,
.bg-blue .box,
.btn.blue.bg-blue,
.bg-blue .projects-grid .box .btn,
.bg-blue .projects-grid .box .type,
.bg-blue .projects-grid .box .title,
.bg-blue .projects-grid .box .title span,
.file-input label div.bg-blue,
.form-control.bg-blue:focus,
.bg-blue .projects-grid .box .caption,
.bg-blue .box.content h2 {
    color: #063462!important;
    background: #9DD1FF;
    border-color: currentColor;
    box-shadow: none;
}

.box.content h2.bg-blue {
    color: #063462;
}

img.bg-blue {
    background: transparent;
}

.main-activity .box .image img.bg-blue {
    background: transparent;
}

.jumbotron .offer.bg-blue {
    background: #9DD1FF;
    color: #063462;
    box-shadow: 20px 0 0 rgba(157, 209, 255, 1), -20px 0 0 rgba(157, 209, 255, 1);
}

.home-news .section-heading span.bg-blue {
    background: #9DD1FF;
}

.home-bottom-links.bg-blue {
    background: transparent;
}

.home-bottom-links h2.bg-blue span {
    padding: 5px;
}

.home-bottom-links h2+div.bg-blue {
    padding-top: 10px;
}

.home-bottom-links + footer.bg-blue {
    background: #9DD1FF;
}

.projects-grid .box .title.bvi {
    top: 50px;
    z-index: 10;
}

.projects-grid .box .title span.bvi {
    display: block;
    height: 3.6em;
    overflow: hidden;
}

.bvi .btn-more {
    width: initial;
}


/* Font size 16 */

p.font-size-16,
body.font-size-16,
.breadcrumb.font-size-16 {
    font-size: 16px;
}

body.font-size-16,
.file-input label div.font-size-16,
.breadcrumb.font-size-16,
.box.content.font-size-16,
.home-news .type.font-size-16,
.news-grid .box .caption.font-size-16,
.news-grid .box .bottom.font-size-16,
.partners-grid .box .caption.font-size-16,
.partners-grid .box .bottom.font-size-16,
.projects-grid .box.font-size-16,
.projects-grid .box .caption.font-size-16,
.executives-grid .box .name.font-size-16,
.contacts>.right .btn.font-size-16,
.corruption-buttons .box .caption.font-size-16 {
    font-size: 16px;
    line-height: 1.2;
}

h2.font-size-16,
.navbar-nav > li > a.font-size-16,
.navigation .nav-tabs > li > a.font-size-16,
.main-activity .box .caption.font-size-16,
.home-news .title.font-size-16,
.home-bottom-links a.font-size-16,
.news-grid .box h2.font-size-16,
.partners-grid .box h2.font-size-16,
.projects-grid .box .title span.font-size-16,
.about-us-buttons .btn.font-size-16,
footer.font-size-16,
footer a.font-size-16,
.footer-3 footer-phone.font-size-16 {
    font-size: 19px;
    line-height: 1.2;
}

.navbar-nav > li.bvi {
    width: calc(100% / 3 - 10px);
}

.navbar-nav > li > a.bvi {
    padding: 9px 0;
}

.main-activity .box.font-size-16 {
    height: 180px;
}


/* Font size 18 */

p.font-size-18,
body.font-size-18 {
    font-size: 18px;
}

.file-input label div.font-size-18,
.breadcrumb.font-size-18,
.box.content.font-size-18,
.home-news .type.font-size-18,
.news-grid .box .caption.font-size-18,
.news-grid .box .bottom.font-size-18,
.partners-grid .box .caption.font-size-18,
.partners-grid .box .bottom.font-size-18,
.projects-grid .box.font-size-18,
.projects-grid .box .caption.font-size-18,
.executives-grid .box .name.font-size-18,
.contacts>.right .btn.font-size-18,
.corruption-buttons .box .caption.font-size-18 {
    font-size: 18px;
    line-height: 1.2;
}

h2.font-size-18,
.navbar-nav > li > a.font-size-18,
.navigation .nav-tabs > li > a.font-size-18,
.main-activity .box .caption.font-size-18,
.home-news .title.font-size-18,
.home-bottom-links a.font-size-18,
.news-grid .box h2.font-size-18,
.partners-grid .box h2.font-size-18,
.projects-grid .box .title span.font-size-18,
.about-us-buttons .btn.font-size-18,
footer.font-size-18,
footer a.font-size-18,
.footer-3 footer-phone.font-size-18 {
    font-size: 22px;
    line-height: 1.2;
}

.main-activity .box.font-size-18 {
    height: 200px;
}

.about-us-buttons .btn.font-size-18 {
    display: inline-block;
    float: none;
    width: calc((100% - 150px) / 3);
}


/* Font size 20 */

p.font-size-20,
body.font-size-20 {
    font-size: 20px;
}

body.font-size-20,
.file-input label div.font-size-20,
.breadcrumb.font-size-20,
.box.content.font-size-20,
.home-news .type.font-size-20,
.news-grid .box .caption.font-size-20,
.news-grid .box .bottom.font-size-20,
.partners-grid .box .caption.font-size-20,
.partners-grid .box .bottom.font-size-20,
.projects-grid .box.font-size-20,
.projects-grid .box .caption.font-size-20,
.executives-grid .box .name.font-size-20,
.contacts>.right .btn.font-size-20,
.corruption-buttons .box .caption.font-size-20 {
    font-size: 20px;
    line-height: 1.2;
}

h2.font-size-20,
.navbar-nav > li > a.font-size-20,
.navigation .nav-tabs > li > a.font-size-20,
.main-activity .box .caption.font-size-20,
.home-news .title.font-size-20,
.home-bottom-links a.font-size-20,
.news-grid .box h2.font-size-20,
.partners-grid .box h2.font-size-20,
.projects-grid .box .title span.font-size-20,
.about-us-buttons .btn.font-size-20,
footer.font-size-20,
footer a.font-size-20,
.footer-3 footer-phone.font-size-20 {
    font-size: 24px;
    line-height: 1.2;
}

.main-activity .box.font-size-20 {
    height: 200px;
}

.about-us-buttons .btn.font-size-20 {
    display: inline-block;
    float: none;
    width: calc((100% - 150px) / 3);
}

.projects-grid .bvi-panel-img-not {
    display: none;
}


/*.footer-1.bvi +div {
    width: calc(100% - 200px);
}
.footer-2.bvi, .footer-3.bvi {
    width: 50%;
    clear: none;
    margin-top: 0;
}
.footer-4.bvi {
    clear: both;
}*/

.footer-1.bvi img {
    position: relative;
    top: 5px;
}

.footer-2.bvi {
    width: 220px;
}

.footer-3.bvi {
    width: 220px;
    clear: left;
    margin-top: 15px;
}

.footer-4.bvi {
    width: calc(100% - 500px);
}

@media (max-width: 992px) {
    .footer-4.bvi {
        width: calc(100% - 400px);
    }
}

span.error {
    position: absolute;
    bottom: 7px;
    color: red;
    left: 25px;
    font-size: 75%;
}

.panel-body .error {
    bottom: 10px;
}

.feedback-form .success {
    margin-top: 15px;
}

@media (max-width: 991px) {
    span.error {
        position: absolute;
        bottom: -15px;
        color: red;
        left: 25px;
        font-size: 75%;
    }
    .panel-body .error {
        bottom: -15px;
    }
    .panel-body .form-group.personal .error {
        bottom: 10px!important;
    }
    .form-group.personal {
        margin-bottom: 30px;
    }
    .fancybox-buttons {
        right: 0;
    }
}

.btn-more {
    clear: both;
}
#press h1 {
    text-align: left;
}
#press .row {
    text-align: center;
}
#press .links > .box-wrapper {
    display: inline-block;
    width: calc((100% - 360px) / 3);
    margin: 0 80px;
}
#press .links > .box-wrapper:nth-child(3n+1) {
    margin-left: 0;
}
#press .links > .box-wrapper:nth-child(3n) {
    margin-right: 0;
}
#press .links > .box-wrapper > .box {
    margin-bottom: 60px;
    box-shadow: 0px 3px 24.3px 2.7px rgba(0, 0, 0, 0.15);
}
#press .links .box:hover, #press .links .box:focus {
    box-shadow: 0px 3px 24.3px 2.7px rgba(0, 0, 0, 0.30);
}
#press .links > .box-wrapper .image {
    height: 102px;
    padding: 35px 0 12px;
}
#press .links > .box-wrapper .image img {
    width: 55px;
}
#press .links > .box-wrapper .caption {
    display: inline-block;
    border-bottom: 1px solid currentColor;
    font-size: 21px;
}
#press .contacts {
    display: inline-block;
    margin-top: 25px;
    width: calc(100% - 30px);
    padding: 25px 30px 50px;
    background: #fff;
    text-align: left;
}
#press .contacts .heading {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}
#press .contacts .column {
    display: inline-block;
    width: 275px;
    font-size: 15px;
}

#smi-list .box .image {
    line-height: 200px;
    margin-bottom: 50px;
}
#smi-list .box .image img {
    vertical-align: middle;
}
#smi-list .box-wrapper {
    position: relative;
}
#smi-list .box-wrapper .caption {
    position: absolute;
    top: 306px;
    left: 41px;
    border-bottom: 1px solid currentColor;
    font-size: 15px;
}
#articles-list .box {
    position: relative;
    min-height: initial;
    padding: 18px 50px;
    color: #9f9d9d;
    margin-bottom: 20px;
    box-shadow: 0px 15px 28px 0px rgba(0, 0, 0, 0.11);
}
#articles-list .box:before {
    content: url(/images/doc-link.png);
    position: absolute;
    top: 22px;
    left: 25px;
}
#articles-list .box > a {
    display: inline-block;
    color: #504f4f;
    font-size: 16px;
    border-bottom: 1px solid currentColor;
    margin-bottom: 5px;
}
.box.content .author-photos img {
    margin-top: 0;
}

#foto-video .image {
    width: 100%;
    padding-top: 10px;
    height: initial;
    margin-bottom: 0;
}
.event-grid .thumb {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 63%;
    background-position: center;
    background-size: cover;
    margin-bottom: 30px;
}
.event-grid .thumb:hover {
    opacity: .7;
}
.event-grid .thumb.video:after {
    content: url(../images/play-btn.png);
    position: absolute;
    top: 10px;
    right: 12px;
}
@media (max-width: 1299px) {
    #press .links > .box-wrapper {
        display: inline-block;
        width: calc((100% - 200px) / 3);
        margin: 0 40px;
    }
}
@media (max-width: 991px) {
    #press .links > .box-wrapper {
        display: inline-block;
        width: calc((100% - 120px) / 3);
        margin: 0 20px;
    }
    #press .links > .box-wrapper > .box {
        margin-bottom: 40px;
    }
    #press .links > .box-wrapper .caption {
        font-size: 18px;
    }
    #press .contacts .column {
        width: 33%;
    }
}
@media (max-width: 767px) {
    #press .box {
        height: 150px!important;
    }
    #press .links {
        font-size: 0;
    }
    #press .links > .box-wrapper {
        width: calc((100% - 60px) / 2);
        margin: 0 15px!important;
        min-width: 200px;
    }
    #press .contacts .column {
        width: 100%;
    }
    #smi-list .box-wrapper .caption {
        top: initial;
        bottom: 90px;
    }
    #articles-list .box > a {
        display: inline;
        line-height: 1.25;
        font-size: 14px;
    }
    #articles-list .box > a~span {
        display: inline-block;
        margin-top: 5px;
    }
     #press .links > .box-wrapper > .box {
        margin-bottom: 20px;
    }
    #press .contacts {
        margin-top: 35px;
    }
    .contacts>.right .btn {
        height: 74px;
    }
}
@media (max-width: 500px) {
    #press .links > .box-wrapper {
        width: calc((100% - 30px));
        margin: 0 15px!important;
    }
    #press .links > .box-wrapper > .box {
        margin-bottom: 20px;
    }
}
.recaptcha {
    position: relative;
    padding: 0 15px 25px;
}
.header-right img {
    height: 94px;
}
th p {
    background: gray;
    color: white;
    padding: 4px;
    font-size: 15px;
}
td{
   
    padding: 4px;
}