/*------------------------------------------
  Responsive Grid Media Queries
--------------------------------------------*/
/* ---- Start of min-width 1800px CSS ---- */

@media (min-width: 1800px) {
    section#countup:before {
        height: 70px !important;
        top: -67px !important;
    }
    section#countup:after {
        height: 70px !important;
        bottom: -67px !important;
    }
    footer#main-footer:before {
        height: 70px !important;
        top: -67px !important;
    }
}


/* ---- End of min-width 1800px CSS ---- */

/* ---- Start of min-width 1450px CSS ---- */

@media (min-width: 1450px) {
    section#countup:before {
        height: 60px;
        top: -57px;
    }
    section#countup:after {
        height: 60px;
        bottom: -57px;
    }
    footer#main-footer:before {
        height: 60px;
        top: -57px;
    }
}


/* ---- End of min-width 1450px CSS ---- */


/* ---- Start of max-width 992px CSS ---- */

@media (max-width: 992px) {
    /*************** 
        Header
    **************/

    .slider-content {
        position: relative;
        top: 40% !important;
        z-index: 15;
        text-align: center;
    }    

    /**************** 
		Training Courses Section
	****************/
    section#courses {
        padding-bottom: 80px;
    }
    section#courses .training-course {
        padding: 25px 0;
    }
    section#courses .training-course > div {
        float: none !important;
    }
    section#courses .course-image {
        display: none;
    }
    /**************** 
		Blog Section
	****************/
    .blog-post .blog-desc {
        overflow: hidden;
        padding: 30px;
    }
    /**************** 
		Testimonial Section
	****************/
    section#testimonials {
        background-size: cover;
    }
    /**************** 
		Pricing Tables Section
	****************/
    section#pricing .pricing-tables .col-md-4 {
        margin-top: 80px;
    }
    section#pricing .pricing-tables .col-md-4:first-child {
        margin-top: 0;
    }
    /**************** 
		Signup Section
	****************/
    section#signup h3 {
        text-align: center;
    }
    section#signup .section-title:after {
        margin: 0 auto;
    }
    /**************** 
		Footer
	****************/
    footer .footer-social {
        clear: both;
        margin-top: 50px;
    }
    footer .footer-newsletter {
        margin-top: 50px;
    }
    /**************** 
		Contact Pages
	****************/
    form#contact-form input {
        margin: 20px 0;
    }
    form#contact-form {
        margin: 30px 0 60px 0;
    }
    .gmaps #map {
        width: 100%;
        margin-bottom: 40px;
    }

    .botoes-swiper-container{    
        bottom: -100px !important;
    }
    
    .botoes-swiper{
        padding-left: 0 !important;
        overflow: hidden !important;
    }

    .btns-header{
        margin: 0 10px !important;
        padding: 15px;
    
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start  !important;
        justify-content: center !important;
    
        width: 220px !important;
        max-width: unset !important;
        min-width: unset !important;
        height: 128px;
        border-radius: 8px;
    
        cursor: pointer;
    
        transition: .2s ease-out !important;
    }

    .btns-header > h2{
        font-size: 3rem !important;
    }   

    .btns-header > small{
        font-size: 1rem !important;
    }

    /**************** 5.2.5 Atracoes Section ****************/

    section#atracoes .container-fluid{
        height: 650px;
        background-color:rgb(43, 118, 217);
    }

    section#atracoes .atracoes-title > h2{
        color: white !important;
        font-size: 5rem;
        font-family: 'Montserrat', 'sans-serif';
        text-align: center !important;

        padding: 20px 0;
    }

    section#atracoes .atracoes-carousel{
        position: absolute;
        left: 0;
        right: 0; 
        bottom: -15%;
        margin-left: auto; 
        margin-right: auto; 

        max-width: 1450px !important;
        max-height: 820px;

        border-radius: 12px !important;
        box-shadow: none !important;

        padding: 0 !important;

        display: flex;
        flex-direction: row;
        z-index: 400;
    }

        .atracoes-carousel > .carousel-text{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            width: 100% !important;

            border-top-left-radius: 12px !important;
            border-bottom-left-radius: 12px !important;
            padding: 60px 40px;

            background-color: white;
        }

            .carousel-text > .carousel-images-mobile{
                display: block !important;
                width: 100% !important;
                height: 300px !important;

                border-radius: 12px;

                background-image: url(../images/hotel/hotel.jpg);
                background-size: cover;
                background-position: center;
            }

            .carousel-text > .text-avatar{
                width: 120px;
                height: 120px;
                border-radius: 50%;
                background-color: rgb(165, 165, 165);
            }

            .carousel-text > h3{
                color: black;
                font-size: 3rem;
                margin: 40px 0 !important;
            }

            .carousel-text > p{
                color: black;
                font-size: 1.6rem;
                text-align: center;

                width: 70%;

                margin: 60px 0 !important;
                margin-bottom: 60px !important;
            }

            .carousel-text > .text-btn{
                color: white;
                font-size: 2rem;
                font-weight: bold;
                text-align: center;
                text-transform: uppercase;

                padding: 10px;

                width: 40%;
                border: 1px solid rgb(0, 156, 255) !important;
                border-radius: 12px;
                background-color: rgb(0, 156, 255);
                box-shadow: rgba(0, 0, 0, 0.2) 0 10px 20px 0;

                transition: .3s ease-out;
            }

            .carousel-text > .text-btn:hover{
                box-shadow: none !important;
                color: rgb(0, 156, 255);
                background-color: rgba(0, 157, 255, 0);
            }

        .atracoes-carousel > .carousel-images{
            display: none !important;
        }

    .fixed-swiper-buttons{
        display: none !important;
    }
}


/* ---- End of max-width 992px CSS ---- */


/* ---- Start of min-width 480px and max-width 768px CSS ---- */

@media all and (min-width: 480px) and (max-width: 768px) {
    /**************** 
		TOP HEADER
    ****************/
}


/* ---- End of min-width 480px and max-width 768px CSS ---- */


/* ---- Start of max-width 769px CSS ---- */

@media all and (max-width: 769px) {
    /**************** 
		Main Menu
	****************/
    .navbar-nav>li>a {
        padding: 15px 0;
    }
    .dropdown-menu {
        background: rgba(15, 83, 108, 0.55) !important;
    }
    .dropdown-menu li a {
        color: #f6f8f8 !important;
        padding: 15px 0 15px 30px !important;
    }
    /**************** 
		Training Courses Section
	****************/
    section#courses .course-main .row:last-child {
        padding: 0;
    }
    /**************** 
		Count Up Section
	****************/
    section#countup .col-xs-12 {
        padding: 30px 0;
    }
    /**************** 
		Signup Section
	****************/
    section#signup {
        background: rgb(55, 115, 236);
    }
    /**************** 
		Latest Events Section
	****************/
    section#events table {
        border: none;
    }
    /**************** 
		About Page
	****************/
    section#about .about-vid .vid-container {
        width: 100%;
    }
    ul.timeline:before {
        left: 40px;
    }
    ul.timeline > li > .timeline-panel {
        width: calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
    }
    ul.timeline > li > .timeline-badge {
        left: 40px;
        margin-left: 0;
        top: 15px;
    }
    ul.timeline > li > .timeline-panel {
        float: right;
    }
    ul.timeline > li > .timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }
    ul.timeline > li > .timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }

    /**************** 
		atracoes Section
    ****************/
    section#atracoes{
        margin-bottom: 0 !important;
    }

    section#atracoes .atracoes-title > h2{
        padding: 0 !important;
    }

    section#atracoes .atracoes-carousel{
        height: 510px !important;
        bottom: 160px !important;
    }

    /**************** 
		Mapa Section
    ****************/

    section#mapa-img .background-map{ 
        max-height: 640px !important;
    }

    /**************** 
		Blog Detail Page
	****************/
    section#blog-post ul.social li {
        margin-bottom: 20px;
    }
    section#blog-post .post-quote blockquote {
        padding: 90px 0;
    }
}


/* ---- End of max-width 769px CSS ---- */


/* ---- Start of max-width 767px CSS ---- */

@media all and (max-width: 767px) {
    /**************** 
		Coming Soon Page
	****************/
    section#coming-soon .fullscreen {
        position: fixed;
    }
    section#coming-soon .coming-content {
        position: absolute;
        width: 100%;
        top: 30%;
        transform: translateY(20%);
    }

    .btn-display{
        display: none !important;
    }

    .btn-mobile{
        display: block !important;
    }

    .botoes-swiper-container{    
        bottom: -100px !important;
    }
    
    .botoes-swiper{
        padding-left: 0 !important;
        overflow: hidden !important;
    }

    .btns-header{
        margin: 0 10px !important;
        padding: 15px;
    
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start  !important;
        justify-content: center !important;
    
        width: auto !important;
        min-width: 200px !important;
        height: 128px;
        border-radius: 8px;
    
        cursor: pointer;
    
        transition: .2s ease-out !important;
    }

    .btns-header > h2{
        font-size: 3rem !important;
    }   

    .btns-header > small{
        font-size: 1rem !important;
    } 
}


/* ---- End of max-width 767px CSS ---- */


/* ---- Start of max-width 580px CSS ---- */

@media all and (max-width: 580px) {
    /**************** 
		Main Slider Section
	****************/
    .slider-content {
        top: 30%;
    }

    .slider-content h3 span {
        font-size: 52px;
    }

    .swiper-pagination {
        height: 0;
    }
    /**************** 
		Gallery Section
	****************/
    ul.gallery-sorting li {
        margin-bottom: 50px;
    }
    /**************** 
		Testimonial Section
	****************/
    #sync1 .item .testimonial {
        padding-left: 0;
        padding-top: 70px;
    }
    /**************** 
		Footer
	****************/
    footer .col-xs-6 {
        width: 100%;
        text-align: center;
        margin-bottom: 60px;
    }
    footer .footer-social {
        clear: both;
        margin-top: 0;
    }
    footer .footer-newsletter {
        margin-top: 0;
    }
}


/* ---- End of max-width 580px CSS ---- */


/* ---- Start of max-width 480px CSS ---- */

@media all and (max-width: 480px) {

    /**************** 
		Header Section
	****************/

    header.cabecalho{
        padding: 0 15px;
    }

    header.cabecalho > .cabecalho-info{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        
        width: 70%;
        min-width: unset !important;
    }

        .cabecalho-info > h4{
            color: white;
            font-size: 1.2rem;
            text-align: center;
            display: none;
        }

        .cabecalho-info > a{
            display: flex;
            flex-direction: row;
            align-items: center;

            font-size: 1.4rem;
            color: white;

            transition: none !important;
        }

        .cabecalho-info > .navbar{
            width: 50px !important;
            margin: 0 5px !important;
        }

            .cabecalho-info > .navbar .button{
                float: unset !important;
            }

    /**************** 
		Gallery Section
	****************/
    .gallery-items li.col-xs-6.shuffle-item {
        width: 100%;
    }
    /**************** 
		Blog Section
	****************/
    article.blog-post {
        padding: 25px;
    }

    /**************** 
		Telas Section
    ****************/

    section#telas{
        height: 250vh !important;
        max-height: unset !important;
    }

    section#telas .meia-tela-1{
        width: 100% !important; 
        height: 50%;
    }
    
    section#telas .meia-tela-2{
        width: 100% !important; 
        height: 50%;
    }

    .text-meia-tela > h4{
        font-size: 3.4rem;
    }

    .text-meia-tela > .btn-meia-tela{
        width: 80% !important;
    }

        /**************** 
		Parque Section
    ****************/
    .svg-wave{
        height: 60px !important;
    }

    section#sobre .parque-title{
        margin: 0 0 20px 0 !important;
    }

    section#sobre .parque-title > h2{
        font-size: 3.4rem;
    }

    section#sobre .main-content-capa .about-description-img{
        width: 90%;
        min-height: unset !important;
        height: auto !important;
    }

        .about-description-img a iframe{
            box-shadow: rgba(0, 0, 0, 0.5) 0 0 35px 0;
            border-radius: 12px;
            border: none;
        }
    
    section#sobre .main-content-capa-txt{
        padding-top: 160px;
        position: relative !important;
    }

    section#sobre .main-content-capa-txt > h2{
        padding: 60px 20px;
    }

    section#sobre .main-content-capa-txt > .about-description-texto{
        width: 85% !important;
    }

    section#sobre .main-content-capa-txt > .about-description-texto > p{
        font-size: 1.4rem;
    }

    /**************** 
		atracoes Section
    ****************/
    section#atracoes{
        margin-bottom: 20px !important;
    }

    section#atracoes .atracoes-title > h2{
        font-size: 3.4rem;
        padding: 0 !important;
    }

    section#atracoes .atracoes-carousel{
        height: 510px !important;
        bottom: 120px !important;
    }

    section#atracoes .atracoes-carousel .carousel__nav {
        position: absolute;
        margin-left: -50px !important;
        right: auto !important;
        left: 50% !important;

        z-index: 2;
        background-color: #fff;
        bottom: 0;
    }

    .carousel:hover .carousel-item__info{
        height: auto !important;
        padding: 20px !important;

        opacity: 1;
    }

    .carousel-item__info{
        position: absolute !important;
        top: 0 !important;

        opacity: 0;
        width: 100% !important;
        height: 0 !important;
        min-height: unset !important;

        overflow: hidden !important;

        background-color: white !important;
        transition: .2s ease-out !important;
    }

    .carousel-item__info .carousel-item__container{
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        -webkit-justify-content: center !important;
        align-items: center !important;
    }

        .carousel-item__container h1{
            margin: 0 !important;
            font-size: 3.4rem;
            letter-spacing: 0 !important;
            line-height: normal !important;
            text-align: center !important;
        }

        .carousel-item__container p{
            margin: 15px 0 !important;
            text-align: center !important;
        }

    .carousel-item__image{
        width: 100% !important;
        flex-basis: 100% !important;
    }

    /**************** 
		Mapa Section
    ****************/

    section#mapa-img .map-title > h3{
        font-size: 3.4rem !important;
    }

    section#mapa-img .background-map{ 
        max-height: 340px !important;
    }

}


/* ---- End of max-width 480px CSS ---- */


/* ---- Start of max-width 420px CSS ---- */

@media all and (max-width: 420px) {
    /**************** 
		Main Menu
	****************/
    nav.navbar {
        margin: 40px 0 0 0;
    }
    .navbar-brand {
        width: 100%;
    }
    .navbar-brand img {
        margin: 0 auto;
    }
    .navbar-header {
        clear: both;
        width: 100%;
        position: relative;

        margin: 0 !important;
    }
    /**************** 
		Main Slider Section
	****************/
    .slider-content h3 span {
        font-size: 42px;
    }
    .swiper-pagination {
        display: block;
    }
    /**************** 
		Blog Section
	****************/
    .blog-post .blog-desc {
        overflow: hidden;
        padding: 30px 0;
    }
    /**************** 
		Blog Detail Page
	****************/
    form#comment-form .comment-require {
        text-align: center;
    }
    form#comment-form .comment-require .btn {
        float: none !important;
    }
    /**************** 
		404 Page
	****************/
    #not-found.main {
        height: 100vh;
    }
}


/* ---- End of max-width 420px CSS ---- */


/* ---- Start of max-width 380px CSS ---- */

@media all and (max-width: 380px) {
    /**************** 
		Testimonial Section
	****************/
    #sync2 .item .client-img {
        width: 100%;
    }
    #sync2 .item img {
        margin: 0 auto;
    }
    #sync2 .item .details {
        width: 100%;
        padding: 0;
    }
    #sync2 .item .details h4,
    #sync2 .item .details h6 {
        text-align: center;
    }
    /**************** 
		Latest Events Section
	****************/
    section#events .col-md-6 {
        padding: 40px 0 0 0;
    }
    section#events table {
        margin-left: -15px;
    }
    .calendar td {
        font-size: 16px;
    }
    /**************** 
		About Page
	****************/
    ul.timeline:before {
        display: none;
    }
    ul.timeline > li > .timeline-badge {
        display: none;
    }
    .timeline > li > .timeline-panel {
        width: 100% !important;
    }
    /**************** 
		404 Page
	****************/
    section#not-found .error-detail h2 {
        font-size: 160px;
    }
    section#not-found img {
        width: 250px;
    }
}


/* ---- End of max-width 380px CSS ---- */


/* ---- Start of max-width 320px CSS ---- */

@media all and (max-width: 320px) {
    /**************** 
		Main Slider Section
	****************/
    .slider-content h3 span {
        font-size: 36px;
    }
    /**************** 
		404 Page
	****************/
    section#not-found .error-detail h2 {
        font-size: 140px;
    }
}


/* ---- End of max-width 320px CSS ---- */


/* ---- Start of max-height 420px CSS ---- */

@media screen and (max-height: 420px) {
    /**************** 
		Main Slider Section
	****************/
    .fullscreen {
        height: 550px;
    }
    nav.navbar {
        margin: 30px 0 0 0;
    }
    /**************** 
		404 Page
	****************/
    #not-found.main {
        height: 700px;
    }
}