@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&family=Heebo:wght@200;300&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,800;1,400;1,500;1,600;1,700&display=swap');

@font-face {
    font-family: bookerly;
    src: url(/static/fonts/bookerly/Bookerly.ttf);
}

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

html {
    scroll-behavior: auto !important;
}

body {
    font-family: 'Lato', sans-serif !important;
    background-color: #B7EBF0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr!important;
}

main[data-dir=rtl] .partial-rtl {
    direction: rtl;
}

.mvh-50 {
    min-height: 50vh;
}

.mvh-75 {
    min-height: 75vh;
}

.mvh-100 {
    min-height: 100vh;
}

.h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: unset;
}

/**** 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 ****/
.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;
}

.top-stripe.yellow-stripe {
    background-color: #FED777;
}

.top-stripe.yellow-stripe p {
    max-width: 100%!important;
    color: #000!important;
    font-weight: normal!important;
}

.footer-bg {
    display: none;
}

.view-as-icon {
    width: 34px;
    height: 13px;
}

#storyAuthor{
    text-transform: capitalize;
}

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

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

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

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


.footer-nav {
    position: relative;
    top: 0;
}

main {
    min-height: 100vh;
}

.mx-6 {
    margin-left: 4rem;
    margin-right: 4rem;
}

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

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

.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:active {
    background-color: rgba(255, 255, 255, 0.20);
}

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

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

.code-input {
    background: #FFF;
    border: 1px solid #D2DFE8;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    padding: 0.75rem 1rem 0.75rem 1rem;
}

.code-input::placeholder {
    color: #99AEC1;
    font-style: italic;
}

.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;
}

.edu-modal {
    color: var(--sw-dark-blue);
}

.edu-frame-background {
    background: #56B2C6;
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    right: -5px;
    bottom: -5px;
    width: 100%;
    height: 100%;
}

#paymentSuccessModal .seperator, #paidFeatureModal .seperator {
    border-top: 1px solid #000;
    width: 38px;
  }

#paidFeatureMessage {
    width: 100%;
    max-width: 330px;
}

#paidFeatureModal .underline {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 118px;
    border-bottom: 3px solid #F5B75C;
}

.colorful-background {
    z-index: -98;
    position: absolute;
    height: 27vh;
    width: 100%
}

.colorful-bg-single-wave {
    z-index: -100;
    background-image: url('/static/images/background/bg-single-wave.svg');
    background-size: 140vw 77vh;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-position-x: -2vw;
    background-position-y: -18vh;
}

.colorful-bg-waves {
    z-index: -1;
    background-image: url('/static/images/background/bg-waves.svg');
    background-size: 3047px 2000px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 200vh;
    background-position-x: -8vw;
    background-position-y: -29vh;
}

.colorful-background .colorful-bg-blue {
    background-image: url('/static/images/background/bg-blue.svg');
    background-size: 215vw 129vh;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-position-x: -50vw;
}

.colorful-background .colorful-bg-red {
    position: absolute;
    right: 0;
    bottom: 38vh;
    width: 15vw;
}

.colorful-background .colorful-bg-yellow {
    position: absolute;
    left: 0;
    bottom: 29vh;
    width: 15vw;
}

.colorful-background .colorful-bg-white-smoke {
    position: absolute;
    left: 1vh;
    bottom: 41vh;
    width: 10vw;
}

.colorful-background .colorful-bg-yellow-books {
    position: absolute;
    right: 6vw;
    bottom: 40vh;
    width: 17vw;
}

.colorful-background .colorful-bg-red-blue-books {
    position: absolute;
    left: 4%;
    bottom: 30vh;
    width: 21vw;
}

.navbar-brand{
    display: block;
    position: relative;
}

.rtl .navbar-brand{
    right: unset;
    left: var(--bs-navbar-brand-margin-end);
}

.navbar-brand img {
    height: 45px;
    width: 137px;
}

.navbar-nav {
    --bs-navbar-nav-link-padding-x: 0.4rem!important;
    padding-inline-start: 0px;
}

.beta-badge{
    position: absolute;
    width: 40px;
    height: 21px;
    left: 157px;
    bottom: -2px;
    z-index: 20;
    background-image: url(/static/images/beta.svg);
    background-repeat: no-repeat;
}

.black-button {
    background-color: #000;
    border:none;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:16px;
	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;
}

.black-button:hover {
    background-color: #000;
    color: #fff;
    opacity: 0.8;
}

.black-button:active {
    position: relative;
    top: 1px;
}

.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;
}

.dark-blue-text {
    color: #354896!important;
}

.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;
}

.turquoise-button {
    background-color: #3F9EB2;
    font-family: 'Lato';
    opacity: 1;
	border:none;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:17px;
	padding: 1rem 2rem 1rem 2rem;
    border-radius: 4px;
	text-decoration:none;
    user-select: none;
    white-space: nowrap;
    transition: all 0.3s ease-out;
}

.turquoise-button:hover {
	background-color:#3f9fb2cd;
    opacity: 1.1;
    color:#ffffff;
}

.turquoise-button.disabled, .turquoise-button:hover.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.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;
}

.white-red-button {
	background-color:#FFFFFF;
    opacity: 1;
	border:none;
	display:inline-block;
	cursor:pointer;
	color:#FE6E63;
	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;
}
.white-red-button:hover {
	background-color:#FFFFFF;
    opacity: 1.1;
    color:#FE6E63;
}
.white-red-button:active {
	position:relative;
	top:1px;
}

.white-red-button.disabled, .white-red-button:hover.disabled, .white-red-button:active.disabled {
	background-color:#e0dede;
    border:1px solid #e0dede;
    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;
}

.blue-button-outline, .blue-button {
    background-color: #166B82;
    opacity: 1;
	border:1px solid #01546B;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:17px;
	padding: 0.55rem 1.32rem 0.55rem 1.32rem;
	text-decoration:none;
    user-select: none;
    white-space: nowrap;
}

.blue-button-outline {
    background: #B7EBF0;
    color: #01546B;
}

.blue-button-outline:hover, .blue-button-outline:active {
    opacity: 0.8;
    color: #01546B;
}

.blue-button:hover {
    opacity: 0.9;
    color:#ffffff;
}
.blue-button:active {
	position:relative;
	top:1px;
}

.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;
}

.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 {
    opacity: 0.8;
}

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

.navbar a.simple_link {
    color: #4B9FB1 !important;
    font-size: 17px;
    font-weight: 500;
    /* margin-right:17px !important; */
    text-decoration: none;
    /* margin-top:2px;
    vertical-align: -3px; */
}

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

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

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

.dark-blue-link {
    color: #354896;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    text-decoration: underline;
    cursor: pointer;
}

.blue-link img {
    vertical-align: text-bottom;
}

.radio-button-icon {
    background: url('/static/images/icons/radio-button.svg') no-repeat;
    background-size: contain;
    background-position: top;
    min-width: 20px;
    min-height: 20px;
    display: inline-block;
}

.radio-button.active .radio-button-icon {
    background: url('/static/images/icons/radio-button-active.svg') no-repeat;
    background-size: contain;
    background-position: top;
}

.radio-button {
    outline: none;
    display: flex;
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
}

.radio-button:hover {
    cursor: pointer;
    opacity: 0.9;
}

/* Language Picker */

.visible-hebrew {
    display: none !important;
}

.lang-hebrew .visible-hebrew {
    display: flex !important;
}

.language-bar {
    display: flex;
    flex-direction: row;
    gap: 10px;
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 1000;
    /* width: 100%; */
}

.language-bar .nikud-toggle {
    color: #4A8192;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-decoration-line: underline;
}

.language-bar .nikud-toggle:not(.only-hebrew)::after {
    width: 1px;
    height: 32px;
    background-color: #4A8192;
    content: '';
    display: inline-block;
    margin-left: 10px;
}



.blue-select {
    width: unset!important;
    border-radius: 120px;
    color: #3B787E !important;
    font-size: 14px;
    line-height: 14px;
    background-color: #D7F4F7!important;
    --bs-btn-hover-bg: #D7F4F7;
    --bs-btn-padding-y: 2px;
    --bs-btn-padding-x: 10px;
    border: 0;
}

button.blue-select, button.blue-select:focus-visible, button.blue-select:focus {
    background-color: #D7F4F7;
    border-radius: 60px;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #3B787E;
}

button.blue-select:hover {
    opacity: 0.9;
    color: #3B787E !important;
}


/* replace with arrow without fill */
.blue-select .dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 5px;
    border: none;
    color: #3B787E;
    background-image: url('/static/images/icons/arrow-down.svg');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    margin-top: 3px;
    margin-left: .255em;
    margin-right: .255em;
}

.blue-select .dropdown-menu {
    padding: 0px;
    text-align: start;
}

.blue-select .filter-option {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.blue-select .dropdown-item {
    color: #3B787E;
    background-color: #FAFAFA;
    padding: 8px 10px;
}

.blue-select .dropdown-item img {
    height: 12px;
}

.blue-select .dropdown-item.active{
    background-color: #E2E8E9;
    color: #3B787E;
}

.animated-toggle {
    position: relative;
    width: 30px;
    height: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.animated-toggle label {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 15px;
    border-radius: 30px;
    background: linear-gradient(to bottom, #88D0D7, #88D0D7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.animated-toggle label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.animated-toggle input[type="checkbox"]:checked + label {
    background: linear-gradient(to bottom, #3588A3, #3588A3);
}

.animated-toggle input[type="checkbox"]:checked + label:after {
    transform: translateX(15px);
}

.animated-toggle label:hover {
    background: linear-gradient(to bottom, #88D0D7, #88D0D7);
}

.animated-toggle label:hover:after {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.animated-toggle-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 15px;
}

.rtl .animated-toggle-checkbox {
    left: unset;
    right: 0;
}

.rtl .animated-toggle label {
    left: unset;
    right: 0;
}

.rtl .animated-toggle label:after {
    left: unset;
    right: 2px;
}

.rtl .animated-toggle input[type="checkbox"]:checked + label:after {
    transform: translateX(-15px);
}

.public-story-toggle-label {
    font-family: 'Lato';
    font-size: 16px;
    line-height: 16px;
    color: #3A3A3A;
}

.language-picker {
    width: unset!important;
    /* margin: 10px; */
}

.language-bar.vertical-language-bar {
    top: -30px!important;
    left: 50%!important;
    right: unset;
    width: 100%;
    justify-content: center;
    transform: translate(-50%,-50%)!important;
}

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

@media (max-width: 991px) {

    .navbar-nav .blue-link {
        font-weight: 400;
        font-size: 20px;
        line-height: 24px;
        color: #01546B;
        padding-bottom: 1em;
    }

    .navbar a.simple_link {
        color: #000 !important;
        font-size: 20px !important;
        font-weight: 600 !important;
    }

    .offcanvas .seperator {
        width: 36px;
        border-top: 1px solid #01546B;
    }

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

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

    .offcanvas.colorful-bg {
        background: white url('/static/images/background/off-canvas-bg.svg');
        background-position: bottom;
        background-size: 266px;
        background-repeat: no-repeat;
        --bs-offcanvas-width: 266px;
    }

}

.logout-icon {
    vertical-align: baseline;
}

.wizard {
    position: relative;
    width: 217px;
}

.wizard-progress {
    width: 28px;
    height: 28px;
    background-color: #9AD1D7;
    color: #fff;
    border-radius: 14px;
    cursor: cursor;
    user-select: none;
    font-size: 16px;
    line-height: 27px;
}
.wizard-progress.current {
    background-color: #FECB5F;
}

.wizard-progress.completed {
    background-color: #FECB5F;
    border: none;
    cursor: pointer;
}

.wizard-line {
    width: 100%;
    height: 3px;
    background-color: #8EC1C6;
    position: absolute;
    top: 13px;
    z-index: -1;
}

#stories-title {
    text-transform: capitalize;
}

.card-img-top .progress {
    width: 244px;
}

.line-progress {
    width: 100%;
    height: 9px;
    background-color: #E8EBFA;
    position: relative;
}

.line-progress .line-progress-bar {
    background-color: #354896;
    position: absolute;
    height: 100%;
    width: 0;
    transition: width ease-in 1s;
}

.progress {
    height: 42px;
    border: 3px solid #01546B;
    border-radius: 50px;
    background: transparent;
}

.progress-bar {
    --width: 0.01;
    --rel-width: calc(var(--width) - 0.88);
    width: calc(var(--width) * 100%);
    background-color: #01546B;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: min(calc(var(--rel-width) * 5000px), 50px);
    border-bottom-right-radius: min(calc(var(--rel-width) * 5000px), 50px);
    margin: 4px;
}

main.rtl .progress-bar {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: min(calc(var(--rel-width) * 5000px), 50px);
    border-bottom-left-radius: min(calc(var(--rel-width) * 5000px), 50px);
}

.progress-bar-over-85pct {
    border-radius: 50px !important;
}

.assignment-card .progress-bar {
    background-color: #FECB5F!important;
}

.assignment-card .progress {
    border: 3px solid #354896!important;
    position: relative;
}

.assignment-card .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Lato';
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #354896;
    width: max-content;
}

/* FOOTER */

.footer-basic {
    margin-top: 15vh;
    color: rgba(0, 0, 0, 0.55);
  }

  .footer-basic ul {
    padding:0;
    list-style: none;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    margin-bottom:0;
  }

  .footer-basic li {
    padding:8px 0;
  }

  .footer-basic ul a {
    color: #FFFFFF;
    text-decoration:none;
  }

  .footer-basic ul a:hover {
    opacity:0.9;
  }

  .footer-basic .social {
    padding-bottom:10px;
  }

  .footer-basic .social > a {
    font-size:24px;
    display:inline-block;
    margin-right: 18px;
  }

  .footer-basic .social > a:hover {
    opacity:0.8;
  }

.footer-basic .seperator {
    width: 42px;
    height: 0px;
    border-bottom: 1px solid #FAFAFA;
}

.stay-in-touch {
    margin-left: 9vw;
}

.stay-in-touch-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 34px;
}

  /* END FOOTER */

  .inline-helptip {
    position:relative;
    margin-top: 12px;
  }

  .inline-helptip .inline-helptip-body {
    background-color: #29b5cc;
    width: 100%;
    color: white;
    padding: 20px;
    margin: auto;
    /* font-size: 20px; */
    line-height: 23px;
    /* font-weight: 600; */
}

.inline-helptip .inline-helptip-arrow {
    background-color: #29b5cc;
    transform: rotate(45deg);
    position: absolute;
    width: 35px;
    height: 35px;
    top: -4px;
    left: 50px;
    z-index: -10;
}

.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;
}

.rtl .hide-on-rtl {
    display: none;
}

.arrow-helptip {
    z-index: -1;
    font-family: "Mouse Memoirs";
    position: absolute;
    color: black;
    z-index: 2;
    direction: ltr;
}

.arrow-helptip-body {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    text-align: center;
    user-select: none;
}

.arrow-helptip-body span {
    display: flex;
    justify-content: flex-start;
    width: 130px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.03em;
}

.arrow-helptip-pointer {
    background-image: url('/static/images/icons/tip-arrow.svg');
    width: 62px;
    height: 78px;
}

.arrow-helptip-bulb {
    background-image: url('/static/images/icons/tip-bulb.svg');
    background-position: center;
    background-repeat: no-repeat;
    width: 45px;
    height: 45px;
}

.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;
}

.blue-tooltip {
    --bs-tooltip-bg: #3F9EB2;
    --bs-tooltip-color: white;
    --bs-tooltip-padding-x: 2rem;
    --bs-tooltip-padding-y: 1rem;
    --bs-tooltip-max-width: 50vw;
    --bs-tooltip-font-size: 16px;
    --bs-tooltip-arrow-width: 28px;
    --bs-tooltip-arrow-height: 14px;
  }

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

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

  .credits-icon {
    width: 17px;
    height: 18px;
    background-image: url('/static/images/icons/credits-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
  }

  .more-assignments-icon {
    width: 20px;
    height: 18px;
    background-image: url('/static/images/icons/more-assignments.svg');
    background-repeat: no-repeat;
    background-size: contain;
  }

  .assignment-gift-icon {
    width: 17px;
    height: 18px;
    background-image: url('/static/images/icons/assignment-gift-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
  }

  .plan-icon {
    width: 17px;
    height: 15px;
    background-image: url('/static/images/icons/plan-icon-dark-blue.svg');
    background-repeat: no-repeat;
    background-size: contain;
  }

  .offcanvas .plan-icon {
    background-image: url('/static/images/icons/plan-icon-trq.svg');
  }

  .outline-tooltip-body {
    color: #166B82;
    border: 1px solid #56B2C6;
    padding: 1rem;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .outline-tooltip-body .lowered {
    font-size: 12px;
    font-weight: 400;
  }

  .offcanvas .outline-tooltip-body {
    color: #3588A3!important;
  }

  .offcanvas .balance-panel .blue-link {
    color:#3588A3 !important;
}

  .outline-tooltip-body .blue-link {
    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;
}

  .rating-panel {
    display: flex;
    justify-items: center;
  }

  .rating-panel .star {
    cursor: pointer;
    background-image: url('/static/images/icons/gray-star.svg');
    background-repeat: no-repeat;
    height: 32px;
    width: 32px;
    margin: 10px;
  }

  .rating-panel .star.selected {
    background-image: url('/static/images/icons/golden-star.svg');
  }

  .rating-panel .star:hover {
    background-image: url('/static/images/icons/golden-star.svg');
  }

  .red-button .spinner-border {
    --bs-spinner-border-width: 2px;
    height: 20px;
    width: 20px;
  }

  .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: calc(-.5 * var(--bs-offcanvas-padding-y));
    margin-right: calc(-.5 * var(--bs-offcanvas-padding-x));
    margin-bottom: calc(-.5 * var(--bs-offcanvas-padding-y));
  }


  .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;

  }

  .select-box {
    border-radius: 4px;
    outline: none;
    border: 2px solid #354896 !important;
    height: 50px !important;
    padding: 10px!important;
  }

  .select-box .select2-selection__arrow {
    top: 10px !important;
    right: 20px !important;
  }
  .select-box b {
    border-width: 12px 10px 0 10px !important;
  }

  .home-button {
    background-color: #FE6E63;
    border-radius: 4px;
    font-size: 32px;
    color: white;
    width: 68px;
    height: 68px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
  }

  .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;
  }

  .red-bot {
    height: 101px;
    width: 68px;
  }

  .books-order-bg {
    width: 379px;
    height: 385px;
    margin-bottom: 6vh;
  }

  .order-book-cta {
    cursor: pointer;
  }

  .order-book-container {
    max-width: 600px !important;
  }

  .book-price {
    width: 310px;
    height: 100px;
  }

  #orderBookModal .language-picker {
    /* width: unset!important; */
    top: 0;
    position: relative
  }

  #orderBookModal .dark-blue-button {
    width: 310px;
  }

  #galleryIntroModal .gallery-intro-image {
    width: 100%;
  }

  #galleryIntroModal .modal-content {
    padding: 0!important;
  }

  #galleryIntroModal .modal-body {
    padding: 20px!important;
  }

  #galleryIntroMessage {
    max-width: 500px;
  }

  .en-only{
    color:#a5a5a5;
  }

  /* .next-step {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #767676;
  } */

  .black-link {
    cursor:pointer;
	font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #000000;
  }

  @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;
  }

  #assignmentsVideoModal .modal-close {
    top: -12px!important;
    right: -14px!important;
    width: 35px!important;
    height: 35px!important;
  }

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

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

  /******* Icons *******/

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

  .bi-chevron-right::before {
    background-image: url(/static/images/icons/chevron-right.svg);
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    width: 15px;
    height: 18px;
    content: "";
  }

  .bi-chevron-left::before {
    background-image: url(/static/images/icons/chevron-left.svg);
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    width: 15px;
    height: 18px;
    content: "";
  }

  .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:"";
}

  @media (min-width: 768px) {

    .container {
        max-width: 785px;
    }

    .footer-nav {
        padding-top: 30px;
    }

    .colorful-background .colorful-bg-red {
        position: absolute;
        right: 0;
        bottom: 41vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-yellow {
        position: absolute;
        left: 0;
        bottom: 28vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-white-smoke {
        position: absolute;
        left: 3vh;
        bottom: 35vh;
        width: 3vw;
    }

    .colorful-background .colorful-bg-yellow-books {
        position: absolute;
        right: 4vw;
        bottom: 42vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-red-blue-books {
        position: absolute;
        left: 4%;
        bottom: 30vh;
        width: 12vw;
    }

    .red-bot {
        height: 283px;
        width: 128px;
    }

    .quote-box .quote-box-arrow {
        top: 45px;
    }

    .quote-box .quote-box-arrow-right {
        top: 45px;
    }

    .modal-content {
        padding: 24px;
    }

    #assignmentsVideoModal .modal-close {
        top: -20px!important;
        right: -20px!important;
        width: 40px!important;
        height: 40px!important;
    }
}

@media (max-width: 991px) {
    .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;
    }
}

@media (min-width: 992px) {

    .navbar {
        background-color: #FFF;
        box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
        min-height: 85px;
    }


    .books-order-bg {
        position: absolute;
        z-index: 120;
        right: -250px;
        bottom: -115px;
        margin-bottom: unset;
    }

    .nav-link.selected {
        border-bottom: 3px solid #27B5CC;
        padding-left: unset!important;
        padding-right: unset!important;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        box-sizing:border-box;
        display: initial;
        color: #01546B!important;
    }

    .colorful-background .colorful-bg-red {
        position: absolute;
        right: 0;
        bottom: 44vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-yellow {
        position: absolute;
        left: 0;
        bottom: 24vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-white-smoke {
        position: absolute;
        left: 3vh;
        bottom: 35vh;
        width: 3vw;
    }

    .colorful-background .colorful-bg-yellow-books {
        position: absolute;
        right: 4vw;
        bottom: 46vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-red-blue-books {
        position: absolute;
        left: 4%;
        bottom: 28vh;
        width: 10vw;
    }
}


@media (min-width: 1200px) {

    .container {
        max-width: 1024px;
    }

    .colorful-background .colorful-bg-red {
        position: absolute;
        right: 0;
        bottom: 44vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-yellow {
        position: absolute;
        left: 0;
        bottom: 20vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-white-smoke {
        position: absolute;
        left: 3vh;
        bottom: 35vh;
        width: 3vw;
    }

    .colorful-background .colorful-bg-yellow-books {
        position: absolute;
        right: 4vw;
        bottom: 46vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-red-blue-books {
        position: absolute;
        left: 4%;
        bottom: 28vh;
        width: 10vw;
    }
}

@media (min-width: 1400px) {
    .colorful-background .colorful-bg-red {
        position: absolute;
        right: 0;
        bottom: 51vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-yellow {
        position: absolute;
        left: 0;
        bottom: 20vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-white-smoke {
        position: absolute;
        left: 3vh;
        bottom: 49vh;
        width: 3vw;
    }

    .colorful-background .colorful-bg-yellow-books {
        position: absolute;
        right: 4vw;
        bottom: 58vh;
        width: 10vw;
    }

    .colorful-background .colorful-bg-red-blue-books {
        position: absolute;
        left: 4%;
        bottom: 34vh;
        width: 10vw;
    }
}



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

.mobile-menu-seperator{
    width:30px;
    height:2px;
    background-color: red;
    margin-top:-20px;
    margin-bottom:10px;
}

.footer-links-padding{
    padding-left:20px;
}

.genlink{
    color: #29b5cc;
    text-decoration: none;
}

.genlink:hover{
    color: #29b5cc;
    opacity: 0.8!important;
}

#userEmail{
    user-select: none;
}

.green-spinner-lg, .green-spinner {
    color: #3F9EB2;
    width: 26px;
    height: 26px;
    vertical-align: middle;
}

.green-spinner-lg {
    width: 29px;
    height: 29px;
}

.copy-link-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    background: #FFFFFF;
    border-radius: 4px;
    color: #3F9EB2;
    display: block;
    text-decoration: none!important;
    white-space: nowrap;
    cursor:pointer;
    user-select: none;
    max-width: 210px;
    overflow: hidden;
    max-width: 360px;
    text-overflow: ellipsis;
    padding: 13px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.13);
    padding-right: 80px;
  }

  .copy-link-text:hover {
      color: #3F9EB2;
      opacity: 0.9;
  }

  .copy-link-text:active {
      color: #3F9EB2;
  }

  .copy-btn{
    background-color: #fff;
    border: 2px solid #FE6E63;
    cursor: pointer;
    position: absolute;
    color:#FE6E63;
    font-size: 14px;
    padding: 0.45rem 1rem 0.45rem 1rem;
    text-decoration: none;
    right: 6px;
    top:6px;
    transition: all 0.3s ease-out;
    line-height: 22px;
}

.copy-btn:hover{
    background-color: #ffe5e5;
}

.linked-in-warning {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #000000;
    width: 300px;
}

.black-text-btn {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #8D8D8D;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

#viewerContainer[data-dir=rtl] .black-text-btn {
    direction: rtl;
}

.black-text-btn:hover {
    opacity: 0.8;
    cursor: pointer;
}

.black-text-btn .edit-icon {
    width: 15px;
    height: 15px;
    /* margin-right: 3px; */
}

.black-text-btn .replace-icon {
    width: 15px;
    height: 18px;
    /* margin-right: 3px; */
}

.red-text {
    color: #FE6E63 !important;
}



.btn_icon_ndv{
    display: inline-block;
    vertical-align: -0.35em;
    width: 25px;
    height: 25px;
    background-image: url(/static/images/btn_book.svg);
    margin-right: 3px;
}

.bi.paper-plane {
    display: inline-block;
    vertical-align: -0.265em;
    width: 25px;
    height: 25px;
    background-image: url(/static/images/icons/paper-plane-icon.svg);
    margin-right: 2px;
}

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

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

.copy-link-ndv{
        max-width: 100%;
}

.red-button.less-important {
    background: #FFFFFF;
    color: #FE6E63;
    padding: 0.5rem 1rem 0.5rem 1rem;
    min-width: 100px;
}

@keyframes wiggle {
    0% { transform: rotate(0deg); }
    3% { transform: rotate(7deg); }
    6% { transform: rotate(-7deg); }
    9% { transform: rotate(0deg); }
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(0.5rem); }
    40% { transform: translateX(-0.5rem); }
    60% { transform: translateX(0.5rem); }
    80% { transform: translateX(-0.5rem); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.3s;
}

.wiggle {
  animation: wiggle 5s infinite;
}

.wiggle:hover {
  animation: none;
}

.yellow-seperator {
    width: 72px;
    border-top: 3px solid #FED777;
}

.blue-seperator {
    width: 72px;
    border-top: 3px solid #B7EBF0;
}

.gray-seperator {
    width: 610px;
    border-top: 1px solid rgba(0, 0, 0, 0.3)
}

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

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

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

.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;
}

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

.grecaptcha-badge {
    visibility: hidden;
}

.thank-you-icon {
    width: 92px;
    height: 79px;
}

.contact-us-thankyou {
    height: 100%;
    min-height: 380px;
}

.contact-us-container {
    z-index: 120;
}


.inner-page-padding{
    padding:40px 50px 50px 50px;
    font-size:18px;
}

    .founders{
        width: 160px;
    }


@media (max-width: 576px) {

    .inner-page-padding{
        padding:30px;
        font-size:18px;
    }

    .red-bot{
        height: 71px;
        width: 38px;
    }

    .founders{
        width: 120px;
    }


}


/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    width: 100%;
    height: 100%;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
  }

  /* This container is needed to position the front and back side */
  .flip-card-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: transform 1s;
    transition: transform 1s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-card-flipped .flip-card-inner {
    transform: rotateY(180deg);
    transition: transform 1s;
  }

  /* Position the front and back side */
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
  }

  .flip-card-scroll-friendly .flip-card-front {
    display: none!important;
  }

  .flip-card-scroll-friendly .flip-card-back {
    position: relative!important;
  }

  /* Style the front side (fallback if image is missing) */
  .flip-card-front {
    z-index: 2;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }

  /* Style the back side */
  .flip-card-back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }