@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "poppins", sans-serif;
  color: #3F4254;
  background: #fff;
}

a {
  color: var(--kay-blue);
  text-decoration: none;
}

a:hover {
  color: #00cc95;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "poppins", sans-serif;
}

::-webkit-scrollbar {
  width: 8px;
  height: 5px;
  background-color: var(--white);
  -webkit-transition: width .2s;
  border-radius: 0 10px 10px 0
}

::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
  border-radius: 50px
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--kay-blue);
  transition: background-color .8s
}

@media (max-width: 768px) {
	::-webkit-scrollbar {
		width: 3px;
		background-color: var(--white);
		opacity: 0.5;
	}
}

:root {
  --fs-h-xxl: 38px;
  --fs-h-xl: 34px;
  --fs-h-lg: 28px;
  --fs-h-md: 24px;
  --fs-h-sm: 20px;
  --fs-h-xs: 18px;
  --fs-h-xxs: 16px;

  --fs-t-lg: 18px;
  --fs-t-md: 16px;
  --fs-t-sm: 14px;
  --fs-t-xs: 12px;

  --kay-blue: #1f60e7;
  --kay-light-blue: #22A7F0;
  --kay-space: #253053;
  --biology: #0f9d58;
  --chemistry: #e85f5d;
  --physics: #0095df;

}

.bg-kay {
  background: var(--kay-blue) !important;
}

.bg-kay-space {
  background: var(--kay-space) !important;
}

.text-kay {
  color: var(--kay-blue) !important;
}

.text-kay-space {
  color: var(--kay-space) !important;
}

.section {
  padding: 40px 0;
}
.section60 {
  padding: 60px 0;
}

.section-title {
  font-size: 30px;
  color: var(--kay-blue);
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}

.header-section {
  padding: 130px 0 40px;
  background: #f9f9f9;
}

.header-section-banner {
  padding: 150px 0 40px;
  background: #f1f1f1;
  min-height: 260px;
}

.header-section-banner .section-title {
  font-size: 42px;
  color: #333;
  font-weight: 600;
}


@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}

@media (min-width: 1400px) {
	.container {
    max-width: 1200px;
	}
}

.no-style {
  list-style: none;
  text-align: left;
  text-indent: -12px;
  margin-left: -12px;
}

.btn-blue,
.btn-blue:focus {
  padding: 10px 18px;
  margin-right: 0;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: #fff;
  background: var(--kay-blue);
  border: 2px solid var(--kay-blue);
}

.btn-blue i {
  font-size: 18px;
}

.btn-blue:hover {
  color: #fff;
  background: var(--kay-light-blue);
  border: 2px solid var(--kay-light-blue);
	transform: translateY(-7px) translateX(-7px);
	box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-white,
.btn-white:focus {
  padding: 10px 18px;
  margin-right: 0;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: var(--kay-blue);
  background: #fff;
  border: 2px solid #fff;
}

.btn-white:hover {
  color: #fff;
  background: var(--kay-blue);
  border: 2px solid var(--kay-blue);
	transform: translateY(-7px) translateX(-7px);
	box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.2);
}

.beta-position {
	position: fixed;
}
.btn-beta {
  position: absolute;
  left: -75px;
  top: 15px;
  padding-right: 30px;
  padding-left: 20px;
  border-radius: 30px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #3699FF;
  border-color: #3699FF;
}
.btn-beta:hover {
  color: #FFFFFF;
  background-color: #3699FF;
  border-color: #3699FF;
}

@media (max-width: 768px) {
  .btn-blue {
    padding: 6px 10px;
    font-size: 16px;
  }
	.beta-position {
		position: relative;
	}
  .btn-beta {
    position: relative;
    margin-bottom: 10px;
  }
}

.book {
  -webkit-animation: action 1s infinite alternate;
  animation: action 1s infinite alternate;
}

@-webkit-keyframes action {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes action {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .hide-on-mob {
    display: none;
  }
}

@media (max-width: 768px) {
  .btn-blue {
    padding: 6px 10px;
    font-size: 16px;
  }
}

.mySlides {
  transition: all 1.5s ease;
	animation:fading 3s infinite
}
@keyframes fading{
	0%{opacity:0}
	20%{opacity:1}
	80%{opacity:1}
	100%{opacity:0}
}
/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/

.modal .btn-close {
  padding: 0px;
  background: var(--kay-blue);
  cursor: pointer;
  position: absolute;
  top: -6px;
  right: -6px;
  border-radius: 5px;
  font-size: 28px;
  font-weight: 600;
  display: grid;
  align-content: center;
  color: #fff;
  opacity: 1;
}

.modal-text {
  font-weight: 600;
  font-size: 30px;
  color: var(--kay-blue);
}

.modal .icon {
  font-size: 25px;
  color: #3b5998;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  margin: 5px;
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
}

label.error {
  color: #e85f5d !important;
  font-size: 14px;
}

/* loader start  */
.loader {
  position: fixed;
  top: 0;
  z-index: 99999999;
  display: flex;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(10px);
  background: #00000080;
  justify-content: center;
  align-items: center;
}

.loading {
  width: 200px;
  height: 200px;
  border: 8px solid #1f60e7;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
      transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--kay-blue);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #00c28e;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	padding: 16px 0;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
}

#header.header-scrolled {
  margin: 0;
  border-radius: 0;
  backdrop-filter: blur(10px);
  background: rgb(255 255 255 / 70%);
  box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.1);
}

#header .logo {
  min-width: 100px;
	display: flex;
	width: fit-content;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 42px;
  object-fit: contain;
}

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
  }

  #header.header-scrolled,
  #header .header-container {
    backdrop-filter: none;
    background: #fff;
  }

  #header .logo {
    padding-left: 10px 10px 10px 0;
  }
}

#header .btn-signup,
#header .btn-signup:focus {
  padding: 8px 10px;
  margin-right: 0;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: #fff;
  background: var(--kay-blue);
  border: 2px solid var(--kay-blue);
}

#header .btn-login,
#header .btn-login:focus {
  padding: 8px 10px;
  margin-right: 0;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: var(--kay-blue);
  background: #fff;
  border: 2px solid var(--kay-blue);
}

#header .btn-signup i,
#header .btn-signup i {
  font-size: 18px;
}

#header .btn-signup:hover,
#header .btn-login:hover {
  color: #fff;
  background: var(--kay-light-blue);
  border: 2px solid var(--kay-light-blue);
}
.signup-modal .modal-body {
	display: grid;
	align-content: center;
}
.signup-modal .modal-content {
	background: var(--kay-blue);
}
.signup-modal .logo img {
	filter: brightness(0) invert(1);
	width: 220px;;
}
.signup-modal .close {
	display: flex;
	align-items: center;
	height: 100%;
}
.signup-modal .btn-close {
	padding: 0px;
	background: var(--kay-blue);
	position: relative;
	top: 0;
	right: 0;
	cursor: pointer;
	font-size: 28px;
	color: #fff;
	opacity: 1;
}

.signup-modal .box {
	position: relative;
	text-align: center;
	background-color: #fff;
	border: 4px solid #000;
	padding: 0 20px 20px 20px;
	margin-top: 30px;
	border-radius: 31px;
	transition: .3s ease;
}
.signup-modal .box:hover {
	box-shadow: 10px 10px #000;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.signup-modal .box:hover .box-header {
  box-shadow: 0px 0 0px 30px rgb(255 255 255 / 20%);
}
.signup-modal .box h2 {
	font-size: 28px;
	font-weight: 600;
	color: #042433;
	margin-bottom: 5px;
}
.signup-modal .box h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: #042433;
}
.signup-modal .box ul {
	list-style: none;
	text-align: left;
	color: #042433;
	padding-left: 10px;
}
.signup-modal .box ul li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: 500;
}
.signup-modal .box ul li i {
	font-size: 26px;
	color: #042433;
}

.signup-modal .box ul li:last-child {
	font-size: 26px;
	font-weight: 700;
}

.signup-modal .box ul li:last-child i {
	font-size: 28px;
	font-weight: 800;
}

.signup-modal .box .box-header {
  width: 120px;
  height: 120px;
  margin: -50% auto 24px;
  background: #fff;
  border-radius: 100px;
  display: inline-block;
  border: 4px solid #000;
  box-shadow: 0px 0 0px 20px rgb(255 255 255 / 20%);
  position: relative;
  z-index: 1;
	transition: .3s ease;
}

.signup-modal .box .box-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 15px;
}
.signup-modal .box .btn-try {
	background: var(--kay-blue);
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	border-radius: 15px;
	padding: 12px;
	width: 100%;
}
.signup-modal .box .btn-try:hover {
	background: var(--kay-light-blue);
	color: #fff;
}

@media (max-width: 768px) {
	.signup-modal .modal-body {
		display: grid;
    align-content: start;
    padding-left: 0;
    padding-right: 0;
	}
	.signup-modal .box {
    margin-top: 60px;
		padding: 0 10px 10px 10px;
	}
}
.signup-modal-page {
  height: 100vh;
  min-height: 800px;
  background-color: var(--kay-blue);
  padding: 140px 0 100px;
  align-content: center;
  border-bottom: 2px solid #fff;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul,
.navbar-right ul {
  margin: 0;
	margin-left: 5px;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
	gap: 5px;
}

.navbar li {
  position: relative;
  white-space: nowrap;
}

.navbar-right {
  padding-right: 12px;
}

.navbar-right li {
  position: relative;
  white-space: nowrap;
}

.navbar a,
.navbar a:focus,
.navbar-right a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 5px;
  font-family: "poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--kay-blue);
	border: 2px solid transparent;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 18px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
  background: var(--kay-light-blue);
	border: 2px solid var(--kay-light-blue);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  margin-top: 0px;
  border-radius: 5px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 170px;
  padding: 0;
}

.navbar .dropdown ul a {
  padding: 5px 10px;
  text-transform: none;
  font-weight: 500;
  margin: 5px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (max-height: 649px) {
  .navbar a,
  .navbar a:focus,
  .navbar-right a {
    font-size: 13px;
		padding: 8px;
  }

  #header .btn-signup,
  #header .btn-login {
    font-size: 13px;
		padding: 8px;
  }
}

.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header {
  text-align: center;
  font-size: 15px;
  padding: 10px;
}

.dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444;
}

.dropdown-header span {
  font-size: 14px;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px !important;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--mid-blue);
  font-size: 28px;
	padding: 0 10px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bx-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  .navbar.navbar-right ul {
    display: inline-flex;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(29, 28, 31, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 35px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 0;
  border-radius: 10px;
  height: fit-content;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile.navbar li,
.navbar-mobile.navbar-right li {
  background: #f4f4f4;
  padding: 5px;
  margin: 5px;
  border-radius: 5px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px;
  font-size: 15px;
  color: #36343a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--kay-blue);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  padding: 0;
}

/*--------------------------------------------------------------
# cookie-policy
--------------------------------------------------------------*/

#cookie-alert {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 100%;
}
#cookie-alert #message {
  background: #1F294A;
  font-size: 12px;
  overflow: hidden;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

#cookie-alert #title {
  padding: 0 45px 0 25px;
}
#cookie-alert #title h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
#cookie-alert #content {
  border-left: 1px solid #CCCCCC;
  padding-left: 25px;
  height: 100%;
}
#cookie-alert p {
  font-size: 12px;
  color: #c3c3c3;
  margin-bottom: 8px;
}

#cookie-alert a {
  color: #0d0d0d;
  text-decoration: underline;
}

#cookie-alert button {
  background: #1F60E7;
  border: 1px solid #1F60E7;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  outline: medium none;
  padding: 5px 8px;
  text-align: center;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Sign-up
--------------------------------------------------------------*/
.signup-section {
  padding: 200px 0 100px;
}
.signup-section .box {
  position: relative;
  text-align: center;
  background-color: #e85f5d;
  color: #fff;
  padding: 0 20px 20px 20px;
  border-radius: 10px;
  transition: transform .2s;
}
.signup-section .box:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.signup-section .box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../img/pattern-edu.png);
  z-index: 0;
  opacity: .15;
  background-size: cover;
}

.signup-section .box::after {
  content: '';
  position: absolute;
  top: -6px;
  bottom: -6px;
  right: -6px;
  left: -6px;
  border: 1px dashed #e85f5d;
  z-index: 0;
  border-radius: 14px;
}

.signup-section .box .box-header {
  width: 100px;
  height: 100px;
  margin: -50% auto 40px;
  background: white;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid #e85f5d;
  box-shadow: 0px 0 0px 20px rgb(255 255 255 / 20%);
  position: relative;
  z-index: 1;
}

.signup-section .box.prnt-box {
  background-color: #0095df;
}

.signup-section .box.prnt-box::after {
  border-color: #0095df;
}

.signup-section .box.prnt-box .box-header {
  border-color: #0095df;
}

.signup-section .box.tutor-box {
  background-color: #0f9d58;
}

.signup-section .box.tutor-box::after {
  border-color: #0f9d58;
}

.signup-section .box.tutor-box .box-header {
  border-color: #0f9d58;
}

.signup-section .box.schl-box {
  background-color: #0095df;
}

.signup-section .box.schl-box::after {
  border-color: #0095df;
}

.signup-section .box.schl-box .box-header {
  border-color: #0095df;
}

.signup-section .box .title {
  color: #fff;
  font-size: 20px;
  min-height: 48px;
}

.signup-section .box .btn-trial {
  font-family: "poppins", sans-serif;
  background-color: #fff;
  color: #333;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 700;
}

.signup-section .box .btn-trial:hover {
  background-color: #e9e9e9;
}

.signup-section .box .box-body {
  position: relative;
  z-index: 2;
}

.signup-section .box .box-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 15px;
}

@media (max-width: 992px) {
	.signup-section .box {
    margin-bottom: 70px;
	}
	.signup-section {
    padding: 150px 0 50px;
	}
}


/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.index-bg {
	position: absolute;
	left: 0;
	top: 0;
	height: 80vh;
	min-height: 800px;
	width: 100%;
	z-index: -1;
	background: linear-gradient(var(--kay-blue) 20%, transparent);
	display: flex;
	justify-content: end;
}
.index-bg img {
	position: relative;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	object-fit: cover;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

.hero {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 615px;
  padding: 80px 0 20px;
  max-height: 100vh;
	/* background: linear-gradient(var(--kay-blue) 50%, transparent); */
}
.hero.index {
  background: transparent;
}

.hero h1 {
  font-size: 44px;
  font-weight: 600;
  font-family: "poppins", sans-serif;
  color: #fff;
	text-shadow: 3px 3px 10px #0000005e;
}

.hero p {
  font-size: 20px;
  color: #fff;
  line-height: 28px;
}
.hero ul {
	list-style: none;
	padding: 0;
	padding-bottom: 1px;
}
.hero ul li {
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 6px;
	text-shadow: 3px 3px 10px #0000005e;
}
.hero ul li i {
	font-size: 32px;
	position: relative;
	top: 6px;
	margin-right: 6px;
}


@media (max-width: 992px) {
  .hero {
    padding-top: 150px;
    min-height: 100%;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 90px;
    min-height: fit-content;
		align-items: start;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero p {
    font-size: 16px;
    line-height: 24px;
  }
	.hero ul li {
    font-size: 16px;
    margin-bottom: 0px;
	}
	.hero ul li i {
    font-size: 22px;
    top: 3px;
    margin-right: 2px;
	}
}
@media (min-height: 530px) and (max-height: 650px){
  /* .hero h1 {
    font-size: 34px;
  }
  .hero p {
    font-size: 16px;
    line-height: 24px;
  } */
}

.banner-video {
	position: relative;
	border: 10px solid #6390EF;
	box-shadow: 0 3px 37px #30689866;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
  transition: .5s;
	height: auto;
	aspect-ratio: 16 / 9;
}
.banner-video::after {
	content: "";
	position: absolute;
	left:0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 20%);
	border-radius: 5px;
	opacity: 0;
  transition: .5s;
}
.banner-video:hover::after {
	opacity: 1;
}
.banner-video:hover .btn-play {
	transform: scale(1.08);
}
.banner-video img {
	border-radius: 10px;
	overflow: hidden;
}
.banner-video .vid-text {
	position: relative;
	top: 14%;
	height: 100%;
	color: #000;
	letter-spacing: -1px;
	font-size: 28px;
}

.shape-clip {
  width: 100%;
  height: 445px;
  filter: drop-shadow(0 3px 37px #30689866);
  position: relative;
  overflow: hidden;
}
.shape-path {
  clip-path: url(#cp);
  width: 450px;
  height: 380px;
  position: absolute;
  display: grid;
  place-content: center;
  background-color: #fff;
  z-index: 9;
}
.btn-play {
	background: #e29700;
	color: #fff;
	width: 65px;
  /***86px*/
	height: 65px;
	font-size: 56px;
	padding: 0px;
	padding-left: 8px;
	border: 0 solid #fff;
	border-radius: 100px;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	transition: .5s;
}
.btn-play:hover {
  background: var(--kay-blue);
	border: 10px solid #fff;
  color: #fff;
}

.first {
  background-image: none !important;
}

.first video {
  width: 500px;
  height: 100%;
  object-fit: cover;
  z-index: 10;
}

@media (max-width: 544px) {
  .first video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
  }
  .shape-path {
    width: 100%;
    height: 320px;
    top: 20px;
  }
  .shape-clip {
    width: 100%;
    height: 345px;
  }
	.btn-play {
    width: 35px;
    /***68px;*/
    height: 35px;
    font-size: 36px;
	}
}

@media (min-height: 530px) and (max-height: 650px){
  .shape-path {
    clip-path: url(#cp);
    width: 345px;
    height: 270px;
  }
  .first video {
    width: 390px;
  }
}
@media (min-height: 300px) and (max-height: 529px){
  .shape-path {
    clip-path: url(#cp);
    width: 300px;
    height: 240px;
  }
}

@media (max-width: 768px) {
	.banner-video {
    margin-bottom: 26px;
	}
	.banner-video .vid-text {
    font-size: 18px;
	}
}

.feature-section {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0px;
  text-align: center;
  background-color: #E9EEF5;
}

.feature-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  font-weight: 600;
  margin: 0;
}

.feature-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  margin: 0;
}

@media (max-width: 992px) {
  .feature-section {
    position: inherit;
    padding: 15px;
    margin-top: 50px;
  }
}

.bor-right {
  border-right: solid 1px #cbcbcb;
}

.bor-left {
  border-left: solid 1px #cbcbcb;
}

@media (max-width: 768px) {
  .feature-box h2 {
    font-size: 24px;
  }
  .feature-box h3 {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# grid
--------------------------------------------------------------*/

.sec-title {
	font-size: 36px;
	font-weight: 700;
	color: #002060;
	margin-bottom: 20px;
}
.grid .vid-box {
	margin-left: -10px;
	margin-right: -10px;
	mix-blend-mode: multiply;
}
.grid .vid-box video {
	width: 90%;
}
.grid .content {
	margin-left: 16px;
}
.grid .content h2 {
	font-size: 30px;
	font-weight: 600;
	color: #002060;
	margin-bottom: 20px;
}
.grid .content ul {
	list-style: none;
	padding: 0;
	padding-bottom: 1px;
}
.grid .content ul li {
	font-size: 20px;
	color: #000;
	margin-bottom: 14px;
	text-indent: -22px;
	margin-left: 42px;
}
.grid .content ul li i {
	font-size: 28px;
	position: relative;
	top: 6px;
	margin-right: 10px;
	color: #e29700;
}

@media (max-width: 768px) {
	.sec-title {
    font-size: 24px;
    margin-bottom: 10px;
		text-align: left;
	}
	.grid .vid-box {
    margin-bottom: 20px;
	}
	.grid .vid-box video {
		width: 100%;
	}
	.grid .content {
		margin-left: auto;
	}
	.grid .content h2 {
    font-size: 22px;
    margin-bottom: 16px;
	}
	.grid .content ul li {
    font-size: 16px;
    margin-bottom: 6px;
    text-indent: -13px;
    margin-left: 26px;
	}
	.grid .content ul li i {
    font-size: 18px;
    top: 2px;
    margin-right: 2px;
	}
}

/*--------------------------------------------------------------
# highlight
--------------------------------------------------------------*/

.highlight .box {
  display: flex;
  padding: 25px;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(168, 168, 168, 0.2), 0 6px 20px 0 rgba(204, 204, 204, 0.19);
  width: 100%;
  border-radius: 25px;
  transition: transform .2s;
	min-height: 136px;
}

.highlight .box:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.highlight .box img {
  width: 80px;
}

.highlight .box .box-content {
  margin: 0 30px;
  width: 100%;
}

.highlight .box .box-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: #232323;
}

.highlight .box .box-content p {
  font-size: 18px;
  margin-bottom: 0;
  color: #666E86;
}

/*--------------------------------------------------------------
# compare
--------------------------------------------------------------*/

.compare td.back {
  background-color: #E9EEF5;
}

.compare p {
  font-size: 16px;
  color: #777;
  padding: 18px 0;
  margin: 0;
}

.compare p i {
  font-size: 30px;
}

.compare td {
  padding: 0px;
  vertical-align: middle;
  text-align: center;
}

.compare .table>thead>tr>td>p {
  font-size: 20px;
  color: #333;
}

.compare .title {
  padding-top: 40px;
  padding-bottom: 40px;
}

/*--------------------------------------------------------------
# benefits
--------------------------------------------------------------*/

.benefits {
  background-color: #E9EEF5;
}

.benefits .box {
  display: flex;
  padding: 40px;
  margin-bottom: 30px;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(168, 168, 168, 0.2), 0 6px 20px 0 rgba(204, 204, 204, 0.19);
  width: 100%;
  border-radius: 25px;
  transition: transform .2s;
}

.benefits .box:hover {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}

.benefits .box .box-content h2 {
  font-size: 26px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 20px;
}

.benefits .box .box-content p {
  font-size: 18px;
  line-height: 30px;
  color: #666E86;
}

.benefits img {
  border: 20px solid #F7F7F7;
  border-radius: 25px;
  padding: 10px;
}

.benefits .btn-know,
.benefits .btn-know:focus {
  padding: 10px 14px;
  margin-right: 0;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: var(--kay-blue);
  background: #fff;
  border: 2px solid var(--kay-blue);
}

.benefits .btn-know:hover {
  color: #fff;
  background: #062c5e;
  border: 2px solid #062c5e;
}

/*--------------------------------------------------------------
# steps
--------------------------------------------------------------*/

.steps {
  background-color: #ecf3fd;
}

.steps h2 {
  font-size: 30px;
  color: #1c525e;
  text-align: center;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 10px;
}

.steps p {
  font-weight: 400;
  font-size: 18px;
  color: #0d0d0d;
  line-height: 25px;
  margin-bottom: 25px;
  text-align: center;
}

.step-box {
  text-align: center;
  margin-bottom: 30px;
}

.step-circle {
  background-color: #fff;
  width: 160px;
  height: 160px;
  display: inline-block;
  border-radius: 50%;
  line-height: 167px;
  border: 2px solid #fff;
  transition-duration: 0.4s;
}

.step-box:hover .step-circle {
  border: 2px solid #062c5e;
  transition-duration: 0.4s;
}

.step-box:hover h2 {
  color: #062c5e;
}

.step-box:hover p {
  color: #062c5e;
}

.step-circle img {
  width: 80PX;
}

.step-box h2 {
  color: #0d0d0d;
  font-size: 22px;
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 14px;
}

.step-box p {
  font-size: 16px;
  color: #919191;
  line-height: 21px;
  margin-bottom: 0px;
}

/*--------------------------------------------------------------
# mobile-app
--------------------------------------------------------------*/

.mobile-app h2 {
  font-size: 38px;
  font-weight: 600;
  color: var(--kay-blue);
  margin-bottom: 20px;
}

.mobile-app p {
  font-size: 18px;
  line-height: 30px;
  color: #666E86;
}

.mobile-app img {
  transition: transform .2s;
  mix-blend-mode: darken;
}

.mobile-app img:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/

.testimonial-section {
  padding: 60px 0px;
  display: inline-block;
  width: 100%;
  background-color: #f2f8ff;
  position: relative;
}

.owl-nav span {
  color: #fff;
  font-size: 24px;
  display: block;
  cursor: pointer;
  font-weight: 300;
  float: left;
  margin-left: 0px;
  line-height: 27px !important;
  background-color: #1F60E7;
  height: 40px;
  width: 40px;
  text-align: center;
  opacity: 0.9;
  border-radius: 50px;
}

.testimonial-section .owl-prev {
  position: absolute;
  top: 265px;
  left: 50px;
  z-index: 9;
  display: grid;
  align-content: center;
}

.testimonial-section .owl-next {
  position: absolute;
  top: 265px;
  right: 50px;
  z-index: 9;
  display: grid;
  align-content: center;
}

.review-box {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 4px 8px 0 rgba(168, 168, 168, 0.2), 0 6px 20px 0 rgba(204, 204, 204, 0.19);
  display: inline-block;
  margin-bottom: 30px;
  border-radius: 10px;
  min-height: 320px;
}

.review-box p {
  color: #666E86;
  font-size: 16px;
  margin-bottom: 0px;
  margin-top: 22px;
}

@media (max-width: 768px) {
  .testimonial-section .owl-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .testimonial-section .owl-prev,
  .testimonial-section .owl-next {
    position: inherit;
    margin: 0 5px;
  }
}

/*--------------------------------------------------------------
# app-slider
--------------------------------------------------------------*/

.app-slider-section {
  margin-bottom: 20px;
  position: relative;
}

.app-slider-section .item {
  width: 250px;
  margin: 0 auto;
}

.app-slider-section .owl-prev {
  position: absolute;
  top: 155px;
  left: 20px;
  z-index: 9;
  display: grid;
  align-content: center;
}

.app-slider-section .owl-next {
  position: absolute;
  top: 155px;
  right: 20px;
  z-index: 9;
  display: grid;
  align-content: center;
}


@media (max-width: 768px) {
  .app-slider-section .owl-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .app-slider-section .owl-prev,
  .app-slider-section .owl-next {
    position: inherit;
    margin: 0 5px;
  }
}


/*--------------------------------------------------------------
# twitter-slider
--------------------------------------------------------------*/
#twitter {
  padding-top: 60px;
  margin-top: -60px;
}
.twitter-section {
  padding: 40px 0px;
  display: inline-block;
  width: 100%;
  position: relative;
  background: #ededed;
  background: linear-gradient(#f2f8ff, #ededed);
}

.twitter-head {
  margin-bottom: 15px;
}

.twitter-section h2 {
  font-size: 30px;
  color: #1d9bf0;
  font-weight: 600;
  margin: 0;
}

.twitter-section .item {
  background-color: #fff;
  padding: 1px 10px;
  margin: 10px;
  border-radius: 15px;
  min-height: 575px;
  box-shadow: 0 4px 8px 0 rgba(168, 168, 168, 0.2), 0 6px 20px 0 rgba(204, 204, 204, 0.19);
}

.twitter-timeline {
  height: 350px !important;
}

.twitter-section .icon {
	background: #000000;
	color: #fff;
	display: grid;
	padding: 14px;
	margin-right: 15px;
	font-size: 30px;
	border-radius: 10px;
}

.twitter-section .icon img {
	width: 25px;
}

.twitter-section .owl-nav span {
  display: grid;
  align-content: center;
  background-color: #000;
}

.twitter-section .owl-prev {
  margin-right: 10px;
}

@media (max-width: 768px) {
	.twitter-section h2 {
		font-size: 24px;
	}
	.twitter-section .owl-prev {
    margin-right: 5px;
	}
}

/*--------------------------------------------------------------
# subject-box
--------------------------------------------------------------*/

.subject-box h2 {
  color: #1c525e;
  margin-bottom: 10px;
}

.subject-box p {
  font-size: 18px;
  color: #0d0d0d;
  margin-bottom: 35px;
  text-align: center;
}

.subject-list-box {
  text-align: center;
  position: relative;
  padding: 30px 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  margin-top: 70px;
  transition-duration: 0.4s;
}

.subject-list-box img {
  padding: 40px;
}

.subject-list-box h3 {
  color: #fff;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 12px;
}

.subject-list-box p {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  line-height: 23px;
  margin-bottom: 15px;
  text-align: center;
}

.subject-list-box .image {
  background-color: #fff;
  display: inline-block;
  width: 145px;
  height: 145px;
  text-align: center;
  line-height: 143px;
  border-radius: 50%;
  overflow: hidden;
  transition-duration: 0.4s;
  margin-top: -100px;
}

.subject-list-box:hover .image {
  margin-top: -110px;
}

.bio {
  background-color: #0095df;
}

.bio .image {
  border: 4px solid #0095df;
}

.che {
  background-color: #0f9d58;
}

.che .image {
  border: 4px solid #0f9d58;
}

.phy {
  background-color: #e85f5d;
}

.phy .image {
  border: 4px solid #e85f5d;
}

.sub-btn {
  border: 2px solid #fff;
  color: #fff !important;
  font-size: 14px !important;
  padding: 6px 30px;
  border-radius: 26px;
  font-weight: 400;
}

.sub-btn:hover {
  border: 2px solid #fff;
  color: #1c525e !important;
  font-size: 14px;
  padding: 6px 30px;
  border-radius: 26px;
  font-weight: 400;
  background-color: #fff;
}


/*--------------------------------------------------------------
# About us Page
--------------------------------------------------------------*/
.vision {
  background-color: #fff;
  padding: 45px;
  box-shadow: 0 4px 8px 0 rgba(168, 168, 168, 0.2), 0 6px 20px 0 rgba(204, 204, 204, 0.19);
  border-radius: 30px;
}

.vision img {
  border: 20px solid #F7F7F7;
  border-radius: 125ox;
}

.vision p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 20px;
  color: #202020;
  line-height: 30px;
  margin-bottom: 25px;
  text-align: justify;
}

.about-content h4 {
  color: #202020;
  line-height: 38px;
  margin-bottom: 25px;
}

.about-content img {
  float: right;
  margin: 0px 0px 15px 25px;
  border: 20px solid #F7F7F7;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .about-content img {
    float: left;
    width: 100%;
    margin: 0px 0px 15px 0px;
    border: 10px solid #F7F7F7;
    border-radius: 20px;
  }
  .about-content p {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# why section | 4 box
--------------------------------------------------------------*/
.why .box {
  background: #ecf3fd;
  height: 100%;
  min-height: 280px;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all .4s;
}

.why .box:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.why .box img {
  width: 90px;
  margin-bottom: 25px;
}

.why .box h2 {
  color: var(--kay-blue);
  font-size: 18px;
  font-weight: 500;
  transition: all .4s;
}

.why .box p {
  font-size: 14px;
  margin-bottom: 0;
  transition: all .4s;
}

.why ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  width: 100%;
}

.why ul li {
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.why ul li i {
  color: #0f9d58;
  font-size: 20px;
}

#how-it-works {
  padding-top: 150px;
  margin-top: -150px;
}

.btn-watch,
.btn-watch:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  margin-right: 0;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: #fff;
  background: var(--kay-blue);
  border: 2px solid var(--kay-blue);
}

.btn-watch i {
  font-size: 18px;
}

.btn-watch:hover {
  color: #fff;
  background: var(--kay-light-blue);
  border: 2px solid var(--kay-light-blue);
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package {
  border-radius: 5px;
  overflow: hidden;
  background: #fbfbfb;
}

.package .box {
  background: #fff;
  box-shadow: 0 4px 8px 0 rgba(168, 168, 168, 0.2), 0 6px 20px 0 rgba(204, 204, 204, 0.19);
  transition: transform .2s;
  border-radius: 5px;
  overflow: hidden;
}

.package .box:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.package .box-header {
  background: var(--kay-blue);
  text-align: center;
  padding: 15px;
  min-height: 120px;
  display: grid;
  align-content: space-around;
}

.package .box h2 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.package .box h3 {
  font-size: 24px;
  color: #fff;
  margin: 0px;
}

.package .box-body {
  padding: 40px;
  min-height: 500px;
}

.package .box-body ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.package .box-body ul li {
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.package .box-body ul li i {
  color: #0f9d58;
  font-size: 20px;
}

.package .box-footer {
  padding: 0 40px 25px 40px;
  text-align: center;
}

.package .box-footer p {
  font-weight: 400;
  font-size: 20px;
  color: #777;
}

/*--------------------------------------------------------------
# Trial form
--------------------------------------------------------------*/
.trial-form {
  background-color: #1F60E7;
  padding: 30px;
  border-radius: 10px;
}

.trial-form h2 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.trial-form p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.trial-form ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.trial-form ul li {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.trial-form ul li i {
  color: #fff;
  font-size: 20px;
}
.trial-form .form-group label {
	display: none;
	color: #fff!important;
}

.trial-form .form-group .form-control {
  border-radius: 2px;
  box-shadow: none;
  border-width: 0;
  /* background: rgba(255, 255, 255, .3); */
  color: #3d3d3d;
  transition: all 0.4s;
}

.trial-form .form-group .form-control:not(textarea) {
  height: 40px;
}

.trial-form .form-group .form-control:focus {
  background: rgba(255, 255, 255, .7);
}

.trial-form .form-group textarea.form-control {
  max-width: 100%;
	min-height: 78px;
}

.trial-form .form-group select.form-control option {
  color: #001f64;
}

.trial-form .btn {
  background-color: #FFA800 ;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 30px;
}

.trial-form .btn:hover {
  background-color: #e29700;
  color: #fff;
}

.trial-form .form-control::placeholder {
  color: #cfcfcf;
}

.trial-form .form-control:-ms-input-placeholder {
  color: #cfcfcf;
}

.trial-form .form-control::-ms-input-placeholder {
  color: #cfcfcf;
}

.trial-form h3 {
  margin-top: 0;
}

.trial-form h4 {
  font-size: 20px;
  margin-bottom: 0;
}

.trial-form h5 {
  font-size: 20px;
  margin-bottom: 0;
	color: #fff;
}

/*--------------------------------------------------------------
# School | trial-form
--------------------------------------------------------------*/
#school-trial-form {
	padding-top: 0px;
	margin-top:  0px;
}
#school-trial-form p {
	font-size: 18px;
}
.rate-list .box {
	position: relative;
	background: #22a7f0;
	color: #fff;
	padding: 10px 45px;
	text-align: center;
	border-radius: 10px;
	font-size: 18px;
	transition: all .3s ease;
}
.rate-list i {
	position: absolute;
	left: 12px;
	top: 11px;
	font-size: 24px;
	transition: all .3s ease;
}

.rate-list .box:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
	transition: all .3s ease;
}
.rate-list .box:hover i {
  transform: rotate(45deg);
	transition: all .3s ease;
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog-page-section {
  margin-bottom: 25px;
}

.blog-page-section .title {
  padding-top: 40px;
  text-align: center;
}

.single-blog-img {
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: center;
}

.single-blog-img a img {
  width: 100%;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.single-blog:hover .single-blog-img a img {
  -webkit-transform: scale(1.09);
  -moz-transform: scale(1.09);
  -ms-transform: scale(1.09);
  -o-transform: scale(1.09);
  transform: scale(1.09);
}

.single-blog-img img {
  width: 100%;
}

.blog-content-box {
  padding: 20px;
  margin-left: 30px;
  background: #fff;
  border-bottom: 3px solid var(--kay-blue);
  box-shadow: 0px 0px 10px 0px #f1f1f1;
}

.blog-post-date h4 {
  color: var(--kay-blue);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
}

.blog-post-date h6 {
  font-size: 14px;
  color: #212121;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content {
  display: table;
  width: 100%;
}

.blog-content h4 {
  color: #212121;
  font-weight: 700;
  line-height: 24px;
}

.blog-content h2 {
  color: #212121;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.blog-content a:hover h2 {
  color: #FFCA00;
}

.blog-content .p {
  margin-bottom: 15px;
  height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meta-post {
  margin: 10px 0 0;
  background: #eeeeee;
  padding: 5px;
  text-align: center;
}

.meta-post span {
  color: #0095df;
  font-size: 13px;
  position: relative;
  padding-right: 23px;
  font-weight: 500;
}

.author {
  margin-bottom: 60px;
}

.meta-post span a {
  color: #0d0d0d;
  -webkit-transition: .2s;
  transition: .2s;
}

.meta-post span:after {
  position: absolute;
  right: 4px;
}

:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.meta-post span:last-child {
  padding-right: 0;
}

.blog-content p {
  color: #0d0d0d;
  margin-bottom: 12px;
	font-size: 14px;
  text-align: left;
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-content .btn-two {
  font-size: 15px;
  font-weight: 600;
  color: #e3001c;
}

.blog-detail p {
  font-size: 18px;
}

.sidebar .sidebar-box {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
}

.sidebar .sidebar-box h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--kay-blue);
  margin-bottom: 20px;
}

.sidebar .sidebar-box h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

.accordion-faq p {
  font-weight: 400;
  font-size: 18px;
  color: #000;
}

.accordion-faq .accordion-header {
  font-size: 18px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# form
--------------------------------------------------------------*/

.form-box {
  background: #fff;
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
  margin-top: 30px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.form-box .form-control {
  padding: 12px;
  font-size: 14px;
  color: #555;
  background-color: #f3f3f3;
}

.form-box.sticky-top {
  top: 100px;
  z-index: 1;
}

/*--------------------------------------------------------------
# contact-form
--------------------------------------------------------------*/

.contact-content {
  width: 100%;
  text-align: center;
  padding: 0 40px 0 40px;
}

.contact-content img {
  width: 70%;
  padding: 30px;
}

.contact-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.contact-form {
  background-color: #fff;
  box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 11%);
  padding: 30px;
  border-radius: 10px;
}

.contact-form .content .title {
  color: #0d0d0d;
  font-weight: 600;
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 20px;
}

.contact-form .content p {
  color: #0d0d0d;
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
}

.contact-form .row>[class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group label {
  display: none;
}

.contact-form .form-group .form-control {
  border-radius: 6px;
  box-shadow: none;
  border-width: 0;
  background: rgba(242, 242, 242, .8);
  transition: all 0.4s;
}

.contact-form .form-group .form-control:not(textarea) {
  height: 40px;
}

.contact-form .form-group .form-control:focus {
  background: rgba(242, 242, 242, .8);
}

.contact-form .form-group textarea.form-control {
  max-width: 100%;
}

.contact-form .form-group select.form-control option {
  color: #001f64;
}

.contact-form .btn-submit,
.contact-form .btn-submit:focus {
  padding: 10px 14px;
  margin-right: 0;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: var(--kay-blue);
  background: #fff;
  border: 2px solid var(--kay-blue);
}

.contact-form .btn-submitw:hover {
  color: #fff;
  background: #062c5e;
  border: 2px solid #062c5e;
}

.contact-form .form-control::placeholder {
  color: #9f9f9f;
}

.contact-form .form-control:-ms-input-placeholder {
  color: #9f9f9f;
}

.contact-form .form-control::-ms-input-placeholder {
  color: #9f9f9f;
}

/*--------------------------------------------------------------
# Videos&quizzes
--------------------------------------------------------------*/
.vq-section {
  background: #EEF0F8;
  min-height: 500px;
}

.filter.sticky-top {
  top: -10px;
  z-index: 2;
  transition: 0.3s;
}

.filter {
  background: #EEF0F8;
  padding: 90px 0 10px;
}

.subject-tab {
  background: var(--kay-blue);
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}

.biology-finder {
  background-color: var(--biology);
}

.biology-sidebar-left {
  background-color: var(--biology);
}

.biology-subject-hed-section {
  background-color: var(--biology);
}

.biology-topic-list ul li a {
  background-color: var(--biology);
}

.biology-topic-list ul li a:hover {
  background-color: #e22f24;
  color: #fff !important;
}

.chemistry-finder {
  background-color: var(--chemistry);
}

.chemistry-sidebar-left {
  background-color: var(--chemistry);
}

.chemistry-subject-hed-section {
  background-color: var(--chemistry);
}

.chemistry-topic-list ul li a {
  background-color: var(--chemistry);
}

.chemistry-topic-list ul li a:hover {
  background-color: #e22f24;
  color: #fff;
}

.physics-finder {
  background-color: var(--physics);
}

.physics-sidebar-left {
  background-color: var(--physics);
}

.physics-subject-hed-section {
  background-color: var(--physics);
}

.physics-topic-list ul li a {
  background-color: var(--physics);
}

.physics-topic-list ul li a:hover {
  background-color: #0070a7;
  color: #fff;
}

.subject-tab .btn-subject {
  padding: 8px 12px;
  margin-right: 6px;
  min-width: 100px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: #fff;
  background: var(--kay-blue);
  border: 2px solid var(--kay-blue);
}

.subject-tab .btn-subject i {
  font-size: 18px;
}

.subject-tab .btn-subject:hover,
.subject-tab .btn-subject:focus {
  background-color: #062c5e;
  color: #ffff;
  border: 2px solid #062c5e;
}

.subject-tab .btn-subject.active {
  background-color: #062c5e;
  color: #ffff;
  border: 2px solid #062c5e;
}

.filter input#search {
  padding: 8px 12px;
}

.filter .btn-search {
  display: grid;
  place-content: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: #062c5e;
}

.filter .curriculum {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow: auto;
}

.btn-curriculum {
  padding: 6px;
  margin-right: 6px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: #0d0d0d;
  background: #fff;
  border: 2px solid #fff;
}

.btn-curriculum:last-child {
  margin-right: 0;
}

.btn-curriculum:hover {
  color: #fff;
  background: #062c5e;
  border: 2px solid #fff;
}

.btn-curriculum.active {
  background-color: #062c5e;
  color: #ffff;
  border: 2px solid #062c5e;
}

.topic-list ul {
  list-style: none;
  padding-left: 0px;
  display: flex;
  overflow: auto;
  margin-bottom: 0;
}

.btn-topic {
  background: #0f9d58;
  color: #fff;
  padding: 8px 14px;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.subject-detail-box-section {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}

.subject-detail-box-section-topic {
  background-color: #e7e4e0;
  padding: 15px;
}

.subject-detail-box-section-topic h2 {
  color: #062c5e;
  font-size: 18px;
  font-weight: 600;
  margin: 0px;
}

.listed-section {
  padding: 15px;
}

.listed-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.listed-section p {
  font-weight: 400;
  font-size: 15px;
  color: #2c2c2c;
  margin-bottom: 4px;
  background: #fff;
  padding: 2px 0;
  border-radius: 3px;
  transition: all 0.3s;
}

.listed-section p {
  margin-bottom: 0;
}

.listed-section p:hover {
  background: #f4f4f4;
  padding: 2px 8px;
  transition: all 0.3s;
}

.listed-section a {
  width: 100%;
  display: block;
  font-size: 16px;
  color: #333;
}
.listed-section a:hover {
  color: var(--kay-blue);
}

.listed-section .paid {
  color: #B2ACAB;
}

.line-strip {
  border-top: 1px solid #f3f0ec;
}

/* Topic detail */

.study-section {
  padding: 90px 0;
  min-height: 500px;
}

.topic-accordion.sticky-top {
  top: 90px;
  z-index: 1;
}

.study-section .topic-accordion {
  --bs-accordion-border-color: none;
  --bs-accordion-border-width: 0;
}

.study-section .topic-accordion .accordion-item {
  margin-bottom: 10px;
  overflow: hidden;
}

.study-section .topic-accordion .accordion-button {
  color: #fff;
  background: var(--kay-blue);
  border-color: var(--kay-blue);
  padding: 15px;
  font-weight: 500;
}

.study-section .accordion-button::after {
  filter: brightness(0) invert(1);
}

.study-section .accordion-body {
  max-height: 500px;
  overflow: auto;
}

.study-section .accordion-body::-webkit-scrollbar {
  width: 5px;
  background-color: var(--white);
  -webkit-transition: width .2s;
  border-radius: 0 10px 10px 0
}

.study-section .accordion-body::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
  border-radius: 50px
}

.study-section .accordion-body::-webkit-scrollbar-thumb:hover {
  background-color: var(--kay-blue);
  transition: background-color .8s
}

.study-section .accordion-body ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.study-section .accordion-body ul li .box {
  padding: 5px 15px;
  margin-bottom: 5px;
  background: #FDEED6;
  border-radius: 5px;
	border: 3px solid transparent;
  transition: .2s ease;
}

.study-section .accordion-body ul li .box:hover {
	background: #fae3bf;
	border: 3px solid #7ece5f;
  transition: .2s ease;
}
.study-section .accordion-body ul li .box p:hover {
	color: #b26d00;
}

.study-section .accordion-body ul li.active .box {
  background: #F0FFEB;
  border: 3px solid #7ece5f;
  transition: .2s ease;
}

.study-section .accordion-body .box a {
  display: flex;
  align-items: center;
}

.study-section .accordion-body .box p {
  font-size: 16px;
  font-weight: 500;
  color: #ff9c00;
  margin: 0;
}

.study-section .accordion-body .box i {
  font-size: 20px;
  color: #ff9c00;
  margin: 0;
}
.custom_grp_fm .form-control {
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #cccc;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  box-shadow: inset 0 0px 0px rgb(0 0 0 / 8%);
  margin-bottom: 8px;
}

.topic-content .custom_grp_fm {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .study-section .topic-accordion .accordion-item {
    margin-bottom: 5px;
  }
  .study-section .topic-accordion .accordion-button {
    padding: 10px;
    font-size: 14px;
  }
  .study-section .accordion-body {
    padding: 10px;
  }
  .study-section .accordion-body ul {
    display: flex;
    align-items: center;
  }
  .study-section .accordion-body ul li .box {
    padding: 5px;
    margin-bottom: 0;
    min-width: 245px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# Revision, Worksheet
--------------------------------------------------------------*/

.btn-year,
.btn-subject,
.btn-class,
.btn-student {
  padding: 8px 14px;
  color: #fff;
  background-color: #187DE4;
  border-color: #187DE4;
  font-size: 13px;
  font-weight: 500;
}
.btn-year:hover,
.btn-subject:hover,
.btn-class:hover,
.btn-student:hover {
  color: #fff;
  background-color: #0f9d58;
  border-color: #0f9d58;
}
.revision {
  padding: 90px 0;
  min-height: 500px;
}
.revision .btn-revision-head {
  color: #fff;
  background-color: var(--kay-blue);
  border: 2px solid var(--kay-blue);
  opacity: 1;
  white-space: nowrap;
  width: 100%;
}
.revision .btn-revision-head.active {
  color: #fff;
  background-color: #062c5e;
  border: 2px solid #062c5e;
}

.revision .btn-revision-head:hover {
  color: #fff;
  background: var(--kay-light-blue);
  border: 2px solid var(--kay-light-blue);
}

.revision .btn-subject,
.revision .btn-subject:focus {
  padding: 5px 10px;
  margin-right: 4px;
  min-width: 100px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: #fff;
  background-color: #3699FF;
  border: 2px solid #3699FF;
}

.revision .btn-subject:hover {
  background: var(--kay-blue);
  color: #fff;
}

.revision .btn-subject.active {
  background: var(--kay-blue);
  color: #fff;
  border: 2px solid var(--kay-blue);
}

.revision ul.topic-head {
  list-style: none;
  padding-left: 0px;
  display: flex;
  overflow: auto;
  margin-bottom: 0;
}
.revision .btn-topic,
.revision .btn-topic:focus {
  color: #fff;
  background-color: #1BC5BD;
  border: 2px solid #1BC5BD;
  padding: 8px 14px;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.revision .btn-topic:hover {
  background: var(--kay-blue);
  color: #fff;
  border: 2px solid var(--kay-blue);
}

.revision .btn-topic.active {
  background: var(--kay-blue);
  color: #fff;
  border: 2px solid var(--kay-blue);
}
.revision .btn-topic.activebtn {
  color: #FFFFFF;
  background-color: #00b050;
  border-color: #00b050;
}
.floatcard.sticky-top {
  top: 80px;
  z-index: 1;
}
.floatcard .card .card-body {
  padding: 10px!important;
}
.totalQuestions {
  background-color: var(--kay-blue);
  border-radius: 5px;
  color: #fff;
  min-width: 140px;
  font-size: 16px;
  font-weight: 500;
}
.totalQuestions:hover {
  background-color: var(--kay-blue);
  color: #fff;
}
.btn-start-quiz {
  background-color: #3699FF;
  color: #fff;
}
.btn-start-quiz {
  background-color: var(--kay-light-blue);
  color: #fff;
}
.revision .btn-count {
  color: #3F4254;
  background-color: #ffffff;
  border-color: #ffffff;
  border: 2px solid #fff!important;
  box-shadow: 0 0 10px rgba(0,0,0,.15)!important;
  margin: 0 5px;
  padding: 5px 12px;
  border: none;
}
.revision .btn-count:hover {
  background: #3699FF;
  color: #fff;
}

.revision .btn-count.active {
  background: var(--kay-blue);
  color: #fff;
  border: 2px solid var(--kay-blue)!important;
}

.revision .btn-count-blue {
  color: #fff;
  background-color: var(--kay-blue);
  border-color: var(--kay-blue);
  border: 2px solid var(--kay-blue)!important;
  box-shadow: 0 0 10px rgba(0,0,0,.15)!important;
  margin: 0 5px;
  padding: 5px 12px;
  border: none;
}
.revision .btn-count-blue:hover {
  background: #fff;
  color: var(--kay-blue);
}

.revision .btn-count.active {
  background: var(--kay-blue);
  color: #fff;
  border: 2px solid var(--kay-blue)!important;
}

@media (max-width: 768px) {
  .revision .btn-topic, .revision .btn-topic:focus {
    margin-bottom: 2px;
  }
  .revision-option {
    flex-flow: nowrap;
    overflow: auto;
  }
  .row.revision-option>* {
    width: auto;
  }
  .revision .btn-revision-head {
    padding: 8px 14px;
    margin-bottom: 2px;
    font-size: 18px;
  }
}


/* Breadcrumbs */
.breadcrumb {
  padding: 13px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  color: #fff;
  background: var(--kay-blue);
  display: flex;
  justify-content: center;
}
.breadcrumb.sticky-top {
  top: 100px;
  z-index: 1;
}

.breadcrumb-item a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.breadcrumb-item {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
}

.breadcrumb-item i {
  color: #fff;
  font-size: 24px;
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 5px;
    position: sticky;
    top: 75px;
  }
  .breadcrumb-item {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .breadcrumb-item i {
    font-size: 18px;
  }
}

.sign-up-card {
  padding: 10px;
  padding-left: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  background: #fdeed6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sign-up-card h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--kay-blue);
  display: flex;
  align-items: center;
}

.sign-up-card h5 i {
  font-size: 28px;
}

.video-content {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.video-inner-box {
  background: #ffffff27;
  backdrop-filter: blur(5px);
  border-radius: 5px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.video-inner-box .video-text{
  padding: 30px;
  border-radius: 5px;
  background: #ffffffd6;
  backdrop-filter: blur(10px);
}
.video-inner-box:before {
  content: '';
  background: #d1d1d124;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
}

.video-inner-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.custom_grp_fm label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-indent: -22px;
  margin-left: 22px;
}

.answer-danger h4,
.answer-success h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.answer-danger {
  width: 100%;
  padding: 10px 15px;
  margin: 15px 0 0 0;
  border-radius: 5px;
  background-color: #FFF2CC;
  color: #ff9c00;
}

.answer-success {
	width: 100%;
	padding: 10px 15px;
	margin: 15px 0 0 0;
	border-radius: 5px;
	background-color: #F0FFEB;
	border: 3px solid #F0FFEB;
	color: #4abb25;
}

a.report-issue {
  float: right;
  line-height: 20px;
  color: #999;
  border-radius: 3px;
  font-size: 12px;
  padding: 0px 5px;
  background: #ebdfdf;
}

@media (max-width: 768px) {
  .answer-danger h4, .answer-success h4 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Resource tab
--------------------------------------------------------------*/

.resource-option.sticky-top {
  top: 90px;
  z-index: 1;
}

.resource-option table tr {
  margin-bottom: 10px;
}

.resource-option table tr th {
  padding: 0;
  padding-top: 8px;
}
.resource-option table tbody:last-child tr:last-child th {
  border: none!important;
}

.resource-detail .title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  border-radius: 5px;
  background-color: var(--kay-blue);
  color: #fff;
  position: relative;
  text-align: center;
  display: block;
  padding: 10px;
}

.resource-detail .subject-detail-box-section-topic {
  background-color: #e7e4e0;
  border-radius: 5px;
  padding: 15px;
}

.resource-detail .subject-detail-box-section-topic h2 {
  color: #062c5e;
  font-size: 18px;
  font-weight: 600;
  margin: 0px;
}

.resource-tab .btn.btn-primary {
  color: #FFFFFF;
  background-color: #3699FF;
  border-color: #3699FF;
  font-weight: 600;
}

.resource-tab .btn.btn-primary:not(:disabled):not(.disabled):active:not(.btn-text),
.resource-tab .btn.btn-primary:not(:disabled):not(.disabled).active {
  color: #FFFFFF;
  background-color: #00b050;
  border-color: #00b050;
}


/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/

.login-body {
  background: #EEF0F8;            
}
.login {
  height: 100vh;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(20px);
}
.login .card{
  box-shadow: 10px 10px 40px 10px rgb(0 0 0 / 5%);
  transition: all 0.3s;
}
.login .box {
  border-radius: 25px;
  padding: 10px;
}
.login .logo img {
  padding: 0;
  margin: 0;
  width: auto;
  max-height: 40px;
}
.btn-back,
.btn-back:focus,
.btn-back.active {
  padding: 8px;
  margin-bottom: 10px;
  font-size: 24px;
  border-radius: 50px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: var(--kay-blue);
  background: #fff;
  border: 2px solid #fff;
  margin-right: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.btn-back:hover {
  color: #fff;
  background: var(--kay-blue);
  border: 2px solid #fff;
  transform: scale(1.02);
  transition: all 0.3s;
}
.login .icon {
  font-size: 25px;
  color: #3b5998;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  margin: 5px;
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.login .icon:hover {
  transform: scale(1.2);
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2);
}
.login h1 {
  font-size: 32px;
  font-weight: 600;
}
.login h2 {
  font-size: 28px;
  font-weight: 600;
}
.login h3 {
  font-size: 20px;
  font-weight: 600;
}
.left-area {
  height: 100%;
  border-radius: 10px;
  padding: 35px;
  min-width: 63px;
  width: 100%;
  display: grid;
  align-content: space-between;
  color: #fff;
  background: var(--kay-blue);
  overflow: hidden;
}
.right-area {
  height: 100%;
  border-radius: 15px;
  width: 100%;
  color: #333;
}
.right-area .logo img {
  padding: 0;
  margin: 0;
  width: auto;
  max-height: 55px;
}
.right-area .input-area {
  overflow: auto;
  padding: 10px;
}
.btn-timetable {
  padding: 8px 10px !important;
  color: #fff !important;
  background-color: #e29700 !important;
  border: 2px solid #e29700 !important;
}
.btn-timetable:hover {
  opacity: .8;
}
.timetableclass:hover {
  transform: translateY(-4px) translateX(-4px);
}
/*--------------------------------------------------------------
# Timetable
--------------------------------------------------------------*/

.timetable .today {
	background-color: #eef5ff!important;
}
.timetable .btn-nav,
.timetable .btn-nav:focus {
  padding: 5px 10px;
  height: 37px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  color: #fff;
  background-color: #187DE4;
  border: 2px solid #187DE4;
}

.timetable .btn-nav:hover {
  background: var(--kay-blue);
  color: #fff;
  border: 2px solid var(--kay-blue);
}
.timetable .table>:not(caption)>*>* {
	font-size: 13px;
	font-weight: 400;
	padding: 10px;
}
.timetable .table th {
	font-size: 14px;
	font-weight: 600;
}
.timetable .subject-box {
	background: #eef5ff;
	padding: 10px;
	margin: -3px;
	border-radius: 5px;
}
.timetable .subject-box:not(:first-child) {
	margin-top: 10px;
}
.timetable .today .subject-box {
	background: #fff!important;
}
.timetable .subject-box h5 {
	font-size: 16px;
	font-weight: 600;
	border-bottom: 1px solid #cecece;
	padding-bottom: 3px;
}

.btn-live-tuition {
  padding: 8px 10px !important;
  color: #fff !important;
  background-color: #00b050 !important;
  border: 2px solid #00b050!important;
}
.btn-live-tuition i {
	font-size: 16px;
}

.resoureactive {
  color: #FFFFFF !important;
    background-color: #00b050 !important;
    border-color: #00b050 !important;
}

dialog {
	border: 0;
	border-radius: 10px;
	width: 800px;
  background: white;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  -webkit-animation: fadeIn .5s ease both;
          animation: fadeIn .5s ease both;
}
dialog::-webkit-backdrop {
  -webkit-animation: fadeIn .5s ease both;
          animation: fadeIn .5s ease both;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
dialog::backdrop {
  -webkit-animation: fadeIn .5s ease both;
          animation: fadeIn .5s ease both;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.for-landing {
  display: none;
}

.pointerclass {
  cursor:pointer;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background: #fff;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.google-btn img {
    width: 18px;
    height: 18px;
}

.google-btn:hover {
    background: #f7f7f7;
    border-color: #ccc;
}