@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;700&display=swap');

:root {
    --sw-dark-blue: #354896;
    --sw-trq-light: #E5F4FD;
    --sw-yellow-dark: #FED777
}

/* Typography */
html, body, h1, h2, h3, h4, h5, h6, p, ul, li, a, span, div, input, textarea, select, option, button, label, form, table, tr, td, th, figure, figcaption, nav, footer, header, section, article, aside, main, video, audio, canvas, svg {
    font-family: 'Lato', sans-serif;
}

body {
    overflow-x: hidden;
}

h1, h2 {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
}
h4 {
    font-size: 30px;
    font-weight: 700;
    line-height: 46px
}
p {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 29px;
}

.rtl{
    direction: rtl;
}


.container {
    max-width: 1024px;
}

.trq-light-tooltip {
    --bs-tooltip-bg: var(--sw-trq-light);
    --bs-tooltip-color: #598EAD;
    --bs-tooltip-padding-x: 2rem;
    --bs-tooltip-padding-y: 1rem;
    /* --bs-tooltip-max-width: 250px; */
    --bs-tooltip-font-size: 16px;
    --bs-tooltip-arrow-width: 28px;
    --bs-tooltip-arrow-height: 14px;
    --bs-tooltip-opacity: 1 !important;
}

.wide-tooltip .tooltip-inner{
    min-width: 320px;
    text-align: center;
}

.text-link-generic{
    color:#56b2c6;
}

.animation-container {
    min-height: 626px;
}

/**** Preloader ****/

.page-spinner-container {
    width:160px;
    height:170px;
    position: relative;
    margin: 0 auto;
}

.wand-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 55px;
    left: 55px;
    animation: rotate 1.5s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg) translateX(10px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(10px) rotate(-360deg);
    }
}


.star1 {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 51px;
    left: 43px;
    animation: star1fade 2s ease-in-out infinite;
}

@keyframes star1fade {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}


.star2 {
    opacity: 37%;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 88px;
    left: 103px;
    animation: star1fade 1.4s ease-in-out infinite;
}

@keyframes star2fade {
       0%, 100% { opacity: 0.4; }
        37% { opacity: 1; }
}

.star3 {
    opacity: 37%;
    width: 11px;
    height: 11px;
    position: absolute;
    top: 113px;
    left: 84px;
    animation: star1fade 1.1s ease-in-out infinite;
}

@keyframes star3fade {
       0%, 100% { opacity: 0.4; }
        47% { opacity: 1; }
}


.star4 {
    opacity: 17%;
    width: 11px;
    height: 11px;
    position: absolute;
    top: 51px;
    left: 116px;
    animation: star1fade 1.9s ease-in-out infinite;
}

@keyframes star4fade {
       0%, 100% { opacity: 0.4; }
        47% { opacity: 1; }
}


.star5 {
    opacity: 0%;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 21px;
    left: 66px;
    animation: star1fade 1.4s ease-in-out infinite;
}

@keyframes star5fade {
       0%, 100% { opacity: 0.4; }
        30% { opacity: 1; }
}

.preloader-text{
    font-size:17px;
    text-align: center;
    color:#21A5BA;
    position: absolute;
    bottom: 1px;
    font-family:Lato;
    width:168px;
    left:50%;
    margin-left: -80px;
    animation: textfader 0.8s ease-in-out infinite;
}

@keyframes textfader {
       0%, 100% { opacity: 0.6; }
        50% { opacity: 1; }
}

/**** Preloader ****/

/* #animation_container {
    width: 100%;
}

#animation_container #canvas {
    width: 100%;
} */

/* Typography */

/* Backgrounds color  */
.bg-green {
    background: #B7EBF0;
}
.bg-light-green {
    background: #EAFDFE;
}
.bg-light-green {
    background: #E4FBFD;
}
.bg-yellow {
    background:#FED777;
}
.bg-blue {
    background: #354896;
}
.bg-greener {
    background: #56B2C6;
}
/* Backgrounds color  */

/* Buttons */
.btn.btn-colorful {
    position: relative;
    background: transparent;
    background-color: transparent!important;
    border: none !important;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
}
.btn.btn-colorful span {
    border-radius: 50px;
    background:#56B2C6;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 12px 40px;
    position: relative;
    z-index: 3;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
}
.btn.btn-colorful:before {
    content:"";
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #354896;
    position: absolute;
    top: 3px;
    left: 0;
    z-index: 2;
    display: block;
}
.btn.btn-colorful::after {
    content:"";
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #FE6E63;
    position: absolute;
    top: 6px;
    left: 0;
    z-index: 1;
    display: block;
}
.btn.btn-colorful:hover span {
    top:3px;
}
.btn.btn-colorful:hover::before {
    top: 5px;
}
.btn.btn-colorful:hover::after {
    top: 7px;
}
.btn.btn-secondry {
    border-radius: 50px;
    background: #354896;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding:15px 50px;
    transition: all 0.2s ease;
}

.btn.btn-secondry:hover {
    background: #4b9fb1;
    color: #FFF;
}

.student-sign-up {
    background: #E0FBFD;
    border-radius: 40px;
    padding: 10px 20px;
    color: #3F9EB2;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    cursor: pointer;
}

.student-sign-up:hover, .student-sign-up:active, .student-sign-up:focus {
    opacity: 0.8;
    color: #3F9EB2;
}

.vertical-menu-separator {
    width: 1px;
    height: 44px;
    background-color: #56B2C6;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}

.video_link {
    color: #354896 !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    display: flex;
    transition: all 0.3s ease;
    flex-direction: row;
    align-items: center;
}
.video_link:before {
    content:url(/static/images/homepage/play_btn.svg);
    margin-right: 5px;
    height: 25px;
    width: 25px;
}

.video_link:hover {
    opacity: 0.6;
}


.faq-link{
    color:#354896;
}

/* Buttons */

/* Navbar */
.storywizard-nav {
    background: #FFF;
    height:95px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.15);
}

.storywizard-nav.navbar-light .side-nav .nav-item .nav-link, .storywizard-nav.navbar-light .navbar-nav .nav-link  {
    font-size: 17px;
    font-weight: 500;
    color:#000;
    margin: 0 1px;
    position: relative;
}
.storywizard-nav.navbar-light .side-nav .nav-item .nav-link, .storywizard-nav.navbar-light .navbar-nav .nav-item:nth-child(1) .nav-link {
    margin-left: 0;
}
.storywizard-nav.navbar-light .side-nav .nav-item .nav-link::before, .storywizard-nav.navbar-light .navbar-nav .nav-item .nav-link::before {
    content:"";
    width: 0;
    height: 3px;
    background-color: #56A5B6;
    position: absolute;
    bottom: -27px;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.storywizard-nav.navbar-light .side-nav .nav-item .nav-link::before {
    bottom: -35px;
}

.storywizard-nav.navbar-light .side-nav .nav-item:hover .nav-link::before, .storywizard-nav.navbar-light .navbar-nav .nav-item:hover .nav-link::before,
.storywizard-nav.navbar-light .side-nav .nav-item .nav-link.selected::before, .storywizard-nav.navbar-light .navbar-nav .nav-item .nav-link.selected::before {
    width: 100%;
}

.nav-item.dropdown {
    margin-top: -3px;
}

.dropdown-toggle::after {
    content: url(/static/images/homepage/dropdown_toggle.svg);
    border: none;
    vertical-align: text-bottom;
}
li.nav-item .dropdown-menu {
    background: #FFF;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.15);
    margin-top:27px;
    border: none;
}
li.nav-item .dropdown-menu li a {
    padding: 10px 25px;
}
li.nav-item .dropdown-menu li a img {
    width: 20px;
    object-fit: contain;
    object-position: center;
    margin-right: 15px;
}
.dropdown-item:focus, .dropdown-item:hover {
    background-color: #E2F5F7;
}

.side-nav a.simple_link {
    color: #4B9FB1 !important;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    margin-top:2px;
    vertical-align: -3px;
}

.combo-box {
    border-radius: 2px !important;
    outline: none;
    min-height: 50px !important;
    color: #000;
    display: flex !important;
}

.combo-box .select2-selection__arrow {
    top: 10px !important;
    right: 20px !important;
}

.combo-box .select2-selection__rendered {
    padding-left: 0px !important;
    line-height: 24px !important;
    display: flex !important;
    align-items: start !important;
    gap: 13px !important;
    flex-wrap: wrap !important;
    margin-bottom: 0px !important;
    color: #000 !important;
}

.combo-box b {
    border-width: 12px 10px 0 10px !important;
    border-color: #354896 transparent transparent transparent !important;
}

.combo-box .select2-selection__choice {
    color: #354896;
    background-color: #E0F3F5 !important;
    border: 1px solid #E0F3F5 !important;
    border-radius: 60px !important;
    margin-top: 0px !important;
    padding: 5px 22px 5px 8px !important;
    margin-left: 0px !important;
}

/* .combo-box .select2-selection__choice:not(:first-child) {
    margin-left: 13px !important;
} */

.combo-box .select2-selection__choice__remove {
    top: 5px !important;
    background-color: #E0F3F5 !important;
    color: #3588A3 !important;
    right: 4px !important;
    left: unset !important;
    border-right: none !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    padding-right: 0 4px !important;
}

.combo-box .select2-selection__choice__remove:hover {
    background-color: #E0F3F5 !important;
    color: #56B2C6 !important;
}

.navbar-toggler, .navbar-toggler:focus {
    border: 0;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url('/static/images/icons/toggler.svg');
}

.offcanvas {
    background: white;
    background-position: bottom;
    background-size: 290px;
    background-repeat: no-repeat;
    --bs-offcanvas-width: 290px;
}

.blue-close-button {
    color: #01546B !important;
    opacity: 1;
    background: transparent url('/static/images/icons/x-icon.svg');
    width: 1em;
    height: 1em;
    border: 0;
    padding: calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);
    margin-top: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
  }

.mobile-menu-padding {
    padding-top: 0px;
    padding-left: 36px;
}

.profile-image {
    background-color: #9FD3D8;
    height: 38px;
    width: 38px;
    padding: 2px;
    border: 1px solid #166B82;
    border-radius: 100%;
    position: relative;
}

.outline-tooltip {
    background-color: #B7EBF0;
    user-select: none;
    white-space: nowrap;
    display:block;
    position: relative;
  }

  .offcanvas .balance-panel {
    background-color: white;
  }

  .offcanvas .balance-panel .seperator {
    border-top: 2px solid #56B2C6;
    width: 100%;
    height: 1px;
  }

  .outline-tooltip-body {
    color: #56B2C6;
    border: 1px solid #56B2C6;
    padding: 1rem;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    width: 100%;
  }

  .outline-tooltip-body .blue-link {
    color: #166B82;
    text-decoration: underline;
  }

  .outline-tooltip .outline-tooltip-arrow {
    background-color: #B7EBF0;
    transform: rotate(45deg);
    border: 1px solid #56B2C6;
    position: absolute;
    width: 15px;
    height: 15px;
    top: 18px;
    z-index: 10;
    right: -7px;
    border-bottom: 0;
    border-left: 0;
}

.homepage-lamp {
    background: url('/static/images/homepage/lamp.png');
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 530px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.homepage-lamp.off {
    background-image: url('/static/images/homepage/lamp-off.png');
}

.visible-logged-in, .visible-logged-out{
    display: none;
}

.logged-in .visible-logged-in, .logged-out .visible-logged-out{
    display: block !important;
}

/**** top-stripe ****/
.heb-text {
    font-family: 'Open Sans', sans-serif;
}

.top-stripe {
    background-color: #354896;
    height: 100%;
    padding: 14px 20px;
}

.top-stripe p {
    color: white;
    margin-bottom: 0!important;
    max-width: 90%;
    font-size: 15px;
    cursor: pointer;
}

.top-stripe .btn-close {
    position: absolute;
    right: 14px;
}

.top-stripe[dir=rtl] .btn-close {
    position: absolute;
    left: 14px;
}

.top-stripe p a {
    color: white;
    text-decoration: underline;
}

.top-stripe.red-stripe {
    background-color: #FE6E63;
}

.top-stripe.red-stripe p {
    max-width: 100%!important;
}

@media (min-width: 768px) {
    .top-stripe {
        height: 56px;
        padding: 30px 14px;
    }

    .top-stripe p {
        max-width: unset;
        font-size: unset;
    }
}

.light-blue-button {
	background-color:#5168C4;
    opacity: 1;
	border:none;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:17px;
	padding: 0.3rem 1.5rem 0.3rem 1.5rem;
    border-radius: 4px;
	text-decoration:none;
    user-select: none;
    white-space: nowrap;
    transition: all 0.3s ease-out;
}
.light-blue-button:hover {
	background-color:#5769b1;
    opacity: 1.1;
    color:#ffffff;
}
.light-blue-button:active {
	position:relative;
	top:1px;
}

.light-blue-button.disabled, .light-blue-button:hover.disabled, .light-blue-button:active.disabled {
	background-color:#5168C4;
    border:1px solid #5168C4;
    text-shadow:none;
    position: auto;
    top:0px;
    cursor: not-allowed;
    opacity: 0.4;
}

.header-action-bar .dropdown-menu {
    background-color: #000;
    min-width: 100px;
    margin-top: 10px;
}

.header-action-bar .dropdown-item {
    display: inline-flex;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    color: white;
}

.header-action-bar .dropdown-item:hover {
    background-color: #121212;
}

.header-action-bar .dropdown-item:active {
    background-color: rgba(255, 255, 255, 0.20);
}

.action-bar-arrow {
    background-color: black;
    transform: rotate(45deg);
    position: absolute;
    width: 20px;
    height: 20px;
    left: 8px;
    bottom: -26px;
    z-index: -10;
    display: none;
}

.dropdown-menu-dark.show ~ .action-bar-arrow {
    display: block;
}

.blue-button-outline[data-target=signup] {
    display: none;
}

/* Navbar */

/* Login */

.external-login-button {
    min-width: 280px;
    max-width: 300px;
    --bs-btn-bg: #fff;
    height: 44px;
}

.external-login-button > i.bi {
    position: absolute;
    left: 23px;
    top: 58%;
    transform: translate(-50%,-50%)!important;
}

.bi-google::before {
    content: url(/static/images/ggg.svg);
}

.bi-microsoft::before {
    content: url(/static/images/ms.svg);
}

.bi-envelope::before {
    content: url(/static/images/icons/envelope.svg);
}

.bi-facebook::before {
    content: url(/static/images/fb.svg);
}

.bi-clever::before {
    content: url(/static/images/clever-icon.svg);
}

.btn-moe{
    background-color: #32525f;
    color:#ffffff;
    font-family:Arial;
    font-size:17px!important;
}

.bi-moe-il::before {
    /* content: url(/static/images/icons/moe-il-login.png); */
    width: 25px;
    height: 31px;
    background-image: url('/static/images/icons/moe-il-login.png');
    background-size: 25px 31px;
    background-repeat: no-repeat;
    background-position: 0px 3px;
    display: inline-block;
    content:"";
}

/* Login */


/* hero-section */

.hero-section {
    /* background: #B7EBF0; */
}

.hero-section .section-subtitle{
    line-height: 27px;
}

.hero-image {
    margin-top:-50px;
}
.text-section {
    max-width:490px;
}

.home-subtitle{
    font-size:21px;
    line-height: 26px;
}

h1.hero-title {
    margin-top:145px;
    margin-bottom: 10px;
    font-size: 44px;
}
.section-btns {
    margin-top:30px;
}

.as-seen {
    margin: 40px 20px 20px 40px;
}

/* hero-section */

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle{
    outline: none !important;
}

/* section 2 */

.section-2 {
    padding-bottom:150px;
    position: relative;
}
.section-2 .container-lg {
    position: relative;
    z-index: 2;
}

.section-center-heading {
    text-align: center;
    width: 100%;
    max-width: 910px;
    margin: 150px auto 0;
}

.section-9 .section-center-heading {
    margin-top: 70px;
}

.text_line {
    position: relative;
}
.text_line:after {
    content:"";
    width: 100%;
    height: 7px;
    background-color: #FED777;
    position: absolute;
    left: 0;
    bottom: -5px;
}
.section-center-heading p {
    max-width: 590px;
    width: 100%;
    margin: 15px auto ;
}
.section-2-cards {
    margin-top:60px;
}
.section-2-cards > div {
    padding: 0 20px;
}

.section-2-card {
    border-radius: 4px;
    background:  #FED777;
/*    background:#f6f8f8;*/
    padding: 40px 23px 45px;
    min-height: 320px;
    height: 100%;
}
.section-2-card img {
    height: 50px;
    object-fit: contain;
    object-position: left;
    margin-bottom: 25px;
}
.section-2-card .card-body {
    padding: 0;
}
.section-2-card h5 {
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
}
.section-2-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.learn-more-wrapper {
    text-align: center;
    margin-top: 40px;
}
.cloud-1 {
    background: url(/static/images/homepage/section_2_cloud_1.svg) no-repeat;
    background-size: contain;
    width: 180px;
    height:60px;
    position: absolute;
    top:300px;
    left: 0;
}
.cloud-2 {
    background: url(/static/images/homepage/section_2_cloud_2.svg) no-repeat;
    background-size: contain;
    width: 156px;
    height:54px;
    position: absolute;
    top:85px;
    right: 0;
}

/* section 2 */

/* section 3 */

.section-3 {
    padding-bottom: 150px;
}
.bg-green .text_line:after {
    background-color: #56A5B6;
}

.section-3 .section-subtitle {
    max-width: 660px;
    margin-bottom:50px;
}



.section-3-card {
    text-align: center;
    position: relative;
}
.section-3-card:nth-child(1)::after {
    content:"";
    width:1px;
    height:500px;
    display: block;
    position: absolute;
    top:15px;
    right:0;
    background: #56B2C6;
}
.section-3-card h4 {
    margin-bottom:20px;
}
.section-3-card p {
    /*font-size: 20px;*/
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    max-width: 350px;
    width: 100%;
    margin: 20px auto 30px;
}
.section-3-card .btn {
    margin-bottom:27px;
}
/* section 3 */

/* section 4 */

.section-4 {
    padding-top:103px;
}

.highlight {
    border: 1px solid #000;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    display: inline-block;
    padding:6px 13px 8px;
    margin-bottom:10px;
}

.section-4 .section-subtitle {
    font-size: 20px!important;
}

.section-4 h1 {
    margin-bottom: 20px;
}

.section-4-img {
    margin-top:55px;
}

.section-4 .section-btns {
    margin-bottom: 120px;
}

.bg-yellow .text_line:after {
    background-color: #354896;
}
.video-wrap {
    position: relative;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 23px;
    margin-left: -16px;
    width:146px;
    height:147px;
    animation: heartbit 0.7s alternate infinite ease-in;
}
/* section 4 */

/* section 5 */

.section-5 {
    padding-top: 120px;
    padding-bottom: 120px;
}
.section-5 * {
    color:#fff;
}

.section-5 .section-subtitle {
    font-size: 20px!important;
    line-height: 27px;
}

.section-5 .highlight {
    border-color:#fff;
}

.section-5 h1 {
    margin-bottom: 20px;
}
.video_link.video_link_white {
    color: #fff !important;
}
.video_link.video_link_white:before {
    content: url(/static/images/homepage/play_btn_white.svg);
}

/* section 5 */


/* section 5a */

.gallery-btn-hp{
    background-color: #169bb0!important;
}



.section-5a {
    padding-top: 80px;
    padding-bottom: 80px;
}
.section-5a * {
    color:#fff;
}

.section-5a .section-subtitle {
    font-size: 20px!important;
    line-height: 27px;
}

.section-5a .highlight {
    border-color:#fff;
}

.section-5a h1 {
    margin-bottom: 20px;
}

/* section 5a */


/* section 6 */
.section-6 {
    padding-bottom: 60px;
}
.section-6.bg-yellow {
    background-image: url(/static/images/homepage/section_6_bg.svg);
    background-repeat: no-repeat;
    background-position: top -100px center;
    background-size: 100%;
}
.section-6-content {
    margin-top:60px;
}
.kids-img {
    max-width: 184px;
    margin: 20px 20px;
}
.section-6-text {
    max-width: 490px;
    width: 100%;
    margin-top: 20px;
}
.section-6-text h3 {
    position: relative;
    color: #000;
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
}
.section-6-text h3 span {
    width:22px;
    height: 5px;
    background-color: #354896;
    display: block;
    margin-top: 10px;
}
.section-6-text p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 50px;
}
.section_6_list {
    padding:0;
    list-style: none;
    margin-top:40px;
}
.section_6_list li {
    display: inline-block;
    margin: 10px 20px;
}
.section_6_list li:nth-child(1) img {
    vertical-align: -7px;
}
.section_6_list li:nth-child(2) img {
    vertical-align: -6px;
}
.section_6_list li:nth-child(3) img {
    vertical-align: -5px;
}
.section_6_list li img {
    margin-right:10px;
}

/* section 6 */

/* section 7 */

.section-7 {
    padding-top: 50px;
    padding-bottom: 120px;
}

.section-7 .section-title {
    margin-top:130px;
    margin-bottom: 20px;
}
.section-7-cards {
    margin-top:70px;
}
.section-7-card {
    padding-right:100px;
    margin-bottom:30px;
}
.section-7-card h4 {
    position: relative;
    color: #000;
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
}
.section-7-card h4 span {
    width:22px;
    height: 5px;
    background-color: #F5B75C;
    display: block;
    margin-top: 10px;
}

.section-7-card p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.partners-wrapper{
    margin-top: 100px;
    margin-bottom: 160px;
}

.partner-wrap {
    margin-top:120px;
}
.partner-wrap h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
}
.partner-images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:30px;
}
.partner-images img {
    margin: 0 30px 30px;
}
.partner-images img:nth-child(1) {
    margin-top:18px;
}
.partner-images img:nth-child(3) {
    margin-top:20px;
}

/* section 7 */

/* section 8 */
.section-8 {
    padding-top: 130px;
    padding-bottom: 130px;
}
.subscribe-form {
    background: url(/static/images/homepage/formbgsvg.svg) no-repeat center center;
    background-size:contain;
    min-height:297px;
    color:#fff;
}
.form-content {
    max-width: 490px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}
.form-content h5 {
    font-size: 34px;
    font-weight: 700;
    line-height: 37px;
    margin-top:60px;
}
.divider {
    width: 97px;
    height: 2px;
    margin: 15px auto 15px;
    background: #FED777;
}
.form-content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color:#fff;
    margin-bottom: 20px;
}
.custom-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-control {
    border-radius: 4px;
    border: 2px solid #354896;
    background: #FFF;
    height:56px;
}
.form-content .btn {
    width:123px;
    border-radius: 4px;
    background: #FED777;
    height:53px;
    color: #354896;
    font-size: 20px;
    font-weight: 600;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.form-content .btn:hover{
    background: #c0ecf6;
    color: #354896;
}

/* section 8 */

/* section 9 */

.section-9 {
    padding-bottom:70px;
}
.section-9 .text_line:after {
    background-color: #EE0A0F;
}

.section-9 .section-title {
    margin-top: 20px;
    font-size: 26px;
    font-weight: 500;
}

.section-9 .section-subtitle {
    max-width: 760px;
    font-size: 21px;
    line-height: 25px;
    margin-bottom: 60px;
}
.qoutes-grid {
    overflow: hidden;
}
.qoutes-grid .col {
    margin-bottom:20px;
}
.qoutes-grid img {
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.testimonial {
    border-radius: 10px;
    background-image: url(/static/images/homepage/qoute.svg);
    background-repeat: no-repeat;
    background-position: top 15px left 30px;
    padding:54px 20px;
    width: 100%;
    height: 100%;
}
.testimonial h5 {
    font-size: 19px;
    font-weight: 700;
    line-height: 26px;
}
.testimonial p {
    font-size: 19px;
    font-weight: 400;
    line-height: 23px;
}
.testi-yellow {
    background-color:#FED777;
}
.testi-red {
    background-color:#FE6E63;
    color:#fff;
}
.testi-green {
    background-color: #56B2C6;
    color:#fff;
}
.testi-red p, .testi-green p {
    color:#fff;
}
.btn.btn-colorful i {
    background: url(/static/images/homepage/right_arrow.svg) no-repeat;
    width:19px;
    height:16px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: -3px;
}

.green-link {
    color: #3F9EB2;
    text-decoration: none;
    font-weight: 700;
}

.green-link:hover, .green-link:active {
    color: #3F9EB2 !important;
    opacity: 0.8;
}

/* section 9 */

/* section 10 */

.section-10 {
    padding-top: 160px;
    padding-bottom: 160px;
}
.accordion {
    margin-top:50px;
}
.accordion-button::after {
    background: url(/static/images/homepage/plus.svg);
    width: 29px;
    height: 29px;
}
.accordion-button:not(.collapsed)::after {
    background: url(/static/images/homepage/minus.svg);
}
.accordion-button {
    outline: none !important;
    box-shadow: none !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    padding: 25px 0;
    transition: padding 0.3s ease-in-out;
}
.accordion-button:not(.collapsed) {
    background:transparent;
    color:#000;
    padding-bottom:10px;
}
.accordion-body {
    padding-left: 0;
    padding-top:0;
}
.accordion-item {
    border-color:#000;
}

/* section 10 */

/* section 11 */
.section-11 {
    padding-bottom: 220px;
    background-image: url(/static/images/homepage/section_11.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.team-content {
    position: relative;
    z-index: 2;
}
.section-11 .section-subtitle {
    max-width: 750px;
    font-size:21px;
    line-height: 25px;
    margin-bottom:200px;
}
.team-cards .col-md-4 {
    padding-left:30px;
    padding-right:30px;
}
.team-card {
    background:#FED777;
    padding:25px 25px 20px;
    margin-bottom:30px;
    text-align: center;
    width:100%;
}
.special-card {
    margin-top:50px;
}
.team_img {
    margin-top:-200px;
}
.team-card h5 {
    font-size: 19px;
    font-weight: 700;
    line-height: 25px;
    margin-top:15px;
}
.team_divider {
    width: 83px;
    height: 2px;
    background: #393837;
    margin: 15px auto;
}
.team-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px
}
.linkedin_link {
    display: block;
    width: 28px;
    height:28px;
/*    transition: all 0.3s ease;*/
    transition: transform 0.3s;
}
.linkedin_link:hover {
/*    opacity: 0.5;*/
    transform: scale(1.2) rotate(10deg);
/*    transform: rotate(10deg);    */

}

.plane-1 {
    background: url(/static/images/homepage/section_11_1.svg) no-repeat;
    background-size: contain;
    width: 76px;
    height: 46px;
    position: absolute;
    top: 284px;
    right:95px;
    display: block;
}
.plane-2 {
    background: url(/static/images/homepage/section_11_2.svg) no-repeat;
    background-size: contain;
    width: 122px;
    height: 70px;
    position: absolute;
    bottom: 360px;
    left: 57px;
    display: block;
}


.about-us-logos{
    background:#fff;
    padding:0px;

}

.logo-nvidia{
    width:108px;
    height:34px;
}

.logo-miko{
    width:94px;
    height:31px;
}

.logo-nick{
    width:39px;
    height:41px;
}

.logo-ms{
    width:90px;
    height:38px;
}

.logo-mindcet{
    width:92px;
    height:34px;
}

.logo-gesa{
    width:115px;
    height:28px;
}

.logo-forbes{
    width:81px;
    height:44px;
}

.logo-tc{
    width:104px;
    height:22px;
}

.gesa-winner-logo {
    width: 282px;
    height: 139px;
}

.bg-logos{
    background: #fff;
}

/* section logos */
.section-logos {
    padding-bottom: 190px;
    padding-top: 0px;
    position: relative;
}


/* section 11 */

/* section 12 */
.section-12 {
    padding-bottom:100px;
}
.section-12 .section-title{
    max-width: 610px;
    width: 100%;
    margin-left: auto;
    margin-right:auto;
}
.feature-card {
    border-radius: 4px;
    background:  #F5B75C;
    padding:15% 25px 30px;
    width:100%;
    height: 100%;
    margin-bottom:50px;
    display: block;
}
.feature-cards {
    margin-top:50px;
}
.feature-cards > .col-md-4 {
    padding-left:20px;
    padding-right:20px;
    margin-bottom:50px;
}

.feature-card h5 {
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
    margin-top:20px;
}
.feature-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

/* section 12 */

/* section 13 */
.section-13 {
    padding-bottom: 200px;
}
.section-13 .section-title {
    margin-bottom: 30px;
}
.testimonial-card {
    padding: 0 85px;
}
.testimonial-card-body {
    border-radius: 12px;
    background: #FFF;
    padding:30px;
    text-align: center;
}
.testimonial-card-img {
    width:57px;
    height:57px;
    border:solid 1px #303030;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}
.testimonial-card-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border:solid #fff 2px;
}
.testimonial-card-body h5 {
    font-size: 14px;
    font-weight: 700;
    margin-top:10px;
}
.testi_divider {
    width: 34px;
    height: 1px;
    background: #000;
    margin: 20px auto;
}
.testimonial-card-body p {
    color: #303030;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    width:100%;
    max-width: 570px;
    margin: 0 auto 50px;
}
.carousel-indicators [data-bs-target] {
    width:9px;
    height:9px;
    border-radius: 50%;
    background: #FE6E63;
    border:none;
}
.carousel-indicators {
    bottom:20px;
}
.carousel-control-next-icon {
    background: url(/static/images/homepage/next_btn.svg) no-repeat;
    margin-right: -120px;
}
.carousel-control-prev-icon {
    background: url(/static/images/homepage/next_btn.svg) no-repeat;
    transform: rotate(180deg);
    margin-left: -120px;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    width:63px;
    height:63px;
}

/* section 13 */

/* footer  */

.bottom-margin-for-footer{
    padding-bottom:250px;
}

.footer {
    background:url(/static/images/homepage/footer_bg.png) no-repeat top center;
    background-size: cover;
    padding-top:170px;
    position: relative;
    margin-top:-143px;
}
.footer:before {
    content: "";
    background: url(/static/images/homepage/footer_left.png) no-repeat;
    background-size: contain;
    width: 331px;
    height: 365px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
}
.footer:after {
    content: "";
    background: url(/static/images/homepage/footer_right.png) no-repeat;
    background-size: contain;
    width: 386px;
    height: 300px;
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
}
.footer-content {
    position: relative;
    z-index: 10;
}

.footer-menu {
    list-style: none;
    margin-bottom:200px;
    padding-left: 0;
}
.footer-menu li {
    margin-bottom:5px;
}
.footer-menu li a {
    color:#fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 37px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu li a[data-target="privacy"] {
    /* font-size: 24px;
    font-weight: 700;
    text-transform: uppercase; */
    font-size: 24px;
    color: #FED777;
}

.hp-learn-more{
    transition: all 0.3s ease;
    /* text-decoration: none; */
}

.hp-learn-more:hover{
    color: #fff;
    opacity: 0.8;
}

.privacy-sep{
    width:30px;
    height:1px;
    background:#fff;
    margin-top:14px;
    margin-bottom:14px;
}

.footer-menu li a:hover {
    color:#fed777;
}

.social-icons {
    list-style:none;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding-left: 0;
}
.social-icons li {
    display: inline-block;
    transition: all 0.4s ease;
}

.social-icons li:hover {
    opacity:0.6;
}


.copyright {
    text-align: center;
}
.copyright p {
    color: #C3CDF9;
    font-size: 17px;
    font-weight: 500;
    line-height: 37px;
}

/* footer  */

/* About page  */

.page-banner {
    background: #B7EBF0 url(/static/images/homepage/page_banner.svg) no-repeat top center;
    background-size: cover;
    min-height: 205px;
}

.page-banner h1 {
    margin-top: 130px;
    margin-bottom: 20px;
    font-size: 47px;
    font-weight: 700;
}

.page {
    padding-top:90px;
    padding-bottom: 90px;
    min-height: 100vh;
    margin-bottom: 5rem;
}
.page h1 {
    font-size: 37px;
    font-weight: 700;
}
.page h2 {
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
    position: relative;
}
.page h2 span {
    width: 22px;
    height: 5px;
    background-color: #FED777;
    display: block;
    margin-top: 10px;
}
.page p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom:70px;
}

.gallery-img {
    transition: transform .9s; /* Animation */
}

.gallery-img:hover{
    transform: scale(1.04);
}

.page .img-fluid.float-start {
    margin-right:65px;
    margin-bottom:70px;
}
.page .img-fluid.float-end {
    margin-left:65px;
    margin-bottom:70px;
}
.special_about_title {
    max-width: 640px;
    width: 100%;
}
.special_about_title h1 {
    font-size: 77px;
    font-weight: 700;
    line-height: 70px;
    width: 100%;
    max-width: 470px;
    position: relative;
}
.special_about_title h1 span {
    width: 108px;
    height: 5px;
    background-color: #FED777;
    display: block;
    margin-top: 30px;
    margin-bottom: 20px;
}
.about_content_style {
    background: url(/static/images/homepage/subtract.svg) no-repeat top center;
    background-size: 250px;
    padding-top: 100px;
    padding-bottom: 100px;
}
.about_content_style img {
    box-shadow: #43413D 10px 10px 0px 1px;
}
.about_content_style p {
    max-width: 374px;
    width: 100%;
}

.page_social_links h5{
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    border-bottom:solid 1px #808080;
    width: 100%;
    max-width: 233px;
    padding-bottom: 10px;
    color: #000;
    margin-bottom: 0;
}
.page_social_links ul {
    list-style: none;
    margin-top: 0px;
    padding: 0;
    width: 100%;
    max-width: 233px;
}
.page_social_links ul li a {
    display: block;
    border-bottom:solid 1px #808080;
    padding: 10px 0;
    color: #3F3F3F;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-decoration: none !important;
    position: relative;
}
.page_social_links ul li a:hover {
    color: #000;
}
.page_social_links ul li a:after {
    content: "";
    background: url(/static/images/homepage/external.svg) no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -8px;
}


.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* .desktop {
    display: block !important;
} */
.mobile {
    display: none !important;
}

/* .desktop-992 {
    display: block !important;
} */
.mobile-992 {
    display: none !important;
}

.grecaptcha-badge {
    visibility: hidden;
}

.modal-close {
    width: 40px;
    height: 40px;
    padding: 10px;
    position: absolute;
    cursor: pointer;
    top: -6px;
    right: -7px;
    z-index: 100;
}

.modal-close:hover {
    opacity: 0.8;
}

.modal-content {
    padding: 10px;
}

.modal-left-bg, .modal-right-bg {
    z-index: 100;
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
}

.modal-right-bg {
    right: 0;
    background-image: url('/static/images/background/modal-right-bg.svg');
    width: 160px;
    height: 203px;
}

.modal-left-bg {
    background-image: url('/static/images/background/modal-left-bg.svg');
    width: 240px;
    height: 294px;
    left: 0;
}

#assignmentsVideoModal .modal-close {
    top: -6px!important;
    right: -7px!important;
    width: 32px!important;
    height: 32px!important;
}

@keyframes heartbit {
    0%   {transform: scale(.9) translate(-55%, -55%);}
    100% {transform: scale(1.0) translate(-50%, -50%);}
}

.assignments-video-cta:hover, .b2c-video-cta:hover {
    cursor: pointer;
    opacity: 0.8;
}

.play-btn-big {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px!important;
    height: 120px!important;
    z-index: 10;
    animation: heartbit 0.7s alternate infinite ease-in;
}

.contact-us {
    width: 100%;
    max-width: 437px;
}

.contact-form-title{
    display: inline-block;
    text-align: left;
    margin-top: 8px;
    font-size: 15px;
    color: #545454;
}

.contact-us .dark-blue-button {
    width: 209px;
    height: 53px;
    line-height: 30px;
}

.red-button, .red-button-outline {
	background-color:#FE6E63;
    opacity: 1;
	border:1px solid #FE6E63;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:17px;
	padding: 0.75rem 2rem 0.75rem 2rem;
	text-decoration:none;
    user-select: none;
    white-space: nowrap;
    min-width: 150px;
    transition: all 0.3s ease-out;

}

.red-button:hover, .red-button-outline:hover {
	background-color:#ff8e86;
    opacity: 1.1;
    color:#ffffff;
}

.red-button.disabled, .red-button:hover.disabled, .red-button:active.disabled {
    background-color:#FE6E63;
    opacity: 0.8;
    text-shadow:none;
    cursor: not-allowed;
}

.red-button-outline {
    background-color: white;
    color: #FE6E63;
}

.dbb-noheight{
    height:inherit!important;
    line-height:inherit!important;
}

.contact-us input, .contact-us textarea, .contact-us input:focus, .contact-us textarea:focus {
    background: #FFFFFF;
    border: 2px solid #354896!important;
    border-radius: 0!important;
    outline: 0;
    padding: 0.5rem 1rem 0.5rem 1rem;
    box-shadow: none!important;
}

.contact-us ::placeholder {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #ABABAB;
}
.contact-us input {
    height: 43px;
}

.contact-us input:not(:focus):not(:placeholder-shown):invalid, .contact-us textarea:not(:focus):not(:placeholder-shown):invalid {
    border: 2px solid #FE6E63;
    border-radius: 0;
}

.contact-us .dark-blue-button {
    width: 209px;
    height: 53px;
    line-height: 30px;
}

.required-field {
    position: absolute;
    top: 20px;
    right: -20px;
    font-weight: 400;
    font-size: 28px;
    line-height: 22px;
    color: #FE6E63;
}

.assignments-vid-wrapper {
    aspect-ratio: 1/0.565;
}

.edu-vid-wrapper{
    aspect-ratio: 1/0.625;
    padding: 0 10px;
}

.assignments-vid, .edu-vid {
    width:100%;
    height: 100%;
}

.dark-blue-button {
    font-family: 'Lato';
	background-color:#354896;
    opacity: 1;
	border:none;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:17px;
	padding: 0.75rem 2rem 0.75rem 2rem;
    border-radius: 4px;
	text-decoration:none;
    user-select: none;
    white-space: nowrap;
    transition: all 0.3s ease-out;
}
.dark-blue-button:hover {
	background-color:#3350c5;
    opacity: 1.1;
    color:#ffffff;
}
.dark-blue-button:active {
	position:relative;
	top:1px;
}

.dark-blue-button.disabled, .dark-blue-button:hover.disabled, .dark-blue-button:active.disabled {
	background-color:#354896;
    /* border:1px solid #354896; */
    text-shadow:none;
    position: auto;
    top:0px;
    cursor: not-allowed;
    opacity: 0.4;
}

.yellow-button {
	background-color:#FED777;
    opacity: 1;
	border:none;
	display:inline-block;
	cursor:pointer;
	color:#354896;
	font-size:17px;
	padding: 0.75rem 2rem 0.75rem 2rem;
    border-radius: 4px;
	text-decoration:none;
    user-select: none;
    white-space: nowrap;
    transition: all 0.3s ease-out;
}
.yellow-button:hover {
	background-color:#f7d06b;
    opacity: 1.1;
    color:#354896;
}
.yellow-button:active {
	position:relative;
	top:1px;
}

.yellow-button.disabled, .yellow-button:hover.disabled, .yellow-button:active.disabled {
	background-color:#FED777;
    border:1px solid #FED777;
    text-shadow:none;
    position: auto;
    top:0px;
    cursor: not-allowed;
    opacity: 0.4;
}

.grow {
    transition: all .2s ease-in-out;
}

.grow:hover {
    transform: scale(1.1);
}

/* Carousel */

.red-circle-button {
    background-color: #FE6E63;
    color: white;
    height: 64px;
    width: 64px;
    margin: 1rem;
    padding: 32px;
    border-radius: 100%;
    font-size: 36px;
    border: 0 !important;
    /* outline: 0 !important; */
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1!important;
    transition: all 0.2s ease-in-out;
  }

  .chevron-left[disabled], .chevron-right[disabled], .chevron-left[disabled]:hover, .chevron-right[disabled]:hover {
    opacity: 0.6!important;
    cursor: not-allowed;
  }

  .chevron-left:hover, .chevron-right:hover {
    opacity: 0.8!important;
  }

  .chevron-left {
    background-image: url('/static/images/icons/chevron-left.svg');
    background-position: 13px center;
    background-size: 30px 30px;
  }

  .chevron-right {
    background-image: url('/static/images/icons/chevron-right.svg');
    background-position: 17px center;
    background-size: 30px 30px;
  }

  .chev-mobile-right{
    background-image: url('/static/images/icons/mobile-chev-right.svg')!important;
    background-position: 12px center!important;
    background-size:inherit;
  }

  .chev-mobile-left{
    background-image: url('/static/images/icons/mobile-chev-left.svg')!important;
    background-position: 8px center!important;
    background-size:inherit;
  }

  .carousel-nav-btn {
    position: absolute;
    z-index: 1000;
    width: 38px;
    height: 80px;
    background-color: rgb(86, 178, 198, 0.8);
    background-repeat: no-repeat;
    background-position: center;
    /* transition: all 1s ease-in-out !important; */
    border: 0 !important;
    outline: 0 !important;
    cursor: pointer;
  }

  .carousel-nav-btn[disabled] {
    display: none !important;
  }

  .carousel-nav-btn.chevron-right {
    right: 0;
    border-radius:8px 0px 0px 8px;
    height:65px;
  }

  .carousel-nav-btn.chevron-left {
    left: 0;
    border-radius: 0px 8px 8px 0px;
    height:65px;

  }

  .quote-box {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    position: relative;
}

.quote-box .quote-box-arrow {
    background-color: white;
    transform: rotate(45deg);
    position: absolute;
    width: 35px;
    height: 35px;
    left: -4px;
    top: 22px;
    z-index: -1;
}

.quote-box .quote-box-arrow-right {
    background-color: white;
    transform: rotate(45deg);
    position: absolute;
    width: 35px;
    height: 35px;
    right: -10px;
    top: 22px;
    z-index: -1;
}

#testamonial-carousel > .carousel-indicators button {
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background-color: #FE6E63;
}

#testamonial-carousel .quote-box {
    width: 98%;
    height: 400px;
    padding-left: 5vw;
    padding-right: 5vw;
    margin-left: 1%;
}

#testamonial-carousel .quote-box {
    height: 350px;
}

#testamonial-carousel .profile-image {
    width: 51px;
    height: 51px;
}

#testamonial-carousel .profile-name {
    margin-top: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
}

#testamonial-carousel .seperator {
    display: inline-block;
    margin: 15px;
    width: 34px;
    height: 0px;
    border-bottom: 1px solid black;
}

#testamonial-carousel p{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #303030;
}

.assignment-bg {
    background-image: url('/static/images/homepage/section_4.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

  /* Carousel */

@media (max-width: 992px) {
    .desktop-992 {
        display: none !important;
    }
    .mobile-992 {
        display: block !important;
    }
    .navbar-collapse {
        position: absolute;
        top: 0px;
        right: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        width: 100%;
        background:transparent;
        height: 100vh;
    }
    .navbar-collapse::before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0;
        transition: all 0.3s ease-in-out;
        transition-delay: -0.3s;
    }
    .navbar-collapse.show::before {
        opacity: 1;
    }
    .navbar-collapse.collapsing {
        background: rgba(0, 0, 0, 0.7);
        height: 100vh;
        /* -webkit-transition: right 0.3s ease;
        -o-transition: right 0.3s ease;
        -moz-transition: right 0.3s ease;
        transition: right 0.3s ease; */
        right: -100%;
    }
    .navbar-collapse.show {
        right: 0;
        /* -webkit-transition: right 0.3s ease-in;
        -o-transition: right 0.3s ease-in;
        -moz-transition: right 0.3s ease-in;
        transition: right 0.3s ease-in; */
    }
    .nav-bar-inner-mobile {
        background: #fff;
        position: absolute;
        right:-100%;
        top:0;
        width: 80%;
        height: 100%;
        padding: 45px;
        z-index: 2;
    }
    .navbar-collapse.show .nav-bar-inner-mobile {
        right:0;
        -webkit-transition: right 0.3s ease;
        -o-transition: right 0.3s ease;
        -moz-transition: right 0.3s ease;
        transition: right 0.3s ease;
        transition-delay: 0.1s;
    }
    .storywizard-nav.navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        font-size: 20px;
        margin-bottom:10px;
    }
    .storywizard-nav.navbar-light .side-nav .nav-item:hover .nav-link::before, .storywizard-nav.navbar-light .navbar-nav .nav-item:hover .nav-link::before,
    .storywizard-nav.navbar-light .side-nav .nav-item .nav-link.selected::before, .storywizard-nav.navbar-light .navbar-nav .nav-item .nav-link.selected::before {
        width: 0%;
    }
    .navbar-nav .seperator {
        width: 72px;
        height: 3px;
        background-color: #56A5B6;
        margin: 20px 0px;
        display: block;
    }
    .side-nav a {
        width: 135px;
    }
    .side-nav a.simple_link {
        color:#000 !important;
        font-size: 20px !important;
        font-weight: 700 !important;
    }
    .side-nav a.btn {
        margin-top:20px;
        color:#fff;
    }
    .dropdown-menu li a img {
        display: none;
    }
    .dropdown-menu li a {
        color: #727272;
        font-size: 18px;
    }
    li.nav-item .dropdown-menu {
        box-shadow: none;
        margin-top:0;
        padding: 0;
    }

    h1.hero-title {
        margin-top:60px;
        font-size: 38px;
    }

    .video_link {
        margin-top: 6px;
    }

    .student-sign-up {
        background: transparent;
        border: none;
        padding: 0;
        color: #3F9EB2;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
        margin-bottom: 15px;
    }

    .combo-box .select2-selection__choice {
        font-size: 14px;
        padding: 4px 20px 4px 4px !important;
    }

    .combo-box .select2-selection__choice__remove {
        top: 4px !important;
    }

    .school-profile-form .select2-selection--multiple {
        padding: 10px 10px !important;
    }
}
@media (max-width:767px) {
    .desktop {
        display: none !important;
    }
    .mobile {
        display: block !important;
    }
    .navbar-toggler  {
        top:24px;
    }
    section {
        overflow: hidden;
    }
    .storywizard-nav {
        height:65px;
    }
    .navbar-brand {
        width:116px;
        padding-top:3px;
        padding-left:0px;
    }
    h1 {
        font-size: 29px;
        line-height: 34px;
    }
    h2 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom:30px;
    }
    p {
        font-size:20px;
        line-height: 26px;
    }


    h1.hero-title {
        margin-top:40px;
        font-size: 33px;
        line-height: 36px;
        text-align: center;
    }

    .hero-section .section-subtitle {
        text-align: center;
    }

    .hero-image {
        margin-top:10px;
    }
    .text_line:after {
        bottom:-3px;
        height: 6px;
    }
    .section-2-card {
        text-align: center;
        margin-bottom:40px;
    }
    .section-2-card img {
        object-position: center;
    }
    .section-2-cards {
        margin-top:40px;
    }
    section .btn.btn-colorful span {
        padding: 15px 50px;
        font-size: 19px;
    }
    .learn-more-wrapper {
        margin-top:30px;
    }
    .section-2 {
        padding-bottom:130px;
    }
    .section-center-heading {
        margin-top:70px;
    }
    .section-3-card:nth-child(1)::after {
        height: 1px;
        width: 346px;
        top: inherit;
        bottom:0;
        right:inherit;
        left:50%;
        transform: translateX(-50%);
    }
    .section-3-card {
        padding-top:40px;
        padding-bottom:40px;
    }
    .section-3 .section-subtitle {
        margin-bottom:0;
    }
    .section-3 {
        padding-bottom:0px;
    }

    .section-4 {
        text-align: center;
        padding-top:70px;
    }

    .container {
        max-width: 750px;
    }

    .play-btn img {
        width: 100%;
    }
    .play-btn {
        margin-top: -7px;
        margin-left: 0px;
        width: 116px;
        height: 117px;
    }
    .section-4-img {
        margin-top:20px;
    }
    .section-4 .btn.btn-colorful {
        margin-top:20px;
        margin-bottom:20px;
    }
    .section-4 .video_link {
        margin: 0 auto 40px;
    }

    .section-5 {
        text-align: center;
        padding-top:70px;
        padding-bottom:30px;
    }
    .section-5-img {
        margin:30px auto;
    }
    .section-5 .btn.btn-colorful {
        margin-top:0px;
        margin-bottom:30px;
    }
    .section-5 .video_link {
        margin: 0 auto 40px;
    }

    .section-5a {
        text-align: center;
        padding-top:70px;
        padding-bottom:30px;
    }
    .section-5a-img {
        margin:30px auto;
    }
    .section-5a .btn.btn-colorful {
        margin-top:0px;
        margin-bottom:30px;
    }

    .section-6.bg-yellow {
        background-image: url(/static/images/homepage/section_6_mobile.svg);
    }
    .section-6 {
        text-align: center;
        padding-bottom: 50px;
    }
    .section-6 .text_line:after {
        background-color: #FFF7E2;
    }




    .section-6-text h3 span {
        margin: 10px auto 0;
    }
    .section-6-content {
        margin-top:20px;
    }
    .kids-img {
        max-width: 144px;
        margin: 20px 15px;
    }
    .section_6_list li img {
        display: block;
        margin: 0 auto;
    }
    .section_6_list {
        margin-top:50px;
    }

    .section-7 {
        padding-bottom: 50px;
        text-align: center;
    }
    .section-7 .section-title {
        margin-top:30px;
    }

    .section-7 .text_line::after {
        background-color:#354896;
    }
    .section-7-card {
        padding: 0 30px;
    }
    .section-7-card h4 span {
        display: block;
        margin: 10px auto 0;
    }
    .section-7-cards {
        margin-top:30px;
    }
    .partner-images {
        display: block;
    }
    .partner-images img {
        max-width: 80%;
        margin: 0 auto 40px;
        display: block;
    }
    .partner-images img:nth-child(1) {
        width:222px;
    }
    .partner-images img:nth-child(2) {
        width: 101px;
    }
    .partner-images img:nth-child(3) {
        width: 115px;
    }
    .partner-wrap h5 {
        color:#6B6B6B;
    }
    .partner-wrap {
        margin-top:40px;
    }

    .section-8 {
        padding-top: 0px;
        padding-bottom: 50px;
    }

    .subscribe-form {
        background-image: url(/static/images/homepage/form_mobile.svg);
        padding: 40px 30px 30px;
        background-position: center left 15%;
        background-size: 100%;
    }
    .custom-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-content .btn {
        width: 100%;
        margin: 12px auto;
    }
    .form-content .form-control {
        border-color: #fff;
    }
    .section-8 .text_line::after {
        background-color: #354896;
    }

    .section-9 {
        padding-bottom: 50px;
    }
    .grid-text {
        background-image: url(/static/images/homepage/qoute.svg);
        background-repeat: no-repeat;
        background-position: top 15px left 30px;
        padding: 60px 20px 50px;
        text-align: center;
    }
    .grid-item {
        border-radius: 10px;
        margin-bottom: 40px;
    }

    .section-10 {
        padding-top:70px;
        padding-bottom: 70px;
    }
    .section-10 .section-title {
        font-size: 24px;
        text-align: center;
    }
    .section-10 .section-title br {
        display: none;
    }
    .section-10-img {
        margin-top:50px;
    }

    .section-13 {
        padding-bottom: 50px;
    }

    .section-11 {
        padding-bottom: 0;
    }
    .section-11.bg-light-green {
        background-image: url(/static/images/homepage/bg_team_mobile.svg);
        background-size: 100%;
        background-position: top 30px center;
        background-color: #F3FDFF;

    }
    .plane-1, .plane-2 {
        display: none;
    }
    .team-card {
        margin-bottom:200px;
    }

    .footer {
        background-image: url(/static/images/homepage/footerbg.svg);
        padding-bottom: 150px;
        padding-top: 130px;
    }
    .footer:before,
    .footer:after {
        display: none;
    }
    .footer-menu {
        margin-bottom: 50px;
    }
    /* .social-icons {
        margin-bottom: 80px;
    } */
    .text-section,
    .section-6-text {
        margin-left: auto;
        margin-right: auto;
    }
    .special_about_title h1 {
        font-size: 52px;
        line-height: 49px;
    }
    .special_about_title p {
        font-size: 20px;
        font-weight: 500;
        line-height: 27px;
    }
    .about_content_style {
        background: transparent;
        padding-top:50px;
        padding-bottom: 0px;
    }
    .about_content_style img {
        margin-bottom:30px;
    }
    .special_page {
        background: url(/static/images/homepage/subtract.svg) no-repeat top 500px right -50px;
        background-size:160px
    }
    .page {
        padding-top: 66px;
        overflow: visible !important;
    }
    .page_social_links .col {
        padding:0;
    }
    .page_social_links h5,
    .page_social_links ul {
        max-width: 100%;
    }

    .quote-box {
        background-color: white;
        border-radius: 12px;
        padding: 25px;
        position: relative;
    }

    .quote-box .quote-box-arrow {
        background-color: white;
        transform: rotate(45deg);
        position: absolute;
        width: 35px;
        height: 35px;
        left: -4px;
        top: 22px;
        z-index: -1;
    }

    .quote-box .quote-box-arrow-right {
        background-color: white;
        transform: rotate(45deg);
        position: absolute;
        width: 35px;
        height: 35px;
        right: -10px;
        top: 22px;
        z-index: -1;
    }

    .animation-container {
        min-height: 65vw;
    }
}
@media (max-width:450px) {
    .subscribe-form {
        background-size: contain;
    }

    .animation-container {
        min-height: 65vw;
    }
}

.machine-static {
    background: url(/static/images/homepage/machine_atlas_static_v2.png) no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}

@media (max-width:400px) {
    .is-ios #animation_container {
        display: none!important;
    }

    .is-ios .machine-static {
        display: block;
    }

    .gesa-winner-logo {
        width: 90%;
        height: auto;
    }
}