/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/


@font-face {
    font-family: 'Poppins';
    font-weight: normal;
    src: url(../fonts/Poppins/Poppins-Medium.ttf);
}

@font-face {
    font-family: 'Poppins';
    font-weight: 500;
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: 'Poppins';
    font-weight: bold;
    src: url(../fonts/Poppins/Poppins-Bold.ttf);
}

@font-face {
    font-family: 'Nunito Sans';
    font-weight: normal;
    src: url(../fonts/Nunito-Sans-Font/NunitoSans-Regular.ttf);
}

@font-face {
    font-family: 'Nunito Sans';
    font-weight: 500;
    src: url(../fonts/Nunito-Sans-Font/NunitoSans-SemiBold.ttf);
}

@font-face {
    font-family: 'Nunito Sans';
    font-weight: bold;
    src: url(../fonts/Nunito-Sans-Font/NunitoSans-Bold.ttf);
}

:root {
    --color: #061b4a;
    --fuchsia: #e82f51;
    --orange: #ff5a3c;
    --ltn__heading-font: 'Poppins', sans-serif;
    --ltn__body-font: 'Nunito Sans', sans-serif;
}

body {
    font-family: var(--ltn__body-font);
    font-weight: normal;
    color: #103040;
}

.auto-container {
    padding: 0 2em;
}

h1,
h2,
h3,
h4 {
    /*! text-transform: capitalize; */
    font-family: var(--ltn__heading-font);
    color: #1d296c;
}

@media (max-width:1250px) {

    h1,
    h2,
    h3,
    h4 {
        /*! text-transform: capitalize; */
        font-size: 30px !important;
    }
}

@media (max-width:768px) {

    h1,
    h2,
    h3,
    h4 {
        /*! text-transform: capitalize; */
        font-size: 25px !important;
    }
}

.orange {
    color: #ff5a3c;
}

.btn-orange {
    background: #ff5a3c;
    color: #fff;
}

.btn-orange:hover::after {
    width: 100%;
}

.btn-orange:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
}


.btn-grey {
    background: #e5e5e5;
    font-size: 1em !important;
    display: block;
    height: 100px !important;
    padding-top: 25px !important;
    color: #132b61;
}

.btn-grey:hover::after {
    width: 100%;
}

.btn-grey:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #132b61;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;

}

.btn-grey:hover a {
    color: #ff5a3c;
	text-decoration: none;
}

.helping-column .fa {
    background: #ff5a3c;
    color: #fff;
    padding: 10px;
    border-radius: 100px;
    height: 46px;
    line-height: 1.2;
    width: 46px;
    font-size: 22px;
}


.main a {

    padding: 5px 5px;
    margin: 0 !important;
    font-size: 1em !important;
    line-height: 2.2;
}

h2,
.h2 {
    font-size: 2.3em;
    font-weight: 700;

}

h1,
.h1 {
    font-size: 2.5em;
    line-height: 1.2;
}

h3,
.h3 {
    font-size: 1.5em;
}


h4,
.h4 {
    font-size: 1.1em;
    font-weight: 550;
    font-family: 'Nunito Sans' !important;
}

p {
    color: var(--ltn__paragraph-color);
    margin-bottom: 1.5em;
    font-size: 1.05em;
    font-weight: 600;
}


.pt-200 {
    padding-top: 200px;
}

.pb-200 {
    padding-bottom: 200px;
}

.intro_section p {
    color: #fff;
}

.pb-120,
.py-120 {
    padding-bottom: 120px;
}

.container {
    /*    max-width: 1200px;*/
    padding-left: 15px;
    padding-right: 15px;
}


/********************Tabs*************************/
.tab-lightbox h2 {
    position: relative;
}


div#myBtnContainer button {
    font-weight: 600;
    font-size: 1.3em;
    transition: all 0.45s ease-in-out;
    margin: 0 10px;
}

div#myBtnContainer button.active {
    color: #ff5a3c;
    border-bottom: 1px solid #ff5a3c;
    transition: all 0.45s ease-in-out;
}

a.glightbox.gallery_product .thumbnail {
    position: relative;
    overflow: hidden;
}

a.glightbox.gallery_product .thumbnail::before {
    background: #0a1240d6;
    border-radius: 5px;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a.glightbox.gallery_product:hover .zoom-icon {
    top: 35%;
    opacity: 1;
    background: #fff;
    color: #ff5a3c;
}

a.glightbox.gallery_product .zoom-icon {
    opacity: 0;
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background-color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: var(--color-primary);
    cursor: pointer;
}

a.glightbox.gallery_product:hover .thumbnail:before {
    opacity: .9;
}

section.tab-lightbox h4 {
    text-align: center;
    margin: 20px 0 10px 0;
    font-size: 1.2em;
    color: #261a1a;
    font-weight: 500;
    font-family: 'Poppins' !important;
    line-height: 1.5;
}

section.tab-lightbox .part a.link-college {
    color: #ff5a3c;
    font-weight: 500;
    font-size: 1em;
    border-bottom: 1px solid;
    width: max-content;
    text-align: center;
    font-family: 'Poppins';
    margin: auto;
    display: block;
    float: none;
    padding-bottom: 0px;
    text-transform: uppercase;
}

section.tab-lightbox .part a.link-college .fa {
    font-size: 15px;
}

section.tab-lightbox .part {
    margin-bottom: 30px;
    padding: 10px;
    background: #eeeeee;
    width: 31%;
    margin: 1%;
}

section.tab-lightbox.planetarium-show .part {
    margin-bottom: 30px;
    padding: 10px;
    background: #eeeeee;
    width: 23% !important;
    margin: 1% !important;
}

section.planetarium-show {
    background: #ececed9e;
}

section.tab-lightbox.planetarium-show .glightbox .thumbnail {
    height: 200px !important;
}

section.tab-lightbox.planetarium-show .glightbox .thumbnail img {
    object-fit: cover;
}

section.tab-lightbox p {
    font-size: 15px;
}

@media (max-width:768px) {
    div#myBtnContainer button {
        font-weight: 600;
        font-size: 14px;
        transition: all 0.45s ease-in-out;
        margin: 0
    }
}

@media (max-width:576px) {
    div#myBtnContainer button {
        font-weight: 600;
        font-size: 12px;
        margin: 0;
        transition: all 0.45s ease-in-out;
    }
}

@media (min-width: 768px) {
    .text-md-center {
        text-align: center !important;
    }
}

.Institutes {
    background: #3f51b51c;
}

.about-two-left {
    overflow: hidden;
    position: relative;
}

.about-two-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.new-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background: red;
    padding: 10px;
    color: #ffff;
    font-weight: 600;
}

/*************************footer***************/
ul.footer-logos {
    padding: 0;
    margin: 0;
    display: inline-block;
}

ul.footer-logos li {
    float: left;
    width: 32%;
    list-style-type: none;
}

@media (max-width: 576px) {
    ul.footer-logos li {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-widget ul.list-arrow li {
        width: 100% !important;
    }
}



.ltn__blog-meta {
    margin-bottom: 20px;
}

.ltn__blog-meta ul {
    padding: 0;
    margin: 0;
    text-align: center;
}

.ltn__blog-meta li {
    font-weight: 500;
    display: inline-block;
    position: relative;
    font-size: 15px;
    margin-top: 0;
    color: #8c8e90;
    letter-spacing: -0.03em;
}

.ltn__blog-meta li:after {
    content: '|';
    margin: 0 8px;
}

.ltn__blog-meta li:last-child:after {
    content: '';

}

.ltn__blog-meta li:hover {
    color: #ff5a3c;
}


.ltn__blog-meta li:last-child {
    margin-right: 0;
}

.ltn__blog-meta li i {
    color: #ff5a3c;
    margin-right: 5px;
}

.ltn__blog-meta li img {
    margin-bottom: 0;
}

a.glightbox.gallery_product .thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ltn__header-middle-area.ltn__header-sticky.ltn__sticky-bg-white {
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 6px -1px, rgb(0 0 0 / 6%) 0px 2px 4px -1px;
}

/* ----------------------------------------------------
 Section-2
---------------------------------------------------- */

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

section.section-2 {
    background: #0e0e0e12;
}
section.section-2 ul li a:hover{color:#c62a73;}

section.section-2 ul li > span {
    float: right;
    background: #e3e2e2;
    width: 30px;
    padding-left: 9px;
    border-radius: 100px;
    height: 30px;
    line-height: 34px;
}

section.section-2 ul {
    padding: 0;
}

.Faculty-facilities-details ul li b {
    font-size: 18px;
    color: #212529;
    font-family: 'Poppins';
    font-weight: 500;
}

section.section-2 p {
    text-align: justify;
}

section.section-2 ul li {
    background: #fff;
    width: 48%;
    padding: 18px 10px 18px 12px;
    list-style-type: none;
    float: left;
    margin: 8px 6px;
    font-weight: bold;
    font-size: 17px;
    transition: all 0.45s ease-in-out;
    color: #544f4f;
    letter-spacing: -0.5px;

}

section.section-2 h2 span {
    color: #c62a73;
    font-weight: 600;
    letter-spacing: -0.02em;
}

section.section-2 ul li i {
    color: #c62a73 !important;
}

section.section-2 ul li i {
    color: #c62a73 !important;
    font-size: 22px;
	margin-right: 10px;
}

section.section-2 ul li:hover {
    transition: all 0.45s ease-in-out;
    box-shadow: 11px 6px 22px 3px #c1c0c0;
}

section.section-2 img {
    width: 40px;
}

@media (max-width: 992px) {
    section.section-2 ul li {
        width: 100%;
        font-size: 14px;
    }

    section.section-2 .auto-container {
        width: 100%;
    }

    section.section-2 p {
        color: #0e122e !important;
    }

    section.section-2 {
        background: #0e0e0e12;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

@media (max-width: 1200px) {
    section.section-2 ul li {
        padding: 12px;
        width: 100%;
    }

    section.section-2 img {
        width: 24px;
    }
}

/*************************************************************************
            Services
****************************************************************************/
.myCarousel {
    position: relative;
    background-color: #f6f7f7;
}

.myCarousel .slides-wrapper .slides {
    position: absolute;
}

.myCarousel .slides-wrapper .slides.content {
    height: 60%;
    width: 45%;
    top: 10%;
    left: 0;
}

.myCarousel .slides-wrapper .slides.content .bodytext {
    padding: 0 50px 0 80px;
    position: relative;
    top: 45%;
    transform: translateY(-50%);
    font-size: 17px;
}

.myCarousel .slides-wrapper .slides.content .title {
    margin: 0;
    margin-bottom: 20px;
    color: #c62a73;
}

.myCarousel .slides-wrapper .slides.content .subtitle {
    font-size: 1em;
    line-height: 1.5;
}

.myCarousel .slides-wrapper .slides.photo {
    height: 100%;
    width: 55%;
    top: 0;
    right: 0;
}

.myCarousel .slides-wrapper .slides.photo .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.myCarousel .slides-wrapper .slides.title {
    height: 20%;
    width: 45%;
    bottom: 0;
    left: 0;
}

.myCarousel .slides-wrapper .slides.title .bodytext {
    padding: 0 50px 0 80px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.myCarousel .slides-wrapper .slides.title .bodytext p {
    margin-bottom: 0;
}

.myCarousel .slides-wrapper .slides.title .title {
    margin: 0;
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.5em;
    font-family: var(--ltn__heading-font);
    font-weight: 400;
}

.myCarousel .slides-wrapper .slides.title .link {
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.65em;
    letter-spacing: 2px;
    margin-left: 3px;
}

.myCarousel .slides-wrapper .slides.title .link:after {
    content: "";
    position: absolute;
    top: 2px;
    right: -15px;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    border: 1px solid;
    border-left: 0;
    border-bottom: 0;
    transition: right 0.3s;
}

.myCarousel .slides-wrapper .slides.title .link:hover span {
    opacity: 0.5;
}

.myCarousel .slides-wrapper .slides.title .link:hover:after {
    right: -18px;
}

.myCarousel .slides-wrapper .slides.title .red {
    background-color: #061b49;
}

.myCarousel .slides-wrapper .slides.title .red .title,
.myCarousel .slides-wrapper .slides.title .red .link {
    color: #fff;
}

div#split ul li a:hover {
    color: #c62a73;
}

.myCarousel .slides-wrapper .slides.title .blue {
    background-color: #061b49;
}

.myCarousel .slides-wrapper .slides.title .green {
    background-color: #061b49;
}

.myCarousel .slides-wrapper .slides.price {
    height: 20%;
    width: 25%;
    bottom: 0;
    left: 45%;
    background-color: #c62a73;
}

.myCarousel .slides-wrapper .slides.price > * {
    transition-delay: 0.2s;
}

.myCarousel .slides-wrapper .slides.price .bodytext {
    padding: 0 50px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
}

.myCarousel .slides-wrapper .slides.price .bodytext span {
    display: block;
    color: #fff;
}

.myCarousel .slides-wrapper .slides.price .bodytext .title {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.myCarousel .slides-wrapper .slides.price .bodytext .title.red {
    color: lightyellow;
}

.myCarousel .slides-wrapper .slides.price .bodytext .title.blue {
    color: lightblue;
}

.myCarousel .slides-wrapper .slides.price .bodytext .title.green {
    color: lightpink;
}

.myCarousel .slides-wrapper .slides.price .bodytext .label {
    font-size: 2em;
    font-weight: 500;
}

.myCarousel .slides-wrapper .slides.counter {
    position: absolute;
    top: 40%;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #c62a73;
    color: #fff;
    line-height: 50px;
    text-align: center;
    font-size: 12px;
}

.myCarousel .slides-wrapper .counter-content {
    position: absolute;
    top: 40%;
    margin-top: 50px;
    right: 0;
    width: 50px;
    background-color: #061b49;
}

.myCarousel .slides-wrapper .counter-content hr {
    position: relative;
    display: block;
    transform: rotate(-45deg);
    width: 20px;
}

.myCarousel .slides-wrapper .counter-content span {
    display: block;
    text-align: center;
    line-height: 50px;
    color: white;
    font-size: 12px;
}

.myCarousel #arrows {
    position: absolute;
    top: 0;
    left: 36%;
    padding: 20px 0 0 50px;
}

.myCarousel #arrows span {
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
}

.myCarousel #arrows .prev,
.myCarousel #arrows .next {
    width: auto;
    height: auto;
    border: none !important;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    background: #061b49;
    padding: 10px;
    box-shadow: var(--ltn__box-shadow-3);
}

.myCarousel #arrows a i {
    color: #fff;
    font-size: 18px;
}

.myCarousel #arrows .prev.disable,
.myCarousel #arrows .next.disable {
    display: none;
}

.myCarousel #arrows .prev:hover,
.myCarousel #arrows .next:hover {
    opacity: 0.5;
}

div#split ul li {
    margin-top: 0;
    font-weight: 500;
    list-style-type: none;
}

@media (max-width: 768px) {
    .myCarousel .slides-wrapper .slides.content .bodytext {
        top: 55%;
    }
}

@media (max-width: 992px) {
    .myCarousel .slides-wrapper .slides.content {
        height: 60%;
        width: 100%;
        top: 10%;
        left: 0;
    }

    .myCarousel #arrows {
        right: 10%;
        left: auto;
    }

    .myCarousel .slides-wrapper .slides.photo {
        display: none;
    }

    .myCarousel .slides-wrapper .slides.title {

        width: 100%;
    }

    .myCarousel .slides-wrapper .slides.price {
        display: none;
    }
}

.split {
    position: relative;
}

.split .split {
    height: 100%;
}

.split .split .inner-wrapper {
    height: 100%;
}

.split.split-no-anim {
    transition: all 0s !important;
}

.split.split-no-anim * {
    transition: all 0s !important;
}

.split .slides {
    overflow: hidden;
    height: 100%;
}

.split .slides .slide {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.split .slides .slide .slide-section {
    position: relative;
}

.split .navigation-wrapper {
    display: grid;
    justify-content: space-between;
}

.split .navigation-wrapper .navigation-arrow.prevent {
    pointer-events: none;
}

.split .navigation-wrapper .navigation-arrow.disable {
    pointer-events: none;
    opacity: 0.25;
}

.split .navigation-wrapper .navigation-arrow.prev {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #000;
}

.split .navigation-wrapper .navigation-arrow.next {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #000;
}

.split .dots-wrapper .dot {
    display: inline-block;
}

.split .dots-wrapper .dot.thumb {
    pointer-events: none;
}

.split .dots-wrapper .dot.thumb.visible {
    display: inline-block;
    pointer-events: initial;
}

.split .dots-wrapper.default .dot {
    height: 10px;
    width: 10px;
    border: 1px solid #000;
}

.split .dots-wrapper.default .dot.thumb {
    opacity: 0.25;
}

.split .dots-wrapper.default .dot.thumb.visible {
    opacity: 1;
}

.split.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    transition: background-color 0.15s;
}

.split.fullscreen > .inner-wrapper {
    height: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.theme-left-to-right > .slide {
    top: 0;
    left: -100%;
    transition: transform 0.45s;
}

.theme-left-to-right > .slide.init {
    transform: translateX(100%);
}

.theme-left-to-right > .slide.previous {
    transform: translateX(200%);
}

.theme-left-to-right > .slide.next {
    transform: translateX(0);
}

.theme-right-to-left > .slide {
    top: 0;
    left: 100%;
    transition: transform 0.45s;
}

.theme-right-to-left > .slide.init {
    transform: translateX(-100%);
}

.theme-right-to-left > .slide.previous {
    transform: translateX(-200%);
}

.theme-right-to-left > .slide.next {
    transform: translateX(0);
}

.theme-bottom-to-top > .slide {
    top: 100%;
    left: 0;
    transition: transform 0.45s;
}

.theme-bottom-to-top > .slide.init {
    transform: translateY(-100%);
}

.theme-bottom-to-top > .slide.previous {
    transform: translateY(-200%);
}

.theme-bottom-to-top > .slide.next {
    transform: translateY(0);
}

.theme-top-to-bottom > .slide {
    top: -100%;
    left: 0;
    transition: transform 0.45s;
}

.theme-top-to-bottom > .slide.init {
    transform: translateY(100%);
}

.theme-top-to-bottom > .slide.previous {
    transform: translateY(200%);
}

.theme-top-to-bottom > .slide.next {
    transform: translateY(100%);
}

.theme-fly-away-in > .slide {
    top: 0;
    left: 100%;
}

.theme-fly-away-in > .slide .slide-section {
    transition: transform 0.45s;
}

.theme-fly-away-in > .slide.init {
    transform: translateX(-100%);
}

.theme-fly-away-in > .slide.previous {
    transform: translateX(-200%);
}

.theme-fly-away-in > .slide.next {
    transform: translateX(0);
}

.theme-fade-in-out .slide {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    transition: opacity 0.6s;
}

.theme-fade-in-out .slide.init {
    opacity: 1;
}

.theme-fade-in-out .slide.previous {
    opacity: 0;
}

.theme-fade-in-out .slide.next {
    opacity: 0;
}

.theme-bottom-to-top-zoom-in > .slide {
    top: 100%;
    left: 0;
    transition: transform 0.8s;
    overflow: hidden;
}

.theme-bottom-to-top-zoom-in > .slide .image {
    transform: scale(1.05);
    transition: transform 0.8s;
}

.theme-bottom-to-top-zoom-in > .slide.init {
    transform: translateY(-100%);
}

.theme-bottom-to-top-zoom-in > .slide.init .image {
    transform: scale(1);
    transition-delay: 0.5s;
}

.theme-bottom-to-top-zoom-in > .slide.previous {
    transform: translateY(-200%);
}

.theme-bottom-to-top-zoom-in > .slide.previous .image {
    transform: scale(1.05);
    transition-delay: 0.8s;
}

.theme-bottom-to-top-zoom-in > .slide.next {
    transform: translateY(0);
}

.theme-bottom-to-top-zoom-in > .slide.next .image {
    transform: scale(1.05);
}

.theme-bottom-to-top-fade-out > .slide {
    top: 100%;
    left: 0;
    transition: transform 1s;
}

.theme-bottom-to-top-fade-out > .slide .bodytext {
    opacity: 0;
    transition: opacity 0.3s;
}

.theme-bottom-to-top-fade-out > .slide.init {
    transform: translateY(-100%);
}

.theme-bottom-to-top-fade-out > .slide.init .bodytext {
    opacity: 1;
}

.theme-bottom-to-top-fade-out > .slide.previous {
    transform: translateY(-200%);
}

.theme-bottom-to-top-fade-out > .slide.previous .bodytext {
    opacity: 0;
}

.theme-bottom-to-top-fade-out > .slide.next {
    transform: translateY(0);
}

.theme-bottom-to-top-fade-out > .slide.next .bodytext {
    opacity: 0;
}

.theme-fly-in-top {
    position: absolute;
    width: 100%;
    height: 100%;
}

.theme-fly-in-top > .slide {
    transform: scale(0.25);
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s;
}

.theme-fly-in-top > .slide.init {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

.theme-fly-in-top > .slide.previous {
    transform: scale(1.75);
    opacity: 0;
    pointer-events: none;
}

.theme-fly-in-top > .slide.next {
    transform: scale(1.75);
    opacity: 0;
    pointer-events: none;
}

.theme-fly-in-top.top .slide {
    top: 0;
    left: 0;
}

.theme-fly-in-top.top .slide:nth-child(2n+1) {
    margin-top: 10%;
    width: 100%;
    height: 50%;
    z-index: 2;
}

.theme-fly-in-top.top .slide.init:nth-child(2n+1) {
    margin-top: 0;
}

.theme-fly-in-top.top .slide.previous:nth-child(2n+1),
.theme-fly-in-top.top .slide.next:nth-child(2n+1) {
    margin-top: -35%;
}

.theme-fly-in-top.left .slide {
    top: 0;
    left: 0;
}

.theme-fly-in-top.left .slide:nth-child(2n) {
    margin-left: 25%;
    width: 50%;
    height: 100%;
    z-index: 2;
}

.theme-fly-in-top.left .slide.init:nth-child(2n) {
    margin-left: 0;
}

.theme-fly-in-top.left .slide.previous:nth-child(2n),
.theme-fly-in-top.left .slide.next:nth-child(2n) {
    margin-left: -35%;
}

.theme-fly-in-bottom {
    position: absolute;
    width: 100%;
    height: 100%;
}

.theme-fly-in-bottom > .slide {
    transform: scale(0.25);
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s;
}

.theme-fly-in-bottom > .slide.init {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

.theme-fly-in-bottom > .slide.previous {
    transform: scale(1.75);
    opacity: 0;
    pointer-events: none;
}

.theme-fly-in-bottom > .slide.next {
    transform: scale(1.75);
    opacity: 0;
    pointer-events: none;
}

.theme-fly-in-bottom.bottom .slide {
    bottom: 0;
    right: 0;
}

.theme-fly-in-bottom.bottom .slide:nth-child(2n+1) {
    width: 100%;
    height: 50%;
    margin-bottom: 10%;
}

.theme-fly-in-bottom.bottom .slide.init:nth-child(2n+1) {
    margin-bottom: 0;
}

.theme-fly-in-bottom.bottom .slide.previous:nth-child(2n+1),
.theme-fly-in-bottom.bottom .slide.next:nth-child(2n+1) {
    margin-bottom: -35%;
}

.theme-fly-in-bottom.right .slide {
    bottom: 0;
    right: 0;
}

.theme-fly-in-bottom.right .slide:nth-child(2n) {
    width: 50%;
    height: 100%;
    margin-right: 25%;
}

.theme-fly-in-bottom.right .slide.init:nth-child(2n) {
    margin-right: 0;
}

.theme-fly-in-bottom.right .slide.previous:nth-child(2n),
.theme-fly-in-bottom.right .slide.next:nth-child(2n) {
    margin-right: -35%;
}

.theme-right-to-left > .slide {
    top: 0;
    left: 100%;
    transition: transform 0.45s;
}

.theme-right-to-left > .slide.init {
    transform: translateX(-100%);
}

.theme-right-to-left > .slide.previous {
    transform: translateX(-200%);
}

.theme-right-to-left > .slide.next {
    transform: translateX(0);
}

.theme-bottom-to-top-slow > .slide {
    top: 100%;
    left: 0;
    transition: transform 0.6s;
}

.theme-bottom-to-top-slow > .slide.init {
    transform: translateY(-100%);
}

.theme-bottom-to-top-slow > .slide.previous {
    transform: translateY(-200%);
}

.theme-bottom-to-top-slow > .slide.next {
    transform: translateY(0);
}

.theme-content-horizontal-vertical > .slide {
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
}

.theme-content-horizontal-vertical > .slide.init {
    z-index: 1;
    visibility: visible;
}

.theme-content-horizontal-vertical > .slide.previous {
    z-index: -1;
    visibility: hidden;
}

.theme-content-horizontal-vertical > .slide.next {
    z-index: -1;
    visibility: hidden;
}

.theme-bottom-to-top-with-fade > .slide {
    top: 100%;
    left: 0;
    opacity: 0;
    transition: transform 0.9s, opacity 0.6s;
}

.theme-bottom-to-top-with-fade > .slide .bodytext img {
    top: -100px;
    transition: top 0.45s;
}

.theme-bottom-to-top-with-fade > .slide .bodytext .desc {
    top: 100px;
    opacity: 0;
    transition: top 0.45s, opacity 0.15s;
}

.theme-bottom-to-top-with-fade > .slide.init {
    transform: translateY(-100%);
    opacity: 1;
}

.theme-bottom-to-top-with-fade > .slide.init .bodytext img {
    top: 0;
}

.theme-bottom-to-top-with-fade > .slide.init .bodytext .desc {
    top: 0;
    opacity: 1;
    transition: top 0.45s, opacity 0.15s;
}

.theme-bottom-to-top-with-fade > .slide.previous {
    transform: translateY(-200%);
    opacity: 0;
}

.theme-bottom-to-top-with-fade > .slide.previous .bodytext img {
    top: -100px;
    transition: top 0.45s;
}

.theme-bottom-to-top-with-fade > .slide.previous .bodytext .desc {
    top: 100px;
    opacity: 1;
    transition: top 0.45s, opacity 0.15s;
}

.theme-bottom-to-top-with-fade > .slide.next {
    transform: translateY(0);
    opacity: 0;
}

.theme-bottom-to-top-with-fade > .slide.next .bodytext img {
    top: -100px;
    transition: top 0.45s;
}

.theme-bottom-to-top-with-fade > .slide.next .bodytext .desc {
    top: 100px;
    opacity: 1;
    transition: top 0.45s, opacity 0.15s;
}

.theme-fade-in-out-slow > .slide {
    top: 100%;
    opacity: 0;
    transition: opacity 0.6s;
}

.theme-fade-in-out-slow > .slide.init {
    transform: translateY(-100%);
    opacity: 1;
}

.theme-fade-in-out-slow > .slide.previous {
    transform: translateY(100%);
    opacity: 0;
}

.theme-fade-in-out-slow > .slide.next {
    transform: translateY(100%);
    opacity: 0;
}

/*****************************************************************
Planetarium
********************************************************************/

section#Planetarium {

    height: 700px;

}

.construction {
    padding-top: 70px;
}

.sec-1 {
    background: linear-gradient(to right, #0a0f21 51%, #8b3f3870 100%);
    width: 55%;
    height: 100%;
    padding: 50px;
    float: right;
}

@media (max-width:992px) {
    .sec-1 {
        width: 100%;
    }

    section#Planetarium {
        height: auto;
    }

    .construction .section-title {
        padding-top: 70px;
    }
}

section#Planetarium p {
    color: #fff;
    font-size: 16px;
}
