.wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Axiforma';
    font-weight: normal;
    font-style: normal;
    position: relative;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
}

.container {
    width: 100%;
    max-width: 1520px;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.fullSize {
    width: 100%;
}

.algItemCenter {
    align-items: center
}

.algItemStart {
    align-items: flex-start;
}

.algItemEnd {
    align-items: flex-end;
}

.justContCenter {
    justify-content: center;
}

.justContStart {
    justify-content: flex-start;
}

.justContBetween {
    justify-content: space-between;
}

.menuWrapper {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 620px;
    background-color: #01162F;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 20px 90px;
    z-index: 100;
    transition: all 0.5s ease;
    transform: translateX(620px);
}

.menuWrapper.menu-active {
    transform: translateX(0px);
}

.wrapper:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(1,22,47,0.3);
    z-index: 99;
    transition: all 0.5s ease;
    transform: translateX(100%);
}

.wrapper.body-active:before {
    transform: translateX(0px);
}

.header_burger_close {
    position: fixed;
    width: 31px;
    height: 31px;
    right: 90px;
    top: 80px;
    z-index: 90;
}

.header_burger_open_sticky {
    position: fixed;
    top: 80px;
    right: 80px;
    z-index: 80;
}

.header_burger_open {
    position: relative;
    width: 40px;
    height: 30px;
}

.menuWrapper__items {
    width: 100%;
    margin: 25px auto;
}

.menuWrapper__itemsName {
    width: 100%;
    display: block;
    color: #F2F2F2;
    font-size: 30px;
    letter-spacing: 0.83px;
    line-height: 50px;
    text-decoration: none;
    outline: none;
    padding: 5px 19px 0;
    transition: all 0.5s;
}

.menuWrapper__subItems {
    display: block;
    width: 100%;
}

.menuWrapper__subItemsName {
    color: #F2F2F2;
    font-size: 20px;
    line-height: 35px;
    width: calc(100% - 30px);
    display: block;
    text-decoration: none;
    outline: none;
    padding: 3px 15px 0;
    transition: all 0.5s;
    margin: 25px auto;
    margin-left: 30px;
}

.menuWrapper__itemsName:hover,
.menuWrapper__subItemsName:hover {
    background-color: #003266;
    color: #FF5A55;
    text-decoration: none;
}

.menuWrapper__list .menuWrapper__items:nth-child(2) .menuWrapper__itemsName:hover {
    background-color: inherit;
    color: #F2F2F2;
    text-decoration: none;
    cursor: default;
}

.header {
    display: flex;
    flex-direction: row;
    background: #fff;
    height: 80px;
    width: calc(100% - 160px);
    margin: 55px 80px;
}

.header.headerStatic .header_title {
    position: relative;
    color: #003266;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 60px;
    text-transform: uppercase;
    text-align: center;
}

.header.headerStatic .header_title:after {
    position: absolute;
    content: '';
    bottom: -10px;
    background: #FF5A55;
    height: 4px;
    border-radius: 4px;
    width: 120px;
    left: 50%;
    margin-left: -60px;
}

.header_logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

.contactArea {
    display: block;
    position: fixed;
    left: calc(50% - 110px);
    top: calc(100vh - 56px);
    height: 60px;
    width: 220px;
    z-index: 90;
}

.contactArea__button {
    display: block;
    width: 100%;
    color: #FFF !important;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 60px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #FF5A55;
}

.contactArea__button:hover,
.contactArea__button:focus {
    text-decoration: none;
}

.footer__item {
    height: 90px;
    line-height: 90px;
}

.footer__item.copyright {
    text-align: left;
    color: #B3B3B3;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer__item.privacy {
    text-align: right;
}

.footer__item.privacy a {
    color: #999 !important;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: underline;
}

.footer__item.privacy a {
    color: #999 !important;
}

.footer__item.privacy a:hover {
    text-decoration: none;
    color: #FF5A55 !important;
}

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

.sectionTitle:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -30px;
    width: 160px;
    background: #FF5A55;
    height: 4px;
    border-radius: 4px;
}

.sectionTitle.lineCenter:after {
    width: 120px;
    left: 50%;
    margin-left: -60px;
}

.sectionIconsText {
    padding: 55px 0 20px;
}

.sectionIconsText__item {
    flex-grow: 1;
    width: 29%;
    margin: 10px 2% 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    align-content: space-around;
    flex-wrap: nowrap;
    height: 200px;
    padding: 40px;
    border: 2px solid #E6E6E6;
}

.wrapParatransit .sectionIconsText__item {
    width: 42%;
    margin: 10px 4% 70px;
    padding: 40px 70px;
}

.sectionIconsText__itemIcon {
    flex: 0 0 100px;
    width: 100px;
    margin-right: 15px;
}

.sectionIconsText__itemIcon img {
    width: auto;
    max-width: 100%;
    height: 100%;
}

.sectionIconsText__itemText {
    width: auto;
    color: #333;
    font-size: 20px;
    letter-spacing: 0.7px;
    line-height: 32px;
}
