* {
	box-sizing: border-box;
	outline: 0;
}

@font-face {
  font-family: 'circular_stdbook';
  src: url('../fonts/circularstd-book-webfont.woff2') format('woff2'),
       url('../fonts/circularstd-book-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'circular_stdbook';
}

/* Common CSS*/
.section-title {
	font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  color: #180404;
}

.section-paragraph {
	font-weight: 400;
  font-size: 16px;
  color: #6E6E6E;
  margin-top: 10px;
}

.theme-btn {
	min-width: 200px;
  height: 46px;
  background: #FF3C3C;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  border-radius: 8px;
	color: #fff;
	border: 0;
	transition: all .3s ease-in-out;
  position: relative;
  z-index: 9;
}

.theme-btn:hover {
	background: #c41d1d;
}

hr.sec-hr {
	width: 136px;
	height: 6px;
	background: #6E6E6E;
	border-radius: 8px;
	margin: 20px auto 80px;
  opacity: .3;
}

hr.sec-hr.wht-bg {
  background: #fff !important;
  opacity: .6;
}

.wht-txt {
	color: #fff !important;
}

.w-0 {
  width: 0 !important;
}

.animate-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  animation: imageSlide 3s linear infinite;
}

@keyframes imageSlide {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(-15px);
  }
}

.animate-img span {
  display: inline-block;
  position: absolute;
}

/*----------------  Header  -----------------*/
.nav-header {
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
	height: 64px;
}

.logo-img {
  width: 200px;
}

.social-icons {
	gap: 20px;
  display: flex;
  margin-bottom: 0;
}

.social-icons li a i {
	color: #c2c2c2;
	font-size: 16px;
	transition: .3s all ease-in-out;
}

.social-icons li a i:hover {
	color: #FF3C3C;
}

/*---------------------Banner Section-------------------------*/
.banner-section {
	background: #E1ECFA;
	padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.banner-section:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/phonics-kit/benefits-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
}

.banner-section .left-sec {
  padding-left: 20px;
  position: relative;
}

.banner-section .left-sec h1 {
	font-size: 40px;
	font-weight: 700;
  margin: 80px 0 8px;
	color: #180404;
}

.banner-section .left-sec p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #6E6E6E;
  line-height: 28px;
}

.banner-section .left-sec span {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.banner-section .left-sec span strong {
  color: #ff3c3c;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-right: 4px;
}

.banner-section .left-sec .theme-btn {
  background: #3178D3;
}

.banner-section .left-sec .theme-btn:hover {
  background: #1957a8;
}

.banner-section .left-sec .hero-img {
  position: absolute;
  width: auto;
  right: 0;
  bottom: -185px;
  width: 350px;
}

.hire-us-form {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  width: 416px;
  text-align: center;
  box-shadow: 0px 0px 32px rgba(0,0,0,.1);
}

.hire-us-form .section-title {
	font-size: 28px;
  line-height: 35px;
  margin-bottom: 4px;
}

.hire-us-form .section-paragraph {
	font-size: 16px;
  margin-top: 0;
  color: #180404;
  opacity: 0.7;
}

.hire-us-form .sec-hr {
	width: 88px;
  margin: 0 auto;
  background: #AEAEAE !important;
  opacity: .3;
}

.hire-us-form .your-info {
	background: #fff;
	padding: 24px 24px 5px;
  border-radius: 8px;
  text-align: left;
}

.hire-us-form .your-info .form-group {
  margin-bottom: 12px;
}

.hire-us-form .your-info .form-label {
  font-size: 16px;
  color: #494444;
  font-weight: 400;
}

.hire-us-form .your-info .form-control {
	height: 46px;
  padding: 14px 12px;
  background: #F5F5F5;
  border-radius: 4px;
  margin-bottom: 4px;
  border: 0;
  font-weight: 400;
  font-size: 14px;
}

.hire-us-form .your-info textarea.form-control {
	height: 80px;
	padding: 8px 12px;
}

.hire-us-form .your-info input::-webkit-input-placeholder,
.hire-us-form .your-info textarea::-webkit-input-placeholder {
  color: #AEAEAE;
}

.hire-us-form .your-info .btn {
	border: 0;
  border-radius: 8px;
  height: 45px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  background: #FF3C3C;
  margin-top: 12px;
}

.hire-us-form .your-info .btn:hover {
  background: #c41d1d;
}

.hire-us-form .your-info .join-us {
	font-size: 16px;
  font-weight: 700;
  color: #383849;
  margin-bottom: 0;
}

.hire-us-form .your-info .join-us span {
	color: #FF3C3C;
}

.hire-us-form .your-info .join-us span img {
	vertical-align: unset;
}

.banner-section .animate-img {
  top: -15px;
}

.banner-section .img-1 {
  top: 88px;
  left: 0;
}

.banner-section .img-2 {
  top: 0;
  left: 50%;
}

.banner-section .img-3 {
  top: 135px;
  right: 30px;
}

.banner-section .img-4 {
  left: 200px;
  bottom: 3px;
}

.banner-section .img-5 {
  bottom: 109px;
  left: 63px;
}

.banner-section .img-6 {
  bottom: -25px;
  right: 0;
}

/*------------------  Teach Child Section  ----------------------*/
.teach-child-section {
	padding: 72px 0 80px;
}

.tech-learn-kit {
  position: relative;
  display: inline-block;
  margin-bottom: 94px;
}

.feature-note {
  height: 100px;
	display: inline-flex;
	align-items: flex-end;
	position: absolute;
}

.feature-note.left {
	flex-direction: row-reverse;
}

.feature-note.bottom {
	align-items: flex-start;
}

.feature-note .indicator {
	position: relative;
	z-index: 9;
	flex: 0 0 140px;
	display: flex;
  justify-content: flex-start;
}

.feature-note.left .indicator {
	justify-content: flex-end;
}

.feature-note .indicator:after {
	content: '';
	height: 1px;
	transition-duration: 150ms;
	width: 0;
	background: #FF3C3C;
	position: absolute;
	top: 16px;
  left: 0;
}

.feature-note.left .indicator:after {
	left: auto;
  right: 0;
}

.feature-note.show-cont .indicator:after {
	width: 140px;
}

.feature-note .indicator .plus {
	border-radius: 100%;
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	background: #FF3C3C;
	color: #fff;
	font-size: 20px;
	text-align: center;
	position: relative;
	z-index: 9;
	padding-bottom: 2px;
}

.feature-note .indicator .plus:before {
	content: '';
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	border: 2px solid #FF3C3C;
	border-radius: 100%;
	animation: doublePulse 1.5s ease infinite;
}

@keyframes doublePulse {
	0% {
		transform: translate(-50%, -50%) scale(0);
		opacity: 1;
	}
	50% {
		opacity: .75;
	}
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0;
	}
}

.feature-note .feature-name {
	display: inline-flex;
	height: 85px;
	position: relative;
	transform: scaleY(0);
	transform-origin: bottom;
	align-self: flex-start;
	align-items: flex-start;
}

.feature-note.bottom .feature-name {
	align-items: flex-end;
	align-self: flex-end;
  transform-origin: top;
}

.feature-note.show-cont .feature-name{
	transform: scaleY(1);
	transition: all 150ms ease-in-out 150ms;
}

.feature-note .feature-name:after {
	content: '';
	display: block;
	width: 8px;
	border-radius: 0 0 6px 0;
	height: 100%;
	border-right: 1px solid #FF3C3C;
	border-bottom: 1px solid #FF3C3C;
	position: absolute;
	left: 0;
}

.feature-note.left .feature-name:after {
	border-radius: 0 0 0 6px;
	border-right: 0;
	border-left: 1px solid #FF3C3C;
	left: auto;
  right: 0;
}

.feature-note.left.bottom .feature-name:after {
	border-radius: 6px 0 0 0;
	left: auto;
  right: -4px;
}

.feature-note.bottom .feature-name:after {
	height: calc(100% - 1px);
	border-radius: 0 6px 0 0;
	left: -4px;
}

.feature-note .feature-name span {
	font-size: 16px;
	background: #FFF5F5;
	color: #7C0909;
	border-radius: 24px;
	padding: 4px 16px 6px;
	border:	2px solid #fff;
	font-weight: 500;
	display: inline-block;
	transform: translateX(-50%);
	position: relative;
	left: 7px;
	z-index: 9;
  white-space: nowrap;
}

.feature-note.left .feature-name span {
	transform: translateX(50%);
	left: auto;
  right: 7px;
}

.feature-note.right.top {
  left: calc(100% - 186px);
  top: 35px;
}

.feature-note.left.top {
  right: calc(100% - 120px);
  top: -4px;
}

.feature-note.right.bottom {
  left: calc(100% - 50px);
  bottom: -23px;
}

.feature-note.left.bottom {
  right: calc(100% - 6px);
  bottom: 27px;
}

/*---------------- Our Phonics Kit Section -----------------*/
.why-phonics-section {
	padding: 72px 0 80px;
  background: url(../img/phonics-kit/phonics-kit-bg.jpg);
  position: relative;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.why-phonics-section:before {
  content: '';
  background: #0e213ce6;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.why-phonics-section .owl-carousel .owl-stage {
  display: flex;
}

.why-phonics-section .owl-carousel .owl-item .item {
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.why-phonics-section .owl-carousel .item .kit-img {
	background: #e1ecfa;
  border-radius: 10px 10px 0 0;
}

.why-phonics-section .owl-carousel .item .kit-detail {
	padding: 24px;
  flex: 1;
}

.why-phonics-section .owl-carousel .item .kit-detail h4 {
	color: #3178D3;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.why-phonics-section .owl-carousel .item .kit-detail p {
	color: #6e6e6e;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

.why-phonics-section .container .owl-theme .owl-nav {
  position: absolute;
  width: calc(100% + 110px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.why-phonics-section .container .owl-theme .owl-nav button {
	color: #fff;
	font-size: 45px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  pointer-events: visible;
  transition: all .3s ease-in-out;
}

.why-phonics-section .container .owl-theme .owl-nav button:hover {
  color: #3078d3;
}

/*------------- Offer Section ------------------*/
.offer-section {
	background: #fff;
	padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.offer-section .unique-offer {
  width: 973px;
  max-width: 100%;
}

.offer-section hr.sec-hr {
	margin: 20px auto 40px;
}

.offer-section ul li {
  padding-bottom: 16px;
  display: flex;
  align-items: flex-start;
}

.offer-section ul li img {
	width: 20px;
}

.offer-section ul li label {
	vertical-align: top;
	font-size: 18px;
	font-weight: 400;
	padding-left: 12px;
	color: #6e6e6e;
}

.offer-section .unique-offer .phonic-screen {
  max-width: 443px;
  margin-bottom: -150px;
}

.offer-section .animate-img {
  top: -15px;
}

.offer-section .img-1 {
  top: 130px;
  left: 12px;
}

.offer-section .img-2 {
  left: 50%;
}

.offer-section .img-3 {
  right: 0;
  bottom: 191px;
}

/*---------------- About Section --------------------*/
.about-section {
	background: linear-gradient(to bottom, #3178D3 64%, #E1ECFA 64%);
	padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-section .container .nav-pills {
  margin-bottom: 56px;
}

.about-section .container .nav-pills .nav-item button {
	min-width: 168px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  height: 44px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.about-section .container .nav-pills .nav-item button.active {
	background: #fff;
	color: #180404;
	font-weight: 700;
}

.about-section .phonics-img-sec {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  height: auto !important;
}

.about-section .phonics-img-sec .jg-entry {
  width: 50% !important;
  height: auto !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 12px;
}

.about-section .phonics-img-sec .jg-entry span {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.about-section .phonics-img-sec .jg-entry span:before {
  content: '\f002';
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  color: #fff;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
  cursor: pointer;
  z-index: 9;
}

.about-section .phonics-img-sec .jg-entry span:hover:before {
  opacity: 1;
  visibility: visible;
}

.about-section .phonics-img-sec .jg-entry span img {
  transition: all .3s ease-in-out;
}

.about-section .phonics-img-sec .jg-entry span:hover img {
  transform: scale(1.1);
}

.about-section .img-1 {
  top: 66px;
  left: 68px;
}

.about-section .img-2 {
  top: 382px;
  left: 195px;
}

.about-section .img-3 {
  right: 232px;
  top: 89px;
}

.about-section .img-4 {
  top: 40%;
  right: 0;
}

/*-------------- Your Choice Section ---------------*/
.our-choice-section {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.our-choice-section::before {
  content: '';
  background: url(../img/phonics-kit/our-choice/our-choice-bg.svg);
  position: absolute;
  width: 270px;
  height: 260px;
  top: 0;
  left: 0;
}

.our-choice-section ul {
  padding-left: 20px;
}

.our-choice-section li {
  font-size: 18px;
  color: #494444;
  margin: 8px 0;
  font-weight: 400;
}

.our-choice-img {
  position: relative;
  display: inline-block;
  margin-right: 60px;
  margin-left: auto;
  margin-top: -10px;
}

.our-choice-img .img-2, .our-choice-img .img-3, .our-choice-img .img-4 {
  position: absolute;
  pointer-events: none;
  animation: imageSlide 3s linear infinite;
}

.our-choice-img .img-2 {
  bottom: 70px;
  left: -30px;
}

.our-choice-img .img-3 {
  right: 36px;
  bottom: -18px;
  z-index: 9;
}

.our-choice-img .img-4 {
  right: 30px;
  top: 10px;
}

.our-choice-img .who-we-are-image {
  width: 335px;
  height: 326px;
  overflow: hidden;
  background-color: #fad9d9;
  display: flex;
  align-items: flex-end;
  animation: border-transform-default 10s linear infinite alternate forwards;
  position: relative;
  z-index: 9;
}

.our-choice-img .who-we-are-image img {
  width: 100%;
}

@keyframes border-transform-default {
  0%,to{
    border-radius:63% 37% 54% 46%/55% 48% 52% 45%
  }
  14%{
    border-radius:40% 60% 54% 46%/49% 60% 40% 51%
  }
  28%{
    border-radius:54% 46% 38% 62%/49% 70% 30% 51%
  }
  42%{
    border-radius:61% 39% 55% 45%/61% 38% 62% 39%
  }
  56%{
    border-radius:61% 39% 67% 33%/70% 50% 50% 30%
  }
  70%{
    border-radius:50% 50% 34% 66%/56% 68% 32% 44%
  }
  84%{
    border-radius:46% 54% 50% 50%/35% 61% 39% 65%
  }
}

.our-choice-section .animate-img .img-1 {
  bottom: 0;
  right: 0;
}

/*-------------- Benefits Section ---------------*/
.benefit-section {
	background: linear-gradient(to bottom, #2c61aa 50%, #E1ECFA 50%);
  padding: 72px 0 80px;
  position: relative;
}

.benefit-section:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  background: url(../img/phonics-kit/benefits-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
}

.benefit-section hr.sec-hr {
  margin-bottom: 44px;
}

.benefit-section .owl-carousel {
  display: flex;
  flex-wrap: wrap;
}

.benefit-section .owl-carousel .item {
  padding: 12px;
  width: 33.33%;
}

.benefit-section .owl-carousel .item > div {
  background: #fff;
  padding: 24px;
	border-radius: 8px;
  height: 100%;
  box-shadow: 0px 2px 12px rgba(0,0,0,.1);
}
 
.benefit-section .owl-carousel .item img {
	width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 5px;
  margin-bottom: 16px;
}

.benefit-section .owl-carousel .item h4 {
	margin-bottom: 8px;
	font-size: 24px;
	font-weight: 700;
	color: #3178D3;
  line-height: 30px;
}

.benefit-section .owl-carousel .item p {
	font-size: 16px;
  font-weight: 400;
  color: #6E6E6E;
  margin-bottom: 0;
}

/*======================= Guarantee Section ====================*/
.guarantee-section {
	padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.guarantee-section:before {
  content: '';
  background: url(../img/phonics-kit/our-guarantee/gaurantee-bg.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: 38px;
  top: 0;
  width: 57px;
  height: 32px;
}

.guarantee-section:after {
  content: '';
  background: url(../img/phonics-kit/our-guarantee/gaurantee-bg2.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 236px;
  height: 288px;
}

.guarantee-section hr.sec-hr {
  margin-bottom: 32px;
}

.guarantee-section .progress-outer {
  position: relative;
  width: 740px;
  margin: 0 auto;
  max-width: 100%;
}

.guarantee-section .progress-value {
  font-size: 28px;
  font-weight: 700;
  line-height: 35px;
  color: #180404;
  text-align: right;
  padding-right: 18px;
}

.guarantee-section .progress {
  background: linear-gradient(180deg, #EBF4FF 0%, #E8EAEC 100%);
  border-radius: 20px;
  margin: 10px auto 17px;
  height: 20px;
  overflow: visible;
}

.guarantee-section .progress .progress-bar {
  border-radius: 20px;
  animation: animate-positive 1ms;
  box-shadow: inset 0px 2px 4px rgba(255, 255, 255, 0.2),
              inset 0px -2px 4px rgba(0, 0, 0, 0.2);
  height: 24px;
  margin-top: -2px;
}

@keyframes animate-positive {
  0% {
  	width: 0;
  }
}

.guarantee-section .progress .bar-first {
	background-color: #015fdc;
} 

.guarantee-section .progress .bar-middle {
	background-color: #ef4430;
}

.guarantee-section .progress .bar-end {
	background-color: #58c49a;
}

.guarantee-section p {
  margin: 0 0 8px;
  font-size: 18px;
  color: #6e6e6e;
  font-weight: 400;
}

.guarantee-section .img-1 {
  top: 90px;
  left: 0;
}

.guarantee-section .img-2 {
  left: calc(50% - 370px);
  top: 50px;
}

.guarantee-section .img-3 {
  bottom: 102px;
  left: 173px;
}

.guarantee-section .img-4 {
  right: 214px;
  top: 50%;
}

/*------------------ Counter Section --------------------*/
.counter-section {
	background: #3178D3;
	padding: 80px 0;
}

.counter-section .counter-box {  
  background: #072c5e80;
  text-align: center;
  padding: 32px 24px;
  border-radius: 8px;
}

.counter-section .counter-box img {
	width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 28px;
}

.counter-section .counter-box .counter {
  font-size: 40px;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
  margin-bottom: 7px;
}

.counter-section .counter-box .counter::after {
  content: ' +';
}

.counter-section .counter-box span {
	color: #fff;
	font-weight: 500;
	font-size: 18px;
  line-height: 23px;
}

/*================ Comment Section ===================*/
.parents-say {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.parents-say:before {
  content: '';
  background: url(../img/phonics-kit/parents-say/parents-say-bg.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 144px;
  height: 183px;
}

.parents-say .owl-theme .owl-stage-outer .owl-stage {
  display: flex;
}

.parents-say .owl-theme .owl-stage-outer .owl-item {
  padding: 26px 12px;
}

.parents-say .owl-theme .item {
	box-shadow: 0px 2px 12px rgb(0 0 0 / 8%);
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  transform: translateX(calc(-50% - 10px));
  position: relative;
  height: 100%;
}

.parents-say .owl-theme .item::before {
	content: '"';
	position: absolute;
  font-family: 'BIZ UDPMincho', serif;
  background: #3178D3;
  font-size: 48px;
  display: flex;
  justify-content: center;
  line-height: 80px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  top: calc(0px - 26px);
  right: 24px;
}

.parents-say .owl-theme .item img {
	height: 238px;
  object-fit: none;
  border-radius: 8px;
}

.parents-say .owl-theme .item i {
	color: #FFCB45;
	font-size: 14px;
}

.parents-say .owl-theme .item p {
	font-size: 18px;
  line-height: 26px;
	font-weight: 400;
	color: #6e6e6e;
	font-style: italic;
	margin-bottom: 10px;
}

.parents-say .owl-theme .item h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #494444;
}

.parents-say .owl-theme .item label {
  font-size: 14px;
  font-weight: 400;
  color: #494444;
  opacity: 0.6;
}

.parents-say .container .owl-theme .owl-nav {
  position: absolute;
  width: calc(100% + 100px);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.parents-say .container .owl-theme .owl-nav button {
	color: #AEAEAE;
	font-size: 30px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  pointer-events: visible;
  transition: all .3s ease-in-out;
}

.parents-say .container .owl-theme .owl-nav button:hover {
  color: #3078d3;
}

.parents-say .container .owl-theme .owl-dots {
	text-align: center;
	padding-top: 50px;	
}

.parents-say .container .owl-theme .owl-dots button {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #494444;
  opacity: .1;
  margin: 0 4px;
}

.parents-say .container .owl-theme .owl-dots button.active {
	background: #5E97E0;
  opacity: 1;
	width: 12px;
	height: 12px;
}

.parents-say .img-1 {
  top: 67px;
  right: 0;
}

/*--------------- Contact Section -------------------*/
.contact-section {
	padding: 0 0 80px;
  background: linear-gradient(to bottom, #fff 40%, #072C5E 40%);
  position: relative;
}

.contact-section .row {
  background: #E1ECFA;
  padding: 50px;
  border-radius: 8px;
}

.contact-section .cont-info h3 {
	font-size: 36px;
	font-weight: 800;
	color: #180404;
	margin-bottom: 16px;
} 

.contact-section .cont-info h3 span {
	color: #3178D3;
}

.contact-section .cont-info p {
  font-size: 16px;
  color: #6e6e6e;
  font-weight: 400;
  margin-bottom: 93px;
}

.contact-section .cont-info .env.bounce {
  animation: bounce 1.2s ease;
}

@keyframes bounce {
  30% { transform:translateY(0%); }
  42% { transform:translateY(-30%); }
  54% { transform:translateY(0%); }
  66% { transform:translateY(-18%); }
  78% { transform:translateY(0%); }
  89% { transform:translateY(-10%); }
  100% { transform:translateY(0); }
}

.contact-section .cont-form form {
	width: 360px;
  max-width: 100%;
  margin: 0 0 0 auto;
}

.contact-section .cont-form form .form-group {
  margin-bottom: 24px;
}

.contact-section .cont-form form label {
  font-size: 16px;
  color: #494444;
  font-weight: 400;
}

.contact-section .cont-form .form-control {
	height: 48px;
  padding-left: 16px;
  margin-bottom: 5px;
  border-radius: 4px;
  border: 0;
  color: #180404;
  font-size: 16px;
}

.contact-section .cont-form textarea.form-control {
  height: 72px;
  padding: 14px 0 14px 16px;
  margin-bottom: 5px;
}

.contact-section .cont-form input::-webkit-input-placeholder,
.contact-section .cont-form textarea::-webkit-input-placeholder {
  color: #AEAEAE;
}

.contact-section .cont-form .btn {
	border: 0;
	border-radius: 8px;
	height: 48px;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	background: #3178D3;
  margin-top: 16px;
}

.contact-section .cont-form .btn:hover {
  background: #1c5caf;
}

.contact-section .img-1 {
  left: 26px;
  top: 28%;
}

.contact-section .img-2 {
  top: 0;
  right: 0;
}

/*================ Footer =================*/
footer {
	padding: 72px 0;
}

footer .container > div {
  width: 743px;
  max-width: 100%;
  margin: 0 auto;
}

footer p {
	margin: 32px 0;
  font-size: 18px;
  font-weight: 400;
  color: #6E6E6E;
}

footer .copyright {
  border-top: 1px solid #D9D9D9;
  padding-top: 32px;
	margin-bottom: 0;
	font-size: 14px;
	color: #6e6e6e;
  line-height: 18px;
}

/*============ Modal ==============*/
.talk-to-expert .modal-content {
  background: none;
  border: 0;
}

.talk-to-expert .modal-content .hire-us-form {
  margin: 0 auto;
  border-radius: 0;
  position: relative;
}

.modal-content .hire-us-form .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  color: #fff;
  background: #ff3c3c;
  padding-bottom: 8px;
  width: 30px;
  height: 30px;
  opacity: 1;
  border-radius: 0px;
  line-height: 0;
  box-sizing: border-box;
  transition: all .3s ease-in-out;
}

.modal-content .hire-us-form .btn-close:hover {
  background: #e10202;
}

@media screen and (max-width: 1220px) {
	.why-phonics-section .container .owl-theme .owl-nav {
		width: calc(100% + 20px);
	}

	.parents-say .container .owl-theme .owl-nav {
		width: calc(100% + 40px);
	}
}


/*============= IPAD LANDSCAPE SCREEN ================*/
@media screen and (max-width: 1199px) {
  .section-title {
    font-size: 36px;
  }

  .banner-section .img-3 {
    right: 3px;
  }

  .banner-section .img-4 {
    left: 45%;
    bottom: 130px;
  }

  .banner-section .left-sec .hero-img {
    width: 300px;
    right: -30px;
  }

  .feature-note.left.bottom {
    right: calc(100% - 36px);
  }

  .feature-note.right.bottom {
    left: calc(100% - 140px);
    bottom: -73px;
  }

  .why-phonics-section .container .owl-theme .owl-nav {
    width: calc(100% + 65px);
  }

  .about-section .img-3 {
    top: 120px;
  }

  .about-section .img-4 {
    top: 30%;
  }

  .about-section .phonics-video {
    width: 100%;
  }

  .our-choice-section .animate-img .img-1 {
    bottom: 150px;
  }

  .z-index-md {
    z-index: 9;
  }

  .guarantee-section .img-3 {
    left: 103px;
  }

  .guarantee-section .img-4 {
    right: 104px;
  }

  .counter-section .counter-box .counter {
    font-size: 35px;
  }

  .parents-say .owl-theme .item p {
    font-size: 16px;
    line-height: 22px;
  }

  .parents-say .owl-theme .item h5 {
    font-size: 16px;
  }

  .contact-section .img-1 {
    top: -10%;
  }

  .contact-section .img-2 img {
    width: 170px;
  }
}

/*============= IPAD SCREEN ================*/
@media screen and (max-width: 991px) {
  .banner-section {
    padding-bottom: 0;
  }

  .banner-section .img-1 {
    top: 30px;
  }

  .banner-section .img-1 img {
    width: 150px;
  }

  .banner-section .img-4 {
    top: 25%;
    bottom: auto;
  }

  .banner-section .img-5, .banner-section .img-6 {
    bottom: 61%;
  }

  .banner-section .left-sec h1 {
    margin: 10px 0;
  }

  .banner-section .left-sec .hero-img {
    width: 290px;
    right: 20px;
  }

	.banner-section .hire-us-form {
		margin: 80px -36px 0 !important;
    width: calc(100% - -72px);
    background: #F2F2F2;
    border-radius: 0;
    padding: 28px 20px 32px;
    position: relative;
	}

  .hire-us-form .sec-hr {
    margin: 0 auto 24px;
  }

  .hire-us-form .your-info {
    padding: 24px;
  }

  .tech-learn-kit > img {
    width: 400px;
  }

  .feature-note .indicator {
    flex: 0 0 80px;
  }

  .feature-note.show-cont .indicator:after {
    width: 80px;
  }

  .feature-note.left.top {
    right: calc(100% - 90px);
    top: -28px;
  }

  .feature-note.left.bottom {
    bottom: 0;
  }

  .feature-note.right.top {
    left: calc(100% - 175px);
    top: -25px;
  }

  .feature-note .feature-name:after {
    border-radius: 0 0 8px 0;
    height: 100%;
    border-right: 2px solid #FF3C3C;
    border-bottom: 2px solid #FF3C3C;
    left: -1px;
  }

  .feature-note.bottom .feature-name:after {
    height: 100%;
    border-radius: 0 8px 0 0;
    left: 0;
    border-top: 2px solid #FF3C3C;
  }

  .feature-note .indicator:after {
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
  }

  .feature-note.left .feature-name:after {
    border-left: 2px solid #FF3C3C;
    border-radius: 0 0 0 8px;
    right: -1px;
  }

	.section-title {
		font-size: 34px;
	}

  .why-phonics-section .container .owl-theme .owl-nav {
    width: calc(100% + 15px);
  }

  .offer-section .img-1 {
    top: 40px;
  }

  .offer-section .unique-offer {
    padding: 0 40px;
  }

  .offer-section .unique-offer .phonic-screen {
    max-width: 100%;
  }

  .offer-section ul li {
    padding-bottom: 15px;
  }

	.offer-section ul li label {
		font-size: 16px;
	}

  .about-section .img-1 {
    top: 220px;
    left: 28px;
  }

  .about-section .img-3 {
    top: 180px;
    right: 72px;
  }

	.about-section .phonics-video {
		height: 482px;
	}

	.why-phonics-section .owl-carousel {
		padding: 0 40px;
	}

	.why-phonics-section .owl-carousel .item .kit-detail {
		padding: 24px;
	}

	.our-choice-img .who-we-are-image {
		width: 285px;
    height: 285px;
	}

  .our-choice-section li {
		font-size: 15px;
	}

	.benefit-section .owl-carousel .item {
		width: 50%;
	}

  .guarantee-section .img-3 {
    bottom: 30px;
  }

  .guarantee-section .img-4 {
    right: 184px;
  }

	.counter-section .counter-box {
		margin: 10px 0;
  }

  .parents-say .owl-theme .item {
    transform: none;
  }

	.contact-section .cont-info h3 {
		font-size: 30px;
	}

  footer p br {
    display: none;
  }
}

/*============= MOBILE LANDSCAPE SCRN ================*/
@media screen and (max-width: 767px) {
  .nav-header {
    height: auto;
  }

  .nav-header .navbar {
    flex-direction: column;
    padding-bottom: 14px;
  }

  .nav-header .navbar .navbar-brand {
    margin: 0 0 8px;
    padding-bottom: 3px !important;
    border-bottom: 1px solid #D9D9D9;
  }

  .nav-header .navbar .navbar-brand .logo-img {
    width: 160px;
  }

  .social-icons {
    gap: 16px
  }

  .banner-section {
    padding: 28px 0 0;
  }

  .banner-section .left-sec {
    text-align: center;
    padding-left: 10px;
  }

  .banner-section .left-sec > div {
    padding: 0 15px;
  }

  .banner-section .left-sec h1 {
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 8px;
  }

  .banner-section .left-sec p {
    font-size: 15px;
    line-height: 20px;
  }

  .banner-section .left-sec span {
    justify-content: center;
    font-size: 14px;
    margin-bottom: 24px;
  }

  .theme-btn {
    width: 100%;
    height: 48px;
  }

  .banner-section .left-sec .hero-img {
    position: static;
    width: 244px;
    margin-top: 23px;
    margin-bottom: -72px;
  }

  .banner-section .img-1 {
    top: 60px;
  }

  .banner-section .img-1 img {
    width: 90px;
  }

  .banner-section .img-2 {
    left: 50px;
  }

  .banner-section .img-2 img {
    width: 30px;
  }

  .banner-section .img-3 {
    right: -13px;
    top: 50px;
  }

  .banner-section .img-4 {
    display: none;
  }

  .banner-section .img-5 {
    bottom: 68%;
  }

  .banner-section .img-5 img {
    width: 26px;
  }

  .banner-section .img-6 {
    bottom: 62%;
  }

  .banner-section .img-6 img {
    width: 12px;
  }

  .section-title {
    font-size: 24px;
    line-height: 30px;
  }
  
  .section-paragraph {
    font-size: 15px;
    line-height: 20px;
    margin-top: 8px;
  }

  .section-title br, .section-paragraph br {
    display: none;
  }
  
  hr.sec-hr {
    height: 4px;
    margin-bottom: 32px;
    width: 88px;
  }

  .banner-section .hire-us-form {
    margin: 0 -12px 0px !important;
    width: calc(100% - -24px);
    border-radius: 0;
    padding: 28px 24px 32px;
    position: relative;
  }

  .hire-us-form .section-title {
    font-size: 24px;
    line-height: 30px;
  }

  .hire-us-form .section-paragraph {
    font-size: 15px;
    line-height: 20px;
  }

  .hire-us-form .your-info .form-group {
    margin-bottom: 16px;
  }

  .hire-us-form .your-info .form-label {
    font-size: 15px;
    color: #6E6E6E;
  }

  .hire-us-form .your-info .form-control {
    height: 48px;
  }

  .hire-us-form .your-info .btn {
    height: 48px;
    font-size: 15px;
  }

  .hire-us-form .your-info .join-us {
    font-size: 15px;
  }

  .teach-child-section, .why-phonics-section {
    padding: 32px 15px;
  }

  .tech-learn-kit {
    margin: 64px 0 94px;
  }

  .feature-note {
    flex-direction: column-reverse !important;
    align-items: center !important;
  }

  .tech-learn-kit > img {
    width: 312px;
  }

  .feature-note .indicator {
    flex: auto;
  }

  .feature-note .indicator:after {
    display: none;
  }

  .feature-note .indicator .plus {
    width: 24px;
    height: 24px;
  }

  .feature-note .indicator .plus:before {
    width: 36px;
    height: 36px;
  }

  .feature-note .feature-name span {
    transform: none !important;
    right: 0 !important;
    left: 0;
    font-size: 12px;
    line-height: 15px;
    padding: 4px 10px 6px;
  }

  .feature-note .feature-name:after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: auto;
    border-right: 2px solid #FF3C3C;
  }

  .feature-note.left .feature-name:after {
    border-left: 2px solid #FF3C3C;
  }

  .feature-note.right.top {
    right: -5px;
    top: -30px;
    left: auto;
  }

  .feature-note.right.top .feature-name span {
    left: 10px;
  }

  .feature-note.left.top {
    right: auto;
    top: -62px;
    left: -22px;
  }

  .feature-note.left.top .feature-name span {
    left: 15px;
  }

  .feature-note.bottom {
    flex-direction: column !important;
  }

  .feature-note.right.bottom {
    left: auto;
    right: -17px;
    bottom: -63px;
  }

  .feature-note.right.bottom .indicator {
    left: calc(50% - 45px);
  }

  .feature-note.right.bottom .feature-name:after {
    right: 44px !important;
    left: auto !important;
  }

  .feature-note.left.bottom {
    bottom: -30px;
    left: -17px;
    right: auto;
  }

  .feature-note.left.bottom .indicator {
    right: calc(50% - 30px);
  }

  .feature-note.left.bottom .feature-name:after {
    right: auto !important;
    left: 30px !important;
  }

  .teach-child-section .theme-btn {
    width: auto;
  }

  .why-phonics-section .owl-carousel {
    padding: 0;
  }

  .why-phonics-section .owl-carousel .item .kit-img img {
    height: 179px;
    object-fit: contain;
    padding: 15px 0;
  }

  .why-phonics-section .owl-carousel .item .kit-detail {
    padding: 24px 24px 10px;
  }

  .why-phonics-section .owl-carousel .item .kit-detail h4 {
    font-size: 20px;
  }

  .why-phonics-section .owl-carousel .item .kit-detail p {
    font-size: 15px;
    line-height: 22px;
  }

  .why-phonics-section .container .owl-theme .owl-nav.disabled {
    display: none;
  }

  .why-phonics-section .owl-carousel .owl-dots .owl-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    margin: 30px 3px 0;
    border-radius: 50%;
  }

  .why-phonics-section .owl-carousel .owl-dots .owl-dot.active {
    background: #FF3C3C;
    transform: scale(1.5);
  }

  .offer-section {
    background: #F5F5F5;
    padding: 28px;
  }

  .offer-section .animate-img {
    display: none;
  }

  .offer-section .unique-offer {
    padding: 0;
  }

  .offer-section hr.sec-hr {
    margin: 20px auto 24px;
  }

  .offer-section ul li {
    padding-bottom: 5px;
  }

  .offer-section ul li img {
    width: 16px;
  }

  .offer-section ul li label {
    font-size: 14px;
    vertical-align: text-top;
  }  

  .offer-section .unique-offer .phonic-screen {
    margin-bottom: -140px;
    margin-top: 10px;
  }

  .about-section {
    background: linear-gradient(to bottom, #3178D3 56%, #E1ECFA 56%);
    padding: 28px 20px 32px;
  }

  .about-section .container .nav-pills {
    margin: 0 -22px 24px;
  }

  .about-section .container .nav-pills .nav-item button {
    min-width: 160px;
    font-size: 14px;
    height: 40px;
    margin: 0 8px !important;
  }  

  .about-section .phonics-img-sec .jg-entry {
    padding: 8px;
    height: 156px !important;
  }

  .about-section .phonics-img-sec .jg-entry span {
    border-radius: 8px;
  }

  .about-section .phonics-img-sec .jg-entry span:before {
    border-radius: 8px;
    font-size: 20px;
  }

  .about-section .phonics-img-sec .jg-entry span img {
    height: 100%;
    object-fit: cover;
  }

  .about-section .img-1 {
    top: 80px;
    left: auto;
    right: -30px;
  }

  .about-section .img-1 img {
    width: 60px;
  }

  .about-section .img-2 {
    top: 162px;
    left: 10px;
  }

  .about-section .img-2 img {
    width: 10px;
  }

  .about-section .img-3 {
    top: 250px;
    right: 4px;
  }

  .about-section .img-3 img {
    width: 10px;
  }

  .about-section .img-4 {
    display: none;
  }

  .about-section .phonics-video {
    height: 280px;
  }

  .our-choice-section {
    padding: 28px 15px 32px;
  }

  .our-choice-section:before, .our-choice-section .animate-img, .our-choice-section .section-paragraph {
    display: none;
  }

  .our-choice-img {
    margin: 0 auto;
    display: flex;
    align-items: center;
  }

  .our-choice-section ul {
    margin-top: 32px;
  }
  
  .our-choice-section li {
    font-size: 15px;
    color: #6E6E6E;
  }
  
  .our-choice-section .theme-btn {
    margin-top: 12px !important;
  }

  .our-choice-img .who-we-are-image {
    width: 215px;
    height: 215px;
  }

  .our-choice-img .img-2 {
    bottom: 90px;
    left: -10px;
  }

  .our-choice-img .img-2 img {
    width: 50px;
  }

  .our-choice-img .img-3 {
    right: 16px;
    bottom: 62px;
  }

  .our-choice-img .img-3 img {
    width: 50px;
  }

  .our-choice-img .img-4 {
    right: 30px;
    top: 50px;
  }

  .benefit-section {
    padding: 28px 10px 32px;
  }

  .benefit-section hr.sec-hr {
    margin-bottom: 32px;
  }

  .benefit-section .owl-carousel .owl-stage {
    display: flex;
  }

  .benefit-section .owl-carousel .item {
    padding: 0;
    height: 100%;
    width: 100%;
    transform: translateX(-53%);
  }

  .benefit-section .owl-carousel .item img {
    margin: 0 auto 16px;
  }

  .benefit-section .owl-carousel .item h4 {
    font-size: 20px;
  }

  .benefit-section .owl-carousel .item p {
    font-size: 15px;
  }

  .benefit-section .owl-carousel .owl-dots {
    margin: 0 auto;
  }

  .benefit-section .owl-carousel .owl-dots .owl-dot {
    width: 6px;
    height: 6px;
    background: #494444;
    opacity: .2;
    margin: 24px 3px 0;
    border-radius: 50%;
  }

  .benefit-section .owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
    transform: scale(1.5);
  }

  .guarantee-section {
    padding: 28px 10px 32px;
  }

  .guarantee-section::before, .guarantee-section::after {
    display: none;
  }

  .guarantee-section .progress-value {
    font-size: 20px;
    line-height: 24px;
    padding-right: 0;
  }

  .guarantee-section .progress {
    margin: 7px auto;
    height: 14px;
  }

  .guarantee-section .progress .progress-bar {
    height: 20px;
    margin-top: -4px;
  }

  .guarantee-section p {
    font-size: 15px;
    text-align: center;
  }

  .guarantee-section .img-1 {
    display: none;
  }

  .guarantee-section .img-2 {
    left: auto;
    right: -5px;
    top: 50px;
  }

  .guarantee-section .img-3 {
    bottom: auto;
    top: 30px;
    left: 36px;
  }

  .guarantee-section .img-4 {
    right: auto;
    left: 4px;
    top: auto;
    bottom: 24px;
  }

  .counter-section {
    padding: 24px 20px;
  }

  .counter-section .counter-box {
    margin: 8px 0;
    display: flex;
    padding: 24px;
    text-align: left;
    align-items: center;
  }

  .counter-section .counter-box img {
    width: 46px;
    height: 46px;
    margin: 0 34px 0 0;
  }

  .counter-section .counter-box .counter {
    font-size: 26px;
    margin-bottom: 0;
  }

  .counter-section .counter-box span {
    font-size: 16px;
  }

  .parents-say {
    padding: 28px 0 32px;
  }

  .parents-say:before {
    width: 67px;
    height: 85px;
    background-size: 65px;
  }

  .parents-say hr.sec-hr {
    margin-bottom: 15px;
  }

  .parents-say .owl-theme .item {
    padding: 24px;
  }

  .parents-say .owl-theme .item::before {
    font-size: 40px;
    line-height: 70px;
    width: 40px;
    height: 40px;
    top: calc(0px - 20px);
    right: 0;
  }

  .parents-say .owl-theme .item img {
    height: 250px;
    margin-bottom: 13px;
  }

  .parents-say .owl-theme .item p {
    font-size: 15px;
    line-height: 24px;
  }

  .parents-say .owl-theme .item h5 {
    font-size: 15px;
    line-height: 10px;
    margin-top: 10px;
  }

  .parents-say .owl-theme .item label {
    font-size: 12px;
  }

  .parents-say .container .owl-theme .owl-dots {
    padding-top: 0;
  }

  .parents-say .container .owl-theme .owl-nav.disabled {
    display: none;
  }

  .parents-say .animate-img {
    z-index: 9;
  }

  .parents-say .img-1 {
    display: none;
  }

  .parents-say .img-2 {
    top: 9px;
    right: 35px;
  }

  .parents-say .img-2 img {
    width: 12px;
  }

  .parents-say .img-3 {
    right: 0;
    bottom: 30px;
  }

  .parents-say .img-3 img {
    width: 90px;
  }

  .contact-section .row {
    padding: 20px;
  }

  .contact-section .cont-info p {
    margin-bottom: 35px;
  }

  .contact-section .cont-info .env {
    width: 170px;
  }
  
  .call-request-section {
    background: #2760a9;
    padding: 28px 15px;
    position: relative;
  }
  
  .call-request-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/phonics-kit/call-to-action.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
  }
  
  .call-request-section p {
    margin: 16px 0 24px;
  }

  footer {
    padding: 16px 0;
  }

  footer p {
    margin: 16px 0;
    font-size: 15px;
  }

  footer .copyright {
    padding-top: 16px;
    font-size: 12px;
    line-height: 15px;
  }

  footer .theme-btn {
    width: auto;
    padding: 6px 32px;
    background: #3178D3;
  }

  footer .theme-btn:hover {
    background: #1957a8;
  }

  .talk-to-expert .modal-content .hire-us-form {
    max-width: 100%;
  }

  .offer-button {
    position: fixed;
    bottom: -65px;
    width: 100%;
    padding: 7px;
    left: 0;
    z-index: 9;
    transition: all .3s ease-in-out;
  }

  .offer-button.show-btn {
    bottom: 0;
  }
}
  
/*============= MOBILE SCRN ================*/
@media screen and (max-width: 480px) {
  .teach-child-section .theme-btn {
    width: 100%;
  }

  .offer-section ul li label {
    font-size: 15px;
  }

  .our-choice-img .who-we-are-image {
    width: 285px;
    height: 285px;
  }

  .counter-section .counter-box .counter {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .counter-section .counter-box span {
    font-size: 16px;
  }

  .our-choice-img .img-2 {
    bottom: 70px;
    left: -30px;
  }

  .our-choice-img .img-3 {
    right: 36px;
    bottom: -18px;
  }

  .our-choice-img .img-4 {
    right: 30px;
    top: 10px;
  }

  .benefit-section .owl-carousel .item {
    transform: none;
  }

  footer {
    padding: 16px 0 75px;
  }
}

@media screen and (max-width: 360px) {
  .about-section .container .nav-pills .nav-item button {
    min-width: 120px;
  }

  .feature-note.left.top {
    left: -10px;
  }

  .feature-note.right.top {
    right: 15px;
  }

  .feature-note.left.bottom {
    left: 3px;
  }

  .feature-note.right.bottom {
    right: 5px;
  }
}
