@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    height: 100%;

}

#content {
    min-height: 100%;
    display: flex;
}

a {
    text-decoration: none;
}

p {
    color: black;
    font-size: 1.4rem;
    margin-top: 5px;
    line-height: 2.5rem;
    font-weight: 300;
    letter-spacing: .05rem;
}

.container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.colored-container {
    background-color: #f3f3f3;
    width: 100%;
    margin-left: 0;
    padding: 20px;
}

.img-cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hidden {
    display: none;
}

.panel {
    margin: 100px 20px 30px 20px;
    min-height: 200px;
    height: 100%;
    padding: 15px;
    background-color: white;
    position: relative;
    z-index: 0;
    flex: 1;
}

.panel-container {
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.panel-header {
    text-align: center;
    max-width: 800px;
}

.panel-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.section-title {
    font-size: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .2rem;
    text-align: center;
}

.section-title span {
    color: #D9323A;
}

.pointer {
    cursor: pointer;
}

.row {
    flex-direction: row;
}

/* Index */

#index {
    background-image: url(../imgs/DSC_0499.JPG) !important;
    background-size: cover !important;;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

#index.panel {
    margin: 0 !important;
}

.index .outer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(53, 69, 108, 0.5);
}

.index .details {
    position: absolute;
    left: 50%;

    top: 50% !important;
    transform: translate(-50%, -50%);
    text-align: center;
}

.index .details img {
    width: 70% !important;
    margin-bottom: 20px;
}

.index .details h1 {
    color: #fff;
    font-size: 5em !important;
    width: 100% !important;
}

.index .details h2 {
    text-transform: capitalize;
    color: #fff;
}


.index .details h3 {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0;
    margin-inline-end: 0;

    color: white;
    padding-top: 15px;
    padding-bottom: 30px;
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
}


.index .details h2 button {
    display: inline-block;
    border-radius: 5px;
    background-color: white;
    color: #D9323A;
    text-align: center;
    font-size: 18px;
    padding: 15px;
    width: 300px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0px 5px 5px 5px;
    border: 4px solid white;
    font-weight: 700;
}

.index .details h2 button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.index .details h2 button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.index .details h2 button:hover span {
    padding-right: 25px;
}

.index .details h2 button:hover span:after {
    opacity: 1;
    right: 0;
}

/* End Index */

/* Home */

.slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slides {
    position: absolute;
    width: 300%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 5s ease;
}

.slide {
    width: 33.33%;
    height: 100%;
    position: relative;
    float: left;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-data {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 0 20%;
}

.slide-data h1 {
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 45px;
}

.slide-data p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.slider .arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    outline: none;
    border: none;
    font-size: 60px;
    color: #fff;
    transition: 0.4s linear;
}

.slider .arrows:hover {
    text-shadow: 0 0 10px black, 0 0 10px black;
}

.slider .prev {
    left: 3%;
}

.slider .next {
    right: 3%;
}

.dots {
    position: absolute;
    bottom: 1%;
    width: 100%;
    text-align: center;
}

.dots span {
    width: 23px;
    height: 23px;
    border-radius: 100px;
    margin: 0 6px;
    background-color: #fff;
    display: inline-block;
    transition: 0.4s linear;
}

.dots span:hover {
    background-color: #000 !important;
    border: 2px solid #fff;
}

.dot-active {
    background-color: #000 !important;
    border: 2px solid #fff;
}

.bg-image {
    height: 100%;
    width: 100%;
}

.testimonies-div {
    margin-top: 100px;
    margin-bottom: 100px;
}

.testimonies-div .col-video {
    display: grid;
    grid-template-columns: repeat(2, 45%);
    margin: 30px 10px;
    border-radius: 5px;
}

.testimonies-div .div-buttons {
    margin-top: 5px;

}

.testimonies-div .button {
    position: relative;
    background-color: #f3f3f3;
    border: none;
    font-size: 28px;
    color: #777777;
    padding: 10px;
    width: 10%;
    text-align: center;
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20%;
    margin-right: 5px;
}

.testimonies-div .button:hover {
    background-color: #D9323A;
    color: white;
}

.testimonies-div .videos-title {
    font-size: 30px;
    font-weight: bold;

}

.testimonies-div .description {
    font-size: 20px;
}

.testimonies-div .video-slides iframe {
    width: 90%;
    height: 300px;

}

.achievement-item {
    margin-top: 20px;
    text-align: center;
}

.achievement-item > img {
    width: 20%;
    margin: 0;
}

/* End Home */

/* About */
.about {
    flex-direction: row;
    text-align: center;
    padding: 20px 15px 70px 15px;
    margin-bottom: 100px;
}

.about .col-left {
    width: 600px;
    height: 400px;
    padding-left: 60px;
}

.about .col-right {
    text-align: left;
    padding: 30px;
    width: 100%;
}

.about .col-right h2 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: .2rem;
    margin-bottom: 10px;
}

.about .col-right p {
    margin-bottom: 20px;
}

.about .col-right .cta {
    color: black;
    margin-bottom: 50px;
    padding: 10px 20px;
    font-size: 2rem;
}

.about .col-left .about-img {
    height: 100%;
    width: 100%;
    position: relative;
    border: 10px solid white;
}

.about .col-left .about-img::after {
    content: '';
    position: absolute;
    left: -45px;
    top: 34px;
    height: 98%;
    width: 98%;
    border: 10px solid #D9323A;
    z-index: -1;
}

.about-video {
    margin-top: 50px;
    margin-bottom: 100px;
    height: 60vh;
    width: 100vh;
    left: 25%;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);

}

.interactive-pie {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: row;
}

.interactive-pie circle {
    fill: #ddd;
    stroke: #35456C;
    stroke-width: 50;
    stroke-dasharray: 0 158;
    transition: stroke-dasharray .3s ease;
}

.interactive-pie svg {
    margin: 0 0 0 -200px;
    transform: rotate(-90deg);
    background: #ddd;
    border-radius: 50%;
}

figcaption {
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: .2rem;
    width: 100%;
}

.interactive-pie #interactive-span {
    position: absolute;
    padding: 30px 0 30px 30px;
    font-size: 2rem;
}

.pie {
    border-radius: 100%;
    height: calc(var(--size, 200) * 1px);
    overflow: hidden;
    position: relative;
    width: calc(var(--size, 200) * 1px);
    display: block;
}

.pie-segment {
    --a: calc(var(--over50, 0) * -100%);
    --b: calc((1 + var(--over50, 0)) * 100%);
    --degrees: calc((var(--offset, 0) / 100) * 360);
    clip-path: polygon(var(--a) var(--a), var(--b) var(--a), var(--b) var(--b), var(--a) var(--b));
    height: 100%;
    position: absolute;
    transform: translate(0, -50%) rotate(90deg) rotate(calc(var(--degrees) * 1deg));
    transform-origin: 50% 100%;
    width: 100%;
    z-index: calc(1 + var(--over50));
}

.pie-segment:after,
.pie-segment:before {
    background: var(--bg, #e74c3c);
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
}

.pie-segment:before {
    --degrees: calc((var(--value, 45) / 100) * 360);
    transform: translate(0, 100%) rotate(calc(var(--degrees) * 1deg));
    transform-origin: 50% 0%;
}

.pie-segment:after {
    opacity: var(--over50, 0);
}

.static-pie .info {
    width: 70%;
    margin-left: 50px;
}

.static-pie .info > div {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin: 0 50px 10px 40px;
    display: inline-block;
}

.static-pie .info .info-span {
    margin-left: 30px;
    display: inline-block;
    white-space: nowrap;
    width: 50px;
}

.graph {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.graph .q-graph {
    margin-top: 200px;
    display: block;
    left: 60px;
    position: relative;
    width: 70%;
    height: 120px;
    padding: 0;
    background: transparent;
    font-size: 11px;
}

.graph .q-graph caption {
    caption-side: top;
    width: 600px;
    text-transform: uppercase;
    letter-spacing: .5px;
    top: -40px;
    position: relative;
    z-index: 10;
    font-weight: bold;
}

.graph .q-graph tr, .q-graph th, .q-graph td {
    position: absolute;
    bottom: 0;
    width: 80px;
    z-index: 2;
    margin: 0;
    padding: 0;
    text-align: center;
}

.graph .q-graph td {
    transition: all .3s ease;
}

.graph .q-graph td:hover {
    background-color: #4d4d4d;
    opacity: .9;
    color: white;
}

.graph .q-graph thead {
    position: absolute;
    right: 0;
}

.graph .q-graph thead tr {
    left: 50%;
    top: -15%;
    bottom: auto;
    margin: -2.5em 0 0 5em;
}

.graph .q-graph thead th {
    width: 7.5em;
    height: auto;
    padding: 0.5em 1em;
    white-space: nowrap
}

.graph .q-graph thead th.sent {
    top: 0;
    left: 200px;
    line-height: 2;
}

.graph .q-graph thead th.paid {
    top: 2.75em;
    line-height: 2;
    left: 200px;
}

.graph .q-graph tbody tr {
    height: 296px;
    padding-top: 2px;
    border-right: 1px dotted #C4C4C4;
    color: #AAA;
}


.graph .q-graph tbody th {
    bottom: -1.75em;
    vertical-align: top;
    font-weight: normal;
    color: #333;
}

.graph .q-graph .bar {
    width: 20px;
    border: 1px solid;
    border-bottom: none;
    color: #000;
}

.graph .q-graph .bar p {
    margin: 5px 0 0;
    padding: 0;
    opacity: .4;
    letter-spacing: 0.1rem;

}

.graph .q-graph .sent {
    left: 13px;
    background-color: #35456C;
    border-color: transparent;
}

.graph .q-graph .paid {
    left: 40px;
    background-color: #0e76a8;
    border-color: transparent;
}

.graph #ticks {
    position: relative;
    top: -300px;
    left: 100px;
    width: 796px;
    height: 300px;
    z-index: 1;
    margin-bottom: -300px;
    font-size: 10px;
}

.graph #ticks .tick {
    position: relative;
    border-bottom: 1px dotted #C4C4C4;
    width: 800px;
}

.graph #ticks .tick p {
    position: absolute;
    left: -6em;
    top: -0.8em;
    margin: 0 0 0 0.5em;
}

/* End About */

/* Admission */

#admissions-content.panel-content {
    display: block !important;
}

.admission-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    overflow: hidden;
    height: 100%;
    margin: 0;
    width: 100%;
    border-radius: 0;
}


.admission-item:nth-child(even) {
    flex-direction: row-reverse;
}

.admission-info {
    padding: 30px;
    flex-basis: 66%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    color: black;
}

.admission-info .title {
    font-size: 40px;
    font-weight: bold;
}

.admission-info .sub-title {
    margin: 20px 0 20px;
    font-weight: bold;
    font-size: 30px;
}

.admission-info .sub-title.blue {
    color: #0e76a8;
}

.admission-info .sub-title.red {
    color: #D9323A;
}

.admission-info p {
    color: black;
}

.admission-img {
    flex-basis: 34%;
    overflow: hidden;
    position: relative;
    height: 100%;
    padding: 20px;
}

.admission-img > img {
    height: 400px;
}

.button-more {
    margin: 20px 0 20px;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
}

.admission-info .button-more.blue {
    color: white;
    background-color: #0e76a8;

}

.admission-info .button-more.red {
    color: white;
    background-color: #D9323A;

}

/* End Admission */

/* Activities */

#activities-content.panel-content {
    display: block !important;
}

.all-activities {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.activity-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    overflow: hidden;
    height: 400px;
    margin: 0;
    width: 100%;
    border-radius: 0;
}

.activity-item:nth-child(even) {
    flex-direction: row-reverse;
}

.activity-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.activity-header h1 {
    margin-bottom: 30px;
}

.activity-info {
    padding: 30px;
    flex-basis: 50%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    /*background-image: linear-gradient(60deg, #35456C 0%, #768abc 100%);*/
    background-color: #f3f3f3;
    /*color: white;*/
}

.activity-info h1 {
    font-size: 4rem;
    font-weight: 500;
    color: #35456C;
}

.activity-img {
    flex-basis: 50%;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.activity-img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .7;
}

.activity-img img {
    transition: .3s ease transform;
}

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

/* End Activities */

/* Professors */
.professor-item {
    align-items: center;
    grid-gap: 15px;
}

.professor-item .card {
    position: relative;
    width: 300px;
    height: 350px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    margin: 0 0 50px 50px;
}

.professor-item .card:before,
.professor-item .card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: #fff;
    transition: 0.5s;
    z-index: -1;
}

.professor-item.card:hover:before {
    transform: rotate(20deg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.professor-item .card:hover:after {
    transform: rotate(10deg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.professor-item .card .imgBx {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    background: #222;
    transition: 0.5s;
    z-index: 1;
}

.professor-item .card:hover .imgBx {
    bottom: 80px;
}

.professor-item .card .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.professor-item .card .details {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 14px;
    height: 60px;
    text-align: center;
}

.professor-item .card .details h2 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 20px;
    color: black;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.professor-item .card .details h2 span {
    font-weight: 500;
    font-size: 16px;
    color: #D9323A;
    display: block;
}

.professor-item .card .details br {
    margin: 0;
}

.professor-item .card .details h3 span {
    font-weight: 500;
    font-size: 13px;
    display: block;
    text-transform: uppercase;
}

/* End Professors*/

/* Events */
.events-slider {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 320px;
    height: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
    width: 100%;
    flex-direction: row;
    margin-bottom: 50px;
    align-items: stretch;
}

.events-slider .left-cont-div {
    display: flex;
}

.events-slider .left-cont-div {
    position: relative;
    flex: 50%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    color: #777777 !important;
    font-weight: bold !important;
}

.events-slider .left-cont-div > p {
    color: #777777 !important;
    font-weight: bold !important;
}

.events-slider .left-cont-div {
    display: block;
    color: #777777 !important;
    font-weight: bold !important;
}

.events-slider .left-cont-title-div {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #777777;
    font-weight: bold;
}

.events-slider .left-cont-title {
    display: inline-block;
    max-width: 90%;
    margin-right: 30px;
    color: #444444;
    font-size: 24px;
    font-weight: bold;
    line-height: normal;
}

.events-slider .left-cont-title span {
    display: none;
}

.events-slider .left-cont-title span.active {
    display: block;
}

.events-slider .left-cont-grid {
    margin-top: auto;
    width: 100%;
    min-height: 230px;
    display: grid;
}

.events-slider .left-cont-grid > * {
    /*max-height: 100%;*/
    max-width: 100%;
    overflow: hidden;
}

.events-slider .left-cont-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.events-slider .left-cont-desc-div {
    position: relative;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: 1px;
    color: #777777;
}

.events-slider .left-cont-desc-div p {
    position: absolute;
    top: 0;
    left: 0;
    transition: all ease-in-out 0.5s;
    opacity: 0;
}

.events-slider .left-cont-desc-div p.active {
    opacity: 1;
}

.events-slider .image-slider {
    position: relative;
    overflow: hidden;
    flex: 57%;
    height: auto;
    padding-bottom: 0;

}

.events-slider .image-slider-cont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all ease-in-out 0.5s;
}

.events-slider .image-slider-cont:not(.active) {
    transform: translateY(-100px);
}

.events-slider .image-slider-cont.active {
    opacity: 1;
    z-index: 2;
    transform: translateY(0px);
}

.events-slider .image-slider-cont.active .image-slider-controllers {
    z-index: 3;
}

.events-slider .image-slider-cont img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity ease-in-out 0.5s;
}

.events-slider .image-slider-cont img.active {
    opacity: 1;
}

.events-slider .image-slider-controllers {
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 120px;
    height: 35px;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: -1;
    transform: translateX(-50%);
}

/* End Events */

/* Laureates */
#laureates-content {
    display: block !important;
}

.laureates-cards {
    margin: 80px auto;
    max-width: 960px;
    text-align: center;
    /*background: #dce1df;*/
}

.laureates-cards .card {
    background: #ffffff;
    display: inline-block;
    margin: 10px;
    max-width: 300px;
    perspective: 1000px;
    position: relative;
    text-align: left;
    transition: all 0.3s 0s ease-in;
    width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    z-index: 1;
}

.laureates-cards .card img {
    width: 300px;
    height: 225px;
}

.laureates-cards .card .card-image-holder {
    background: rgba(0, 0, 0, 0.1);
    height: 0;
    padding-bottom: 75%;
}

.laureates-cards .card .card-title {
    background: #ffffff;
    padding: 6px 15px 10px;
    position: relative;
    z-index: 0;
}

.laureates-cards .btn {
    background: #35456C;
    border-radius: 4px;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.25);
    color: #ffffff;
    display: inline-block;
    padding: 6px 30px 8px;
    position: relative;
    text-decoration: none;
    transition: all 0.1s 0s ease-out;
}

.laureates-cards .no-touch .btn:hover {
    background: #35456C;
    box-shadow: 0 8px 2px 0 rgba(0, 0, 0, 0.075);
    transform: translateY(-2px);
    transition: all 0.25s 0s ease-out;
}

.laureates-cards .no-touch .btn:active,
.btn:active {
    background: #35456C;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.25);
    transform: translate3d(0, 1px, 0);
    transition: all 0.025s 0s ease-out;
}

.laureates-cards .card .card-title .toggle-info {
    border-radius: 32px;
    height: 32px;
    padding: 0;
    position: absolute;
    right: 15px;
    top: 10px;
    width: 32px;
}

.laureates-cards .card .card-title .toggle-info span {
    background: #ffffff;
    display: block;
    height: 2px;
    position: absolute;
    top: 16px;
    transition: all 0.15s 0s ease-out;
    width: 12px;
}

.laureates-cards .card .card-title .toggle-info .left {
    right: 14px;
    transform: rotate(45deg);
}

.laureates-cards .card .card-title .toggle-info .right {
    left: 14px;
    transform: rotate(-45deg);
}

.laureates-cards .card .card-title h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.05em;
    margin: 0;
    padding: 0;
}

.laureates-cards .card .card-title h2 small {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.laureates-cards .card .card-description {
    padding: 0 15px 10px;
    position: relative;
    font-size: 14px;
}

.laureates-cards .card .card-actions {
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.075);
    padding: 10px 15px 20px;
    text-align: center;
}

.laureates-cards .card .card-flap {
    background: #d9d9d9;
    position: absolute;
    width: 100%;
    transform-origin: top;
    transform: rotateX(-90deg);
}

.laureates-cards .card .flap1 {
    transition: all 0.3s 0.3s ease-out;
    z-index: -1;
}

.laureates-cards .card .flap2 {
    transition: all 0.3s 0s ease-out;
    z-index: -2;
}

.laureates-cards.showing .card {
    cursor: pointer;
    opacity: 0.6;
    transform: scale(0.88);
}

.laureates-cards .no-touch .showing .card:hover {
    opacity: 0.94;
    transform: scale(0.92);
}

.laureates-cards .show {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.laureates-cards .show .card-title .toggle-info {
    background: #D9323A !important;
}

.laureates-cards .show .card-title .toggle-info span {
    top: 15px;
}

.laureates-cards .show .card-title .toggle-info .left {
    right: 10px;
}

.laureates-cards .show .card-title .toggle-info .right {
    left: 10px;
}

.laureates-cards .show .card-flap {
    background: #ffffff;
    transform: rotateX(0deg);
}

.laureates-cards .show .flap1 {
    transition: all 0.3s 0s ease-out;
}

.laureates-cards .show .flap2 {
    transition: all 0.3s 0.2s ease-out;
}

input[type="radio"] {
    position: absolute;
    left: -9999px;
}

input[type="radio"] .checked {
    background-color: #35456C;
    color: white;
}

.filters {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2em;
    display: block;
}

.filters .checked {
    background-color: #35456C;
    color: white;
}

.filters * {
    display: inline-block;
}

.filters label {
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
    border-radius: 2rem;
    min-width: 50px;
    line-height: normal;
    cursor: pointer;
    transition: all 0.1s;
}

.filters label:hover {
    background: #35456C;
    color: white;
}

/* End Laureates */


/* Partners */

.all-partners {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 0;
}

.partner-item {
    width: 30%;
    margin: 0 0 20px 0;
    flex-direction: column;
}

.partner-item .icon {
    width: 300px;
}

.partner-item .icon img {
    width: 100%;
    filter: drop-shadow(0px 0px 18px #0000002c);
    transition: .3s ease box-shadow;
}

/* End Partners */

/*Temporaiiire*/

/* Testimonies */
.full {
    float: left;
    width: 90%;
    font-size: 23px;
    color: black;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    text-align: center;
}

.full-home {
    float: left;
    width: 100%;
    font-size: 23px;
    color: black;
}

.container-100 {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
}

.col-tem {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    margin-bottom: 15px;
    border-radius: 5px;
}

.col-tem > div {
    margin: 20px;
    padding: 20px 0;
}

.col-tem > div > iframe {
    width: 90%;
    height: 390px;
    padding-bottom: 10px;
}

/* Program section*/


.program {
    width: 80%;
    margin-top: 50px;
    padding-bottom: 100px;
}


.program .tablink {
    margin-top: 50px;
    background-color: white;
    color: white;
    float: left;
    border: none;
    cursor: pointer;
    padding: 14px 10px;
    font-size: 17px;
    width: 25%;
    display: block;
}

.program .tablink:hover {
    background-color: #35456C;
    color: white;
}

.program .tabs-content {
    text-align: center;
}

.program .tabcontent {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 900;
    color: #35456C;
    display: none;
    padding: 0;
    background-color: white;
    border-radius: 20px 20px 20px 20px;
}

.program .tabcontent > h1 {
    text-transform: capitalize;
    color: #35456C;
    font-family: "Muli", sans-serif;
    margin-bottom: 10px;
}

.program .grid-container {
    padding-top: 50px;
    /*margin-left: -20px;*/
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 33%);
    grid-column-gap: 16px;
}

.program .grid-item:hover {
    transform: translateY(-15px);
}

.program .grid-item .panels img {
    margin-top: 0;
    position: relative;
    width: 100%;
    height: 230px;
    box-shadow: 3px 3px 3px #dadada, -3px -3px 3px #fafafa;
}

.program .desc {
    margin-top: 90px;
    text-align-all: left;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 900;
    text-align: left;
    color: #35456C;
}

.program .description {
    width: 911px;
    height: auto;
    margin-left: 23%;
    margin-top: 90px;
}

.program .description > p {
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    width: 500px;
    color: #35456C;
}

.program .desc-button {
    border-radius: 30px;
    float: right;
    height: 50px;
    width: 160px;
    color: white;
    margin-right: 20px;
    margin-top: 100px;
    background-color: #35456C;
}

.program .desc-button:hover {
    border-radius: 30px;
    background-color: #0e76a8;
}

.program .grid-item {
    background-color: rgb(255, 255, 255);
    margin: 0 0 50px 0;
    width: 300px;
    height: 340px;
    text-align: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 3px 3px 3px #dadada, -3px -3px 3px #fafafa;
    transition: .3s ease box-shadow;
}

.program .panels {
    display: grid;
    grid-template-rows: 180px 50px 20px;
}

.program .panels > div {
    margin-bottom: 10px;
}

.program .desc {
    text-align: center;
    padding: 0 20px !important;
}

.mfi-div {
    height: 700px;
    width: 100%;
}

.mfi-img {
    background-image: var(--mfin);
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* End Program section*/


@media (max-width: 1024px) {
    .program .grid-container {
        grid-template-columns: repeat(2, 50%);
        margin-left: -20px;
    }
}

/* Mobile Landscape & Tablet Portrait */

@media (max-width: 768px) {

    .index .details {
        top: 45%;
    }

    .index .details img {
        width: 100%;
    }

    .index .details h1 {
        font-size: 3em;

        width: 100%;

    }

    .section-title {
        font-size: 3rem;
    }

    .slide-data {
        padding: 0 20px;
    }

    .slide-data h1 {
        font-size: 28px;
    }

    .slide-data p {
        font-size: 14px;
        padding: 0 20px;
    }

    .testimonies-div .col-video {
        grid-template-columns: repeat(1, 100%);
    }

    .testimonies-div .button {
        width: 15%;
    }

    .testimonies-div .full-home {
        margin-top: 10px;
        text-align: center;
    }

    .achievement-item > img {
        width: 100%;
    }

    /* About */
    .about {
        flex-direction: column-reverse;
        padding: 0;

    }

    .about .col-left {
        width: 250px;
        height: 360px;
        padding: 0;
    }

    .about .col-left .about-img::after {
        left: -33px;
        top: 19px;
        border: 7px solid #D9323A !important;
    }

    .about .col-right {
        text-align: center;
        padding: 0;
    }

    .about-video {
        width: 100%;
    }

    .static-pie .info {
        margin-top: 50px;
        margin-left: 0;
        width: 100%;
    }

    /*margin-left: -230px;*/
    .graph {
        transform: rotate(90deg);
        margin-top: -50px;
        margin-bottom: 100vh;
        width: 100px;
    }

    .graph .q-graph thead {
        top: 210%;
        left: -350%;
        transform: rotate(-90deg);
    }

    /* End About */
    .program .description {
        width: 100%;
        margin-left: 0;
    }

    .program .description > p {
        width: 100%;
    }

    /* Admissions */
    .admissions-content {
        display: block;
    }

    .admission-info {
        text-align: center !important;
    }

    .admission-info .title {
        font-size: 30px;
    }

    .admission-info .sub-title {
        font-size: 20px;
    }

    .admission-item {
        flex-direction: column !important;
        width: 100%;
        margin: 20px 0 !important;
        border-radius: 10px;
        height: 100%;
    }

    .admission-img > img {
        height: 200px;
    }

    /* End Admissions */
    /* Activities */
    .all-activities {
        display: block;
    }

    .activity-item {
        flex-direction: column !important;
        width: 100%;
        margin: 20px 0 !important;
        border-radius: 10px;
        height: 100%;
    }

    .activity-img {
        height: 300px;
    }

    /* End Activities */
    /* Program */
    .program .grid-container {
        grid-template-columns: repeat(1, 300px);
        margin-left: -20px;
    }

    .mfi-div {
        height: 1500px;
        width: 100%;
    }

    .mfi-img {
        background-image: var(--mfir);
    }

    /* End Program */
    /* Professors */
    .professor-item .card {
        margin: 0 0 20px 0;
    }

    /* End Professors */
    /* Event */
    .events-slider {
        flex-direction: column;
        width: 40%;
        margin: 30px auto;

    }

    .events-slider .left-cont-grid {
        margin-top: 40px;
    }

    .events-slider .image-slider {
        flex: 100%;
        padding-bottom: 55%;
        height: auto;
    }

    .events-slider .left-cont-div > p {
        margin-bottom: 15px;
    }

    /* End Event */
    /* Partners */
    .all-partners {
        width: 350px;
        flex-wrap: wrap;

    }

    .partner-item {
        width: 80%;
        text-align: center;
        padding: 30px 0;
        margin: 30px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    /* ENd Partners */
    /* Testimonies */
    .col-tem {
        display: block;
    }

    .col-tem > div > iframe {
        height: 350px;
    }

    /* End Testimonies */
}


