/********** Template CSS **********/
:root {
    --primary: #2f71f7;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
	
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .3), rgba(24, 29, 56, .6)), url(../img/page-header.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--primary);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--light);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--dark) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer a {
    color: #2f71f7;
}

.footer a:hover {
    color: #680a0b;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3); */
    width: 100%;
    margin: 0 auto;
    /* padding: 10px; */
}
.gallery-item {
    flex-basis: 49%;
    margin-bottom: 6px;
    /* opacity: .85; */
    cursor: pointer;
	height: 370px;
}
.gallery-item:hover {
    opacity: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-content {
    font-size: .8em;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;              
    overflow: auto;
    top: 0;
    left: 0;
}
.lightbox-content {
    position: relative;
    width: 70%;
    height: 70%;
    margin: 5% auto;
}
.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    cursor: pointer;
}
.lightbox-prev {
    left: 0;
}
.lightbox-next {
    right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}

@media (max-width: 767px) {
    .gallery-container {
        width: 100%;
    }
    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }
    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }
}
@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }
    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
}

.vedio-button {
    position: fixed;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 0 0 rgb(0 138 255);
    border-radius: 50%;
    background-color: transparent;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0px auto;
    left: 60px;
    transform: translateY(-50%);
    z-index: 333;
    bottom: -30px;
}


.intro {
  height: auto;
  min-height: 100vh;
  text-align: center;
  background-color: teal;
}

/* h2.ms-animated {
    border: 5px solid #fff;
    width: 32%;
    text-align: center;
    margin: 0 auto;
    padding: 30px 10px;
    border-radius: 100%;
	color: #fff;
	margin-bottom: 10px;
} */

h2.ms-animated {
 	text-align: center;
    margin: 0 auto;
    color: #fff;
}

h4.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
    border-radius: 50%;
    box-shadow: inset 0 0 0 5px #090909;
    display: inline-block;
    float: none;
    font-size: 55px;
    height: 150px;
    line-height: 150px;
    margin-bottom: 15px;
    position: relative;
    width: 150px;
    text-align: center;
	
}
h4.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}


.service-box {
    text-align: center;
    border: 2px solid #2f71f7;
    border-radius: 0 2rem 0 0;
    box-shadow: 10px 11px 11px rgb(14 55 54 /25%);
	height: 300px;
}

.service-box:hover {
   background: #2f71f7;
    color: #fff;
    transition: 0.5s;
}


.service-box:hover h5{
    color: #fff;
	transition: 0.5s;
}


#logoMarqueeSection {
  max-width: 1920px!important;
  margin: 0 auto;
}

.default-content-container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    /* padding-left: 5rem;
    padding-right: 5rem; */
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    width: 100%;
    min-height: 100vh;
}

div.marquee>a>img {
 height: 60px;
    /* filter: grayscale(100%); */
	
}

.logoMarqueeSection>div>div {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
}

.marquee-wrapper {
  /* display:  inline-block; */
  white-space: nowrap;
}

.marquee {
    display:  inline-block;
    white-space: nowrap;
    position: relative;
    transform: translate3d(0%, 0, 0);
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee a {
    display:  inline-block;
    white-space: nowrap;
    padding-right: 5.4rem;
}

.marquee-wrapper:hover .marquee {
    animation-play-state: paused !important;
}

@keyframes marquee {
    0% {
        transform: translate3d(0%, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
	
}

.uparrow img {
        position: absolute;
    margin-left: 130px;
    content: "";
    margin-top: -85px;
    width: 9% !important;
}


.downarrow img {
   position: absolute;
    margin-left: 80px;
    content: "";
    margin-top: -10px;
    width: 12% !important;
}


.icon-content.mt-5 {
    margin-top: 100px !important;
}


.downarrow2 img {
    position: absolute;
    margin-left: 70px;
    content: "";
    margin-top: -165px;
    width: 5% !important;
}


.uparrow5 img {
    position: absolute;
    margin-left: -170px;
    content: "";
    margin-top: 0px;
    width: 11% !important;
    transform: rotate(-30deg);
}


.downarrow6 img {
    position: absolute;
    margin-left: -145px;
    content: "";
    margin-top: -100px;
    width: 4% !important;
    transform: rotate(-60deg);
}


.downarrow9 img {
    position: absolute;
    margin-left: -125px;
    content: "";
    margin-top: -10px;
    width: 4% !important;
    transform: rotate(-20deg);
    transform: scaleX(-1);
}



/* event gallery css start */

.grid-wrapper > div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.grid-wrapper > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.grid-wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
}
.grid-wrapper .wide {
	grid-column: span 2;
}
.grid-wrapper .tall {
	grid-row: span 2;
}
.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}

/* event gallery css end */



.service-item {
    background: var(--primary);
    transition: .5s;
    height: 250px;
}






.services{
  padding: 60px 0px;
}
.services-box{
  display: inline-block;
  padding: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #dfe0e1;
  padding-top: 40px;
}
.services-box:hover{
  background: #f2f2f2;
  cursor: pointer;
  
   transition: all 1s;
  -moz-transition: all 1s; /* Firefox 4 */
  -webkit-transition: all 1s; /* Safari and Chrome */
  -o-transition: all 1s; /* Opera */
}
.services-box:hover i{
  background: #4A89DC;
  border-radius: 100px;
  
  transition: all 1s;
  -moz-transition: all 1s; /* Firefox 4 */
  -webkit-transition: all 1s; /* Safari and Chrome */
  -o-transition: all 1s; /* Opera */
}
.icon{
  padding: 0px;
  float: left;
  margin-right: 20px;
  padding-bottom:30px
}
.icon i{
  width: 70px;
  height: 70px;
  background: #5D9CEC;
  color: #ffffff;
  line-height: 70px;
  text-align: center;
  font-size: 44px;
}
.service-content{

}
.service-content h4{
  font-size: 18px;
  font-weight: 900;
  height: 35px;
}












#DIV_1 {
    color: rgb(51, 51, 51);
    
    width: 750px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 503.5px 342.5px;
    transform-origin: 503.5px 342.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_1*/

#DIV_2 {
    clear: both;
    color: rgb(51, 51, 51);
    height: 80px;
    width: 1007px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 503.5px 40px;
    transform-origin: 503.5px 40px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_2*/

#DIV_3 {
    box-sizing: border-box;
    color: rgb(51, 51, 51);
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 503.5px 302.5px;
    transform-origin: 503.5px 302.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
    padding: 0px 10px;
}/*#DIV_3*/

#H1_4 {
    color: rgb(29, 153, 216);
    height: 36px;
    text-align: center;
    text-transform: capitalize;
    width: 987px;
    column-rule-color: rgb(29, 153, 216);
    perspective-origin: 493.5px 18px;
    transform-origin: 493.5px 18px;
    border: 0px none rgb(29, 153, 216);
    font: normal normal 300 normal 42px / 36px "Arial Rounded MT Bold", Arial;
    margin: 0px;
    outline: rgb(29, 153, 216) none 0px;
}/*#H1_4*/

#DIV_5, #DIV_7 {
    clear: both;
    color: rgb(51, 51, 51);
    height: 40px;
    width: 987px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 493.5px 20px;
    transform-origin: 493.5px 20px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_5, #DIV_7*/

#P_6 {
    height: 44px;
    text-align: center;
    width: 908.031px;
    perspective-origin: 454.016px 22px;
    transform-origin: 454.016px 22px;
    font: normal normal normal normal 16px / normal "Open Sans", sans-serif;
    margin: 0px 39.4844px;
}/*#P_6*/

#DIV_8 {
    color: rgb(51, 51, 51);
    height: 445px;
    text-align: center;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 493.5px 222.5px;
    transform-origin: 493.5px 222.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_8*/

#DIV_9 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 445px;
    text-align: center;
    vertical-align: middle;
    width: 340px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 190px 222.5px;
    transform-origin: 190px 222.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_9*/

#DIV_10, #DIV_26 {
        color: rgb(51, 51, 51);
    text-align: right;
    width: 310px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 180px 38.5px;
    transform-origin: 180px 38.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    margin: 10px;
    outline: rgb(51, 51, 51) none 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	    border-bottom: 3px dotted rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
    padding-top: 10px;
}/*#DIV_10, #DIV_26*/

#DIV_11 {
    color: #7a0200;
    display: inline-block;
    
    text-align: right;
    vertical-align: text-bottom;
    width: 230px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 126.641px 16px;
    transform-origin: 126.641px 16px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 16px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
    padding: 5px;
}/*#DIV_11*/

#DIV_12, #DIV_16, #DIV_20, #DIV_24, #DIV_28 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 77px;
    text-align: right;
    vertical-align: middle;
    width: 72px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 36px 38.5px;
    transform-origin: 36px 38.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_12, #DIV_16, #DIV_20, #DIV_24, #DIV_28*/

#IMG_13, #IMG_17, #IMG_25, #IMG_29 {
    color: rgb(51, 51, 51);
    height: 62px;
    text-align: right;
    width: 62px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 36px 36px;
    transform-origin: 36px 36px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#IMG_13, #IMG_17, #IMG_25, #IMG_29*/

#DIV_14, #DIV_22 {
    color: rgb(51, 51, 51);
    height: 77px;
    text-align: right;
    width: 325px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 180px 38.5px;
    transform-origin: 180px 38.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    margin: 10px;
    outline: rgb(51, 51, 51) none 0px;
    padding: 0px 35px 0px 0px;
}/*#DIV_14, #DIV_22*/

#DIV_15 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 22px;
    text-align: right;
    vertical-align: text-bottom;
    width: 225.906px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 117.953px 16px;
    transform-origin: 117.953px 16px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 16px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
    padding: 5px;
}/*#DIV_15*/

#DIV_18 {
    color: rgb(51, 51, 51);
    height: 77px;
    text-align: right;
    width: 310px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 180px 38.5px;
    transform-origin: 180px 38.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    margin: 10px;
    outline: rgb(51, 51, 51) none 0px;
    padding: 0px 50px 0px 0px;
}/*#DIV_18*/

#DIV_19 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 22px;
    text-align: right;
    vertical-align: text-bottom;
    width: 166.422px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 88.2031px 16px;
    transform-origin: 88.2031px 16px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 16px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
    padding: 5px;
}/*#DIV_19*/

#IMG_21 {
    color: rgb(51, 51, 51);
    height: 72.125px;
    text-align: right;
    width: 72px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 36px 36.0625px;
    transform-origin: 36px 36.0625px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#IMG_21*/

#DIV_23 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 22px;
    text-align: right;
    vertical-align: text-bottom;
    width: 238.313px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 124.156px 16px;
    transform-origin: 124.156px 16px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 16px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
    padding: 5px;
}/*#DIV_23*/

#DIV_27 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 22px;
    text-align: right;
    vertical-align: text-bottom;
    width: 155.297px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 82.6406px 16px;
    transform-origin: 82.6406px 16px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 16px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
    padding: 5px;
}/*#DIV_27*/

#DIV_30 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 130px;
    text-align: center;
    vertical-align: middle;
    width: 200px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 100px 65px;
    transform-origin: 100px 65px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_30*/

#IMG_31 {
    color: rgb(51, 51, 51);
    height: 125.125px;
    text-align: center;
    width: 200px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 100px 62.5625px;
    transform-origin: 100px 62.5625px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#IMG_31*/

#DIV_32 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 445px;
    text-align: center;
    vertical-align: middle;
    width: 380.813px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 190.406px 222.5px;
    transform-origin: 190.406px 222.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_32*/

#DIV_33, #DIV_49 {
       color: rgb(51, 51, 51);
    /* height: 77px; */
    text-align: left;
    width: 360.813px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 180.406px 38.5px;
    transform-origin: 180.406px 38.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    margin: 10px;
    outline: rgb(51, 51, 51) none 0px;
    display: flex;
    align-items: center;
	border-bottom: 3px dotted rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
    padding-top: 10px;
}/*#DIV_33, #DIV_49*/

#DIV_34, #DIV_38, #DIV_42, #DIV_46, #DIV_50 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 77px;
    text-align: left;
    vertical-align: middle;
    width: 72px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 36px 38.5px;
    transform-origin: 36px 38.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_34, #DIV_38, #DIV_42, #DIV_46, #DIV_50*/

#IMG_35, #IMG_39, #IMG_43, #IMG_47, #IMG_51 {
    color: rgb(51, 51, 51);
    height: 62px;
    text-align: left;
    width: 62px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 36px 36px;
    transform-origin: 36px 36px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#IMG_35, #IMG_39, #IMG_43, #IMG_47, #IMG_51*/

#DIV_36 {
  color: #7a0200;
    display: inline-block;
    /* height: 50px; */
    text-align: left;
    vertical-align: text-bottom;
    width: 250px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 82.7031px 16px;
    transform-origin: 82.7031px 16px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 16px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
    padding: 5px;
}/*#DIV_36*/

#DIV_37, #DIV_45 {
    color: rgb(51, 51, 51);
    height: 77px;
    text-align: left;
    width: 325.813px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 180.406px 38.5px;
    transform-origin: 180.406px 38.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    margin: 10px;
    outline: rgb(51, 51, 51) none 0px;
    padding: 0px 0px 0px 35px;
}/*#DIV_37, #DIV_45*/

#DIV_40 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 22px;
    text-align: left;
    vertical-align: text-bottom;
    width: 134.203px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 72.0938px 16px;
    transform-origin: 72.0938px 16px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 16px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
    padding: 5px;
}/*#DIV_40*/

#DIV_41 {
    color: rgb(51, 51, 51);
    height: 77px;
    text-align: left;
    width: 310.813px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 180.406px 38.5px;
    transform-origin: 180.406px 38.5px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    margin: 10px;
    outline: rgb(51, 51, 51) none 0px;
    padding: 0px 0px 0px 50px;
}/*#DIV_41*/

#DIV_44 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 22px;
    text-align: left;
    vertical-align: text-bottom;
    width: 224.125px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 117.063px 16px;
    transform-origin: 117.063px 16px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 16px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
    padding: 5px;
}/*#DIV_44*/

#DIV_48 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 22px;
    text-align: left;
    vertical-align: text-bottom;
    width: 127.938px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 68.9688px 16px;
    transform-origin: 68.9688px 16px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 16px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
    padding: 5px;
}/*#DIV_48*/

#DIV_52 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: 22px;
    text-align: left;
    vertical-align: text-bottom;
    width: 81.2969px;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 45.6406px 16px;
    transform-origin: 45.6406px 16px;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 16px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
    padding: 5px;
}/*#DIV_52*/

#SCRIPT_53 {
    color: rgb(51, 51, 51);
    text-align: center;
    column-rule-color: rgb(51, 51, 51);
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#SCRIPT_53*/

#DIV_54 {
    color: rgb(51, 51, 51);
    display: none;
    height: auto;
    width: auto;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 50% 50%;
    transform-origin: 50% 50%;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_54*/

#DIV_55, #DIV_76 {
    color: rgb(51, 51, 51);
    display: inline-block;
    height: auto;
    vertical-align: middle;
    width: 48%;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 50% 50%;
    transform-origin: 50% 50%;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_55, #DIV_76*/

#DIV_56, #DIV_60, #DIV_64, #DIV_68, #DIV_72, #DIV_77, #DIV_81, #DIV_85, #DIV_89, #DIV_93 {
    color: rgb(51, 51, 51);
    height: auto;
    min-height: 100px;
    text-align: center;
    width: auto;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 50% 50%;
    transform-origin: 50% 50%;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    margin: 0px 0px 18px;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_56, #DIV_60, #DIV_64, #DIV_68, #DIV_72, #DIV_77, #DIV_81, #DIV_85, #DIV_89, #DIV_93*/

#DIV_57, #DIV_61, #DIV_65, #DIV_69, #DIV_73, #DIV_78, #DIV_82, #DIV_86, #DIV_90, #DIV_94 {
    color: rgb(51, 51, 51);
    height: auto;
    text-align: center;
    width: auto;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 50% 50%;
    transform-origin: 50% 50%;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_57, #DIV_61, #DIV_65, #DIV_69, #DIV_73, #DIV_78, #DIV_82, #DIV_86, #DIV_90, #DIV_94*/

#IMG_58, #IMG_62, #IMG_66, #IMG_70, #IMG_74, #IMG_79, #IMG_83, #IMG_87, #IMG_91, #IMG_95 {
    color: rgb(51, 51, 51);
    text-align: center;
    width: 50px;
    column-rule-color: rgb(51, 51, 51);
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#IMG_58, #IMG_62, #IMG_66, #IMG_70, #IMG_74, #IMG_79, #IMG_83, #IMG_87, #IMG_91, #IMG_95*/

#DIV_59, #DIV_63, #DIV_71, #DIV_80, #DIV_88, #DIV_96 {
    color: rgb(51, 51, 51);
    height: auto;
    text-align: center;
    width: auto;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 50% 50%;
    transform-origin: 50% 50%;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 14px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_59, #DIV_63, #DIV_71, #DIV_80, #DIV_88, #DIV_96*/

#DIV_67, #DIV_75, #DIV_92 {
    color: rgb(51, 51, 51);
    height: auto;
    text-align: center;
    width: auto;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 50% 50%;
    transform-origin: 50% 50%;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 14px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_67, #DIV_75, #DIV_92*/

#DIV_84 {
    color: rgb(51, 51, 51);
    height: auto;
    text-align: center;
    width: auto;
    column-rule-color: rgb(51, 51, 51);
    perspective-origin: 50% 50%;
    transform-origin: 50% 50%;
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 14px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#DIV_84*/

#SCRIPT_97 {
    color: rgb(51, 51, 51);
    column-rule-color: rgb(51, 51, 51);
    border: 0px none rgb(51, 51, 51);
    font: normal normal normal normal 18px / normal "Open Sans", sans-serif;
    outline: rgb(51, 51, 51) none 0px;
}/*#SCRIPT_97*/



div#DIV_33:nth-child(5) {
    border-bottom: 0;
}

div#DIV_10:nth-child(5) {
    border-bottom: 0;
}







.content {
  position: relative;
  width: 100%;
  max-width: 555px;
  margin: auto;
  overflow: hidden;    
margin: 3px;
}

.content .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 1;
}

.content-image{
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details h3{
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
	    font-size: 18px !important;
	line-height: 1.3em;
}

.content-details p{
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-bottom{
  top: 80%;
}


.separator-line-verticle-large {
width: 50px;
    height: 2px;
    display: inline-block !important;
    background-color: #7a0200;
}



@media(max-width: 680px){
	.gallery-item {
    flex-basis: 100% !important;
    margin-bottom: 6px;
    /* opacity: .85; */
    cursor: pointer;
    height: auto !important;
    margin: 5px;
}
	ul li .title, ul li .descr {
    padding-inline: 0rem !important;
}
	.icon-content.mt-5 {
    margin-top: 20px !important; 
}
	.lifejourney ul {
    margin: 0 !important;
    padding: 0;
}
	
	.course-item .text-center {
    height: auto !important;
}
	
	.service-item {
    background: var(--primary);
    transition: .5s;
    height: auto !important;
}

}