/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Raleway", sans-serif;
    font-size: 1.5rem;
    color: #272a2b;
}

a {
    color: #F7941E;
}

a:hover {
    color: #F16522;
    text-decoration: none;
}

.color1 {
    color: #F7941E
}

.color2 {
    color: #F16522
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

ol,
ul {
    list-style: none;
}

.hide {
    display: none;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #F7941E;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #F16522;
    color: #fff;
}


/*--------------------------------------------------------------
# top-bar
--------------------------------------------------------------*/

.top-bar {
    z-index: 1000;
    background: #000;
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
}

.top-menu {
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
}

.language {
    padding-top: 10px;
    font-size: 0.9rem;
    display: inline-block;
}

.language-link {
    color: #999 !important;
    font-weight: 700 !important;
    cursor: pointer;
}

a.active {
    color: #F7941E !important;
}

.language-link:hover {
    color: #F7941E !important;
}

.psa-member {
    position: relative;
    display: inline-block;
    margin-left: 2rem;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 5px 0px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
}

#header .logo a {
    color: #0f394c;
}

#header .logo img {
    max-height: 80px;
}

#header .bars {
    display: flex;
    flex-direction: row;
    justify-content: center;
    float: left;
    width: 100%;
    margin-top: 10px;
}

#header .bar {
    display: flex;
    float: left;
    width: 33.3333%;
    height: 10px;
}

.bar1 {
    background-color: #003F5F;
}

.bar2 {
    background-color: #00ADEF;
}

.bar3 {
    background-color: #F47521;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu {
    float: left;
    padding: 35px 0 0 50px;
}

.nav-menu-top ul li a.active {
    color: #F7941E !important;
}

.nav-menu-top ul li a:hover {
    color: #F7941E !important;
}

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #000000;
    transition: 0.3s;
    font-size: 18px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
}

.nav-menu-top a {
    display: block;
    position: relative;
    color: #969696;
    transition: 0.3s;
    font-size: 15px;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: normal;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #F7941E;
}

.nav-menu-top a:hover,
.nav-menu-top .active>a,
.nav-menu-top li:hover>a {
    color: #ffffff;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #0f394c;
    text-transform: uppercase;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #F7941E;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    top: 10px;
    right: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #F7941E;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #0f394c;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #F7941E;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(7, 25, 33, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

.social-links-area {
    display: flex;
}

.nav-menu .social-links-area a {
    display: flex;
    position: relative;
    color: #0f394c;
    padding: 5px 5px;
    font-weight: 500;
    font-size: 20px;
    outline: none;
}

.nav-menu .social-links-area a:hover {
    color: #F7941E;
}

.mobile-nav .social-links-area a {
    display: flex;
    position: relative;
    color: #0f394c;
    padding: 10px 10px;
    font-weight: 500;
    outline: none;
}

.mobile-nav .social-links-area a:hover {
    color: #F7941E;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.carousel {
    background: #000;
    margin-top: 100px;
}


/*Forces image to be 100% width and not max width of 100%*/

.carousel-item .img-fluid {
    width: 100%;
}


/* anchors are inline so you need ot make them block to go full width*/

.carousel-item a {
    display: block;
    width: 100%;
}

.carousel-item .carousel-caption {
    bottom: 40% !important;
}

.carousel-item .carousel-caption .caption-bg {
    background: rgba(0, 0, 0, 0.4);
    padding: 3px 15px;
    margin: 10px;
}

#hero {
    width: 100%;
    /*height: 80vh;*/
    margin: -60px 0;
}

#hero .container {
    padding-top: 84px;
}

#hero h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
}

#hero h2 {
    font-size: 42px;
    display: inline-block;
}

#hero h5 {
    font-size: 22px;
    display: inline-block;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 3px;
    transition: 0.5s;
    margin-top: 25px;
    color: #fff;
    background: #F7941E;
    text-transform: uppercase;
}

#hero .btn-get-started:hover {
    background: #76c7ed;
}

@media (max-width: 991px) {
    #hero {
        /*height: 100vh;*/
        text-align: center;
    }
    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
    #hero .hero-img img {
        width: 80%;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
}

.section-bg {
    background-color: #EEEFEF;
}

.section-bg1 {
    background-color: #f1f1f1;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #003F5F;
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# colegio
--------------------------------------------------------------*/

.colegio h2 {
    font-size: 24px;
    font-weight: 700;
    color: #003F5F;
    margin-bottom: 15px;
}

.colegio p {
    font-size: 14px;
    color: #003F5F;
}

.colegio .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
}

.colegio .image-box {
    background: url("../img/colegio/pic_colegio.png") top center no-repeat;
    background-size: contain;
    min-height: 360px;
}

@media (min-width: 1200px) {
    .colegio .image-box {
        margin-left: 15px;
        margin-right: -15px;
    }
}


/*--------------------------------------------------------------
# static
--------------------------------------------------------------*/

.static {
    background: url("../img/bgimages/static-bg.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

.static .box {
    margin: 20% 0 0 5%;
}

.static .box .title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 1200px) {
    .static {
        min-height: 800px;
    }
    .static .box {
        margin: 20% 0 0 33%;
    }
    .static .box .title h2 {
        font-size: 60px;
        font-weight: 700;
    }
}


/*--------------------------------------------------------------
# info
--------------------------------------------------------------*/

.info {
    background: url("../img/bgimages/info-bg.jpg") center center no-repeat;
    background-size: cover;
    padding: 80px 0 60px 0;
    min-height: 800px;
}

.info a:hover>img {
    zoom: 95%;
}

.info .title {
    position: relative;
    color: #fff;
    margin-bottom: 40px;
}

.info .title h3 {
    font-size: 48px;
    font-weight: 700;
}

.info p {
    padding-top: 20px;
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #fff;
}

.info .icon IMG {
    width: 120px;
    height: 120px;
}

@media (min-width: 1200px) {
    .info .icon IMG {
        width: 200px;
        height: 200px;
    }
}


/*--------------------------------------------------------------
# media
--------------------------------------------------------------*/

.media {
    background: url("../img/bgimages/media-bg.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

.media .btn-media {
    font-size: 42px;
    font-weight: 700;
    line-height: 60px;
    padding: 13px 58px 13px;
    color: #fff;
    display: inline-block;
    background-color: #003F5F;
    border-radius: 50px;
    margin-top: 30%;
}

@media (min-width: 1200px) {
    .media {
        min-height: 800px;
    }
    .media .title h2 {
        font-size: 60px;
        font-weight: 700;
    }
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #f0f9fd;
    margin-top: 84px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 74px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
    font-family: "Lato", sans-serif;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #F7941E;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: url("../img/bgimages/footer-bg.jpg") center center no-repeat;
    background-size: cover;
    min-height: 300px;
    overflow-x: auto;
    /*background: #003F5F !important;*/
    padding: 0 0 30px 0;
    color: #ffffff;
    font-size: 14px;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Lato", sans-serif;
    color: #ffffff;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #ffffff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #F7941E;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #003F5F;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #F16522;
    color: #fff;
    text-decoration: none;
}

#footer .copyright {
    float: left;
    color: #0f394c;
}

#footer .credits {
    float: right;
    font-size: 13px;
    color: #0f394c;
}

@media (max-width: 575px) {
    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
    }
}