* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
}

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

html, body {
    height: 100%;
    color: #333;
    font-weight: normal;
    font-size: 10px;
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #fff;
}

/*body {
	overflow-x: hidden;
}*/

img, a img {
    border: none;
}

a {
    outline: none;
    text-decoration: none;
    color: #008dc9;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #000;
}

ul, ol {
    list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.4rem;
    letter-spacing: -0.1rem;
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
}

p {
    font-size: 1.2rem;
    line-height: 2rem;
    margin-bottom: 1rem;
}

.subcolumns {
    overflow: hidden;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.visible {
    display: block !important;
}

.hidden {
    display: none !important;
}

.table {
    width: 100%;
    height: 100%;
    display: table;
    margin: 0;
}

.table-cell {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.relative {
    width: 100%;
    height: 100%;
    position: relative;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.mar0 {
    margin: 0rem !important;
}

.mar05b {
    margin-bottom: 0.5rem !important;
}

.mar1b {
    margin-bottom: 1rem !important;
}

.mar2b {
    margin-bottom: 2rem !important;
}

.mar3b {
    margin-bottom: 3rem !important;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

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

/*.wrapper { width:100%; max-width:100%!important; height:100%; position:relative; padding:0; margin:0 auto; overflow:hidden; overflow-y:auto; }*/
.container {
    padding: 0;
}

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

header.navbar {
    width: 100%;
    height: 11rem;
    display: block;
    position: fixed;
    padding: 0;
    background-color: transparent; /*overflow:hidden;*/
    -webkit-transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.sticky-header header.navbar {
    height: 7rem;
    background-color: rgba(255, 255, 255, 1);
}

header.navbar .container {
    height: 100%;
    position: relative;
    display: block;
}

.logo {
    width: 13rem;
    height: 5rem;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 9;
    margin: -2.5rem 0 0;
    text-indent: -999rem;
    background: transparent url(/upload/img/rosite-logo.svg) no-repeat 50% 0;
    background-size: 100% 100%;
    -webkit-transition: background-position 0.3s ease-in-out, transform 0.3s ease-in-out;
    -moz-transition: background-position 0.3s ease-in-out, transform 0.3s ease-in-out;
    -o-transition: background-position 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: background-position 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.sticky-header .logo {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) translate3d(-0.7rem, 0, 0);
    -moz-transform: scale3d(0.9, 0.9, 0.9) translate3d(-0.7rem, 0, 0);
    -o-transform: scale3d(0.9, 0.9, 0.9) translate3d(-0.7rem, 0, 0);
    transform: scale3d(0.9, 0.9, 0.9) translate3d(-0.7rem, 0, 0);
}

/*.sticky-header .logo { background-position:50% 100%; }*/

.main-menu {
    width: auto;
    height: 3rem;
    float: right;
    margin: 2.5rem 0 0;
    display: inline-block;
    -ms-flex-direction: initial;
    -webkit-transition: transform 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.sticky-header .main-menu {
    -webkit-transform: translate3d(0, -0.8rem, 0);
    -moz-transform: translate3d(-0, -0.8rem, 0);
    -o-transform: translate3d(0, -0.8rem, 0);
    transform: translate3d(0, -0.8rem, 0);
}

.main-menu li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 5vh;
}

.main-menu li:last-of-type {
    margin-right: 0;
}

.main-menu a {
    display: block;
    position: relative;
    color: #000;
    font-size: 1.2rem;
    line-height: 3rem;
    padding: 0;
    font-weight: 500;
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.sticky-header .main-menu a {
    color: #000;
    text-shadow: none;
}

.main-menu a:hover,
.main-menu a.active {
    color: #008dc9;
    border-color: #008dc9;
}

.main-menu a:before {
    width: 0;
    height: 0.3rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    border-radius: 0.1rem;
    background: #008dc9;
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    -webkit-transition: width 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}

.main-menu a:hover:before,
.main-menu a.active:before {
    width: 100%;
}

.menu-btn,
.close-overlay {
    width: 5.4rem;
    height: 5.4rem;
    display: none;
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    color: #008dc9;
    font-size: 2.6rem;
    line-height: 5.4rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.3rem;
    -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, top 0.3s ease-in-out, transform 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, top 0.3s ease-in-out, transform 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, top 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, top 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.close-overlay {
    left: auto;
    right: 0;
    font-size: 1.6rem;
    color: #a1a199;
}

.menu-btn:active,
.close-overlay:active {
    background-color: #008dc9 !important;
    color: #fff !important;
}

.menu-btn i {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.4rem;
    line-height: 5.4rem;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.menu-btn i.icon-sdb-close {
    font-size: 2.1rem;
}

.view-mobile-menu .menu-btn i.icon-sdb-close,
.menu-btn i.icon-sdb-menu-btn {
    opacity: 1;
}

.view-mobile-menu .menu-btn i.icon-sdb-menu-btn,
.menu-btn i.icon-sdb-close {
    opacity: 0;
}

.sticky-header .menu-btn {
    -webkit-transform: translate3d(0, -2rem, 0);
    -moz-transform: translate3d(0, -2rem, 0);
    -o-transform: translate3d(0, -2rem, 0);
    transform: translate3d(0, -2rem, 0);
}

.sticky-header .menu-btn:active {
    color: #fff !important;
}

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

.main-menu .dropdown {
    height: 2.6rem;
    margin-top: 0.25rem;
    position: relative;
}

.main-menu .dropdown button.btn {
    width: 4.7rem;
    height: 2.6rem;
    color: #008dc9;
    padding: 0.5rem 2rem 0.5rem 0.8rem;
    line-height: 0;
    border-color: #008dc9;
    background: transparent;
}

.main-menu .dropdown button.btn:hover,
.main-menu .dropdown button.btn:active {
    background-color: transparent !important;
    color: #008dc9 !important;
}

.main-menu .dropdown button.btn img {
    width: 100%;
    height: auto;
}

.main-menu .dropdown-menu {
    width: 3.6rem;
    min-width: 1px;
    position: absolute;
    float: none;
    top: 100%;
    left: -0.1rem;
    padding: 0.3rem 0;
    margin: 0.5rem 0 0;
}

.main-menu .dropdown-item {
    height: 100%;
    line-height: 0;
    padding: 0.6rem 0.8rem;
}

.main-menu .dropdown-item:before,
.main-menu .dropdown-item:hover:before,
.main-menu .dropdown-item.active:before {
    width: 0;
}

.main-menu .dropdown-item.active,
.main-menu .dropdown-item:active,
.main-menu .dropdown-item:hover {
    background-color: rgba(0, 0, 0, .1);
}

.main-menu .dropdown-toggle::after {
    margin-left: .4rem;
    vertical-align: .2rem; /*position:absolute; top:50%; top:50%; right:0.5rem; margin:-0.2rem 0 0; vertical-align: 0;*/
}

.main-menu .dropdown-item img {
    width: 100%;
    height: auto;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.main-menu .dropdown-menu:hover .dropdown-item img {
    opacity: .6;
}

.main-menu .dropdown-menu:hover .dropdown-item:hover img {
    opacity: 1;
}

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

.container-fluid {
    position: relative;
    padding: 7rem 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.container-fluid > .container {
    height: 100%;
    position: relative;
    z-index: 5;
}

.container-blue {
    background-color: #008dc9;
    background: linear-gradient(#00628f, #008dc9);
    background: linear-gradient(in lch, #00628f, #008dc9);
}

.row {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.section-title {
    font-size: 3.5rem;
    line-height: 4.2rem;
    margin: 0 auto 3rem;
}

.section-description {
    font-size: 1.4rem;
    line-height: 2.4rem;
    font-weight: 400;
    margin: 0 auto 5rem;
    /*text-shadow: 0 0 5px rgba(224, 224, 224, 0.7), 0 0 10px rgba(230, 230, 230, 0.5), 0 0 15px rgba(234, 234, 234, 0.3), 0 0 20px rgba(226, 226, 226, 0.1);*/
}

.container > .table {
    z-index: 10;
}

.container-blue .section-title,
.container-blue .section-description {
    color: #fff;
}

.section-title span,
.section-description span {
    display: block;
}

.mustache,
.white-mustache {
    width: 5.5rem;
    height: 1.2rem;
    display: inline-block;
    margin: 0 0 1.5rem;
    background: transparent url(/upload/img/mustache.svg) no-repeat 50% 50%;
    background-size: auto 100%;
}

.white-mustache {
    width: 7.3rem;
    height: 1.6rem;
    background-image: url(/upload/img/white-mustache.svg);
}

.container-box-img {
    width: 35%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.container-box-img img {
    width: 100%;
    height: auto;
}

.with-white-overlay-bg {
    position: relative;
}

.with-white-overlay-bg:after,
.with-white-overlay-bg:before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.with-white-overlay-bg:after {
    z-index: 0;
    background-color: rgba(255, 255, 255, .8);
}

.with-white-overlay-bg:before {
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%);

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=0);
}

.top-slider {
    height: 54rem;
    overflow: hidden;
    padding: 0;
}

.top-slider .container .table {
    width: 60%;
}

.top-slider .container .table-cell {
    padding-top: 17rem;
    vertical-align: top;
    /*	vertical-align:middle;
	padding:0;
*/
}

.top-slider .container-box-img {
    width: 44%;
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.top-slider .section-description:last-of-type {
    margin-bottom: 0;
}

.services-page .top-slider .container-box-img,
.contact-page .top-slider .container-box-img {
    width: 35%;
    left: auto;
    right: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.contact-page .top-slider .container-box-img {
    width: 32%;
}

.aboutus-page .top-slider .container-box-img {
    bottom: 0rem;
}

/* hp #section-1 -------- */

#section-1 {
    height: 54rem;
    padding: 0;
    /*background-image: url(/upload/img/slides2/slide-home.jpg);
    background-image: url(/upload/img/slides-illustrations/01-home-coding.svg);*/
    background-image: url(/upload/img/slides2/slide-home2.jpg);
}

#section-1 .container { /*background: transparent url(/upload/img/slide-1-graphic.svg) no-repeat 100% 100%; background-size:auto 32rem;*/
}

#section-1 .container .table { /*width:50rem;*/
    width: 60%;
}

#section-1 .container .table-cell {
    vertical-align: top;
    padding-top: 17rem;
    /*vertical-align:bottom; padding-bottom:9rem; */
}

#section-1 .container-box-img {
    width: 44%;
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#section-1 .btn {
    min-width: 18rem;
}

/* hp #section-2 -------- */

#section-2 {
    height: 60rem;
    padding: 0;
    overflow: hidden;
}

#section-2 .container .table { /*width:43.5rem;*/
    width: 55.5%;
    float: right;
}

#section-2 .container-box-img {
    margin-left: -30%;
}

#section-2 .white-mustache {
    margin-bottom: 3rem;
}

/* hp #section-3 -------- */

#section-3 {
    padding: 7rem 0 3rem;
    text-align: center;
}

#section-3 .section-title {
    margin: 0 auto 1rem;
}

/*
.services-list { width:100%; position:relative; display:grid; grid-template-columns: repeat(3,1fr); grid-gap:5rem 3.5rem; }
.services-list li { position:relative; padding-bottom:4rem; }
*/

.services-list {
    width: 100%;
    position: relative;
    margin: 0 auto;
    text-align: center;
    font-size: 0;
    line-height: 0;
    vertical-align: top;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.services-list > li {
    width: 31.5%;
    min-height: 21rem;
    margin: 0 2.75% 5rem 0;
    position: relative;
    padding-bottom: 4rem;
    vertical-align: top;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-list > li > p {
    flex: 1;
}

.services-list > li:last-of-type,
.services-list > li:nth-child(3n) {
    margin-right: 0;
}

.services-list h3 {
    margin: 0 auto 1rem;
    color: #000;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.4rem;
}

.services-list .mustache {
    align-self: center;
}

.services-list .btn {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

.sl-icon {
    width: 4.8rem;
    height: 4.8rem;
    display: block;
    margin: 0 auto 1.6rem;
    background: transparent no-repeat 50% 50%;
    background-size: 100% 100%;
}

ul.services-list > li .sl-icon.sl-appwebcustom {
    background-image: url(/upload/img/services-icons/service-icon-1.svg) !important;
}

ul.services-list > li .sl-icon.sl-bi {
    background-image: url(/upload/img/services-icons/service-icon-2.svg) !important;
}

ul.services-list > li .sl-icon.sl-ecom {
    background-image: url(/upload/img/services-icons/service-icon-3.svg) !important;
}

ul.services-list > li .sl-icon.sl-consult {
    background-image: url(/upload/img/services-icons/service-icon-4.svg) !important;
}

ul.services-list > li .sl-icon.sl-appmobile {
    background-image: url(/upload/img/services-icons/service-icon-5.svg) !important;
}

ul.services-list > li .sl-icon.sl-corporate {
    background-image: url(/upload/img/services-icons/service-icon-6.svg) !important;
}

ul.services-list > li .sl-icon.sl-website {
    background-image: url(/upload/img/services-icons/service-icon-7.svg) !important;
}

ul.services-list > li .sl-icon.sl-bpa {
    background-image: url(/upload/img/services-icons/service-icon-BPA.svg) !important;
}

ul.services-list > li .sl-icon.sl-security {
    background-image: url(/upload/img/services-icons/service-icon-security.svg) !important;
}

ul.services-list > li .sl-icon.sl-iot {
    background-image: url(/upload/img/services-icons/service-icon-iot.svg) !important;
}

ul.services-list > li .sl-icon.sl-sync {
    background-image: url(/upload/img/services-icons/service-icon-sync.svg) !important;
}


ul.services-list > li .sl-icon.sl-usersoftware {
    background-image: url(/upload/img/about-icons/user-software.svg) !important;
}

ul.services-list > li .sl-icon.sl-quality {
    background-image: url(/upload/img/about-icons/quality.svg) !important;
}

ul.services-list > li .sl-icon.sl-iso {
    background-image: url(/upload/img/about-icons/iso.svg) !important;
}

ul.services-list > li .sl-icon.sl-experience {
    background-image: url(/upload/img/about-icons/experience.svg) !important;
}

ul.services-list > li .sl-icon.sl-support {
    background-image: url(/upload/img/about-icons/support.svg) !important;
}

ul.services-list > li .sl-icon.sl-values {
    background-image: url(/upload/img/about-icons/values.svg) !important;
}

.iso-list {
    width: 100%;
    position: relative;
    margin: 0 auto;
    text-align: center;
    font-size: 0;
    line-height: 0;
    vertical-align: top;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.iso-list > li {
    /*width: 25%;*/
    min-height: 21rem;
    margin: auto;
    display: inline-flex;
    position: relative;
    padding-bottom: 4rem;
    vertical-align: top;
}

.iso-small li {
    width: 20% !important;
    min-height: auto !important;

}

.iso-small li img {
    width: 80% !important;

}

.sl-icon.rsn-developer {
    background-image: url(/upload/img/jobs/rsn-developer.svg) !important;
}

.sl-icon.rsn-tester {
    background-image: url(/upload/img/jobs/rsn-tester.svg) !important;
}

.sl-icon.rsn-webdesign {
    background-image: url(/upload/img/jobs/rsn-webdesign.svg) !important;
}


/*.services-list li:nth-child(1) .sl-icon { background-image: url(/upload/img/services-icons/service-icon-1.svg); }*/
/*.services-list li:nth-child(2) .sl-icon { background-image: url(/upload/img/services-icons/service-icon-2.svg); }*/
/*.services-list li:nth-child(3) .sl-icon { background-image: url(/upload/img/services-icons/service-icon-3.svg); }*/
/*.services-list li:nth-child(4) .sl-icon { background-image: url(/upload/img/services-icons/service-icon-4.svg); }*/
/*.services-list li:nth-child(5) .sl-icon { background-image: url(/upload/img/services-icons/service-icon-5.svg); }*/


#section-5 {
    padding: 7rem 0;
    text-align: center;
}

#section-5 .section-title {
    margin: 0 auto 1rem;
}

.projects-container {
    width: 100%;
    height: 35rem;
}

.pc-col {
    width: 50%;
    height: 100%;
    position: relative;
    text-align: left;
}

.pc-col:first-of-type {
    float: right;
}

.pc-col:last-of-type {
    padding-right: 15%;
}

.pc-col h4 {
    font-size: 2.1rem;
    line-height: 2.8rem;
    margin-bottom: 2rem;
}

.pc-col p {
    font-size: 1.3rem;
    line-height: 2.2rem;
    margin-bottom: 3rem;
}

.pc-col-project {
    width: 60.6rem;
    height: 35rem;
    position: absolute;
    top: 50%;
    left: -10rem;
    margin-top: -17.5rem;
    padding: 2.2rem 7.4rem 3rem;
    background: transparent url(/upload/img/projects/macbook.png) no-repeat 50% 50%;
    background-size: 100% 100%;
}

.pc-col-project img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* hp #section-6 -------- */

#section-6 {
    padding: 7rem 0;
    text-align: center;
}

#section-6 .section-title {
    margin: 0 auto 1rem;
}

.display-abilities {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5rem 3.5rem;
}

.display-abilities li {
    position: relative;
    padding-right: 4rem;
}

.display-abilities h3 {
    font-size: 2.1rem;
    line-height: 2.8rem;
    margin-bottom: 1rem;
}

.display-abilities .mustache {
    margin-bottom: 3rem;
}

.progress-title {
    color: #008dc9;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 400;
    text-align: left;
    margin: 0 auto 0.5rem;
}

.progress {
    height: 1.4rem;
    margin: 0 auto 2.5rem;
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
}

.progress-bar {
    height: 100%;
    position: relative;
    background-color: #008dc9;
}

.progress-bar span {
    width: auto;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    padding-left: 0.7rem;
    text-align: left;
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6rem;
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
}


/* hp #section-7 -------- */

#section-7 {
    height: 35.8rem;
    padding: 0;
    background-image: url(/upload/img/slides/slide-7.jpg);
    text-align: center;
}

#section-7:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    z-index: 0;
    background-color: rgba(0, 141, 201, .8);
}

/* .about-us-container -------- */

.about-us-container {
    padding-bottom: 0;
    text-align: center;
}

.about-us-container-icon {
    width: 8rem;
    height: 8rem;
    display: block;
    margin: 0 auto 2rem;
    background: transparent url(/upload/img/aboutus-icon.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}

.about-us-content {
    width: 44rem;
    margin: 0 auto;
}

.about-us-content li {
    width: 100%;
    margin: 0 auto 6rem;
}

.about-us-content li:last-of-type {
    margin-bottom: 0;
}

.about-us-content h3 {
    font-size: 2.1rem;
    line-height: 2.8rem;
    margin-bottom: 1rem;
}

.about-us-content h3 span {
    display: block;
}

.about-us-content p {
    text-align: left;
}

/* .services-container -------- */

.services-container {
    text-align: center;
}

.services-container .services-list {
    width: 65rem;
}

.services-container .services-list > li {
    width: 100% !important;
    padding: 0 8rem;
    margin: 0 auto 6rem;
    text-align: left;
    align-items: start;
}

.services-container .services-list > li:last-of-type {
    margin-bottom: 0;
}

.services-container .sl-icon {
    position: absolute;
    top: 0.5rem;
    left: 0;
}

.services-container .services-list h3 {
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin-inline: 0;
    width: 100%;
}

.services-container .services-list .btn {
    position: static;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.services-links-list {
    width: 100%;
    padding-top: 1rem;
}

.services-links-list h4 {
    font-size: 1.8rem;
    line-height: 2.6rem;
    margin: 0 auto 0.65rem;
}

.services-links-list-nav {
    width: 100%;
    overflow: hidden;
}

.services-links-list-nav a {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.8rem;
    white-space: nowrap;
    margin: 0 2rem 1rem 0;
}

/* .projects-slider-container -------- */

.projects-slider-container {
    padding: 7rem 0 8rem;
    text-align: center;
}

.projects-slider {
    height: 26rem;
    margin: auto;
    user-select: none;
}

.projects-slider .swiper-slide {
    opacity: 0;
    padding-left: 55%;
    text-align: left;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.projects-slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.projects-slider p {
    margin-bottom: 1rem;
}

.ps-img-project {
    width: 45rem;
    height: 26rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -24%;
    padding: 1.5rem 5.6rem 0;
    background: transparent url(/upload/img/projects/macbook.png) no-repeat 50% 50%;
    background-size: 100% 100%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.ps-img-project img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* .projects-slider-container -------- */

.project-container {
    position: relative;
    padding: 0;
    background-color: #fff;
}

.project-container.text-white,
.project-container.text-white h3 {
    color: #fff;
}


.project-container-content-bg:before {
    background-color: #fff;
}

.project-container.greennet, .project-container.greennet .project-container-content-bg:before {
    background-color: #4CA545;
    color: white !important;
}

.project-container.dailymagazine, .project-container.dailymagazine .project-container-content-bg:before {
    background-color: #910f14;
}

.project-container.farmexim, .project-container.farmexim .project-container-content-bg:before {
    background-color: #007b3b
}

.project-container.red,
.project-container.red .project-container-content-bg:before {
    background-color: #6C000D;
}

.project-container.blue,
.project-container.blue .project-container-content-bg:before {
    background-color: #008DC9;
}

.project-container-content {
    width: 100%;
    height: 50rem;
    padding-left: 60%;
    position: relative;
}

.project-container-content h3 {
    font-size: 2.1rem;
    line-height: 2.8rem;
    margin-bottom: 1.5rem;
}

.greennet .project-container-content h3, .greennet .project-container-content p,
.dailymagazine .project-container-content h3, .dailymagazine .project-container-content p,
.farmexim .project-container-content h3, .farmexim .project-container-content p,
.red .project-container-content h3,
.blue .project-container-content h3,
.red .project-container-content p,
.blue .project-container-content p {
    color: #fff;
}

.project-container-content-bg {
    width: 42%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    text-align: right;
    overflow: hidden;
    background: no-repeat 100% 50%;
    background-size: cover;
    -webkit-filter: blur(3px); /* Safari 6.0 - 9.0 */
    filter: blur(3px);
    background-position: center;
}

.project-container-content-bg:before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: .6;
    /*transform: rotate(30deg);*/

}

.project-container-content-bg img {
    width: auto;
    height: 100%;
}

.project-container-align-right .project-container-content {
    padding-right: 60%;
    padding-left: 0;
}

.project-container-align-right .ps-img-project {
    margin-left: 24%;
}

.project-container-align-right .project-container-content-bg {
    left: auto;
    right: 0;
}

/* .contact-page -------- */

.contact-add-section {
    padding: 3rem 0 3rem;
    text-align: center;
}

.contact-add-section .table {
    table-layout: fixed;
}

.contact-add-section a,
.contact-add-section span {
    display: inline-block;
    margin: 0 auto;
    position: relative;
    padding-left: 3.5rem;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.8rem;
    text-align: left;
}

.contact-add-section i {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1rem;
    font-size: 2rem;
    line-height: 2rem;
}

.map-section {
    height: 35rem;
    position: relative;
    padding: 0;
    text-align: center;
    background-color: #008dc9;
}

.map-container,
.map-container:before,
#map {
    width: 100%;
    height: 100%;
}

.map-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.map-container:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    content: '';
    background-color: rgba(0, 141, 201, .6);
}

.map-section .container .table-cell {
    vertical-align: top;
    padding-top: 3.5rem;
}

.map-section .container .section-title {
    font-size: 2.8rem;
    line-height: 3.6rem;
    text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, .2);
}

.map-tooltip {
    width: 28rem;
    height: auto;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    background: #fff;
    padding: 1rem 1.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    -webkit-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

/*.map-tooltip { opacity:1; visibility:visible; -moz-transform:translate3d(0,0,0); -ms-transform:translate3d(0,0,0); -o-transform:translate3d(0,0,0); -webkit-transform:translate3d(0,0,0); transform:translate3d(0,0,0); }*/
.map-tooltip:before {
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: -0.9rem;
    margin-left: -0.9rem;
    content: "";
    border-top: 1rem solid #fff;
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
}

.map-tooltip h3 {
    font-size: 1.4rem;
    line-height: 2rem;
    color: #A1A199;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.map-tooltip p {
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-form-section {
    padding: 7rem 0 8rem;
    text-align: center;
}

.contact-form-section form {
    width: 34rem;
    text-align: left;
}

.contact-form-section form .btn {
    width: 100%;
    max-width: 70%;
}

form {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

label {
    margin-bottom: 0.5rem;
    color: #000;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 400;
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    color: #000;
    height: calc(3.6rem + 2px);
    padding: 0 1rem;
    border-radius: .3rem;
    border-color: #666;
    font-size: 1.4rem;
    line-height: inherit;
    text-align: left;
    font-weight: 400;
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
}

textarea.form-control {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.valid-feedback,
.invalid-feedback {
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin: 0;
    padding-top: 0.5rem;
}

.alert {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 2rem;
}

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

.footer {
    width: 100%;
    padding: 3rem 0;
    background: transparent;
}

.footer .container {
    display: block;
    overflow: hidden;
}

.footer-copy {
    width: auto;
    float: left;
}

.footer-copy a,
.footer-copy span {
    margin-right: 6vh;
    display: inline-block;
    color: #000;
    font-size: 1.2rem;
    line-height: 2.6rem;
    font-weight: 400;
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
}

.footer-copy a {
    margin-right: 0;
    float: right;
}

.footer-menu {
    width: auto;
    height: 3rem;
    float: right;
    margin: 0;
    display: inline-block;
    -ms-flex-direction: initial;
    -webkit-transition: transform 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.footer-menu li {
    display: inline-block;
    float: left;
    margin-right: 6vh;
}

.footer-menu li:last-of-type {
    margin-right: 0;
}

.footer-menu a {
    display: block;
    position: relative;
    color: #000;
    font-size: 1.2rem;
    line-height: 2.6rem;
    padding: 0;
    font-weight: 400;
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.footer-menu a:hover {
    color: #008dc9;
    border-color: #008dc9;
}

.footer-menu a:before {
    width: 0;
    height: 0.15rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    border-radius: 0.1rem;
    background: #008dc9;
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    -webkit-transition: width 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}

.footer-menu a:hover:before {
    width: 100%;
}

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

/*.wrapper,
.scroll-bar { width:100%; height:100%; overflow-x:hidden; overflow-y:auto; }

.scroll-bar::-webkit-scrollbar-track,
.wrapper::-webkit-scrollbar-track { background-color: transparent; }
.scroll-bar::-webkit-scrollbar,
.wrapper::-webkit-scrollbar { width: 0.4rem; background-color: transparent; }
.scroll-bar::-webkit-scrollbar-thumb,
.wrapper::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.3); -moz-transition: background 0.3s ease-out; -o-transition: background 0.3s ease-out; -webkit-transition: background 0.3s ease-out; transition: background 0.3s ease-out; }
.scroll-bar::-webkit-scrollbar-thumb:hover,
.wrapper::-webkit-scrollbar-thumb:hover { background-color: rgba(0,0,0,0.5); }*/

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

.btn {
    width: auto;
    display: inline-block;
    height: 4.2rem;
    font-size: 1.29rem;
    font-weight: 500;
    line-height: 4.2rem;
    position: relative;
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
    text-align: center;
    color: #fff;
    padding: 0 3rem;
    border-radius: 0.2rem;
    border: none;
    background-color: #a1a199;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn:hover,
.btn:active {
    color: #fff !important;
    background-color: #151515 !important;
}

button.btn {
    line-height: inherit;
    cursor: pointer;
    outline: none !important;
}

.btn-primary {
    color: #fff !important;
    background-color: #008dc9 !important;
    border-color: #008dc9 !important;
}

.btn-secondary {
    color: #008dc9 !important;
    background-color: #fff !important;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
}

.btn-light {
    height: 2.4rem;
    line-height: 2.2rem;
}

.btn-light,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active {
    padding: 0;
    color: #000;
    background-color: transparent !important;
}

.btn-light:hover,
.btn-light:active {
    color: #000 !important;
    background-color: transparent !important;
}

.btn-light:after,
.btn-light:before {
    width: 100%;
    height: 0.2rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    border-radius: 0.1rem;
    background-color: #008dc9;
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    -webkit-transition: width 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}

.btn-light:before {
    width: 0;
    z-index: 2;
    background-color: #000;
}

.btn-light:hover:before,
.btn-light:active:before {
    width: 100%;
}

.container-blue .btn-light,
.container-blue .btn-light:hover,
.container-blue .btn-light:not(:disabled):not(.disabled).active,
.container-blue .btn-light:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: transparent !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.container-blue .btn-light:after {
    background-color: #fff;
}

.container-blue .btn-light:before {
    background-color: #000;
}

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

@media (min-width: 0px) {
    .container {
        max-width: 86%;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 88%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 90%;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 92%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media only screen and (max-width: 3200px) {
    html, body {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1680px) {
    html, body {
        font-size: 13px;
    }
}

@media only screen and (max-width: 1440px) {
    html, body {
        font-size: 12px;
    }

}

@media only screen and (max-width: 1280px) {
    html, body {
        font-size: 11px;
    }
}

@media only screen and (max-width: 1024px) {
    html, body {
        font-size: 10px;
    }
}

@media only screen and (max-width: 400px) {
    nowrap {
        white-space: normal !important;
    }
}

@media (max-width: 960px) {

    .mobile {
        display: block !important;
    }

    .desktop {
        display: none !important;
    }

    .desktop-break {
        display: inline !important;
    }

    .menu-btn {
        display: block;
        right: -1rem;
    }

    .view-mobile-menu .menu-btn,
    .sticky-header .menu-btn {
        -webkit-transform: translate3d(0, -1.7rem, 0);
        -moz-transform: translate3d(-0, -1.7rem, 0);
        -o-transform: translate3d(0, -1.7rem, 0);
        transform: translate3d(0, -1.7rem, 0);
    }

    .logo {
        position: absolute;
        top: 3rem;
        left: 0;
        float: none;
        margin: 0 auto;
    }

    .view-mobile-menu .logo,
    .sticky-header .logo {
        background-position: 50% 100%;
        -webkit-transform: scale3d(0.9, 0.9, 0.9) translate3d(-0.7rem, -2rem, 0);
        -moz-transform: scale3d(0.9, 0.9, 0.9) translate3d(-0.7rem, -2rem, 0);
        -o-transform: scale3d(0.9, 0.9, 0.9) translate3d(-0.7rem, -2rem, 0);
        transform: scale3d(0.9, 0.9, 0.9) translate3d(-0.7rem, -2rem, 0);
    }

    .view-mobile-menu header.navbar,
    .view-mobile-menu.sticky-header header.navbar {
        height: 100%;
        background-color: rgba(255, 255, 255, 1);
    }

    .main-menu {
        width: 20rem;
        height: 0;
        opacity: 0;
        position: absolute;
        top: 50%;
        margin: 0;
        left: 50%;
        visibility: hidden;
        -webkit-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
        -moz-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
        -o-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
        transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .main-menu,
    .sticky-header .main-menu {
        -webkit-transform: translate3d(-50%, -50%, 0);
        -moz-transform: translate3d(-50%, -50%, 0);
        -o-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
    }

    .view-mobile-menu .main-menu {
        opacity: 1; /*height:auto;*/
        height: 34rem;
        visibility: visible;
    }

    .main-menu li {
        width: 100%;
        display: block;
        float: none;
        margin: 0 auto 2rem;
    }

    .main-menu li:last-of-type {
        margin-bottom: 0;
        padding-left: 1.6rem;
    }

    .main-menu a {
        width: 100%;
        height: 4rem;
        margin: 0;
        font-size: 1.4rem;
        line-height: 4rem;
        text-align: center;
    }

    .main-menu a:active {
        outline: none;
    }

    .main-menu a:hover:before,
    .main-menu a.active:before {
        width: 30%;
    }

    .main-menu .dropdown {
        width: 6rem;
        margin: 0 auto;
    }

    .main-menu .dropdown button.btn {
        width: 5.4rem;
    }

    .main-menu .dropdown-menu {
        width: 4.4rem;
    }

    #section-1 .container .table {
        width: 65%;
    }

    #section-5 {
        padding: 6rem 0 2rem;
    }

    .projects-container {
        height: 32rem;
    }

    .pc-col-project {
        width: 55rem;
        height: 31.8rem;
        margin-top: -15.9rem;
        padding: 1.8rem 6.8rem 3rem;
    }

    .footer .container {
        text-align: center;
    }

    .footer-menu {
        width: 100%;
        float: none;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-menu li,
    .footer-menu li:last-of-type {
        float: none;
        margin: 0 2.5vh;
    }

    .footer-copy {
        width: auto;
        float: none;
        margin: 0 auto;
    }

    .footer-copy a,
    .footer-copy span {
        width: 100%;
        float: none;
        display: block;
        color: #666;
        margin: 0 auto;
    }

}

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

    .section-title span,
    .section-description span {
        display: inline;
    }

    .top-slider .section-description span,
    #section-1 .section-description span,
    #section-2 .section-description span {
        display: block;
    }

    #section-1 .container .table {
        width: 100%;
    }

    #section-1 .container .table-cell {
        vertical-align: top;
        padding: 12rem 0 0;
    }

    #section-2 .container .table {
        width: 100%;
    }

    #section-2 .container .table-cell {
        vertical-align: top;
        padding: 7rem 0 12rem;
    }

    #section-2 .container-box-img {
        width: 44%;
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .services-list > li,
    .services-list > li:nth-child(3n) {
        width: 46%;
        margin-right: 8%;
    }

    .services-list > li:nth-child(2n) {
        margin-right: 0;
    }

    .section-title span,
    .section-description span {
        display: inline;
    }

    #section-5 .section-title {
        margin: 0 auto 4rem;
    }

    .projects-container {
        height: 29rem;
    }

    .pc-col-project {
        width: 48rem;
        height: 27.7rem;
        margin-top: -13.85rem;
        padding: 1.6rem 6rem 3rem;
    }

    .top-slider .container .table {
        width: 100%;
    }

    .top-slider .container .table-cell {
        vertical-align: top;
        padding: 12rem 0 8rem;
    }

    .services-page .top-slider .container-box-img,
    .contact-page .top-slider .container-box-img {
        width: 55%;
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .contact-page .top-slider .container-box-img {
        width: 40%;
        bottom: 4rem
    }

    .projects-slider {
        height: 22rem;
    }

    .projects-slider .swiper-slide {
        padding-left: 62%;
    }

    .ps-img-project {
        width: 38rem;
        height: 21.9rem;
        margin-left: -21%;
        padding: 1.3rem 4.8rem 0;
    }

    .project-container {
        height: auto;
        padding-top: 7rem !important;
        padding-bottom: 6rem !important;
    }

    .project-container-content {
        height: auto;
        padding-top: 25rem;
        padding-left: 0;
    }

    .project-container-content-bg {
        width: 100%;
        height: 24rem;
    }

    .project-container .ps-img-project {
        top: 0;
        margin: 0 auto;
        -webkit-transform: translate3d(-50%, 0, 0);
        -moz-transform: translate3d(-50%, 0, 0);
        -ms-transform: translate3d(-50%, 0, 0);
        -o-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

    .project-container-align-right .ps-img-project {
        margin: 0;
    }

    .project-container-align-right .project-container-content {
        padding-right: 0;
    }

    .contact-form-section {
        padding: 6rem 0;
    }

    .services-container .services-list {
        width: 65rem;
    }

    .logos-list {
        width: 100%;
    }
}

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

    header.navbar {
        height: 7rem;
        padding: 0;
    }

    .logo {
        top: 1rem;
    }

    .menu-btn {
        top: 0.8rem;
        right: -2rem;
    }

    .menu-btn i {
        font-size: 2.2rem;
    }

    .menu-btn i.icon-sdb-close {
        font-size: 2rem;
    }

    .view-mobile-menu .logo,
    .sticky-header .logo,
    .view-mobile-menu .menu-btn,
    .sticky-header .menu-btn {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .footer-menu li,
    .footer-menu li:last-of-type {
        margin: 0 1.5vh;
    }

    .btn.btn-primary,
    .btn.btn-secondary {
        width: 100%;
    }

    .section-title {
        font-size: 2.8rem;
        line-height: 3.4rem;
        margin: 0 auto 2rem;
    }

    .section-description {
        margin: 0 auto 3rem;
    }

    .top-slider .section-description span,
    #section-1 .section-description span,
    #section-2 .section-description span {
        display: inline;
    }

    #section-1 {
        height: auto;
    }

    #section-1 .container .table-cell {
        padding: 10rem 0 15rem;
    }

    #section-1 .container-box-img {
        width: 55%;
        right: -8%;
    }

    #section-1 .btn.btn-primary {
        width: auto;
    }

    #section-2 {
        height: auto;
    }

    #section-2 .container .table {
        float: none;
    }

    #section-2 .container .table-cell {
        padding: 6rem 0 15rem;
    }

    #section-2 .container-box-img {
        width: 55%;
        right: 0;
        bottom: -.3333%;
    }

    #section-3 {
        padding: 6rem 0 0;
    }

    .services-list > li,
    .services-list > li:nth-child(2n),
    .services-list > li:nth-child(3n) {
        width: 100%;
        float: none;
        margin: 0 auto 6rem;
    }

    .sl-icon {
        width: 6rem;
        height: 6rem;
    }

    #section-4 {
        padding: 7rem 0 4rem;
    }

    .logos-list {
        width: 100%;
    }

    #section-5 {
        padding: 5rem 0 2rem;
    }

    #section-5 .section-title {
        margin: 0 auto 3rem;
    }

    .pc-col {
        width: 100%;
        height: auto;
        position: relative;
        text-align: center;
    }

    .pc-col:first-of-type {
        height: 23.7rem;
        float: none;
        margin-bottom: 3rem;
    }

    .pc-col:last-of-type {
        padding-right: 0;
    }

    .projects-container {
        height: auto;
    }

    .pc-col-project {
        width: 41rem;
        height: 100%;
        left: 50%;
        padding: 1.4rem 5rem 0;
        margin: 0;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    #section-6 {
        padding: 5rem 0;
    }

    .display-abilities {
        grid-template-columns: 100%;
        grid-gap: 4rem 0;
    }

    .display-abilities h3,
    .display-abilities .mustache {
        margin-left: 4rem;
        margin-bottom: 1.5rem;
    }

    .display-abilities .progress {
        margin-bottom: 2rem;
    }

    .about-us-content {
        width: 100%;
    }

    .top-slider {
        height: auto;
    }

    .top-slider .container .table-cell {
        padding: 10rem 0 17rem;
    }

    .top-slider .container-box-img {
        width: 55%;
        right: 0;
        bottom: -.3333%;
    }

    .contact-page .top-slider .container-box-img {
        width: 35%;
        bottom: 2.5rem;
    }

    .aboutus-page .top-slider .container-box-img {
        width: 50%;
    }

    .projects-slider {
        height: auto;
    }

    .projects-slider .swiper-slide {
        padding-left: 0;
        padding-top: 26rem;
        text-align: center;
    }

    .ps-img-project {
        width: 41rem;
        height: 23.7rem;
        top: 0;
        margin-left: 0;
        padding: 1.4rem 5rem 0;
        -webkit-transform: translate3d(-50%, 0, 0);
        -moz-transform: translate3d(-50%, 0, 0);
        -ms-transform: translate3d(-50%, 0, 0);
        -o-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

    .services-container .services-list {
        width: 100%;
    }

    .services-container .services-list > li {
        padding: 0;
        text-align: center;
    }

    .services-container .services-list > h3 {
        font-size: 2.1rem;
        line-height: 2.8rem;
    }

    .services-container .sl-icon {
        position: static;
    }

    .project-container-content {
        padding-top: 27rem;
    }

    .contact-add-section .table {
        table-layout: auto;
    }

    .contact-add-section .table-cell {
        width: 40%;
        height: auto;
        display: inline-block;
        margin-bottom: 3rem;
    }

    .contact-add-section .table-cell:last-of-type {
        width: 100%;
        margin-bottom: 0;
    }

    .contact-add-section a,
    .contact-add-section span {
        display: inline-block;
    }

    .contact-add-section .table-cell {
        width: 50%;
        margin-bottom: 2.5rem;
    }

    .contact-form-section {
        padding: 5rem 0;
    }

    .contact-form-section form {
        width: 86%;
    }

    .contact-form-section form .btn {
        max-width: 100%;
    }

    .map-section {
        height: 30rem;
    }

    .logos-list li,
    .logos-list li:nth-child(4n) {
        /*
		width: 36% !important;
		margin: 0 5% 7rem;
		*/
    }

}

@media only screen and (max-width: 420px) {
    .footer-menu li,
    .footer-menu li:last-of-type {
        margin: 0 1vh;
    }

    .top-slider .container .table-cell {
        padding-bottom: 15rem;
    }

    #section-1 .container .table-cell,
    #section-2 .container .table-cell {
        padding-bottom: 13rem;
    }

    .pc-col:first-of-type {
        height: 20.2rem;
        margin-bottom: 2.5rem;
    }

    .pc-col-project,
    .ps-img-project {
        width: 35rem;
        height: 20.2rem;
        padding: 1.2rem 4.4rem 0;
    }

    .projects-slider .swiper-slide {
        padding-top: 22.5rem;
    }

    .about-us-container {
        padding-top: 5rem;
    }

    .about-us-container-icon {
        width: 6rem;
        height: 6rem;
    }

    .about-us-content li {
        margin-bottom: 7rem;
    }

    .projects-slider-container {
        padding: 6rem 0 5rem;
    }

    .project-container {
        padding-top: 9rem !important;
        padding-bottom: 7rem !important;
    }

    .project-container-content {
        padding-top: 23rem;
    }

    .contact-page .top-slider .container-box-img {
        bottom: 1.5rem;
    }

    .contact-add-section .table-cell {
        width: 100%;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .contact-form-section {
        padding: 4rem 0;
    }

}

@media only screen and (max-width: 380px) {
    .menu-btn {
        top: 0.8rem;
        right: -1.5rem;
    }

    .top-slider .container .table-cell,
    #section-1 .container .table-cell,
    #section-2 .container .table-cell {
        padding-bottom: 12rem;
    }

    .pc-col:first-of-type {
        height: 18.5rem;
    }

    .pc-col-project,
    .ps-img-project {
        width: 32rem;
        height: 18.5rem;
        padding: 1rem 3.8rem 0;
    }

    .projects-slider .swiper-slide {
        padding-top: 20.5rem;
    }

    .project-container {
        padding-top: 5rem !important;
        padding-bottom: 4rem !important;
    }

    .project-container-content {
        padding-top: 21rem;
    }

    .project-container-content-bg {
        height: 20rem;
    }

    .map-section {
        height: 26rem;
    }
}

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

    html, body {
        font-size: 8.5px;
    }

    /*
        .sticky-header .header { height:6rem; }
    .logo { width:10rem; height:4rem; top:1.8rem; }
    .view-mobile-menu .logo,
    .sticky-header .logo { -webkit-transform: translate3d(0,-0.5rem,0); -moz-transform: translate3d(0,-0.5rem,0); -o-transform: translate3d(0,-0.5rem,0); transform: translate3d(0,-0.5rem,0); }

    .menu-btn,
    .close-overlay { width: 4rem; height: 4rem; top: 1rem; right:-1rem; line-height:4rem; }
    .close-overlay { left: auto; right: 1rem; }
    .menu-btn i { line-height:4rem; font-size:1.8rem; }
    .menu-btn i.icon-sdb-close { font-size:1.6rem; }

    .article-page article .content-margins { padding-top: 3rem; padding-bottom: 3rem; }
    article h1 { font-size: 2.1rem; line-height: 2.6rem; }
    article h2 { font-size: 1.6rem; line-height: 2.2rem; margin: 0 auto 2rem; }
    article h3 { font-size: 1.4rem; line-height: 2rem; }
    */
}

@media only screen and (max-width: 1440px) and (min-width: 960px) and (max-height: 700px) {
    /* html, body  { font-size:10px; }*/
    /*.top-slider { height:12rem; }*/
}

@media only screen and (max-width: 1440px) and (min-width: 960px) and (max-height: 600px) {
    html, body {
        font-size: 9px;
    }
}


nowrap {
    white-space: nowrap;
}

/* hp #section-4 -------- */

#section-4 {
    padding: 10.5rem 0 7.5rem;
    text-align: center;
}

#section-4 .section-title {
    margin: 0 auto 1rem;
}

ul.logos-list {
    width: 65rem;
    position: relative;
    margin: 0 auto;
    text-align: center;
    font-size: 0;
    line-height: 0;
    vertical-align: top;
    overflow: hidden; /*hidden;*/
    /*height: 150%;*/
    /*border2: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

ul.logos-list li {
    width: 24%;

    display: inline-block;
    position: relative;
    vertical-align: top;
    text-align: center;
    float: left;
    z-index: 0;
}

ul.logos-list li:last-of-type,
ul.logos-list li:nth-child(4n) {
    margin-right: 0;
}

ul.logos-list a {
    width: 100%;
    height: 100%;
    display: block;
}

ul.logos-list img {
    max-width: 85%;
    height: auto;
    padding: 10px !important;
    border-radius: 0.5rem;
    /*position: absolute;*/
    left: 10%;
    top: 0;
    transition: all 0.5s ease-in-out;
    -webkit-filter: contrast(25%) brightness(200%) saturate(30%) grayscale(70%);
    filter: contrast(25%) brightness(200%) saturate(30%) grayscale(70%);
}


ul.logos-list li:hover {
    z-index: 5;
}

ul.logos-list img:hover {
    -webkit-filter: none;
    background-color: rgba(255, 255, 255, 0.7);
    filter: contrast(100%) brightness(100%) saturate(100%) grayscale(0%) drop-shadow(0 0 0.2rem #006c9a);
    border-radius: 0.5rem;
}

/* hp #section-5 -------- */


ul.services-list > li > ul.logos-list > li {

}

ul.logos-list.services-logos {
    /*width: 100% !important;*/
    /*border: 1px solid red;*/
}

ul.logos-list li {
    /*width: 32%;*/
    margin-bottom: 2%;
    /*border: 1px solid blue;*/
}

ul.logos-list.services-logos.services-logos-home li {
    /*width: 19%;*/
}

ul.logos-list.services-logos img {
    /*-webkit-filter: contrast(0%) brightness(0%) saturate(0%) grayscale(100%); !* Safari 6.0 - 9.0 *!*/
    filter: contrast(100%) brightness(50%) saturate(100%) grayscale(100%) opacity(40%);
}


ul.logos-list.services-logos img:hover {
    -webkit-filter: none;
    background-color: rgba(210, 210, 210, 0.48);
    filter: contrast(100%) brightness(100%) saturate(100%) grayscale(0%);
    border-radius: 0.5rem;
}

ul.logos-list.services-logos li, ul.logos-list.services-logos li:nth-child(4n) {
    /*margin-right: auto;*/
}

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

}

@media (max-width: 768px) {
    .project-container-align-right .project-container-content {
        padding-right: 0;
    }

    ul.logos-list {
        width: 100% !important;
    }
}


@media (max-width: 576px) {
    nowrap {
        white-space: pre !important;
    }

    ul.logos-list {
        padding-bottom: 30px;
    }

    ul.logos-list li {
        width: 40% !important;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 7%;
        margin-bottom: 7%;
    }

    ul.logos-list.services-logos li, ul.logos-list.services-logos li:nth-child(3n) {
        margin-right: 0;
        margin-bottom: 10%;
    }

    ul.logos-list.services-logos li {
        width: 40% !important;
    }

    /*
	ul.logos-list.services-logos li, ul.logos-list.services-logos li:nth-child(2n), ul.logos-list.services-logos li:nth-child(3n), ul.logos-list.services-logos li:nth-child(4n) {
		width: 40% !important;
		margin: 3% !important;
	}
	*/
    /*    ul.logos-list.services-logos li, ul.logos-list.services-logos li:nth-child(2n) {
		width: 40% !important;
		margin: 0 5% 7rem;
	}*/


}


.mapouter{ display:table; }.gmap_canvas { overflow:hidden;position:relative;height:400px;width:100% !important;background:#fff; }
.gmap_canvas iframe{ position:relative !important;z-index:2 !important; }
