/* Table of Contents
----------------------------------

0- Global CSS
1- Heading CSS
2- Button CSS
3- Header Area CSS
4- Home Area CSS
5- About Area CSS
6- Courses Area CSS
7- Pricing Area CSS
8- Teacher Area CSS
9- Testimonials Area CSS
10- Blog Area CSS
11- Contact Area CSS Area CSS
12- Footer Area CSS
13- Scroll-Top Area CSS

*/



/*--------------------- 0- Global CSS (Start) ---------------------*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

:root {
  --blue: #00a8e0;
  --black: #0a0903;
  --white: #fff;
  --grey: #666;
  --whitish: #f2f6f8;
  --border-radius: 1rem;
  --box-shadow: 1px 0px 8px -3px rgba(0, 0, 0, 0.2);
  --box-shadow-hover: 7px 7px 13px -9px rgba(0, 0, 0, 0.4);
}

*{
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;

  outline: none;
  border: none;

  text-transform: capitalize;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;

  text-decoration: none;
}

html {
  font-size: 62.8%;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track {
  background: var(--black);
}

html::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 0.5rem;
}

body {
  background: var(--whitish);
}

section {
  padding: 2rem 5%;
}

a {
   color: inherit;
   text-decoration: none;
}

.swiper-pagination-bullet{
  height: 1rem;
  width: 1rem;
  border-radius: 50rem;
}

.swiper-pagination-bullet-active{
  width: 3rem;
}

/*--------------------- 0- Global CSS (End) ---------------------*/



/*--------------------- 1- Heading CSS (Start) ---------------------*/
.heading {
  color: var(--blue);
  text-align: center;
  padding-bottom: 2rem;
  text-transform: uppercase;
  font-size: 3rem;
}

.heading span {
  color: var(--black);
  text-transform: uppercase;
}

/*--------------------- 1- Heading CSS (End) ---------------------*/



/*--------------------- 2- Button CSS (Start) ---------------------*/
.btn-primary {
  display: inline-block;
  font-size: 2rem;
  background: var(--blue);
  border: 1.5px solid transparent;
  text-decoration: none;
  color: var(--whitish);
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
}

.btn-primary:hover {
  background: var(--black);
}

.btn-secondary {
  display: inline-block;
  font-size: 2rem;
  background: var(--black);
  border: 1.5px solid transparent;
  text-decoration: none;
  color: var(--whitish);
  padding: 0.7rem 1.5rem;
  border-radius: 0.3rem;
}

.btn-secondary:hover {
  background: var(--blue);
}

/*--------------------- 2- Button CSS (End) ---------------------*/




/*--------------------- 3- Header Area CSS (Start) ---------------------*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;

  padding: 2rem 5%;
  background: var(--blue);
  //-webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  //       box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);

  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.header .logo img{
    width: 280px;
    height: auto;
}


.header .logo i{
  font-size: 2.5rem;
  color: var(--black);
  padding-right: 1rem;
}

.header .logo h2{
  color: var(--whitish);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}

.header .navbar-main a{
  display: inline-block;
  font-size: 2rem;
  color: var(--white);
  margin: 0 2.5rem;
}

.header .navbar-main a:hover,
.header .navbar-main a.active{
  color: var(--black);
}

#menu{
  font-size: 3rem;
  color: var(--white);
  border: 0.2rem solid var(--white);
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: none;
}

#menu:hover{
  color: var(--black);
  border-color: var(--black);
  cursor: pointer;
}
#menu.active {
   color: #fff; /* Color for the close icon */
}
/*--------------------- 3- Header Area CSS (End) ---------------------*/



/*--------------------- 4- Home Area CSS (Start) ---------------------*/
.home{
  width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1px; 
  min-height: 100vh;
  position: relative;
}

.home-slider{
  position: relative;
}

.home-slider .swiper-pagination-bullet{
  height: 1.5rem;
  width: 1.5rem;
  background: var(--white);
}

.home-slider .swiper-pagination-bullet-active{
  width: 3.5rem;
  background: var(--black);
}

.home-item img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.home-item .content{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  background:         linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.home-item .content .text{
  text-align: center;
  width: 70rem;
}

.home h2{
  font-size: 3.5rem;
  letter-spacing: 1px;
  color: var(--blue);
}

.home p {
  line-height: 1.4;
  font-size: 2rem;
  padding: 1rem 0;
  color: var(--white);
}

.home .btn {
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}


/*--------------------- 4- Home Area CSS (End) ---------------------*/



/*--------------------- 5- About Area CSS (Start) ---------------------*/
.about{
  overflow: hidden;
}

.about .box-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.about .image{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
      flex: 1 1 40rem;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.about .image img{
  width: 100%;
  height: 100%;
  object-fit: fit;
}

.about .content{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
      flex: 1 1 40rem;
  overflow: hidden;
}

.about .content h1{
  font-size: 3rem;
  color: var(--black);
  padding-bottom: 1.5rem;
}

.about .content p{
  font-size: 1.5rem;
  color: var(--grey);
  line-height: 1.6;
}

.about .content ul{
  list-style-type: none;
  padding: 2rem 0;
}

.about .content ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 1.5rem;
}

.about .content ul li i {
  font-size: 2rem;
  padding-right: 1rem;
  color: var(--blue);
}

.about .content ul li span {
  font-size: 1.5rem;
  font-weight: 600;
}

.about .content .btn {
  padding-top: 1rem;
}

.about .content .btn .btn-secondary:hover {
  color: var(--black);
}

.about-info{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.about-info .info-box{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 15rem;
      flex: 1 1 15rem;
  border: 0.2rem solid var(--blue);
  background-color: rgba(0, 168, 224, 0.1);
  text-align: center;
  padding: 1.5rem;
}

.about-info .info-box i{
  font-size: 4rem;
  color: var(--blue);
}

.about-info .info-box .count{
  font-size: 3rem;
  padding: 1rem 0;
}

.about-info .info-box h5{
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--grey);
}

/*--------------------- 5- About Area CSS (End) ---------------------*/



/*--------------------- 6- Courses Area CSS (Start) ---------------------*/
.courses .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  gap: 2rem;
  overflow: hidden;
}

.courses .course-item {
  background: var(--white);
  border-radius: var(--border-radius);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  overflow: hidden;
  position: relative;
}

.course-item:hover{
  -webkit-box-shadow: var(--box-shadow-hover);
          box-shadow: var(--box-shadow-hover);
}

.course-item .price{
  background-color: var(--blue);
  color: var(--white);
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  opacity: 0.8;
}

.courses .course-item .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.course-item .content{
  padding: 1.5rem 1rem;
}

.course-item .content .title{
  background-color: var(--black);
  color: var(--white);
  font-size: 2rem;
  padding: 0.5rem 1rem;
}

.course-item .content .intro{
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 0.2rem solid var(--blue);
  padding: 1rem 0;
  margin-top: 1.5rem;
}

.course-item .content .intro li{
  color: var(--blue);
  font-size: 1.5rem;
}

.course-item .content .intro li i{
  padding-right: 0.5rem;
}

.course-item .content .intro li span{
  color: var(--grey);
  font-weight: 400;
}

.course-item .content h3{
  color: var(--black);
  font-size: 2.3rem;
  padding-top: 2rem;
}

.course-item .content p{
  color: var(--grey);
  font-size: 1.5rem;
  padding: 1rem 0;
  line-height: 1.5;
}

/*--------------------- 6- Courses Area CSS (End) ---------------------*/



/*--------------------- 7- Pricing Area CSS (Start) ---------------------*/
.pricing .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  gap: 2rem;
}

.price-item{
  background: var(--white);
  border-radius: var(--border-radius);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  overflow: hidden;
  text-align: center;
}

.price-item:hover{
  -webkit-box-shadow: var(--box-shadow-hover);
          box-shadow: var(--box-shadow-hover);
}

.price-item h3{
  font-size: 3rem;
  color: var(--white);
  background: var(--blue);
  padding: 2rem;
}

.price-item p{
  text-align: center;
  color: var(--grey);
  font-size: 2rem;
  padding: 1rem 0;
}

.price-item p span{
  color: var(--black);
  font-size: 5rem;
  font-weight: bold;
}

.price-item .list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2rem;
  border-top: 0.15rem solid rgba(0, 0, 0, 0.2);
  border-bottom: 0.15rem solid rgba(0, 0, 0, 0.2);
}

.price-item .list ul{
  color: grey;
  list-style-type: none;
  text-align: left;
}

.price-item .list ul li{
  font-size: 1.6rem;
  padding-bottom: 2rem;
}

.price-item .list ul li:last-child{
  padding-bottom: 0;
}

.price-item .list ul li i {
  padding-right: 1rem;
}

.price-item .list ul li .fa-check{
  color: green;
}

.price-item .list ul li .fa-times{
  color: red;
}

.price-item .btn-secondary{
  margin: 1.5rem;
}
/*--------------------- 7- Pricing Area CSS (End) ---------------------*/



/*--------------------- 8- Teacher Area CSS (Start) ---------------------*/
.teacher .box-container{
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.teacher .teacher-item{
  background-color: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.teacher .teacher-item:hover{
  -webkit-box-shadow: var(--box-shadow-hover);
          box-shadow: var(--box-shadow-hover);
}

.teacher .teacher-item .image{
  height: 35rem;
  position: relative;
  overflow: hidden;
}

.teacher .teacher-item .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher .teacher-item .image:hover img{
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.teacher .teacher-item .icons{
  background: #333;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: absolute;
  bottom: -20%;
  left: 0;
  right: 0;
}

.teacher .teacher-item:hover .icons{
  bottom: 0%;
}

.teacher .teacher-item .icons a{
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-size: 2rem;
}

.teacher .teacher-item .icons a:hover{
  color: var(--blue);
}

.teacher .teacher-item .content{
  padding: 1rem;
  text-align: center;
}

.teacher .teacher-item .content h3{
  font-size: 2.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(45, 45, 45, 0.4);
}

.teacher .teacher-item .content p{
  color: #666;
  font-size: 1.7rem;
  padding-top: 0.5rem;
  
}
/*--------------------- 9- Teacher Area CSS (End) ---------------------*/



/*--------------------- 8- Testimonials Area CSS (Start) ---------------------*/
.testimonial-slider{
  position: relative;
  padding: 8rem 0 5rem 0;
  overflow: hidden;
}

.testimonial-slider .swiper-pagination-bullet{
  background: #666;
}

.testimonial-slider .swiper-pagination-bullet-active{
  background: var(--blue);
}

.testimonial .testi-item{
  padding: 1rem 2rem;
  padding-top: 8rem;
  position: relative;
  text-align: center;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border-radius: 0.5rem;
}

.testimonial .testi-item:hover{
  -webkit-box-shadow: var(--box-shadow-hover);
          box-shadow: var(--box-shadow-hover);
}

.testimonial .testi-item .image {
  height: 12rem;
  width: 12rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.testimonial .testi-item .image img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 0.3rem solid var(--black);
  padding: 0.3rem;
}

.testimonial .testi-item .intro{
  padding: 1rem 0;
}

.testimonial .testi-item .intro h3 {
  padding-bottom: 1rem;
  font-size: 2.5rem;
}

.testimonial .testi-item .intro .rating i {
  color: goldenrod;
  font-size: 1.8rem;
}

.testimonial .testi-item p{
  color: var(--grey);
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 1rem 0;
}

/*--------------------- 8- Testimonials Area CSS (End) ---------------------*/



/*--------------------- 10- Blog Area CSS (Start) ---------------------*/
.blog .box-container{
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  gap: 2rem;
}

.blog-item{
  height: 100%;
  width: 100%;
  border-radius: var(--border-radius);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.blog-item:hover{
  -webkit-box-shadow: var(--box-shadow-hover);
          box-shadow: var(--box-shadow-hover);
}

.blog-item .title{
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--white);
  background-color: var(--blue);
  opacity: 0.8;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.blog-item .image{
  height: 25rem;
}

.blog-item .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-item .content{
  padding: 1rem 1.5rem;
}

.blog-item .content .details{
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 0.2rem solid var(--blue);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.blog-item .content .details li{
  font-size: 1.5rem;
}

.blog-item .content .details li i{
  padding-right: 0.5rem;
  color: var(--blue);
}

.blog-item .content .details li span{
  color: #333;
  font-weight: 400;
}

.blog-item .content .main-heading{
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black);
  padding-top: 1rem;
}

.blog .blog-item .content p{
  padding: 1.5rem 0;
  font-size: 1.5rem;
  color: #666;
  line-height: 1.5;
}
/*--------------------- 10- Blog Area CSS (End) ---------------------*/



/*--------------------- 11- Contact Area CSS (Start) ---------------------*/
.contact form {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
}

.contact form .inputBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact form .inputBox input,
.contact form textarea {
  background: #333;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: var(--white);
  text-transform: none;
}

.contact form .inputBox input::placeholder,
.contact form textarea::placeholder {
  color: #eee;
  text-transform: capitalize;
}

.contact form .inputBox input:focus,
.contact form textarea:focus {
  background: #222;
}

.contact form .inputBox input {
  width: 49%;
}

.contact form textarea {
  width: 100%;
  height: 25rem;
  resize: none;
}

.contact .alert{
  font-size: 2rem;
  color: var(--blue);
  padding-left: 1rem;
}

/*--------------------- 11- Contact Area CSS (End) ---------------------*/




/*--------------------- 12- Footer Area CSS (Start) ---------------------*/
.footer {
  background-color: var(--black);
  padding: 0 2rem;
}

.footer .box-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.footer-item{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25rem;
      flex: 1 1 25rem;
}

.footer-item .logo{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-item .logo img{
    width: 280px;
    height: auto;
}

.footer-item .logo i{
  font-size: 2.5rem;
  color: var(--blue);
  padding-right: 1rem;
  padding-bottom: 2rem;
}

.footer-item h2{
  color: var(--white);
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  padding-bottom: 2rem;
}

.footer-item p{
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.6;
}

.footer-item .links a,
.footer-item .iinks p{
  display: block;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-item .links a i,
.footer-item .links p i{
    padding-right: 0.5rem;
    color: var(--blue);
}

.footer-item .links a:hover i{
  padding-right: 1.5rem;
}

.footer-item .info p{
  display: block;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-item .info i{
    padding-right: 0.5rem;
}

.footer-item .info .gmail{
  text-transform: none;
}

.footer-item .envelope {
  color: red;
}

.footer-item .phone {
  color: green;
}

.footer-item .address {
  color: #0c74b9;
}

.footer-item .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.footer-item .social a{
    display: inline-block;
    height: 4rem;
    width: 4rem;
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-item .social a i{
    color: var(--black);
    font-size: 2rem;
}

.footer-item .social a:hover{
    background-color: var(--blue);
}

.footer-item .social a:hover i{
    color: #fff;
}

.footer .content{
    text-align: center;
    padding: 2rem 0;
    border-top: 0.2rem solid #fff;
}

.footer .content p{
    font-size: 2rem;
    color: #fff;
}

.footer .content p span{
    color: var(--blue);
}

/*--------------------- 12- Footer Area CSS (End) ---------------------*/



/*--------------------- 13- Scroll-Top (Start) ---------------------*/
.scroll-top{
  position: fixed;
  bottom: 1rem;
  right:1rem;
  height: 5rem;
  width: 5rem;
  font-size: 3rem;
  font-weight:lighter;
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
  border: 0.2rem solid var(--blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 999;
}

.scroll-top:hover{
  background: var(--blue);
  color:#fff;
}

/*--------------------- 13- Scroll-Top (End) ---------------------*/
.mt-150 {
   padding-top: 130px;
}

@media screen and (max-width: 769px) {
.mt-150 {
   padding-top: 150px;
 }
}
@media screen and (max-width: 420px) {
.mt-150 {
   padding-top: 90px;
 }
}


/*--------------------- m-kf ---------------------*/

.m-kf { position: fixed; z-index: 9998; right: 0px; top: 30%; }

.m-kf .kf-item { display: table; line-height: 0; font-size: 0; margin-bottom: 1px; -moz-border-radius: 5px; border-radius: 5px; position: relative; width: 69px; height: 69px; background: #f9f9f9; text-align: center; line-height: 69px; text-align: center; }

.m-kf .iconfont { line-height: 69px; display: block; text-align: center; }

.m-kf .icon-tel { font-size: 24px; font-size: 2.4rem; color: #00a8e0; }

.m-kf .icon-email1 { font-size: 24px; font-size: 2.4rem; color: #f7b900; }

.m-kf .icon-message { font-size: 24px; font-size: 2.4rem; color: #e03700; }

.m-kf .icon-skype { font-size: 30px; font-size: 3rem; color: #09a8fa; }

.m-kf .icon-whatsapp1 { font-size: 26px; font-size: 2.6rem; color: #3ac34c; }

.m-kf .icon-wechat1 { font-size: 24px; font-size: 2.4rem; color: #3ac34c; }

.m-kf .icon-top3 { font-size: 30px; font-size: 3rem; color: #e34b2a; }

.m-kf .kf-wx { position: absolute; display: none; bottom: 0; right: 53px; width: 90px; }

.m-kf .ewm3 { position: absolute; right: 100%; bottom: -99999px; width: 100px; max-width: 100px; max-height: 100px; }

.m-kf .ewm2 { position: absolute; right: 100%; bottom: -99999px; width: 100px; max-width: 100px; max-height: 100px; }

.m-kf .kf-item2:hover .ewm2 { bottom: 0; display: block !important; }

@media screen and (max-width: 767px) { .m-kf .kf-item .img-responsive { top: -151%; right: 0px; width: 80px; height: 80px; }
  .m-kf { position: fixed; right: 0; top: auto; bottom: 0; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-flow: row nowrap; -moz-box-orient: horizontal; -moz-box-direction: normal; -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; width: 100%; background: #fff; z-index: 99999 }
  .m-kf .kf-item {background: none; width: 20%; text-align: center; max-width: 64px; }
  .m-kf .kf-wx { bottom: 100%; left: 0; }
  .m-kf .ewm3 { right: 0%; left: 0; top: -140%; bottom: auto; width: 100px; height: 100px; }
  .m-kf .ewm3.active { display: block; }
  .m-kf .ewm2 { display: none !important; }
  .m-kf .kf-item2:hover .ewm2 img { display: none !important; }
  body { padding-bottom: 69px; } }



FAQ Area CSS
======================================================*/
.faq-content {
  border-top: 1px solid #e9e4f9;
}

.faq-accordion {
  max-width: 930px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.faq-accordion .shape {
  position: absolute;
  z-index: -1;
}

.faq-accordion .shape.shape-1 {
  left: -50px;
  top: -100px;
}

.faq-accordion .shape.shape-2 {
  right: -50px;
  bottom: -50px;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 15px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 20px 60px 17px 30px;
  color: var(--heading-color);
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 700;
  background-color: #f7f7ff;
  z-index: 1;
  font-family: var(--heading-font-family);
  border: none;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 7px;
  top: 7px;
  font-size: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--white-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.faq-accordion .accordion .accordion-title.active i {
  color: var(--heading-color);
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f1af";
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: -6px;
  padding: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fbfbfb;
  transition: max-height 0.2s ease-in-out;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

.faq-img {
  position: relative;
  z-index: 1;
}

.faq-img .faq-img-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  z-index: -1;
}

.accordion-item {
  border: none;
}

@media only screen and (max-width: 767px) {
  .faq-accordion .accordion .accordion-title {
    font-size: 16px;
  }
  .faq-accordion .accordion .accordion-title {
    font-size: 13px;
    padding: 20px 70px 17px 20px;
  }
  .faq-accordion .accordion .accordion-title i {
    right: 12px;
    top: 5px;
  }
  .faq-accordion .accordion .accordion-content {
    padding: 15px;
  }
}


iframe {
  border: 1px solid #ddd;
  padding: 7px;
  background: #fff;
}

table.accordion-table {
   width: 100%;
   border-collapse: collapse;
}

table.accordion-table th{
   font-size: 16px;
   font-weight: 600;
   text-align: left;
   padding: 5px;
   border: 1px solid #000;
}
table.accordion-table td{
   font-size: 14px;
   font-weight: 500;
   text-align: left;
   padding: 5px;
   border: 1px solid #000;
}




label{color:#7f7f7f;display:block;font-size:1.5rem;font-weight:400;margin:0}
label.error{color:red}
.modal textarea{border-radius:0!important;background:#fff;height:100px!important;font-size:17px!important}
select{border-radius:0!important;background:#fff;border:1px solid #ccc;height:40px!important;line-height:40px!important;box-shadow:none;padding:0 10px!important;box-sizing:border-box;font-size:17px!important}
.modal input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{border:1px solid #ccc;width:100%;height:40px;border-radius:0;background:#fff;line-height:40px;box-shadow:none;padding:0 10px;box-sizing:border-box;font-weight:400;font-size:17px;font-family:'Alegreya Sans',sans-serif}
.modal input[type=file]{width:100%;padding:0;font-size:12px;margin:0}
.form-group{position:relative;margin-bottom:15px}
.form-control::-moz-placeholder{color:#555}
.form-control:focus::-moz-placeholder{color:#f88421}
.form-control:focus{border-color:#f88421;box-shadow:none;outline:0}
.modal-content{border-radius:0}
.modal-header{padding:0 15px;background:#00a8e0;color:#fff;border-radius:0}
.modal-header h4{text-align:left;font-size:18px;line-height:18px;color:#fff}
.modal-header .modal-title{text-align:left;font-size:18px;line-height:18px;color:#fff;padding:15px 0;text-transform:initial;letter-spacing:.2px}
.btn-close{width:3em;height:3em;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1.5em auto no-repeat;outline:0}
.btn-close:focus{box-shadow:none}
.all_btns{display:inline-block;width:auto;height:40px;margin:10px 0 0;text-transform:capitalize;font-size:16px;border-radius:4px 4px 0 4px;overflow:hidden;background:#00a8e0;color:#fff;-webkit-transition:background .24s cubic-bezier(.37, .31, .31, .9),color .24s cubic-bezier(.37, .31, .31, .9);-o-transition:background .24s cubic-bezier(.37, .31, .31, .9),color .24s cubic-bezier(.37, .31, .31, .9);transition:background .24s cubic-bezier(.37, .31, .31, .9),color .24s cubic-bezier(.37, .31, .31, .9);position:relative;overflow:hidden;z-index:1;padding:5px 20px;border-radius:4px;border:0;outline:0}
