﻿*{
    padding:0;
    margin:0;
}
body{
    font-size:16px;
    overflow-x:hidden;
}
a:hover{
    text-decoration:none;
    color:#fff;
}
.brand img{
    width:100%;
    max-width:100px;
}

.header:before {
    content: "";
    background: #273786;
    height: 5px;
    width: 50%;
    transform: skewX(-35deg);
    left: 0;
    position: absolute;
    z-index: 99999;
}
.header:after {
    content: "";
    background: #f40125;
    height: 5px;
    width: 50%;
    transform: skewX(-35deg);
    right: 0;
    position: absolute;
    z-index: 99999;
    top:0;
}

.container-fluid{
    padding:0;
    margin:0;
}
.navbar, .menu{
    margin-bottom:0;
}
.menu li a{
    text-decoration:none;
}
.carousel-caption{
    transition:all ease 0.4s;
    top:25%;
}
.carousel-inner img {
    width: 100%;
    height: 100%;
  }

#banner{
    padding:0;
    background:#000;
}
.slide-btn{
    background: #f40125;
    padding: 15px 25px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: bold;
    margin: 23px auto;
    display: block;
    text-decoration: none;
    line-height: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 160px;
}
.banner-right-box{
    display: block;
    float: left;
    padding: 20px;
}

.banner-right-box h2{
    color:#fff;
}
.banner-right-box p{
    color:#fff;
}

.carousel .carousel-caption h1, .carousel .carousel-caption h2{
    font-weight: bold;
    text-shadow: 0px 4px 3px #000;
}

/*.carousel-inner:after{
   background:rgba(0,0,0,0.6);
   content:"";
   height:100%;
   width:100%;
   position:absolute;
}*/
.row-space{
    padding:35px 0;
}
.space{
    margin:20px 0;
}
.about-text{
    text-align:center;
}
.about-btn{
    background: #000;
    padding: 10px 20px;
    color: #fff;
    border-radius: 4px;
    margin: 20px 0;
    line-height: 4;
}

.data-section{
  /*  background:#253582;
    padding:25px;*/
}

.data-section span{
    color:#000;
    font-size:16px;
}

/******** counter *************/
/*.data-box{
   max-width: 20% !important;
    height: 100%;
}*/
.counter-box img{
    margin: 0 auto;
    background: #fff;
    border-radius: 50%;
    padding: 17px;
    width: 100%;
    max-width: 115px;
}
.container {
    margin-top: 100px
}

.counter-box {
    display: block;
    padding: 20px 20px 20px;
    text-align: center;
    min-height: 200px;
    background:#f7f7f7;
}

.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: #909090;
    font-size: 18px;
    font-weight: 500
}

.counter-box i {
    font-size: 60px;
    margin: 0 0 15px;
    color: #d2d2d2
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #666;
    line-height: 28px
}

.counter-box.colored {
   background: #eaeaea;
    border: 5px solid #fff;
    box-shadow: 0px 0px 6px 1px rgb(0 0 0 / 20%);
    /*background: #3acf87
    background:#253582;*/
}

.counter-box.colored .counter{
    font-size:32px;
    margin:10px 0;
    font-weight:bold;
    color:#000;
}
.counter-box.colored p,
.counter-box.colored i{
    color: #000;
    font-size: 16px;
    text-transform: capitalize;
}
/******** counter end *************/

.owl-item{
    padding:10px;
}
.product-box{
    border:10px solid #fff;
}
.product-box .product-discription{
    padding:10px;
    background:#fff;
}
.product-box .product-discription a{
    font-size:18px;
    font-weight:600;
    color:#000;
    margin:5px; 
    text-decoration:none;
}
h1.title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
}
.signup a {
    background: #f40125;
    color: #fff;
    padding: 10px;
    max-width: 250px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 4px;
    margin: 0 auto 45px auto;
    text-align: center;
    display: block;
}

/*********** client **************/

/****** Gallery page ***********/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.contenedor {
    width: 100%;
    overflow: hidden;
    margin: auto;
    padding: 0px 0;
}

.subtitulo {
    text-align: center;
    font-weight: 700;
    color: #9f8ad0;
    margin-bottom: 40px;
    font-size: 40px;
}

.contenedor-galeria{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.img-galeria {
    object-fit: cover;
    width: 30%;
    display: block;
    margin-bottom: 15px;
    box-shadow: 0 0 6px rgb(0, 0, 0, 0.5);
    cursor: pointer;
}

.img-galeria:hover{
    transition: all 0.3s ease-in-out;
    transform: scale(1.1);
}

.imagen-light{
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    z-index: 99999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(100%);
    transition: transform .2s ease-in-out;
}

.show{
    transform: translate(0);
}

.agregar-imagen {
    object-fit: cover;
    width: 60%;
    border-radius: 10px;
    transform: scale(0);
    transition: transform .3s .2s;
}

.showImage{
    transform: scale(1);
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    cursor: pointer;
    color:#fff;
    font-size: 25px;
}
.fa-remove:before, .fa-close:before, .fa-times:before {
    content: "X" !important;
}


/*********  Gallery end*************/
.alumini{
    background-color: #ffffff;
    background-image: url("https://www.transparenttextures.com/patterns/45-degree-fabric-light.png");
}
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
.alumini .owl-carousel .owl-item .product-box .product-discription, .alumini .owl-carousel .owl-item .product-box{
    padding:10px;
}

.alumini .owl-carousel .owl-item .product-box{
    min-height: 435px;
    box-shadow: 0px 0px 5px 2px #ccc;
    border-bottom: 6px solid #273786;
    border-top: 6px solid #273786;
}
.alumini .owl-carousel .owl-item .product-box .product-name a{
   margin:0;
   color:#000;
   font-size:18px;
   font-weight:600;
}

.alumini .owl-carousel .owl-item .product-box .product-discription p, .alumini .owl-carousel .owl-item .product-box p{
    margin:0;
}
.unique-section{
    background-color: #253582;
    background-image: url("https://www.transparenttextures.com/patterns/black-twill.png");
    /*/background: url(../img/unique-bg.jpeg);*/*
}

/****** courses  ******/
.courses{
    background: url(../img/c-bg.jpg);
}
.card-img {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}
card-img img {
    transition: transform .6s;
}
.courses .product-box:hover .card-img img{
    -ms-transform: scale(1.2); /* IE 9 */
  -webkit-transform: scale(1.2); /* Safari 3-8 */
  transform: scale(1.2); 
}
.courses .product-box {
    border: 5px solid #fff;
}
.courses .product-box .product-discription {
    background: #fff;
}
.courses .product-box .product-discription a{
    font-size: 16px;
    text-align: center;
    display: block;
}

.courses-box{
    overflow:hidden;
    position:relative;
    margin-bottom:15px;
    transition: transform .4s;
}

.courses-box .card-body{
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    text-align:center;
    padding:0
}
.courses-box .card-body h4{
    display:block;
    padding:10px;
    margin:0;
    color:#000;
}

.courses-box:hover h4{
    color:#000;
}

.courses-box:hover .card img{
   filter: grayscale(100%);
}
/****** courses  end ******/

/******** breadcrumb ******/

#breadcrumb{
    
    padding:20px;
    text-align:center;
    color:#fff;
    background-color: #273786;
background-image: url("https://www.transparenttextures.com/patterns/diagmonds.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

#breadcrumb a{
    color: #f40125;
}

/******** breadcrumb end ******/

/******** alumni page ***********/

#alumini-page .alumini #founder .founder-box {
    padding: 10px;
    border-radius: 60px 0;
}

#founder .founder-box {
    box-shadow: 0px 0px 5px 2px #ccc;
    border-bottom: 6px solid #273786;
    border-top: 6px solid #273786;
    min-height: 325px;
    background-color: #ffffff;
    background-image: url("https://www.transparenttextures.com/patterns/squared-metal.png");
    /* border-left: 10px solid #fff; */
    /* background: #fff; */
    /* border-right: 10px solid #fff; */
}

#founder .founder-box img {
    margin: 0 auto;
    width: 100%;
    max-width: 135px;
    filter: grayscale(1);
}

#founder .founder-box a {
    margin: 0;
    color: #000;
    font-size: 18px;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    display: block;
    position: relative;
}

#founder .founder-box a:after {
    background: #f40125;
    height: 3px;
    content: "";
    left: 0;
    width: 100%;
    position: absolute;
    max-width: 115px;
    margin: 0px auto 10px;
    display: block;
    right: 0;
    bottom: -5px;
}

span.designation, p.address {
    font-size: 15px;
    text-align: center;
    display: block;
    margin-bottom: 5px;
    font-family: 'Lato', sans-serif;
}
p.package, p.location {
    display: none;
}
/******** alumni page ***********/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background-color: #000000;
background-image: url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
  padding: 0 0 5px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 30px 0 0px 0;
}
.footer-info ul{
    padding:0;
}

.footer-info ul li{
    list-style-type:none;
    margin-bottom:10px;
    position:relative;
}

#footer .footer-links ul li:before {
    content: "\f101";
    font-size: 12px;
    position: absolute;
    color: #fff;
    font-family: fontawesome;
}
.footer-info ul li .fas{
    color: #cda45e;
    margin-right:10px;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #f40125;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  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: #cda45e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  margin-left: 15px;
}

#footer .footer-top .footer-links ul a:hover {
  color: #f40125;
}




#footer .copyright {
  text-align: center;
  padding-top: 20px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/*--------------------------------------------------------------
# Footer end
--------------------------------------------------------------*/


.about{
    background-color: #ffffff;
    background-image:url(https://www.transparenttextures.com/patterns/45-degree-fabric-light.png);
   /* background-image: url(https://www.transparenttextures.com/patterns/squared-metal.png);*/
}

.about img {
    box-shadow: 0px 4px 7px rgb(0 0 0 / 40%);
    border: 5px solid #fff;
}

.course span{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
    display:block;
}

.course h2{
    font-size:30px;
    background: #273786;
    padding: 13px 25px;
    color: #fff;
    width: 300px;
    border-radius: 50px 0;
}

.course h3{
    font-size:24px;
}

#accordion .panel-title{
    background: #273786;
    display: block;
    padding: 10px 15px;
    width: 100%;
    font-size: 20px;
    border-radius: 4px;
    margin:0;
}

#accordion .panel-default{
    margin-bottom:10px;
    box-shadow: 0px 2px 5px #eaeaea;
}

#accordion .panel-body{
    background:#fff;
    padding:20px;
}

#accordion .panel-body h5 {
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    padding: 10px 0;
    text-align: center;
    font-size: 22px;
    margin: 30px 0 10px 0;
}

#accordion .panel-body ul li{
    padding:10px 0 0 20px;
    position:relative;
}

#accordion .panel-body ul li:before{
    content: "\f101";
    position:absolute;
    left:0;
    font-family:fontawesome;
}

.show .panel-title{
    background:red;
}

#accordion .panel-title a{
    color: #fff;
    display:block;
    position:relative;
}

#accordion .panel-title a:after {
    content: "\f067";
    position:absolute;
    right:0;
    font-family:fontawesome;
}

.career-form{
    background: #fff;
    padding: 30px;
    box-shadow: 0px 0px 10px #ccc;
    border-top: 5px solid #273786;
}
.career-form .form-heading span {
    text-align: center;
    display: block;
    float: none;
    font-size: 24px;
    font-weight: bold;
}
.career-form .form-heading p{
    margin-bottom:30px;
}
.career-form .form-heading{
    text-align: center;
    display: block;
    margin: 0 auto;
}
.career-form label{
    display:none;
}
.career-form .btn-career{
    background:#273786;
    color:#fff;
    width:100%;
}
.info i.fa {
    background: #273786;
    height: 50px;
    padding: 15px;
    border-radius: 50px;
    margin-right: 19px;
    text-align: center;
    margin-bottom: 30px;
    width: 50px;
    font-size: 20px;
    color: #fff;
}

.page-social-links h4{
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    margin-bottom: 20px;
}
.course h3 span{
    color:#ff0000;
    display:inline-block;
    margin-left:10px;
}
/*#inner-banner .carousel-caption {
       top: 0;
    position: absolute;
    left: 0;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 40%;
    color: #fff;
    text-align: left;
    background: #273786;
    height: 100%;
}*/

/******* Application form *******/


.career-form.application label{
    display:block;
}
.career-form.application input{
    position:relative;
    border:none;
}

.career-form.application input {
    border: 1px solid #ccc;
    border-radius: 0;
    width: 100%;
}
.career-form.application input[type=checkbox]{
    box-sizing: border-box;
    padding: 0;
    height: 30px;
    width: 30px;
}

.cast{
    margin-right:50px;
}

.career-form.application .checkmark{
    margin-right: 25px;
    margin-left: 10px;
}

.career-form.application .form-group{
    margin-bottom:15px;
    display:block;
}
.select-file{
    border:1px solid #ccc;
}

.career-form.application .form-group.cast-block{
    display:inline-flex;
}

.career-form.application .school-field tr th{
    padding:10px;
}

.form-heading h2{
    font-size:30px;
    text-align:center;
    padding:20px 0;
    margin-bottom:0;
}
.school-field span{
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.career-form.application .form-status h3 {
    margin-bottom: 40px;
    display: block;
    overflow: hidden;
    font-size: 20px;
    text-align: center;
}

.career-form.application .btn-career {
    background: #273786;
    color: #fff;
    font-size: 25px;
    width: 100%;
    float: left;
}

/*.career-form.application input.form-control::after{
    content:"";
    height: 1px;
    width: 100%;
    background:#000;
    margin-left: 10px;
    position:absolute;
    bottom:0
}*/


.section-team{padding:0px 15px 60px 15px;}
.section-team .team-player{padding:25px 15px 0 15px;}
.section-team .team-player img{max-width:100px;background: aliceblue;margin: auto}
.section-team .title{/*margin-bottom:40px;*/margin-top: 30px}
.section-team p{font-size: 13px;color: #fff;text-align: justify;}
[data-background-color="gray"]{background-color:#eeeeee;}
[data-background-color="blue"]{background-color:#1e73be;}
[data-background-color="orange"]{background-color:#fd752c;}
[data-background-color="red"]{background-color:#FF3636;}
[data-background-color="yellow"]{background-color:#FFB236;}
[data-background-color="blue"]{background-color:#2CA8FF;}
[data-background-color="green"]{background-color:#15b60d;}





.video__sec {
    width: 100%;
    height: 100%;
}








