/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-55: 55px;
    --font-48: 48px;
    --font-40: 40px;
    --font-35: 35px;
    --font-30: 30px;
    --font-24: 24px;

    /** SPECIFIC **/
    --color-blue: #09317a;
    --color-gray: #7e7e7e;
    --color-grayLight: #e5e5e5;
    --color-graySuperLight: #f3f3f3;
    --color-orange: #ff7210;
}

.permanent-temporary-solution {
    color: #09317a;
    color: #7e7e7e;
    color: #e5e5e5;
    color: #f3f3f3;
    color: #ff7210;
}

body {
    color: #000;
    font-family: 'Nunito', sans-serif;
}


/**
 * BASIC
 */

em {
    padding-right: 2px;
}
h1 {
}
h2 {
}
h3 {
}
h4 {
}
h5 {
}

a {
    color: var(--color-blue);
}
a:hover,
a:focus {
    text-decoration: none;
    color: var(--color-blue);
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

#content {
    padding-top: 122px;
}

.container {
    clear: both;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1670px;
    width: 100%;
}

.container--huge {
    max-width: 1720px;
}

.container--small {
    max-width: 1350px;
}

.container--noClear {
    clear: none;
}


/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-blue);
}

.text a {
    color: var(--color-orange);
}

@media screen and (min-width: 1140px) {
    .text a:hover {
        text-decoration: underline;
    }
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}
.text ul > li {
    left: 48px;
    position: relative;
    padding-right: 40px;
}
.text ul > li::before {
    content: "•";
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    left: -15px;
    margin-left: -10px;
    font-family: sans-serif;
    position: relative;
    font-weight: 900;
    font-size: 16px;
    color: var(--color-orange);
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}


/**
 * HEADER
 */
header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--color-grayLight);
    background-color: #fff;
}

.logo {
    float: left;
    padding: 14px 0 15px;
    margin-right: 82px;
    width: 242px;
}
.logo a {
    display: block;
    font-size: 0;
}
.logo a img {
    display: block;
    vertical-align: bottom;
    max-width: 100%;
}

#main-menu {
    float: left;
}

#main-menu ul {
    font-size: 0;
}
#main-menu li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 1rem;
}
#main-menu li a {
    display: block;
    font-size: 18px;
    line-height: 35px;
    font-weight: 600;
    color: var(--color-blue);
    padding: 44px 24px 43px;
    position: relative;
}

#main-menu li.active a {
    color: var(--color-orange);
}

#main-menu li a:not(.hasIcon):after {
    content: '';
    display: block;
    position: absolute;
    bottom: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
}

#main-menu li.active a:not(.hasIcon):after {
    width: 100%;
}

#main-menu li a .icon,
#main-menu li a .caption {
    display: inline-block;
    vertical-align: middle;
}

#main-menu li a.hasIcon {
    padding: 25px 8px 25px;
}

#main-menu li a.hasIcon .caption {
    display: none;
}

#main-menu li a .icon {
    font-size: 0;
}

#main-menu li a svg {
    width: 46px;
    height: 46px;
    vertical-align: bottom;
    fill: var(--color-blue);
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}
#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

#main-menu li:hover > ul {
    display: block;
}

.header-phone {
    font-size: 0;
    float: right;
    padding: 32px 190px 24px 32px;
    position: relative;
    background-color: var(--color-blue);
}

.header-phone:before {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--color-blue);
    z-index: 0;
    pointer-events: none;
}

.mainpage .header-phone:before {
    height: 2px;
}

.header-phone > * {
    font-size: 1rem;
}

.header-phone-icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 0;
}

.header-phone-content {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-top: -10px;
}

.header-phone svg {
    width: 66px;
    height: 66px;
    fill: #fff;
}

.header-phone .topLine {
    display: block;
    font-size: 18px;
    font-weight: 300;
    padding-left: 4px;
    color: #fff;
}

.header-phone .bottomLine {
    display: block;
    font-size: 26px;
    line-height: 30px;
    font-weight: 800;
    color: #fff;
}

.header-phone .bottomLine,
#main-menu li a,
#main-menu li a svg,
#main-menu li a:not(.has-icon):after {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.logo,
#main-menu li a,
.header-phone:before,
.header-phone {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

@media screen and (min-width: 1140px) {
    #main-menu li a:hover {
        color: var(--color-orange);
    }

    #main-menu li a:hover svg {
        fill: var(--color-orange);
    }

    #main-menu li a:not(.has-icon):hover:after {
        width: 100%;
    }

    .header-phone:hover .bottomLine {
        color: var(--color-orange);
    }
}

/*---- header sticky ----*/

header.sticky .logo {
    padding: 14px 0 15px;
    margin-right: 50px;
    width: 160px;
}

header.sticky #main-menu li a {
    padding: 28px 16px 26px;
}

header.sticky #main-menu li a.hasIcon {
    padding: 10px 8px 10px;
}

header.sticky .header-phone {
    padding: 18px 190px 6px 32px;
}

.mainpage header.sticky .header-phone:before {
    height: 1px;
}

/**
 * FOOTER
 */
footer {

}

footer .text {
    color: #fff;
    font-weight: 300;
    line-height: 36px;
}

footer a {
    color: #fff;
}

footer .text a {
    color: #fff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;

}

/* FOOTER TOP */

.footer-top {
    padding: var(--space-40) 0;
    background: url('../images/footer_background.png'), #09317a;
    background-position: center right;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.footer-top-innerWrapper {
    font-size: 0;
    position: relative;
}

.footer-top-innerWrapper > * {
    font-size: 1rem;
}

.footer-top-left {
    font-size: 0;
    width: 75%;
    display: inline-block;
    vertical-align: top;
}

.footer-top-left > * {
    font-size: 1rem;
}

.footer-column {
    vertical-align: top;
    display: inline-block;
    width: 25%;
    padding-right: 30px;
}

.footer-column:last-child {
    padding-left: 45px;
}

.footer-column-title {
    font-size: 20px;
    line-height: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: var(--space-40);
}

.footer-column-content {
    margin-top: -8px;
}

.footer-column-content > * + * {
    margin-top: var(--space-50);
}

.footer-column ul > li > a {
    font-size: 16px;
    line-height: 36px;
    font-weight: 300;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    color: #fff;
}

.footer-column-contact ul > li > a {
    font-weight: 700;
    color: #fff;
}

.footer-top-right {
    width: 25%;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer-logo {
    text-align: right;
    font-size: 0;
}

.footer-logo > img {
    display: block;
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    footer .social-list > ul > li > .social:hover .social-icon .fa {
        color: var(--color-blue);
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
    }

    footer .text a:hover {
        color: var(--color-orange);
        text-decoration: none;
    }
}


/* FOOTER BAR */

.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 14px;
    color: #f4f4f4;
    background-color: #052869;
}

.footer-bar-content::after {
    content: "";
    display: table;
    clear: both;
}

.footer-bar-content > * {
    float: left;
}
.footer-bar-content > *:not(:last-child) {
    margin-right: 5px;
}

.footer-bar-links {
    font-size: 0;
    margin: 0 -8px;
}
.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 14px;
    line-height: 24px;
}
.footer-bar-links a {
    color: inherit;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.copyright-undicom {
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

@media screen and (min-width: 1140px) {
    .footer-column ul > li > a:hover {
        color: var(--color-orange);
    }

    .social-list > ul > li > .social:hover .social-icon {
        background-color: #fff;
        color: #fff;
    }

    .social-list > ul > li > .social:hover,
    .social-list > ul > li > .social:hover .social-icon .fa {
        color: var(--color-blue);
        color: #fff;
    }

    .social-list > ul > li > .social:hover .social-caption {
        color: #fff;
        text-decoration: underline;
    }

    .footer-bar-links a:hover {
        color: var(--color-orange);
    }
}

/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}
/* INPUTY */
.form .form-control {
    /* font-size: 14px; */
}
/* TEXTAREA */
.form textarea.form-control {
    /* height: 130px; */
}
/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-size: 12px;
    line-height: 24px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.05em;
}

.form .consent-row label {
    font-size: 14px;
}

.form .consent-row {
    margin-bottom: 0;
}

/* ZAOKRĄGLENIA INPUTÓW */
.form .form-group-lg .captcha-image-wrapper,
.form .form-control {
    border-radius: 0;
}
.form button.captcha-refresh {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/**
 * MAP POINTS
 */
.map-point .custom-map-wrapper {
    position: relative;
}
.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}
.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}
.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

.breadcrumb > li > a {
    font-size: 12px;
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}


/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 156px;
    padding: 28px 0;
}
.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 22px;
    line-height: 100px;
    vertical-align: middle;
}
.logotypes-slider-container {
    height: 100px;
}
.logotype-slider {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
}
.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}
.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
}
.social-list > ul > li .social {
    font-size: 0;
    --social-icon-size: 46px;
    display: block;
}

.social-list > ul > li .social > * {
    font-size: 1rem;
}

.social-icon {
    display: inline-block;
    vertical-align: middle;
    width: var(--social-icon-size);
    height: var(--social-icon-size);
    line-height: var(--social-icon-size);
    font-size: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.social-icon > * {
    vertical-align: middle;
}
.social-icon .fa {
    font-size: 18px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.social-caption {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - var(--social-icon-size));
    font-size: 15px;
    line-height: 16px;
    text-align: left;
    font-weight: 300;
    padding-left: 20px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 25px 0 25px 20px;
    border-radius: 6px 6px 0 0;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}
.langs-menu ul {
    opacity: 0;
    display: none;
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    border-radius: 0 0 6px 6px;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
}
.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}
.langs-menu a {
    display: block;
    transition: background-color 0.4s;
}
.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.lang {
    padding: 5px 15px;
    font-size: 0;
}
.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    text-transform: uppercase;
}
.lang .langs-menu-long {
    display: none;
}
.lang-button {
    position: relative;
    cursor: pointer;
}
.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    transition: all 0.4s;
    font-size: 20px;
    line-height: 12px;
}
.langs-menu.active .lang-button .arrow {
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}
.langs-menu-icon img {
    max-width: 100%;
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}
.article-content {
    margin-top: var(--space-50);
}
.article-content::after {
    content: "";
    display: table;
    clear: both;.
}

.article-image-wrapper {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 49.7%;
    margin-right: 50px;
    margin-bottom: 20px;
}
.article-image {
    display: block;
    font-size: 0;
}
.article-image img {
    max-width: 100%;
}
.article-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-orange);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    padding: 20px 16px;
}
.article-date-innerWrapper {
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    word-break: break-all;
    word-break: break-word;
    font-weight: 700;
}
.article-subtitle {
    padding: calc(var(--space-25) - 5px) 0 calc(var(--space-40) - 5px);
    font-size: var(--font-24);
    color: var(--color-blue);
    font-weight: 700;
    line-height: 30px;
}
.article-text:not(:last-child) {
    margin-bottom: var(--space-25);
}

.article.noImage .article-image-wrapper {
    margin: 0;
    padding: calc(var(--space-25) - 10px) 0 calc(var(--space-25) - 5px);
    float: right;
}

.article.noImage .article-date {
    position: static;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 12px 16px 8px;
    margin-left: 30px;
}

/**
 * PAGINATION
 */
/*.pagination-wrapper ul li.active a {*/
/*color: #e10024;*/
/*}*/

/*@media screen and (min-width: 1140px) {*/
/*.pagination-wrapper ul li a:hover {*/
/*color: #e10024;*/
/*}*/
/*}*/


/**
 * GALLERY
 */

.gallery-list {
    margin: -5px -6px;
    font-size: 0;
}
.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 33.3333%;
    padding: 5px 6px;
}
.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}
.gallery-picture > img {
    display: block;
    max-width: 100%;
}
.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    background-color: rgba(9, 49, 122, 0.8);
    transition: opacity 0.3s;
}
.gallery-picture-hover-innerWrapper {
    position: absolute;
    right: 32px;
    bottom: 20px;
}
.gallery-picture-hover-innerWrapper > * {
    display: inline-block;
    vertical-align: bottom;
}
.gallery-picture-hover .caption {
    font-size: 14px;
    margin-left: -30px;
    padding-bottom: 8px;
}

.gallery-picture-hover .icon {
    font-size: 0;
}

.gallery-picture-hover svg {
    width: 72px;
    height: 72px;
    fill: #fff;
    vertical-align: bottom;
}
@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

/*---- margins/paddings ----*/

.margin-big-top {
    margin-top: var(--space-60);
}

.margin-big-bottom {
    margin-bottom: var(--space-60);
}

.margin-big {
    margin-top: var(--space-60);
    margin-bottom: var(--space-60);
}

.margin-md-top {
    margin-top: var(--space-50);
}

.margin-md-bottom {
    margin-bottom: var(--space-50);
}

.margin-md {
    margin-top: var(--space-50);
    margin-bottom: var(--space-50);
}

.margin-sm-top {
    margin-top: var(--space-40);
}

.margin-sm-bottom {
    margin-bottom: var(--space-40);
}

.margin-sm {
    margin-top: var(--space-40);
    margin-bottom: var(--space-40);
}

/*---- buttons ----*/

.btn-backWrapper {
    margin: var(--space-50) 0;
    text-align: center;
}

.btn.btn-base {
    font-size: 0;
    padding: 0 15px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn.btn-base .caption {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn.btn-base,
.btn.btn-base:hover,
.btn.btn-base:focus {
    border: 1px solid transparent;
    background-color: #fff;
}

.btn-small.btn-base {
    height: 36px;
    border-radius: 20px;
    min-width: 140px;
}

.btn-small.btn-base .caption {
    line-height: 34px;
    font-size: 13px;
}

.btn-normal.btn-base {
    height: 46px;
    border-radius: 30px;
    min-width: 182px;
}

.btn-normal.btn-base .caption {
    line-height: 44px;
    font-size: 16px;
}

/*---- button themes ----*/

.btn-white-blue.btn-base,
.btn-white-blue.btn-base:hover,
.btn-white-blue.btn-base:focus {
    border-color: var(--color-blue);
    background-color: #fff;
}

.btn-white-blue.btn-base .caption {
    color: var(--color-blue);
}

.btn-orange-blue.btn-base,
.btn-orange-blue.btn-base:hover,
.btn-orange-blue.btn-base:focus {
    border-color: var(--color-orange);
    background-color: var(--color-orange);
}

.btn-orange-blue.btn-base .caption {
    color: #fff;
}

.btn-blue.btn-base,
.btn-blue.btn-base:hover,
.btn-blue.btn-base:focus {
    border-color: var(--color-blue);
    background-color: var(--color-blue);
}

.btn-blue.btn-base .caption {
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .btn-white-blue.btn-base:hover {
        background-color: var(--color-blue);
    }

    .btn-white-blue.btn-base:hover .caption {
        color: #fff;
    }

    .btn-orange-blue.btn-base:hover {
        background-color: #fff;
    }

    .btn-orange-blue.btn-base:hover .caption {
        color: var(--color-orange);
    }

    .btn-blue.btn-base:hover {
        background-color: #fff;
    }

    .btn-blue.btn-base:hover .caption {
        color: var(--color-blue);
    }
}

/*--------*/

.asidedPage-content {
    overflow: hidden;
}

.heading {
    text-align: center;
}

.heading-title {
    line-height: 1.2;
    font-size: var(--font-40);
    color: var(--color-orange);
    font-weight: 800;
    text-align: center;
    padding: var(--space-40) var(--space-25);
    margin-bottom: var(--space-40);
    border-bottom: 1px solid var(--color-grayLight);
}

.heading-description {
    padding-bottom: 5px;
    margin-bottom: var(--space-40);
    text-align: center;
}

.page--aside {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.heading-asideToggle,
.aside-close,
.aside-shadow {
    display: none;
}

.aside {
    float: left;
    width: 358px;
    /*margin-right: 140px;*/
    --space-left: 20px;
    padding-bottom: 100px;
}

.aside:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    width: inherit;
    background-color: #f3f3f3;
}

.aside-menu-background {
    position: absolute;
    width: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--color-graySuperLight);
    z-index: -1;
    background-image: url('../images/aside_background.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
}

.aside-title {
    line-height: 48px;
    font-size: var(--font-35);
    color: var(--color-blue);
    font-weight: 800;
    padding: var(--space-40) 50px var(--space-40) var(--space-left);
    background-color: var(--color-graySuperLight);
    position: relative;
}

.aside-menu {
    background-color: var(--color-graySuperLight);
}

.aside-menu ul > li > .aside-menu-title-wrapper {
    border-top: 1px solid var(--color-grayLight);
    position: relative;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.aside-menu > ul > li:last-child > .aside-menu-title-wrapper {
    border-bottom: 1px solid var(--color-grayLight);
}

.aside-menu > ul > li:last-child > ul > li:first-child {
    border-top: none;
}

.aside-menu > ul > li:last-child > ul > li:last-child > a {
    border-bottom: 1px solid var(--color-grayLight);
}

.aside-menu ul li a {
    font-size: 14px;
    line-height: 24px;
    display: block;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-right: 42px;
    color: #6f6f6f;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.aside-menu > ul > li {
    position: relative;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.aside-menu > ul > li.active > .aside-menu-title-wrapper .aside-menu-toggle {
    display: none;
}

.aside-menu-title-wrapper {
    padding-left: var(--space-left);
    padding-right: 40px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.aside-menu > ul > li.active > .aside-menu-title-wrapper {
    background-color: var(--color-blue);
}

.aside-menu > ul > li.active > .aside-menu-title-wrapper > a {
    color: #fff;
}

.aside-menu > ul > li.active > .aside-menu-title-wrapper > a + .aside-menu-toggle {
    color: #fff;
}

.aside-menu-toggle {
    position: absolute;
    font-size: 9px;
    top: 50%;
    right: 12px;
    padding: 4px 8px;
    color: var(--color-blue);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: translateY(-50%) rotate(0);
    -moz-transform: translateY(-50%) rotate(0);
    -ms-transform: translateY(-50%) rotate(0);
    -o-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
    cursor: pointer;
}

.aside-menu-toggle.noToggle {
    display: none;
}

.aside-menu-toggle.active {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.aside-submenu-toggle {
    display: none;
}

.aside-menu > ul > li > ul {
    display: none;
}

.aside-menu > ul > li.active > ul {
    display: block;
}

.aside-menu > ul > li > ul > li {
    border-top: 1px solid var(--color-grayLight);
}

.aside-menu > ul > li > ul > li > a {
    padding-left: calc(var(--space-left) * 2.1);
    position: relative;
}

.aside-menu > ul > li > ul > li.active > a {
    background-color: var(--color-orange);
    color: #fff;
}

.aside-menu > ul > li > ul > li > ul {
    display: none;
}

.aside-menu > ul > li > ul > li.active > ul {
    display: block;
}

.aside-menu > ul > li > ul > li > ul > li > a {
    padding-left: calc(var(--space-left) * 3.1);
    background-color: var(--color-grayLight);
}

.aside-menu > ul > li > ul > li > ul > li {
    border-top: 1px solid #d1d2d6;
}

.aside-menu > ul > li > ul > li > ul > li.active > a {
    color: var(--color-orange);
}

.aside-menu > ul > li > ul > li > ul > li:first-child {
    border-top: none;
}

.aside-menu .active--primary {
    display: block !important;
}

@media screen and (min-width: 1140px) {
    .aside-menu > ul > li:hover > .aside-menu-title-wrapper {
        background-color: var(--color-blue);
        color: #fff;
    }

    .aside-menu > ul > li:hover > .aside-menu-title-wrapper .aside-menu-title {
        color: #fff;
    }

    .aside-menu > ul > li:hover > .aside-menu-title-wrapper .aside-menu-toggle {
        color: #fff;
    }

    .aside-menu > ul > li > a:hover {
        background-color: var(--color-blue);
        border-color: var(--color-blue);
        color: #fff;
    }
    .aside-menu > ul > li > a:hover + .aside-menu-toggle {
        color: #fff;
    }

    .aside-menu > ul > li > ul > li > a:hover {
        background-color: var(--color-orange);
        border-color: var(--color-orange);
        color: #fff;
    }

    .aside-menu > ul > li > ul > li > ul > li > a:hover {
        color: var(--color-orange);
    }
}

.time-section {
    margin: var(--space-50) auto;
    padding: 15px var(--space-40) 9px;
    max-width: 956px;
    border: 1px solid var(--color-grayLight);
    border-radius: 50px;
}

.time-section-innerWrapper {
    display: table;
    width: 100%;
}

.time-section-innerWrapper > * {
    display: table-cell;
    vertical-align: middle;
}

.time-section-title-innerWrapper {
    display: table;
}

.time-section-title-innerWrapper > * {
    display: table-cell;
    vertical-align: middle;
}

.time-section-title {
    width: 34.3%;
    padding-right: 15px;
}

.time-section-title .icon {
    font-size: 0;
}

.time-section-title svg {
    width: 62px;
    height: 62px;
    vertical-align: bottom;
    fill: var(--color-blue);
}

.time-section-title .caption {
    font-size: 22px;
    color: var(--color-blue);
    font-weight: 800;
}

.time-section-col .topLine {
    font-size: 16px;
    line-height: 16px;
    color: var(--color-blue);
    font-weight: 300;
}

.time-section-col .bottomLine {
    font-size: 20px;
    color: var(--color-blue);
    font-weight: 800;
}

.time-section-col {
    position: relative;
    padding-right: 50px;
}

.time-section-col:after {
    content: '';
    display: block;
    position: absolute;
    right: 35px;
    top: calc(50% - 3px);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: var(--color-grayLight);
}

.time-section-col:last-child .topLine,
.time-section-col:last-child .bottomLine {
    padding-right: 0;
}

.time-section-col:last-child:after {
    display: none;
}

/*---- news ----*/

.page--noAside {
    background-image: url("../images/page_background.png");
    background-position: top 50px right;
    background-repeat: no-repeat;
}

.news-list {
    font-size: 0;
    margin: calc(-1 * var(--space-50)) calc(-1 * var(--space-40));
    padding: 10px 0 calc(var(--space-60) + 20px);
}

.news-list > * {
    font-size: 1rem;
}

.news-list-element {
    display: inline-block;
    vertical-align: top;
    width: 33.3333%;
    padding: var(--space-50) var(--space-40);
}

.news-image {
    border: 1px solid var(--color-grayLight);
    position: relative;
    font-size: 0;
    overflow: hidden;
}

.news-image img {
    max-width: 100%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.news-date {
    position: absolute;
    bottom: 20px;
    right: 18px;
    background-color: var(--color-orange);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 15px 12px;
    line-height: 15px;
}

.news-date-innerWrapper {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    word-break: break-all;
    word-break: break-word;
}

.news-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: var(--color-blue);
    margin: var(--space-25) 0 calc(var(--space-25) - 5px);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.news-description {
    font-size: 15px;
    line-height: 24px;
    margin: calc(var(--space-25) - 5px) 0 var(--space-40);
}

.news-btnWrapper {
    margin-top: var(--space-40);
}

@media screen and (min-width: 1140px) {
    .news:hover .news-image img {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }

    .news:hover .news-title {
        color: var(--color-orange);
    }

    .news:hover .btn.btn-base {
        background-color: var(--color-blue);
    }

    .news:hover .btn.btn-base .caption {
        color: #fff;
    }
}

/*---- pagination ----*/

.pagination-wrapper {
    max-width: 505px;
    padding: 0 0 80px;
}

.pagination-wrapper ul li a {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.pagination-wrapper ul li.active a {
    color: var(--color-orange);
}

.pagination-wrapper ul li.next a,
.pagination-wrapper ul li.prev a,
.pagination-wrapper ul li.next a:hover,
.pagination-wrapper ul li.prev a:hover,
.pagination-wrapper ul li.next a:focus,
.pagination-wrapper ul li.prev a:focus {
    border-radius: 50%;
    border-color: var(--color-blue);
    color: var(--color-blue);
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li.next a:hover,
    .pagination-wrapper ul li.prev a:hover {
        background-color: var(--color-blue);
        color: #fff;
    }

    .pagination-wrapper ul li a:hover {
        color: var(--color-orange);
    }
}

/*---- staff-list ----*/

.staff-list {
    font-size: 0;
}

.staff-list  > * {
    font-size: 1rem;
}

.staff-element {
    margin-bottom: var(--space-50);
}

.staff-element-innerWrapper {
    border: 1px solid var(--color-grayLight);
    padding: var(--space-40) var(--space-50) var(--space-50);
}

.staff-element-heading {
    text-align: center;
    /*min-height: 60px;*/
}

.staff-element-title {
    font-size: var(--font-24);
    color: var(--color-blue);
    line-height: 1.25;
    font-weight: 700;
}

.staff-element-role {
    color: var(--color-orange);
    padding-top: 8px;
}

.staff-element-text {
    margin-top: var(--space-40);
    text-align: justify;
}

.staff-element-content {
    max-height: 0;
    height: 100%;
    overflow: hidden;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.staff-element-btn {
    text-align: center;
    margin-top: var(--space-50);
}

.staff-element-btn .caption--active {
    display: block;
}

.staff-element-btn .caption--inactive {
    display: none;
}

.staff-gallery {
    margin: var(--space-40) -5px 0;
}

.staff-gallery-list {
    font-size: 0;
}

.staff-gallery-list > * {
    font-size: 1rem;
}

.staff-gallery-img {
    display: inline-block;
    width: 25%;
    vertical-align: top;
    padding: 6px;
    font-size: 0;
}

.staff-gallery-img-innerWrapper {
    border: 1px solid var(--color-grayLight);
    position: relative;
    display: block;
}

.staff-gallery-img img {
    max-width: 100%;
}

.staff-gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 49, 122, 0.9);
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.staff-gallery-hover-innerWrapper {
    font-size: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.staff-gallery-hover svg {
    width: 36px;
    height: 36px;
    fill: #fff;
}

.staff-element-innerWrapper.active {
    border-color: var(--color-blue);
}

.staff-element-innerWrapper.active .staff-element-btn .caption--active {
    display: none;
}

.staff-element-innerWrapper.active .staff-element-btn .caption--inactive {
    display: block;
}

@media screen and (min-width: 1140px) {
    .staff-gallery-img-innerWrapper:hover .staff-gallery-hover {
        opacity: 1;
    }
}

/*---- contact -----*/

.page-contact {
    background: none;
}

.section-contact {
    padding: 10px 0 calc(var(--space-50) - 5px);
}

.contact-tiles {
    font-size: 0;
    margin: 0 -35px;
}

.contact-tiles > * {
    font-size: 1rem;
}

.contact-tile-element {
    display: inline-block;
    width: 25%;
    vertical-align: top;
    padding: 0 35px;
}

.contact-tile {
    position: relative;
    border-radius: 50%;
    border: 1px solid var(--color-grayLight);
    text-align: center;
}

.contact-tile-element:first-child .contact-tile {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}

.contact-tile-element:first-child .contact-tile .contact-tile-title {
    color: #fff;
}

.contact-tile-element:first-child .contact-tile .text {
    color: #fff;
    font-weight: 300;
}

.contact-tile:before {
    content: '';
    width: 100%;
    display: block;
    padding-bottom: 100%;
}

.contact-tile-innerWrapper {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 23%;
    padding: 0 15px;
}

.contact-tile-title {
    font-size: 15px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-blue);
}

.contact-tile-element .contact-tile .text {
    font-size: 15px;
    font-weight: 300;
}

.contact-tile-list {
    font-size: 0;
}

.contact-tile-list > * {
    font-size: 1rem;
}

.contact-tile-list > li {
    display: inline-block;
    width: 100%;
}

.contact-tile-list > li > a {
    display: block;
    font-size: 15px;
    line-height: 30px;
    font-weight: 300;
}

.contact-tile-list > li:first-child a {
    font-weight: 700;
}

.contact-tile-socials .contact-tile-innerWrapper {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.contact-tile-socials .social-list > ul > li {
    max-width: 180px;
}

.contact-tile-socials .social-list > ul > li .social-icon {
    color: #fff;
}

.contact-tile-socials .social-list > ul > li .social-caption {
    color: #fff;
    font-size: 15px;
    line-height: 16px;
}

.contact-tile-socials {
    background-image: url("../images/contact_social_background.png");
    background-size: 105%;
    background-repeat: no-repeat;
    background-position: center center;
}

.contact-tile-element .text a {
    color: var(--color-blue);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

@media screen and (min-width: 1140px) {
    .contact-tile-list > li > a:hover {
        text-decoration: underline;
    }

    .contact-tile-socials .social-list > ul > li .social:hover .social-icon .fa {
        color: var(--color-blue);
    }

    .contact-tile-element .text a:hover {
        color: var(--color-orange);
        text-decoration: none;
    }
}

.section-contactForm {
    padding: var(--space-50) 0 var(--space-40);
    background: url("../images/contact_form_background.png"), var(--color-blue);
    background-position: center right;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.section-contactForm .form .alert-block .error {
    color: #ff0500 !important;
}

.contactForm-title {
    text-align: center;
    font-size: var(--font-30);
    color: #fff;
    font-weight: 800;
    padding-bottom: var(--space-40);
}

.contactForm .form-element-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 5px;
}

.section-contactForm .btn-wrapper {
    text-align: right;
}

.section-contactForm .btn-wrapper .btn {
    min-width: 200px;
}

.section-contactMap {
    font-size: 0;
}

.section-contactMap iframe {
    vertical-align: bottom;
    width: 100%;
    height: 600px;
}

.mainpage .page {
    background-image: url("../images/mainpage_background.jpg");
    background-size: 100% auto;
    background-position: center top -120px;
    background-repeat: no-repeat;
}

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

.mainSlider-wrapper {
    padding-top: calc(2 * var(--space-40));
    padding-bottom: calc(2 * var(--space-40) - 10px);
    padding-right: 150px;
    position: relative;
}

.mainSlider-rightBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 73%;
    z-index: 1;
    background-color: var(--color-blue);
}

.mainSlider-dots {
    position: absolute;
    top: 50%;
    right: 60px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

.mainSlider-dots .slick-dots > li {
    margin-bottom: 30px;
}

.mainSlider-dots .slick-dots > li:last-child {
    margin-bottom: 0;
}

.mainSlider-dots .slick-dots > li > button {
    font-size: 0;
    padding: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: none;
    background-color: transparent;
    border: 1px solid #fff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.mainSlider-dots .slick-dots > li.slick-active > button {
    background-color: #fff;
}

.mainSlider-rightSide {
    float: right;
    width: 50.5%;
    margin-left: 50px;
}

.mainSlider-image {
    font-size: 0;
}

.mainSlider-image img {
    vertical-align: bottom;
    max-width: 100%;
}

.mainSlider-slide {
    position: relative;
}

.mainSlider-leftSide {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-left: 80px;
    padding-right: 50px;
    max-width: 600px;
    width: 46%;
}

.mainSlider-title {
    font-size: var(--font-55);
    line-height: 1.2;
    color: var(--color-blue);
    font-weight: 300;
    margin-bottom: calc(var(--space-25) + 5px);
}

.mainSlider-description {
    font-size: 18px;
    line-height: 30px;
    color: var(--color-gray);
    margin: calc(var(--space-25) + 5px) 0 var(--space-40);
}

@media screen and (min-width: 1140px) {
    .mainSlider-dots .slick-dots > li > button:hover {
        background-color: #fff;
    }
}

.section-ourPlace {
    position: relative;
    overflow: hidden;
    margin-bottom: calc(2 * var(--space-40) + 5px);
}

.section-ourPlace:before {
    content: '';
    height: 2px;
    width: 350px;
    background-color: var(--color-orange);
    position: absolute;
    top: 0;
    right: 0;
    display: block;
}

.section-ourPlace .container {
    position: relative;
}

.ourPlace-image {
    float: left;
    width: 38%;
    font-size: 0;
    margin-right: 190px;
}

.ourPlace-image img {
    max-width: 100%;
}

.ourPlace-content {
    display: table;
    padding-bottom: 100px;
    position: relative;
    min-width: 52%;
}

.ourPlace-content-innerWrapper {
    display: table-cell;
    vertical-align: middle;
}

.ourPlace-title {
    font-size: var(--font-55);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: var(--space-40);
}

.ourPlace-title .line {
    display: block;
}

.ourPlace-title .topLine {
    color: var(--color-blue);
}

.ourPlace-title .bottomLine {
    color: var(--color-orange);
}

.ourPlace-description {
    text-align: justify;
    margin: var(--space-40) 0 var(--space-50);
}

.ourPlace-description .text {
    font-size: 18px;
    line-height: 30px;
}

.section-ourPlace .time-section {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    width: 100%;
    padding: 15px 0 9px var(--space-40);
    border: none;
}

.section-ourPlace .time-section:before {
    content: '';
    display: block;
    height: 100%;
    background-color: var(--color-blue);
    border-radius: 50px 0 0 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 100vw;
    z-index: 0;
}

.section-ourPlace .time-section-col:last-child {
    padding-right: 0;
}

.section-ourPlace .time-section .time-section-title {
    width: 38.3%;
    position: relative;
}

.section-ourPlace .time-section-title .caption,
.section-ourPlace .time-section-col .topLine,
.section-ourPlace .time-section-col .bottomLine {
    color: #fff;
}

.section-ourPlace .time-section-title svg {
    fill: #fff;
}

.section-ourPlace .time-section-col:after {
    background-color: rgba(255, 255, 255, 0.2);
}

.section-ourServices {
    padding-top: 15px;
    padding-bottom: 25px;
    position: relative;
}

.section-ourServices:before {
    content: '';
    height: 2px;
    width: 370px;
    background-color: var(--color-orange);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.ourServices-list {
    font-size: 0;
    margin: 0 calc(-1 * var(--space-50));
}

.ourServices-list > * {
    font-size: 1rem;
}

.service-element {
    width: 33.3333%;
    display: inline-block;
    vertical-align: top;
    padding: 0 var(--space-50);
    margin-bottom: calc(var(--space-50) + 5px);
}

.service {
    display: block;
}

.service-icon {
    position: relative;
    font-size: 0;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--color-blue);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.service-icon:before {
    display: block;
    content: '';
    width: 100%;
    padding-bottom: 100%;
}

.service-icon:after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-family: 'FontAwesome', sans-serif;
    content: '\f054';
    color: #fff;
    text-align: center;
    font-size: 10px;
    padding-left: 3px;
    background-color: var(--color-orange);
    opacity: 0;
    pointer-events: none;
}

.service-icon .icon {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.service-icon svg {
    width: 160px;
    height: 160px;
    fill: var(--color-blue);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.service-title {
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: var(--color-blue);
    padding: calc(var(--space-40) - 5px) 0 0;
}

.ourServices {
    font-size: 0;
}

.ourServices > * {
    font-size: 1rem;
}

.ourServices .leftSide {
    width: 47.5%;
    display: inline-block;
    vertical-align: middle;
}

.ourServices .rightSide {
    width: 52.5%;
    display: inline-block;
    vertical-align: middle;
}

.ourServices-content {
    max-width: 550px;
    padding-right: 50px;
}

.ourServices-title {
    font-size: var(--font-55);
    color: var(--color-blue);
    font-weight: 800;
    margin-bottom: 15px;
}

.ourServices-description {
    margin: 15px 0 var(--space-40);
}

.ourServices-description .text {
    font-size: 18px;
    color: var(--color-gray);
}

.ourServices .btnWrapper {
    margin-top: var(--space-40);
}

@media screen and (min-width: 1140px) {
    .service:hover .service-icon:after {
        opacity: 1;
    }

    .service:hover .service-icon svg {
        fill: #fff;
    }

    .service:hover .service-icon {
        background-color: var(--color-blue);
    }
}

.topBar .btn.btn-base {
    border-color: #fff;
}

.topBar {
    background-color: var(--color-blue);
    padding: 20px 0 15px;
}

.topBar-innerWrapper {
    position: relative;
}

.topBar-title {
    font-size: var(--font-55);
    font-weight: 800;
    color: #fff;
}

.topBar-button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mainpage .news-list {
    margin: 0 calc(-1 * (var(--space-40) + 5px));
    padding: var(--space-50) 0;
}

.mainpage .news-list-element {
    padding: 0 calc(var(--space-40) + 5px);
}

.mainpage .section-news {
    background-color: #fff;
}
