/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    .rwdPanel {
        display: none;
    }

    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: none !important;
    }
}

@media screen and (max-width: 1139px) {
    .rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        /* Closed: */
        pointer-events: none;
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
    }

    header.stickable .rwdPanel {
        z-index: -1;
    }

    .rwdPanel.active {
        pointer-events: all;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
    }

    .rwdPanel-scrollLock body {
        position: fixed;
        width: 100%;
        overflow-y: scroll;
    }
}

/**
 * RWD MENU
 */

.rwdMenu {
    font-size: 1rem;
}

.rwdMenu ul {
    display: block;
    width: 100%;
    padding: 0;
}

.rwdMenu:not(:first-child) > ul {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu + .rwdMenu > ul {
    border-top: none;
}

.rwdMenu ul ul {
    display: none;
    box-shadow: inset 0 3px 5px -1px rgba(0, 0, 0, 0.12);
    background-color: rgba(0, 0, 0, 0.1);
}

.rwdMenu li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu li.slided {
    border-bottom: none;
}

.rwdMenu a {
    color: inherit;
}

.rwdMenu li > *:first-child {
    flex: 1 0 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 46px;
    padding: 5px var(--container-padding);
    text-align: left;
    word-break: break-word;
    color: #000;
    border: none;
}

.rwdMenu li > *:first-child:hover {
    text-decoration: none;
}

.rwdMenu li.active > *:first-child {
    font-weight: 700;
    color: var(--color-primary);
}

.rwdMenu > ul > li > *:first-child {
    text-transform: uppercase;
}

.rwdMenu > ul > li > ul {
    font-size: 0.875rem;
}

.rwdMenu > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 15px);
}

.rwdMenu > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 30px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 45px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 60px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 75px);
}

.rwdMenu li > *:first-child > .fa,
.rwdMenu li > *:first-child > .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px -9px;
}

.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
}

.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}

.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

.rwdMenu .rwdMenu-count {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 14px;
    color: #000;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.rwdMenu .user-nav li + li:before {
    display: none;
}

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}

.cloneMenu-toggle::before {
    content: "\f107";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}

.cloneMenu-toggle.active::before {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.rwdPanel .social-list {
    margin: 15px 0;
    text-align: center;
}

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 15px 15px 15px 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s;
}

.rwdButton .animIcon {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    width: auto;
}

.rwdButton > * {
    transition: all 0.5s;
}

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

.rwdButton .animIcon--close span {
    background-color: #fff;
}

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

/* --------------- BREAKPOINTS --------------- */

@media screen and (max-width: 1760px) {
    /*FOOTER*/
    .footer-floating {
        width: 17.1875vw;
    }


}

@media screen and (max-width: 1600px) {
    .header-contact {
        font-size: 12px;
    }

    .text.header-top-text {
        font-size: 12px;
    }

    header .social-list > .caption {
        font-size: 12px;
    }

    .header-contact li + li {
        padding-left: 15px;
        margin-left: 15px;
    }

    .logo {
        max-width: 170px;
    }

    /*MENU*/
    .icon-item {
        padding: 20px;
    }

    .section-icons-left {
        margin: -20px;
    }

    .section-icons-right {
        padding-left: calc(var(--space-60) * 2);
        align-self: flex-start;
    }

    .newsletter-left {
        padding-right: var(--space-50);
        padding-left: var(--space-50);
    }

    .icon-item-icon {
        height: 100px;
        width: 100px;
    }

    /*CONTACT*/
    .contact-floating {
        position: static;
        width: 22%;
        transform: none;
        -webkit-transform: none;
    }

    div[class^='contact-col-'] {
        width: 26%;
    }

    .section-contact-inner {
        width: 100%;
        max-width: initial;
    }

    .contact-text {
        padding: 10px;
    }

    .contact-inner a {
        margin-top: 0;
        word-break: break-all;
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact-icon + .text.contact-text {
        margin-top: 5px;
    }

    .mainImage-scroll {
        font-size: 15px;
    }

    .mainImage-scroll .icon {
        height: 66px;
        width: 66px;
    }
}

@media screen and (max-width: 1440px) {
    header .social-list > .caption {
        margin-right: 10px;
    }

    .header-top-inner > .social-list {
        padding-left: 10px;
    }

    .page-heading-title--sm {
        font-size: var(--font-30);
    }

    .mainImage-scroll {
        font-size: 14px;
    }

    .mainImage-scroll .icon {
        height: 58px;
        width: 58px;
    }

    .text.header-top-text {
        font-size: 12px;
        font-weight: 500;
    }

    /*MENU*/
    .header-contact li + li {
        margin-left: 10px;
        padding-left: 10px;
    }

    #main-menu li {
        font-size: 14px;
    }

    header .btn-gradient {
        padding: 0 12px;
    }

    /*INDEX*/
    .offer-item {
        padding: 10px;
    }

    .section-offer-list-inner {
        margin: -10px;
    }

    .section-blog-inner-list {
        width: 50%;
        padding-left: var(--space-25);
    }

    .blog-item-content {
        padding-left: 0;
    }

    .blog-item-image {
        width: 170px;
        margin-right: 15px;
    }

    .section-blog-list-inner {
        width: 60%;
    }

    /*FOOTER*/
    .footer-logo {
        width: 100%;
    }

    .footer-floating {
        top: 60%;
    }

    .footer-contact {
        font-size: 16px;
    }

    .footer-contact-icon {
        height: 40px;
        width: 40px;
    }

    .footer-col-2 {
        width: 33%;
    }

    .footer-col-4 {
        width: 26%;
    }
}

@media screen and (max-width: 1280px) {
    .footer-col-2 {
        width: 35%;
    }

    #main-menu li + li {
        margin-left: 10px;
    }

    .newsletter-form .form-control-feedback {
        right: 44px;
    }

    header .btn-gradient {
        min-width: 110px;
    }


    /*MENU*/
    .header-contact li:first-of-type {
        display: none;
    }

    .header-contact li + li:before {
        display: none;
    }

    .header-contact li:nth-child(3)::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 10px;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    .logo {
        max-width: 150px;
    }

    header .btn-gradient .icon {
        height: 36px;
        width: 36px;
        margin: -8px -4px -8px -11px;
    }


    /*INDEX*/
    .mainImage-inner {
        position: static;
        padding: var(--space-50) var(--container-padding) calc(2 * var(--space-40));
        min-height: 440px;
    }

    .mainImage-background {
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .mainImage-scroll {
        font-size: 14px;
    }

    .mainImage-scroll .icon {
        height: 58px;
        width: 58px;
    }

    .mainImage-section-heading-title {
        font-size: 16px;
    }

    .mainImage-content {
        max-width: 300px;
    }

    .mainImage-content .btn {
        min-height: 40px;
        min-width: 120px;
        padding: 0 calc(var(--space-25) + 5px);
        border-radius: 23px;
        font-size: 12px;
        font-weight: 500;
    }

    .mainImage-background > img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .section-offer-inner {
        margin: -10px;
    }

    .offer-item-title {
        font-size: 16px;
    }

    .newsletter-floating {
        width: 300px;
    }

    .section-newsletter-inner {
        padding: var(--space-50) 0;
        padding-left: 300px;
    }

    .newsletter-right {
        width: 300px;
    }

    .section-newsletter .form-control-email {
        height: 52px;
        padding: 6px 80px 6px 20px;
    }

    .newsletter-left .icon {
        height: 190px;
        width: 190px;
        margin: -52px;
    }

    .section-newsletter .newsletter-form .btn {
        height: 52px;
        width: 52px;
    }

    .section-icons-left {
        margin: -10px;
    }

    .icon-item {
        padding: 10px;
    }

    .section-contact-map:before {
        padding-top: 50%;
    }

    .section-about .social-list .caption {
        font-size: 22px;
        padding-right: 10px;
    }

    /*OFFER*/
    .section-files-inner {
        margin: -5px;
    }

    .btn-filter-hollow {
        min-width: 150px;
    }

    /*TEXT*/
    .file-item {
        width: 33.3333%;
        padding: 5px;
    }

}

@media screen and (max-width: 1139px) {
    .socialText-wrapper {
        display: block;
    }

    .page-heading-title--sm {
        font-size: var(--font-24);
    }

    .header-center {
        justify-content: flex-end;
    }

    .footer-col-4 {
        width: 100%;
        order: -1;
        margin-bottom: var(--space-40);
    }

    .footer-logo {
        margin-top: 0;
    }

    .footer-col-2 {
        flex-grow: 1;
    }

    .footer-col-1 {
        width: 20%;
    }

    .footer-col-3 {
        margin-left: 0;
        width: 28%;
    }

    .offer-icons-list .offer-icon {
        width: 20%;
    }

    /*MENU*/
    #content {
        padding-top: 69px;
    }

    header .btn-gradient {
        min-height: 40px;
    }

    .header-top {
        display: none;
    }

    .rwd-buttons {
        display: flex;
        align-items: center;
    }

    .header-contact li {
        font-size: 0;
    }

    .header-contact li a {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: center;
    }

    .header-contact li .icon {
        margin: 0;
    }

    .header-contact li + li {
        margin-left: 0px;
        padding-left: 10px;
    }

    .main-menu-button {
        margin: 18px 0 18px 10px;
    }

    .social-item {
        border-bottom: none !important;
    }

    .rwdMenu .social-list > .caption {
        display: none;
    }

    .social-icon {
        padding: 0;
    }

    .social-item a {
        padding: 0 !important;
    }

    .rwdPanel .social-list {
        margin: 0;
        text-align: left;
        display: inline-flex;
        flex-direction: column;
    }

    .rwdPanel .social-list .caption {
        padding-right: 0;
        margin-bottom: 5px;
    }

    .rwdPanel .social-icon {
        width: 50px;
        height: 50px;
    }

    /*INDEX*/
    .mainImage-scroll {
        display: none;
    }

    .offer-item {
        width: 25%;
    }

    .newsletter-floating {
        display: none;
    }

    .newsletter-left {
        padding: 0;
    }

    .section-newsletter-inner {
        padding-left: 0;
    }

    .newsletter-left .icon {
        height: 160px;
        width: 160px;
        margin: -45px;
    }

    .newsletter-left-content {
        padding-left: var(--space-40);
        padding-right: 0;
    }

    .newsletter-left {
        padding-right: var(--space-40);
        padding-left: var(--space-40);
    }

    .icon-item-icon {
        height: 80px;
        width: 80px;
    }

    .section-icons-right {
        padding-left: 40px;
    }

    .section-about .social-list > ul {
        display: flex;
    }

    .social-item {
        display: block;
    }

    /*BLOG*/
    .section-blog-list-inner {
        width: 100%;
    }

    .blog-floating {
        display: none;
    }

    /*CONTACT*/
    .contact-icon {
        height: 45px;
        width: 45px;
    }

    .contact-inner {
        top: 5px;
        right: 5px;
        bottom: 5px;
        left: 5px;
    }

    .section-contact-inner {
        margin: -5px;
        justify-content: center;
    }

    .contact-floating {
        display: none;
    }

    .contact-floating img {
        margin: 0 auto;
    }

    div[class^='contact-col-'] {
        width: 33.3333%;
        max-width: 300px;
    }

    /*OFFER*/
    .section-filter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-filter-form {
        width: 100%;
    }

    .section-filter-title {
        padding: 0;
        margin-bottom: 15px;
    }

    .section-filter-form-actions {
        width: 80%;
    }

    .btn-filter {
        width: 100%;
        min-width: initial;
    }

    .footer-floating {
        display: none;
    }

    /*TEAM*/
    .team-item-button {
        padding-left: var(--space-40);
    }

    .team-item-content {
        padding: 0 var(--space-40);
    }

    .team-item-image {
        width: 190px;
        height: 190px;
    }

    /*TEXT*/
    .file-item-inner {
        padding: 10px 15px;
    }

    .file-item .icon-pdf {
        height: 80px;
        width: 80px;
        margin: -27px;
    }

    .text.file-item-text {
        padding: 0 15px;
    }

    .text table tr td {
        padding: 6px 10px;
    }

    #main-menu {
        display: none;
    }

    .langs-menu {
        display: none !important;
    }

    .rwd-hide {
        display: none;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
    }

    .container {
        width: 100%;
    }

    .article-image {
        margin-right: 25px;
        margin-bottom: 15px;
    }

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

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

    .mainsearch.rwdPanel .mainsearch-search {
        background-color: #f0f;
    }

    .mainsearch.rwdPanel .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none;
    }

    .mainsearch.rwdPanel .mainsearch-search,
    .mainsearch.rwdPanel .dropdown-menu {
        padding: 15px;
    }

    .mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
        margin-top: 15px;
    }

    .mainsearch.rwdPanel .form-element-container {
        width: calc(100% - 46px);
        flex-grow: 0;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
    }

    .mainsearch.rwdPanel input,
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none;
    }

    .mainImage-content .btn {
        margin-top: calc(1 * var(--space-40));
    }

    .mainImage-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}

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

    .footer-col-content {
        display: flex !important;
    }
}

@media screen and (max-width: 1024px) {
    .footer-contact {
        font-size: 16px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        align-items: flex-start;
    }

    .footer-col-bottom .footer-col-content {
        margin-top: 0;
    }

    .footer-col-content .text {
        max-width: 500px;
        text-align: center;
        margin: 0 auto;
    }

    .section-icons-inner:not(:has(.section-icons-right)) .icon-item {
        width: 50%;
    }

    .footer-logo {
        margin: 0 auto;
        width: 340px;
        max-width: 100%;
        margin-top: 15px;
    }

    .footer-payment {
        margin-top: 0;
    }

    .footer-col-content {
        text-align: center;
        padding-bottom: 15px;
        margin-top: 0;
        display: none;
    }

    .footer-col-top:not(:last-child),
    .footer-cols > div {
        padding: 0;
        border-bottom: 1px solid var(--color-primary);
        margin-bottom: 12px;
    }

    .footer-col-2 .footer-col-content {
        display: none;
        text-align: center;
    }

    .footer-col-3 {
        border: none;
    }

    .footer-col-2:last-child .footer-col-content {
        padding-bottom: 0;
    }

    .footer-cols {
        flex-direction: column;
        margin: 0px;
    }

    .footer-col-2 .footer-col-content > * {
        width: 100%;
    }

    .footer-col-1, .footer-col-2, .footer-col-4 {
        width: 100%;
    }


    .footer-col-title {
        position: relative;
        text-align: center;
        padding-bottom: 12px;
        margin: 0;
    }

    .footer-col-title::after {
        content: '\f107';
        position: absolute;
        right: 20px;
        top: calc(50% - 15px);
        transition: all 0.4s;
        font-family: FontAwesome;
        font-size: 16px;
        color: var(--color-primary);
    }

    .footer-col-title.active::after {
        transform: translate3d(0, 0%, 0) scaleY(-1);
        -webkit-transform: translate3d(0, 0%, 0) scaleY(-1);
        -moz-transform: translate3d(0, 0%, 0) scaleY(-1);
        -ms-transform: translate3d(0, 0%, 0) scaleY(-1);
        -o-transform: translate3d(0, 0%, 0) scaleY(-1);
    }

    .footer-col-3 {
        width: 100%;
        padding-top: 15px;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-contact-icon {
        height: 36px;
        width: 36px;
    }

    .footer-payment-item {
        margin: 0 auto;
    }

    .footer-payment-inner {
        padding-top: 0;
    }

    .text.footer-text + .footer-contact {
        margin-top: 0;
    }
}

@media screen and (max-width: 960px) {
    .section-about-left {
        width: 55%;
    }

    .section-about-right {
        width: 45%;
    }
}

@media screen and (max-width: 900px) {
    .mainImage-image {
        width: 61.0416vw;
        right: 39.1145vw;
    }

    .mainImage {
        min-height: unset;
    }

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

    .mainImage-background > img:not(.img-mobile) {
        display: none;
    }

    .mainImage-background > .img-mobile {
        display: block;
    }

    .page-offer-desc br {
        display: none;
    }

    .offer-view {
        padding-bottom: calc(var(--space-50) + 5px);
    }

    .page-offer-desc p:not(:first-child) {
        margin-top: 20px;
    }

    .page-offer-desc .has-nbsp {
        display: none;
    }

    .title-wrapper .article-image-icon {
        margin: 0;
    }

    .section-article .text-wrapper:before {
        display: none;
    }

    .mainImage .section-heading-title {
        display: none;
    }

    .mainImage .btn.mobile-only {
        font-size: 20px;
        display: flex;
        margin-top: var(--space-60);
        margin-bottom: var(--space-60);
    }

    .title-wrapper .title {
        order: -1;
    }

    .title-wrapper > .btn {
        transform: none;
    }

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

    .title-wrapper {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-40);
    }

    .title-wrapper .btn {
        position: static;
    }

    .newsletter-left-content {
        padding-left: 0;
    }

    .newsletter-left {
        padding-left: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .section-about-bottom .section-about-inner .section-about-left {
        padding-right: 0;
        width: 100%;
    }

    .section-about-bottom .section-about-right {
        width: 100%;
        max-width: 600px;
    }

    .section-about-bottom .section-about-inner {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .offer-icons-list {
        margin: 0 -10px -10px;
    }

    .offer-icons-list .offer-icon {
        padding: 10px;
    }

    /*INDEX*/
    .offer-item {
        width: 33.3333%;
    }

    .section-newsletter-inner {
        display: block;
    }

    .newsletter-right {
        width: 100%;
    }

    .form.newsletter-form {
        margin: var(--space-25) auto 0;
        width: 100%;
        max-width: 420px;
    }

    .newsletter-left {
        padding-right: 0;
    }

    .section-icons-inner {
        flex-wrap: wrap;
    }

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

    .section-icons-right {
        width: 100%;
        padding: 0;
        margin-bottom: calc(2 * var(--space-50));
        order: -1;
    }

    .section-icons {
        padding: calc(2 * var(--space-50)) var(--container-padding);
    }

    .section-blog-featured {
        width: 100%;
    }

    .section-blog-inner {
        flex-wrap: wrap;
    }

    .section-blog-inner-list {
        width: 100%;
    }

    .blog-item.featured .blog-item-image img {
        position: static;
        transform: none;
        -webkit-transform: none;
    }

    .blog-item.featured {
        padding-bottom: calc(var(--space-25) + 5px);
    }

    .section-blog-inner-list {
        padding-left: 0;
    }

    .blog-item-date.alt .date-day {
        font-size: 20px;
    }

    .blog-item-date.alt .date-month {
        font-size: 18px;
    }

    .blog-item-date.alt {
        height: 70px;
        width: 70px;
    }

    /*OFFER*/
    .section-filter-form {
        flex-direction: column;
        align-items: flex-end;
    }

    .section-filter-form-actions {
        width: 100%;
        padding-right: 0;
    }

    .section-filter-form > button.btn {
        margin-top: 20px;
    }

    /*PRICING*/
    .pricing-row-price {
        font-size: 18px;
    }

    /*TEXT*/
    .article-image .blog-item-date.alt {
        height: 60px;
        width: 60px;
    }

    .article-image .blog-item-date.alt .date-day {
        font-size: 20px;
    }

    .article-image .blog-item-date.alt .date-month {
        font-size: 18px;
    }

    .file-item {
        width: 50%;
    }

    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }

    .footer-bar-content > * {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .footer-bar-content.footer-bar-content > * {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footer-bar .footer-bar-links {
        display: block;
        margin: -3px -8px;
    }

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

    .icon-item {
        display: flex;
        align-items: flex-start;
    }
}

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

    .page-heading-text-wrapper .page-heading-text {
        max-height: unset !important;
    }
}

@media screen and (max-width: 767px) {
    .mainImage-content > .btn.mobile-only {
        margin-bottom: auto;
    }
    .page-heading-bottom {
        margin-top: var(--space-50);
    }

    .page-heading.text-left {
        text-align: center;
    }

    .page-heading-text-wrapper .img-wrapper {
        width: 100%;
        max-width: 600px;
    }

    .page-heading-text-wrapper .page-heading-text {
        overflow: hidden;
        max-height: 300px;
    }

    .page-heading-text-wrapper {
        max-height: 100% !important;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .page-heading-bottom {
        display: flex;
        flex-direction: column;
        gap: var(--space-60);
        justify-content: center;
        align-items: center;
    }

    .page-heading .img-wrapper {
        width: 100%;
        padding: 0;
        max-width: 600px;
        margin: var(--space-60) auto 0;
    }

    .offer-icons-list .offer-icon {
        width: 25%;
    }

    /*INDEX*/
    .mainImage-image {
        right: 40%;
        width: 100%;
        max-width: 550px;
    }

    .dot {
        display: none;
    }

    .section-about-inner {
        flex-direction: column-reverse;
    }

    .section-about-left {
        width: 100%;
        padding-right: 0;
    }

    .section-about-right {
        width: 100%;
    }

    .section-about .social-icon {
        height: 40px;
        width: 40px;
    }

    .section-about .social-list .caption {
        font-size: 20px;
        padding-right: calc(var(--space-25));
    }


    /*BLOG*/
    .pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
        display: inline-flex;
        height: 42px;
        width: 42px;
    }

    .pagination-wrapper ul li.next a .icon, .pagination-wrapper ul li.prev a .icon {
        height: 32px;
        width: 32px;
    }

    .pagination-wrapper ul li a {
        padding: 13px 5px;
    }

    .pagination-wrapper ul li a, .pagination-wrapper ul li span {
        line-height: 4px;
    }

    /*CONTACT*/
    .contact-floating::before {
        content: '';
        display: block;
        width: 100%;
        padding-top: 83.6501%;
    }

    .contact-floating img {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 45%;
        height: 100%;
    }

    div[class^='contact-col-'] {
        width: 50%;
    }

    .section-contact-map:before {
        padding-top: 100%;
    }

    /*TEAM*/
    .team-item-button {
        padding-left: 10px;
    }

    .team-item-content {
        padding: 0 10px;
    }

    .team-item-image {
        width: 160px;
        height: 160px;
    }

    .team-item-button .btn {
        width: 100%;
    }

    /*OFFER*/
    /*FOOTER*/
    .footer-logo {
        width: 260px;
    }

    .icon-item {
        width: 100%;
    }

    .section-icons-inner:not(:has(.section-icons-right)) .icon-item {
        width: 100%;
    }

    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .text .table-responsive-wrapper::after {
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45px;
        background-size: contain;
        background-position: right 15px center;
        background-repeat: no-repeat;
        background-image: url(../images/rwd-table-hand.png);
        -webkit-animation-name: rwd-hand-move;
        animation-name: rwd-hand-move;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    .text .table-responsive {
        margin: 0;
        border: none;
    }

    .text table {
        margin: 0;
        min-width: 780px;
    }

    @keyframes rwd-hand-move {
        0% {
            transform: translateX(-30px);
        }
        100% {
            transform: translateX(0);
        }
    }
    @-webkit-keyframes rwd-hand-move {
        0% {
            transform: translateX(-20px);
        }
        100% {
            transform: translateX(0);
        }
    }
    .form .form-element-captcha .captcha-image-wrapper {
        margin-bottom: 15px;
    }

    .mainImage-inner {
        aspect-ratio: 767 / 558;
        width: 100%;
        min-height: 530px;
    }

    .price-list-table {
        min-width: unset !important;
    }

    .table-responsive-wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }

    .table-responsive-wrapper::after {
        content: unset !important;
    }
}

@media screen and (min-width: 706px) {
    footer .show-hide {
        display: block !important;
    }
}

@media screen and (max-width: 639px) {
    header .btn-gradient .desktopCaption {
        display: none;
    }

    .contact-col-1 .contact-inner .text{
        font-size: 17px;
        font-weight: 500;
    }
    header .btn-gradient .rwdCaption {
        display: block;
    }

    .article-image-icon {
        max-width: 130px !important;
        aspect-ratio: 1;
        margin: 0 auto;
    }

    .article-text table th {
        font-size: 18px;
    }

    .article-text table td:nth-child(1) {
        font-size: 14px;
    }

    .article-text table td:nth-child(2) {
        font-size: 17px;
    }

    /*INDEX*/
    .offer-item-title {
        font-size: 15px;
    }

    .newsletter-left .icon {
        height: 130px;
        width: 130px;
        margin: -36px;
    }

    /*ABOUT*/
    .gallery-list-item {
        width: 50%;
        padding: 3px;
    }

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

    /*PRICING*/
    .pricing-row-price {
        font-size: 16px;
    }

    .pricing-category-inner {
        padding: 15px 10px;
    }

    .pricing-row-title {
        padding-right: 5px;
    }

    /*TEAM*/
    .team-item-inner {
        flex-wrap: wrap;
    }

    .team-item-button {
        width: 100%;
        border: none;
        padding: 0;
        margin-top: var(--space-25);
        justify-content: center;
    }

    .team-item-content {
        width: calc(100% - 160px);
        padding-right: 0;
    }

    /*TEXT*/
    .article-image .blog-item-date.alt {
        line-height: initial;
    }


    .text img {
        max-width: 100%;
        max-width: 100% !important;
        width: inherit;
        width: inherit !important;
        height: auto;
        height: auto !important;
    }

    .text table,
    .text iframe,
    .text object {
        max-width: 100%;
        max-width: 100% !important;
        width: 100%;
        width: 100% !important;
    }

    .article-image {
        margin-top: 0;
        width: 100%;
        display: block;
        float: none;
        max-width: none;
        text-align: center;
        line-height: 0;
    }

    .article-image + .article-content {
        margin-top: calc(var(--space-60));
    }

    .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, sans-serif;
        font-size: 12px;
    }
}

@media screen and (max-width: 560px) {
    .mainImage-inner {
        aspect-ratio: unset;
        width: 100%;
        min-height: 430px;
    }

    .mainImage-image {
        right: 40%;
        width: 100%;
        max-width: 360px;
    }

    .offer-icons-list .offer-icon {
        width: 33.333%;
    }

    /*MENU*/
    .rwd-buttons {
        padding-left: 10px;
    }

    .header-contact li a {
        width: 32px;
        height: 32px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: center;
    }

    header .btn-gradient {
        padding: 0 7px;
        min-height: 30px;
        min-width: unset;
    }

    header .rwd-buttons > .btn-gradient {
        font-size: 12px;
    }


    /*INDEX*/
    .mainImage-content .btn.btn-lg {
        min-height: 38px;
        min-width: 120px;
        padding: 0 23px;
    }

    .offer-item {
        width: 50%;
    }

    .icon-item {
        width: 100%;
    }

    .blog-item-date.alt .date-day {
        font-size: 13px;
    }

    .blog-item-date.alt .date-month {
        font-size: 11px;
    }

    .blog-item-date.alt {
        height: 40px;
        width: 40px;
    }

    /*CONTACT*/
    .contact-inner a {
        font-size: 12px;
    }

    .contact-icon + .text.contact-text {
        margin-top: 0px;
    }

    .contact-inner .text {
        line-height: 25px;
    }

    /*PRICING*/
    .pricing-category-title {
        min-height: 44px;
        font-size: 18px;
    }

    .pricing-row {
        flex-direction: column;
        text-align: center;
    }

    .pricing-category-inner {
        padding: 15px 5px;
    }

    /*TEAM*/
    .team-category-heading-inner .btn-lg {
        width: 38px;
        height: 38px;
        min-height: initial;
    }

    .team-category-heading .btn .icon {
        height: 35px;
        width: 35px;
    }

    .team-category-heading-inner {
        padding: 0 50px;
    }

    /*FOOTER*/
    .footer-logo {
        width: 200px;
    }

    /*TEAM*/
    .team-item-image {
        width: 146px;
        height: 146px;
    }

    .team-item-content {
        width: calc(100% - 146px);
    }

    /*TEXT*/
    .article-image .blog-item-date.alt {
        height: 40px;
        width: 40px;
    }

    .article-image .blog-item-date.alt .date-day {
        font-size: 13px;
    }

    .article-image .blog-item-date.alt .date-month {
        font-size: 11px;
    }

    .file-item {
        width: 100%;
    }

    .text {
        word-wrap: break-word;
    }


    .mainImage-section-heading-title {
        padding-right: calc(2 * var(--space-50));
    }
}

@media screen and (max-width: 480px) {
    .section-about-bottom .section-about-left .social-list {
        display: none;
    }

    .section-about-left .social-list {
        margin-top: var(--space-60);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-25);
    }

    .article-text table th {
        font-size: 16px;
    }

    .article-text table td:nth-child(1) {
        line-height: 1.25;
        font-size: 13px;
    }

    .article-text table td:nth-child(2) {
        line-height: 1.4;

        font-size: 14px;
    }

    .offer-icons-list .offer-icon {
        width: 50%;
    }

    .section-about-content .btn {
        margin-top: 0;
    }

    .section-about-bottom .section-about-content .btn {
        margin-top: var(--space-40);
    }

    .section-icons-left + .section-icons-right {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 460px) {
    /*CONTACT*/
    .contact-floating img {
        left: initial;
    }

    div[class^='contact-col-'] {
        width: 100%;
    }

    /*TEAM*/
    .team-item-content {
        width: 100%;
        padding: 0;
    }

    .team-item-inner {
        justify-content: center;
    }

    .team-item-image {
        margin-bottom: var(--space-25);
    }

    .text.team-item-text {
        margin-top: var(--space-25);
    }

    .blog-item {
        display: block;
    }

    .blog-item.featured .blog-item-title {
        padding: 10px;
    }

    .contact-inner a {
        font-size: 14px;
    }

    .blog-item-image {
        float: none;
        margin: 0;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 420px) {
    .footer-bottom .text {
        font-size: 12px;
    }

    .offer-item-title {
        font-size: 13px;
    }

    .animIcon {
        width: 28px;
    }

    header .rwd-buttons > .btn-gradient {
        font-size: 10px;
    }

    .rwd-buttons {
        padding-left: 8px;
    }

    .header-contact li + li {
        padding-left: 3px;
    }

    /*INDEX*/
    .section-offer-inner {
        margin: -5px;
    }

    .offer-item {
        padding: 5px;
    }


    .newsletter-left-content {
        padding-left: 0;
    }

    .section-newsletter .form-control-email {
        width: 100%;
        height: 44px;
        font-size: 15px;
    }

    .section-newsletter .newsletter-form .btn {
        right: 0;
        height: 44px;
        width: 44px;
    }

    /*BLOG*/
    .pagination-wrapper ul li a, .pagination-wrapper ul li span {
        line-height: 16px;
    }

    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    /*OFFER*/
    .btn-filter {
        padding-left: 36px;
    }

    .btn-filter i {
        left: 12px;
    }

    .btn-filter-hollow {
        min-width: initial;
        width: 50%;
    }

    .icon-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-item-content {
        padding-left: 0;
        padding-top: calc(var(--space-25) + 5px);
    }
}

@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-40: 38px;
        --font-36: 32px;
        --font-30: 26px;
        --font-24: 22px;
    }
}

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

        --font-40: 34px;
        --font-48: 36px;

        --container-padding: 30px;
    }
}

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

        --font-48: 34px;
        --font-40: 32px;
        --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;
        --font-40: 30px;

        --container-padding: 20px;
    }
}

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

        --font-24: 20px;
    }
}

@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;

        --font-48: 30px;
        --font-40: 28px;
    }
}

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

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