.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}
.animIcon:before {
    content: '';
    display: block;
    padding-top: 100%;
}
.animIcon span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: all 0.4s;
}
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
}
.animIcon.animIcon--close span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.animIcon.animIcon--close span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
}
.animIcon.animIcon--hamburger span.caption {
    top: initial;
    bottom: 0;
    height: initial;
    background-color: transparent;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
}
.animIcon.animIcon--hamburger span:nth-child(1) {
    width: 62.5%;
    margin-top: 0;
}
.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 10px;
}
.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 20px;
}
.animIcon.animIcon--hamburger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 100%;
    margin-top: 13px;
}
.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    /*margin-top: 70%;*/
}
.animIcon.animIcon--hamburger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 13px;
}
.main-menu-button {
    width: 32px;
    margin-left: var(--space-25);
    border: none;
    background: transparent;
}
.main-menu-button:before {
    padding-top: 125%;
}
.main-menu-button.animIcon--hamburger.active span:not(.caption) {
    background-color: #fff;
}
.rwdButton {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: #fff;
    border-radius: 50%;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.4s;
}
.rwdButton .icon {
    height: 32px;
    width: 32px;
}
.rwdButton .animIcon {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    width: auto;
    opacity: 0;
}
.rwdButton > * {
    transition: all 0.4s;
}
.rwdButton.rwdPanel-action-toggle.active {
    background-color: #fff;
    color: var(--color-secondary);
}
.rwdButton .animIcon--close span {
    background-color: var(--color-primary);
}
.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
}
.rwdButton.active > .animIcon--close {
    opacity: 1;
}
.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
}
.rwdPanel {
    overflow-y: auto;
    position: fixed;
    z-index: 1000;
    inset: 0 0 0 auto;
    width: 480px;
    padding: calc(80px + (3 * var(--space-60))) calc(4 * var(--container-padding)) 0 var(--space-50);
    background-color: var(--color-secondary);
    color: #fff;
    pointer-events: none;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.4s;
}
.rwdPanel.active {
    pointer-events: all;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.rwdPanel:before {
    content: '';
    position: absolute;
    inset: calc(3 * var(--space-60)) var(--container-padding) calc(2 * var(--container-padding)) auto;
    aspect-ratio: 0.220566;
    background: url('../images/menu-floating.png') no-repeat center /cover;
    pointer-events: none;
}
header.stickable .rwdPanel {
    z-index: -1;
}
.rwdPanel-scrollLock body {
    position: fixed;
    width: 100%;
    overflow-y: scroll;
}
.rwdMenu > ul {
    text-align: right;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.rwdMenu > ul > li + li {
    margin-top: 26px;
}
.rwdMenu > ul > li > a:hover,
.rwdMenu > ul > li > a:focus,
.rwdMenu > ul > li.active > a {
    color: #8a8a8a;
}

@media screen and (max-width: 1600px) {
    .text-floating{
        font-size: 180px;
    }
    .space-floating {
        width: min(100%, 883px);
    }

    .space-floating.right{
        width: 750px;
    }
}

@media screen and (max-width: 1440px) {
    .text-floating{
        font-size: 160px;
    }
    .page-heading-title{
        font-size: 46px;
    }
    .section-heading-title {
        font-size: 45px;
    }

    .space-floating.right{
        width: 680px;
    }

}

@media screen and (max-width: 1366px) {

}

@media screen and (max-width: 1280px) {
    .text-floating{
        font-size: 140px;
    }
    .section-content:first-child {
        padding-right: calc(2 * var(--space-50));
    }
    .section-content:last-child {
        padding-left: calc(2 * var(--space-50));
    }

}

@media screen and (max-width: 1139px) {
    .text-floating{
        font-size: 110px;
    }
    .logo{
        max-width: 400px;
    }
    .page-heading-title{
        font-size: 42px;
    }
    .section-heading-title {
        font-size: 36px;
    }
    .header-top {
        display: none;
    }
    .header-rwd {
        display: flex;
        align-items: center;
    }
    .user-nav-item + .user-nav-item {
        margin-left: var(--space-25);
    }
    .user-nav-item-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
        background-color: #fff;
        border: 1px solid var(--color-default);
        color: var(--color-secondary);
        font-size: 0;
    }
    .user-nav-item-inner .icon {
        height: 32px;
        width: 32px;
    }
    .container {
        width: 100%;
    }
    .text img {
        max-width: 100% !important;
    }
    .text table tr th,
    .text table tr td {
        padding: 6px 10px;
    }
    #main-menu {
        display: none;
    }
    .lang .langs-menu-short {
        display: none;
    }
    .lang .langs-menu-long {
        display: block;
    }
    .mainsearch-search {
        width: auto;
        margin: var(--container-padding);
    }
    /*TRANSACTION*/
    .page-transactions .floating{
        display: none;
    }

    .gallery-list{
        margin: -3px;
    }
    .gallery-list-item {
        padding: 3px;
    }

    .contact-list .caption{
        font-size: 18px;
    }
}

@media screen and (max-width: 960px) {
    .services li {
        width: 50%;
    }
    .section-heading-title {
        font-size: 32px;
    }
    .gallery-list-item{
        width: 33.3333%;
    }
}

@media screen and (max-width: 900px) {
    .logo{
        max-width: 360px;
    }
    .about-shot-inner{
        flex-direction: column;
    }

    .about-short-content{
        padding-right: 0;
        width: 100%;
    }

    .about-short-image{
        display: none;
    }

    .page-heading-title{
        font-size: 38px;
    }
    .contact-list {
        display: inline-block;
    }
    .section-transaction-heading {
        position: static;
        padding: 0;
        margin-bottom: var(--space-50);
    }
    .section-inner {
        display: flex;
        flex-direction: column;
    }
    .section-image {
        display: none;
    }
    .section-content {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .footer-bar {
        text-align: center;
        line-height: normal;
    }
    .footer-bar-inner.footer-bar-inner > * {
        float: none;
        display: inline-block;
        vertical-align: middle;
        margin-left: 15px;
        margin-right: 15px;
    }
    .footer-bar-links.footer-bar-links {
        display: block;
        margin: -3px -8px;
    }
    .footer-bar-links:not(:last-child) {
        margin-bottom: 3px;
    }
    .footer-bar-links > li {
        margin: 3px 8px;
        line-height: 20px;
    }
    .copyright,
    .copyright-undicom {
        margin-top: 4px;
        margin-bottom: 4px;
        line-height: 20px;
    }

    .section-space .text-floating{
        bottom: -15px;
    }
}

@media screen and (max-width: 767px) {
    .text-floating{
        font-size: 90px;
    }
    .page-heading-title{
        font-size: 36px;
    }
    .page-transactions .transaction-list{
        margin-bottom: 25px;
    }
    .transaction-floating {
        display: none;
    }
    .transaction,
    .page-transactions .transaction{
        width: 370px;
        max-width: 100%;
        flex-direction: column;
    }
    .page-transactions .transaction-image,
    .transaction-image {
        width: 100%;
    }
    .transaction-content {
        width: 100%;
        padding: var(--space-40) var(--space-25) 0;
    }
    .page-transactions .transaction-content{
        padding-left: 0;
    }
    .transaction-list li + li .transaction {
        margin-top: var(--space-50);
    }

    .section-icons li{
        width: 50%;
    }

    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }
    .text .table-responsive {
        margin: 0;
        border: none;
    }
    .text table {
        margin: 0;
        min-width: 780px;
    }
    .text .table-responsive-wrapper:after {
        content: '';
        position: absolute;
        inset: auto 0 0;
        height: 45px;
        background: url('../images/rwd-table-hand.png') no-repeat right 15px center /contain;
        animation: rwd-hand-move 1.5s linear infinite alternate;
        -webkit-animation: rwd-hand-move 1.5s linear infinite alternate;
        pointer-events: none;
    }
    @keyframes rwd-hand-move {
        0% {
            transform: translateX(-30px);
        }
        100% {
            transform: translateX(0);
        }
    }
    @-webkit-keyframes rwd-hand-move {
        0% {
            transform: translateX(-30px);
        }
        100% {
            transform: translateX(0);
        }
    }
    .form .form-element-captcha .captcha-image-wrapper {
        margin-bottom: 15px;
    }

    .logo{
        display: none;
    }
}

@media screen and (max-width: 639px) {
    .text-floating{
        font-size: 70px;
        bottom: 0 !important;
    }
    .logo{
        max-width: 300px;
    }

    .page-service-bottom img{
        width: 100%;
    }

    .page-heading-title{
        font-size: 32px;
    }
    .services li {
        width: 100%;
    }
    .service {
        max-width: 100%;
    }
    .mainSlider-scroll {
        display: none;
    }
    .mainSlider-slide {
        /*min-height: 320px;*/
    }mainSlider-slide
    .text img {
        max-width: 100% !important;
        width: inherit !important;
        height: auto !important;
    }
    .text table,
    .text iframe,
    .text object {
        max-width: 100% !important;
        width: 100% !important;
    }
    .article-image {
        display: block;
        float: none;
        margin-right: 0;
        margin-bottom: var(--space-50);
        width: 100%;
        max-width: 100%;
    }
    .breadcrumb > li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }
    .breadcrumb > li:not(:first-child):not(:last-child) a {
        font-size: 0;
        text-indent: -1000px; /* Apple */
    }
    .breadcrumb > li:not(:last-child) a span {
        display: none;
    }
    .breadcrumb > li:not(:first-child):not(:last-child) a:after {
        content: "...";
        font-size: 12px;
    }
    .breadcrumb > li + li:before {
        padding: 0 6px;
    }
    .breadcrumb > li:first-child a {
        font-size: 0 !important;
        letter-spacing: 0 !important;
    }
    .breadcrumb > li:first-child a:after {
        content: "\f015";
        display: inline-block;
        font-family: 'FontAwesome';
        font-size: 12px;
    }
}

@media screen and (max-width: 560px) {
    .gallery-list-item{
        width: 50%;
    }
    .logo{
        max-width: 230px;
    }
    .page-heading-title{
        font-size: 26px;
    }
    .text {
        line-height: 30px;
    }
    .icons {
        margin: calc(-1 * var(--space-25));
    }
    .icon-caption strong {
        font-size: 18px;
    }
    .icon-caption span{
        font-size: 18px !important;
    }
    .icons li {
        padding: var(--space-25);
    }
    .mainSlider-text {
        font-size: 16px;
    }
    .rwdPanel {
        width: 340px;
    }
    .text {
        word-wrap: break-word;
    }
    .pagination-wrapper ul li {
        padding: 0 5px;
    }
}

@media screen and (max-width: 480px) {

    .contact-list .icon,
    .contact-list .social-icon > svg {
        height: 56px;
        width: 56px;
    }
    .contact-list .caption {
        font-size: 18px;
    }
    .service-title {
        font-size: 17px;
    }
    .section-heading-title {
        font-size: 26px;
    }
}

@media screen and (max-width: 420px) {
    .text-floating{
        font-size: 60px;
    }
    .service-title {
        font-size: 15px;
    }
    .logo{
        max-width: 160px;
    }
    .page-heading-title{
        font-size: 26px;
    }
    .contact-list .caption {
        font-size: 16px;
    }
    .transaction-content > ul > li {
        font-size: 14px;
    }
    .footer-bar-inner.footer-bar-inner > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
    .pagination-wrapper ul li a,
    .pagination-wrapper ul li span {
        padding: 5px;
    }

    .page-service .service-title{
        padding-left: 50px;
    }

    .section-icons li{
        width: 100%;
    }
}

@media screen and (max-width: 360px) {
    .contact-list .caption {
        font-size: 14px;
    }
    .rwdPanel {
        width: 280px;
    }
}

@media screen and (max-width: 319px) {
    body {
        width: 320px;
    }
}

/* --------------- GLOBAL VARIABLES --------------- */

@media screen and (max-width: 1600px) {
    :root {
        --space-60: 55px;
        --space-50: 45px;
        --space-40: 35px;

        --font-48: 40px;
        --font-36: 32px;
        --font-30: 26px;
        --font-24: 22px;
    }
}

@media screen and (max-width: 1440px) {
    :root {
        --space-60: 50px;
        --space-50: 40px;

        --font-48: 36px;

        --container-padding: 30px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --space-25: 20px;

        --font-48: 34px;
        --font-36: 28px;
        --font-30: 24px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --space-60: 40px;
        --space-50: 35px;
        --space-40: 30px;

        --font-48: 32px;

        --container-padding: 20px;
    }
}

@media screen and (max-width: 1139px) {
    :root {
        --space-60: 35px;
        --space-50: 30px;
        --space-40: 25px;
        --space-25: 15px;
    }
}

@media screen and (max-width: 960px) {
    :root {
        --space-60: 30px;
        --space-50: 25px;
        --space-40: 20px;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --container-padding: 15px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-48: 30px;
        --font-36: 24px;
        --font-30: 22px;
        --font-24: 18px;
    }
}

@media screen and (max-width: 420px) {
    :root {
        --font-48: 24px;
        --font-36: 20px;
        --font-30: 20px;
        --font-24: 16px;
    }
}