@import url("reset.css");
@font-face {
    font-family: 'gotham';
    src: url('../fonts/gotham/Gotham-Light.eot');
    src: url('../fonts/gotham/Gotham-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/gotham/Gotham-Light.woff2') format('woff2'), url('../fonts/gotham/Gotham-Light.woff') format('woff'), url('../fonts/gotham/Gotham-Light.ttf') format('truetype'), url('../fonts/gotham/Gotham-Light.svg#Gotham-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'gotham';
    src: url('../fonts/gotham/Gotham-Bold.eot');
    src: url('../fonts/gotham/Gotham-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/gotham/Gotham-Bold.woff2') format('woff2'), url('../fonts/gotham/Gotham-Bold.woff') format('woff'), url('../fonts/gotham/Gotham-Bold.ttf') format('truetype'), url('../fonts/gotham/Gotham-Bold.svg#Gotham-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'gotham';
    src: url('../fonts/gotham/Gotham-Black.eot');
    src: url('../fonts/gotham/Gotham-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/gotham/Gotham-Black.woff2') format('woff2'), url('../fonts/gotham/Gotham-Black.woff') format('woff'), url('../fonts/gotham/Gotham-Black.ttf') format('truetype'), url('../fonts/gotham/Gotham-Black.svg#Gotham-Black') format('svg');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'gotham';
    src: url('../fonts/gotham/Gotham-Medium.eot');
    src: url('../fonts/gotham/Gotham-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/gotham/Gotham-Medium.woff2') format('woff2'), url('../fonts/gotham/Gotham-Medium.woff') format('woff'), url('../fonts/gotham/Gotham-Medium.ttf') format('truetype'), url('../fonts/gotham/Gotham-Medium.svg#Gotham-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}


/*@import url("../fonts/circular/stylesheet.css");*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

b,
strong {
    font-weight: 600;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

a:focus,
a:visited,
a:active {
    text-decoration: none !important;
    outline: none !important;
}

button:focus,
button:visited,
button:active {
    outline: none;
}

input[type="submit"]:focus,
input[type="submit"]:visited,
input[type="submit"]:active {
    outline: none;
}

#show_on_map_link {
    display: block;
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-decoration: underline;
    letter-spacing: -0.1px;
    padding-top: 20px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.select2-dropdown {
    background-color: white;
    border: 4px solid #d8d9e3;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
    color: #282d5d;
    font-weight: 700;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #282d5d;
    color: white;
}

.nav-nr {
    color: #9397c1;
    /* font-family: "Circular Std - Black"; */
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    right: -16px;
    top: 4px;
}

.top-header {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 120px;
    -webkit-box-shadow: 0 -7px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 -7px 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 5;
}

.top-header .hamburger-menu {
    width: 40px;
    height: 40px;
    border: 3px solid #282d5d;
    margin-top: 25px;
    position: relative;
    z-index: 14;
}

.top-header .hamburger-menu .hamburger-inner {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer
}

.top-header .hamburger-menu .hamburger-inner:before {
    height: 3px;
    width: 20px;
    position: absolute;
    top: 10px;
    background-color: #282d5d;
    display: block;
    content: '';
    left: calc(50% - 10px);
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.top-header .hamburger-menu.active .hamburger-inner:before {
    top: 50%;
    left: calc(50% - 10px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.top-header .hamburger-menu.active .hamburger-inner:after {
    top: 50%;
    left: calc(50% - 10px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.top-header .hamburger-menu .hamburger-inner:after {
    display: block;
    content: '';
    height: 3px;
    width: 20px;
    position: absolute;
    bottom: 10px;
    background-color: #282d5d;
    left: calc(50% - 10px);
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.page-content {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.blured {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.main-menu.active {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30vw;
    opacity: 1;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    left: 0;
}

.main-menu {
    position: absolute;
    width: 0;
    background-color: white;
    left: -1000%;
    top: 0;
    height: 100%;
    padding-top: 120px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 12;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    opacity: 0;
}

.main-menu .bottom-wrap {
    padding-left: 40px;
}

.main-menu .bottom-wrap .lang-block a {
    color: #282d5d;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
}

.main-menu .bottom-wrap .lang-block {
    padding-bottom: 60px;
    position: relative;
}

.main-menu .bottom-wrap .lang-block .lang-selection {
    display: none;
}

.main-menu .bottom-wrap .lang-block .lang-selection.active {
    display: block;
    position: absolute;
    bottom: 0;
}

.main-menu .bottom-wrap .menu-adress-block .adress {
    color: #bebebe;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 50px;
}

.main-menu .bottom-wrap .menu-adress-block .mail a {
    color: #282d5d;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
}

.main-menu .bottom-wrap .menu-adress-block .mail {
    padding-bottom: 30px;
}

.top-header .social-block {
    margin-bottom: 30px;
}

.main-menu>ul li a {
    color: #282d5d;
    font-size: 55px;
    font-weight: 700;
    line-height: 55px;
    padding-left: 40px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: block;
}

.main-menu>ul li:hover a {
    color: white;
}

.main-menu>ul li:hover {
    background-color: #282d5d;
}

.main-menu>ul li {
    display: block;
    padding-bottom: 10px;
    padding-top: 5px;
    width: 100%;
    background-color: transparent;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.top-header .social-block .item .icon {
    width: 50px;
    height: 50px;
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.top-header .social-block .item {
    position: relative;
    cursor: pointer;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.top-header .social-block .item:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.top-header .social-block .item .item-link {
    position: absolute;
    left: 50px;
    bottom: 0;
    width: 0;
    opacity: 0;
    display: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.top-header .social-block .item .item-link ul li {
    height: 55px;
    padding: 0 55px;
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: white;
}

.search-box {
    background-color: #282d5d;
    position: absolute;
    left: 120px;
    top: -200%;
    height: 0;
    width: calc(100% - 120px);
    z-index: 1;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.search-box.active {
    height: 100vh;
    top: 0;
}

.search-box .close-btn {
    position: absolute;
    right: 100px;
    top: 50px;
    cursor: pointer;
}

.hover-button {
    border-radius: 0 30px;
    padding: 23px 80px;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    border: 2px solid transparent;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.hover-button.white {
    color: #282d5d;
    background-color: #ffffff;
    border: 2px solid white;
}

.hover-button.white:hover {
    color: white;
    background-color: #282d5d;
}

.search-box .close-btn span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    padding-right: 25px;
}

.search-box .close-btn img {
    vertical-align: middle;
}

.search-box-content {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

.search-box-content .subtitle {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    padding-bottom: 80px;
    text-align: center
}

.search-box-content .bigSearch::-webkit-input-placeholder {
    color: white;
}

.search-box-content .hover-button {
    margin-top: 80px;
}

.search-box-content .bigSearch {
    width: 100%;
    border: none;
    color: #ffffff;
    font-size: 58px;
    font-weight: 700;
    line-height: 58px;
    text-align: center;
    background: transparent;
    position: relative;
    border-bottom: 4px solid #eef2f5;
}

.top-header .social-block .item .item-link ul li a {
    color: #282d5d;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.top-header .social-block .item:hover .item-link {
    width: auto;
    opacity: 1;
    display: block;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.top-header .social-block .item .item-link:hover {
    width: auto;
    opacity: 1;
    display: block;
}

.page-content {
    padding-left: 120px;
}

.section-mainSlider {
    height: 100vh;
    position: relative;
}

.section-mainSlider .search-block {
    position: absolute;
    top: 30px;
    right: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 3;
}

.section-mainSlider .search-block .tel-block a {
    position: relative;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding-left: 46px;
    padding-right: 29px;
}

.section-mainSlider .search-block .tel-block:before {
    display: block;
    position: absolute;
    content: '';
    width: 21px;
    height: 21px;
    left: 0;
    top: calc(50% - 10px);
    background-image: url(../img/tel-ico.png);
}

.section-mainSlider .search-block .search-bar {
    cursor: pointer;
}

.section-mainSlider .search-block .search-bar .search__box {
    display: none;
}

.section-mainSlider .search-block .search-bar .search-icon {
    width: 71px;
    height: 63px;
    background-color: #ffffff;
    position: relative;
    display: block;
}

.section-mainSlider .search-block .search-bar .search-icon:before {
    display: block;
    position: absolute;
    content: '';
    width: 26px;
    height: 26px;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-image: url(../img/search-ico.png);
}

.section-mainSlider .logo-block {
    position: absolute;
    left: 100px;
    top: 200px;
    z-index: 3;
}

.section-mainSlider .mainSlider,
.section-mainSlider .mainSliderText {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.section-mainSlider .mainSlider .item,
.section-mainSlider .mainSliderText .item {
    width: 100%;
    height: 100%;
    position: relative;
    background-position: right top;
    background-repeat: no-repeat;
}

.section-mainSlider .mainSlider .item .slide-image {
    position: absolute;
    z-index: -1;
    width: 120%;
    height: 100%;
    background-size: cover;
}

.section-mainSlider .mainSliderText .item .slide-text {
    color: #ffffff;
    font-size: 6vw;
    font-weight: 700;
    line-height: 6.1vw;
    position: absolute;
    top: 50%;
    left: 0;
    margin-left: 100px;
    padding-left: 40px;
    z-index: 2;
    opacity: 1;
    overflow: hidden;
    padding-bottom: 10px;
}

.section-mainSlider .mainSliderText .item .slide-text span {
    display: block;
}

.section-mainSlider .mainSliderText .item .slide-text:before {
    display: block;
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    height: 90%;
    width: 6px;
    background-color: #ffffff;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main-layer {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.main-layer img {
    width: 100%;
    height: 100%;
}

.mainAbout {
    height: 100vh;
}

.mainAbout .mainAbout__textBlock {
    height: 60%;
    background-image: url(../img/about-bg.png);
    background-size: cover;
    background-position: center;
}

.mainAbout__textBlockLayer {
    background-color: rgba(40, 45, 93, 0.6)
}

.wrap {
    width: 1260px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.mainAbout .mainAbout__textBlock .wrap {
    height: 100%;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.mainAbout .mainAbout__counterBlock {
    height: 40%;
}

.mainAbout__textBlock .title h2 {
    color: #ffffff;
    font-size: 7vw;
    font-weight: 700;
    line-height: 55px;
    padding-top: 40px;
    /* padding-bottom: 100px; */
}

.mainAbout__textBlock .about-itemsBlock {
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mainAbout__textBlock .about-itemsBlock .item {
    width: 33%;
    text-align: center;
    padding: 0 15px;
}

.mainAbout__textBlock .about-itemsBlock .item .title {
    color: #ffffff;
    font-size: 2.5vw;
    font-weight: 700;
    padding-bottom: 30px;
}

.mainAbout__textBlock .about-itemsBlock .item .desc {
    color: #ffffff;
    font-size: 1vw;
    font-weight: 500;
    line-height: 1.1vw;
}

.about-link a {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    padding-right: 100px;
}

.about-link a:after {
    display: block;
    position: absolute;
    content: '';
    width: 49px;
    height: 23px;
    background-image: url(../img/arrow-r.png);
    background-size: contain;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.about-link a:hover:after {
    right: 0px;
}

.mainAbout__counterBlock {
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mainAbout__counterBlock .item {
    width: 25%;
    height: 100%;
    border-right: 1px solid #eaeaea;
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 30px;
}

.link-to-map {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-to-map .arrow-icon {
    max-width: 71px;
    margin: auto;
}

.link-to-map .icon {
    padding-bottom: 20px;
}

.link-to-map .title {
    color: #282d5d;
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: -0.17px;
    padding-bottom: 20px;
}

.mainAbout__counterBlock .item .count-number {
    color: #282d5d;
    font-size: 3vw;
    font-weight: 700;
    padding-bottom: 15px;
}

.mainAbout__counterBlock .item .desc {
    color: #282d5d;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    padding-bottom: 20px;
    text-align: center;
}

.mainAbout__counterBlock .item .icon {
    height: 215px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 25px;
    width: 100%;
    justify-content: center;
}

.mainAbout__counterBlock .item .icon img {
    max-height: 100;
}

.mainRecruit .title {
    color: #ffffff;
    font-size: 85px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 60px;
}

.mainRecruitCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(40, 45, 93, 0.6);
}

.mainRecruitCanvas img {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mainRecruitBlock .boxes .item a {
    width: 582px;
    height: 558px;
    border-radius: 0 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border: 5px solid #ffffff;
    margin: 0 20px;
    position: relative;
}

.mainRecruitBlock .boxes .item a:hover {
    background-color: #282d5d;
}

.mainRecruitBlock .boxes .item a:hover .icon,
.mainRecruitBlock .boxes .item a:hover .desc {
    display: block;
}

.mainRecruitBlock .boxes .item a:hover .arrow {
    display: none;
}

.mainRecruitBlock .boxes .item a:hover .desc {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    padding-left: 50px;
    padding-right: 50px;
}

.mainRecruitBlock .boxes .item a .recruit-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    height: 100%;
}

.mainRecruitBlock .boxes {
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mainRecruitBlock .boxes .item .icon,
.mainRecruitBlock .boxes .item .desc {
    display: none;
}

.mainRecruitBlock .boxes .item .arrow {
    position: absolute;
    bottom: 20%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mainRecruitBlock .boxes .item .title {
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    line-height: 55px;
    opacity: 1;
}

.mainSectors .title {
    color: #282d5d;
    font-size: 5.5vw;
    font-weight: 700;
    padding-bottom: 30px;
    padding-top: 60px;
    text-align: center;
}

.mainSectors .item {
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 43%;
    max-height: 43vh;
}

.mainSectors .item .photo {
    width: 50%;
    height: 100%;
    border-radius: 0 30px;
    overflow: hidden;
    background-color: #282d5d;
    opacity: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.mainSectors .item .photo:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.mainSectors .item .photo img {
    width: 100%;
    opacity: 0.8;
    max-height: 100%;
}

.mainSectors .item .text-block {
    width: 50%;
    height: 100%;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.mainSectors .item .text-block .textblock-title {
    color: #282d5d;
    font-size: 60px;
    font-weight: 700;
    line-height: 55px;
    padding-bottom: 30px;
    position: relative;
}

.mainSectors .item.right .text-block .textblock-title:before {
    display: block;
    position: absolute;
    content: '';
    width: 91px;
    height: 42px;
    background-image: url(../img/arrow-l-semicolor.png);
    left: -146px;
    top: 5px;
}

.mainSectors .item .text-block {
    padding: 10px 40px 10px 100px;
    opacity: 0;
}

.mainOffers .item .blue-box {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.mainOffers .item .blue-box:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.mainOffers .wrap .item-row.last .item.more:hover .image-arrow {
    left: 15px;
}

.mainSectors .item .text-block .desc {
    color: #212235;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
}

.mainSectors .item.left .text-block {
    padding: 10px 100px 10px 40px;
    text-align: right;
}

.mainSectors .item.left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: row-reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
}

.mainSectors .item.left .text-block .textblock-title:before {
    display: block;
    position: absolute;
    content: '';
    width: 91px;
    height: 42px;
    background-image: url(../img/arrow-r-semicolor.png);
    right: -146px;
    top: 5px;
}

.mainOffers .item {
    width: 50%;
    height: 33%;
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mainOffers .item .blue-box,
.mainOffers .item .white-box {
    width: 50%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
}

.mainOffers .wrap .item-row {
    height: 100%;
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mainOffers .item .blue-box {
    border-radius: 0 30px;
    background-color: #282d5d;
    width: 50%;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    padding: 50px;
    text-align: center;
}

.mainOffers .item .blue-box .title,
.mainOffers .item .blue-box .title a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 22.74px;
    padding-bottom: 15px;
}

.mainOffers .item .white-box {
    padding: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mainOffers .item .white-box .title a {
    color: #152443;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    padding-bottom: 20px;
    display: block;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.mainOffers .item .white-box .title a:hover {
    color: #8394b7
}

.mainOffers .item .white-box .desc {
    color: #212235;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    padding-bottom: 40px;
}

.mainOffers .item .white-box .location {
    position: relative;
    padding-left: 30px;
    color: #212235;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

.mainOffers .item .white-box .location:before {
    display: block;
    position: absolute;
    content: '';
    width: 13px;
    height: 18px;
    left: 0;
    top: 0;
    background-image: url(../img/location-pin.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.mainOffers .item.right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: row-reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
}

.mainOffers .item.first .bestjobtitle {
    color: #282d5d;
    font-size: 85px;
    font-weight: 700;
    line-height: 70px;
    padding-left: 50px;
}

.mainOffers .item.more {
    width: 25%;
}

.mainOffers .wrap .item-row.last {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.mainOffers .wrap .item-row.last .item.more .title {
    color: #282d5d;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    display: block;
    padding-bottom: 15px;
}

.mainOffers .wrap .item-row.last .item.more .image-arrow {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
    left: 0;
}

.footer .contact-head {
    height: 100%;
    text-align: center;
    background-color: rgba(40, 45, 93, 0.3);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer .contact-head-wrap {
    height: 30%;
    background-image: url(../img/contact.jpg);
    background-position: center right;
}

.footer .contact-head .title {
    color: #ffffff;
    font-size: 85px;
    font-weight: 700;
}

.mainRecruit {
    position: relative;
}

.footer .contact-content {
    height: 70%;
    background: #282d5d url(../img/footer-bg2.png) no-repeat right bottom;
    background-size: contain;
}

.contact-content .footer-header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-content .footer-header .envelope-img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.contact-content .footer-header:hover .envelope-img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.contact-content .footer-header .footer-arrow {
    position: relative;
    left: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.contact-content .footer-header:hover .footer-arrow {
    left: 20px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.contact-content .footer-header .footer-header-text {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 30.02px;
    text-align: right;
    padding-left: 65px;
    padding-right: 65px;
}

.contact-content .footer-header .footer-header-text a {
    color: #ffffff;
}

.footer-adresses-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-adresses-block .logo {
    padding-right: 140px;
}

.footer-adresses-block .block-adress {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: -webkit-fill-available;
}

.footer-adresses-block .block-adress .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.footer-adresses-block .block-adress .item .desc{
    width: 205px;
}
.footer-adresses-block .block-adress .item .title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    padding-right: 35px;
    padding-bottom: 3px;
    max-width: 750px;
}

.footer-adresses-block .block-adress .item .desc a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 30.08px;
}

.footer-menu {
    position: absolute;
    bottom: 0;
    padding-bottom: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    text-align: center;
    /* width: 100%; */
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.footer-menu .item {
    padding-left: 45px;
}

.footer-menu .item a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    white-space: nowrap;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
}

.footer-menu .item a:before {
    display: block;
    position: absolute;
    content: '';
    height: 1px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.footer-menu .item a:hover:before,
.footer-menu .item.active a:before {
    width: 100%;
}

.contact-content-wrap {
    height: 100%;
}

.contact-content-wrap .wrap {
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding-bottom: 60px;
    position: relative;
}

.subpage-header-main {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: left top;
}

.subpage-header-main-page {
    height: 460px;
    background-size: cover;
}

.subpage-header-main-page .top-header-block-wrap {
    position: relative;
    height: 260px;
}

.page-title-on-header .date {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 16px;
    padding-bottom: 25px;
}

.page-title-on-header {
    padding-top: 50px;
}

.page-title-on-header .title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
}

.subpage-header-main .search-block {
    position: absolute;
    top: 30px;
    right: 230px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 3;
}

.subpage-header-main .search-block .tel-block a {
    position: relative;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding-left: 46px;
    padding-right: 29px;
}

.subpage-header-main .search-block .tel-block:before {
    display: block;
    position: absolute;
    content: '';
    width: 21px;
    height: 21px;
    left: 0;
    top: calc(50% - 10px);
    background-image: url(../img/tel-ico.png);
}

.subpage-header-main .search-block .search-bar {
    cursor: pointer;
}

.subpage-header-main .search-block .search-bar .search__box {
    display: none;
}

.subpage-header-main .search-block .search-bar .search-icon {
    width: 71px;
    height: 63px;
    background-color: #ffffff;
    position: relative;
    display: block;
}

.subpage-header-main .search-block .search-bar .search-icon:before {
    display: block;
    position: absolute;
    content: '';
    width: 26px;
    height: 26px;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-image: url(../img/search-ico.png);
}

.subpage-header-main .logo-block {
    position: absolute;
    left: 50px;
    top: 50px;
}

.subpage-header-main .header-block .wrap {
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: center;
}

.subpage-header-main .header-block .subpage-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
}

.subpage-header-main .header-block .breadcrumbs {
    padding-top: 40px;
    padding-bottom: 50px;
}

.breadcrumbs ul li {
    display: inline-block;
}

.breadcrumbs ul li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    padding-right: 65px;
    position: relative;
}

.breadcrumbs ul li:last-child a {
    padding-right: 0;
    text-decoration: underline;
}

.breadcrumbs ul li a:after {
    display: block;
    position: absolute;
    content: '';
    width: 44px;
    height: 1px;
    background-color: #aaabc5;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.breadcrumbs ul li:last-child a:after {
    display: none;
}

.get-back-link {
    position: absolute;
    right: 15%;
    bottom: 15px;
}

.get-back-link a {
    color: #ffffff;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    padding-left: 70px;
}

.get-back-link a:before {
    position: absolute;
    display: block;
    content: '';
    width: 57px;
    height: 26px;
    left: 0;
    top: -3px;
    background-image: url(../img/arrow_back.svg);
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.get-back-link a:hover:before {
    left: -20px;
}

.login-page .title,
.register-page .title {
    color: #282d5d;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    padding-top: 60px;
    padding-bottom: 45px;
    text-align: center;
}

.register-page .title span {
    text-decoration: underline;
}

.login-page .login-block {
    background-color: #fafafa;
    padding-top: 50px;
    padding-bottom: 40px;
    padding-left: 25%;
    padding-right: 25%;
}

.login-page .input-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.login-page .form-groups {
    margin-left: 10px;
    margin-right: 10px;
}

.form-groups label {
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    padding-bottom: 15px;
    display: block;
}

.form-groups .forms-control {
    border: none;
    height: 40px;
    border-bottom: 4px solid #d8d9e3;
    color: #282d5d;
    font-family: Poppins;
    font-size: 22px;
    font-weight: 700;
    background-color: transparent;
    width: 100%;
}

.icheckbox_line-blue {
    position: relative;
    display: block;
    margin: 0 10px 0px 0;
    width: 22px;
    height: 22px;
    color: black;
    background-color: white;
    border: 3px solid #d8d9e3;
    border-radius: 5px;
    cursor: pointer;
    float: left;
    text-align: center;
}

.checkbox-box {
    margin: 0px 10px;
}

.login-page .checkbox-box {
    padding-top: 25px;
}

.forgot-link {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 20px;
}

.forgot-link a {
    color: #282d5d;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
}

.submit-button {
    text-align: center;
}

.submit-button input {
    border-radius: 0 30px;
    background-color: #282d5d;
    border: 3px solid #282d5d;
    padding: 30px 115px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.submit-button input:hover {
    background-color: #ffffff;
    color: #282d5d;
}

.login-page {
    padding-bottom: 150px;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: transparent;
}

.register-page-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.menu-left {
    width: 385px;
}

.register-page-block .register-page-content {
    width: calc(100% - 385px);
    padding-left: 40px;
}

.menu-left .menu-title {
    color: #282d5d;
    font-size: 26px;
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 65px;
}

.menu-left .menu-items .item .item-title {}

.menu-left .menu-items .item {
    position: relative;
    padding-left: 115px;
    padding-bottom: 65px;
}

.menu-left .menu-items .item:before {
    display: block;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.menu-left .menu-items .item.loop-ico:before {
    width: 75px;
    height: 75px;
    background-image: url(../img/axamo_rejestracja_1.svg);
}

.menu-left .menu-items .item.offer-ico:before {
    width: 75px;
    height: 75px;
    background-image: url(../img/axamo_rejestracja_2.svg);
}

.menu-left .menu-items .item .item-title {
    color: #282d5d;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    padding-bottom: 15px;
}

.menu-left .menu-items .item .item-desc {
    color: #212235;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

.menu-offer-item a {
    display: block;
    width: 100%;
    background-image: url(../img/offer-link-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 30px;
    text-align: center;
    color: white;
}

.menu-offer-item {
    padding-bottom: 50px;
}

.menu-offer-item a .offer-subtitle {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding-top: 55px;
    padding-bottom: 9px;
}

.menu-offer-item a .offer-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    padding-bottom: 90px;
    position: relative;
}

.menu-offer-item a .offer-title:after {
    display: block;
    position: absolute;
    content: '';
    width: 49px;
    height: 23px;
    left: calc(50% - 25px);
    bottom: 30px;
    background-image: url(../img/arrow-r.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.main-register-form .register-form-title {
    padding-bottom: 40px;
    color: #282d5d;
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
}

.grey-block {
    background-color: #fafafa;
    padding: 25px 40px;
}

.d-flex-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.d-flex-block .form-groups {
    margin-right: 15px;
}

.register-page-content .form-groups {
    padding-top: 25px;
}

.d-flex-block .form-groups {
    width: 49%
}

.form-groups.half {
    width: 49%;
    margin-right: 1%;
}

.inputfile+label {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
}

.inputfile-icon+label {
    color: #282d5d;
}

.inputfile-icon+label {
    padding: 0;
}

.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile-icon+label span {
    width: 300px;
    min-height: 54px;
    display: inline-block;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
    border-bottom: 4px solid #d8d9e3;
    line-height: 50px;
    padding: 0 5px;
}

.inputfile-icon+label strong {
    color: #f1e5e6;
    background-color: #d3394c;
    display: inline-block;
}

.inputfile-icon+label strong {
    padding: 20px 40px 20px 75px;
    position: relative;
    color: #ffffff;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 700;
}

.inputfile-icon+label strong {
    background-color: #282d5d;
    border-radius: 0 30px;
}

.box-input span.upload-label {
    padding-right: 10px;
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    vertical-align: super;
}

.main-register-form .box-input {
    margin-top: 50px;
}

.main-register-form {
    margin-bottom: 25px;
}

.inputfile-icon+label strong:before {
    display: block;
    position: absolute;
    content: '';
    width: 16px;
    height: 17px;
    left: 35px;
    top: 19px;
    background-repeat: no-repeat;
    background-size: contain;
}

.inputfile-icon.icon-sheet+label strong:before {
    background-image: url(../img/axamo_rejestracja_plik.svg);
}

.inputfile-icon.icon-files+label strong:before {
    background-image: url(../img/axamo_rejestracja_zalacznik.svg);
}

.more-files-block .files-title {
    color: #282d5d;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.more-files-block {
    margin-bottom: 25px;
}

.how-hear-you {
    margin-bottom: 25px;
}

.how-hear-you .register-form-title {
    color: #282d5d;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 50px;
}

.accept-profile {
    padding-top: 25px;
    margin-bottom: 150px;
}

.accept-profile .checkbox-box {
    margin-bottom: 50px;
}

.offer-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.offer-wrap .sliblings-menu {
    position: relative;
    width: 315px;
    top: -155px;
}

.offer-wrap .offer-content {
    width: calc(100% - 315px);
    margin-right: 45px;
}

.offer-wrap .offer-content ol li {
    display: list-item !important;
}

.offer-header {
    padding-top: 40px;
    padding-bottom: 28px;
    border-bottom: 4px solid #eef2f5;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
}

.offer-header .item .title {
    color: #282d5d;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    padding-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.offer-header .item .desc {
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    font-family: 'Poppins', sans-serif;
    margin-right: 30px;
}

.offer-header .item-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.offer-header .item .link a {
    display: block;
    padding: 13px 24px;
    background-color: #282d5d;
    border-radius: 0 25px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border: 1px solid #282d5d;
}

.offer-header .item .link a:hover {
    color: #282d5d;
    background-color: #ffffff;
}

.offer-header .item {
    margin-right: 45px;
}

strong,
b {
    font-weight: 700;
}

.text-title {
    color: #282d5d;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    padding-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.normal-text {
    color: #212235;
    font-family: 'gotham';
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
}

.page-offer ol,
.page-offer ul {
    list-style: initial;
    margin-left: 25px;
}

.download-files-block {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 4px solid #eef2f5;
    padding-bottom: 50px;
}

.download-files-block .title {
    font-family: 'Poppins', sans-serif;
    padding-bottom: 35px;
    color: #282d5d;
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
}

.download-files-block .item-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.download-files-block .item-wrap .item {
    margin-right: 60px;
    padding-left: 45px;
    position: relative;
}

.download-files-block .item-wrap .item:before {
    display: block;
    position: absolute;
    content: '';
    width: 23px;
    height: 27px;
    left: 0;
    top: 0;
    background-image: url(../img/svg/axamo_file.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.download-files-block .item-wrap .item a {
    display: block;
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    padding-bottom: 5px;
}

.download-files-block .item-wrap .item span {
    color: #282d5d;
    font-family: 'gotham';
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

.perfect-job-block .header-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 42px 40px 50px 50px;
    background-size: cover;
    background-image: url(../img/perfect-block-bg.png);
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.perfect-job-block .header-block .left .subtitle {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 5px;
}

.perfect-job-block .header-block .left .title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 29.74px;
}

.perfect-job-block .header-block .right a {
    display: block;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    padding: 22px 65px;
    border-radius: 0 30px;
    border: 3px solid #ffffff;
    background-color: transparent;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.perfect-job-block .header-block .right a:hover {
    background-color: #282d5d;
}

.perfect-job-content a {
    text-decoration: underline !important;
}

.perfect-job-content {
    padding-top: 75px;
    padding-bottom: 50px;
    border-bottom: 4px solid #eef2f5;
    margin-bottom: 40px;
}

.perfect-job-content,
.perfect-job-content a {
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
}

.similar-offer-block .title {
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 55px;
    padding-bottom: 45px;
}

.similar-offer-block .item {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 15px 40px 30px 45px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}

.similar-offer-block .item .content {
    margin-right: 60px;
}

.similar-offer-block .item .content .date {
    color: #aaabb9;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    padding-bottom: 20px;
}

.similar-offer-block .item .content .title {
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 25px;
    padding-bottom: 25px;
}

.similar-offer-block .item .content .location {
    color: #aaabb9;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    position: relative;
    padding-left: 30px;
}

.similar-offer-block .item .content .location:before {
    display: block;
    position: absolute;
    content: '';
    width: 13px;
    height: 18px;
    left: 0;
    top: 0;
    background-image: url(../img/svg/axamo_map_pin.svg);
}

.similar-offer-block .item .link a {
    display: block;
    padding: 13px 24px;
    background-color: #282d5d;
    border-radius: 0 25px;
    color: #ffffff;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border: 2px solid #282d5d;
}

.similar-offer-block .item .link a:hover {
    background-color: #ffffff;
    color: #282d5d;
}

.similar-offer-block .show-more-offers {
    padding-top: 45px;
    padding-bottom: 90px;
    text-align: center;
}

.similar-offer-block .show-more-offers a {
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 29.78px;
    position: relative;
    padding-right: 120px;
    display: inline-block;
    text-align: right;
}

.similar-offer-block .show-more-offers a:after {
    display: block;
    position: absolute;
    content: '';
    width: 91px;
    height: 42px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/svg/axamo_arrow0.svg);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.similar-offer-block .show-more-offers a:hover:after {
    right: -10px;
}

.sliblings-menu {
    background-color: #282d5d;
    border-radius: 0 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: center;
}

.phone-block input[type="text"] {
    width: 100%;
    height: 44px;
    padding-right: 53px;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid white;
    color: white;
}

.phone-block input[type="submit"] {
    margin-left: -53px;
    height: 44px;
    width: 53px;
    background-color: white;
    color: white;
    border: 0;
    position: relative;
    -webkit-appearance: none;
    background-image: url(../img/svg/axamo_arrow0.svg);
    background-size: 29px 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.phone-block .group {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.sliblings-menu .content-of-menu {
    padding: 35px 25px 55px 30px;
}

.sliblings-menu .content-of-menu .apply-link a {
    display: block;
    padding: 19px;
    width: 100%;
    border-radius: 0 30px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #282d5d;
}

.sliblings-menu .content-of-menu .social-media-block .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.sliblings-menu .content-of-menu .social-media-block .item .item-image {
    width: 100px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.sliblings-menu .content-of-menu .social-media-block .item:hover .item-image {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.sliblings-menu .content-of-menu .social-media-block .fb img {
    width: 18px;
    height: 29px;
}

.sliblings-menu .content-of-menu .social-media-block .ln img {
    width: 30px;
    height: 29px;
}

.sliblings-menu .content-of-menu .social-media-block .sf img {
    width: 27px;
    height: 27px;
}

.sliblings-menu .content-of-menu .social-media-block .item .item-link a {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

.sliblings-menu .content-of-menu .social-media-block {
    margin-top: 50px;
    margin-bottom: 15px;
}

.sliblings-menu .content-of-menu .phone-block {
    text-align: left;
}

.sliblings-menu .content-of-menu .phone-block label {
    text-align: left;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 15px;
}

.sliblings-menu-link a {
    display: block;
    text-align: center;
    padding-top: 55px;
    padding-bottom: 35px;
    background-size: cover;
    background-image: url(../img/offer-link-bg.png);
    position: relative;
    left: -1;
    bottom: -1;
    width: calc(100% + 2px);
}

.sliblings-menu-link a .image img {
    position: relative;
    left: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.lang-selectiona ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.lang-selectiona ul li a {
    color: grey !important;
}

.lang-selectiona ul li.active a {
    color: #282d5d !important;
}

.lang-selectiona ul li {
    padding-right: 15px;
}

.sliblings-menu-link a:hover .image img {
    left: 15px;
}

.sliblings-menu-link a .subtitle {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 10px;
}

.sliblings-menu-link a .title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    padding-bottom: 30px;
}

.sectorBlock {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 100px;
}

.sectorBlock .item.ts {
    width: 49%;
    background-image: url(../img/ts-bg.png);
    border-radius: 0 30px;
    background-size: cover !important;
    display: block;
    background-repeat: no-repeat !important;
}

.sectorBlock .item.ms {
    width: 49%;
    background-image: url(../img/ms-bg.png);
    border-radius: 0 30px;
    background-size: cover !important;
    display: block;
    background-repeat: no-repeat !important;
}

.sectorBlock .item a {
    padding: 40px 58px 50px 50px;
    border-radius: 0 30px;
    background-size: cover !important;
    display: block;
    background-repeat: no-repeat !important;
    background: rgba(40, 45, 93, 0.5);
    position: relative;
}

.sectorBlock .item a:hover:after {
    right: 25px;
}

.sectorBlock .item a:after {
    display: block;
    position: absolute;
    content: '';
    width: 49px;
    height: 23px;
    right: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/svg/axamo_arrow0_white.svg);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sectorBlock .item a .subtitle {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 13px;
}

.sectorBlock .item a .title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
}

.account-page .acc-header-block {
    padding-top: 65px;
    padding-bottom: 45px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.account-page .acc-header-block .last-login {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
}

.account-page .acc-header-block .acc-header-title {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    color: #282d5d;
    font-size: 38px;
    font-weight: 700;
    line-height: 45px;
    white-space: nowrap;
}

.account-page .acc-header-block .acc-header-title span {
    text-decoration: underline;
}

.account-page .acc-header-block .logout-block {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
}

.account-page .acc-header-block .logout-block a {
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    position: relative;
    padding-right: 38px;
}

.account-page .acc-header-block .logout-block a:after {
    display: block;
    position: absolute;
    content: '';
    width: 23px;
    height: 20px;
    right: 0;
    top: -1px;
    background-image: url(../img/svg/axamo_panel_logout.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.tabs-navi-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 75px;
}

.tabs-navi-block .item {
    padding-right: 7px;
    padding-left: 7px;
}

.tabs-navi-block .item a {
    padding: 22px 50px;
    border-radius: 0 30px;
    border: 4px solid #eef2f5;
    background-color: #ffffff;
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.tabs-navi-block .item.active a {
    color: #ffffff;
    border: 4px solid #282d5d;
    background-color: #282d5d;
}

.acc-offer-block {}

.acc-offer-block .acc-offer-header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.acc-offer-block .acc-offer-header .nr-of-offers {
    color: #282d5d;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
}

.acc-offer-block .acc-offer-header .clear-offers-block .clear-all-offers {
    width: 155px;
    text-align: center;
}

.acc-offer-block .acc-offer-header .clear-offers-block .clear-all-offers a {
    color: #282d5d;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: underline;
    padding-left: 45px;
}

.acc-offer-block .acc-offer-header .clear-offers-block .clear-all-offers a:before {
    display: block;
    position: absolute;
    content: '';
    width: 26px;
    height: 26px;
    left: 0;
    top: 0;
    background-image: url(../img/delete.png);
    background-repeat: no-repeat;
}

.acc-offer-block .acc-offer-header .clear-offers-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.acc-offer-block .acc-offer-header .clear-offers-block .delete-label {
    color: #282d5d;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    text-decoration: underline;
    width: 150px;
    text-align: center;
}

.acc-offer-header {
    padding-bottom: 35px;
}

.acc-offer-listing .item {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
}

.acc-offer-listing .item .offer-content {
    padding: 15px 50px 30px 45px;
}

.acc-offer-listing .item .offer-content .date {
    color: #aaabb9;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    padding-bottom: 10px;
}

.acc-offer-listing .item .offer-content .title a {
    display: block;
    color: #282d5d;
    font-size: 24px;
    font-weight: 700;
    line-height: 25px;
    padding-bottom: 25px;
}

.acc-offer-listing .item .offer-content .location {
    padding-left: 30px;
    position: relative;
    color: #aaabb9;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
}

.acc-offer-listing .item .offer-content .location:before {
    display: block;
    position: absolute;
    content: '';
    width: 13px;
    height: 18px;
    left: 0;
    top: 0;
    background-image: url(../img/svg/axamo_map_pin.svg);
}

.acc-offer-listing .item .offer-options {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.acc-offer-listing .item .offer-options .offer--link {
    width: 155px;
    text-align: center;
}

.acc-offer-listing .item .offer-options .offer--link a {
    display: block;
    padding: 13px 24px;
    background-color: #282d5d;
    border-radius: 0 25px;
    color: #ffffff;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.acc-offer-listing .item .offer-options .delete-offer {
    width: 155px;
    text-align: center;
}

.acc-offer-listing .item .offer-options .delete-offer img {
    width: 26px;
    height: 26px;
}

.acc-offer-listing {
    padding-bottom: 150px;
}

.acc-profile-detail .section-header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.acc-profile-detail .section-header .header-image {
    width: 135px;
    text-align: center;
}

.acc-profile-detail .section-header.contact-detail .header-image img {
    width: 59px;
    height: 76px;
}

.acc-profile-detail .section-header .title {
    color: #282d5d;
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
}

.acc-profile-detail .section-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.acc-profile-detail .section-block .left,
.acc-profile-detail .section-block .right {
    width: 49%;
    margin-right: 1%;
}

.section-block .form-groups {
    margin-bottom: 30px;
}

.section-block .d-flex-block .form-groups {
    margin-bottom: 0;
}

.section-block .d-flex-block .form-groups {
    width: 49%;
    margin-right: 15px;
}

.acc-profile-detail .section-header.y-profile .header-image img {
    width: 69px;
    height: 79px;
}

.select-normal+.select2 {
    width: 100% !important;
    height: 40px !important;
    border: none;
    border-bottom: 4px solid #d8d9e3;
    color: #282d5d;
    font-family: Poppins;
    font-size: 22px;
    font-weight: 700;
    background-color: transparent;
    position: relative;
}

.select-normal+.select2:after {
    display: block;
    position: absolute;
    content: '';
    background-image: url(../img/arrow-select.png);
    width: 11px;
    height: 7px;
    right: 0;
    top: 13px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.select-normal+.select2-container--open:after {
    display: block;
    position: absolute;
    content: '';
    background-image: url(../img/arrow-select.png);
    width: 11px;
    height: 7px;
    right: 0;
    top: 13px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #282d5d;
}

.select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
    border-radius: 4px;
    outline: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single:focus,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple:focus {
    outline: 0 !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered:focus,
.select2-container--focus {
    outline: 0;
}

.section-block .section-block-label {
    color: #282d5d;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 40px;
}

.aditional-qualification-block textarea {
    height: 200px;
    width: 100%;
    border: none;
    background-color: transparent;
}

.submit-block {
    margin-top: 40px;
    margin-bottom: 60px;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.submit-block input {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    padding: 30px 103px;
    border-radius: 0 30px;
    background-color: #282d5d;
    border: 2px solid #282d5d;
    margin-left: 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.submit-block input:hover {
    background-color: #ffffff;
    color: #282d5d;
}

.submit-block.password input {
    padding: 30px 40px;
}

.survey-list .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 4px solid #eef2f5;
    padding: 30px 0;
}

.survey-list .item .item-label {
    width: calc(100% - 470px);
    padding-right: 30px;
    text-align: right;
    color: #282d5d;
    font-size: 26px;
    font-weight: 700;
    line-height: 42px;
}

.survey-list .item .item-content {
    width: 470px;
}

.survey-list .item .item-content .select-group {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.survey-list .item .item-content .select-group .checkbox-box {
    margin-right: 50px;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

.noUi-horizontal {
    height: 4px;
}

.noUi-horizontal .noUi-handle {
    width: 14px;
    height: 15px;
    border: 2px solid #282d5d;
    background-color: #ffffff;
    border-radius: 100%;
    left: 0;
}

.noUi-connect {
    background-color: #282d5d;
}

.noUi-target {
    border: none;
    background-color: #eef2f5;
}

#input-log {
    width: 101px;
    height: 47px;
    border-radius: 5px;
    border: 2px solid #e5e5e5;
    background-color: #ffffff;
    text-align: center;
    float: right;
}

.range-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#slider {
    width: calc(100% - 120px);
}

#input-log {
    width: 101px;
    height: 47px;
    border-radius: 5px;
    border: 2px solid #e5e5e5;
    background-color: #ffffff;
    text-align: center;
    float: right;
}

.survey-list .item .item-content .d-flex-block {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 100%;
    background: white;
    opacity: 1;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: transparent;
    width: 15px;
    height: 15px;
    border: 2px solid #ffffff;
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -15px;
    color: black;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
    background-color: white;
    color: #282d5d;
    /* font-family: "Circular Std - Black"; */
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    padding: 15px 30px;
}

#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 0;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    margin-top: 10px !important;
    height: 100vh;
}

#fp-nav ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    height: 100%;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

#fp-nav ul:after {
    display: block;
    position: absolute;
    content: '';
    height: 100%;
    width: 1px;
    background-color: #bdbdbd;
    right: 11px;
    top: 0;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    width: 9px;
    height: 9px;
    border: 2px solid #ffffff;
    background-color: #727591;
}

#fp-nav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li a.active span,
.fp-slidesNav ul li:hover a.active span {
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -3px;
    border-radius: 100%;
    right: 7px;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -3px;
}

.forClient .forClient-page-title h2 {
    text-align: center;
    color: #282d5d;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
}

.forClient .forClient-page-title h2 span {
    text-decoration: underline;
}

.forClient .forClient-page-title {
    padding: 60px 0;
}

.forClient-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.left-menu-block {
    width: 380px;
    position: relative;
    background-color: #282d5d;
    border-radius: 0 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: center;
}

.left-menu-block .left-menu-content .link-list .item a.main-link {
    color: #ffffff;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
}

.left-menu-block .left-menu-content .link-list .item {
    padding: 15px 0;
    border-bottom: 1px solid #3e426f;
}

.left-menu-block .left-menu-content .link-list .item:last-child {
    border-bottom: none;
}

.left-menu-block .left-menu-content .link-list {
    padding: 15px 40px;
}

.left-menu-block .left-menu-content .link-list .item {
    text-align: left;
}

.link-list .item .list-submenu li a {
    color: #ffffff;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
}

.link-list .item .list-submenu li {
    padding-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.link-list .item .list-submenu li.active:before {
    display: block;
    position: absolute;
    content: '';
    width: 17px;
    height: 8px;
    left: 0;
    top: 5px;
    background-image: url(../img/svg/axamo_arrow0_white.svg);
    background-size: contain;
}

.link-list .item .list-submenu {
    padding-top: 20px;
    padding-bottom: 10px;
}

.forClient-section .forClient-featuredImage {
    padding-bottom: 35px;
}

.forClient-section .forClient-featuredImage {
    width: 100%;
}

.forClient-section .forClient-featuredImage img {
    width: 100%;
}

.forClient-section .title {
    color: #282d5d;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    padding-bottom: 30px;
}

.forClient-section .adventage-list .item {
    padding-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.forClient-section .adventage-list .item .title {
    color: #282d5d;
    font-size: 25px;
    font-weight: 600;
    line-height: 25px;
    padding-bottom: 10px;
}

.forClient-section .adventage-list .item:before {
    display: block;
    position: absolute;
    content: '';
    width: 29px;
    height: 13px;
    left: 0;
    top: 5px;
    background-image: url(../img/svg/axamo_arrow0.svg);
}

.forClient-section .adventage-list .item .desc {
    color: #212235;
    font-family: 'gotham';
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
}

.forClient-wrap .forClient-page-content {
    width: calc(100% - 380px);
    padding-left: 40px;
}

.forClient-section .adventage-list .item .icon-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.forClient-section .quota-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 45px;
    padding-bottom: 45px;
    border-top: 4px solid #eef2f5;
    border-bottom: 4px solid #eef2f5;
    margin-bottom: 50px;
    color: #282d5d;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.forClient-section .quota-block p {
    position: relative;
    padding-left: 70px;
}

.forClient-section .quota-block p:before {
    display: block;
    position: absolute;
    content: '';
    width: 41px;
    height: 32px;
    left: 0;
    top: 0;
    background-image: url(../img/quota.png);
}

.forClient-section .quota-block .quota-sign {
    padding-top: 3px;
}

.forClient-section .quota-block .quota-text {
    padding-left: 40px;
    color: #282d5d;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.forClient-section .subtitle {
    color: #282d5d;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

body {
    counter-reset: item;
}

.page-content ol li {
    color: #212235;
    font-family: 'gotham';
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    padding-bottom: 20px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

ul.adventage-list-ul li {
    padding-bottom: 30px;
    padding-left: 60px;
    position: relative;
    color: #212235;
    font-family: 'gotham';
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
}

ul.adventage-list-ul li .adventage-header {
    color: #282d5d;
    font-size: 25px;
    font-weight: 600;
    line-height: 25px;
    padding-bottom: 10px;
    display: block;
}

ul.adventage-list-ul li.adventage-header {
    color: #282d5d;
    font-size: 25px;
    font-weight: 600;
    line-height: 25px;
    padding-bottom: 10px;
    display: block;
}

ul.adventage-list-ul li:before {
    display: block;
    position: absolute;
    content: '';
    width: 29px;
    height: 13px;
    left: 0;
    top: 5px;
    background-image: url(../img/svg/axamo_arrow0.svg);
}

.forClient-section ol li:before {
    counter-increment: item;
    margin-right: 10px;
    content: counters(item, ".") " ";
    color: #282d5d;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    width: 1.2em;
    display: block;
    top: -3px;
    position: relative;
}

.forClient-section ol {
    padding-top: 45px;
    padding-bottom: 45px;
}

.d-flex-block.f-width .form-groups {
    width: 98%;
}

.message-block .d-flex-block {
    margin-bottom: 25px;
}

.offer-detail-map {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.map-left-side {
    width: 30%;
    padding: 70px;
}

.offer-detail-map .map-right-side {
    width: 70%;
}

.offer-detail-map .map-left-side .title {
    color: #282d5d;
    font-size: 38px;
    font-weight: 700;
    line-height: 40px;
    padding-bottom: 35px
}

.recomend-list .item {
    position: relative;
    padding-left: 90px;
}

.recomend-list .item:before {
    display: block;
    position: absolute;
    content: '';
    width: 48px;
    height: 38px;
    background-image: url(../img/cytat.png);
    left: 0px;
    top: 45px;
}

.pagi-prev-next {
    padding: 0 !important;
    display: block;
    color: #282d5d !important;
    font-size: 25px !important;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.17px;
    padding-bottom: 35px !important;
    position: relative !important;
    padding: 30px 15px !important;
    padding-top: 0 !important;
}

.pagi-prev-next:before {
    display: block;
    position: absolute;
    content: '';
    width: 37px;
    height: 17px;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
}

.pagination>li>a,
.pagination>li>span {
    border: none;
}

.pagi-prev-next.prev:before {
    background-image: url(../img/pagi-prev.png);
    right: 17px;
}

.pagi-prev-next.next:before {
    background-image: url('../img/pagi-next.png');
    left: 15px;
}

.offer-detail-map .map-left-side .localisation {
    color: #282d5d;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 50px;
}

.gallery-row a img {
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.gallery-row a:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.nextPageUrl {
    padding: 0 !important;
}

.gal-title {
    color: #282d5d;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    letter-spacing: -0.27px;
}

.thumbnail {
    border: none;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 2;
    color: #23527c;
    background-color: transparent;
    border-color: transparent;
}

.req-checkbox {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 15px;
    margin-top: 15px;
}

.req-checkbox label {
    padding-left: 15px;
    color: #282d5d;
    font-size: 14px;
    font-weight: 500;
    line-height: 15px;
}
.req-checkbox label span a{
    color: #282d5d;
}
.icheckbox_line-blue {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    text-decoration: none;
    background-color: #fff;
    color: #282d5d;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    background-color: #282d5d;
}

.pagination {
    margin: 0 auto;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.offer-detail-map .map-left-side .map-info-block {
    color: #282d5d;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    padding-bottom: 100px;
    position: relative;
    padding-left: 40px;
}

.offer-detail-map .map-left-side .map-info-block:before {
    display: block;
    position: absolute;
    content: '';
    width: 22px;
    height: 22px;
    left: 0;
    top: 3px;
    background-image: url(../img/info-ico.png);
    background-repeat: no-repeat;
}

.offer-detail-map .map-left-side .back-to-offer-list a {
    color: #282d5d;
    font-size: 26px;
    font-weight: 700;
    line-height: 29.78px;
    padding-left: 110px;
    position: relative;
    display: block;
}

.offer-detail-map .map-left-side .back-to-offer-list a:before {
    display: block;
    position: absolute;
    content: '';
    background-image: url(../img/svg/axamo_arrow_back_blue.svg);
    width: 91px;
    height: 42px;
    left: 0;
    top: 7px;
    background-repeat: no-repeat;
}

#map-offer-detail {
    height: 800px;
}

.contact-page-form textarea {
    height: 200px !important;
}

.form-groups .forms-control:focus,
.form-groups .forms-control:active,
.form-groups .forms-control:visited {
    outline: none;
}

.req-label {
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    padding-left: 40px;
    padding-top: 35px;
    padding-bottom: 40px;
}

.submit-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.submit-wrap button {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    padding: 27px 103px;
    border-radius: 0 30px;
    background-color: #282d5d;
    border: 2px solid #282d5d;
    margin-left: 30px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.submit-wrap button:hover {
    color: #282d5d;
    background-color: #ffffff;
}

.contact-page-form {
    padding-bottom: 100px;
}

.menu-left-contact .contact-page-adress {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.menu-left-contact .contact-page-adress .adress-ico {}

.menu-left-contact .contact-page-adress .adres-contact-pad {
    padding-left: 50px;
}

.menu-left-contact .contact-page-adress .adres-content .city {
    color: #282d5d;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    padding-bottom: 20px;
}

.menu-left-contact .contact-page-adress .adres-content .adres {
    color: #212235;
    font-family: 'gotham';
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    padding-bottom: 35px;
}

.menu-left-contact .contact-page-adress .adres-content .mail a {
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    padding-bottom: 30px;
    display: block;
}

.menu-left-contact .contact-page-adress .adres-content .telephone {
    color: #282d5d;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    padding-bottom: 15px;
}

.menu-left-contact .contact-page-adress .adres-contact-wrap {
    padding-bottom: 80px;
}

.menu-left-contact .contact-page-adress .adres-form-links .title {
    color: #282d5d;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    padding-top: 0;
    padding-bottom: 25px;
}

.menu-left-contact .contact-page-adress .adres-form-links .adres-link a {
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    padding: 25px 50px;
    border-radius: 0 30px;
    border: 4px solid #eef2f5;
    background-color: #ffffff;
    display: block;
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.menu-left-contact .contact-page-adress .adres-form-links .adres-link a:hover {
    background-color: #282d5d;
    color: #ffffff;
}

.search-engine-page .title {
    color: #282d5d;
    font-size: 36px;
    font-weight: 700;
    line-height: 45px;
    padding-top: 60px;
    padding-bottom: 45px;
    text-align: center;
    letter-spacing: -0.88px;
}

.search-engine-page .title span {
    text-decoration: underline;
}

.search-engine-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 100px;
}

.search-engine-wrap .search-engine-block {
    width: 82%;
}

.search-engine-wrap .list-options {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.search-engine-wrap .search-engine-block .item {
    width: 32%;
    margin-right: 1%;
}

.search-engine-wrap .search-engine-block .item:nth-child(3) {
    width: 166px;
}

.search-engine-wrap .search-ico-links {
    width: 18%;
}

.search-engine-wrap .form-groups .forms-control {
    font-size: 15px;
    letter-spacing: -0.12px;
}

.search-engine-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 15px;
    letter-spacing: -0.12px;
}

.search-ico-links {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.search-ico-links a {
    display: block;
    border-radius: 0 30px;
    padding: 32px 25px 40px 28px;
    width: 100%;
    margin-right: 5%;
    background-size: cover;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.search-ico-links a .small-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.13px;
    padding-bottom: 25px;
}

.search-ico-links a .big-text {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.18px;
    padding-bottom: 45px;
}

.search-ico-links a .arrow-white {
    width: 49px;
    height: 23px;
    position: relative;
    left: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.search-ico-links a:hover .arrow-white {
    left: 10px;
}

.search-engine-wrap .search-engine-block .item .item-link a {
    display: block;
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-decoration: underline;
    letter-spacing: -0.1px;
    padding-top: 20px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.search-engine-wrap .search-engine-block .item .item-link a:hover {
    color: #8394b7;
}

.search-engine-wrap .search-engine-block .result-search-btns {
    padding-top: 50px;
    text-align: right;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.search-engine-wrap .search-engine-block .result-search-btns .search-trigger {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.12px;
    border-radius: 0 30px;
    background-color: #282d5d;
    padding: 20px 80px;
    border: 2px solid #282d5d;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.search-engine-wrap .search-engine-block .result-search-btns .search-trigger:hover {
    color: #282d5d;
    background-color: #ffffff;
}

.search-engine-wrap .search-engine-block .result-search-btns .reset-filter {
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.1px;
    background-color: transparent;
    border: none;
    padding: 20px 20px 20px 70px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.search-engine-wrap .search-engine-block .result-search-btns .reset-filter:hover {
    color: #8394b7;
}

.search-engine-wrap .search-engine-block .result-search-btns .reset-filter:before {
    display: block;
    position: absolute;
    content: '';
    width: 24px;
    height: 25px;
    background-image: url(../img/arrow-reset.png);
    background-repeat: no-repeat;
    background-size: contain;
    left: 30px;
    top: 16px;
}

.search-engine-page .listResultOfferSearch .countOfOffers {
    color: #282d5d;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.12px;
    padding-bottom: 40px;
    text-align: center;
}

.search-engine-page .listResultOfferSearch .listResult {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-bottom: 55px;
}

.search-engine-page .listResultOfferSearch .listResult .item {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 18px 45px 30px 45px;
    width: 31%;
    margin-bottom: 2%;
    margin-right: 2%;
}

.search-engine-page .listResultOfferSearch .listResult .item .date {
    color: #aaabb9;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.56px;
    padding-bottom: 20px;
}

.search-engine-page .listResultOfferSearch .listResult .item .title {
    color: #282d5d;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: -0.77px;
    padding: 0;
    padding-bottom: 43px;
    text-align: left;
    min-height: 100px;
}

.search-engine-page .listResultOfferSearch .listResult .item .city {
    color: #aaabb9;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: -0.48px;
    padding-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.search-engine-page .listResultOfferSearch .listResult .item .city:before {
    display: block;
    position: absolute;
    content: '';
    width: 13px;
    height: 18px;
    left: 0;
    top: -3px;
    background-image: url(../img/svg/axamo_map_pin.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.search-engine-page .listResultOfferSearch .listResult .item .sallary {
    color: #aaabb9;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: -0.48px;
    padding-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.search-engine-page .listResultOfferSearch .listResult .item .sallary:before {
    display: block;
    position: absolute;
    content: '';
    width: 13px;
    height: 18px;
    left: 0;
    top: -3px;
    background-image: url(../img/coins.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.search-engine-page .listResultOfferSearch .listResult .item .sallary:before {
    opacity: 0;
}

.search-engine-page .listResultOfferSearch .listResult .item .offer-link {
    display: inline-block;
    background-color: #282d5d;
    border-radius: 0 30px;
    padding: 18px 48px;
    border: 2px solid #282d5d;
    color: #ffffff;
    font-family: Poppins;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: -0.08px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.search-engine-page .listResultOfferSearch .listResult .item .offer-link:hover {
    background-color: white;
}

.search-engine-page .listResultOfferSearch .listResult .item .offer-link a {
    color: white;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.search-engine-page .listResultOfferSearch .listResult .item .offer-link:hover a {
    color: #282d5d;
}

.search-engine-page .listResultOfferSearch .show-more-link {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 115px;
}

.search-engine-page .listResultOfferSearch .show-more-link a {
    color: #282d5d;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.21px;
    padding-right: 70px;
    position: relative;
    display: inline-block;
}

.search-engine-page .listResultOfferSearch .show-more-link a:after {
    display: block;
    position: absolute;
    content: '';
    width: 49px;
    height: 23px;
    background-repeat: no-repeat;
    background-image: url(../img/svg/axamo_arrow0.svg);
    background-size: contain;
    right: 0;
    top: 3px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.search-engine-page .listResultOfferSearch .show-more-link a:hover:after {
    right: -10px;
}

.forCandidates-page-title {
    color: #282d5d;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.27px;
    text-align: center;
    padding: 60px 0;
}

.forCandidates .forClient-wrap {
    padding-bottom: 170px;
}

.forCandidate2-content .big-text {
    color: #282d5d;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.27px;
    padding-top: 80px;
    padding-bottom: 75px;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
}

.forCandidate2-content .sector-block {
    padding-top: 110px;
    padding-bottom: 150px;
    background-size: cover;
    background-position: center;
}

.forCandidate2-content .sector-block .wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.forCandidate2-content .sector-block .item {
    margin-left: 20px;
    margin-right: 20px;
    width: 48%;
}

.forCandidate2-content .sector-block .item a {
    border-radius: 0 30px;
    border: 5px solid #ffffff;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    color: white;
    padding: 35px 35px;
    min-height: 390px;
    text-align: center;
}

.forCandidate2-content .sector-block .item a:hover {
    background-color: #282d5d;
    border: 5px solid #282d5d;
}

.forCandidate2-content .sector-block .item a .item-name {
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: -0.24px;
}

.forCandidate2-content .sector-block .item a .item-link .text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.22px;
    padding-top: 80px;
}

.forCandidate2-content .sector-block .item a .item-link .arrow {
    width: 49px;
    height: 23px;
    padding-top: 20px;
    margin: 0 auto;
    position: relative;
    left: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.forCandidate2-content .sector-block .item a:hover .item-link .arrow {
    width: 49px;
    height: 23px;
    padding-top: 20px;
    margin: 0 auto;
    left: 10px;
}

.recomendation-block {
    max-width: 1030px;
    margin: 0 auto;
}

.recomendation-block .title {
    color: #282d5d;
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -0.34px;
    text-align: center;
    padding-bottom: 55px;
}

.recomendation-block .recomendation-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 50px;
}

.recomendation-block .recomendation-list .item {
    border-radius: 0 30px;
    border: 3px solid #eff0f2;
    position: relative;
    width: 30%;
    margin-right: 3%;
    padding: 40px;
    min-height: 240px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.recomendation-block .recomendation-list .item:after {
    display: block;
    position: absolute;
    content: '';
    width: 48px;
    height: 38px;
    background-image: url(../img/cytat.png);
    left: 40px;
    top: -21px;
}

.recomendation-block .recomendation-list .item .content {
    color: #282d5d;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.22px;
}

.recomendation-block .recomendation-list .item .author {
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.22px;
    padding-top: 10px;
}

.recomendation-block .recomendation-link {
    text-align: center;
    padding-bottom: 100px;
}

.recomendation-block .recomendation-link a {
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 29.78px;
    position: relative;
    padding-right: 120px;
    display: inline-block;
    text-align: right;
}

.recomendation-block .recomendation-link a:after {
    display: block;
    position: absolute;
    content: '';
    width: 91px;
    height: 42px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/svg/axamo_arrow0.svg);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.recomendation-block .recomendation-link a:hover:after {
    right: -10px;
}

.blue-text-block {
    text-align: center;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.27px;
    padding: 75px;
    padding-bottom: 90px;
    background-color: #292d5d;
    margin-bottom: 100px;
}

#map-offer-list {
    height: 800px;
}

.list-map-offers {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.list-map-offers .map-left-side .title {
    color: #282d5d;
    font-size: 38px;
    font-weight: 900;
    line-height: 40px;
    padding-bottom: 35px;
}

.list-map-offers .list-of-categories .item a {
    color: #282d5d;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    padding: 18px 50px;
    border-radius: 0 30px;
    border: 2px solid #eef2f5;
    display: inline-block;
    width: 150px;
    text-align: center;
    margin-bottom: 15px;
}

.list-map-offers .list-of-categories {
    padding-top: 50px;
}

.list-map-offers .list-of-categories .item.active a {
    background-color: #282d5d;
    border: 2px solid #282d5d;
    color: #ffffff;
}

.markerLabelClass {
    width: 45px;
    height: 30px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #282d5d;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: -1;
}

.search-result-header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 40px;
    border-bottom: 5px solid #eef2f5;
    font-family: 'Poppins', sans-serif;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.search-result-header .content {
    padding-left: 110px;
    position: relative;
}

.search-result-header .content:before {
    display: block;
    position: absolute;
    content: '';
    width: 61px;
    height: 60px;
    left: 0;
    top: 0;
    background-image: url('../img/lupka.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.search-result-header .content .title {
    color: #282d5d;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.27px;
}

.search-result-header .content .keyword {
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.1px;
}

.search-result-header .quant-search {
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.1px;
}

.search-page-result .search-listing {
    padding-top: 40px;
    padding-bottom: 100px;
}

.search-page-result .search-listing .item {
    margin-bottom: 40px;
    position: relative;
    padding-left: 85px;
}

.search-page-result .search-listing .item:before {
    display: block;
    position: absolute;
    content: '';
    width: 29px;
    height: 13px;
    left: 0;
    top: 16px;
    background-image: url('../img/search-arrow.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.search-page-result .search-listing .item .item-link {
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.16px;
    padding-bottom: 5px;
}

.search-page-result .search-listing .item .item-url {
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.1px;
    padding-bottom: 15px;
}

.search-page-result .search-listing .item .item-desc {
    color: #212235;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

.default-page .page-title {
    color: #282d5d;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.27px;
    padding-top: 60px;
    padding-bottom: 80px;
    text-align: center;
}

.default-page-main-image {
    width: 100%;
    margin-bottom: 45px;
}

.default-page-main-image img {
    width: 100%;
}

.main-text-title {
    color: #282d5d;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.18px;
    padding-bottom: 35px;
    padding-top: 50px;
}

.text-page-photo {
    margin-top: 80px;
    margin-bottom: 80px;
}

.page-recomedation .big-text {
    color: #282d5d;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.27px;
    text-align: center;
    padding-bottom: 70px;
    padding-top: 70px;
}

.recommend-block .recomend-list .item {
    border-top: 4px solid #eef2f5;
    padding-top: 45px;
    padding-bottom: 35px;
}

.recommend-block .recomend-list .item .recomend-title {
    color: #282d5d;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.14px;
    padding-bottom: 25px;
}

.recommend-block .recomend-list .item .recomend-content {
    color: #212235;
    font-family: 'gotham';
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    padding-bottom: 25px;
}

.recommend-block .recomend-list .item .author {
    color: #282d5d;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    /* Text style for "Marta – Pi" */
    letter-spacing: -0.1px;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: .2;
        -webkit-transform: scale3d(1.3, 1.3, 1.3);
        transform: scale3d(1.3, 1.3, 1.3)
    }
    to {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: .2;
        -webkit-transform: scale3d(1.3, 1.3, 1.3);
        transform: scale3d(1.3, 1.3, 1.3)
    }
    to {
        opacity: 1
    }
}

.animate-zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}