@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;400;500;600;700&display=swap');
:root {
    --primary: #154747;
    --secondary: #F70000;
    --light: #FFF5F3;
    --dark: #103741;
    --font-normal: 'Work Sans', sans-serif;;
    --thin: 200;
    --light: 300;
    --normal: 400;    
    --semi-bold: 500;
    --bold: 600;
    --black: 700;
}
body {
    font-family: var(--font-normal);
    font-weight: var(--light);
    font-size: 1rem;
    line-height: 1.5;
    color:  #154747;
}
body * {
    font-family: var(--font-normal) !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
small, .small {
    font-size: .875em;
    line-height: 1.3em;
    display: inline flow-root;
}
.bg-primary{background-color: #154747 !important;}
.bg-pink{background-color: #FFEBDF;} 
.bg-light-orange{ background-color: #FFF4EE; }
.bg-medium-orange { background-color: #F0B3A0; } 
.bg-light-pink{background-color: #FFF4EE; } 
.bg-transparent { background-color: #FFF; }
.text-white-all *{ color:#FFF; }
.text-primary { color: var(--primary) !important; }
.font-weight-bold{ font-weight: bold; }
.wow{ visibility: hidden; }
.icon-16{ width: 16px; }
.icon-32{ width: 32px; }
.icon-64{ width: 64px; }
a{ text-decoration: none; outline: none; }
/*** 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;
}

.blog-header { color: #F0B3A0;}
.blog-header a{ color: #F0B3A0; text-decoration: none; }
.owl-carousel .owl-item img{ height: auto; }
.blog-border-bottom {
    border: 1px solid #F0B3A0
    position: absolute;
    height: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;

    border: 1px solid #F0B3A0;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    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: 50px;
}


/*** Heading ***/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: var(--font-normal);
    font-weight: var(--normal);
    color: #154747;
    line-height: 1.0;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}
img.img-full{ width: 100%; display: block; height: auto; }

.font-secondary {
    font-family: 'Work Sans', sans-serif;
}
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}
.owl-carousel{ max-height: 80vh; overflow: hidden;}
.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;
    border-radius: 45px;
    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(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}
/*** Footer ***/
.footer h5 { font-weight: 400; font-size: 1em; }
.footer ul {
    margin: 0;
    padding: 0;
}
.footer ul li img{ margin-right: 10px; }
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link, .footer a, .footer li {
    color:  var(--primary) !important;
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    transition: .3s;
    text-decoration: none;
}

.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 {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/* My Custom CSS */
.navbar-brand {
    width: 8vmin;
}
.width-min-content{ width: min-content; }
.move-up-180{ top: -180px; }
.move-up-160{ top: -160px; }
.move-up-140{ top: -140px; }
.move-up-120{ top: -120px; position: relative; }
.no-border{ border: none !important; }
.bg-transparent{ background: transparent !important; }
.content-circle-01 {
    font-weight: 300;
    color:  #FFF;
    position: relative;
    z-index: 99;
    text-align: center;
    vertical-align: middle;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 10px;
}
.content-circle-01:before {
    content: '';
/*    height: 10em;
    width: 10em;*/
    width: 175%;
    height: 0;
    padding-bottom: 175%;
    /*background: #154747e8;*/
    background: #154747;
    mix-blend-mode: multiply;
    opacity: 0.9;
    position: absolute;
    display: block;
    z-index: -1;
    /* text-align: center; */
    /* vertical-align: middle; */
    border-radius: 50%;
    /* padding: 2em; */
}
.content-circle-02 {
    font-weight: 300;
    width: 16em;
    min-width: 300px;
    position: relative;
    z-index: 99;
    text-align: center;
    vertical-align: middle;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}
.content-circle-02:before {
    content: '';
    height: 20em;
    width: 20em;
    background: #ffdbc699;
    position: absolute;
    display: block;
    z-index: -1;
    /* text-align: center; */
    /* vertical-align: middle; */
    border-radius: 50%;
    /* padding: 2em; */
}
.teachopia-page .content-circle-01{ top: -260px; left: -10%;  }
.teachopia-page .qr-code{
    margin-top: -160px;
    margin-bottom: 100px;
}
.btn-learn-more{
    font-size: 0.8em;
    display: flex;
    align-items: center;
    color: #103741;
    margin-top: 20px;
}
.btn-learn-more img{ max-width: 100px; margin-left: 10px; }
.box-heading { margin: 10px 0; }
.card { background: none; border: none; }
.card-img{ border-radius: 0; }
.card-img-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.card-img-overlay.dark{
    background: #00000052;
    border-radius: 0;
}
.card-img-overlay > * { width: 100%; text-align: center; }
.card-img-overlay .card-title { font-weight: 500; align-self: flex-end; padding: 0 20px; }
.card-img-overlay .card-text { align-self: center; }
.card-text a { color: var(--primary); text-decoration: underline; }
.card-text.text-white a { color: #FFF; text-decoration: underline; }

.card-text a:hover { color: var(--secondary) !important; }
.border-bottom-dashed { border-bottom: 1px dashed #154747; padding-bottom: 3px;}
.our-solutions-list{ padding-top: 40px; }
.our-solutions-list > div{ position: relative; margin-bottom: 80px;}
#board-of-directors .our-solutions-list > div.modal { position: fixed !important; }
.our-solutions-list > div img { position: relative; z-index: 9; display: block; }
.our-solutions-list > div figure::before {
    position: absolute;
    content: url('../img/graphics/team-photo-bg.svg');
    width: 100%;
    top: -29px;
    left: -7px;
}
.our-solutions-list > div img + img {
    position: absolute;
    z-index: 1;
    top: -20px;
    max-width: 165px;
    right: 50px;
}
.our-solutions-list > div * { transition: transform .2s; }
.our-solutions-list > div h5 {
    margin: 0 auto 10px;
    font-weight: 400;
}
.our-solutions-list > div img{ max-width: 178px; height: auto; margin:auto; } 
.our-solutions-list > div:hover img{ transform: scale(1.1); }
.our-solutions-list > div:hover h5{ text-decoration: underline darkgray dashed 0.2px; }
.btn-white {
  background: #FFF;
  border-radius: 272px;
  padding: 10px 15px;
  color: #154747 !important;
  border: none;
}
.btn-white:hover { color:  #fe7555 !important; }

.counter-number { 
    border-radius: 50%;
    background: #154747;
    width: 150px; 
    height: 150px; 
    color: #FFF; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: relative; 
    margin:  auto;
    font-weight: var(--semi-bold);
}
.counter-number.style01 { 
    background: #154747;
    color: #FFF;
}
.counter-number.style02 {
    background: #F4DED7;
    color: #154747;
    margin-bottom: 10px;
    margin-top: 15px;
}
.counter-number.style02 + p{ color:  #FFF; }
.lets-doit { background-color:#f7e1d3; justify-content: start; }
.lets-doit .rounded-extra {
    width: 90%;
    position: relative;
    max-width: 250px;
    margin: auto;
}
.banner-caption-green {
    position: absolute;
    bottom: -10%;
    right: 10%;
    background: #154747de;
    border-radius: 50%;
    width: 8em;
    height: 8em;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}
.banner-caption-orange {
    position: absolute;
    bottom: -70px;
    left: 10%;
    background: rgba(255, 235, 223, 0.91);
    border-radius: 50%;
    width: 25em;
    height: 25em;
    z-index: 99;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}
.banner-caption-primary{
    background: #154747de;
}
.banner-caption-orange *{ color: #154747; }
.features-boxes ul {
    margin: 0;
}
.features-boxes ul li {
    list-style: none;
    position: relative;
    padding-left: 10px;
    margin-bottom: 20px;
}
.features-boxes ul li::before {
    content: '';
    width: 15px;
    height: 17px;
    background-color: red;
    background: url('../img/icons/solutions-bullet-point.svg') no-repeat top left / cover;
    position: absolute;
    left: -25px;
}
.accordion-item .accordion-button {
    font-size: 0.6em;
    font-weight: 400;
}
.accordion-button:not(.collapsed) {
    color: #004948;
    background-color: transparent;
    box-shadow: none;
}
.accordion-item {
    background-color: transparent;
    border: 1px solid rgba(0,0,0,0.05);
}
#footprint-graphic figure img {
    max-width: 140px;
    min-width: 100px;
}
#footprint-graphic figure + p { width: 50%; max-width: 500px; padding: 10px; }
#latest-blogs{ overflow-x: clip; }
#latest-blogs .owl-carousel{ max-height: unset; }
#latest-blogs .banner-caption-green {
    right: -5%;
    bottom: -15%;
    width: 30em;
    height: 30em;
    flex-wrap: wrap;
    padding: 40px 30px;
}
#latest-blogs .banner-caption-green > div {
    width: min-content;
    min-width: 80%;
    padding-left: 5%;
    padding-right: 15px;
}
.blog-container { padding: 10% 25% 15%; }
.blog-container .blog-list { padding-inline-start: 0; }
.blog-container .blog-list li { padding: 20px 10px; border-top: #154747 1px solid; position: relative; list-style: none; cursor: pointer;}
.blog-container .blog-list li:last-child { border-bottom: #154747 1px solid; }
.blog-container .blog-list li.active:before {
    position: absolute;
    left: -20px;
    height: 30px;
    width: 30px;
    content: '•';
    color: #F0B3A0;
    font-size: 30px;
    font-weight: bold;
}
.blog-container .blog-list li p { line-height: normal; margin-bottom: 5px; }
.blog-image {
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}
.blog-container > p a { color: #154747; text-decoration: underline; margin-top: 40px; display: block; }
.blog-summary:not(.active) { display: none; }
#subscribe input { background: none; border: 0; border-bottom: #154747 1px solid !important; }
#subscribe button { border:none; background: #ffffff; padding: 10px 20px; border-radius: 272px; color: #154747; margin-left: 20px;}
#subscribe button:hover{ background: #154747; color: #fff; }
.video-list > div { position: relative; }
.video-list img { border-radius: 10px; }
.video-list img:last-child{ position: absolute; top: 40%; left: 45%; opacity: 0.5; }
.video-list img:last-child:hover{ opacity: 1; transform: zoom(1.2); }
.float-left { float: left; }
.float-right { float: right; }
.teachopia-page .features-boxes ul li {
    padding-left: 10px;
    margin-bottom: 3vh;
}
.teachopia-page .features-boxes ul+img { margin-top: -30px;  }

.brands {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px
}

.brands_slider_container {
    height: 190px;
    /*border: solid 1px #e8e8e8;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);*/
    padding-left: 35px;
    padding-right: 35px;
    background: #fff;
    position: relative;
}

.brands_slider {
    height: 100%;
    margin-top: 50px
}

.brands_item {
    height: 100%
}

.brands_item img {
    max-width: 100%
}

.brands_nav {
    position: absolute;
    top: 35%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
    cursor: pointer;
    width: 40px;
}

.brands_nav i {
    color: #e5e5e5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease
}

.brands_nav:hover i {
    color: #676767
}

.brands_prev {
    left: -40px
}

.brands_next {
    right: -40px
}
body.modal-open {
    overflow: hidden;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    /*border: 1px solid rgba(0,0,0,0.2);
    border-radius: -1.7rem;*/
    outline: 0;
}
#myVideoModal.fade.in {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 30px 0 10px;
}
#myVideoModal .modal-dialog {
  max-width: 1200px;
  width: 100%;
  margin: 30px auto;
}

#myVideoModal .modal-body {
  position: relative;
  padding: 0px;
}
#myVideoModal .close {
    font-weight: normal;
    color: #fff;
}
#myVideoModal .close {
    position: absolute;
    right: -5px;
    top: -10px;
    z-index: 999;
    font-size: 28px;
    font-weight: normal;
    color: #fff;
    line-height: 12px;
    opacity: 1;
    background: red;
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}
.video-btn {
    border: 0;
    box-shadow: none;
    padding: 0;
}
.video-btn:hover .card .card-img-overlay .card-block svg path{ stroke: red; }
.video-btn:hover .card .card-img-overlay .card-block svg path:last-child{ fill: red; }
/*a.gallery-item { position: relative; }*/

form label {
    font-size: 14px;
    margin-top: 20px;
    display: block;
}
.justified-gallery{ position: relative; background: #FFF; }
figure.wp-block-gallery{
    gap:  0.1em;
}
figure.wp-block-gallery figure.wp-block-image:not(#individual-image) {
    width: auto !important;
    height: 100px !important;
}
figure.wp-block-gallery figure.wp-block-image a img { opacity: 0.8 !important; }
figure.wp-block-gallery figure.wp-block-image a:hover img { opacity: 1 !important; }
figure.wp-block-gallery figure.wp-block-image a::after {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    content: '\f62c';
    font-family: bootstrap-icons !important;
    font-size: 20px;
    color: white;
}