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

    --font-50: 50px;
    --font-48: 48px;
    --font-45: 45px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-27: 27px;
    --font-24: 24px;
    --font-20: 20px;
    --font-18: 18px;

    --container-padding: 40px;

    /** SPECIFIC **/
    --color-primary: #8edbf4;
    --color-secondary: #e29ab0;
    --color-bgc-button: #8edbf4;
    --color-font-button: #ffffff;
}

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

/**
 * BASIC
 */

a, input, select, textarea, option, button {
    outline: none !important;
}

a, button {
    transition: all 300ms ease-out;
}

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #8edbf4;
}

a:hover, a:focus {
    color: #000;
}

/**
 * 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;
}

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

/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 0;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: #e5e5e5;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
}

.text h2 {
    font-size: var(--font-24);
    padding-bottom: var(--space-40);
    font-weight: 300;
}

.text h2 strong {
    font-weight: 900;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

.text ul > li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    left: -16px;
    margin-left: -6px;
    font-family: sans-serif;
    position: relative;
    background: #8edbf4;
    top: -2px;
    border-radius: 50%;
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** 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;
}

.text.txt, .article-text {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    margin-bottom: 30px;
}

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

body > svg {
    display: none;
}

.vcenter {
    display: block;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}

.mask {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

#container-page {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    /* background: url(../images/page.jpg) no-repeat center 0; */
}

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
}

header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdButton.rwdPanel-action-toggle.active {
    color: #fff;
    background-color: #8edbf4;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-right {
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.top-middle {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 30px;
}

.logo a {
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo a img {
    display: block;
    height: 84px;
    transition: all 300ms ease-out;
}

#main-menu ul {
    font-size: 0;
}

#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 1rem;
}

#main-menu li a {
    text-transform: uppercase;
    padding: 20px 12px;
    display: block;
    font-weight: 500;
    color: #000000;
    font-size: 16px;
}

#main-menu li a:hover {
    color: #8edbf4
}

#main-menu li.active a {
    color: #8edbf4
}

#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;
}

.calculator-link {
    display: flex;
    align-items: center;
    position: relative;
    background: var(--color-bgc-button);
    border-radius: 0;
    border: 1px solid var(--color-bgc-button);
    height: 46px;
    font-size: 14px;
    color: var(--color-font-button);
    padding: 0 58px 0 14px;
    font-weight: bold;
    white-space: nowrap;
}

.top .calculator-link {
    margin-right: 18px;
}

.calculator-link .link-icon {
    width: 25px;
    height: 26px;
    margin-right: 0;
    transition: all 300ms ease-out;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 0;
}

.calculator-link .link-caption {
    margin-left: 12px;
}

.calculator-link:after {
    width: 40px;
    height: 46px;
    display: block;
    content: "\f105";
    font: normal normal normal 16px/1 FontAwesome;
    color: var(--color-font-button);
    position: absolute;
    transition: all 300ms ease-out;
    right: 0;
    top: 0;
    text-align: center;
    line-height: 41px;
}

.calculator-link .link-icon svg *,
.calculator-link .link-icon svg {
    fill: var(--color-font-button);
    transition: all 300ms ease-out;
}

@media screen and (min-width: 1140px) {
    .calculator-link:hover {
        color: var(--color-bgc-button);
        background: var(--color-font-button);
        border-color: var(--color-bgc-button);
    }

    .calculator-link:hover .link-icon svg *,
    .calculator-link:hover .link-icon svg {
        fill: var(--color-bgc-button);

    }

    .calculator-link:hover:after {
        color: var(--color-bgc-button);
    }
}

.main-menu-button {
    float: right;
    width: 40px;
    margin: 18px 0 18px var(--container-padding);
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: #8edbf4;
}

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    float: left;
    position: relative;
    width: 350px;
    max-width: 100%;
}

.mainsearch-search {
    display: flex;
    align-items: stretch;
}

.mainsearch .form-element-container {
    flex-grow: 1;
}

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    border-right: none;
    box-shadow: none;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mainsearch .alert-block,
.mainsearch .form-control-feedback {
    display: none;
}

.slider {
    padding-top: 108px;
    min-height: 768px;
    max-height: 950px;
    position: relative;
    overflow: hidden;
}

.slider-video {
    display: flex;
    flex-direction: column;
    min-height: 49.4791vw;
}

.video-container {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

.video-container > video {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*.main-slider, .slider .slide, .slider .slider-photo, .slider .slider-photo-box, .slick-list.draggable, .slick-track {*/
/*height: 100%;*/
/*position: relative;*/
/*overflow: hidden;*/
/*transition: all 300ms ease-out;*/
/*}*/

.slider-text-top {
    margin-bottom: calc(var(--space-60) + var(--space-25) - 10px);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.slider-text-top a + a {
    margin-top: 10px;
}

.slide {
    background: center center /contain;
    background-repeat: no-repeat;
    background-color: #f7f7f7;
    -webkit-background-size: cover;
    background-size: cover;
}

.slider-text-bottom {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-bottom: calc(var(--space-60) + var(--space-40) - 10px);
}

.slider-text-box {
    display: flex;
    justify-content: flex-end;
    align-content: center;
    width: 100%;
    height: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.slider-text {
    width: 55%;
    display: flex;
    flex-direction: column;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin-top: 5px;
    justify-content: center;
    align-items: flex-start;
    padding-top: 36px;
}

.title1 {
    line-height: 120%;
    margin-bottom: -3px;
    text-align: right;
    font-size: var(--font-50);
    color: #8edbf4;
    font-weight: bold;
}

.title2 {
    font-size: var(--font-50);
    font-weight: 300;
    color: #000000;
    margin-bottom: 30px;
}

@media screen and (min-width: 1140px) {
    .slider-photo .slider-photo-img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: scale-down;
    }
}

.meet-box {
    background: url(../images/cloud_blue.png) no-repeat top center;
    width: 202px;
    height: 238px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.meet-text {
    font-size: 20px;
    color: #000;
    text-align: right;
    padding: 25px 25px 66px;
    line-height: 28px;
}

/**
 * FOOTER
 */
footer {
    background: #8edbf4;
    position: relative;
}

.footer-boxes-container {
    position: relative;
}

.footer-boxes {
    padding-top: 83px;
    padding-bottom: 73px;
}

.contact-link {
    display: flex;
    color: #fff;
    font-size: var(--font-18);
    letter-spacing: 0.05em;
    line-height: 170%;
    font-weight: 300;
    align-items: center;
    width: 33.33%;
    padding: 30px;
}

.contact-link .btn-icon {
    width: 47px;
    height: 47px;
    border: 1px solid #fff;
    color: #8edbf4;
    margin-right: 33px;
    background: #fff;
    flex-shrink: 0;
}

footer .contact-link .caption {
    font-size: 16px;
    text-align: left;
}

.contact-link .btn-icon svg {
    fill: currentColor;
}

.contact-link .caption strong {
    display: block;
    font-size: var(--font-20);
}

.contact-link:not(a) * {
    pointer-events: none;
}

.contact-box-wrapper a.contact-link .caption {
    transition: color 500ms;
}

@media screen and (min-width: 1140px) {

    .contact-box-wrapper a.contact-link:hover .caption {
        color: #8edbf4;
    }

    footer a.contact-link:hover .btn-icon {
        background: #000;
        color: #fff;
        border-color: #000;
    }

    .footer-bar-links a:hover {
        color: #000000;
    }
}

.footer-logo {
    text-align: center;
    margin-bottom: 92px;
}

.footer-logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.contact-links {
    display: flex;
    margin: -30px;
}

.contact-link:nth-child(3n+2) {
    justify-content: center;
}

.footer-bar-content {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/**
 * FOOTER
 */
footer {
}

/* FOOTER BAR */
.footer-bar {
    /* padding: 10px 0; */
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 13px;
    color: #fff;
}

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

.footer-bar-content > * {
    float: left;
}

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

.footer-bar-links {
    margin-left: -8px;
    font-size: 0;
}

.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;
}

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

/**
 * FORM
 */

form.form {
    padding: 0;
}

/* labele */
.form .form-element-name {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
    font-family: 'poppins', sans-serif;
}

.form .form-required-mark {
    color: #E2001A;
    font-weight: bold;
    font-size: 16px;
}

/* INPUTY */
.form .form-control {
    box-shadow: 0 0 0 transparent;
    color: #000;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    letter-spacing: 0;
    border-color: #fff;
    font-weight: 300;
    background: #fff;
    font-family: 'poppins', sans-serif;
    border-radius: 0;
}

.form-control-feedback {
    display: none !important;
}

.form .alert-block .error {
    display: block;
    clear: both;
    margin-top: 0;
    margin-bottom: 0;
    padding: 10px 18px 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: #E2001A !important;
    color: #fff !important;
    font-weight: normal !important;
    font-size: 13px;
}

.form .form-element-radio .alert-block .error,
.form .form-element-checkbox .alert-block .error {
    display: block;
    clear: both;
    margin-top: 5px;
    margin-bottom: 0;
    padding: 0 25px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: transparent !important;
    color: #E2001A !important;
    font-weight: bold !important;
    font-size: 13px;
}

.has-error .form-control {
    border-color: #E2001A;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.form-group-lg .form-element-radio,
.form-group-lg .form-element-checkbox {
    letter-spacing: 0.05em;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {
    background: #4a44a9
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    height: 134px;
}

.service-box-form .form textarea.form-control:not([rows]) {
    height: 90px;
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label > *,
.form .consent-all {
    font-size: 13px;
    line-height: 24px;
    color: #fff;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
}

.form .consent-all {
    margin-bottom: 20px;
    display: block;
}

/* ZAOKRAGLENIA INPUTOW*/
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 0;
    height: 46px;
    padding-right: 50px;
    background: #fff;
}

.form button.captcha-refresh.btn.btn-default {
    right: 5px;
    border-radius: 0;
    border: 1px solid #e7e7e7;
    background: transparent;
    width: 50px;
}

.form i.fa.fa-refresh {
    font-size: 19px;
    color: #a1c13d;
}

@media screen and (min-width: 1140px) {
    button.captcha-refresh.btn.btn-default:hover i.fa.fa-refresh {
        color: #000;
    }
}

/**************** checkbox *******************/

.form .checkboxradio-container {
    margin-top: 0;
    text-align: left;
}

.form .form-element-radio-container .row > *:not(:only-child),
.form .form-element-checkbox-container .row > *:not(:only-child) {
    margin-bottom: 10px;
}

.form .form-group-lg.form-group-lg .icheckbox_minimal-custom,
.form .form-group-lg.form-group-lg .iradio_minimal-custom {
    left: 0;
    top: 0;
    margin-top: 0;
    margin-left: 0;
}

.form-group-lg .icheckbox_minimal-custom,
.form-group-lg .iradio_minimal-custom {
    zoom: 1.55;
}

.form-group-lg .form-element-switcher .icheckbox_minimal-custom,
.form-group-lg .form-element-switcher .iradio_minimal-custom {
    zoom: normal;
}

.form .form-group-lg .checkboxradio-container label {
    padding-top: 3px;
    padding-left: 50px;
    padding-bottom: 6px;
    line-height: 1.2;
}

.form .form-group-lg .form-element-radio .alert-block .error,
.form .form-group-lg .form-element-checkbox .alert-block .error {
    padding-left: 50px;
}

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/icheck.png);
}

.form-box .row {
    margin-left: -5px;
    margin-right: -5px;
}

.form-box .col-lg-1,
.form-box .col-lg-10,
.form-box .col-lg-11,
.form-box .col-lg-12,
.form-box .col-lg-2,
.form-box .col-lg-3,
.form-box .col-lg-4,
.form-box .col-lg-5,
.form-box .col-lg-6,
.form-box .col-lg-7,
.form-box .col-lg-8,
.form-box .col-lg-9,
.form-box .col-md-1,
.form-box .col-md-10,
.form-box .col-md-11,
.form-box .col-md-12,
.form-box .col-md-2,
.form-box .col-md-3,
.form-box .col-md-4,
.form-box .col-md-5,
.form-box .col-md-6,
.form-box .col-md-7,
.form-box .col-md-8,
.form-box .col-md-9,
.form-box .col-sm-1,
.form-box .col-sm-10,
.form-box .col-sm-11,
.form-box .col-sm-12,
.form-box .col-sm-2,
.form-box .col-sm-3,
.form-box .col-sm-4,
.form-box .col-sm-5,
.form-box .col-sm-6,
.form-box .col-sm-7,
.form-box .col-sm-8,
.form-box .col-sm-9,
.form-box .col-xs-1,
.form-box .col-xs-10,
.form-box .col-xs-11,
.form-box .col-xs-12,
.form-box .col-xs-2,
.form-box .col-xs-3,
.form-box .col-xs-4,
.form-box .col-xs-5,
.form-box .col-xs-6,
.form-box .col-xs-7,
.form-box .col-xs-8,
.form-box .col-xs-9 {
    padding-left: 5px;
    padding-right: 5px;
}

.form .checkboxradio-container .error {
    margin-top: 0;
    font-size: 13px;
}

.form .checkboxradio-container label {
    line-height: 24px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 30px;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
}

.form .checkboxradio-container [class^="icheckbox"], .form .radio [class^="icheckbox"] {
    position: absolute;
    margin-left: -26px;
    margin-top: 3px;
}

.form-group {
    margin-bottom: 12px;
}

button.btn.btn-primary .fa {
    float: right;
    line-height: 46px;
}

form.form button.btn.btn-secondary {
    text-align: center;
    margin: 0 auto;
    display: block;
    float: none;
    width: auto;
    padding: 0 19px;
    background: #fffb8a;
    border-color: #fffb8a;
    color: #000;
}

@media screen and (min-width: 1140px) {
    form.form button.btn.btn-secondary:hover {
        background: #000;
        color: #fffb8a;
    }
}

.form .before-consent-row {
    margin-bottom: 6px;
    padding-top: 9px;
}

.checkbox {
    margin-bottom: 0;
    margin-top: 12px;
}

.row.consent-all-row {
    color: #a1a1a1;
}

.form-box {
}

.row.after-consent-row {
    margin-bottom: 10px;
    margin-top: 14px;
}

.row a {
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
}

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

}

.form-element-option-text a {
    font-weight: bold;
}

/**
 * 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;
}

.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

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

/**
 * ANIMATABLE ICON
 */

.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}

.animIcon::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: gray;
    transition: all .4s ease;
}

/* Close */
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    transform-origin: center;
}

.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
}

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

.animIcon.animIcon--hamburger span:nth-child(1) {
    margin-top: 20%;
}

.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 50%;
}

.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 80%;
}

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 15%;
    margin-left: 15%;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    margin-top: 70%;
}

.animIcon.animIcon--hamburger.active span:nth-child(3) {
    margin-top: 85%;
    margin-left: 15%;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * LOGOTYPES SLIDER
 */

.logotypes-arrows {
    position: absolute;
    width: 100%;
    max-width: 1800px;
    padding: 0 25px;
    display: flex;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    justify-content: space-between;
    margin: auto;

}

.slick-arrow {
    -webkit-text-fill-color: #000;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 1);
    font-size: 29px;
    cursor: pointer;
    color: #000000;
}

@media screen and (min-width: 1140px) {
    .slick-arrow:hover {
        color: #8edbf4;
        -webkit-text-fill-color: #8edbf4;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #8edbf4;
    }
}

.logotypes-box-container {
    padding-top: 33px;
    position: relative;
    padding-bottom: 33px;
}

.logotypes-title {
    display: none;
}

.logotype:after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 95px;
}

.logotype-slider {
    margin: 0 -17px;
}

.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;

    border: 0 none;
    margin: 0 17px;
    position: relative;

}

.logotype img {
    max-height: 90% !important;
    max-width: 90% !important;
    margin: 0 auto;
    display: block;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0.7;
}

.slick-initialized .logotype:hover img {
    opacity: 1
}

/**
 * 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-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #8edbf4;
    background: #8edbf4;
    color: #fff;
    transition: all 300ms ease-out;
}

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

.social-icon svg {
    fill: currentColor;
}

.social-icon svg g {
    fill: currentColor !important;
}

.social-icon img {
    display: block;
}

.social-icon .fa {
    font-size: 20px;
}

/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 0 15px;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s;
}

.langs-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.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 {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    text-transform: uppercase;
}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: 18px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

.langs-menu-icon img {
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {

        opacity: 1;
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

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

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}

.langs-menu--list .lang {
    background: none;
}

.langs-menu--list .langs-menu-icon {
    margin: 0;
}

@media screen and (min-width: 1140px) {

    .lang.lang-button {
        display: none;
    }

    .langs-menu ul, .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        opacity: 1;
        position: relative;
        top: auto;
        width: auto;
        background: transparent;
        transform: none;
    }

    .langs-menu li {
        display: inline-block;
        border-bottom: 0 none;
        margin-left: 10px;
    }

    .langs-menu a {
        width: 50px;
        border: 1px solid #e5e5e5;
        border-radius: 0;
        height: 50px;
        color: #000;
        transform: none;
        -ms-transform: none;
        font-size: 16px;
        flex-direction: column;
        justify-content: center;
    }

    .langs-menu li.active a.lang.lang-item {
        border-color: #8edbf4;
    }

    .langs-menu li a.lang.lang-item:hover {
        border-color: #8edbf4;
    }

    .lang span.langs-menu-icon {
        display: none;
    }

    .langs-menu li:active a {
        opacity: 1;
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: none;
        -ms-transform: none;
    }

    .langs-menu {
        float: none;
        margin: 0;
    }

    .langs-menu li.active a.lang.lang-item {
        font-weight: bold;
    }

    .langs-menu li a.lang.lang-item:hover {
        font-weight: bold;
    }
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}

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

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 50px;
    margin-bottom: 20px;
}

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

.article-subtitle {
    padding-bottom: 30px;
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: 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: -1px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 1px;
}

.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(0, 0, 0, 0.6);
    transition: opacity 0.3s;
}

.gallery-picture-hover > * {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

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

/**
 * BUTTONS
 */

.btn.btn-lg {
    line-height: 44px;
    border: 1px solid;
    height: 46px;
    box-shadow: 0 0 0 transparent;
    display: inline-block;
    padding: 0 38px;
    position: relative;
    transition: all 300ms ease-out;
    font-size: 14px;
    font-weight: normal;
    border-radius: 0;
}

.btn.btn-sm {
    border-radius: 0;
    line-height: 38px;
    border: 1px solid;
    height: 40px;
    box-shadow: 0 0 0 transparent;
    display: inline-block;
    padding: 0 24px;
    position: relative;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.btn.btn-primary {
    background: rgb(0, 91, 127);
    color: #fff;
    border-color: rgb(0, 91, 127);
}

.btn.btn-secondary {
    background: transparent;
    color: #000;
    border-color: #e8e8e8;
}

.btn.btn-default {
    color: #fff;
    background: #fff;
    border-color: #fff;
}

@media screen and (min-width: 1140px) {
    .btn.btn-primary:hover {
        color: #fff;
        background: #4fbbb4;
        border-color: #4fbbb4;
    }

    .btn.btn-secondary:hover {
        background: rgb(0, 91, 127);
        color: #fff;
        border-color: rgb(0, 91, 127);
    }

    .btn.btn-default:hover {
        color: rgb(0, 91, 127);
        background: #fff;
        border-color: #fff;
    }
}

.check-box {
    background: url(../images/cloud_yellow.png) no-repeat top center;
    width: 202px;
    height: 238px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
}

.check-box-text {
    color: #fff;
    font-weight: bold;
    font-size: var(--font-30);
    text-align: left;
    padding: 0 0 43px 25px;
    line-height: 131%;
}

.calculator-box-container {
    padding-top: 90px;
    padding-bottom: 218px;
    background-repeat: no-repeat;
    background-color: #e29ab0;
    background-position: top center;
    background-size: contain;
}

.calculator-box {
    width: 45%;
}

.calculator-caption {
    font-size: 16px;
    color: #fff;
    margin-bottom: 23px;
}

.choose-row {
    display: flex;
    margin: -10px;
    flex-wrap: wrap;
    padding-bottom: 33px;
    justify-content: flex-start;
}

.choose-btn-wrapper {
    width: 25%;
    padding: 10px;
}

.choose-row button {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    height: 46px;
    border: 1px solid #fff;
    width: 100%;
    background: #fff;
}

.choose-row button.active {
    color: #fff;
    background: #8edbf4;
    border-color: #8edbf4;
}

@media screen and (min-width: 1140px) {
    .choose-row button:hover {
        color: #fff;
        background: #8edbf4;
        border-color: #8edbf4;
    }
}

.calculator-initial {
    width: 23%;
}

.calculator-time-box {
    width: 74.3%;
}

.calculator-columns {
    display: flex;
    justify-content: space-between;
}

.calculator-initial .calculator-caption {
    margin-bottom: 14px;
    white-space: nowrap;
}

.calculator-value {
    height: 46px;
    border: 1px solid #fff;
    background: #fff;
    font-weight: bold;
    font-size: var(--font-20);
    color: #000;
    text-align: center;
    width: 100%;
    line-height: 44px;
}

.calculator-time {
    display: flex;
}

.calculator-time button {
    width: 33.33%;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    height: 46px;
    border: 1px solid #e5e5e5;
    border-left: none;
    background: #fff;
    border-right: 1px solid #e5e5e5;
}

@media screen and (min-width: 1140px) {
    .calculator-time button:hover {
        color: #fff;
        background: #8edbf4;
        border-color: #8edbf4;
    }
}

.calculator-time button.active {
    color: #fff;
    background: #8edbf4;
    border-color: #8edbf4;
}

.calculator-time-box .calculator-caption {
    margin-bottom: 14px;
}

.calculator-legend {
    font-size: 13px;
    color: #fff;
    font-weight: 300;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 9px;
}

.calculator-summary-box {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
}

.calculator-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calculator-summary-left {
    font-size: 15px;
    color: #fff;
    line-height: 60px;
}

.calculator-summary-left i {
    font-size: 20px;
    margin-top: 10px;
    margin-left: -7px;
    vertical-align: top;
    color: #000000;
}

.mainpage .calculator-summary-left i {
    color: #8edbf4;
}

.calculator-summary-left strong {
    white-space: nowrap;
    font-weight: 800;
    color: #8edbf4;
    font-size: var(--font-50);
    margin-left: 10px;
    margin-right: 10px;
    line-height: 1.2em;
}

.calculator-summary .btn.btn-lg.btn-primary {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    padding: 10px 16px;
    min-width: 180px;
    height: 46px;
    line-height: 44px;

    background: #8edbf4;
    border-radius: 0;
    border-color: #8edbf4;
}

.calculator-summary .btn.btn-lg.btn-primary .btn-icon {
    width: 46px;
    height: 46px;
    padding: 10px;
}

.calculator-summary .btn.btn-lg.btn-primary .btn-caption {
    margin-left: 4px;
}

.calculator-summary .btn.btn-lg.btn-primary .btn-icon svg {
    fill: #fff;
    transition: all 300ms ease-out;
}

@media screen and (min-width: 1140px) {
    .calculator-summary .btn.btn-lg.btn-primary:hover {
        background: #fff;
        color: #8edbf4;
    }

    .calculator-summary .btn.btn-lg.btn-primary:hover .btn-icon svg {
        fill: #8edbf4;
    }
}

.offer-box-title {
    text-align: center;
    font-size: var(--font-45);
    font-weight: 800;
    margin-bottom: 14px;
}

.offer-box-container {
    padding-top: 46px;
}

.text.txt.text-intro {
    text-align: center;
    font-size: 14px;
    max-width: 960px;
    margin: 0 auto;
    line-height: 27px;
}

.offer-box-container {
    position: relative;
}

.offer-box-header {
    padding-bottom: 54px;
}

.offer-box {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
}

.offer-photo {
    width: 98%;
    min-height: 330px;
    margin: 0 auto 26px;
    transition: all 300ms ease-out;
}

.offer-photo img {
    display: block;
    max-width: 100%;
    max-height: 400px;
    margin: 0 auto;
    transition: max-height 300ms ease-out;
    mix-blend-mode: multiply;
}

.offer-item {
    min-height: 710px;
    height: unset;
    display: flex !important;
    align-items: stretch;
    width: 25%;
    position: relative;
}

.offer-item:nth-child(odd) {
    background: #f8f8f8;
}

@media screen and (min-width: 1140px) {
    .offer-link {
        height: 710px;
    }
}

.offer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 130px 60px 60px;
    position: relative;
    font-weight: bold;
    font-size: var(--font-27);
    color: #000;
    justify-content: center;
}

.offer-link-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.offer-name {
    font-weight: 300;
    font-size: var(--font-18);
    color: #000;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 33px;
    transition: all 300ms ease-out;
}

.offer-name strong {
    display: block
}

.offer-hover .text.txt {
    margin-bottom: 38px;
    font-size: 15px;
    line-height: 27px;
    color: #000;
    font-weight: normal;
    text-align: center;
}

.offer-size {
    background: url(../images/cloud_black_small.png) no-repeat top center;
    min-width: 65px;
    width: fit-content;
    height: 77px;
    display: block;
    position: absolute;
    right: 25px;
    top: 20px;
    text-align: center;
    line-height: 1;
    padding-top: 18px;
    opacity: 0;
    color: #000;
    transition: all 300ms ease-out;
    font-size: 27px;
}

@media screen and (min-width: 1140px) {
    .offer-link:hover .offer-photo {
        width: 73%;
        margin-bottom: 25px;
    }

    .offer-link:hover .offer-photo img {
        max-height: 300px;
    }

    .offer-link:hover .offer-photo img {
        mix-blend-mode: unset;
    }
}

.offer-link .btn.btn-lg.btn-secondary {
    display: block;
    max-width: 164px;
    padding: 0 10px;
    transition: all 300ms ease-out;
    margin-top: 10px;
    min-width: 170px;
}

.offer-hover {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 300ms ease-out;
    text-align: center;
}

.offer-link {
    width: 100%;
}

@media screen and (min-width: 1140px) {
    .offer-link:hover .offer-hover {
        max-height: 350px;
        opacity: 1;
    }

    .offer-link:hover .offer-photo {
        min-height: unset;
    }

    .offer-link:hover .offer-name {
        margin-bottom: 15px;
    }

    .offer-link:hover {
        padding-top: 20px;
        background: #fffb8a
    }

    .offer-link:hover .offer-size {
        opacity: 1
    }

    .offer-link:hover .btn.btn-lg.btn-secondary {
        background: #337ab7;
        border-color: #337ab7;
        color: #ffffff;
    }
}

.main-blog-top {
    position: relative;
}

.news-list .text {
    color: #000;
}

.news-list h2 {
    font-size: 16px;
    text-transform: uppercase;
    padding-top: var(--space-40);
    padding-bottom: var(--space-25);
    font-weight: bold;
    color: #000;
}
.main-blog.blog-page{
    background: #fff;
}
.news-view .page-heading-title{
    margin-top: var(--space-40);
}
.news-view .main-img{
    float: left;
    padding: 0 var(--space-40) var(--space-25) 0;
}
.news-view .btn-row{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: var(--space-60);
}
.main-blog.blog-page .btn-default{
    border: 1px solid  #8edbf4;
}
.main-blog-top h2{
    font-size: var(--font-18);
}
.main-blog-top h2 strong{

    font-size: var(--font-45);
}
.news-list .img-container img{
    max-width: 100%;
    display: block;
}
.news-list{
    padding-top: var(--space-60);
}
.news-list .col-xs-4 .btn:hover{
    background-color:  #8edbf4;
    color: #fff;
}
.main-blog-top .btn {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.news-list .col-xs-4 > a{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.news-list .col-xs-4  a .text{
    flex-grow: 1;
}
.news-list .col-xs-4 {
    padding: 10px var(--space-25);
    display: flex;
    flex-direction: column;

}

.news-list .col-xs-4 .btn {
    margin-top: var(--space-25);
    color: #000;
}

.news-list {
    margin: -10px calc(var(--space-25) * -1);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.main-blog {
    padding: var(--space-60) 0;
    background-color: #fefb8a;
}

.benefits-box-container {
    padding-top: 66px;
    padding-bottom: 77px;
    position: relative;
}

.benefits-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
}

.benefit-item {
    display: flex;
    text-align: center;
    flex-direction: column;
    width: 20%;
}

.benefit-icon img {
    max-width: 100%;
}

.benefit-icon {
    width: 90px;
    margin: 0 auto 18px;
}

.benefit-text {
    font-size: 16px;
    line-height: 27px;
    color: #000;
}

.benefit-box-title {
    font-size: var(--font-18);
    color: #000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-weight: 500;
    line-height: 243%;
    padding-bottom: 10px;
    margin-bottom: 52px;
}

.benefit-box-title strong {
    font-size: var(--font-45);
    font-weight: 800;
    display: block;
    text-transform: none;
}

.about-box-container {
    padding-top: 66px;
    padding-bottom: 76px;
    background: #f8f8f8;
}

.about-box {
    display: flex;
    align-items: center;
}

.about-left {
    width: 100%;
}

.about-content {
    width: 66%;
    align-items: center;
    display: flex;
}

.about-middle {
    width: 43%;
    text-align: center;
    margin-bottom: 90px;
    padding-left: 25px;
}

.about-right {
    width: 57%;
    padding-left: 20px;
    padding-bottom: 95px;
}

.about-box-title {
    font-size: var(--font-50);
    color: #000;
    font-weight: 300;
    line-height: 121%;
    margin-bottom: 33px;
}

.about-box-title strong {
    font-weight: 800;
    color: #8edbf4;
    display: block;
}

.cloud-box {
    background: url(../images/cloud_blue.png) no-repeat top center;
    width: 202px;
    height: 238px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    float: right;
    margin-bottom: calc((var(--space-60) + 14px) * -1);
}

.cloud-text {
    font-size: 20px;
    color: #000;
    text-align: right;
    padding: 25px 25px 66px;
    line-height: 28px;
}

img.slogan {
    float: left;
    max-width: 100%;
}

.about-middle img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.about-box .text.txt {
    font-size: 14px;
    line-height: 27px;
    margin-bottom: 83px;
}

.about-right .cloud-box {
    margin-right: 107px;
}

.gallery-slider .slick-arrow {
    background: transparent;
    position: absolute;
    width: 50px;
    height: 50px;
    border: 0 none;
    margin-top: -25px;
    font-size: 29px;
    -webkit-text-fill-color: #000;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 1);
    transition: none;
}

@media screen and (min-width: 1140px) {
    .gallery-slider .slick-arrow:hover {
        -webkit-text-fill-color: #8edbf4;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #8edbf4;
    }
}

.gallery-slider .slick-arrow.slick-prev {
    top: 50%;
    left: -100px;
}

.gallery-slider .slick-arrow.slick-next {
    top: 50%;
    right: -100px;
}

.gallery-slider .gallery-list-item {
    padding: 0;
}

.gallery-slider .gallery-list {
    margin: 0;
}

.photo-about img {
    display: block;
    max-width: 100%;
}

.gallery-slider .gallery-picture-hover {
    display: none !important;
}

.photo-about {
    width: 75.8%;
    display: block;
}

.team-box-title {
    font-size: var(--font-18);
    color: #000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-weight: 500;
    line-height: 243%;
    padding-bottom: 10px;
    margin-bottom: 65px;
}

.team-box-title strong {
    font-size: var(--font-40);
    font-weight: 800;
    display: block;
    text-transform: none;
}

.person-item {
    width: 50%;
    display: flex;
}

.person-box {
    display: flex;
    flex-wrap: wrap;
}

.person-photo {
    width: 50%;
}

.person-photo img {
    display: block;
    max-width: 100%;
}

.person-content {
    width: 50%;
    position: relative;
    height: 100%;
    padding: 24px 7% 77px 4%;
}

.person-name {
    font-size: var(--font-18);
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.person-content .text.txt {
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.person-content .social-box {
    position: absolute;
    bottom: 37px;
}

.person-item:nth-child(4n+3) {
    flex-direction: row-reverse;
}

.person-item:nth-child(4n+4) {
    flex-direction: row-reverse;
}

.gallery-box-container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-heading-title {
    font-size: var(--font-40);
    color: #000;
    font-weight: 800;
    margin-bottom: 40px;
}

.subpage .about-box-container {
    padding-top: 40px;
    padding-bottom: 54px;
    background: transparent;
}

.subpage #content {
    padding-top: 108px;
}

.subpage .about-box-container .about-box-title {
    font-size: var(--font-40);
}

.subpage .about-box-container .about-box .text.txt {
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 30px;
}

.subpage .about-box-container .about-left {
    padding-right: 28px;
}

.subpage .about-box-container .about-right {
    padding-bottom: 0;
}

.subpage .about-box-container .about-middle {
    margin-top: 120px;
    margin-bottom: 0;
}

.team-box-container {
    padding-top: 65px;
    padding-bottom: 80px;
    background: #f9f9f9;
}

.product-details-box {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f7f7f7;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-details-left {
    width: 62%;
}

.product-calculator {
    width: 29.5%;
    padding: 60px 30px 50px;
    border: 3px solid #8edbf4;
    background: #fff;
}

.product-calculator .meet-box {
    background-size: contain;
    width: 144px;
    margin: 0 auto;
    height: auto;
}

.product-details .page-heading-title {
    margin-bottom: 125px;
}

.check-box.check-box-small {
    background: url(../images/cloud_blue2.png) no-repeat top center;
    width: 142px;
    height: 167px;
    margin: 0 auto 35px;
}

.check-box.check-box-small .check-box-text {
    color: #000;
    font-size: 20px;
    padding-bottom: 30px;
    line-height: 119%;
    padding-left: 18px;
}

.product-calculator .calculator-time-box .calculator-caption {
    color: #000;
}

.product-calculator .calculator-time-box {
    width: 100%;
    margin-bottom: 14px;
}

.product-calculator .calculator-time {
    border-left: 1px solid #e8e8e8;
}

.product-calculator .calculator-initial {
    width: 100%;
}

.product-calculator .calculator-initial .calculator-caption {
    color: #000;
}

.product-calculator .calculator-value {
    border-color: #e8e8e8;
    display: inline;
    padding: 8px 48px;
    font-weight: bold;
    font-size: var(--font-20);
}

.product-calculator .calculator-legend {
    color: #000;
}

.product-calculator .calculator-initial {
    width: 100%;
}

.product-calculator .calculator-initial .calculator-caption {
    color: #000;
}

.product-calculator .calculator-value {
    border-color: #e8e8e8;
    display: inline;
    padding: 8px 48px;
    font-weight: bold;
    font-size: var(--font-20);
}

.product-calculator .calculator-legend {
    color: #000;
}

.product-calculator .calculator-summary-left {
    width: 100%;
    flex-direction: column;
    color: #000;
    justify-content: center;
}

.product-calculator .calculator-summary {
    flex-direction: column;
    /*border-top: 1px solid #e8e8e8;*/
    padding-top: 23px;
}

.product-calculator .calculator-summary-left strong {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
}

.product-details-info {
    display: flex;
    justify-content: space-between;
}

.product-photo {
    width: 42%;
}

.product-photo img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.product-details-content {
    width: 48.5%;
}

.product-details-content .offer-size {
    position: relative;
    margin-bottom: 45px;
    top: auto;
    opacity: 1;
    right: auto;
    font-size: 28px;
    font-weight: bold;
}

.product-details-title-small {
    font-size: 24px;
    line-height: 124%;
    margin-bottom: 34px;
}

.product-details-content .text.txt {
    font-size: 14px;
}

.space-box-container {
    padding-top: 55px;
    padding-bottom: 11px;
}

.space-box-title {
    font-size: 24px;
    font-weight: 800;
    display: block;
    text-align: center;
    margin-bottom: 13px;
}

.space-box-header .text.txt {
    font-size: 15px;
    max-width: 860px;
    margin: 0 auto 30px;
}

.space-box-header {
    padding-bottom: 41px;
}

.space-box-container .container {
    max-width: 1350px;
}

.space-item {
    width: 72%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.space-photo {
    position: relative;
    width: 26%;
    border-radius: 50%;
}

.space-content-title {
    font-weight: 300;
    font-size: var(--font-18);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 17px;
}

.space-box-container {
    position: relative;
}

.space-box-container::before {
    /*background: url("../images/slogan.png") center center;*/
    /*background-repeat: no-repeat;*/
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*filter: opacity(0.05);*/
    /*display: block;*/
    /*z-index: -1;*/
    /*margin-top: 40px;*/
    /*background-size: 73%;*/
    /*content: "";*/
}

.space-content {
    width: 65%;
    display: flex;
    flex-direction: column;
}

.space-photo img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.space-content .text.txt {
    margin-bottom: 9px;
    font-size: 15px;
    line-height: 27px;
}

.space-box:nth-child(even) {
    align-items: flex-end;
    justify-content: flex-end;
}

.space-box {
    display: flex;
    margin-bottom: 49px;
}

.space-box:nth-child(even) .space-item {
    flex-direction: row-reverse;
}

.space-box:nth-child(even) .space-content {
    text-align: right;
}

.technical-box-container {
    padding-top: 55px;
    padding-bottom: 77px;
    background: #f7f7f7;
}

.technical-box-title {
    font-size: 24px;
    font-weight: 800;
    display: block;
    text-align: center;
    margin-bottom: 13px;
}

.technical-box-header .text.txt {
    text-align: center;
    font-size: 15px;
    max-width: 860px;
    margin: 0 auto 30px;
}

.technical-box-container .container {
    max-width: 1030px;
}

.technical-box-header {
    padding-bottom: 28px;
}

.technical-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.technical-photo {
    width: 43%;
}

.technical-photo img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.technical-data {
    width: 39%;
    margin-top: 40px;
}

.technical-item {
    align-items: flex-start;
    display: flex;
    margin-bottom: 47px;
}

.technical-icon {
    width: 13%;
    margin-top: 7px;
}

.technical-icon img {
    display: block;
    max-width: 100%;
}

.technical-text {
    font-size: 15px;
    width: 87%;
    padding-left: 22px;
}

.technical-text strong {
    display: block;
    margin-bottom: 8px;
}

.technical-table-container .container {
    max-width: 1350px;
}

.technical-table-container {
    padding-top: 56px;
    padding-bottom: 32px;
}

.technical-table table {
    width: 100%;
    margin: 0;
}

.technical-table table th {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 29px;
    background: #8edbf4;
}

.technical-table table td {
    font-size: 15px;
    padding: 10px 28px 10px;
    border: 0 none;
}

.technical-table table td:first-child {
    font-weight: bold;
}

.technical-table table tr:nth-child(odd) {
    background: #f7f7f7;
}

.technical-table table tr:nth-child(even) {
    background: transparent;
}

.files-box-container {
    padding-top: 52px;
    padding-bottom: 55px;
    background: #f7f7f7;
}

.files-box-container .container {
    max-width: 1350px;
}

.files-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.files-list ul li {
    width: 50%;
    padding: 15px;
    display: flex;
}

.files-list ul li a {
    display: flex;
    border: 1px solid #e5e5e5;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    background: #fff;
    width: 100%;
    padding: 22px 50px 22px 35px;
}

.files-list ul li a span, .files-list ul li a svg {
    transition-duration: 300ms;
    transition-property: color, fill;
}

@media screen and (min-width: 1140px) {
    .files-list ul li a:hover span, .files-list ul li a:hover svg {
        color: #8edbf4;
        fill: #8edbf4;
    }
}

.icon-file {
    width: 84px;
    display: block;
    flex-shrink: 0;
}

.icon-file svg {
    fill: #062255;
    margin-left: -4px;
}

.file-name {
    font-size: 15px;
    color: #000;
    line-height: 30px;
    display: block;
    width: 66%;
}

.btn-download {
    width: 40px;
    display: block;
    padding: 7px;
    flex-shrink: 0;
}

.file-name span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.btn-download svg {
    fill: #062255;
}

.technical-table-title {
    font-size: 24px;
    font-weight: 800;
    display: block;
    text-align: center;
    margin-bottom: 52px;
}

.drawings-box-container {
    padding-top: 53px;
    padding-bottom: 62px;
}

.drawings-box-title {
    font-size: 24px;
    font-weight: 800;
    display: block;
    text-align: center;
    margin-bottom: 53px;
}

.drawing-slide {
    padding: 18px;
}

.drawing-slide img {
    display: block;
    max-width: 100%
}

.drawings-slider {
    margin: -18px;
}

.drawings-slider .slick-arrow {
    background: transparent;
    position: absolute;
    width: 50px;
    height: 50px;
    border: 0 none;
    margin-top: -25px;
    font-size: 29px;
    -webkit-text-fill-color: #000;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 1);
    transition: none;
}

@media screen and (min-width: 1140px) {
    .drawings-slider .slick-arrow:hover {
        -webkit-text-fill-color: #8edbf4;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #8edbf4;
    }
}

.drawings-slider .slick-arrow.slick-prev {
    top: 50%;
    left: -90px;
}

.drawings-slider .slick-arrow.slick-next {
    top: 50%;
    right: -90px;
}

.drawings-box-container + .gallery-box-container {
    background: #f7f7f7;
}

.contact-box-container {
    position: relative;
}

.contact-box-wrapper {
    display: flex;
}

.contact-box {
    width: 37%;
    justify-content: flex-end;
    display: flex;
    padding-top: 50px;
}

.contact-photo {
    width: 63%;
    position: relative;
}

.contact-photo img {
    display: block;
    max-width: 100%;
}

.contact-box-inner {
    max-width: 590px;
    width: 100%;
    padding-left: var(--container-padding);
}

.contact-box .contact-links {
    flex-direction: column;
    margin: 0;
    align-items: flex-start;
    padding-top: 110px;
}

.contact-box .contact-link {
    width: 100%;
    padding: 0;
    align-items: flex-start;
    justify-content: flex-start;
    letter-spacing: 0;
    margin-bottom: 44px;
    font-size: 16px;
}

.contact-box .contact-link .btn-icon * {
    fill: #fff;
}

.contact-box .contact-link .btn-icon {
    background: #8edbf4;
    color: #fff;
    margin-top: 7px;
}

.contact-box .contact-link:nth-child(3n+2) {
    justify-content: flex-start;
}

.contact-box .contact-link .caption {
    font-size: 16px;
    color: #000;
}

.contact-box .contact-link .caption strong {
    font-size: var(--font-18);
}

.form-box-container .container {
    max-width: 1350px;
}

.calculator-form {
    position: relative;
}

.calculator-form .form-box-container::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 36px;
    height: 36px;
    border-right: 9px solid #fffb8a;
    border-bottom: 9px solid #fffb8a;
}

.calculator-form .form-box-container {
    background-color: transparent;
    position: relative;
}

.calculator-form .captcha-refresh i.fa.fa-refresh {
    color: var(--color-primary);
}

.calculator-form .form-box-title::before {

    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    width: 36px;
    height: 36px;
    border-left: 9px solid #fffb8a;
    border-top: 9px solid #fffb8a;
}

.calculator-form .btn.btn-lg.btn-primary .btn-icon {
    width: 46px;
    height: 46px;
    padding: 10px;

}

@media screen and (min-width: 1140px) {
    .calculator-form .btn.btn-lg.btn-primary:hover {
        background: #fff;
        color: #8edbf4;
    }

    .calculator-form .btn.btn-lg.btn-primary:hover .btn-icon * {
        fill: var(--color-primary);
    }
}

.calculator-form .button-row > div {
    display: flex;
    justify-content: center;
}

.calculator-form .btn.btn-lg.btn-primary .btn-icon * {
    fill: #fff;
    transition: fill, 500ms;
}

.calculator-form .btn-close {
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 20px;
    height: 20px;
}

.calculator-form .btn-close:hover span {
    background-color: #8edbf4;
}

.calculator-form .btn-close span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.calculator-form .btn-close span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.calculator-form .btn-close span {
    transition: background-color, 500ms;
    width: 20px;
    height: 3px;
    background: #fffb8a;
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    margin: 0;
}

.calculator-form .btn.btn-lg.btn-primary {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    padding: 10px 16px;
    min-width: 180px;
    height: 46px;
    line-height: 44px;
    background: #8edbf4;
    border-radius: 0;
    border-color: #8edbf4;
}

.calculator-form .form-box-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 30px;
    text-align: left;
    padding-left: var(--space-25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    color: #fffb8a;
}

.form-box-container {
    padding-top: 40px;
    padding-bottom: 50px;
    background: #8edbf4;
}

.form-box-title {
    font-size: var(--font-40);
    font-weight: 800;
    text-align: center;
    color: #fff;
    margin-bottom: 41px;
}

.map-box-container iframe {
    width: 100%;
    height: 680px;
    display: block;
}

.cloud-contact-box {
    position: absolute;
    top: 79px;
    background: url(../images/cloud_blue3.png) no-repeat top center;
    width: 202px;
    height: 238px;
    right: 50%;
    margin: 0 -670px 35px auto;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cloud-contact-text {
    color: #000;
    font-size: 22px;
    padding-bottom: 47px;
    line-height: 119%;
}

.cloud-contact-text strong {
    display: block;
}

.main-slider .slick-list,
.main-slider .slick-track {
    width: 100%;
    display: flex
}

.offer-box-container .slider-arrows {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.offer-box-container .slider-arrows .arrow {
    pointer-events: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
}

.offer-box-container .slider-arrows .arrow .fa {
    font-size: 27px;
    color: #000;
}

@media screen and (min-width: 1140px) {
    .offer-box-container .slider-arrows .arrow:hover .fa {
        color: rgb(0, 91, 127);
    }
}

.offer-box .slick-track {
    display: flex;
}

.space-photo .icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 2;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.space-photo .icon svg, .space-photo .icon svg * {
    fill: var(--color-primary);
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.space-photo .icon svg {
    width: 20%;
}

.main-photo-section img {
    display: block;
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    .space-photo:hover .icon svg {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.product-details .calculator-form .form-box-container .container{
    max-width: unset;
    padding-left: 0;
    padding-right: 0;
}

.product-details .calculator-form .form-box-title{
    color: var(--color-primary);
}
.product-details .calculator-form .form-box-title::before, .product-details .calculator-form .form-box-container::after{
    border-color: var(--color-primary);
}

.product-details .calculator-form .btn-close span{
    background-color: var(--color-primary);
}
@media screen and (min-width: 1140px) {
    .product-details .calculator-form .btn-close:hover span{
        background-color: var(--color-secondary);
    }
}

.product-details .form.contact-form .form-control{
    border-color: var(--color-primary);
}

.product-details .form.contact-form .form-element-name{
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

.product-details .form button.captcha-refresh.btn.btn-default{
    border-color: var(--color-primary);
    width: 44px;
}

.product-details .form .before-consent-row, .product-details .form .after-consent-row, .product-details .form .consent-row label > *, .product-details .form .consent-all{
    color: #000;
}
.product-details .row a{
    color: var(--color-primary);
}

.form button.captcha-refresh.btn.btn-default .fa.fa-spin{
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}
@media screen and (min-width: 1140px) {
    .product-details .form button.captcha-refresh.btn.btn-default:hover .fa{
        color: var(--color-primary);
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        -o-animation-play-state: running;
        animation-play-state: running;
    }
    .form button.captcha-refresh.btn.btn-default:hover .fa.fa-spin{
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        -o-animation-play-state: running;
        animation-play-state: running;
    }
}

.product-details .calculator-form .btn-close{
    margin-top: -30px;
}
