body {
    width: 100%;
    height: 100%;
    font-family: 'Exo 2', sans-serif;
    color: white;
    background-color: #183761;
}
html {
    width: 100%;
    height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}
p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;
}
@media (min-width: 768px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }
}
a {
    color: #42DCA3;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
    text-decoration: none;
    color: #1d9b6c;
}
.light {
    font-weight: 400;
}
.navbar-custom {
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: 'Exo 2', sans-serif;;
    background-color: transparent;
}
.navbar-custom .navbar-toggle {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}
.navbar-custom .navbar-toggle:focus,
.navbar-custom .navbar-toggle:active {
    outline: none;
}
.navbar-custom .navbar-brand {
    font-weight: 700;
}
.navbar-custom .navbar-brand:focus {
    outline: none;
}
.navbar-custom a {
    color: white;
}
.navbar-custom .nav li a {
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}
.navbar-custom .nav li a:hover {
    color: rgba(255, 255, 255, 0.8);
    outline: none;
    background-color: transparent;
}
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: none;
    background-color: transparent;
}
.navbar-custom .nav li.active {
    outline: none;
}
.navbar-custom .nav li.active a {
    background-color: rgba(255, 255, 255, 0.3);
}
.navbar-custom .nav li.active a:hover {
    color: white;
}
@media (min-width: 768px) {
    .navbar-custom {
        padding: 0;
        border-bottom: none;
        letter-spacing: 1px;
        background: transparent;
        -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
        -moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
        transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
    }
    .navbar-custom.top-nav-collapse {
        padding: 0;
        background: url(../img/gradient4.png) repeat-x;
        border-bottom: none;
    }
}
.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
    color: white;
    background: transparent;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}
.intro .intro-body .intro-text {
    font-size: 18px;
}
@media (min-width: 768px) {
    .intro {
        height: 100%;
        padding: 0;
    }
    .intro .intro-body .intro-text {
        font-size: 26px;
    }
}
.btn-circle {
    margin-top: 15px;
    padding: 7px 16px;
    font-size: 20px;
    font-weight: 500;
    color: white;
    background: transparent;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}
.btn-circle:hover,
.btn-circle:focus {
    outline: none;
    color: white;
    opacity: 0.5;
}
.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}
.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}
.content-section {
    padding-top: 100px;
}
.download-section {
    width: 100%;
    padding: 50px 0;
    color: white;
    background: url(../img/downloads-bg.jpg) no-repeat center center scroll;
    background-color: black;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
#map {
    width: 100%;
    height: 200px;
    margin-top: 100px;
}
@media (min-width: 767px) {
    .content-section {
        padding-top: 250px;
    }
    .download-section {
        padding: 100px 0;
    }
    #map {
        height: 400px;
        margin-top: 250px;
    }
}
.btn {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 0;
}
.btn-default {
    border: none;
    color: #42DCA3;
    background-color: #183761;
}
.btn-default:hover,
.btn-default:focus {
    border: none;
    outline: none;
    color: #183761;
    background-color: transparent;
}


#menu-close.btn-default {
    border: none;
    color: #183761 !important;
    background-color: #fff !important;
}
#menu-close.btn-default:hover,
#menu-close.btn-default:focus {
    border: none;
    outline: none;
    color: #fff !important;
    background-color: #183761 !important;
}


ul.banner-social-buttons {
    margin-top: 0;
}
@media (max-width: 1199px) {
    ul.banner-social-buttons {
        margin-top: 15px;
    }
}
@media (max-width: 767px) {
    ul.banner-social-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }
    ul.banner-social-buttons li:last-child {
        margin-bottom: 0;
    }
}
section.footer, div.footer {
    background: #fff;
    color: #183761;
}

section.footer .footer-reserved {
    padding: 10px 0 10px;
    background: #F5F5F5;
}

section.footer .footer-reserved .group-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 18px;
}

section.footer .footer-reserved .group-logo p {
    margin: 0 !important;
}

section.footer .footer-reserved .group-logo >* {
    margin-left: 16px;
}

section.footer p, div.footer p {
    margin: 0;
}

.footer-partner-logo { width: 46px; height: 50px;}

@media (max-width: 991px) {
    section.footer .footer-reserved .group-logo p {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 16px !important;
    }

    section.footer .footer-reserved .group-logo >* {
        margin-bottom: 10px;
    }
}

::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255, 255, 255, 0.2);
}
::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255, 255, 255, 0.2);
}
img::selection {
    background: transparent;
}
img::-moz-selection {
    background: transparent;
}
body {
    webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}



/* MY STYLES */
.navbar-brand img { width: 105px; height: auto; margin-left: 20px; }

.navbar-brand { padding: 0; height: auto; }

.btn-contact, .btn-read { width: 203px; height: auto; }

.big-box { width: 50%; float: left; text-align: center; padding: 20px 25px; }

.big-box.border { border-right: 1px solid #fff; }

.big-box h1 { font-size: 55px; font-weight: 300; text-transform: none; margin-bottom: 10px; min-height: 121px; }

.big-box h2 { font-size: 20px; font-weight: 300; text-transform: none; margin-bottom: 35px; min-height: 50px;  }

.big-box a img, .intro.product1 a.btn-readmore img { width: 211px; height: auto; }

.big-box a, .intro.product1 a.btn-readmore, a.btn-contact-w { background: transparent; display: inline-block; margin-bottom: 35px; }

.big-box a:hover, .big-box a:active, .big-box a:focus,
.intro.product1 a.btn-readmore:hover, .intro.product1 a.btn-readmore:active, .intro.product1 a.btn-readmore:focus,
a.btn-contact-w:hover, a.btn-contact-w:active, a.btn-contact-w:focus { background: rgba(0,0,0,0.19); }

.intro-frame { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -99; background-image: url(../img/intro-frame-2.png); background-repeat: repeat; }

.intro-frame .gradient, .product1 .gradient { width: 100%; height: 189px; background-image: url(../img/gradient.png); background-repeat: repeat-x; }

.product1 .gradient { position: absolute; top: 0; }

.about-us .product1b .gradient { position: absolute; top: 0; left: 0; width: 100%; height: 189px; background-image: url(../img/gradient3.png); background-repeat: repeat-x; }

.lead-gen .product1b .gradient { position: absolute; top: 0; left: 0; width: 100%; height: 189px; background-image: url(../img/gradient3.png); background-repeat: repeat-x; }

.intro-body .btn.btn-circle.page-scroll { position: absolute; bottom: 25px; margin: 0 auto; text-align: center; left: 0; right: 0; }

.lead-gen .contact .btn.btn-circle.page-scroll, .lead-gen .header.product1b.intro .btn.btn-circle.page-scroll { font-size: 92px; display: inline-block !important; margin-top: 0; height: auto; }

.intro-body .btn.btn-circle.page-scroll.products { font-size: 92px; position: absolute; }

.lead-gen .intro-body .btn.btn-circle.page-scroll.products { position: relative; }

.intro-body .btn.btn-circle.page-scroll.sub1 { display: none; }

.navbar-right.custom { font-size: 18px; font-weight: 500; text-transform: none; margin: 20px 100px 20px 20px; }

.sidebar-nav .company, .sidebar-nav .products, .sidebar-nav .events, .sidebar-nav .about { display: none; }

.navbar .container, .intro .container, .product1 .container { width: 100%; }

.lead-gen .intro .container.form { max-width: 1125px; background: #fff; color: #183761; padding: 30px; margin: 25px auto; text-align: left; }

.lead-gen .intro .container.form h4 { font-weight: 300; color: #183761; font-size: 30px; text-transform: none; text-align: left; margin-bottom: 20px; }


.lead-gen .intro .container.form .radio-error { font-weight: 300; color: #FF0000; font-size: 18px; text-align: left; border: 2px solid #FF0000; padding: 5px; }

.lead-gen .intro .container.form .success-send { font-weight: 300; color: #1d9b6c; font-size: 18px; text-align: left; border: 2px solid #1d9b6c; padding: 5px; margin-top: 20px; display: none; }

.lead-gen .intro .container.form .q1, .q3, .q4 {display: none; }
.lead-gen .intro .container.form span.error {display: none;}


.lead-gen .intro .container.form ul { list-style: none; height: 100%; width: 100%; margin: 0; padding: 0; }

.lead-gen .intro .container.form ul li { color: #183661; display: block; position: relative; float: left; width: 100%; }

.lead-gen .intro .container.form ul li .quick-answers { margin-left: 0px; padding-left: 0px; }

.lead-gen .intro .container.form #q2 ul li { width: 50%; }

.lead-gen .intro .container.form ul li input[type=radio] { position: absolute; visibility: hidden; }

.lead-gen .intro .container.form ul li label { display: block; position: relative; font-weight: 300; font-size: 1.35em; padding: 12px 18px 18px 60px; margin: 5px auto; height: 30px; z-index: 9; cursor: pointer; -webkit-transition: all 0.25s linear; }

.lead-gen .intro .container.form ul li:hover label { color: #183761; }

.lead-gen .intro .container.form ul li .check { display: block; position: absolute; border: 1px solid #95989A; border-radius: 100%; height: 24px; width: 24px; top: 30px; left: 20px; z-index: 5; transition: border .25s linear; -webkit-transition: border .25s linear; }

.lead-gen .intro .container.form ul li:hover .check { border: 12px solid #95989A; }

.lead-gen .intro .container.form ul li .check::before { display: block; position: absolute; content: ''; border-radius: 100%; height: 10px; width: 10px; top: 6px; left: 6px; margin: auto; transition: background 0.25s linear; -webkit-transition: background 0.25s linear; }

.lead-gen .intro .container.form input[type=radio]:checked ~ .check { border: 1px solid #95989A; }

.lead-gen .intro .container.form input[type=radio]:checked ~ .check::before{ background: #6894D0; }

.lead-gen .intro .container.form input[type=radio]:checked ~ label { color: #183661; }

.lead-gen .intro .container.form label.radio { color: #6894D0; text-align: left; font-size: 20px; /* line-height: 18px; */ margin-top: 16px; font-weight: 300; }

.lead-gen .intro .container.form input[type="text"] { height: 40px; border: 1px solid #95989A; padding: 0 5px; color: #183761; font-size: 20px; background-color: #fff; margin: 0 20px; }
.lead-gen .intro .container.form input[type="number"] { height: 40px; border: 1px solid #95989A; padding: 0 5px; color: #183761; font-size: 20px; background-color: #fff; margin: 0 20px; }
.lead-gen .intro .container.form input[type="email"] { height: 40px; border: 1px solid #95989A; padding: 0 5px; color: #183761; font-size: 20px; background-color: #fff; margin: 0 20px; }

.lead-gen .intro .container.form input[type="number"]:focus, .lead-gen .intro .container.form input[type="number"]:hover{ color: #183761; border: 2px solid #183661; font-style: normal; }
.lead-gen .intro .container.form input[type="email"]:focus, .lead-gen .intro .container.form input[type="email"]:hover{ color: #183761; border: 2px solid #183661; font-style: normal; }
.lead-gen .intro .container.form input[type="text"]:focus, .lead-gen .intro .container.form input[type="text"]:hover { color: #183761; border: 2px solid #183661; font-style: normal; }

.lead-gen .intro .container.form input.name-form { width: calc(100% - 30px); }

.lead-gen .intro .container.form input.name-form.error { border-color: #FF0000; }

.lead-gen .intro .container.form button { color: #fff; background-color: #5A8BCC; font-size: 20px; line-height: 24px; padding: 10px 40px; margin: 25px auto; font-weight: 400; text-transform: none; border: none; }

.lead-gen .intro .container.form button:focus, .lead-gen .intro .container.form button:hover { background-color: #183661; transition: background 0.25s ease-in-out; -webkit-transition: background 0.25s ease-in-out; }

.lead-gen .intro .container.form label.input { color: #6894D0; text-align: left; font-size: 20px; line-height: 30px; margin-top: 10px; font-weight: 300; height: auto; padding: 0 0 0 20px; }

.lead-gen .intro .container.form label.input span.error { color: #FF0000; font-size: 18px; font-weight: 300; float: right; margin-right: 25px; }

.lead-gen .intro .container.form li.button-wrapper { text-align: center; }

















section.product1 .intro-body { display: block; padding-top: 10%; }

.product1b .brand-heading { font-size: 80px; font-weight: 300; text-transform: none; max-width: 980px; margin: 0 auto; }

.product1b.portfolio-page-mobile .brand-heading {
    font-size: 50px;
}
.product1 h2.brand-heading { font-size: 80px; font-weight: 700; text-transform: none; margin: 0 auto; }

.product1 .intro-frame { z-index: 0; background-image: url(../img/intro-frame-w.png); position: absolute; width: 100%; height: 100%; }

.about-us .product1b .intro-frame, .lead-gen .product1b .intro-frame { z-index: 0; background-image: url(../img/intro-frame-w.png); position: absolute; width: 100%; height: 100%; }

section.header.product1b .brand-heading { margin-bottom: 30px; }
section.header.product1b a.btn-readmore img {
    width: 211px;
    height: auto;
}

.lead-gen section.header.product1b .brand-heading { bottom: 0px; }

.lead-gen section.header.product1b .brand-heading { position: relative; }

.intro.product1 { background: url(../img/products-1.jpg) no-repeat; background-position: center; background-size: cover; background-color: #183761; }

.intro.product1.pr2 { background-image: url(../img/products-2.jpg); position: relative; }

.intro.product1.pr3 { background-image: url(../img/products-3.jpg); position: relative; }

.intro.product1.pr4 { background-color: #000; background-image: url(../img/products-4.jpg); position: relative; }

.intro.product1.pr5 { background-color: #000; background-image: url(../img/products-5.jpg); position: relative; }

.intro.product1.pr6 { background-color: #000; background-image: url(../img/products-6.jpg); position: relative; }

.intro.product1.pr7 { background-color: #000; background-image: url(../img/products-7.jpg); position: relative; }

.intro.product1.pr8 { background-color: #000; background-image: url(../img/products-8.jpg); position: relative; }

.intro.product1.pr9 { background-color: #000; background-image: url(../img/products-9.jpg); position: relative; }

.intro.product1.pr10 { background-color: #000; background-image: url(../img/products-10.jpg); position: relative; }

.intro.product1.pr11 { background-color: #000; background-image: url(../img/products-11.jpg); position: relative; }

.intro.product1.pr12 { background-color: #000; background-image: url(../img/products-12.jpg); position: relative; }

.product1.pr2 .gradient { background-image: url(../img/gradient2.png); }

.intro.product1 p { font-size: 36px; font-weight: 300; max-width: 980px; margin: 50px auto; }

.about-us .intro.product1b { background: url(../img/aboutus-1.jpg) center center / cover no-repeat; height: 100% }

.lead-gen .intro.product1b { background: url(../img/leadgen.jpg) center center / cover no-repeat; height: 374px; position: relative; }

.lead-gen .intro.product1b p { margin-top: 30px; }

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


section.footer, div.footer { top: 100% !important; height: 100% !important; }

.products-page section.footer, .products-page div.footer, .about-us section.footer, .about-us div.footer, .lead-gen section.footer, .lead-gen div.footer { top: 100% !important; height: auto !important;  }

section.footer .container, div.footer .container { width: 100%; min-width: 1100px; margin: 0 auto; position: relative; }

section.footer .container .footer-logo, div.footer .container .footer-logo { margin: 35px; display: block; }

section.footer .container .footer-logo img, div.footer .container .footer-logo img { width: 153px; height: auto; }

section.footer h4, div.footer h4 { margin: 28px 0; font-size: 30px; font-weight: 400; color: #183761; text-transform: none; }

section.footer ul, div.footer ul { margin-bottom: 0; padding: 0; }

section.footer ul li, div.footer ul li { list-style-type: none; }

section.footer ul li a, div.footer ul li a {  font-size: 20px; font-weight: 300; color: rgba(24,55,97,1); }

section.footer ul li a:hover,
section.footer ul li a:focus,
section.footer ul li a:active,
div.footer ul li a:hover,
div.footer ul li a:focus,
div.footer ul li a:active { color: rgba(24,55,97,0.3); }

.color-footer-div {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #162841;
    margin-top: 15px;
}
.color-footer-div li {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    text-align: left;
    line-height: 28px;
}

section.footer .color-footer-div li a {
    color: #fff;
}
.gutter-0 > div {
    padding: 0;
}
section.footer h4.smaller-offset {
    margin-bottom: 5px;
}
.email-header-offset {
    margin-bottom: 10px;
}
section.footer .color-footer-div ul li a:hover,
section.footer .color-footer-div ul li a:focus,
section.footer .color-footer-div ul li a:active{
    color: #fff;
    text-decoration: underline;
}
.contact-us-content {
    margin-left: 15px;
}
@media (min-width: 992px) {
    .contact-us-content {
        margin-left: 0;
    }
    .color-footer-div {
        margin-top: 0;
    }
}
.right-col-footer {
    margin-left: 15px;
}
.adres-info {
    margin-bottom: 15px;
}

section.footer ul li.social-networks, div.footer ul li.social-networks { margin: 10px 0 0 0; }
section.footer ul li.social-networks a img, div.footer ul li.social-networks a img { width: 32px; height: auto; }
section.footer ul li.social-networks a, div.footer ul li.social-networks a { margin: 0px 10px 0 0; }
section.footer ul li.social-networks a:hover,
section.footer ul li.social-networks a:focus,
section.footer ul li.social-networks a:active,
div.footer ul li.social-networks a:hover,
div.footer ul li.social-networks a:focus,
div.footer ul li.social-networks a:active { opacity: 0.5; }

section.footer ul.left, div.footer ul.left { float: left; }

section.footer div.left, div.footer div.left { float: left; width: 60px; }

section.footer div.left .footer-line, div.footer div.left .footer-line { height: 129px; width: auto; }

section.footer .container .row .col-md-12 p.footer-text, div.footer .container .row .col-md-12 p.footer-text { margin: 15px 15px 15px auto; font-size: 16px; font-weight: 300; display: inline-block; vertical-align: middle;}

section.footer .wrapper1, div.footer .wrapper1 { display: block; float: right }

section.footer .wrapper2, div.footer .wrapper2 { display: block; float: left; }

/* #product7 { min-height: 900px; } */

section.contact { background-image: url(../img/intro-frame-w.png); background-repeat: repeat; }

section.contact .btn-contact-w { margin: 52px auto; }

section.contact .btn-contact-w img { width: 203px; height: auto; }

.carousel-indicators .btn-contact-w { display: block; float: none; clear: both; margin: 0 auto 35px auto; width: 203px; }
.carousel-indicators .btn-contact-w img { width: 203px; height: auto; }

/*.item.full-screen { min-height: 800px; }*/

.mobile-only { display: none; }

.about-us .intro.success { background-image: url(../img/gradient-bckg.jpg); background-repeat: no-repeat; background-size: cover; height: auto; padding: 30px; }

.about-us .product1b .brand-heading { font-size: 40px; }

.about-us .intro.success .brand-heading { font-size: 44px; text-transform: uppercase; }

.about-us .intro.success .triangle { width: 377px; height: auto; }

.about-us .intro.lead-slogan { height: auto; background: #fff;  padding: 30px 0; font-size: 36px; }

a.btn-contact-b { display: inline-block; font-size: 0; }

a.btn-contact-b:hover,
a.btn-contact-b:active,
a.btn-contact-b:focus { background: rgba(0,0,0,0.19); }

.black { color: #000; }
.white { color: #fff; }
.blue { color: #183761; }
.light-blue { color: #55ABDF; }

.light { font-weight: 300; }
.light { font-weight: 300; }
.regular { font-weight: 400; }
.semi-bold { font-weight: 600; }



.back-to-top {
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: none;
    background: transparent !important;
    border: none !important;
}

.products-list-page .back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    border: none !important;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    font-size: 92px;
}

.back-to-top:hover,
.back-to-top:focus,
.back-to-top:active
{
    opacity: 0.5;
}


.back-to-top img {
    width: 46px;
    height: auto;
}


@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg-video {
        width: 100%;
        /* height: auto; */
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg-video {
        /* width: auto; */
        height: 100%;
        width: 300%;
        left: -100%;
    }
}

@media (max-height: 720px) {
    .intro-body .btn.btn-circle.page-scroll { margin-top: 40px; display: none !important; }
    section.header.product1 .brand-heading { position: absolute; margin: 0 auto; }
    .big-box { padding: 25px 25px; }
}


@media (max-height: 690px) {
    .intro-body .btn.btn-circle.page-scroll {display: none !important;}
    .product1 h2.brand-heading { font-size: 66px; }
}

@media (max-width: 1199px) {
    section.footer .container, div.footer .container { min-width: auto; }
}

@media (max-width: 767px) {

    .navbar-brand img { width: 70px; height: auto; }

    .big-box { width: 100%; float: none; clear: both; text-align: center; padding: 25px; }

    .big-box.border { border-right: none; border-bottom: 1px solid #fff; }

    .big-box h1 { min-height: auto; }

    .big-box h2 { min-height: auto; }

    .fullscreen-bg { background: url('../img/intro-bg.jpg') center center / cover no-repeat; }

    .intro-frame, .fullscreen-bg-video { display: none; }

    .about-us .intro-frame { display: inline-block; }

    .intro-body .btn.btn-circle.page-scroll { position: relative; }

    .navbar-right.custom { display: none; }

    .sidebar-nav .company, .sidebar-nav .products, .sidebar-nav .events, .sidebar-nav .about { display: block; }

    .intro-body .btn.btn-circle.page-scroll.sub1 { display: block; float: none; clear: both; background: none; }

    .intro-body .btn.btn-circle.page-scroll.sub2 { position: absolute; bottom: 25px; margin: 0 auto; text-align: center; left: 0; right: 0; }

    .product1 h2.brand-heading { font-size: 44px; }

    .navbar-custom { background-color: #183761; }

    .intro.product1 p { font-size: 20px; }

    section.footer div.left, div.footer div.left { display: none; }

    section.footer ul.left, div.footer ul.left { float: none; clear: both; display: block; }

    section.footer ul.left.sub, div.footer ul.left.sub { margin-bottom: 0; }

    section.footer .container, div.footer .container { min-width: auto; }

    section.footer .container .footer-logo, div.footer .container .footer-logo { margin: 26px 0; }

    section.footer .container .row .col-md-12 p.footer-text, div.footer .container .row .col-md-12 p.footer-text {display: block;}

    section.footer, div.footer { top: 100% !important; height: 100% !important; }

    section.footer .wrapper1, div.footer .wrapper1 { display: inline-block; float: none; clear: both; }

    section.footer .wrapper2, div.footer .wrapper2 { display: inline-block; float: none; clear: both; }

    .products-page .intro.product1 { background-size: cover; height: 100%; }

    .products-list-page section.intro.product1.pr7 { padding-bottom: 0; }

    .products-list-page section.footer, .products-list-page div.footer { margin-top: 100px; }

    .intro-body .btn.btn-circle.page-scroll.products { display: none; }

    .intro-body .btn.btn-circle.page-scroll.products.mobile-only { display: inline-block; }

    .lead-gen .intro .container.form #q2 ul li { width: 100%; }

    .lead-gen .intro { padding: 0; }

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        font-size: 30px;
    }

    .product1b .brand-heading { font-size: 48px; }

    .lead-gen .intro.product1b { height: auto; }

    .lead-gen .contact .btn.btn-circle.page-scroll, .lead-gen .header.product1b.intro .btn.btn-circle.page-scroll { /* float: right; */ margin-top: 80px; }

    section.header.product1b .brand-heading { top: 95px; bottom: 0; }

    .footer-partner-logo { margin-bottom: 15px;}

}


.position-md-footer {
    margin-bottom: 20px;
}
@media (min-height: 768px) {
    .products-page .intro.product1 p, .products-list-page #product7 .products-page .intro.product1 p {
        max-width: 980px;
        /* margin: 14px auto; */
    }
}


@media (min-height: 400px) and (max-height: 800px) {
    .products-page .intro.product1 p, .products-list-page #product7 .products-page .intro.product1 p {
        max-width: 980px;
        font-size: 26px;
        margin: 14px auto;
    }

    /* section.contact .btn-contact-w {
        margin: 25px auto;
    }*/
}


@media only screen and (min-width: 768px) and (max-width: 799px) {
    .navbar-right.custom {
        margin-right: 70px;
    }
}

@media (min-width: 1920px) {
    .products-page .intro.product1 p, .products-list-page #product7 .products-page .intro.product1 p {
        max-width: 1024px;
        /* margin: 25px auto; */
    }
}

/* Portfolio page */
.portfolio-page .intro.product1b {
    background-image: url('../img/background-portfolio.jpg');
    background-position: center top;
    height: 700px;
    position: relative;
}

.portfolio-page.ad-gallery .intro.product1b {
    height: 640px;
}


@media (max-width: 768px) {
    .portfolio-page.ad-gallery .intro.product1b {
        height: 480px;
    }
}

.portfolio-page .intro.product1b.aboutus { background-image: url(../img/AboutUs_corp.png); background-repeat: repeat-x; }
.portfolio-page .intro.product1b.portfolio { background-image: url(../img/Portfolio_corp.png); background-repeat: repeat-x; }
.portfolio-page.ad-gallery .intro.product1b.portfolio { background-image: url(../img/Ad-gallery_corp.png); background-repeat: repeat-x; }
.portfolio-page .intro.product1b.ratecard { background-image: url(../img/RateCard_corp.png); background-repeat: repeat-x; }
.portfolio-page.ad-gallery .intro.product1b.portfolio-page-ad {    background-image: url('../img/background-ad-gallery.png');
    background-position: center top;
    height: 224px;
    position: relative;}
.portfolio-page .intro.product1b .intro-body {
    display: block;
}
.portfolio-page section.header.product1b .brand-heading {
    position: relative;
    color: #fff;
    top: 120px;
    display: block;
    text-align: center;
}
.portfolio-page section.header.product1b.portfolio-page-ad .brand-heading {
    top: 80px;
    font-size: 50px;
}
.portfolio-page .intro.product1b p {
    font-size: 28px;
    font-weight: 300;
    max-width: 980px;
    margin: auto;
    padding: 0 15px;
    line-height: 1.4;
}

.portfolio-page .intro.product1b p.powered {
    font-size: 14px;
}

.intro-logo {
    margin: 57px auto 0 auto;
}

.portfolio-page .content-area {
    background: #fff;
}
.portfolio-page .product1b .fa {
    font-size: 70px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
}
.portfolio-page .heading-info-cont {
    position: absolute;
    top: 230px;
    width: 100%;
    height: 350px;
    left: 0;
    display: grid;
    vertical-align: middle;
}
.portfolio-page .portfolio-page-ad .heading-info-cont {
    top: 11px;
}
.portfolio-page .portfolio-page-nova .heading-info-cont {
    top: 285px;
    height: 330px;
}
.portfolio-page .NI-child-site-cards a {
    color: #000;
    font-size: 18px;
}
.portfolio-page .NI-child-site-cards > div {
    margin-bottom: 40px;
}
.portfolio-page.ad-gallery .NI-child-site-cards > div {
    margin-bottom: 30px;
}
.portfolio-page .NI-child-site-cards .NI-user-info-child-site {
    font-size: 20px;
}
.portfolio-page .NI-child-site-cards p {
    margin-bottom: 10px
}
.portfolio-page.ad-gallery .NI-child-site-cards p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}
.portfolio-page .NI-child-site-cards .NI-logo-image-cont {
    position: relative;
}
.portfolio-page .NI-child-site-cards .NI-logo-image-cont img {
    width: 100%;
}
.portfolio-page .NI-child-site-cards .desktop-banner .NI-logo-image-cont span {
    position: absolute;
    display: none;
    top: 46%;
    left: 36%;
    color: white;
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    line-height: 22px;
}
.portfolio-page .NI-child-site-cards .desktop-banner .NI-logo-image-cont img {
    transition: none;
}
.portfolio-page .pt0 {
    padding-top: 30px;
}
.portfolio-page #main.container {
    background-color: #fff;
    padding: 30px;
}
.portfolio-page .NI-child-site-cards svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.portfolio-page.ad-gallery .NI-child-site-cards svg {
    display: none;
}
.portfolio-page.ad-gallery .NI-child-site-cards a:hover img + svg { 
    position: absolute;
    top: -8px;
    right: 0;
    left: 80% !important;
    display: block;
    transform: scale(1.1);
}
.product1b .brand-heading img {
    max-width: 70%;
    margin: 0 auto;
}
.portfolio-page-edna h1 img,
.portfolio-page-gong h1 img {
    width: 250px;
}
#googleIframe {
    height: 5500px;
}
.portfolio-page .intro.product1b.portfolio-page-nova p {
    color: #00B3E9;
    font-weight: 500;
}
.portfolio-page .product1b.portfolio-page-nova .fa {
    color: #7D7D7D;
}
.portfolio-page .portfolio-info-text > p {
    font-size: 15px;
    font-style: italic;
    color: #484848;
}
.portfolio-page .portfolio-info-text {
    margin-top: 40px;
}
.portfolio-page .portfolio-inner-page .portfolio-info-text {
    margin-top: 0;
}
.portfolio-page .intro.product1b.portfolio-page-vbox7  {
    background-image: url('../img/background-vbox7.jpg');
}
.portfolio-page .intro.product1b.portfolio-page-abv  {
    background-image: url('../img/background-abv.jpg');
}
.portfolio-page .intro.product1b.portfolio-page-nova  {
    background-image: url('../img/nova3.jpg');
}
.portfolio-page .intro.product1b.portfolio-page-vesti  {
    background-image: url('../img/background-vesti.jpg');
}
.portfolio-page .intro.product1b.portfolio-page-darik  {
    background-image: url('../img/background-darik.jpg');
}
.portfolio-page .intro.product1b.portfolio-page-sinoptik  {
    background-image: url('../img/background-sinoptik.jpg');
}
.portfolio-page .intro.product1b.portfolio-page-edna  {
    background-image: url('../img/background-edna.jpg');
}
.portfolio-page .intro.product1b.portfolio-page-gong  {
    background-image: url('../img/background-gong.jpg');
}
.portfolio-page .intro.product1b.portfolio-page-pariteni  {
    background-image: url('../img/background-pariteni.png');
}
.portfolio-page .intro.product1b.portfolio-page-gbg  {
    background-image: url('../img/background-gbg.png');
}
.portfolio-page .intro.product1b.portfolio-page-ohnamama  {
    background-image: url('../img/background-ohnamama.jpg');
}
.portfolio-page .intro.product1b.portfolio-page-novaplay  {
    background-image: url('../img/background-novaplay.png');
}
.portfolio-page .intro.product1b.portfolio-page-grabo  {
    background-image: url('../img/background-grabo.png');
}
.portfolio-page .intro.product1b.portfolio-page-telegraf  {
    background-image: url('../img/background-telegraf.png');
}
.portfolio-page .intro.product1b.portfolio-page-carmarket  {
    background-image: url('../img/background-carmarket.png');
}
.portfolio-page .intro.product1b.portfolio-page-dogsandcats  {
    background-image: url('../img/background-dogsandcats.png');
}

/* About us page */
.portfolio-page #about {
    text-align: left;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0px;
    color: #8C979E;
}
.portfolio-page #about .content-area {
    background-color: #183761;
    padding-bottom: 96px;
}
.portfolio-page #about h2 {
    margin-bottom: 15px;
    height: 29px;
    font-size: 28px;
    font-weight: 500;
    line-height: 27px;
    color: #020202;
}
.portfolio-page #about p {
    font-size: 18px;
    line-height: 27px;
}
.portfolio-page #about ul {
    padding-left:50px;
    margin-bottom: 34px;
}
.portfolio-page #about ul li {
    line-height: 27px;
}
.portfolio-page #about ul>li span {
    display: block;
    padding-left: 20px;
}
.portfolio-page #about ul.list-unstyled {
    padding-left: 0;
    margin-bottom: 60px;
}
.portfolio-page #about ul.list-unstyled li{
    margin-bottom: 20px;
}
.portfolio-page #about ul.list-unstyled li span {
    padding-left: 0;
}
.portfolio-page #about ul img {
    float: left;
    padding-right: 30px;
    margin-top: 10px;
}
.portfolio-page #about a {
    font-weight: bold;
    color: #5A8BCC;
}
.portfolio-page #about ul.prod {
    margin-bottom: 15px;
}
.portfolio-page #about .heading-top {
    margin-top: 34px;
}
.portfolio-page #about *[id]:target:before { 
    display: block; 
    content: " "; 
    margin-top: -90px; 
    height: 90px; 
    visibility: hidden; 
}
.popular {
    border: 1px solid #707070;
    background-color: #FFFFFF;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}
.popular td, table.popular th {
    border: 1px solid #707070 !important;
    line-height: 33px;
    padding: 10px 0 10px 40px;
}
.popular tbody td {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
}
.popular tr:nth-child(even) {
    background-color: rgba(25, 55, 97, 0.06);
}
.popular thead {
    background: #193761;
}
.popular thead th {
    font-size: 22px;
    font-weight: bold;
    color: #FFFFFF;
}
.products-lists img {
    margin-bottom: 20px
}
.products-lists div {
    margin-top: 45px;
}
.rpa {    
    margin-bottom: 34px;
}
.rpa p {
    margin: -20px 0 0;
}
.rpa span {
    display: block;
    font-weight: bold;
}
@media (max-width: 1200px) {
    #googleIframe {
        height: 4500px;
    }
}
@media (max-width: 991px) {
    #googleIframe {
        height: 3400px;
    }
    /*    .portfolio-page .intro.product1b p {
            font-size: 34px;
        }*/
    .product1b .brand-heading {
        font-size: 60px;
    }
    /*    .portfolio-page .intro.product1b.portfolio-page-edna p {
            font-size: 32px;
        }*/

    .portfolio-page.ad-gallery .product1b .brand-heading {
        font-size: 80px;
    }

    .portfolio-page.ad-gallery .product1b.portfolio-page-mobile .brand-heading {
        font-size: 50px;
    }
}
@media (min-width: 575.98px) { 
    .rpa {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .portfolio-page section.header.product1b .brand-heading {
        top: 0;
    }
    .portfolio-page.ad-gallery section.header.product1b .brand-heading {
        top: 0;
        font-size: 45px;
    }
    .portfolio-page.ad-gallery .intro.product1b.portfolio .heading-info-cont {
        top: auto;
        height: auto;
    }
    .portfolio-page.ad-gallery .intro.product1b p {
        padding-bottom: 15px;
    }
    #googleIframe {
        height: 3000px;
    }
    .portfolio-page .intro.product1b p {
        font-size: 22px;
    }
    .product1b .brand-heading {
        font-size: 50px;
    }
    .portfolio-page .heading-info-cont {
        /* top: 210px; */
        height: 380px;
    }

    /*    .portfolio-page .intro.product1b.portfolio-page-edna p,
        .portfolio-page .intro.product1b.portfolio-page-nova p {
            font-size: 26px;
        }
        .portfolio-page .intro.product1b.portfolio-page-gong p {
            font-size: 29px
        }*/
    .heading-info-cont br {
        display: block;
    }
    .product1b.portfolio-page-nova .brand-heading img {
        width: 130px;
    }
    .portfolio-page .portfolio-page-nova .heading-info-cont {
        top: 230px;
    }
    .portfolio-page #about .content-area {
        background-color: #fff;
    }
    .portfolio-page #about ul>li:before {
        padding-right: 10px;
    }
    .portfolio-page #about ul>li span {
        padding-left: 0;
    }
    .clearfix {
        overflow: inherit;
    }

}
@media (max-width: 768px) {
    .navbar-custom .nav li a {
        padding-left: 10px;
        padding-right: 10px;
    }
    .portfolio-page #about h2 {
        line-height: 34px;
    } 
    .portfolio-page #about h2>p {
        margin-top: 22px;
    }
    .portfolio-page #about ul {
        padding-left: 20px;
    }    
    .portfolio-page #about .rpa p {
        margin-top: 0;
        font-size: 16px;
    }
    .popular {
        overflow-x: auto;
        margin-top: 50px;
    }
    .popular tbody td, table.popular th {
        font-size: 16px;
    }
    .popular td, table.popular th {
        line-height: 20px;
        padding-top: 10px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .rpa {
        /*        -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                -webkit-box-align: start;    
                -ms-flex-align: start;    
                align-items: flex-start;*/
    }
    /*    .rpa img:first-child {
            width: 100%;
        }
        .rpa img:nth-child(2) {
            height: 100px;
        }*/
}
@media (max-width: 480px) {
    #googleIframe {
        height: 1500px;
    }
    .portfolio-page .intro.product1b p {
        font-size: 25px;
    }
    .portfolio-page .intro.product1b.about p {
        font-size: 22px;
    }

    .portfolio-page .intro.product1b[class*="portfolio-page"] p {
        font-size: 18px;
    }

    .product1b .brand-heading {
        font-size: 40px;
    }
    .product1b.portfolio-page-nova .brand-heading img {
        width: 100px;
    }
    .portfolio-page .portfolio-page-nova .heading-info-cont {
        top: 204px;
    }

    .portfolio-page #about .content-area>.container {
        padding-left: 12px;
        padding-right: 15px;
    }
    .portfolio-page #about #main.container {
        padding-left: 0;
        padding-right: 0
    }
    .portfolio-page #about .content-area {
        padding-bottom: 79px;
    }
    
    .portfolio-page #about #portfolio h2 {
        margin-bottom: 50px;
    }
    .popular tbody tr td:nth-child(3) {
        width: 29%;
    } 
    .portfolio-page #about *[id]:target:before { 
    display: block; 
    content: " "; 
    margin-top: -60px; 
    height: 60px; 
    visibility: hidden; 
}
}

@media (max-width: 425px) {
    .portfolio-page.ad-gallery section.header.product1b .brand-heading {
        font-size: 33px;
    }
}

.portfolio-page-vbox7 h1 svg{
    max-width: 300px;
    width: 80%;
}
/* clear fixs 
md=3(lg and md resolution are 3 columns on one line)
smd=2(sm resolution are 2 columns on one line)
xs=1(xs resolution are 1 col = 1 line)
*/
.list-type-md-3-sm-2-xs-1 div:nth-child(2n+1) {clear: none;}
@media (min-width: 768px) {
    .list-type-md-3-sm-2-xs-1 div:nth-child(2n+1) {clear: both;}
    .portfolio-page #about p {
        margin-bottom: 15px;
    }
}
@media (min-width: 992px) {
    .list-type-md-3-sm-2-xs-1 div:nth-child(2n+1) {clear: none;}
    .list-type-md-3-sm-2-xs-1 div:nth-child(3n+1) {clear: both;}
}
@media (min-width: 1024px) {
    .portfolio-page #about #main.container{
        padding-left: 77px;
        padding-right: 86px;
    }
    .rpa div:nth-child(2) img{
        float: right;
    }
}

.portfolio-page.ad-gallery .NI-child-site-cards .NI-logo-image-cont img {
    transition: transform .2s; /* Animation */
}

.portfolio-page.ad-gallery .NI-child-site-cards a:hover img{
    transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


.portfolio-page.ad-gallery .pt0 {
    /* background-color: #ededed; */
    border-bottom: 1px solid #dadada;
}

.portfolio-page.ad-gallery #main.container { 
    /* background-color: #ededed; */
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 992px) {

    .portfolio-page.ad-gallery  #main.container {
        padding-bottom: 50px;
    }
}
