
/* ==========================================================================
   Table Of Content
   ========================================================================== 
   
   
   1.General
   2.Hero section
   3.Navbar 
   4.Play button
   5.Featured on
   6.Benefits
   7.Features
   8.video tour
   9.tour
   10.Pricing
   11.reviews
   12.cta section
   13.Team
   14.Twitter feed
   15.Contact us
   16.Subscription form styles
   17.site footer 
   18.Social
   19.Small devices (tablets, 768px and up)
   20.Medium devices (desktops, 992px and up)
   
*/


/* ==========================================================================
   1.General
   ========================================================================== */

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.5;
    font-weight: 400;
    font-size: 16px;
    overflow-x: hidden;
    /*zoom: 96%;*/
}

p {
    font-weight: 400;
    color: #4c4c4c;
    font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: #4c4c4c;
}

h4 {
    font-size: 20px;
    margin: 12px 0;
}

a {
    color: #f52d2d;
    transition: all 0.3s ease-in-out;
}

    a:hover,
    a:focus {
        color: #f52d2d;
        text-decoration: none;
    }

    a:focus {
        outline: none;
    }

img {
    max-width: 100%;
    height: auto;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

b,
strong {
    font-weight: 600;
}



.hero-section {
    background: url(../img/bgb.jpg) center center no-repeat scroll;
    background-size: cover;
    padding: 0 0 4.5em;
    position: relative;
    color: #fff;
}

    .hero-section::before,
    .video-tour::before,
    .pricing::before,
    .twitter-feed::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
    }

    .hero-section::before {
        background: rgba(0, 0, 0, 0.17);
    }

.welcome-message {
    margin-top: 4.5em;
}

    .welcome-message h1 {
        font-size: 36px;
        color: #fff;
        font-weight: 400;
        margin: 0 0 24px;
    }

    .welcome-message h2 {
        font-size: 22px;
        color: #fff;
        font-weight: 400;
        margin: 0;
    }

.btn {
    padding: 1em 3em;
    color: #fff;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    background-color: #f56363;
    line-height: 1.5;
    border: none;
    border-radius: 3px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

    .btn:hover {
        color: #fff;
        background-color: #fa5454;
    }

    .btn:active,
    .btn:focus,
    .btn:active:hover,
    .btn:active:focus {
        color: #fff;
        outline: none;
        background-color: #fa5454;
    }

.cta-btn p {
    color: #fff;
    margin: .75em 0 0;
    font-size: 18px;
}


.navbar-default {
    background: rgba(0, 0, 0, 0.04);
    border: none;
    margin-bottom: 0;
    border-radius: 0;
    padding: .75em 0;
}

.nav > li {
    text-align: center;
}

    .nav > li > a > i {
        padding-right: .2em;
    }

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #f52d2d;
    transition: all 0.3s ease-in-out;
}

    .navbar-default .navbar-toggle:hover .icon-bar,
    .navbar-default .navbar-toggle:focus .icon-bar {
        background-color: #fff;
    }

.navbar-brand {
    padding: 0 0 0 1em;
}

    .navbar-brand .logo-nav,
    .nav-left {
        display: none;
    }

.navbar-default.stuck .logo-head {
    display: none;
}

.navbar-default.stuck .logo-nav,
.navbar-default.stuck .nav-left {
    display: block;
}

.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #fff;
}

.navbar-default.stuck .navbar-nav > li > a {
    color: #ffffff;
}

    .navbar-default.stuck .navbar-nav > li > a:hover,
    .navbar-default.stuck .navbar-nav > li > a:focus {
        color: #f31414;
        font-weight: 500;
    }

.navbar-default .btn {
    font-size: 16px;
}

.navbar-default.stuck .navbar-nav .btn {
    display: inline-block;
    background: #f52d2d;
    color: #fff;
    border: 1px solid #ffffff;
}

    .navbar-default.stuck .navbar-nav .btn:hover,
    .navbar-default.stuck .navbar-nav .btn:focus {
        background: #f52d2d !important;
        color: #fff;
    }

.navbar-default.stuck {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #131829;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.35), 0 2px 10px 0 rgba(0,0,0,.15);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.35), 0 2px 10px 0 rgba(0,0,0,.15);
    -webkit-animation: fadeInDown 1s both;
    animation: fadeInDown 1s both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

/* ==========================================================================
   4.Play button
   ========================================================================== */


.play-btn {
    margin: 2.25em 0;
    text-align: center;
}

.hero-section .play-btn img {
    transition: opacity 0.3s linear;
}

.play-btn img:hover {
    opacity: .8;
}

/* ==========================================================================
   5.Featured on
   ========================================================================== */



.section-header {
    margin-bottom: 3em;
}

    .section-header h2 {
        font-size: 24px;
        font-weight: 600;
        margin-top: 0;
    }

    .section-header h3 {
        font-size: 24px;
        font-weight: 300;
        margin: 0;
    }

.featured-on,
.features,
.tour,
.site-footer {
    background-color: rgba(0, 0, 0, 0.03);
}

.section-spacing,
.section-spacing.featured-on,
.section-spacing.tour,
.section-spacing.site-footer {
    padding: 3.75em 0;
}

.featured-on .section-header {
    margin-bottom: 1.5em;
}

.featured-sites li {
    padding: 0 3em 1.5em;
}

    .featured-sites li:last-child {
        padding-bottom: 0;
    }

.featured-sites img {
    opacity: .15;
    transition: all 0.5s linear;
}

    .featured-sites img:hover {
        opacity: .2;
    }

/* ==========================================================================
   6.Benefits
   ========================================================================== */



.benefits img {
    margin-bottom: .75em;
}

.benefits p {
    color: #8A8A8A;
}

.benefits div[class^="col-"]:nth-child(1),
.benefits div[class^="col-"]:nth-child(2),
.reviews div[class^="col-"]:nth-child(1),
.reviews div[class^="col-"]:nth-child(2),
.team div[class^="col-"]:nth-child(1),
.team div[class^="col-"]:nth-child(2) {
    padding-bottom: 1.5em;
}

.benefits div[class^="col-"] > p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   7.Features
   ========================================================================== */

.features {
    overflow-x: hidden;
}

    .features div[class="row"]:nth-child(1),
    .features div[class="row"]:nth-child(2) {
        margin-bottom: 3em;
    }

    .features article {
        margin-top: 1.5em;
    }

        .features article h2 {
            font-size: 24px;
            margin: 24px 0 12px;
        }

        .features article li {
            font-size: 17px;
            color: #8A8A8A;
            padding-left: 1em;
            text-indent: -.7em;
            padding-bottom: .2em;
        }

            .features article li:last-child {
                padding-bottom: 0;
            }

            .features article li:before {
                content: "• ";
                color: #f56363;
                padding-right: .5em;
            }

    .features div[class="row"]:nth-child(3) .col-md-4 article {
        margin-bottom: 1.5em;
    }

/* ==========================================================================
   8.video tour
   ========================================================================== */

.video-tour {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #333 url(../img/bg-video-preview.jpg) center center no-repeat scroll;
    background-size: cover;
    -webkit-perspective: 1000;
    perspective: 1000;
}

    .video-tour::before {
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .video-tour h2 {
        font-size: 24px;
        color: #fff;
        font-weight: 400;
        margin-bottom: 0;
    }

#bgvid {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    display: none;
    object-fit: cover;
}

.video-tour .play-btn {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    margin: 0;
}

/* ==========================================================================
   9.tour
   ========================================================================== */

.center-block {
    float: none;
}

.tour h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.tour .btn {
    margin-top: 1em;
    vertical-align: initial;
}

    .tour .btn i,
    .sub-form .btn i {
        padding-left: .5em;
    }

/* ==========================================================================
   10.Pricing
   ========================================================================== */

.pricing {
    background: url(../img/bg-pricing.jpg) center center no-repeat scroll;
    background-size: cover;
    position: relative;
}

    .pricing::before {
        background: rgba(0, 0, 0, 0.30);
    }

    .pricing .section-header h2,
    .pricing .section-header h3 {
        position: relative;
        color: #fff;
    }

.plan {
    background-color: #fff;
    width: 350px;
    display: inline-block;
    margin: 0 0 1.5em;
    max-width: 100%;
}

    .plan:last-child {
        margin-bottom: 0;
    }

    .plan .header,
    .price,
    .plan-features {
        padding: 1.5em 1em;
    }

        .plan .header h4 {
            font-size: 21px;
            margin: 0;
        }

.price {
    background-color: #43c5b8;
    color: #fff;
}

.price-amount {
    font-size: 110px;
    line-height: 1;
}

.period {
    font-size: 30px;
}

.currency {
    font-size: 30px;
    vertical-align: top;
    top: 30px;
}

.plan-features li {
    padding-bottom: .75em;
    font-size: 17px;
}

    .plan-features li:last-child {
        padding-bottom: 0;
    }

    .plan-features li span {
        font-weight: 700;
    }

    .plan-features li i {
        padding-left: .5em;
        color: #f56363;
    }

.buy-button {
    padding-bottom: 1.5em;
}

    .buy-button p {
        margin: 12px 0 0;
        font-weight: 300;
    }

/* ==========================================================================
  11.reviews
   ========================================================================== */

.reviews figure {
    margin-bottom: 1.5em;
}

blockquote {
    padding: 0 0 0 3em;
    margin: 0;
    border-left: none;
    position: relative;
}

    blockquote::before {
        content: "\201C";
        color: #e9e9e9;
        position: absolute;
        left: -12px;
        top: -50px;
        font-size: 128px;
    }

    blockquote p {
        font-size: 18px;
        font-weight: 400;
    }

    blockquote cite {
        font-size: 17.5px;
        font-weight: 400;
        color: #AEAFAF;
        font-style: normal;
    }

/* ==========================================================================
  12.cta section
   ========================================================================== */

.cta-section {
    background-color: #f56363;
}

    .cta-section .section-header {
        margin-bottom: 2.25em;
    }

    .cta-section h2 {
        font-size: 40px;
        font-weight: 600;
        color: #fff;
    }

    .cta-section .section-header h3 {
        font-size: 24px;
        font-weight: 300;
        color: #fff;
    }

    .cta-section .btn {
        background-color: #fff;
        color: #f56363;
        border: 1px solid transparent;
    }

        .cta-section .btn:hover {
            background-color: transparent;
            color: #fff;
            border: 1px solid #fff;
        }

    .cta-section p {
        color: #fff;
        margin: .75em 0 0;
    }

    .cta-section a[href^="tel"] {
        color: #fff;
    }

        .cta-section a[href^="tel"]:hover {
            color: #fff;
            text-decoration: underline;
        }

/* ==========================================================================
   13.Team
   ========================================================================== */



.team h4 {
    font-size: 21px;
    margin: 24px 0 6px;
}

.team h5 {
    font-size: 19px;
    font-weight: 400;
    margin-top: 0;
}

.team div[class^="col-"]:nth-child(3) .team-info h5 {
    margin: 0;
}

.team p {
    color: #444;
}

.team-details figure {
    position: relative;
    overflow: hidden;
    width: 360px;
    max-width: 100%;
    margin: 0 auto;
}

.team-details figcaption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(245, 99, 99, 0.95);
    transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    padding: 1.5em 1em;
    display: block;
}

.team-details figure figcaption div p,
.team-details figure figcaption div li a {
    transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 200%, 0);
    -ms-transform: translate3d(0, 200%, 0);
    transform: translate3d(0, 200%, 0);
}

.team-details figure:hover figcaption,
.team-details figure:hover figcaption div p,
.team-details figure:hover figcaption div li a {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.team-details figure figcaption div p {
    transition-delay: 0.05s;
}

.team-details figure figcaption div li:nth-child(1) a {
    transition-delay: 0.1s;
}

.team-details figure figcaption div li:nth-child(2) a {
    transition-delay: 0.15s;
}

.team-details .social {
    margin-top: .75em;
}

    .team-details .social li a {
        color: #f56363;
        background-color: #fff;
        border: 1px solid #f56363;
        width: 55px;
        height: 55px;
        line-height: 55px;
        font-size: 1.5em;
    }

        .team-details .social li a:hover {
            color: #fff;
            background-color: #f56363;
            border: 1px solid #fff;
        }

.team-details figcaption div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 1.5em;
}

/* ==========================================================================
   14.Twitter feed
   ========================================================================== */

.twitter-feed {
    background: url(../img/bg-twitter.jpg) center center no-repeat scroll;
    background-size: cover;
    position: relative;
}

    .twitter-feed::before {
        background-color: rgba(36,46,73,0.5);
    }

.twitter-icon .fa-twitter {
    color: #fff;
    font-size: 4em;
    padding-bottom: 12px;
}

.tweet {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}

    .tweet a {
        color: #fff;
    }

        .tweet a:hover {
            color: rgba(255, 255, 255, 0.92);
        }

/* ==========================================================================
   15.Contact us
   ========================================================================== */

.contact.section-spacing {
    padding: 3.75em 0 0;
}

#map-canvas {
    width: 100%;
    margin: 0px;
    padding: 0px;
    height: 35em;
}

    #map-canvas img {
        max-width: none;
    }

.map-info-box {
    text-align: left;
}

    .map-info-box p {
        margin: 0 0 8px;
    }

    .map-info-box i {
        padding-right: .5em;
        color: #CEC9C9;
    }

.map-head h3 {
    height: 30px;
    background: url(../img/logo-nav.svg) 47px center no-repeat;
    background-size: 110px auto;
    text-indent: -999em;
    margin: 12px 0 14px;
}

.map-address {
    font-weight: 300;
}

.map-email {
    font-weight: 400;
}

/* ==========================================================================
   16.Subscription form styles
   ========================================================================== */


.form-control::-webkit-input-placeholder {
    color: #8A8A8A;
}

.form-control:-moz-placeholder {
    color: #8A8A8A;
}

.form-control::-moz-placeholder {
    color: #8A8A8A;
}

.form-control:-ms-input-placeholder {
    color: #8A8A8A;
}

.form-control {
    box-shadow: none;
    height: 60px;
    font-weight: 400;
    font-size: 16px;
    width: 100%;
    max-width: 800px;
    margin: 0;
    padding: 0;
    color: #111;
    border: none;
    border-bottom: 1px solid #e9e7e7;
    border-radius: 1px;
    background-color: #fff;
    line-height: 50px;
}

    .form-control:focus {
        border-color: #fa5454;
        outline: 0;
        box-shadow: none;
    }

.sub-form .btn {
    padding: 1em;
}

#mc-form .btn-default {
    height: 60px;
}

#mc-notification {
    margin: 0.75em 0 0;
    font-weight: 400;
    color: #8A8A8A;
    font-size: 17px;
}

.error {
    color: #FF4C4C !important;
}

.valid {
    color: #4CAF50 !important;
}

    .error i,
    .valid i {
        padding-right: .5em;
    }

/* ==========================================================================
   17.site footer 
   ========================================================================== */



.site-footer small {
    display: inline-block;
}

.footer-links,
.site-footer small {
    margin: 0 0 .75em;
}

    .site-footer small,
    .footer-links a {
        color: #8A8A8A;
        font-weight: 300;
        font-size: 18px;
    }

        .footer-links a:hover {
            color: #fa5454;
        }

        .footer-links a:first-child {
            padding-right: .4em;
        }

.chat-btn.fixed {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f56363 url(../img/chat-icon.svg) center center no-repeat;
    position: fixed;
    bottom: 120px;
    right: 30px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    transition: all 0.2s ease-in-out;
    z-index: 2;
}

.chat-btn.fixed {
    display: none;
}

.chat-btn:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.chat-btn.fixed {
    display: block;
}

#modal-contact-form .modal-body {
    padding: 3em 1em;
}

.contact-form .section-header h2 {
    margin: 24px 0 12px;
}

.contact-form .form-control {
    border-radius: 4px;
    height: 49px;
    padding: 10px 16px;
    border-color: #dadddf;
}

    .contact-form .form-control:focus {
        border-color: #fab1b1;
    }

.contact-form textarea.input-lg {
    height: auto;
}

.cta-form .form-group {
    margin-bottom: 24px;
}

.contact-form .form-control.input-error {
    border-color: #f44336;
}

.contact-form-success {
    text-align: center;
    padding: 12px;
    margin: 0;
    font-size: 20px;
    display: none;
}

    .contact-form-success i {
        display: block;
        width: 80px;
        height: 80px;
        margin: 0 auto 12px;
        border: 3px solid #2dbf5b;
        line-height: 74px;
        border-radius: 50%;
        font-size: 38px;
        text-align: center;
        color: #2dbf5b;
        background: transparent;
    }

.contact-form-success {
    color: #949494;
}

    .contact-form-success span {
        display: block;
        margin-bottom: 6px;
        color: #4c4c4c;
        font-size: 30px;
    }

.modal-backdrop.in {
    opacity: .8;
}

.modal {
    padding-right: 0 !important;
}

    .modal button.close {
        position: absolute;
        top: -33px;
        right: 15px;
        font-size: 30px;
        color: #fff;
        opacity: .9;
        text-shadow: none;
        transition: all 0.3s ease-in-out;
        font-weight: 800;
    }

    .modal .close:hover,
    .modal .close:focus {
        opacity: 1;
        outline: none;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .modal .modal-dialog {
        margin: 70px auto;
    }

    .modal .modal-content {
        border-radius: 3px;
    }

/* ==========================================================================
   18.Social 
   ========================================================================== */


.social li {
    display: inline-block;
    padding-right: .5em;
    text-align: center;
}

    .social li:last-child {
        padding-right: 0;
    }

    .social li a {
        display: block;
        width: 45px;
        height: 45px;
        line-height: 45px;
        color: #fff;
        border-radius: 50%;
        position: relative;
        transition: all .8s ease;
        font-size: 1.3em;
        background: #D6D6D6;
    }

        .social li a:hover {
            color: #fff;
            background: #f56363;
        }

/* ==========================================================================
   Language switcher
   ========================================================================== */

.language-switcher {
    right: 80px;
    top: 96px;
    position: absolute;
}

    .language-switcher .btn {
        font-size: 15px;
        text-transform: none;
        padding: 0;
        line-height: 0;
    }

        .language-switcher .btn,
        .language-switcher .btn:hover,
        .language-switcher.open > .dropdown-toggle.btn-default:hover,
        .language-switcher.open > .dropdown-toggle.btn-default,
        .language-switcher .btn:active,
        .language-switcher .btn:focus,
        .language-switcher .btn:active:hover,
        .language-switcher .btn:active:focus,
        .language-switcher.open > .dropdown-toggle.btn-default:focus {
            background: transparent;
            border-color: transparent;
            box-shadow: none;
            color: #fff;
        }

            .language-switcher .dropdown-menu a img,
            .language-switcher .btn img {
                padding-right: 3px;
            }

    .language-switcher .dropdown-menu {
        top: 126%;
    }


/* ==========================================================================
   19.Small devices (tablets, 768px and up)
   ========================================================================== */

@media (min-width: 768px) {

    .hero-section {
        padding: 0 0 7.5em;
    }

    .welcome-message {
        margin-top: 8.25em;
    }

        .welcome-message h1 {
            font-size: 44px;
        }

        .welcome-message h2 {
            font-size: 23px;
        }

    .play-btn {
        margin: 3em 0;
    }

    .featured-sites li {
        padding: 0 1em;
        display: inline-block;
    }

    .section-spacing {
        padding: 4.5em 0;
    }

    .contact.section-spacing {
        padding: 4.5em 0 0;
    }

    .section-header h3 {
        font-size: 26px;
    }

    .benefits div[class^="col-"]:nth-child(1),
    .benefits div[class^="col-"]:nth-child(2),
    .reviews div[class^="col-"]:nth-child(1),
    .reviews div[class^="col-"]:nth-child(2),
    .team div[class^="col-"]:nth-child(1),
    .team div[class^="col-"]:nth-child(2) {
        padding-bottom: 0;
    }

    .tour .btn {
        margin: 0 0 0 1em;
    }

    .video-tour {
        height: 450px;
    }

    .plan {
        width: 325px;
        margin: 0 1em 0;
    }

    blockquote {
        padding: 0 0 0 1em;
    }

        blockquote::before {
            left: -18px;
            top: -30px;
            font-size: 80px;
        }

    .cta-section h2 {
        font-size: 46px;
    }

    .team h5 {
        margin: 0 !important;
    }

    .tweet {
        font-size: 23px;
    }

    .sub-form .btn {
        padding: 1em 2em;
    }

    .language-switcher {
        right: 250px;
    }

    #modal-contact-form .modal-body {
        padding: 3em;
    }

    .modal button.close {
        right: 0;
    }
}

/* ==========================================================================
   20.Medium devices (desktops, 992px and up) 
   ========================================================================== */

@media (min-width: 992px) {

    .hero-section {
        padding: 2em 0 7em;
    }

    .navbar-default {
        background-color: transparent;
    }

        .navbar-default .btn {
            border: 1px solid #fff;
            background-color: transparent;
            padding: .75em 1.5em;
        }

            .navbar-default .btn:hover {
                background-color: #f52d2d !important;
            }

    .navbar-brand {
        padding: 0;
    }

    .nav-left {
        padding-left: 3em;
    }

    .welcome-message {
        margin-top: 4.5em;
    }

        .welcome-message h1 {
            font-size: 56px;
        }

        .welcome-message h2 {
            font-size: 24px;
        }

    .play-btn {
        margin: 4.5em 0;
    }

    .section-spacing {
        padding: 6em 0;
    }

    .contact.section-spacing {
        padding: 6em 0 0;
    }

    .features div[class="row"]:nth-child(1),
    .features div[class="row"]:nth-child(2) {
        margin-bottom: 7.5em;
    }

    .features article {
        margin-top: 6em;
    }

    .features img {
        max-width: none;
    }

    .features div[class="row"]:nth-child(2) .col-md-7 img {
        left: -277px;
    }

    .featured-sites li {
        padding: 0 3em;
    }

    .video-tour {
        height: 450px;
        background: none;
    }

        .video-tour::before {
            background: rgba(0, 0, 0, 0.1);
        }

    #bgvid {
        display: block;
    }

    .plan {
        margin: 0 1.5em 0;
        width: 350px;
    }

    blockquote {
        padding: 0 0 0 3em;
    }

        blockquote::before {
            left: -5px;
            top: -50px;
            font-size: 128px;
        }

    .footer-links,
    .site-footer small {
        margin: 0;
    }

    .section-spacing.site-footer {
        padding: 3em 0;
    }

    .language-switcher {
        top: 7em;
    }
}

@media (max-width: 460px) {

    .video-tour .play-btn img {
        width: 45%;
    }
}
/* ==========================================================================
   20.Medium devices (desktops, 1200px and up) 
   ========================================================================== */
@media (min-width: 992px) and (max-width: 1200px ) {

    .features img {
        width: 820px;
    }
}



.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dn {
    background: rgba(240, 248, 255, 0);
    border: 0;
    position: relative;
    display: block;
    padding: 1.24rem 5px;
    line-height: 0px;
}

    .dn:hover {
        color: #f42c2c;
    }
/* Dropdown Content (Hidden by Default) */
.dn-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 9px 6px 7px;
    border-radius: 3px;
    margin-top: 9px;
    margin-left: 15px;
    text-align: left;
}

.top_panel_wrap:not(.top_panel_style_1) .menu_main_nav > li > ul:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 5px solid #fff;
    border-color: #fff #fff transparent transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Links inside the dropdown */
.dn-content a {
    color: #242e49;
    padding: 16px 12px;
    text-decoration: none;
    display: block;
    font-size: 15px;
    font-weight: 800;
}

.i {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 5px solid #fff;
    border-color: #fff #fff transparent transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* Change color of dropdown links on hover */
.dn-content a:hover {
    color: #fb0000;
}

/* Show the dropdown menu on hover */
.dn:hover .dn-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dn:hover .dropbtn {
    background-color: #3e8e41;
}

.gallery {
    display: inline-block;
    margin-top: 20px;
}

#no {
    display: none
}

/* ==========================================================================
   21, Codigo LabCron de 3s Peru
========================================================================== */
.mo {
    background-position: -4% -4em;
    padding-bottom: 11em;
    padding-top: 5em;
}

@media (min-width: 0) {
    #no {
        display: block
    }

    .dn {
        display: none !important;
    }

    .navbar-collapse {
        margin-top: 10px;
    }

    #n {
        font-size: 18px;
        color: white;
    }

    #t {
        font-size: 18px
    }

    .mo {
        background-position: 0% 0em;
        padding-bottom: 3em;
        padding-top: 8em;
    }

    .sof {
        padding-left: 10px;
    }

    .b8 {
        margin-left: 10px;
        padding-top: 65px;
        text-align: left;
    }

    .flexbox {
        padding-left: 0;
        padding-right: 0;
        border-bottom: 1px solid #e1e3e4;
    }

    .flexbox-c {
        padding-left: 0;
        padding-right: 0;
        border-bottom: 1px solid #e1e3e4;
    }

    .flex {
        padding-left: 0;
        padding-right: 0;
        border-bottom: 1px solid #e1e3e4;
    }

    .cu {
        width: 100%;
    }

    .ciu {
        padding: 0;
    }

    .cz {
        width: 100%;
    }

    .z {
        background: rgba(19, 24, 41, 0.91);
        padding-top: 5rem;
        padding-bottom: 4rem;
        text-align: center;
        height: auto;
    }

    .zz {
        padding-top: 6rem;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
        background: rgba(244, 45, 45, 0.94);
        height: auto;
    }

    .cdc {
        max-width: 100%;
        border: 1px solid rgba(0, 0, 0, .1);
        box-sizing: border-box;
        content: '';
        border-radius: 4px;
    }

    .cs {
        border-color: #ffffff;
        border-width: 3px;
        border-style: solid;
        font-size: 1.8rem;
        color: white !important;
        padding: 0.8em 2.2rem;
    }

    .pr {
        background-size: contain !important;
        background-position: 0 4em !important;
        padding: 0px 0 8.3em;
        position: relative;
        color: #fff;
    }

    .rs {
        padding: 0;
        padding-top: 1.89rem;
    }

    .cl {
        margin-bottom: 2em;
    }

    .l {
        text-align: center;
    }

    .ja {
        background-size: cover;
        background-position: 0 2em !important;
        ;
        padding: 0 0 2em !important;
        ;
        position: relative;
        color: #fff;
    }

    .hero-section {
        background-position-x: -21em;
    }

    .x {
        position: fixed;
        bottom: 1.7rem;
        left: 22px;
        z-index: 999999
    }

    .y {
        display: block;
    }

    top {
        text-align: center;
    }

    #typed {
        font-size: 34px !important;
        line-height: 0;
    }

    .za {
        display: none;
    }

    .w {
        display: initial;
    }

    .y {
        right: 10px;
        top: auto;
        bottom: 7.7rem;
        display: block;
    }
}

@media (min-width: 768px) {
    #no {
        display: block
    }

    .dn {
        display: none !important;
    }

    .navbar-collapse {
        margin-top: 10px;
    }

    #t {
        font-size: 18px
    }

    .mo {
        background-position: 0% 0em;
        padding-bottom: 3em;
        padding-top: 8em;
    }

    .sof {
        padding-left: 10px;
    }

    .flexbox {
        padding-left: 0;
        padding-right: 0;
        border-bottom: 1px solid #e1e3e4;
    }

    .flexbox-c {
        padding-left: 0;
        padding-right: 0;
        border-bottom: 1px solid #e1e3e4;
    }

    .flex {
        padding-left: 0;
        padding-right: 0;
        border-bottom: 1px solid rgba(225, 227, 228, 0);
    }

    .cu {
        width: 100%;
    }

    .ciu {
        width: 100%;
        padding: 0;
    }

    .cz {
        width: 100%;
    }

    .z {
        background: rgba(19, 24, 41, 0.91);
        padding-top: 6rem;
        padding-bottom: 4rem;
        text-align: right;
        height: 733px;
    }

    .zz {
        padding-top: 6rem;
        padding-left: 4rem;
        padding-right: 3rem;
        text-align: left;
        background: rgba(244, 45, 45, 0.94);
        height: 733px;
    }

    .cdc {
        max-width: 80%;
        border: 1px solid rgba(0, 0, 0, .1);
        box-sizing: border-box;
        content: '';
        border-radius: 4px;
    }

    .cs {
        border-color: #ffffff;
        border-width: 3px;
        border-style: solid;
        font-size: 1.8rem;
        color: white;
        padding: 1.4em 2.75em;
    }

    .pr {
        background-size: contain !important;
        background-position: 0 4em !important;
        padding: 0 0 15.5em !important;
        position: relative;
        color: #fff;
    }

    .rs {
        padding: 0;
        padding-top: 2em;
    }

    .cl {
        margin-bottom: 5em;
    }

    .l {
        text-align: center;
    }

    .ja {
        background-size: cover;
        background-position: 0 2em !important;
        ;
        padding: 0 0 1.5em !important;
        ;
        position: relative;
        color: #fff;
    }

    .x {
        position: fixed;
        bottom: 1.7rem;
        left: 22px;
        z-index: 999999
    }

    .y {
        display: block;
    }

    .hero-section {
        background-position-x: 0;
    }

    top {
        text-align: center;
    }

    #typed {
        font-size: 50px !important;
        white-space: inherit !important;
    }

    .w {
        display: none;
    }

    .za {
        display: initial;
    }

    .y {
        right: 10px;
        top: 11.7rem;
        display: block;
    }
}

@media (min-width: 992px) {
    #no {
        display: none
    }

    .dn {
        display: block !important;
    }

    .navbar-collapse {
        margin-top: 0;
    }

    #t {
        font-size: 16px
    }

    .pr {
        background-size: cover !important;
        background-position: 0 4em !important;
        padding: 0 0 23.5em !important;
        position: relative;
        color: #fff;
    }

    .mo {
        background-position: 0% -3em;
        padding-bottom: 11em;
        padding-top: 5em;
    }

    .sof {
        padding-left: 16%;
    }

    .b8 {
        display: inline-block;
        color: #fff;
        margin-left: 175px;
        padding-top: 80px;
        margin-right: 57px;
        position: relative;
        text-align: left;
    }

    .flexbox {
        padding-left: 0;
        padding-right: 0;
        border-bottom: 1px solid #e1e3e4;
        height: 160px;
        border-right: 1px solid #e1e3e4;
    }

    .flexbox-c {
        border-bottom: 1px solid #e1e3e4;
        height: 160px;
    }

    .flex {
        color: white;
        text-align: center;
        border-right: 1px solid #e1e3e4;
        height: 160px;
        border-bottom: 1px solid rgba(225, 227, 228, 0);
    }

    .cu {
        width: 84%;
    }

    .ciu {
        width: 33.33333333%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .cz {
        width: 25%;
    }

    .z {
        background: rgba(19, 24, 41, 0.91);
        padding-top: 6rem;
        padding-bottom: 4rem;
        text-align: right;
        height: 733px;
    }

    .zz {
        padding-top: 6rem;
        padding-left: 4rem;
        padding-right: 8rem;
        text-align: left;
        background: rgba(244, 45, 45, 0.94);
        height: 733px;
    }

    .cdc {
        max-width: 47%;
        border: 1px solid rgba(0, 0, 0, .1);
        box-sizing: border-box;
        content: '';
        border-radius: 4px;
    }

    .cs {
        border-color: #ffffff;
        border-width: 3px;
        border-style: solid;
        font-size: 1.8rem;
        color: white;
        padding: 1.4em 2.75em;
    }

    .rs {
        padding: 0;
        padding-top: 3em;
    }

    .cl {
        margin-bottom: 8em;
    }

    .l {
        text-align: left;
    }

    .ja {
        background-size: cover;
        background-position: 0 2em !important;
        ;
        padding: 0 0 23.5em !important;
        ;
        position: relative;
        color: #fff;
    }

    .x {
        display: none;
    }

    .y {
        display: block;
    }

    .hero-section {
        background-position-x: 0;
    }

    top {
        text-align: center;
    }

    #typed {
        font-size: 50px !important;
        white-space: inherit !important;
    }

    .w {
        display: none;
    }

    .za {
        display: initial;
    }

    .y {
        right: 10px;
        top: 11.7rem;
        display: block;
    }
}

#typed {
    font-size: 50px;
    white-space: inherit !important;
}

.typed-cursor {
    font-size: 56px;
}
