body {
    font-family: 'Open Sans', sans-serif;
}
p {
    font-size: 1.2rem;
    color: #7a7a7a;
    line-height: auto;
}
.page-content {
    width: 85%;
    float: right;
}
.glass {
    box-shadow: 0 8px 32px 0 rgb(31 38 135 / 37%);
    background: rgb(32 60 137 / 78%) !important;
    backdrop-filter: blur(12px) saturate(80%) !important;
}
.glass-transp {
    backdrop-filter: blur(12px) saturate(80%) !important;
    padding: 3rem!important;
}
.hero_description{
    position: relative;
    right: 0;
    max-width: 60rem;
}
.internal_links_row{
    display:flex!important;
    gap: 5rem;
}
.internal_links{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: left;
    background: rgba(255, 255, 255, 0.08); /* translucent background */
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); /* floating shadow */
    backdrop-filter: blur(12px); /* glass-like effect */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.internal_link_div{
    position: relative;
    line-height: 1;
}
.internal_links img{
    width: 64px;
}

.content-section {
    padding: 3rem 50px;
    position: relative;
    width: 100%;
    display: inline-block;
    height: auto;
    left: 50%;
    text-align: center;
    border-bottom: 1px solid #eee;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.content-section.internal_links_row{
    align-items: center;
    padding:50px;
    p{
        font-size: 1.5rem
    }
}
@media(orientation: portrait){
    .internal_links{
        width: 100%;
        justify-items: unset;
    }
    .content-section.internal_links_row{
        padding:25px;
    }
    .hero_description{
        position: unset;
        right: unset;
        max-width: unset;
        width: unset;
    }
    .internal_links_row{
        flex-direction: column;
        gap: 1rem;
    }
    .content-section {
        padding: 1rem 25px;
    }
    .slider{
        margin-top: 6rem;
    }
    .open_badge{
        color: rgb(0, 128, 0);
        position: absolute;
        background: #e3f0e3;
        left: -1rem;
        top: -.5rem;
        padding: 0.5rem;
        font-size: .9rem;
    }
    .section-heading {
        text-align: left;
        margin-bottom: 15px;
    }

    .section-heading h1 {
        margin-top: 0px;
        font-size: 32px;
        color: #232323;
        display: inline-block;
        margin-right: 50px;
    }

    .section-heading em {
        font-style: normal;
        font-weight: 700;
        color: #203C89;
    }

    .section-heading p {
        display: inline-block;
        font-size: 15px;
        line-height: 26px;
        color: #343434;
    }

    .white-button a {
        font-size: 13px;
        font-weight: 600;
        color: #203C89;
        text-transform: capitalize;
        background-color: #fff;
        display: inline-block;
        height: 44px;
        line-height: 44px;
        padding: 0px 25px;
        letter-spacing: 0.25px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .white-button a:hover {
        background-color: #203C89;
        color: #fff;
    }

    .accent-button a {
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        text-transform: capitalize;
        background-color: #203C89;
        display: inline-block;
        height: 44px;
        line-height: 44px;
        padding: 0px 25px;
        letter-spacing: 0.25px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .accent-button a:hover {
        background-color: #fff;
        color: #203C89;
    }

    header {
        position: fixed;
        top: 0;
        transition: top 0.3s ease-in-out;
        width: 100%;
    }

    .nav-up {
        top: -75px;
    }
}
/* Responsive Navigation */

.responsive-nav {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 80px;
    background-color: #203c89;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
.navbar-toggle {
    position: absolute;
    top: 40%;
    right: 0;
    display: inline-block;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.navbar-nav {
    margin: 0;
    border: none;
}
#main-nav ul {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    margin-top: 59px;
    width: 100%;
}
#main-nav ul li {
    margin: 15px 0px;
}

#main-nav ul li:hover {
    background-color: transparent;
}

#main-nav ul li a {
    font-size: 15px;
    text-transform: capitalize;
    color: #fff;
    box-shadow: none;
    border: none;
}

#main-nav ul li a:hover {
    opacity: 0.5;
    background-color: transparent;
}

.navbar-toggle span {
    background-color: #ffffff;
}

/* Sidebar Style */

.sidebar-navigation {
    width: 15vw;
    float: left;
    height: 100%;
    position: fixed;
    background-color: rgba(32, 60, 137, 0.9);
    z-index: 10;
}

.sidebar-navigation .logo {
    position: absolute;
    width: 100%;
    height: 140px;
    line-height: 100px;
    background-color: #203C89;
    padding: 20px;
    text-align: center;
}

.sidebar-navigation .logo em {
    font-style: normal;
    font-weight: 300;
}

.sidebar-navigation nav {
    position: relative;
    top: 60%;
    left: 60%;
    -webkit-transform: translateX(-60%) translateY(-60%);
    -moz-transform: translateX(-60%) translateY(-60%);
    -ms-transform: translateX(-60%) translateY(-60%);
    -o-transform: translateX(-60%) translateY(-60%);
    transform: translateX(-60%) translateY(-60%);
}

.sidebar-navigation ul {
    margin-left: 45px;
    list-style: none;
    padding: 0;
}

.sidebar-navigation li {
    padding: 10px 0;
}

.sidebar-navigation span {
    display: inline-block;
    position: relative;
}

.sidebar-navigation nav a {
    display: inline-block;
    color: #fff;
    margin-top: 5px;
    text-decoration: none !important;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

/* Basic Dropdown */

.dropdown ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 999;
    margin-top: -3px;
    background-color: #262626;
    border-top: 3px solid #666;
}

.dropdown ul li {
    position: relative;
    z-index: 999;
}

.dropdown ul ul {
    left: 201px;
    top: 0;
}

li.dropdown ul li a {
    display: block;
    min-width: 200px;
    color: #bbb !important;
    font-size: 14px;
    line-height: 22px;
    padding: 9px 22px;
    -webkit-transition: all 0.15s ease-in-out !important;
    transition: all 0.15s ease-in-out !important;
    position: relative;
}

li.dropdown ul li a:hover {
    color: #fff !important;
    background-color: #666;
}

.hover-border {
    position: absolute;
    bottom: 0;
    height: 5px;
    width: 100%;
    background: #666;
    opacity: 0;
}

.dropdown ul .hover-border {
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
    -webkit-transition: opacity 0.15s ease-in-out;
}

.dropdown ul:hover .hover-border {
    opacity: 1;
}

.circle {
    margin-right: 5px;
    height: 10px;
    width: 10px;
    left: 0px;
    top: -1px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.rect {
    height: 1px;
    width: 0px;
    left: 0;
    bottom: 5.5px;
    background-color: #fff;
    -webkit-transition: -webkit-transform 0.1s, width 0.6s;
    -moz-transition: -webkit-transform 0.1s, width 0.6s;
    transition: transform 0.1s, width 0.6s;
}

.sidebar-navigation nav a:focus {
    color: #fff;
}

.sidebar-navigation nav a:hover,
nav .active-section {
    color: #fff;
}

.sidebar-navigation nav a:hover span,
nav .active-section span {
    background-color: #ddd;
}

.sidebar-navigation nav .active-section .rect {
    width: 30px;
}

.sidebar-navigation nav .active-section .circle {
    background-color: #fff;
}

.sidebar-navigation .social-icons {
    position: absolute;
    width: 100%;
    bottom: 10px;
    padding: 0;
    margin: 0;
    text-align: center;
}

.sidebar-navigation .social-icons li {
    display: inline-block;
    margin-right: 15px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.sidebar-navigation .social-icons li:last-child {
    margin-right: 0px;
}

.sidebar-navigation .social-icons li a {
    font-size: 18px;
    color: #fff;
    transition: all 0.5s;
}

.sidebar-navigation .social-icons li a:hover {
    color: #203C89;
}

/* Slider Style */

.slider .content-section {
    padding-top: 0px;
    min-width: 100%;
    min-height: 100vh;
    width: 100%;
    height: 100vh;
    text-align: center;
}

.slider p a {
    color: #FFF;
}

.slider p a:hover {
    color: #FF0;
    text-decoration: none;
}

.Modern-Slider .info {
    text-align: right;
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 60px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
}

.Modern-Slider .info h1, .Modern-Slider .info h3 {
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
}

.Modern-Slider .info p {
    font-size: 15px;
    color: #fff;
}

.Modern-Slider .info .white-button {
    margin-top: 30px;
}

.Modern-Slider .info .white-button a:focus {
    outline: none;
}

.Modern-Slider .slick-dots {
    opacity: 0;
}

.Modern-Slider .NextArrow {
    outline: none;
    display: none;
    position: absolute;
    top: 60px;
    right: 60px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, .50);
    border: 0 none;
    margin-top: -22.5px;
    text-align: center;
    font: 32px/50px FontAwesome;
    color: #FFF;
    z-index: 5;
}

.Modern-Slider .NextArrow:before {
    content: '>';
}

.Modern-Slider .PrevArrow {
    outline: none;
    position: absolute;
    top: 60px;
    right: 120px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, .50);
    border: 0 none;
    margin-top: -22.5px;
    text-align: center;
    font: 32px/50px FontAwesome;
    color: #FFF;
    z-index: 5;
}

.Modern-Slider .item .image {
    width: 100%;
    height: 40vh;
    background-position: center center;
    background-size: cover;
    display: block;
}

.Modern-Slider .item-0 .image {
    background-image: url(../img/matriculas.png);
}
.Modern-Slider .PrevArrow:before {
    content: '<';
}
.Modern-Slider .item .image {
    animation: zoomin 12s ease-in-out infinite alternate;
    -webkit-animation: zoomin 12s ease-in-out infinite alternate;
}

@keyframes zoomin {
    0% {
        -webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.2);
    }
}

.Modern-Slider {
    background: transparent;
}
ul.slick-dots {
    display: none !important;
}

/* ==== Slick Slider Css Ruls === */

.slick-slider {
    position: relative;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left/* If RTL Make This Right */
    ;
    height: 100%;
    min-height: 1px
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

/* Featured Style */

#featured  .section-heading, #featured-aprovados .section-heading {
    margin-right: 20%;
}

#featured .content-section, #featured-aprovados .content-section {
    display: inline-block;
    position: relative;
}

#featured .owl-dots,  #featured-aprovados .owl-dots {
    margin-top: 40px;
}

#featured .owl-dots .owl-dot span,  #featured-aprovados .owl-dots .owl-dot span{
    width: 12px;
    height: 12px;
    background-color: #cdcdcd !important;
    display: inline-block;
    border-radius: 50%;
    margin: 0 3px;
}

#featured .owl-dots .active span, #featured-aprovados .owl-dots .active span {
    background-color: #203C89 !important;
}

#featured .owl-dots button, #featured-aprovados .owl-dots button {
    outline: none;
}

#featured .owl-nav, #featured-aprovados .owl-nav {
    position: absolute;
    display: inline-block;
    top: -110px;
    right: 0;
}

#featured .owl-nav button:focus, #featured-aprovados .owl-nav button:focus {
    outline: none;
}

#featured .owl-nav .owl-prev span, #featured-aprovados .owl-nav .owl-prev span{
    margin-right: 10px;
}

#featured .owl-nav .owl-next span,
#featured .owl-nav .owl-prev span,
#featured-aprovados .owl-nav .owl-next span,
#featured-aprovados .owl-nav .owl-prev span
{
    outline: none;
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 42px;
    background-color: #eee;
    color: #232323;
    font-size: 42px;
    transition: all 0.5s;
}

#featured .owl-nav span:hover, #featured-aprovados .owl-nav span:hover {
    background-color: #203C89;
    color: #fff;
}

#featured .item, #featured-aprovados .item {
    text-align: left;
    position: relative;
    z-index: 10;
}

#featured .item .image,#featured-aprovados .item .image  {
    position: relative;
}

#featured .item .image img, #featured-aprovados .item .image img {
    width: 100%;
    overflow: hidden;
}

#featured .item .image .featured-button p, #featured-aprovados .item .image .featured-button p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    background-color: rgb(32, 60, 137, 0.9);
    display: inline-block;
    height: 44px;
    line-height: 44px;
    width: 100%;
    letter-spacing: 0.25px;
    text-decoration: none;
    transition: all 0.5s;
    position: absolute;
    z-index: 9;
    bottom: -44px;
    opacity: 0;
}

#featured .item:hover .featured-button p, #featured-aprovados .item:hover .featured-button p {
    bottom: 0;
    opacity: 1;
}

#featured .item .text-content, #featured-aprovados .item .text-content {
    padding-top: 20px;
    background-color: #fff;
    position: relative;
    z-index: 10;
}

#featured .item .text-content h4, #featured-aprovados .item .text-content h4 {
    margin-top: 0px;
    margin-bottom: 5px;
    font-size: 21px;
    font-weight: 600;
    color: #232323;
    letter-spacing: 0.5px;
}

#featured .item .text-content span, #featured-aprovados .item .text-content span {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #7a7a7a;
    letter-spacing: 0.5px;
    margin-bottom: 12.5px;
}

/* Projects Style */

#projects {
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 50px;
}

#projects .masonry {
    position: relative;
    width: 100%;
}

#projects .masonry .item img {
    transition: all 1s;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

#projects .masonry .item img:hover {
    opacity: 0.5;
}

/* Video Presentation Style */

#video {
    text-align: center;
    background-color: #f4f4f4;
    padding: 100px 60px;
}

#video .section-heading {
    margin-bottom: 30px;
    text-align: center;
}

#video .section-heading h1 {
    display: block;
    margin: 0px;
}

#video .section-heading p {
    position: relative;
    margin: 0px;
}

#video .accent-button {
    margin-top: 30px;
}

.box-video {
    width: 100%;
    position: relative;
    margin-top: 30px;
    cursor: pointer;
    overflow: hidden;
}

.box-video .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

.box-video .video-container {
    position: relative;
    margin: 0;
    z-index: 1;
}

.box-video .bt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    text-indent: -999em;
    cursor: pointer;
    z-index: 2;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.box-video .bt-play:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0;
    width: 0;
    margin: -12px 0 0 -6px;
    border: solid transparent;
    border-left-color: #000;
    border-width: 12px 20px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.box-video:hover .bt-play {
    transform: scale(1.1);
}

.box-video.open .bg-video {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .6s .8s;
    transition: all .6s .8s;
}

.box-video.open .video-container {
    opacity: 1;
    -webkit-transition: all .6s .8s;
    transition: all .6s .8s;
}

/* Blog Style */

#blog {
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 80px;
}

#blog .tabs {
    list-style: none;
    margin: 0px;
    padding: 0px;
    height: 90px;
    width: 100%;
    background-color: #eee;
    border-bottom: 10px solid #203C89;
}

#blog .tabs li {
    display: inline-block;
    text-align: center;
    width: 25%;
    float: left;
    margin: 0;
    padding: 0;
}

#blog .tabs a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    color: #232323;
    font-size: 19px;
    line-height: 80px;
    font-weight: 600;
    transition: 0.5s;
}

#blog .tabs a:hover {
    color: #203C89;
}

#blog .tabs .active:hover {
    color: #fff;
}

#blog .tabs .active {
    background-color: #203C89;
    color: #fff;
}

.tabgroup {
    background-color: #f4f4f4;
    padding: 20px 30px;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

#blog .tabgroup ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#blog .tabgroup ul li {
    display: inline-block;
    text-align: left;
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

#blog .tabgroup ul li:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 10px;
}

#blog .tabgroup ul li img {
    float: left;
    margin-right: 30px;
    max-width: 100%;
    overflow: hidden;
}

#blog .tabgroup ul li .text-content {
    display: inline;
}

#blog .item .text-content h4 {
    padding-top: 7.5px;
    margin-top: 0px;
    margin-bottom: 5px;
    font-size: 21px;
    font-weight: 600;
    color: #232323;
    letter-spacing: 0.5px;
}

#blog .item .text-content span {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #7a7a7a;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

#blog .item .text-content .accent-button {
    margin-top: 25px;
}

/* Contact Style */

.contact-content {
    padding: 80px 60px 0 60px;
}

#contact input {
    border-radius: 0px;
    padding-left: 15px;
    font-size: 13px;
    color: #aaa;
    background-color: #f4f4f4;
    border: 1px solid #eee;
    outline: none;
    box-shadow: none;
    line-height: 40px;
    height: 40px;
    width: 100%;
    margin-bottom: 25px;
}

#contact textarea {
    border-radius: 0px;
    padding-left: 15px;
    padding-top: 10px;
    font-size: 13px;
    color: #aaa;
    background-color: #f4f4f4;
    border: 1px solid #eee;
    outline: none;
    box-shadow: none;
    height: 200px;
    max-height: 250px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
}

#contact button {
    font-size: 13px;
    border-radius: 0px;
    font-weight: 600;
    color: #fff;
    border: solid 0;
    text-transform: capitalize;
    background-color: #203C89;
    display: inline-block;
    height: 44px;
    line-height: 24px;
    outline: none;
    box-shadow: none;
    width: 100%;
    letter-spacing: 0.25px;
    text-decoration: none;
    transition: all 0.3s;
}

#contact button:hover {
    color: #232323;
    background-color: #5473ca;
    ;
}

/* Footer Style */

.footer {
    background-color: rgba(12, 12, 12, 0.9);
    height: 80px;
    line-height: 80px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.footer p {
    margin-bottom: 0px;
    font-size: 13px;
    line-height: 80px;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.footer p a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

/****** price ***********/

.columns {
    float: center;
    width: 33.3%;
    padding: 200px;
}

.price {
    list-style-type: none;
    margin: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: 40%;
    position: absolute;
    background-color: #f4f4f4;
    padding: 0;
}

.price:hover {
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2)
}

.price .header {
    background-color: #111;
    color: white;
    font-size: 25px;
}

.price li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    text-align: left;
}

.price .grey {
    background-color: #eee;
    font-size: 20px;
}

.inscreva {
    background-color: #203C89;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

.inscreva:hover {
    background-color: white;
    color: #203C89;
}

/****************************************POP UP CURSOS*****************************************/

#CN,
#ESA,
#CFO,
#EPCAR {
    display: none;
    z-index: 8;
    position: absolute;
    left: 15%;
    top: 0%;
    transform: translate(-50%, -50%);
}

#EN,
#ESPCEX,
#CPM,
#EEAR {
    display: none;
    z-index: 8;
    position: absolute;
    left: 15%;
    top: 15%;
    transform: translate(-50%, -50%);
}

#EFOMM,
#CMC,
#AFA {
    display: none;
    z-index: 8;
    position: absolute;
    left: 15%;
    top: 40%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1100px) {
    #CN,
    #ESA,
    #CFO,
    #EPCAR {
        top: 15%;
    }
    #EN,
    #ESPCEX,
    #CPM,
    #EEAR {
        top: 35%;
    }
    #EFOMM,
    #CMC,
    #AFA {
        top: 62%;
    }
}

#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(51, 51, 51, 0.7);
    z-index: 2;
    pointer-events: none;
    display: none;
}

.botaox {
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 5px !important;
    border-bottom: 0px !important;
}

@media only screen and (max-width: 600px) {
    .columns {
        width: 100%;
    }
}

/****************************************POP UP CURSOS*****************************************/

#missao:after {
    content: "";
    display: table;
    clear: both;
}

.missao {
    float: left;
    width: 32%;
    padding: 40px;
    height: 300px;
    background-color: #f4f4f4;
    margin: 6px;
}
.section-prices{
    display:flex;
}
.section-prices div {
    float: left;
    width: 100%;
    height: 200px;
    padding: 20px;
    background-color: #f4f4f4;
    margin: 6px;
}

@media(orientation:portrait) {
    .contact-content{
        padding: 80px 0 0 0;
    }
    .section-prices{
        flex-direction: column;
    }
    .missao, .section-prices div {
        width: 100%;
    }
}

.titulomissao {
    color: #203C89;
    font-weight: 700;
}
/********* timeline *************/
/* Base */

#timeline-content {
    margin-top: 50px;
    text-align: center;
}

/* Timeline */

.timeline {
    border-left: 4px solid #004ffc;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
    font-family: "Chivo", sans-serif;
    margin: 50px auto;
    letter-spacing: 0.5px;
    position: relative;
    line-height: 1.4em;
    font-size: 1.03em;
    padding: 50px;
    list-style: none;
    text-align: left;
    font-weight: 100;
    max-width: 30%;
}

.timeline h1 {
    font-family: "Saira", sans-serif;
    letter-spacing: 1.5px;
    font-weight: 100;
    font-size: 1.4em;
}

.timeline h2,
.timeline h3 {
    font-family: "Saira", sans-serif;
    letter-spacing: 1.5px;
    font-weight: 400;
    font-size: 1.4em;
}

.timeline .event {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
    margin-bottom: 50px;
    position: relative;
    color: black;
}

.timeline .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.timeline .event:before,
.timeline .event:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .event:before {
    left: -217.5px;
    color: black;
    ;
    content: attr(data-date);
    text-align: right;
    font-weight: 100;
    font-size: 0.9em;
    min-width: 120px;
    font-family: "Saira", sans-serif;
}

.timeline .event:after {
    box-shadow: 0 0 0 4px #004ffc;
    left: -57.85px;
    background: #313534;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
    top: 5px;
}

@media only screen and (max-width: 600px) {
    .timeline {
        margin-left: 30%;
        max-width: 100%;
        padding: 0px 0px 0px 50px;
    }
}
/****** accordion *******/
.accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}
.accordion .a-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 5px;
}
.accordion .a-container .a-btn {
    margin: 0;
    position: relative;
    padding: 15px 30px;
    color: #bdbdbd;
    font-size: 1.6rem;
    font-weight: 400;
    display: block;
    font-weight: 500;
    background-color: #203c89;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.accordion .a-container .a-btn span {
    display: block;
    position: absolute;
    height: 14px;
    width: 14px;
    right: 20px;
    top: 18px;
}
.accordion .a-container .a-btn span:after {
    content: '';
    width: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    top: 6px;
}
.accordion .a-container .a-btn span:before {
    content: '';
    width: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    top: 6px;
    transform: rotate(90deg);
    transition: all 0.3s ease-in-out;
}
.accordion .a-container .a-panel {
    width: 100%;
    color: #262626;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0px 10px;
}
.accordion .a-container.active .a-btn {
    color: #fff;
}
.accordion .a-container.active .a-btn span::before {
    transform: rotate(0deg);
}
.accordion .a-container.active .a-panel {
    padding: 15px 10px 10px 10px;
    opacity: 1;
    max-height: 500px;
}
.accordion .a-container.active .a-panel p {
    font-size: 1.6rem;
}
/****** accordion *******/


/* Responsive Style */

@media (max-width: 992px) {
    .responsive-nav {
        display: none;
    }
    .sidebar-navigation .logo a {
        font-size: 18px;
    }
    .sidebar-navigation nav a {
        font-size: 13px;
    }
    .sidebar-navigation nav ul {
        margin-left: 30px;
    }
    .sidebar-navigation .social-icons li a {
        font-size: 15px;
    }
}

@media(max-width: 767px) {
    .responsive-nav {
        display: block;
        height: 60px;
    }
    .page-content {
        width: 100%;
    }
    .Modern-Slider .info {
        text-align: right;
        padding: 0px 25px;
        bottom: 0;
        left: 0;
        right: unset;
        top: unset
    }
    .Modern-Slider .item .image{
        height: 15vh;
    }
    .Modern-Slider .info h1, .Modern-Slider .info h2 {
        font-size: 1.4rem;
        color: #fff;
        margin: 0;
    }
    .Modern-Slider .NextArrow {
        outline: none;
        display: none;
        position: absolute;
        top: 120px;
        right: 50%;
        transform: translateX(50%);
        margin-right: -30px;
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, .50);
        border: 0 none;
        text-align: center;
        font: 32px/50px FontAwesome;
        color: #FFF;
        z-index: 5;
    }
    .Modern-Slider .NextArrow:before {
        content: '>';
    }
    .Modern-Slider .PrevArrow {
        outline: none;
        position: absolute;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -30px;
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, .50);
        border: 0 none;
        text-align: center;
        font: 32px/50px FontAwesome;
        color: #FFF;
        z-index: 5;
    }
}

@media (max-width: 690px) {
    .section-heading p {
        position: relative;
    }
    #featured {
        padding-left: 15px;
        padding-right: 15px;
    }
    #featured .owl-nav {
        position: absolute;
        display: inline-block;
        top: -65px;
        right: 0;
    }
    #projects {
        padding-left: 15px;
        padding-right: 15px;
    }
    #video {
        padding-left: 15px;
        padding-right: 15px;
    }
    #blog {
        padding-left: 15px;
        padding-right: 15px;
    }
    #blog .tabs a {
        font-size: 13px;
    }
    #blog .tabgroup ul li img {
        float: none;
        width: 100%;
        margin-bottom: 15px;
    }
    #blog .tabgroup ul li .text-content {
        display: block;
    }
    #contact-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*PERSONALIZADO*/

.saudacao {
    text-align: left;
    padding: 1rem 0 2rem 0;
}
.saudacao h3{
    margin-top: 0; 
}
#saudacao {
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}
.cursos-paginas {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    text-align: left;

    h1, h2, h3, h4, h5, h6{
        line-height: 1.3;
    }
}

.guerreiro {
    font-style: normal;
    font-weight: 700;
    color: #203C89;
}
@media(orientation:portrait){
        .cursos-paginas {
        padding-top: 7rem;
    }
}