@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
/*===========================
  COMMON css 
===========================*/
:root {
  --font-family: "Inter", sans-serif;
  --primary: #374EA2;
  --primary-dark: #2c3e80;
  --primary-light: #e2f1ff;
  --accent: #00d4d7;
  --accent-dark: #00bac1;
  --accent-light: #dff9f8;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #F58220;
  --secondary-dark: #ff5500;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #374EA2 0%, #1c3ab6 100%);
  --gradient-2: linear-gradient(180deg, #374EA2 13.02%, #00d4d7 85.42%);
  --gradient-3: linear-gradient(180deg, #374EA2 0%, #8f15d5 100%);
  --gradient-4: linear-gradient(180deg, #374EA2 0%, #13d527 100%);
  --gradient-5: linear-gradient(180deg, #374EA2 0%, #15bbd5 100%);
  --gradient-6: linear-gradient(180deg, #374EA2 0%, #dbbb25 100%);
  --gradient-7: linear-gradient(180deg, #374EA2 0%, #e6185e 100%);
  --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
  --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #374EA2 85.42%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
    0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
    0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
    0px 20px 32px rgba(96, 97, 112, 0.24);
}

body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}
.text-primary{
  color:#374EA2!important;
}
.text-secondary{
  color:#F58220!important;
}
.border-primary{
  border-color:#374EA2!important;
}
.border-secondary{
  border-color:#F58220!important;
}
.bg-primary{
  background-color:#374EA2!important;
}
.bg-secondary{
  background-color:#F58220!important;
}
.bg-white{
  background-color: #ffffff!important;
}

.docs a:hover{
  text-decoration: underline;
}
ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--black);
  margin: 0px;
}

h1,
.h1 {
  font-size: 2.75em;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 2.25em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.75em;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.5em;
  line-height: 1.25;
}

h5,
.h5 {
  font-size: 1.25em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: 0.875em;
  line-height: 1.25;
}

.display-1 {
  font-size: 5.5em;
  line-height: 1.25;
}

.display-2 {
  font-size: 4.75em;
  line-height: 1.25;
}

.display-3 {
  font-size: 4em;
  line-height: 1.25;
}

.display-4 {
  font-size: 3.25em;
  line-height: 1.25;
}

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-2);
  margin: 0px;
}

.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.15em;
  line-height: 1.5;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .portfolio-style-three .portfolio-title a {
        font-size:20px
    }
}
.separator-line {
background: linear-gradient(to right,#374EA2,#F58220 100%) no-repeat;
height: 2px;
opacity: .8;
max-width: 730px;
margin: 0 auto;
}
.portfolio-style-three .text {
    color: var(--black);
    margin-top:8px
}

.portfolio-style-three:hover .portfolio-overlay {
    opacity: 1;
    visibility:visible
}

.btn {
  /*font-weight: bold;*/
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  /*text-transform: uppercase;*/
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.btn:hover {
  color: inherit;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}
.btn.btn-lg {
  font-size: 1.15em;
  padding: 16px 24px;
}
.btn.btn-sm {
  padding: 8px 16px;
}
.btn.square {
  border-radius: 0px;
}
.btn.semi-rounded {
  border-radius: 12px;
}
.btn.rounded-full {
  border-radius: 50px;
}
.btn.icon-left span,
.btn.icon-left i {
  margin-right: 8px;
}
.btn.icon-right span,
.btn.icon-right i {
  margin-left: 8px;
}
.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}
.btn.icon-btn.btn-lg {
  width: 56px;
  height: 56px;
  line-height: 56px;
}
.btn.icon-btn.btn-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}


/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.primary-btn-2 {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn, .primary-btn:hover, .primary-btn:focus, .active.primary-btn-2, .primary-btn-2:hover, .primary-btn-2:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.secondary-btn-outline {
  border-color: var(--secondary);
  color: var(--secondary);
}
.active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
  background: var(--primary);
  color: var(--white);
}
.active.secondary-btn-outline, .secondary-btn-outline:hover, .secondary-btn-outline:focus {
  background: var(--secondary);
  color: var(--white);
}
.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}


/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 5px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--dark-1);
}
.text-dark-2{
  color: var(--dark-2);
}

/*===========================
  Section Title Five CSS
===========================*/
.section-title-five {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five {
    margin-bottom: 45px;
  }
  .portfolio-three {
        padding:80px
    }
    .portfolio-three .portfolio-menu button {
        font-size: 14px;
        padding:0 26px
    }
}
@media (max-width: 767px) {
  .section-title-five {
    margin-bottom: 35px;
  }
  .portfolio-three {
        padding:60px 0
  }
  .portfolio-three .portfolio-menu button {
      font-size: 14px;
      padding: 0 22px;
      line-height:42px
  }
}
.section-title-five h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 30px;
}
.section-title-five h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-title-five h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.section-title-five p {
  color: var(--dark-2);
}

.made-in-ayroui{
  position: fixed;
  left: 5px;
  bottom: 5px;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.made-in-ayroui:hover{
  transform: translateY(-5px);
}


/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR NINE =====*/
.navbar-area.navbar-nine {
  background: var(--primary);
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}
.sticky {
  position: fixed !important;
  z-index:99 !important;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine {
    padding: 10px 0;
  }
}
.navbar-area.navbar-nine .navbar-brand {
  margin: 0;
}
.navbar-area.navbar-nine .navbar {
  position: relative;
  padding: 0;
}
.navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-collapse {
    position: absolute;
    top: 116%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 8;
    padding: 10px 16px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-left: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-right: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  color: var(--white);
  /*text-transform: capitalize;*/
  position: relative;
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 14px 0;
  opacity: 0.7;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover {
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    padding: 10px 0;
    display: block;
    border: 0;
    margin: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
  font-size: 12px;
  font-weight: 700;
  padding-left: 7px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
    position: relative;
    top: -5px;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 130%;
  width: 230px;
  background-color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  color: var(--dark-2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  z-index: 5;
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-weight: 700;
  font-size: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
  color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
    color: var(--primary);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
  color: var(--primary);
  padding-left: 22px;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a i {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
    color: var(--primary);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a::after {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a::before {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 115%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
.navbar-area.navbar-nine .navbar .navbar-btn {
  margin-top: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 7px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 7px;
  }
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
  font-size: 22px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(238, 238, 238, 0.425);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar:hover {
  border-color: transparent;
  color: var(--primary);
  background-color: var(--white);
}

/*===== SIDEBAR ONE =====*/
.sidebar-left {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--white);
  height: 100%;
  width: 350px;
  padding-top: 80px;
  z-index: 999;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  text-align: left;
}
.sidebar-left.open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 767px) {
  .sidebar-left {
    width: 250px;
  }
}
.sidebar-left .sidebar-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.sidebar-left .sidebar-close .close {
  font-size: 18px;
  color: var(--black);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.sidebar-left .sidebar-close .close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sidebar-left .sidebar-content {
  padding: 0px 30px;
}
.sidebar-left .sidebar-content .sidebar-menu {
  margin-top: 30px;
}
.sidebar-left .sidebar-content .sidebar-menu .menu-title {
  font-size: 18px;
  font-weight: 600;
}
.sidebar-left .sidebar-content .sidebar-menu ul {
  margin-top: 15px;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 0;
  color: var(--dark-3);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.sidebar-left .sidebar-content .text {
  margin-top: 20px;
}
.sidebar-left .sidebar-content .sidebar-social {
  margin-top: 30px;
}
.sidebar-left .sidebar-content .sidebar-social .social-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}
.sidebar-left .sidebar-content .sidebar-social ul li {
  display: inline-block;
  margin-right: 5px;
}
.sidebar-left .sidebar-content .sidebar-social ul li:last-child {
  margin: 0;
}
.sidebar-left .sidebar-content .sidebar-social ul li a {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 18px;
  color: #666;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar-left .sidebar-content .sidebar-social ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

.overlay-left {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99;
}
.overlay-left.open {
  display: block;
}


/* ===== Buttons Css ===== */
.header-eight .primary-btn, .head .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-eight .active.primary-btn, .head .active.primary-btn, .header-eight .primary-btn:hover, .head .primary-btn:hover, .header-eight .primary-btn:focus, .head .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-eight .deactive.primary-btn, .head .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-eight {
  position: relative;
  padding:160px 0 100px 0;
  background: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight {
    padding: 130px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .header-eight {
    padding: 100px 0 60px 0;
  }
}
.header-eight .header-image img {
  width: 100%;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-eight .header-image {
    margin-top: 40px;
  }
}
.header-eight .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}
.header-eight .header-content h1 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  /*text-transform: capitalize;*/
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight .header-content h1  {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .header-eight .header-content h1  {
    font-size: 30px;
    line-height: 42px;
  }
}
.header-eight .header-content h1 span {
  display: block;
}
.header-eight .header-content p {
  margin-top: 30px;
  color: var(--white);
  opacity: 0.7;
}
.header-eight .button {
  margin-top: 40px;
}
.header-eight .primary-btn, .head .primary-btn {
  margin-right: 12px;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}
.header-eight .primary-btn:hover, .head .primary-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.head .secondary-btn, .header-content .secondary-btn {
  margin-right: 12px;
  background-color: var(--secondary);
  color: var(--white);
  border: 1px solid transparent;
  text-transform: none;
}
.head .secondary-btn:hover, .header-content .secondary-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
  text-transform: none;
}
.secondary-btn-2 {
  margin-right: 12px;
  background-color: var(--secondary);
  color: var(--white);
  border: 1px solid transparent;
  text-transform: none;
}
.secondary-btn-2:hover{
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
  text-transform: none;
}
.header-eight .video-button {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header-eight .video-button {
    margin-top: 20px;
  }
}
.header-eight .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: var(--white);
  font-weight: 600;
}
.header-eight .video-button .icon-btn {
  background: var(--white);
  color: var(--primary);
}
.btn-link{
  text-decoration: none;
  text-transform: none;
}

/*===========================
  about-05 css
===========================*/
.about-five {
  background-color: var(--light-3);
  padding-top: 120px;
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five {
    padding-top: 100px;
    padding-bottom:70px;
  }
}
@media (max-width: 767px) {
  .about-five {
    padding-top: 80px;
    padding-bottom:60px;
  }
}
.about-five-content{
  padding-left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five-content {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .about-five-content {
    padding-left: 0;
  }
}
.p-30{
  padding: 30px 0;
}
.header-teacher{
  background: url("assets/images/teacher/bg-top.jpg") #374EA2;
  background-size: cover;
  padding: 50px 0;
}
.about-five-content .small-title {
  position: relative;
  padding-left: 30px;
}
.about-five-content .small-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  background-color: var(--primary);
  height: 2px;
  width: 20px;
  margin-top: -1px;
}
.about-five-content .main-title {
  margin-top: 20px;
}
.about-five-content .about-five-tab {
  margin-top: 40px;
}
.about-five-content .about-five-tab nav {
  border: none;
  background-color: var(--light-1);
  padding: 15px;
  border-radius: 5px;
}
.about-five-content .about-five-tab nav .nav-tabs {
  border: none;
}
.about-five-content .about-five-tab nav button {
  border: none;
  color: var(--dark-1);
  font-weight: 600;
  padding: 0;
  margin-right: 20px;
  position: relative;
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: 4px;
  /*text-transform: capitalize;*/
}
@media (max-width: 767px) {
  .about-five-content .about-five-tab nav button {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .about-five-content .about-five-tab nav button:last-child {
    margin: 0;
  }
}
.about-five-content .about-five-tab nav button:hover {
  color: var(--primary);
}
.about-five-content .about-five-tab nav button.active {
  background-color: var(--primary);
  color: var(--white);
}
.about-five-content .about-five-tab nav button:last-child {
  margin-right: 0;
}
.about-five-content .about-five-tab .tab-content {
  border: none;
  padding-top: 30px;
}
.about-five-content .about-five-tab .tab-content p {
  margin-bottom: 20px;
}
.about-five-content .about-five-tab .tab-content p:last-child {
  margin: 0;
}

.about-image-five {
  padding-left: 60px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five {
    margin-bottom: 70px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .about-image-five {
    margin-bottom: 60px;
    padding-left: 0;
  }
}
.about-image-five .shape {
  position: absolute;
  left: 30px;
  top: -30px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five .shape {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five::before {
    right: -15px;
    bottom: -15px;
  }
}
@media (max-width: 767px) {
  .about-image-five::before {
    display: none;
  }
}
.about-image-five img {
  width: 100%;
  z-index: 2;
}


/*===========================
  services css 
===========================*/
.services-eight {
  padding: 80px 0!important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-eight {
    padding: 80px 0 50px 0;
  }
}
@media (max-width: 767px) {
  .services-eight {
    padding: 60px 0 30px 0;
  }
}
.services-eight .single-services {
  padding: 40px 30px;
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.services-eight .single-services:hover {
  box-shadow: var(--shadow-4);
}
.services-eight .single-services:hover .service-icon {
  color: var(--white);
  border-color: transparent;
  background: var(--primary);
}
.services-eight .single-services:hover .service-icon::after {
  opacity: 1;
  visibility: visible;
}
.services-eight .single-services .service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin-bottom: 25px;
  background: var(--white);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
}
.services-eight .single-services .service-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: var(--primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid transparent;
}
.services-eight .single-services .service-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.services-eight .single-services .service-content p {
  color: var(--dark-2);
}



/*===== VIDEO ONE =====*/
.video-one {
  background-color: var(--light-3);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-one {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .video-one {
    padding: 60px 0;
  }
}
.video-one .video-title h5 {
  font-weight: 600;
  color: var(--primary);
}
.video-one .video-title h2 {
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}
.video-one .video-title .text-lg {
  margin-top: 24px;
  color: var(--dark-3);
}
.video-one .video-content {
  position: relative;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.video-one .video-content img {
  border-radius: 8px;
}
.video-one .video-content a {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding-left: 3px;
}
@media (max-width: 767px) {
  .video-one .video-content a {
    width: 68px;
    height: 68px;
    line-height: 68px;
    font-size: 20px;
  }
}
.video-one .video-content a:hover {
  background-color: var(--white);
  color: var(--primary);
}


/*===== PRICING THIRTEEN =====*/
.pricing-fourteen {
  padding: 100px 0;
  background-color: var(--light-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fourteen {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .pricing-fourteen {
    padding: 60px 0;
  }
}
.pricing-style-fourteen {
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-top: 30px;
  background-color: var(--white);
  transition: all 0.4s ease;
  padding: 50px 35px;
  text-align: center;
  z-index: 0;
}
.pricing-style-fourteen:hover {
  box-shadow: var(--shadow-4);
}
.pricing-style-fourteen.middle {
  box-shadow: var(--shadow-4);
}
.pricing-style-fourteen.middle .title {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.pricing-style-fourteen .title {
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--primary);
  padding: 8px 20px;
  border: 2px solid var(--primary);
  display: inline-block;
  border-radius: 30px;
  font-size: 16px;
}
.pricing-style-fourteen .table-head p {
  color: var(--dark-2);
}
.pricing-style-fourteen .price {
  padding-top: 30px;
}
.pricing-style-fourteen .amount {
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  font-size: 55px;
}
.pricing-style-fourteen .currency {
  font-weight: 400;
  color: var(--dark-3);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}
.pricing-style-fourteen .duration {
  display: inline-block;
  font-size: 18px;
  color: var(--dark-3);
  font-weight: 400;
}
.pricing-style-fourteen .light-rounded-buttons {
  margin: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}
.pricing-style-fourteen .table-list li {
  position: relative;
  margin-bottom: 10px;
  color: var(--dark-3);
  text-align: left;
}
.pricing-style-fourteen .table-list li:last-child {
  margin: 0;
}
.pricing-style-fourteen .table-list li i {
  color: var(--primary);
  font-size: 16px;
  padding-right: 8px;
}
.pricing-style-fourteen .table-list li i.deactive {
  color: var(--dark-3);
}




/* ===== Buttons Css ===== */
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.call-action .inner-content .light-rounded-buttons .active.primary-btn-outline, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:focus {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
}
.call-action .inner-content .light-rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action {
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(60deg, var(--primary), var(--primary-dark)) !important;
  position: relative;
}

.call-action-2 {
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(60deg, var(--secondary), var(--secondary-dark)) !important;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .call-action {
    padding: 60px 0;
  }
}
.call-action:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("assets/images/call-action/overlay.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}
.call-action .inner-content {
  text-align: center;
}
.call-action .inner-content h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
}
.call-action .inner-content p {
  color: var(--white);
}
.call-action .inner-content .light-rounded-buttons {
  margin-top: 45px;
  display: block;
}
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}

/*==========================*/
.testimonial-5 {
    background-color: var(--light-3);
    position: relative;
    padding-bottom: 160px;
    padding-top:100px
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .testimonial-5 {
        padding-bottom: 160px;
        padding-top:80px
    }
}

@media (max-width: 767px) {
    .testimonial-5 {
        padding-bottom: 160px;
        padding-top:60px
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px),(max-width: 767px) {
    .testimonial-5 {
        padding-bottom:120px
    }
}

.testimonial-5 .testimonial-slider {
    margin:0
}

.testimonial-5 .tns-nav {
    text-align: center;
    position: absolute;
    bottom: 90px;
    transform: translateX(-50%);
    width: 100%;
    left: 50%;
    z-index: 9;
    margin:0
}

@media only screen and (min-width: 768px) and(max-width: 991px),(max-width: 767px) {
    .testimonial-5 .tns-nav {
        bottom:70px
    }
}

.testimonial-5 .tns-nav button {
    height: 6px;
    width: 14px;
    background-color: var(--primary);
    opacity: .3;
    border-radius: 5px;
    display: inline-block;
    border: none;
    margin: 0 5px;
    transition:all .4s ease
}

.testimonial-5 .tns-nav button.tns-nav-active {
    width: 25px;
    opacity:1
}

.testimonial-5 .single-testimonial {
    background-color: var(--white);
    padding: 70px 50px;
    transition: all .4s ease;
    border-radius: 6px;
    overflow: hidden;
    position:relative
}

@media (max-width: 767px) {
    .testimonial-5 .single-testimonial {
        padding:50px 40px
    }
}

.testimonial-5 .single-testimonial .shape1 {
    position: absolute;
    left: 40px;
    top:0
}

.testimonial-5 .single-testimonial .shape2 {
    position: absolute;
    right: -20px;
    bottom:-20px
}

.testimonial-5 .single-testimonial .inner-content {
    position: relative;
    z-index:0
}

.testimonial-5 .single-testimonial .qote-icon {
    font-size: 70px;
    color: var(--light-2);
    position: absolute;
    right: 0;
    top: 0;
    z-index:-1
}

.testimonial-5 .single-testimonial .text {
    font-weight: 500;
    line-height: 28px;
    color:var(--dark-3)
}

.testimonial-5 .single-testimonial .author {
    position: relative;
    padding-left: 70px;
    margin-top: 40px;
    display: flex;
    align-items:center
}

.testimonial-5 .single-testimonial .author img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top:0
}

.testimonial-5 .single-testimonial .author h4 {
    font-size: 18px;
    color: var(--dark-1);
    margin-top: 10px;
    padding-left:20px
}

.testimonial-5 .single-testimonial .author h4 span {
    color: var(--dark-3);
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top:4px
}


/*===== latest-news-area =====*/
.latest-news-area {
  background: var(--white);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-news-area {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .latest-news-area {
    padding: 60px 0;
  }
}
.latest-news-area .single-news {
  margin-top: 30px;
}
.latest-news-area .single-news .image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.latest-news-area .single-news .image img {
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
}
.latest-news-area .single-news .image .meta-details {
  display: inline-block;
  padding: 6px 15px 6px 7px;
  border-radius: 30px;
  background-color: var(--primary);
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.latest-news-area .single-news .image .meta-details img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: inline-block;
}
.latest-news-area .single-news .image .meta-details span {
  color: var(--white);
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
}
.latest-news-area .single-news .content-body .title {
  margin: 30px 0 20px 0;
}
.latest-news-area .single-news .content-body .title a {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.latest-news-area .single-news .content-body .title a:hover {
  color: var(--primary);
}
.latest-news-area .single-news .content-body p {
  color: var(--dark-2);
}
.latest-news-area .single-news:hover .image .thumb {
  transform: scale(1.1) rotate(1deg);
}


/*======================================
    Brand CSS
========================================*/
.brand-area {
  padding: 80px 0;
  background: var(--white);
}
.paper-area {
  padding: 20px 0!important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .brand-area {
    padding: 60px 0;
  }
}
.brand-area .clients-logos {
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}
.brand-area .clients-logos .single-image {
  display: inline-block;
  margin: 13px 10px;
  background-color: var(--white);
  line-height: 100px;
  padding: 8px 25px;
  border-radius: 8px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  border: 1px solid #eee;
}
.brand-area .clients-logos .single-image:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.096);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.brand-area .clients-logos img {
  max-width: 170px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

/* ===== Buttons Css ===== */
.contact-form-wrapper .contact-form .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.contact-form-wrapper .contact-form .active.primary-btn, .contact-form-wrapper .contact-form .primary-btn:hover, .contact-form-wrapper .contact-form .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.contact-form-wrapper .contact-form .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
	Contact CSS
========================================*/
.contact-section {
  position: relative;
  z-index: 3;
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding-top: 60px;
  }
}
.contact-section .contact-item-wrapper .contact-item {
  display: flex;
  border: 1px solid var(--gray-4);
  border-radius: 10px;
  background: var(--white);
  margin-bottom: 30px;
  padding: 20px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-section .contact-item-wrapper .contact-item:hover {
  box-shadow: var(--shadow-4);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}
.contact-section .contact-item-wrapper .contact-item .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-section .contact-item-wrapper .contact-item .contact-content {
  margin-left: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}
.contact-section .contact-item-wrapper .contact-item .contact-content h4 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-form-wrapper {
  padding: 50px 40px;
  background: var(--white);
  border: 1px solid var(--gray-4);
  margin-left: 0px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-form-wrapper:hover {
  box-shadow: var(--shadow-4);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-wrapper {
    margin-left: 30px;
  }
}
.contact-form-wrapper .section-title {
  margin-bottom: 30px;
}
.contact-form-wrapper .section-title span {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}
.contact-form-wrapper .section-title h2 {
  margin-bottom: 10px;
}
.contact-form-wrapper .section-title p {
  color: var(--dark-2);
}
.contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px solid var(--gray-4);
  margin-bottom: 25px;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
    padding: 12px 25px;
  }
}
.contact-form-wrapper .contact-form input:focus,
.contact-form-wrapper .contact-form textarea:focus {
  border-color: var(--primary);
}
.contact-form-wrapper .contact-form textarea {
  border-radius: 18px;
}
.map-style-9 {
  margin-top: -130px;
}


/* Footer eleven css */
.footer-eleven {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--white);
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-eleven {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
    text-align: center;
  }
}
.footer-eleven .footer-widget h5 {
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--black);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-eleven .footer-widget h5 {
    margin-bottom: 25px;
  }
}
.footer-eleven .f-about {
  padding-right: 30px;
}
@media (max-width: 767px) {
  .footer-eleven .f-about {
    padding: 0;
  }
}
.footer-eleven .f-about p {
  color: var(--dark-2);
  margin-top: 20px;
}
.footer-eleven .f-about .copyright-text {
  color: var(--dark-3);
  margin-top: 40px;
}
.footer-eleven .f-about .copyright-text span {
  display: block;
}
@media (max-width: 767px) {
  .footer-eleven .f-about .copyright-text {
    margin-top: 20px;
  }
}
.footer-eleven .f-about .copyright-text a {
  color: var(--primary);
}
.footer-eleven .f-about .copyright-text a:hover {
  color: var(--primary-dark);
}
.footer-eleven .f-link li {
  display: block;
  margin-bottom: 12px;
}
.footer-eleven .f-link li:last-child {
  margin: 0;
}
.footer-eleven .f-link li a {
  color: var(--dark-3);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.footer-eleven .f-link li a:hover {
  color: var(--primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .footer-eleven .newsletter {
    padding-left: 80px;
  }
}
.footer-eleven .newsletter p {
  color: var(--dark-2);
}
.footer-eleven .newsletter-form {
  margin-top: 30px;
  position: relative;
}
.footer-eleven .newsletter-form input {
  height: 55px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--gray-4);
  box-shadow: none;
  text-shadow: none;
  padding-left: 18px;
  padding-right: 65px;
  transition: all 0.4s ease;
}
.footer-eleven .newsletter-form input:focus {
  border-color: var(--primary);
}
.footer-eleven .newsletter-form .button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}
.footer-eleven .newsletter-form .sub-btn {
  height: 42px;
  width: 42px;
  border-radius: 6px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  line-height: 42px;
  border: none;
  box-shadow: none;
  text-shadow: none;
  font-size: 17px;
  transition: all 0.4s ease;
}
.footer-eleven .newsletter-form .sub-btn:hover {
  color: var(--white);
  background-color: var(--primary-dark);
}

#cust-using{
  background: url("assets/images/bg_counter.jpg");
  padding: 50px 0;
}
#cust-using-bg{
  background: #7d8ccd;
}
.circle-separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  margin: 0 8px 2px;
}

.box-container {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-top: 1.4em;
    width: 100%;
}

.box {
    list-style-type: none;
    float: left;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.2s, transform 0.35s;
}

.box.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.4s, transform 0.35s;
}

.box .inner {
    padding: 10px;
    position: relative;
}

.box a {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.box img {
    width: calc(100% + 50px);
    max-width: calc(100% + 50px);
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-40px, 0, 0);
}

.box a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    z-index: 99;
    opacity: 0;
    transition: opacity 0.4s;
}

.three-cols .box {
    width: 100%;
}

.four-cols .box {
    width: 23.1%;
}

.four-cols .box:nth-child(4n+0) {
    margin-right: 0;
}

.four-cols .box:nth-child(4n+1) {
    clear: both;
    margin-left: 0;
}
@media (min-width: 390px) {
  .three-cols .box {
      width: 50%;
  }
}


@media (min-width: 576px) {
  .three-cols .box {
      width: 33.3%;
  }

  .three-cols .box:nth-child(3n+0) {
      margin-right: 0;
  }

  .three-cols .box:nth-child(3n+1) {
      margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and(max-width: 1199px) {
    .portfolio-style-three .portfolio-title a {
        font-size:20px
    }
}
@media (min-width: 992px) {
  .box:hover img {
      transform: translate3d(0, 0, 0);
      transition: opacity 0.35s, transform 0.35s;
  }

  .box:hover a::before {
      opacity: 0.3;
      transition: opacity 0.5s;
  }
}

.opacity-75{
  opacity: 0.75;
}
.opacity-50{
  opacity: 0.5;
}

.video-content {
  position: relative;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

  .video-content a {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  padding-left: 3px;
}

table td,
table th {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

thead th {
  color: #fff;
}

.card {
  border-radius: .5rem;
}

.table-scroll {
  border-radius: .5rem;
}

.table-scroll table thead th {
  font-size: 1.25rem;
}
thead {
  top: 0;
  position: sticky;
}
#pricing tr{
  border-style: hidden;
}

#pricing .table-striped > tbody > tr:nth-of-type(odd) {
--bs-table-accent-bg: #cff4fc;
color: var(--bs-table-striped-color);
}
#pricing .table-striped > tbody > tr:nth-of-type(even) {
--bs-table-accent-bg: #fff3cd;
color: var(--bs-table-striped-color);
}

.rounded-tl{
  border-radius:10px 0 0 0;
}
.rounded-tr{
  border-radius:0 10px 0 0;
}


.olm-list {
    width: 100%;
}

.olm-diagram-list {
    margin: 0 auto;
    max-width: 698px;
}
.olm-diagram {
    height: 452px;
    margin: 0 auto 40px;
    position: relative;
    width: 698px;
}
.olm__item--cur {
    bottom: 0;
    left: 0;
}
.olm__item--res {
    left: 10%;
    top: 17%;
}
.olm__item {
    position: absolute;
    transition: 0.2s ease;
}
.olm__item,
.olm__psuedo-border {
    height: 190px;
    width: 190px;
}
.olm__item,
.olm__psuedo-border,
.olm__text-container {
    border-radius: 50vh;
}
.olm__cone {
    position: absolute;
    z-index: 0;
}
.olm__cone--cur {
    height: 182px;
    left: 65%;
    top: 50%;
    transform: translateY(-50%);
    width: 222px;
}
.olm__cone--res {
    height: 221px;
    left: 27%;
    top: 27%;
    width: 221px;
}

.olm__psuedo-border--cur {
    background-color: #374EA2;
}
.olm__psuedo-border--cur:hover {
    background-color: #374EA2;
}
.olm__psuedo-border--cur:hover .olm__text--cur {
    color: #374EA2;
}
.olm__psuedo-border--res {
    background-color: #374EA2;
}
.olm__psuedo-border--res:hover {
    background-color: #5a57eb;
}
.olm__psuedo-border--res:hover .olm__text--res {
    color: #5a57eb;
}
.olm__icon--res {
    height: 65px;
    left: -7px;
    width: 111px;
}
.olm__text--res {
    color: #374EA2;
}
.olm__tooltip--res {
    background-color: #f2f0fb;
    color: #374EA2;
}

.olm__psuedo-border,
.olm__text-container {
    align-items: center;
    display: flex;
    justify-content: center;
}
.olm__psuedo-border {
    position: relative;
    text-decoration: none;
    z-index: 1;
}
a.olm__psuedo-border:focus-visible .olm__text,
a.olm__psuedo-border:hover .olm__text {
    text-decoration: underline;
}
.olm__text-container {
    background-color: #ffffff;
    flex-direction: column;
    height: 184px;
    width: 184px;
}
.olm__icon {
    position: relative;
}
.olm__icon--cur {
    height: 73px;
    width: 90px;
}
.olm__text--cur {
    color: #374EA2;
}
.olm__text {
    font: normal 15px/1.3em Roboto, sans-serif;
    margin-top: 5px;
    text-align: center;
}
.olm__tooltip--cur {
    background-color: #BAD7FF;
    color: #374EA2;
}
.olm__tooltip {
    border-radius: 10px;
    box-sizing: border-box;
    display: none;
    position: absolute;
    transform: scale(0.95);
}
.sub-section-p {
    font: normal 15px/1.6 Verdana, sans-serif;
}

.olm__item--ass {
    left: calc(50% - 95px);
    top: 0;
}
.olm__cone--ass {
    height: 222px;
    left: 50%;
    top: 66%;
    transform: translateX(-50%);
    width: 181px;
}
.olm__psuedo-border--ass {
    background-color: #F58220;
}
.olm__psuedo-border--ass:hover {
    background-color: #F58220;
}
.olm__psuedo-border--ass:hover .pd__text--ass {
    color: #F58220;
}
.olm__text--ass {
    color: #F58220;
}
.olm__tooltip--ass {
    background-color: #fff2b8;
    color: #F58220;
}
.olm__icon--ass {
    height: 66px;
    left: -3px;
    width: 112px;
}
.olm__tooltip--ass {
    background-color: #fff2b8;
    color: #F58220;
}

.olm__item--ana {
    right: 10%;
    top: 17%;
}
.olm__cone--ana {
    height: 221px;
    right: 27%;
    top: 27%;
    width: 221px;
}
.olm__psuedo-border--ana {
    background-color: #009dbf;
}
.olm__psuedo-border--ana:hover {
    background-color: #04b3cb;
}
.olm__psuedo-border--ana:hover .olm__text--ana {
    color: #04b3cb;
}
.olm__icon--ana {
    height: 66px;
    left: -4px;
    width: 94px;
}
.olm__text--ana {
    color: #009dbf;
}
.olm__tooltip--ana {
    background-color: #e7f9f8;
    color: #009dbf;
}
.olm__item--dis {
    bottom: 0;
    right: 0;
}
.olm__cone--dis {
    height: 182px;
    right: 65%;
    top: 50%;
    transform: translateY(-50%);
    width: 222px;
}
.olm__psuedo-border--dis {
    background-color: #02b696;
}
.olm__psuedo-border--dis:hover {
    background-color: #0dc1a1;
}
.olm__psuedo-border--dis:hover .olm__text--dis {
    color: #0dc1a1;
}
.olm__icon--dis {
    height: 82px;
    width: 84px;
}
.olm__text--dis {
    color: #02b696;
}
.olm__tooltip--dis {
    background-color: #e6f8f1;
    color: #02b696;
}
.olm__item:not(.olm__item--logo):hover {
    transform: scale(1.05);
}
.olm__item:not(.olm__item--logo):hover .olm__psuedo-border {
    z-index: 3;
}
.olm__item:not(.olm__item--logo):hover .olm__tooltip {
    display: block;
    z-index: 2;
}
.olm__item--logo {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.olm__psuedo-border--logo {
    background: conic-gradient(#0090e1, #009dbf, #0dc1a1, #02b696, #a94ee1, #9125e7, #484bc6, #0090e1);
}
.olm__icon--logo {
    height: 48px;
    width: 129px;
}
.olm__cta-container {
    margin-top: 40px;
    text-align: center;
}
.teacher-landing-carousel {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
}
.tlc__card-container {
    position: relative;
}
.dr__card {
    align-items: center;
    border: 1px solid;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(35, 48, 96, 0.2);
    display: flex;
    flex-direction: column;
    max-width: 400px;
    padding: 20px 30px 30px;
    text-decoration: none;
}
.dr__card-title {
    margin: 30px 0 10px;
    text-align: center;
}
.dr__card-description {
    margin-bottom: 20px;
    text-align: center;
}
.dr__card-cta-btn {
    min-width: 180px;
}
.dr__card-icon {
    position: absolute;
    top: -43px;
}
.dr__card.skill {
    border-color: #b3b3fc;
}
.dr__card.skill .dr__card-icon {
    height: 84px;
    width: 115px;
}
.dr__card.video {
    border-color: #ffc49c;
}
.dr__card.video .dr__card-icon {
    height: 86px;
    width: 99px;
}
.dr__card.group {
    border-color: #86bff9;
}
.dr__card.group .dr__card-icon {
    height: 81px;
    width: 88px;
}
.dr__card.classroom {
    border-color: #5accc5;
}
.dr__card.classroom .dr__card-icon {
    height: 81px;
    width: 95px;
}
.dr__card.games {
    border-color: #71c9f5;
}
.dr__card.games .dr__card-icon {
    height: 83px;
    width: 95px;
}
.dr__card.live {
    border-color: #87d455;
}
.dr__card.live .dr__card-icon {
    height: 79px;
    width: 94px;
}
.tlc__card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(35, 48, 96, 0.3);
    display: flex;
    height: 100%;
    justify-content: space-around;
    left: 50%;
    position: absolute;
    top: 50%;
    transition: all 0.4s ease-in-out;
    width: 100%;
}
.tlc__card--not-selected {
    transform: translate(-50%, -50%);
}
.tlc__card---5 {
    transform: translate(-575%, -50%) scale(0.5);
    z-index: 1;
}
.tlc__card---4 {
    transform: translate(-470%, -50%) scale(0.6);
    z-index: 2;
}
.tlc__card---3 {
    transform: translate(-365%, -50%) scale(0.7);
    z-index: 3;
}
.tlc__card---2 {
    transform: translate(-260%, -50%) scale(0.8);
    z-index: 4;
}
.tlc__card---1 {
    transform: translate(-155%, -50%) scale(0.9);
    z-index: 5;
}
.tlc__card--0 {
    transform: translate(-50%, -50%) scale(1);
    z-index: 6;
}
.tlc__card--1 {
    transform: translate(55%, -50%) scale(0.9);
    z-index: 5;
}
.tlc__card--2 {
    transform: translate(160%, -50%) scale(0.8);
    z-index: 4;
}
.tlc__card--3 {
    transform: translate(265%, -50%) scale(0.7);
    z-index: 3;
}
.tlc__card--4 {
    transform: translate(370%, -50%) scale(0.6);
    z-index: 2;
}
.tlc__card--5 {
    transform: translate(475%, -50%) scale(0.5);
    z-index: 1;
}
.dr__card-icon {
    position: absolute;
    top: -43px;
}
.sub-section-title {
    font: normal 24px/1.2 Roboto Slab, sans-serif;
    text-align: left;
}
.text-color-purple {
    color: #7a67d7!important;
}
.dr__layout {
    grid-gap: 60px 25px;
    /*display: none;*/
    grid-template-columns: repeat(2, 3fr);
    justify-items: center;
}
.info-cta-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-family: Verdana, sans-serif;
    min-width: 140px;
    padding: 0 15px;
    text-align: center;
    text-decoration: none;
}
.info-cta-btn,
.info-cta-btn:hover {
    transition: all 0.2s ease-in-out;
}
.btn-purple {
    background-color: #7a67d7;
    color: #fff;
}
.hover-parent:hover .btn-purple,
.btn-purple:hover {
    background-color: #8a76f0;
    color: #fff;
}
.info-cta-33-15 {
    font-size: 15px;
    height: 33px;
    line-height: 33px;
}
.dr__card-cta-btn {
    min-width: 180px;
}
.text-color-orange {
    color: #ff8e33!important;
}
.hover-parent:active .text-color-orange,
.hover-parent:focus .text-color-orange,
.hover-parent:hover .text-color-orange,
.text-color-orange.hover:active,
.text-color-orange.hover:focus,
.text-color-orange.hover:hover {
    color: #ffa03f;
}
.btn-orange {
    background-color: #ff8e33;
    color: #fff;
}
.hover-parent:hover .btn-orange,
.btn-orange:hover {
    background-color: #ffa03f;
    color: #fff;
}
.text-color-blue {
    color: #0070d6!important;
}
.hover-parent:active .text-color-blue,
.hover-parent:focus .text-color-blue,
.hover-parent:hover .text-color-blue,
.text-color-blue.hover:active,
.text-color-blue.hover:focus,
.text-color-blue.hover:hover {
    color: #0380f2;
}
.btn-blue {
    background-color: #0070d6;
    color: #fff;
}
.hover-parent:hover .btn-blue,
.btn-blue:hover {
    background-color: #0380f2;
    color: #fff;
}
.text-color-teal {
    color: #0bc1b6!important;
}
.hover-parent:active .text-color-teal,
.hover-parent:focus .text-color-teal,
.hover-parent:hover .text-color-teal,
.text-color-teal.hover:active,
.text-color-teal.hover:focus,
.text-color-teal.hover:hover {
    color: #0fd0c4;
}
.btn-teal {
    background-color: #0bc1b6;
    color: #fff;
}
.hover-parent:hover .btn-teal,
.btn-teal:hover {
    background-color: #0fd0c4;
    color: #fff;
}
.text-color-cyan {
    color: #00aeef!important;
}
.hover-parent:active .text-color-cyan,
.hover-parent:focus .text-color-cyan,
.hover-parent:hover .text-color-cyan,
.text-color-cyan.hover:active,
.text-color-cyan.hover:focus,
.text-color-cyan.hover:hover {
    color: #10befd;
}
.btn-cyan {
    background-color: #00aeef;
    color: #fff;
}
.hover-parent:hover .btn-cyan,
.btn-cyan:hover {
    background-color: #10befd;
    color: #fff;
}
.text-color-green {
    color: #52b700!important;
}
.hover-parent:active .text-color-green,
.hover-parent:focus .text-color-green,
.hover-parent:hover .text-color-green,
.text-color-green.hover:active,
.text-color-green.hover:focus,
.text-color-green.hover:hover {
    color: #69c130;
}
.btn-green {
    background-color: #52b700;
    color: #fff;
}
.hover-parent:hover .btn-green,
.btn-green:hover {
    background-color: #69c130;
    color: #fff;
}
.olm-section {
    margin: 0;
    min-width: 974px;
    padding: 0;
    width: 100%;
}
.olm-section.vertical-horizontal-center {
    align-items: center;
    display: flex;
    justify-content: center;
}
.olm-section.vertical-horizontal-center .olm-content {
    flex: 0 1 auto;
    margin: 0;
}
.daily-routine-section .olm-content {
    overflow: hidden;
    padding-bottom: 50px;
    padding-top: 50px;
}
.olm__list {
    margin: 0 auto;
}

.pl__item {
    margin-bottom: 15px;
}
.pl__item:last-child {
    margin-bottom: 0;
}
.pl__link {
    align-items: center;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: 0.2s ease;
    width: 100%;
}
.pl__title {
    font: 400 18px/1.2em Roboto Slab, sans-serif;
    margin-bottom: 0.3em;
}
.pl__arrow-container {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
}
.pl__link--curriculum {
    background-color: #BAD7FF;
    color: #374EA2;
}
.pl__link--curriculum .pl__arrow-container {
    background-color: #374EA2;
}
.pl__link--curriculum:focus,
.pl__link--curriculum:hover {
    color: #a94ee1;
}
.pl__link--curriculum:focus .pl__arrow-container,
.pl__link--curriculum:hover .pl__arrow-container {
    background-color: #a94ee1;
}
.pl__link--resources {
    background-color: #f2f0fb;
    color: #4648a4;
}
.pl__link--resources .pl__arrow-container {
    background-color: #4648a4;
}
.pl__link--resources:focus,
.pl__link--resources:hover {
    color: #5a57eb;
}
.pl__link--resources:focus .pl__arrow-container,
.pl__link--resources:hover .pl__arrow-container {
    background-color: #5a57eb;
}
.pl__link--assessments {
    background-color: #e6f7fd;
    color: #006eac;
}
.pl__link--assessments .pl__arrow-container {
    background-color: #006eac;
}
.pl__link--assessments:focus,
.pl__link--assessments:hover {
    color: #00aeef;
}
.pl__link--assessments:focus .pl__arrow-container,
.pl__link--assessments:hover .pl__arrow-container {
    background-color: #00aeef;
}
.pl__link--analytics {
    background-color: #e7f9f8;
    color: #007b96;
}
.pl__link--analytics .pl__arrow-container {
    background-color: #007b96;
}
.pl__link--analytics:focus,
.pl__link--analytics:hover {
    color: #04b3cb;
}
.pl__link--analytics:focus .pl__arrow-container,
.pl__link--analytics:hover .pl__arrow-container {
    background-color: #04b3cb;
}
.pl__link--district {
    background-color: #e6f8f1;
    color: #008069;
}
.pl__link--district .pl__arrow-container {
    background-color: #008069;
}
.pl__link--district:focus,
.pl__link--district:hover {
    color: #0dc1a1;
}
.pl__link--district:focus .pl__arrow-container,
.pl__link--district:hover .pl__arrow-container {
    background-color: #0dc1a1;
}
 .pl__description--long,
    .pl__title--long {
        display: none;
    }
    .pl__description--short,
    .pl__title--short {
        display: block;
    }

@media screen and (min-width: 1014px) {
    .dr__card-title {
        margin-top: 0;
    }
    .dr__card.skill .dr__card-icon {
        left: -42px;
        top: -30px;
    }
    .dr__card.video .dr__card-icon {
        left: -33px;
        top: -38px;
    }
    .dr__card.group .dr__card-icon {
        left: -36px;
        top: -33px;
    }
    .dr__card.classroom .dr__card-icon {
        left: -47px;
        top: -33px;
    }
    .dr__card.games .dr__card-icon {
        left: -40px;
        top: -40px;
    }
    .dr__card.live .dr__card-icon {
        left: -34px;
        top: -36px;
    }
    .dr__layout {
        grid-gap: 50px 0;
    }
     .olm-list {
        -moz-column-count: 2;
        column-count: 2;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
    .olm__list {
        display: none;
    }
    .topic-tabs-container .generic-tablist {
        width: 260px;
    }
    .topic-tabs-container .generic-tab {
        width: 260px;
    }
}
.responsive-section {
    min-width: 320px;
}
.responsive-section.vertical-horizontal-center {
    align-items: center;
    display: flex;
    justify-content: center;
}
.responsive-section.vertical-horizontal-center .olm-content {
    flex: 0 1 auto;
    margin: 0;
}
.responsive-section .ixl-content {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1014px;
    min-width: 320px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}
.content-width-1200-section:not(.responsive-section) .olm-content {
    min-width: 1014px;
    padding-left: 20px;
    padding-right: 20px;
}
.content-width-1200-section .olm-content {
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}
.section-title {
    font: normal 30px/1.2 Roboto Slab, sans-serif;
    text-align: center;
}
.dr__carousel {
    margin-top: 100px;
}
.dr__carousel .tlc__card-container {
    height: 240px;
    width: 220px;
}
.tlc__arrow {
    height: 73px;
    width: 29px;
}
.tlc__arrow--left {
    transform: rotate(180deg);
}
.tlc__nav-button:not(.tlc__nav-button--disabled):hover .tlc__arrow .arrow-right-path {
    stroke: #00aeef;
}
.tlc__previous {
    margin-right: 15px;
}
.tlc__next {
    margin-left: 15px;
}
.tlc__nav-button {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border-width: 0;
    display: none;
}
.tlc__nav-button:not(.tlc__nav-button--disabled):hover .tlc__arrow .arrow-right-path {
    stroke: #00aeef;
}
.tlc__nav-button--disabled {
    opacity: 0.5;
}

.tlc__selector-container {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 55px;
}

.tlc__selector {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 50vh;
    color: transparent;
    font-size: 0;
    height: 10px;
    line-height: 0;
    margin-right: 5px;
    padding: 1px 5px;
    width: 10px;
}
.tlc__selector:last-child {
    margin-right: 0;
}
.tlc__selector--not-selected {
    background-color: #ccc;
}
.after-arrow-right-background {
    border-radius: 50%;
}
.stroke-color-white {
    stroke: #fff;
}

@media screen and (min-width: 481px) {
    .dr__carousel .tlc__card-container {
        height: 265px;
        width: 280px;
    }
    .help-section-title {
        font: 300 20px/1.3 Roboto Slab, sans-serif;
    }
    .overflow-content .search-bar-content {
        width: 100%;
    }
    .search-bar-title-container.toggleable {
        padding-right: 41px;
    }
    .search-bar-title-container.toggleable .open-search-magnifying-glass-button {
        margin-left: 25px;
    }
    .search-bar-title-container.toggleable .open-search-magnifying-glass-button .magnifying-glass-icon {
        height: 18px;
        width: 18px;
    }
    .search-bar-title-container.toggleable .search-bar-title {
        font-size: 32px;
    }
    .search-bar-and-icon .x-button {
        margin-left: 5px;
        width: 36px;
    }
    .search-bar-and-icon .x-button .x-icon {
        width: 36px;
    }
}
@media screen and (min-width: 661px) {
    .responsive-section .ixl-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .pl__description--long,
    .pl__title--long {
        display: block;
    }
    .pl__description--short,
    .pl__title--short {
        display: none;
    }
    .admin-landing-learners-section__card__title {
        font-size: 20px;
    }
    .admin-landing-learners-section__card__title {
        margin-bottom: 5px;
    }
    .help-center-index .topic-tabs-title {
        padding-left: 0;
    }
    .topic-tabs-container .generic-tablist {
        width: 210px;
    }
    .topic-tabs-container .generic-tab {
        width: 210px;
    }
    .help-center-contact-section {
      padding-bottom: 100px;
  }
}
@media screen and (min-width: 661px) and (max-width: 800px) {
    .admin-landing-learners-section__layout {
        max-width: 620px;
    }
}
@media screen and (min-width: 801px) {
    .teacher-landing-carousel--prev-next {
        align-items: center;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .teacher-landing-carousel.dr__carousel {
        display: none;
    }
    .dr__card {
        justify-content: space-between;
        position: relative;
        transition: 0.2s ease;
    }
    .dr__card:focus,
    .dr__card:hover {
        transform: scale(1.02);
    }
    .dr__layout {
        display: grid;
    }
    .daily-routine-section .olm-content {
        overflow: unset;
    }
    .admin-landing-leaders-think-section__layout {
      padding: 45px 35px 50px;
    }
     .admin-landing-learners-section__layout {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        max-width: 980px;
    }
    .admin-landing-learners-section__card {
        width: calc(50% - 18px);
    }
    .help-center-index .topic-tabs-title {
        margin-bottom: 20px;
    }
    .help-center-topic-panel {
        padding: 20px 40px 30px;
    }
    .search-bar-title-container.toggleable .search-bar-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 1239px) {
    .olm-diagram {
        margin-bottom: 120px;
        margin-top: 60px;
    }
    .olm__tooltip {
        padding: 15px;
    }
     .olm__tooltip--cur {
        right: 50px;
        top: 180px;
        width: 280px;
    }
    .olm__tooltip--res {
      bottom: 180px;
      right: 90px;
      width: 310px;
    }
    .olm__tooltip--ass {
        bottom: 120px;
        left: 165px;
        width: 350px;
    }
    .olm__tooltip--ana {
        bottom: 180px;
        left: 90px;
        width: 310px;
    }
    .olm__tooltip--dis {
        left: 50px;
        top: 180px;
        width: 280px;
    }
}

@media screen and (min-width: 1240px) {
  .olm-diagram {
      margin-top: 60px;
  }
  .olm__tooltip {
        padding: 15px;
    }
    .olm__tooltip:not(.olm__tooltip--ass) {
        top: 50%;
        transform: translateY(-50%) scale(0.95);
    }
    .olm__tooltip--cur {
        padding-right: 50px;
        right: 150px;
        width: 275px;
    }
    .olm__tooltip--res {
        padding-right: 50px;
        right: 150px;
        width: 330px;
    }
    .olm__tooltip--ass {
        bottom: 120px;
        left: 170px;
        width: 370px;
    }
    .olm__tooltip--ana {
        left: 150px;
        padding-left: 50px;
        width: 330px;
    }
    .olm__tooltip--dis {
        left: 150px;
        padding-left: 50px;
        width: 275px;
    }
    .dr__layout {
        grid-gap: 75px 60px;
        grid-template-columns: repeat(3, 2fr);
    }
}
@media screen and (max-width: 1013px) {
    .pdl__diagram {
        display: none;
    }
}
.admin-landing-leaders-think-section__layout {
background: rgba(255,255,255,.9);
border-top-left-radius: 10px;
border-top-right-radius: 10px;
box-sizing: border-box;
max-width: 525px;
width: 100%;
}
.admin-landing-leaders-think-section__divider {
background-color: var(--primary);
border: none;
display: block;
height: 3px!important;
margin: 15px auto 20px 0;
width: 100px;
opacity: 1!important;
}

.teacher-section {
    margin: 0;
    min-width: 974px;
    padding: 0;
    width:100%
}
.teacher-content {
    display: block;
    margin: 0 auto;
    padding-bottom: 25px;
    padding-top: 25px;
    width:974px
}
.responsive .teacher-section {
    min-width:320px
}
.how-it-works-section .how-it-work-hdr {
    font-size: 25px;
    color:#00aeef
}

.how-it-works-section .teacher-content {
    padding-top:20px
}

.how-it-works-section .find-out-btn-container {
    text-align:center
}
.how-it-works-section .teacher-content {
    padding-top:20px
}

.how-it-works-section .how-it-work-hdr {
    font-size: 25px;
    margin-bottom:20px
}
.how-it-works-section .how-it-work-hdr {
    font-size: 32px;
    margin-bottom:25px
}
.how-it-works-section .teacher-content {
    padding-top: 40px;
    padding-bottom:40px
}

.how-it-works-section .how-it-work-hdr {
    margin-bottom:35px
}

.teacher-diagram-container {
    padding: 10px 0;
    max-width: 387px;
    max-height: 215px;
    margin: 0 auto;
    width: 100%;
}
.teacher-diagram {
    box-sizing: border-box;
    padding-bottom: calc(100% * (5 / 9));
    position: relative;
}

.teacher-diagram-container {
    display: none;
}
.teacher-diagram-container {
    display: block;
    max-width: 873px;
    max-height: 485px;
}
.teacher-diagram-container {
    padding-bottom: 0;
}
.teacher-diagram-img {
    display: block;
    position:absolute
}
.how-it-works-bubble-top-left {
    width: 54px;
    height: 36px;
}
.how-it-works-bubble-top-left {
    top: 25%;
    left: 28%;
    transform: translateX(-25%);
}
.how-it-works-bubble-top-left {
    width: 152px;
    height:72px
}
.how-it-works-bubble-top-left {
    transform:translate(-37%, -25%)
}
.how-it-works-bubble-top-left {
    transform:translate(-37%, -15%)
}
.olm-diagram-item {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    border-radius: 50%;
    display: block;
    height: calc(25% * 9 / 5);
    position: absolute;
    text-decoration: none;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition:all 150ms ease-in-out
}
.olm-diagram-item {
    height: 215px;
    width:215px
}
.olm-diagram-item-curriculum {
    background-color: #03a5ed;
    background-image: linear-gradient(to bottom, #27adf7, #00d5f0);
    left: 50%;
    top: -1%;
    transform:translateX(-50%)
}
.olm-diagram-item-curriculum:hover {
    transform:translateX(-50%) scale(1.05)
}

.olm-diagram-item-curriculum .olm-diagram-description-container {
    left: 95%;
    top: 0;
    padding-left:22px
}

.olm-diagram-item-curriculum .olm-diagram-description {
    background-color:#e7f9fe
}

.olm-diagram-item-curriculum .olm-diagram-description:after {
    border-color: transparent #e7f9fe transparent transparent;
    border-width: 8px 20px 8px 0;
    bottom: 18px;
    right:calc(100% - 1px)
}

.olm-diagram-item-curriculum .olm-diagram-learn-more {
    color:#03a5ed
}
.olm-diagram-learn-more .after-arrow {
    bottom: 1px;
    height: 15px;
    position: absolute;
    right: -17px;
    width:15px
}
.olm-diagram-description-container {
    display: none;
    position:absolute
}
.olm-diagram-description {
    border-radius: 5px;
    color: #545454;
    font: normal 12px/1.5em Verdana, sans-serif;
    padding: 10px 15px;
    position: relative;
    width:210px
}

.olm-diagram-description:after {
    border-style: solid;
    content: "";
    display: block;
    height: 0;
    width: 0;
    position:absolute
}
.olm-diagram-description {
    font-size: 13px;
    width:230px
}
.after-arrow-stroke {
        fill: none;
        stroke-linecap: round;
        stroke-miterlimit: 10;
        stroke-width: 2px;
      }

.olm-diagram-item-curriculum .olm-diagram-learn-more .after-arrow-stroke {
    stroke:#03a5ed
}
.olm-diagram-hdr {
    color: #fff;
    display: none;
    font: 300 10px "Roboto Slab", sans-serif;
    font-size: 2.4vw;
    padding-top: 5px;
    text-align:center
}
.olm-diagram-hdr .bold-hdr {
    display: block;
    font-size: 1.5em;
    font-weight:700
}
.olm-diagram-hdr {
    display: block;
    padding:14px 0 2px 0
}
.olm-diagram-hdr {
    font-size: 2vw;
    padding:0 0 5px 0
}
.olm-diagram-hdr {
    padding-top:10px
}
.olm-diagram-hdr {
    font-size:20px
}
.olm-diagram-icon-curriculum {
    width: 37px;
    height:42px
}
.olm-diagram-icon-curriculum {
    width: 80px;
    height:55px
}
.olm-diagram-icon-curriculum {
    width: 100px;
    height:68px
}
.olm-diagram-icon-curriculum {
    width: 100px;
    height:68px
}
.olm-diagram-item-diagnostic {
    background-color: #48ae03;
    background-image: linear-gradient(to bottom, #56b521, #63dc38);
    left: 2%;
    top: 50%;
    transform:translateY(-50%)
}
.olm-diagram-item-diagnostic:hover {
    transform:translateY(-50%) scale(1.05)
}

.olm-diagram-item-diagnostic .olm-diagram-description-container {
    bottom: 98%;
    left: 0;
    padding-bottom:22px
}

.olm-diagram-item-diagnostic .olm-diagram-description {
    background-color:#e7f9fe
}

.olm-diagram-item-diagnostic .olm-diagram-description:after {
    border-color: #e7f9fe transparent transparent transparent;
    border-width: 20px 8px 0 8px;
    left: 60px;
    top:calc(100% - 1px)
}

.olm-diagram-item-diagnostic .olm-diagram-learn-more {
    color:#48ae03
}

.olm-diagram-item-diagnostic .olm-diagram-learn-more .after-arrow-stroke {
    stroke:#48ae03
}
.olm-diagram-item-diagnostic .olm-diagram-description-container {
    bottom:calc(100% - 8px)
}
.olm-diagram-icon-diagnostic {
    width: 38px;
    height:41px
}
.olm-diagram-icon-diagnostic {
    width: 81px;
    height:54px
}
.olm-diagram-icon-diagnostic {
    width: 100px;
    height:68px
}
.olm-diagram-icon-diagnostic {
    width: 100px;
    height:68px
}


.olm-diagram-item-analytics {
    background-color: #f49c20;
    background-image: linear-gradient(to top, #fdc040, #f49c20);
    bottom: -1%;
    left: 50%;
    transform:translateX(-50%)
}
.olm-diagram-item-analytics:hover {
    transform:translateX(-50%) scale(1.05)
}

.olm-diagram-item-analytics .olm-diagram-description-container {
    bottom: 0;
    right: 95%;
    padding-right:22px
}

.olm-diagram-item-analytics .olm-diagram-description {
    background-color:#fdf4e8
}

.olm-diagram-item-analytics .olm-diagram-description:after {
    border-color: transparent transparent transparent #fdf4e8;
    border-width: 7px 0 7px 20px;
    left: calc(100% - 1px);
    top:18px
}

.olm-diagram-item-analytics .olm-diagram-learn-more {
    color:#f49c20
}
.olm-diagram-learn-more {
    display: inline-block;
    padding-top: 5px;
    position: relative;
}

.olm-diagram-item-analytics .olm-diagram-learn-more .after-arrow-stroke {
    stroke:#f49c20
}
.olm-diagram-item-analytics .olm-diagram-description-container {
    right:calc(100% - 13px)
}

.olm-diagram-icon-analytics {
    width: 36px;
    height:40px
}
.olm-diagram-icon-analytics {
    width: 80px;
    height:50px
}
.olm-diagram-icon-analytics {
    width: 99px;
    height:62px
}
.olm-diagram-icon-analytics {
    width: 99px;
    height:62px
}
.olm-diagram-icon-guidance {
    width: 36px;
    height:40px
}
.olm-diagram-icon-guidance {
    width: 80px;
    height:54px
}
.olm-diagram-icon-guidance {
    width: 100px;
    height:68px
}
.olm-diagram-icon-guidance {
    width: 100px;
    height:68px
}
.olm-diagram-item-guidance {
    background-color: #9d38dc;
    background-image: linear-gradient(to bottom, #9d38dc, #a344df 33%, #b566e6 93%, #b86be8);
    right: 2%;
    top: 50%;
    transform:translateY(-50%)
}
.olm-diagram-item-guidance:hover {
    transform:translateY(-50%) scale(1.05)
}

.olm-diagram-item-guidance .olm-diagram-description-container {
    right: 0;
    top: 98%;
    padding-top:22px
}

.olm-diagram-item-guidance .olm-diagram-description {
    background-color:#f9f3fd
}

.olm-diagram-item-guidance .olm-diagram-description:after {
    border-color: transparent transparent #f9f3fd transparent;
    border-width: 0 8px 20px 8px;
    bottom: calc(100% - 1px);
    right:60px
}

.olm-diagram-item-guidance .olm-diagram-learn-more {
    color:#9d38dc
}

.olm-diagram-item-guidance .olm-diagram-learn-more .after-arrow-stroke {
    stroke:#9d38dc
}
.how-it-works-bubble-top-right {
    width: 58px;
    height:36px
}
.how-it-works-bubble-top-right {
    width: 148px;
    height:82px
}
.how-it-works-bubble-top-right {
    transform:translate(35%, -25%)
}
.how-it-works-bubble-top-right {
    top: 25%;
    right: 28%;
    transform:translateX(25%)
}
.how-it-works-bubble-top-right {
    transform:translate(35%, -15%)
}

.how-it-works-bubble-btm-left {
    width: 55px;
    height:39px
}
.how-it-works-bubble-btm-left {
    bottom: 25%;
    left: 28%;
    transform:translateX(-25%)
}
.how-it-works-bubble-btm-left {
    width: 146px;
    height:71px
}
.how-it-works-bubble-btm-left {
    transform:translateX(-29%)
}
.how-it-works-bubble-btm-right {
    width: 58px;
    height:38px
}
.how-it-works-bubble-btm-right {
    bottom: 25%;
    right: 28%;
    transform:translateX(25%)
}
.how-it-works-bubble-btm-right {
    width: 145px;
    height:64px
}
.how-it-works-bubble-btm-right {
    transform:translateX(31%)
}
.how-it-works-bubble-btm-right {
    transform:translateX(30%)
}
.olm-diagram-item:hover .olm-diagram-description-container {
    display:block
}

.portfolio-three {
    padding-top: 100px;
    padding-bottom:100px
}
.portfolio-three .portfolio-menu button:hover, .portfolio-three .portfolio-menu button.active {
    color:var(--primary)
}

.portfolio-three .portfolio-menu button:hover::before, .portfolio-three .portfolio-menu button.active::before {
    opacity:1
}

.portfolio-three .hide {
    display:none
}

.portfolio-three .show {
    display:block
}
.portfolio-style-three {
    margin-top:30px
}

.portfolio-style-three .portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius:8px
}

.portfolio-style-three .portfolio-image img {
    width: 100%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition:all .3s ease-out 0s
}

.portfolio-style-three .portfolio-image .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s ease-out 0s;
    -moz-transition: all .5s ease-out 0s;
    -ms-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
    background-color: rgba(255, 255, 255, .8);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
    transform: scale(.95);
    border-radius:8px
}

.portfolio-style-three .portfolio-image .portfolio-content {
    padding:16px
}

.portfolio-style-three .portfolio-image .portfolio-icon {
    position: relative;
    display: inline-block;
    margin:0 5px
}

.portfolio-style-three .portfolio-image .portfolio-icon a {
    font-size: 28px;
    color: var(--white);
    position: relative;
    z-index: 5;
    line-height: 60px;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    background-color: var(--primary);
    border-radius: 8px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition:all .3s ease-out 0s
}

.portfolio-style-three .portfolio-image .portfolio-icon a:hover {
    background-color:var(--primary-dark)
}

.portfolio-style-three .portfolio-text {
    padding-top:16px
}

.portfolio-style-three .portfolio-title a {
    color: var(--black);
    font-size: 24px;
    line-height:30px
}
.portfolio-style-three:hover .portfolio-overlay {
    opacity: 1;
    visibility:visible
}

.standard-icon {
width: 100px;
height: 100px;
border-radius: 50%;
margin: 30px auto;
background: var(--white);
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
font-size: 40px;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-ms-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
position: relative;
}

.border-icon-green{
  border: 2px solid #52c300;
}
.border-icon-secondary{
  border: 2px solid var(--secondary);
}
.border-icon-violet{
  border: 2px solid #9c6edc;
}
.br-10{
  border-radius: 10px!important;
}
.site-nav-footer {
    padding: 40px 0;
    background-color: #efefef;
}

.site-nav-footer .copyright {
    color: #bababa;
    font-size: 10px;
    font-family: Verdana,sans-serif;
    font-weight: 700;
    line-height: 20px;
    margin: 15px 0 0;
    text-align: center;
}

.section-school{
  background-image: url('../images/bg-school.jpg');
}

.admin-landing-learners-section .ixl-content {
    padding-bottom: 60px;
}
.admin-landing-learners-section .admin-landing-learners-section__description {
    text-align: center;
}
.admin-landing-learners-section__description {
    margin-bottom: 30px;
}
.admin-landing-learners-section__layout {
    align-items: stretch;
    display: flex;
    gap: 20px;
    margin: 0 auto;
}
.admin-landing-learners-section__card {
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    display: grid;
    grid-template-columns: 70px 1fr 19px;
    padding: 15px 20px;
}
.admin-landing-learners-section__card__title {
    font: normal 18px/1.2em Roboto Slab, sans-serif;
}
.admin-landing-learners-section__go-to-icon {
    height: 19px;
    justify-self: end;
    width: 19px;
}
@media screen and (max-width: 800px) {
    .admin-landing-learners-section__layout {
        flex-direction: column;
        gap: 15px;
    }
}
@media screen and (max-width: 660px) {
    .admin-landing-learners-section__layout {
        max-width: 380px;
    }
    .admin-landing-learners-section__card__title {
        margin-bottom: 0;
    }
    .admin-landing-learners-section__card__description {
        display: none;
    }
    .responsive .section-title {
        font-size: 24px;
    }
}
.admin-landing-learners-section__card--rti:focus-visible,
.admin-landing-learners-section__card--rti:hover {
    outline: 1px solid #0cd9f2;
}
.admin-landing-learners-section__card--rti .admin-landing-learners-section__card__icon {
    height: 40px;
    width: 57px;
}
.admin-landing-learners-section__card--rti .admin-landing-learners-section__card__title {
    color: #0cd9f2;
}
.admin-landing-learners-section__card--blended-learning:focus-visible,
.admin-landing-learners-section__card--blended-learning:hover {
    outline: 1px solid #0cd9f2;
}
.admin-landing-learners-section__card--blended-learning .admin-landing-learners-section__card__icon {
    height: 58px;
    width: 40px;
}
.admin-landing-learners-section__card--blended-learning .admin-landing-learners-section__card__title {
    color: #0cd9f2;
}
.admin-landing-learners-section__card--assessments:focus-visible,
.admin-landing-learners-section__card--assessments:hover {
    outline: 1px solid #32adfc;
}
.admin-landing-learners-section__card--assessments .admin-landing-learners-section__card__icon {
    height: 50px;
    width: 55px;
}
.admin-landing-learners-section__card--assessments .admin-landing-learners-section__card__title {
    color: #32adfc;
}
.admin-landing-learners-section__card--ell:focus-visible,
.admin-landing-learners-section__card--ell:hover {
    outline: 1px solid #32adfc;
}
.admin-landing-learners-section__card--ell .admin-landing-learners-section__card__icon {
    height: 58px;
    width: 50px;
}
.admin-landing-learners-section__card--ell .admin-landing-learners-section__card__title {
    color: #32adfc;
}
.admin-landing-learners-section__card--sped:focus-visible,
.admin-landing-learners-section__card--sped:hover {
    outline: 1px solid #4282ff;
}
.admin-landing-learners-section__card--sped .admin-landing-learners-section__card__icon {
    height: 58px;
    width: 64px;
}
.admin-landing-learners-section__card--sped .admin-landing-learners-section__card__title {
    color: #4282ff;
}
.admin-landing__title--paragraph-sibling {
    margin-bottom: 0.6em;
}
.hover-zoom-card {
    background: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
    transition: 0.2s ease;
}
.hover-zoom-card:focus,
.hover-zoom-card:hover {
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}
.hover-zoom-card:focus .underline-on-hover,
.hover-zoom-card:hover .underline-on-hover {
    text-decoration: underline;
}
.hover-zoom-card:focus:not(:focus-visible) {
    transform: scale(1);
}
.hover-zoom-card:focus:not(:focus-visible):not(.show-box-shadow) {
    box-shadow: none;
}
.hover-zoom-card:focus:not(:focus-visible) .underline-on-hover {
    text-decoration: none;
}
.hover-zoom-card:focus-visible,
.hover-zoom-card:hover {
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}
.hover-zoom-card:focus-visible .underline-on-hover,
.hover-zoom-card:hover .underline-on-hover {
    text-decoration: underline;
}
.hover-zoom-card:active,
.hover-zoom-card:focus {
    outline: 0;
}
.hover-zoom-card.rounded-corners {
    border-radius: 5px;
}
.hover-zoom-card.rounded-corners {
    border-radius: 5px;
}
.show-box-shadow {
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
}

.help-center-index .help-center-index-tabs-section {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}
.help-section-title {
    color: #767676;
    font: 300 18px/1.3 Roboto Slab, sans-serif;
}
.help-center-index .topic-tabs-title {
    margin: 25px 0 10px;
    padding-left: 10px;
}
.topic-tabs-container {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
}
.topic-tabs-container .generic-tablist {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: flex-start;
    width: 260px;
}
.topic-tabs-container .generic-tabpanels {
    position: relative;
    width: 100%;
}
.topic-tabs-container .generic-tab-panel {
    height: 100%;
    outline: 0;
    width: 100%;
}
.topic-tabs-container .generic-tab-panel.keyboard-focused:after {
    border: 2px solid #0070d6;
    box-sizing: border-box;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
.topic-tabs-container .generic-tablist {
        width: 260px;
    }

    .topic-tabs-container .generic-tab {
    background-color: #fafafa;
    border: 0.5px solid #e5e5e5;
    border-radius: 3px 0 0 3px;
    border-right: 0;
    cursor: default;
    height: 53px;
    line-height: 19px;
    position: relative;
    text-align: right;
    width: 260px;
}
.topic-tabs-container .generic-tab .topic-tab {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 0 14px;
}
.topic-tabs-container .generic-tab .topic-tab .topic-tab-title {
    font: 16px Verdana, sans-serif;
}
.topic-tabs-container .generic-tab .topic-tab .topic-tab-subtitle {
    color: #858585;
    font-size: 13px;
}
.topic-tabs-container .generic-tab:focus {
    outline: 0;
}
.topic-tabs-container .generic-tab:before {
    border-radius: 3px 0 0 3px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 10px;
}
.topic-tabs-container .generic-tab:nth-child(3n + 1) {
    color: #007bc4;
}
.topic-tabs-container .generic-tab:nth-child(3n + 1).active:before {
    background-color: #007bc4;
}
.topic-tabs-container .generic-tab:nth-child(3n + 2) {
    color: #5faf43;
}
.topic-tabs-container .generic-tab:nth-child(3n + 2).active:before {
    background-color: #5faf43;
}
.topic-tabs-container .generic-tab:nth-child(3n) {
    color: #4bb893;
}
.topic-tabs-container .generic-tab:nth-child(3n).active:before {
    background-color: #4bb893;
}
.topic-tabs-container .generic-tab.active {
    background-color: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.topic-tabs-container .generic-tab.active:after {
    background-color: #fff;
    content: "";
    height: 100%;
    position: absolute;
    right: -5px;
    top: 0;
    width: 10px;
    z-index: 1;
}
.topic-tabs-container .generic-tab:hover:not(.active) {
    background-color: #fff;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.topic-tabs-container .generic-tab.keyboard-focused:after {
    background-color: initial;
    border: 2px solid #0070d6;
    box-sizing: border-box;
    content: "";
    cursor: pointer;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.help-center-topic-panel {
    box-sizing: border-box;
    height: 100%;
    padding: 20px 20px 30px;
    width: 100%;
}
.help-center-topic-panel .help-center-breadcrumbs {
    margin-bottom: 15px;
    margin-top: -30px;
}
.help-center-topic-panel .topic-info-container {
    align-items: center;
    display: flex;
    margin-bottom: 20px;
}
.help-center-topic-panel .topic-info-container .topic-icon {
    margin-right: 10px;
}
.help-center-topic-panel .topic-info-container .topic-title {
    margin-bottom: 8px;
}
.help-center-topic-panel .topic-panel-article-list-title {
    color: #545454;
    font: 16px Verdana, sans-serif;
    margin-bottom: 15px;
}
.help-center-topic-panel .help-center-article-list-container .article-list-toggle-button {
    margin-bottom: 30px;
}
.help-primary-content-subtitle {
    color: #007bc4;
    font: 20px/1.25 Roboto Slab, sans-serif;
}
.text-color-black {
    color: #545454;
}
.help-paragraph.sub-section-p {
    color: #545454;
}
.help-center-article-list-container.article-list-accordion-theme {
    background-color: #fafafa;
}
.help-center-article-list-container.article-list-tab-theme {
    background-color: #fff;
}
.help-center-article-list-container .article-row {
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
}
.help-center-article-list-container .article-row.last-visible-row {
    border-bottom: none;
}
.help-center-article-list-container .article-row .article-link {
    color: #007db8;
    display: block;
    font: 15px/1.6 IXL Verdana, Verdana, sans-serif;
    text-decoration: none;
}
.help-center-article-list-container .article-row .article-link:hover {
    color: #00609a;
    text-decoration: underline;
}
.help-center-article-list-container .article-list-toggle-button {
    background-color: initial;
    border: none;
    color: #545454;
    font: 15px/1.6 IXL Verdana, Verdana, sans-serif;
    margin-bottom: 10px;
    margin-top: 5px;
}
.help-center-article-list-container .article-list-toggle-button .article-list-arrow {
    margin-left: 4px;
}
.help-center-article-list-container .article-list-toggle-button .article-list-arrow-up {
    transform: rotate(180deg);
}
.animate-height-container {
    overflow: hidden;
}
.animate-height-container .animate-height-inner-wrapper {
    overflow: auto;
}
.overflow-content-section .overflow-content {
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    width: 974px;
}
.overflow-section-responsive .overflow-content {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1014px;
    min-width: 320px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}
.search-bar-section .overflow-content .search-bar-content {
    margin: 0 auto;
    max-width: 425px;
    position: relative;
    width: 90%;
}
.search-bar-title-container {
    margin-bottom: 12px;
    text-align: center;
}
.search-bar-title-container .search-bar-title {
    display: inline;
    font: normal 24px/32px Roboto Slab, sans-serif;
}
.search-bar-title-container .open-search-magnifying-glass-button {
    background-color: inherit;
    background-color: #2da8b3;
    border: 0;
    border-radius: 9px;
    color: inherit;
    height: 38px;
    margin-left: 8px;
    outline: none;
    padding: 0;
    width: 38px;
}
.search-bar-title-container .open-search-magnifying-glass-button .magnifying-glass-icon {
    height: 18px;
    vertical-align: middle;
    width: 18px;
}
.search-bar-title-container.toggleable {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
    padding-right: 28px;
}
.search-bar-title-container.toggleable .search-bar-title {
    font: normal 22px/1em Roboto Slab, sans-serif;
}
@media screen and (min-width: 360px) {
    .search-bar-title-container.toggleable .search-bar-title {
        font-size: 25px;
    }
    .search-bar-title-container.toggleable .open-search-magnifying-glass-button {
        margin-left: 8px;
    }
}
@media screen and (min-width: 420px) {
    .search-bar-title-container.toggleable .open-search-magnifying-glass-button {
        margin-left: 45px;
    }
}
.search-bar-and-icon .search-bar-container .search-magnifying-glass-button .magnifying-glass-icon {
    height: 18px;
    vertical-align: middle;
    width: 18px;
}
.search-bar-and-icon .search-bar-container .search-magnifying-glass-button .magnifying-glass-icon path {
    fill: #fafafa;
    transition: fill 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.search-bar-and-icon.open .search-magnifying-glass-button .magnifying-glass-icon path {
    fill: #545454;
}
.search-bar-and-icon {
    display: flex;
    opacity: 0;
    transition: z-index 0s 0.3s, opacity 0s 0.3s;
    width: 100%;
    z-index: -1;
}
.search-bar-and-icon.toggleable {
    position: absolute;
    top: 0;
}
.search-bar-and-icon .search-bar-container {
    display: flex;
    justify-content: flex-end;
    position: relative;
    width: 100%;
}
.search-bar-and-icon .search-bar-container:focus {
    outline: 0;
}
.search-bar-and-icon .search-bar-container .search-form {
    background-color: #2da8b3;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    height: 38px;
    justify-content: flex-end;
    outline: 0;
    transition: left 0.3s cubic-bezier(0.33, 1, 0.68, 1), width 0.3s cubic-bezier(0.33, 1, 0.68, 1), background-color 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    width: 38px;
    z-index: 3;
}
.search-bar-and-icon .search-bar-container .search-form:focus-within {
    box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}
.search-bar-and-icon .search-bar-container .search-bar-text-input {
    background-color: initial;
    border: none;
    box-sizing: border-box;
    color: #545454;
    flex: 1 1 auto;
    font: normal 15px/17px Verdana, sans-serif;
    height: 100%;
    padding-left: 15px;
    padding-right: 32px;
    text-overflow: ellipsis;
    width: 100%;
}
.search-bar-and-icon .search-bar-container .search-bar-text-input:focus {
    outline: 0;
}
.search-bar-and-icon .search-bar-container .search-bar-text-input::-ms-clear {
    display: none;
}
.search-bar-and-icon .search-bar-container .search-magnifying-glass-button {
    background-color: inherit;
    background-color: initial;
    border: 0;
    border-radius: 0 8px 8px 0;
    color: inherit;
    height: 38px;
    outline: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
}
.search-bar-and-icon .search-bar-container .search-magnifying-glass-button .magnifying-glass-icon {
    height: 18px;
    vertical-align: middle;
    width: 18px;
}
.search-bar-and-icon .search-bar-container .search-magnifying-glass-button .magnifying-glass-icon path {
    fill: #fafafa;
    transition: fill 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.search-bar-and-icon .search-bar-container .search-magnifying-glass-button:hover {
    cursor: pointer;
}
.search-bar-and-icon .x-button {
    background-color: inherit;
    background-color: initial;
    border: 0;
    color: inherit;
    height: 38px;
    margin-left: 10px;
    opacity: 0;
    outline: none;
    padding: 0;
    transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    width: 18px;
}
.search-bar-and-icon .x-button .x-icon {
    background-color: initial;
    height: 18px;
    vertical-align: middle;
    width: 18px;
}
.search-bar-and-icon.open {
    opacity: 1;
    transition: z-index 0s 0s, opacity 0s 0s;
    z-index: 2;
}
.search-bar-and-icon.open .search-form {
    background-color: #fafafa;
    box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    height: 38px;
    transition: left 0.3s cubic-bezier(0.33, 1, 0.68, 1), width 0.3s cubic-bezier(0.33, 1, 0.68, 1), background-color 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    width: 100%;
}
.search-bar-and-icon.open .search-magnifying-glass-button .magnifying-glass-icon path {
    fill: #545454;
}
.search-bar-and-icon.open .x-button {
    opacity: 1;
}
.search-bar-and-icon .x-button {
    background-color: inherit;
    background-color: initial;
    border: 0;
    color: inherit;
    height: 38px;
    margin-left: 10px;
    opacity: 0;
    outline: none;
    padding: 0;
    transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    width: 18px;
}
.search-bar-and-icon .x-button .x-icon {
    background-color: initial;
    height: 18px;
    vertical-align: middle;
    width: 18px;
}
.search-bar-and-icon.open .x-button {
    opacity: 1;
}
.help-center-contact-section {
  padding-bottom: 60px;
  text-align: center;
}
.help-center-contact-section .section-title {
  font: normal 15px/1.2 Verdana, sans-serif;
  padding: 50px 0 20px;
}
a:hover .help-center-cta-icon svg path{
  stroke:#ffffff;
}

.item-phone a {
color: #000;
cursor: text;
text-decoration: none;
}
.link-underline{
  text-decoration: underline!important;
}
.contact-frm li{
  padding: 5px 0;
}

.page-header.theme-bg-dark .page-heading {
    color: #fff;
}
.page-header.theme-bg-dark .page-intro {
    color: #fff;
    -webkit-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
}
.theme-bg-dark {
    background: #374EA2 !important;
}
.position-relative {
    position: relative !important;
}
.theme-bg-shapes-right {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    overflow: hidden;
}
.theme-bg-shapes-right:before {
    content: "";
    width: 300px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    right: -60px;
    top: 0;
    border-radius: 4px;
    -webkit-transform: skew(25deg, -10deg);
    transform: skew(25deg, -10deg);
    moz-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}
.theme-bg-shapes-right:after {
    content: "";
    width: 150px;
    height: 600px;
    background: rgba(255, 255, 255, 0.15);
    position: absolute;
    right: 0px;
    top: 30px;
    border-radius: 6px;
    -webkit-transform: skew(25deg, 10deg);
    transform: skew(25deg, 10deg);
    moz-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}
.theme-bg-shapes-left {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    overflow: hidden;
}
.theme-bg-shapes-left:before {
    content: "";
    width: 300px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: -90px;
    top: 0;
    border-radius: 6px;
    -webkit-transform: skew(25deg, -12deg);
    transform: skew(25deg, -12deg);
    moz-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}
.theme-bg-shapes-left:after {
    content: "";
    width: 150px;
    height: 600px;
    background: rgba(255, 255, 255, 0.15);
    position: absolute;
    left: 0px;
    top: 30px;
    border-radius: 4px;
    -webkit-transform: skew(-25deg, 10deg);
    transform: skew(-25deg, 10deg);
    moz-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}
.portfolio-three .portfolio-menu button {
    border: none;
    background: 0 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-3);
    line-height: 48px;
    padding: 0 30px;
    position: relative;
    display: inline-block;
    z-index: 5;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    cursor: pointer;
    margin: 0 2px;
    text-transform:uppercase
}

.portfolio-three .history button {
  border: none;
  background: 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-3);
  line-height: 48px;
  padding: 0 20px;
  position: relative;
  display: inline-block;
  z-index: 5;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  cursor: pointer;
  margin: 0 2px;
  text-transform:uppercase
}

.portfolio-three .portfolio-menu button::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    z-index: -1;
    opacity: 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    border-radius:4px
}

.portfolio-three .portfolio-menu button:hover, .portfolio-three .portfolio-menu button.active {
    color:var(--primary)
}
.portfolio-three .history button::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius:4px
}
.portfolio-three .history button:hover, .portfolio-three .history button.active {
  color:var(--secondary)
}

.portfolio-three .portfolio-menu button:hover::before, .portfolio-three .portfolio-menu button.active::before {
    opacity:1
}
.testimonial-card {
margin-bottom: 30px;
position: relative;
display: inline-block;
width: 100%;
box-sizing: border-box;
}
.quote-card .quote-text {
font-size: 15px;
line-height: 1.6;
color: #545454;
background-color: #fff;
border: 1px solid #e4e4e4;
border-radius: 5px;
margin-bottom: 20px;
padding: 30px;
position: relative;
}
.quote-card .quote-text:before {
left: 75px;
bottom: -16px;
border-color: #e4e4e4 transparent;
border-width: 16px 16px 0 0;
}
.quote-card .quote-text:after, .quote-card .quote-text:before {
content: '';
display: block;
position: absolute;
width: 0;
height: 0;
border-style: solid;
}
.quote-card .quote-text:after {
left: 76px;
bottom: -14px;
border-color: #fff transparent;
border-width: 15px 15px 0 0;
}
.quote-card .quote-text:after, .quote-card .quote-text:before {
content: '';
display: block;
position: absolute;
width: 0;
height: 0;
border-style: solid;
}
.testimonial-quotations {
font-size: 15px;
line-height: 1.6;
white-space: nowrap;
}
q {
quotes: none;
}
.quote-card .quote-author {
font-family: "Roboto Slab",sans-serif;
font-size: 16px;
margin-left: 30px;
color: #545454;
}
.quote-card .quote-author:after {
content: "";
display: block;
clear: both;
}
.quote-card .quote-author .author-description, .quote-card .quote-author .author-name {
display: block;
margin-bottom: 4px;
float: left;
line-height: 1.2;
}
.quote-card .quote-author .author-description, .quote-card .quote-author .author-name {
display: block;
margin-bottom: 4px;
float: left;
line-height: 1.2;
}
.quote-card .quote-author .author-description {
color: #00b971;
}
.quote-card .testimonial-quotations::after, .quote-card .testimonial-quotations::before {
color: #F58220;
}
.testimonial-quotations::before {
content: '“';
}
.testimonial-quotations::before {
padding-right: 20px;
}
.testimonial-quotations::after {
content: '”';
}
.testimonial-quotations::after {
padding-left: 2px;
}
.testimonial-quotations span {
white-space: normal;
}
.testimonial-quotations span::after {
content: '';
white-space: nowrap;
}
.testimonial-quotations::after, .testimonial-quotations::before {
color: #cacaca;
display: inline-block;
font-family: "Trebuchet MS",sans-serif;
transform: scale(3) translate(33.33%,3px);
}
.quote-card .quote-address {
font-family: "Roboto Slab",sans-serif;
font-size: 14px;
color: #ababab;
line-height: 1.2;
margin: 1px 0 0 30px;
}
.divider-bar {
  border: 1px solid #e5e5e5;
  margin: 30px 0;
  }
  .test{
    color:#fff;
  }
  .help-center li {
    color: var(--dark-3);
    list-style: circle;
  }
  ul.help-center {
    margin-left: 40px;
  }

  .item-coreValue .img {
    position: relative;
    padding-top: 60.59%;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
  }
  .item-coreValue .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
  }
    img {
      max-width: 100%;
      vertical-align: middle;
      -o-object-fit: cover;
      object-fit: cover;
    }
    .item-coreValue .ct {
      padding-top: 2.5rem;
      position: relative;
      text-align: center;
    }
    .item-coreValue .ct .title {
      margin-bottom: 0.3rem;
      font-size: 1.8rem;
      font-weight: 700;
      text-transform: uppercase;
    }
    .item-coreValue .ct .desc {
      font-size: 1.2rem;
    }
    .item-coreValue .ct .number {
      position: absolute;
      top: -2.8rem;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 5.6rem;
      height: 5.6rem;
      background-color: #fff;
      border-radius: 50%;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #EE0033;
      font-weight: 700;
      font-size: 2.4rem;
    }
.hist {
  position: relative;
  background: #faf6f8;
  padding: 70px 0;
  }


