@media screen and (min-width: 1921px) {
    body.compensate-for-scrollbar {
        margin-right: auto !important;
    }
}

/**
 * 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%);
        -ms-transform: translateY(100%);
    }

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

    .rwdPanel.active {
        pointer-events: all;
        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:first-child {
    border-top: 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 0;
    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);
    -ms-transform: rotateZ(180deg);
}

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

.rwdMenu .social-list > ul > li a {
    padding: 0;
}

.rwdMenu .social-list > ul > li {
    border: 0 none;
}

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 10px;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s;
    border-radius: 50%;
    background: transparent;
}


.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: transparent;
    border: 0 none;
}


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

.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -ms-transform: scale(0.4);
}

.rwdButton.active > .animIcon--close {
    opacity: 1;
}

.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -ms-transform: scale(0);
}

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

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

.slick-prev {
    left: -10px;
     margin-left: 0;
}

.slick-next {
    margin-right: 0;
    right:-10px;
}
}
@media screen and (max-width: 1670px) {
    .slide-right {
        width: auto;
        margin-right: var(--container-padding);
    }

    ul.slick-dots {
        padding-left: var(--container-padding);
    }

    .news-box {
        margin: -30px -50px;
    }

    .news {
        padding: 30px 50px;
    }

    .mainpage .news {
        padding: 50px;
    }

    .footer-left {
        padding: 80px 5.5% 110px;
    }

    .support-title {
        padding: 0 35px;
    }
	
	body.sticky-footer.contact-page .page-heading-title {
    color: #fff;
    padding: 80px 5.5% 110px;
	}
	
	.scroll {
    right: 10px;
    margin-right: 0;
}
}

@media screen and (max-width: 1600px) {
	
	       body.sticky-footer.contact-page .page-heading-title {
            padding: 70px 4.5% 100px;
        }
		
		
  .mainpage .news-box { margin:-35px;}

    .mainpage .news {
        padding: 35px;
    }

    .news-box {
        margin: -30px -35px;
    }

    .news {
        padding: 30px 35px;
    }

    .footer-left {
        padding: 70px 4.5% 100px;
    }

    #main-menu li a {

        padding: 25px 20px;
    }

    .how-item .text.txt {
        margin-bottom: 30px;
    }

    .how-box .support-link {
        padding: 20px 30px;
    }

    .how-box .support-title {
        margin-bottom: 30px;
    }

    .support-title {
        padding: 0 30px;
    }

    .news-details-container .article-image {
        margin-right: 60px;
    }

    .what-link {
        padding-left: 20px;
        min-height: 160px;
    }

    .what-box .support-icon {
        margin-right: 20px;
    }

    .what-box .support-title {
        font-size: 18px;
    }
	
		.article-image.article-image-circle {
    margin-right: 70px;
}

.lines {
    top: -48px;
}
}

@media screen and (max-width: 1440px) {
    .mainpage .news-box, .news-box {
        margin: -30px;
		       
    }

	    .slick-prev {
        left: 5px;
    }
	
		    .slick-next {
        right: 5px;
    }

    .mainpage .news, .news {
        padding: 30px;
    }


    .footer-left {
        padding: 60px 3.5% 90px;
    }

    .footer-right {
        padding-left: 0;
        padding-top: 200px;
    }

    #main-menu li a {
        padding: 25px 13px;
    }

    .support-title {
        padding: 0 25px;
    }
	
		.article-image.article-image-circle {
    margin-right: 60px;
}
}

@media screen and (max-width: 1366px) {
    .mainpage .news-box, .news-box {
        margin: -25px;
    }
	


    .mainpage .news, .news {
        padding: 25px;
    }

    .footer-left {
        padding: 50px 2.5% 80px;
    }

    img.logo-min {
        max-width: 57%;
        right: -11%;
        top: -9%;
    }

    #main-menu li a {
        padding: 25px 6px;
    }

    .how-item .text.txt {
        margin-bottom: 10px;
    }

    .how-box .support-link {
        padding: 20px 15px;
    }

    .how-box .support-title {
        margin-bottom: 10px;
    }

    .support-title {
        padding: 0 20px;
    }

    .support-icon {
        margin-bottom: 15px;
    }

    .support-link {
        padding-top: 60px;
    }

    .search-box {
        padding: 15px;
    }

    .person-box {
        margin: -20px -30px;
    }

    .person-item {
        padding: 20px 30px;
    }

    .what-box .support-icon {
        margin-right: 15px;
        width: 50px;
        height: 50px;
    }

    .references-box .gallery-list-item {
        padding: 15px;
    }

    .references-box .gallery-list {
        margin: -15px;
    }
	
	    body.sticky-footer.contact-page .page-heading-title {
        padding: 50px 2.5% 80px;
    }
	
		.article-image.article-image-circle {
    margin-right: 50px;
}

.lines {
    top: -27px;
}
}

@media screen and (max-width: 1280px) {
    .mainpage .news-box, .news-box {
        margin: -20px;
    }



    .mainpage .news, .news {
        padding: 20px;
    }

    img.logo-min {
        max-width: 52%;
        right: -5%;
        top: -4%;
    }

    .langs-menu {
        padding-left: 4px;
        margin-left: 8px;
    }

    .logo {
        float: none;
        margin-right: 5px;
    }

    #main-menu li a {
        font-size: 14px;
        padding: 25px 8px;
    }

    .support-title {
        padding: 0 15px;
    }

    .support-link {
        padding-top: 50px;
    }

    .search-box .col-sm-4 {
        padding: 0 15px;
    }

    .search-box .row {
        margin: 0 -15px;
    }

    .person-box {
        margin: -20px -25px;
    }

    .person-item {
        padding: 20px 25px;
    }

    .what-item {
        width: 33.33%;
    }

    .what-item:nth-child(4n+1) {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

    .what-item:nth-child(3n+1) {
        border-left: 0 none;
    }

    .references-box .gallery-list-item {
        padding: 10px;
    }

    .references-box .gallery-list {
        margin: -10px;
    }
	
		.article-image.article-image-circle {
    margin-right: 40px;
}
}

@media screen and (max-width: 1200px) {
    .mainpage .news-box, .news-box {
        margin: -15px;
    }
	
	.news-box:only-child {
    margin-bottom: 7px;
}

    .mainpage .news, .news {
        padding: 15px;
    }

    img.logo-min {
        max-width: 45%;
        right: 1%;
        top: -3%;
    }

    #main-menu li a {
        padding: 25px 5px;
    }

    .support-title {
        padding: 0 10px;
    }

    .support-link {
        padding-top: 40px;
    }

    .person-box {
        margin: -15px -10px;
    }

    .person-item {
        padding: 15px 10px;
    }

    .what-item {
        width: 33.33%;
    }

    .what-item:nth-child(4n+1) {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

    .what-item:nth-child(3n+1) {
        border-left: 0 none;
    }

    .what-item:nth-child(4n+1):last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .what-item:nth-child(4n+1):nth-last-child(2),
    .what-item:nth-child(4n+2):last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .what-item:nth-child(4n+1):nth-last-child(3),
    .what-item:nth-child(4n+2):nth-last-child(2),
    .what-item:nth-child(4n+3):last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .what-item:nth-child(4n+1):nth-last-child(4),
    .what-item:nth-child(4n+2):nth-last-child(3),
    .what-item:nth-child(4n+3):nth-last-child(2),
    .what-item:nth-child(4n):last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }


    .what-item:nth-child(3n+1):last-child {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 0 none;
    }

    .what-item:nth-child(3n+1):nth-last-child(2),
    .what-item:nth-child(3n+2):last-child {
        border-bottom: 0 none;
    }

    .what-item:nth-child(3n+1):nth-last-child(2),
    .what-item:nth-child(3n+2):last-child {
        border-bottom: 0 none;
    }

    .what-item:nth-child(3n+1):nth-last-child(3),
    .what-item:nth-child(3n+2):nth-last-child(2),
    .what-item:nth-child(3n):last-child {
        border-bottom: 0 none;
    }
	
	.article-image.article-image-circle {
    margin-right: 30px;
}

}

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important;
    }

    .footer-content {
        display: block !important;
    }
}

@media screen and (max-width: 1139px) {
    .text table tr td {
        padding: 6px 10px;
    }

    #main-menu {
        display: none;
    }

    .langs-menu {

    }

    .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;
        color: var(--color-primary);
    }

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

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0 30px;
        padding: 0;
    }

    .top, .subpage .top {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .footer-circle {
        width: 90%;
        border-radius: 0;
        padding: 30px;
        height: auto;
    }

    img.logo-min {
        position: relative;
        margin: 0 auto 30px;
        max-width: 50%;
        right: auto;
        top: auto;
    }

    header {
        background: linear-gradient(-61deg, #505b7f 0%, #1f273c 100%);
    }

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

    .slider {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .slider .container {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .slider .slider-photo {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .slide-right {
        margin-right: 0;
        padding-top: 80px;
    }

    .pagination-wrapper ul li.next {
        margin-right: 0;
    }

    .pagination-wrapper ul li.prev {
        margin-left: 0;
    }

    .how-box {
        width: 60%
    }

    .support-item {
        width: 25%;
        padding-bottom: 25%;
    }

    .support-link {
        justify-content: center;
        padding-top: 0;
    }


    .support-item:nth-child(10n+9),
    .support-item:nth-child(10n+8),
    .support-item:nth-child(10n+6),
    .support-item:nth-child(10n+4),
    .support-item:nth-child(10n+2),
    .support-item:nth-child(10n) {
        background: transparent;
    }


    .support-item:nth-child(10n+9),
    .support-item:nth-child(10n+7),
    .support-item:nth-child(10n+5),
    .support-item:nth-child(10n+3),
    .support-item:nth-child(10n+1) {
        background: transparent;
    }

    .support-item:nth-child(8n+7),
    .support-item:nth-child(8n+5),
    .support-item:nth-child(8n+4),
    .support-item:nth-child(8n+2) {
        background: #e4e4e4;
    }


    .support-item:nth-child(8n),
    .support-item:nth-child(8n+6),
    .support-item:nth-child(8n+3),
    .support-item:nth-child(8n+1) {
        background: #fff;
    }

    .contact-box-container .page-heading-title {
        width: 90%;
    }

    .contact-box-container .footer-right {
        padding-left: 0;
        padding-right: 0;
    }

    .news-details-container .article-image {
        margin-right: 50px;
    }
	
    body.sticky-footer.contact-page .footer-circle {
        width: 90%;
        border-radius: 0;
        padding: 30px;
        height: auto;
        margin-bottom: 0;
    }

.contact-page .footer-bg {
    min-height: calc(100vh - 100px);
}

    .person-box {
        justify-content: center;
    }
	
	
	    .scroll {
        right: 40px;
        margin-right: 0;
        bottom: 130px;
    }
	
	.slick-track {
    height:auto!important;

}
.person-details .article-image.article-image-circle {
    margin-top: 50px;
}

.contact-page .footer-left .footer-col-title {
    padding-bottom: 0;
    margin-bottom: 50px;
}

.footer-circle .text.txt {
    color: #fff;
    margin-bottom: 20px;
}

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

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

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

.langs-menu:before {
    display: none;
}

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

    .langs-menu {
        display: block;
    }
	
	    .lang .langs-menu-short {
        display: block;
        color: #fff;
    }
	
	    .lang span.langs-menu-icon {
        display: none;
    }
}

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

    .slide-box {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        padding-top: 16px;
    }

    .slide-right {
        margin: 0 auto;
    }

    .slide-left {
        width: 100%;
        padding-bottom: 30px;
    }


    ul.slick-dots {
        bottom: 25px;
        left: -15px;
    }

    .how-box {
        width: 70%
    }

    .controls.captcha-container .col-sm-6.form-group-lg.form-group {
        width: 100%;
    }

    .person-item {
        width: 33.33%;
    }

    .person-box {
        margin: -15px;
    }

    .person-item {
        padding: 15px;
    }

    .what-link {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 1px;
        padding: 15px;
        text-align: center;
        height: 100%;
    }

    .what-box .support-title {
        text-align: center;
        font-size: 17px;
        flex-grow: 0;
    }

    .what-box .support-icon {
        margin-right: 0;
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
	
	.footer-bar-content {
    padding: 9px 0;
    border-top: 0;
}
}

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


@media screen and (max-width: 900px) {
    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
        background: linear-gradient(-43deg, #505b7f 0%, #1f273c 100%);
        padding-top: 0;
        padding-bottom: 0;
    }

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

    .copyright:before {
        display: none;
    }

    .mainpage .news, .news {
        width: 50%;
    }

    .pagination-wrapper ul li a, .pagination-wrapper ul li span {
        padding: 0 15px;
    }

    .how-box {
        width: 80%
    }

    .support-item {
        width: 33.33%;
        padding-bottom: 33.33%;
    }

    .support-item.support-item-empty {
        display: none;
    }

    .support-item {
        background: #fff !important;
        border: 1px solid #f2f2f2;
        margin-left: -1px;
        margin-bottom: -1px;
    }


    .support-box {
        padding: 30px;
    }

    .references-box .gallery-list-item {
        width: 33.33%;
    }
	
	    .footer-left {
        padding-bottom: 120px;
    }
}


@media screen and (max-width: 767px) {
    .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;
    }

    .controls.captcha-container .col-sm-6 {
        width: 50%;
    }

    .footer-left {
        width: 100%;
    }

    .footer-bg {
        flex-wrap: wrap;
    }

    .footer-left {
    }

    .footer-right {
        width: 100%;
        padding: 60px 2.5%;
    }

    .footer-bar {
        position: relative;
        background: linear-gradient(-43deg, #505b7f 0%, #1f273c 100%);
        padding: 0;
    }

    .footer-bar-content {
        border: 0 none;
    }

    .pagination-wrapper ul li.prev {
        margin-right: 10px;
    }

    .pagination-wrapper ul li.next {
        margin-left: 10px;
    }

    .how-box {
        width: 90%
    }

    .support-title {
        font-size: 16px;
    }

    .contact-box-container {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .contact-box-container .footer-left {
        padding-top: var(--space-60);
        padding-bottom: var(--space-60);
    }

    .contact-box-container .page-heading-title {
        margin-bottom: var(--space-60);
    }

    .what-box .support-title {
        font-size: 16px;
    }
	
    body.sticky-footer.contact-page .page-heading-title {
        position: relative;
        width: 100%;
        padding-bottom: var(--space-60);
        margin-bottom: 0;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
	
    body.sticky-footer.contact-page .footer-circle {
        width: 100%;
        margin-bottom: 0;
    }

.footer-right {
    flex-wrap: wrap;
}

.footer-circle {
        width: 100%;
    }
	
	.search-box .col-sm-4 {
    width: 50%;
	        padding: 0 5px;
}

    .search-box .row {
        margin: 0 -5px;
    }
	
	.search-box  .form .form-element-name {
    margin-bottom: 5px;
	}
	
	    .footer-left {
        padding-bottom: 40px;
    }
	
	.news-box button.slick-arrow {
    display: none !important;
}

    .mainpage .news-box, .news-box {
        padding: 0;
    }
	
	.search-box .row {
    justify-content: center;
}


.btn-wrapper {
    display: flex;
    justify-content: center;
}

.btn-wrapper .btn {
    margin: 0 5px;
}

.contact-page .footer-left .footer-col-title {
    padding-bottom: 20px;
}

.footer-col-title {
    margin-bottom: 50px;
}

    .footer-right {
        width: 100%;
        padding: 80px 2.5%;
    }
}


@media screen and (max-width: 639px) {
    .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-right: 0;
        margin-top: 0;
        width: 100%;
        display: block;
        float: none;
        max-width: none;
        text-align: center;
        line-height: 0;
    }
	
	.article-image.article-image-circle {
    width: 100%; margin-bottom:30px;


}
.text-box-container.person-details .article-content {
    flex-wrap: wrap;
}

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

    .how-item {
        width: 100%;
        margin-bottom: 30px;
        padding-bottom: 0;
    }

    .how-item.how-item-empty {
        display: none;
    }

    .how-box {
        width: 100%;
        padding: 30px;
    }


    .how-box .support-link {
        position: relative;
    }

    .how-item .text.txt {
        -webkit-line-clamp: none;
    }

    .support-item {
        width: 50%;
        padding-bottom: 0;
    }

    .support-link {
        position: relative;
        padding: 15px;
    }

    .support-title {
        -webkit-line-clamp: none;
    }

    .person-box {
        margin: -17px;
    }

    .person-item {
        padding: 17px;
        width: 50%;
    }

    .what-item {
        width: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .references-box .gallery-list-item {
        width: 50%
    }
	
	.article-image.article-image-circle img {
    width: 100%;
}

.person-details .article-image.article-image-circle {
    margin-top: 0;
}

.more-arrow {
    margin: 0 auto;
}
}

@media screen and (max-width: 560px) {
    .text {
        word-wrap: break-word;
    }

    .gallery-list-item {
        width: 50%;
    }

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0;
        padding: 0;
    }

    img.slide-logo {
        right: 0;
        top: auto;
        position: relative;
    }

    .circle-description {
        width: 90%;
        flex-direction: column-reverse;
        border-radius: 0;
        height: auto;
        padding-top: 30px;
        margin: 0 auto 40px;
    }

    .btn.has-icon .btn-icon {
        height: 46px;
        width: 46px;
        margin-left: 16px;
    }
	
	
.lines {
    top: -60px;
}
}

@media screen and (max-width: 480px) {
    .modal-footer > .btn {
        width: 100%;
    }

    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }

    .news {
        width: 100%;
    }

    .mainpage .news, .news {
        width: 100%
    }

    .support-title {
        font-size: 15px;
        padding: 0;
    }

    .what-box .support-title {
        font-size: 15px;
    }
}

@media screen and (max-width: 424px) {
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .pagination-wrapper ul li {
        padding: 0;
    }

    .logo {
        width: 175px;
    }

    .footer-left {
        padding: var(--space-50) 15px;
    }

    form.form {
        padding: 0;
    }

    #content, .subpage div#content {
        padding-top: 91px;
    }

    .slide-right {
        padding: 15px 0;
    }

    .circle-description {
        width: 100%;
        margin-bottom: 30px;
    }

    .how-box {
        padding: 15px;
    }

    .support-item {
        width: 100%;
    }

    .person-box {
        margin: -20px 0;
    }

    .person-item {
        padding: 20px 0;
        width: 100%;
        max-width: 286px;
        margin: 0 auto;
    }

    .what-item {
        width: 100%
    }
	
	    .controls.captcha-container .col-sm-6 {
        width: 100%;
    }
	
.search-box .col-sm-4 {
        width: 100%;
        margin-bottom: 7px;
    }
	
	
	.search-box  .form-control {
    height: 40px;
    line-height: 38px;
}


	.search-box  .select2-container .select2-selection--single {
    height: 40px;
}

 	.search-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
 }

    .btn-wrapper .btn {
        width: 49%;
        padding: 0 10px;
    }
	
	.btn-wrapper {
    margin: 0 -5px;
    display: flex;
    justify-content: space-between;
}

.news-box-header {
    flex-wrap: wrap;
    justify-content: center;
}

.news-box-header .section-box-title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
	
	.form .consent-row {
    margin-top: 0;}
	
	    .slide-box {
        padding-top: 60px;
    }
    #content, .subpage div#content {
        padding-top: 73px;
    }
	
	    .contact-page .footer-left .footer-col-title {
        padding-bottom: var(--space-50);
        margin-bottom: 0;
    }
	
	.footer-col-title {
    margin-bottom: var(--space-50) 
}

}
@media screen and (max-width: 400px) {
.person-details .article-text.text.txt p, .person-details .article-text.text.txt p span {
    text-align: left !important;
}
}
@media screen and (max-width: 375px) {
    .logo {
        width: 160px;
    }
}

@media screen and (max-width: 359px) {
    .logo {
        width: 120px;
    }
}

@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;
        --space-30: 25px;

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

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

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

        --container-padding: 30px;
    }
}

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

        --font-55: 43px;
        --font-48: 34px;
        --font-40: 32px;
        --font-36: 28px;
        --font-35: 28px;
        --font-30: 24px;
        --font-18: 17px;
    }
}

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

        --font-55: 40px;
        --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-30: 20px;
        --space-25: 15px;

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

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

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

@media screen and (max-width: 639px) {
    :root {
        --font-55: 34px;
        --font-48: 30px;
        --font-40: 26px;
        --font-36: 24px;
        --font-35: 23px;
        --font-30: 22px;
        --font-26: 19px;
        --font-24: 18px;
        --font-22: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}

@media screen and (max-width: 424px) {
    :root {
        --font-55: 32px;
        --font-48: 24px;
        --font-40: 22px;
        --font-36: 20px;
        --font-30: 20px;
        --font-26: 17px;
        --font-24: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}