:root {
  --primary: #cf711f;
  --secondary: #e67e22;
  --dark: #161616;
  --pure: #ffffff;
  --ternary: #898989;
  --light2: #fdf2e9;
  --light: #fff8f0;

  --container-color: hsl(0, 0%, 100%);
  --h2-font-size: 1.25rem;
  --normal-font-size: 1rem;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #fbfbfb;
  scroll-behavior: smooth;
  
  font-family: "Poppins", sans-serif;

  font-size: var(--normal-font-size);
}

.main--nav {
  background-color: var(--light);
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
}

/* homepage code */
.navbar {
  width: 90%;
  background-color: var(--light);
  margin: auto;
  padding: 1rem 1rem 0 1rem;
}

.navbar-brand img {
  height: 5.25rem;
}

.navbar-collapse ul li a {
  transition: all 0.1s ease;
  font-weight: 600;
  font-size: large;
  color: black;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #e67e22;
}



.navbar-nav.ml-auto .nav-btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  /* No border by default */
  border-radius: 25px;
  /* Semi-rounded corners for SignUp button */
  transition: all 0.3s ease;
  margin-right: 0.625rem;
  color: var(--light);
  background-color: var(--primary);
  /* Margin between buttons */
}
.nav-btn a{
  text-decoration: none;
  color: white;
}
.navbar-nav.ml-auto .nav-btn:hover{
  background-color: var(--secondary);
}

.btn-1 {
  background-color: transparent;
  /* Transparent background for Login button */
  color: black;
  /* Blue text color */
  border: 2px solid black;
}



.btn-1:hover {
  /* background-color: ; */
  /* Change background color on hover */
  color: black;
  /* Change text color on hover */
}



.rounded-image {
  border-radius: 20px;
  /* Adjust border radius for the image */
}

.section .container .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title {
  color: black;
  position: relative;
  transition: all 0.9s ease;
  top: -1.75rem;
  font-weight: 1000;
  margin-top: -2rem;
}
.aa .title-para{
  margin-bottom: 1.875rem;
}
.aa h1 span {
  color: var(--secondary);
}

.aa p {
  font-family: 'lato', sans-serif;
}

.b img {
  /* padding: 4rem; */
  margin-left: 7.5rem;
  width: auto;
  height: 30rem;
}

.head--desc {
  font-size: 1.125rem;
  font-weight: 400;
  color: gray;
  margin: -1.563rem 0 1rem 0;
  /* font-family: sans-serif; */
}
.head--desc p{
  line-height: 24px;
}

/* .a p {
  color: black;
  font-size: 2rem;
  letter-spacing: 2px;
} */

/* .btn-1 {
  padding: 0.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 4px;
  border: 3px solid gray;
  color: gray;
}

.btn-1:hover {
  color: gray;
  border: 3px solid gray;
  background: transparent;
  transform: scale(0.95);
} */

.btn-2 {
  background-color: var(--primary);
  padding: 0.6rem 2rem;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 25px;
  /* width: 150px; */
  border: 2px solid transparent;
  margin-top: 0.8rem;
}
.btn-2 a{
  text-decoration: none;
  color: white;
}
.btn-2:hover{
  background-color: var(--secondary);
}
/* .btn-2:hover {
  background: var(--secondary);
  padding: 0.8rem 1rem;
  width: 170px;
  color: var(--light);
} */

.b img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 92%);
  border-bottom-left-radius: 50%;
  /* Adjust as needed */
  border-bottom-right-radius: 50%;
}

.title:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.188rem;
  /* Adjust this value to control the underline position */
  width: 100%;
  height: 0.125rem;
  /* Adjust this value to control the thickness of the underline */
  background-color: white;
  /* Change this to the color you want for the underline */
}


.navbar-brand span {
  color: black;
  font-weight: 400;
  letter-spacing: 0.2rem;
}

/******** infinite slider ********/
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 3.7rem 0;
  margin-top: 2.5rem;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 15.625rem;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide div {
  height: 3.125rem;
  display: inline-block;
  font-size: large;
  color: gray;
  font-size: 1.5rem;
  margin: 0 2.5rem;
}

/* *************news section************ */
section.news-setion .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.news-setion .container h2 {
  font-weight: 900;
  font-size: 2.5rem;
  margin: 2rem 0;
}

section.news-setion .container h2 span {
  color: var(--primary);
}

section.news-setion .container .news-boxes {
  display: flex;
  justify-content: center;
}

section.news-setion .container .news-boxes .news-box {
  height: auto;
  width: 26rem;
  border-radius: 13px;
  margin: 1rem;
  background-color: var(--secondary);
}

section.news-setion .container .news-boxes .news-box>* {
  width: 28rem;
  padding: 0 2rem;
  color: white;
}

section.news-setion .container .news-boxes .news-box>h5 {
  padding-top: 1rem;
  font-weight: 600;
  font-size: 1.25rem;
}

section.news-setion .container .news-boxes .news-box>p {
  font-family: 'lato', sans-serif;
  padding-bottom: 0.5rem;
  font-size: 12;
  font-weight: 400;
}

/* ***********about-section*************** */

section.about-section {
  background-color: var(--light);
  margin: 5rem 0;
  padding: 2rem 0;
}

section.about-section .about-container .about-us{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4rem;
}
.about-left {
  padding: 0 6rem 0 4rem;
  margin-top: -4rem;
  margin-bottom: 2rem;
}

.about-left h6 {
  margin: 0rem;
  color: var(--secondary);
  font-weight: 400;
}

.about-left h2 {
  font-size: 2.7rem;
  /* line-height: 3rem; */
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: black;
}
.about-left h2 span{
  color: var(--secondary);
}
.about-left p {
  font-family: 'lato', sans-serif;
  color: var(--ternary);
  line-height: 24px;
  }

.about-left button {
  margin-top: 1.2rem;
  /* border: 2px solid var(--primary); */
  background-color: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: 700;
  height: 2.813rem;
}

.about-us-img {
  width: 32rem;
  padding: 2rem;
  margin: 2rem 0rem 2rem 0;
}

/* *********Courses************ */

section.course-section {
  background-color: var(--light);
  display: flex;
  justify-content: center;
}

section.course-section .container {
  margin: 3rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

section.course-section .container .course-info {
  width: 55rem;
  margin: 0 auto;
}

section.course-section .container .course-info h2 {
  color: black;
  font-weight: 600;
  font-size: 35px;
}

section.course-section .container .course-info p {
  font-family: 'lato', sans-serif;
  color: var(--ternary);
}

section.course-section .container .course-info span {
  color: var(--secondary);
}

section.course-section .course-boxes {
  display: flex;
  justify-content: center;
}

section.course-section .course-boxes .course-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 23rem;
  height: auto;
  border: 2px solid lightgray;
  border-radius: 20px;
  margin: 2rem 1rem;
  background-color: white;
  box-shadow: 1px 1px 5px var(--primary);
}

section.course-section .course-boxes .course-box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  padding: 1rem;
}

section.course-section .course-boxes .course-box .course-box-info h5 {
  padding: 0.3rem;
  padding-left: 1.5rem;
  color: black;
  font-weight: 600;
  text-align: left;
}

section.course-section .course-boxes .course-box .course-box-info p {
  font-family: 'lato', sans-serif;
  padding: 0.5rem 1rem 2rem 1.5rem;
  color: gray;
  text-align: left;
}

section.course-section .course-boxes .course-box img:hover {
  transform: translateY(-0.6rem);
}


/* **********testimonials****** */

section.testiminial-section {
  margin: 5rem 0;
  background-color: var(--light);
  padding: 5rem 0;
}

.info-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-row>h6 {
  font-weight: 600;
}

.info-row h2 {
  font-weight: 700;
}

.info-row h2 span {
  color: var(--secondary);
}

.info-para {
  width: 50rem;
}

.testi-cards {
  display: flex;
  justify-content: center;
  /* position: relative; */
}

.testi-card {
  margin: 2.2rem 0 0 0;
  padding: 2rem;
}

.testi-card img {
  height: 25rem;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}

.testi-card img:hover {
  height: 28.125rem;
}

.testi-btn {
  text-align: center;
  margin-top: 2.5rem;
}

.testi-btn button {
  padding: 0.688rem 2.188rem;
  border-radius: 20px;
  /* position: absolute; */
  background-color: var(--primary);
  border: none;
}

/* codepen testemonial code */

*, *::before, *::after{
  box-sizing: border-box;
  margin:0;
}



.testimonial-container{
  background-color: var(--light);
  color: black;
  border-radius: 30px;
  margin: 20px auto;
  padding: 50px 80px;
  max-width: 768px;
  position:relative;
  border: 10px double var(--secondary);
}

.fa-quote{
  color:#FFD369;
  font-size: 28px;
  position: absolute;
  top: 70px;
}

.fa-quote-right{
  left: 40px;
}

.fa-quote-left{
  right: 40px;
}

.testimonial{
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 30px;
}

.user{
  display:flex;
  align-items:center;
  justify-content: center;
}

.user .user-image{
  border-radius: 50%;
  border: 3px solid #FFD369;
  height: 75px;
  width: 75px;
  object-fit: cover;
}

.user .user-details{
  margin-left: 10px;
}

.user .username{
  margin: 0;
}

.user .role{
  font-weight: normal;
  margin: 10px 0;
}

.progress-bar{
  background-color: #FFD369;
  height: 4px;
  width: 100%;
  margin-bottom: 40px;
  animation: grow 10s linear infinite;
  transform-origin: left;
}

@keyframes grow{
  0%{
    transform: scaleX(0);
  }
}




@media(max-width: 768px){
  .testimonial-container{
    padding: 20px 30px;
  }
  
  .fa-quote{
    display: none;
  }
}

/* ******bloges sections*******  */

section.blog-section {
  background-color: var(--light);
  padding: 2rem 0 4rem 0;
}

.blog-container .heading-row {
  display: flex;
  justify-content: center;
}

.blog-container .blog-heading {
  text-align: center;
  margin: 3rem 0 0 0;
  /* width: 30rem; */
  width: 35rem;
}

.blog-container .blog-heading h2 {
  color: black;
  margin: 0 0 1rem 0;
}

.blog-container .blog-heading span {
  color: var(--secondary);
}

.blog-container p {
  color: gray;
  opacity: 0.8;
}

.blog-data .btn {
  background-color: var(--primary);
  
}
.blog-data .btn a{
  color: white;
  text-decoration: none;
}

.blog-data .btn:hover {
  background-color: var(--light2);
  color: black;
}

.blog-container .cards {
  display: flex;
  justify-content: space-around;
}

.blog-container .cards .card {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  transition: transform 0.3s ease-in-out;
  width: 20rem;
  margin-top: 1.5rem;
  padding: 0;
  /* box-shadow: 4px 8px 50px gray; */
}

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

.card .blog-data {
  margin: 1.875rem 0.938rem;
}

.card .blog-data h5 {
  line-height: 30px;
}

.card .blog-data .blog-tags {
  display: flex;
}

.card .blog-data .blog-tags .tag {
  margin: 0.625rem 0px 1.563rem 0.313rem;
  padding: 0.188rem 0.813rem;
  background-color: lightgray;
  border-radius: 15px;
  color: rgb(74, 74, 74);
  opacity: 0.6;
}

.card .blog-data button {
  padding: 0.5rem 1.2rem;
  border-radius: 15px;
  /* margin-left: 10px; */
}

/* ****chat side btn section***** */
section.msg-side-btn {
  position: fixed;
  height: 5.5rem;
  width: 5.5rem;
  border: 10px solid var(--light2);
  background-color: var(--light2);
  border-radius: 50%;
  bottom: 6.5rem;
  right: 3rem;
  z-index: 1001;
  animation: jump 0.5s infinite alternate;
  display: grid;
  place-items: center;
}

@keyframes jump {
  0% {
    transform: translateY(0); /* Start position */
  }
  100% {
    transform: translateY(-20px); /* End position */
  }
}
section.msg-side-btn .msg-btn img {
  height: 4.5rem;
}

/* ****swip-up btn**** */
/* section.swip-up-section {
  position: fixed;
  bottom: 2.5rem;
  right: 4.375rem;
  height: 3.125rem;
  width: 3.125rem;
  border-radius: 50%;
  background-color: #6c6c6c;
}

section.swip-up-section .swip-up-btn {
  position: relative;
  left: 0.75rem;
  top: 0.75rem;
}

section.swip-up-section .swip-up-btn img {
  height: 1.625rem;
} */

#progress{
  /* background-color: var(--secondary); */
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1001;
  /* display: none; */
}
#progress-value{
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: black;
}

/* *****contact page code***** */

section.contact-section {
  margin-top: 3rem;
  background-color: var(--light);
  padding: 4rem 0 2rem 0;
  margin: 5rem 0;
  /* height: 80vh; */
}

.contact-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-image: url(../img/telephone-laptop-flat-lay-with-workspace-yellow-background\ \(2\).jpg);
  background-position: center;
  /* background-color: rgba(207, 113, 31, 1); */
  background-size: cover right;
  color: black;
  text-align: center;
  padding: 4rem 3rem 6rem 3rem;
  margin: 2rem 0;
}

.contact-heading>* {
  width: 40rem;
  color: white;
  font-weight: 500;
}

.contact-heading h2 {
  margin-bottom: 0.875rem;
  font-weight: 700;
}

.contact-section .contact-details {
  display: flex;
  justify-content: center;
  margin-top: -5rem;
  background-color: var(--light);

}

.contact-details .phn-mail-box {
  /* width: 20rem; */
  /* margin-right: 3rem; */
  display: flex;
  flex-direction: column;
}

.contact-details .box {
  display: flex;
  align-items: center;
  padding: 1.3rem;
  box-shadow: 0 1px 1px gray;
}

.contact-details .phn-mail-box .phn-box {
  background-color: white;
  margin: 1.3rem;
}

.contact-details .phn-mail-box .phn-box .phn-detail>* {
  width: 15rem;
}

.contact-details .phn-mail-box .phn-box .phn-detail h4 {
  color: var(--secondary);
  font-weight: 600;
}

.contact-details .phn-mail-box .phn-box .phn-detail p {
  color: var(--secondary);
  font-size: 0.875rem;
}

.contact-details .phn-box .phn-img img {
  height: 3rem;
  margin: -2.5rem 1.5rem 2rem 0.5rem;
}

.contact-details .mail-box .mail-img img {
  /* margin: 1rem 1rem 2rem 0; */
  margin: -0.625rem 1.5rem 2rem 0rem;
  height: 3rem;
}

.contact-details .phn-mail-box .mail-box {
  background-color: white;
  margin: 0 1.3rem 1.3rem 1.3rem;
  padding: 2.4em 2rem;
}

.contact-details .phn-mail-box .mail-detail button {
  color: white;
  background-color: var(--primary);
  margin-top: 0.5rem;
  width: 9rem;
  height: 2.813rem;
  border: none;
  transition: all ease 0.3s;
}
.contact-details .phn-mail-box .mail-detail button a{
  text-decoration: none;
  color: white;
}
.contact-details .phn-mail-box .mail-detail button:hover{
  background-color: var(--secondary);
}
.cn-form {
  background-color: white;
  margin: 1.3rem 1.3rem 0rem 0;
  padding: 1rem 2rem 3rem 2rem;
  text-align: center;
  width: 50rem;
  box-shadow: 0 1px 1px gray;
}

.cn-form .switch-btn {
  display: flex;
  justify-content: center;
}

.cn-form .switch-btn button {
  width: 50%;
  background-color: white;
  border-radius: 0;
  font-size: 1.188rem;
  /* font-weight: 700px; */
  outline: none;
}

.cn-form .switch-btn .st-btn {
  border-right: 2px solid var(--primary);
  
}

.cn-form .detail-form .form-msg {
  text-align: center;
  margin: 1rem;
}

.cn-form .detail-form .form-msg h2 {
  margin: 1.3rem 0 1rem 0;
  font-weight: 600;
}

.cn-form .detail-form .form-msg h2 span {
  color: var(--secondary);
}

.cn-form .detail-form .form-msg p {
  color: gray;
  margin-bottom: 2rem;
}

.cn-form .detail-form .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cn-form .detail-form .contact-form .form-detail {
  display: flex;
  margin-bottom: 3rem;
}

.cn-form .detail-form .contact-form .inp-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 0.6rem;
}

.cn-form .detail-form .contact-form .inp-detail label {
  color: gray;
  font-size: 0.875rem;
}

.cn-form .detail-form .contact-form .inp-detail input {
  padding: 0.3rem 0.5rem;
  width: 15rem;
  background-color: whitesmoke;
  border: none;
  border-radius: 2px;
  box-shadow: 0 1px 1px gray;
  outline: none;
  /* font-size: 10px; */
}

.cn-form .detail-form .contact-form .inp-detail select {
  padding: 0.4rem 12rem 0.4rem 1rem;
  border: none;
  background-color: whitesmoke;
  border-radius: 2px;
  box-shadow: 0 1px 1px gray;
  color: rgb(71, 71, 71);
  outline: none;
}

.cn-form .teacher-page .contact-form .inp-detail select {
  padding: 0.4rem 0.5rem;
  width: 15rem;
  outline: none;
}

.cn-form .teacher-page .contact-form .exp-time {
  display: flex;
  justify-content: center;
}

.cn-form .teacher-page .contact-form .exp-time .experience,
.pref-time {
  width: 15rem;
}

.cn-form .teacher-page .contact-form .exp-time .experience .exp-col {
  display: flex;
  justify-content: center;
}

.cn-form .teacher-page .contact-form .exp-time .experience .exp-col .exp {
  margin: 0rem 0.6rem 0 0.6rem;
}

.cn-form .teacher-page .contact-form .exp-time .ext-tm-common h5 {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: gray;
}

.cn-form .teacher-page .contact-form .exp-time .pref-time .p-time {
  margin-bottom: 0.438rem;
}


input[type=radio] {
  accent-color: var(--primary);
}


section.contact-section .contact-details {
  width: 70rem;
  position: relative;
  left: 50%;
  /* right: 50%; */
  transform: translate(-50%);
}

.cn-form .detail-form .contact-form button {
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 2rem;
  border: 0;
  border-radius: 0;
  margin: 4rem 0 0 0;
}
.cn-form .detail-form .contact-form button:hover{
  background-color: var(--secondary);
}

.cn-form .teacher-page .contact-form button {
  margin: 0rem 0 0 0;
}
.cn-form .teacher-page .contact-form button:hover{
  background-color: var(--secondary);
}

.hide {
  display: none
}

/* ******footer code***** */

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 540px) {
  .card__content {
    width: 23.75rem;
    padding-inline: 2rem;
  }
}

/**************************/
/* FOOTER */
/**************************/
/* footer section start */


.new_footer_area {
  background: #fbfbfd;
}


.new_footer_top {
  padding: 7.5rem 0px 16.875rem;
  position: relative;
  overflow-x: hidden;
  background-color: rgba(230, 126, 34, 0.1);

}

.new_footer_area .footer_bottom {
  padding-top: 0.313rem;
  padding-bottom: 3.125rem;
}

.footer_bottom {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 20px;
  color: #7f88a6;
  padding: 1.688rem 0px;
}

.new_footer_top .company_widget p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 28px;
  color: #6a7695;
  margin-bottom: 1.3rem;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 1.3rem;
}

.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}

.btn_get:hover {
  color: #fff;
  /* background: #6754e2;
  border-color: #6754e2; */
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}


.new_footer_top .f_widget.about-widget .f_list li a {
  text-decoration: none;
  font-size: 1.2rem;
}

.new_footer_top .f_widget .f-title .f_list a:hover {
  /* color: black; */
  background-color: rgba(230, 126, 34, 0.1)
}

.new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 0.688rem;
}

.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}

.f_widget.about-widget .f_list li {
  margin-bottom: 0.938rem;
}

.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}

.new_footer_top .f_social_icon a {
  width: 2.75rem;
  height: 2.75rem;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 1.5rem;
}

.f_social_icon a {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  font-size: 0.875rem;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.ti-facebook:before {
  content: "\e741";
}

.ti-twitter-alt:before {
  content: "\e74b";
}

.ti-vimeo-alt:before {
  content: "\e74a";
}

.ti-pinterest:before {
  content: "\e731";
}

.btn_get_two {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #e67e22;
  border-color: #e67e22;
  color: #fff;
}

.btn_get_two:hover {
  background: #cf711f;
  color: white;

}

.new_footer_top .f_social_icon a:hover {
  background: #e67e22;
  border-color: #e67e22;
  color: white;
}

.new_footer_top .f_social_icon a+a {
  margin-left: 0.25rem;
}

.new_footer_top .f-title {
  margin-bottom: 1.875rem;
  color: #e67e22;
}

.f_600 {
  font-weight: 600;
}

.f_size_18 {
  font-size: 1.125rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #4b505e;
}

.new_footer_top .f_widget.about-widget .f_list li a {
  color: #6a7695;
}


.new_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
  width: 100%;
  height: 16.625rem;
}

.new_footer_top .footer_bg .footer_bg_one {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
  width: 20.625rem;
  height: 6.563rem;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  -webkit-animation: myfirst 22s linear infinite;
  animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
  width: 5.5rem;
  height: 6.25rem;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  -webkit-animation: myfirst 30s linear infinite;
  animation: myfirst 30s linear infinite;
}
.footer-extra-links{
  display: flex;
  justify-content: center;
}
@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}


/* media quary */

@media (max-width: 1100px){
  section.about-section{
    padding-top: 4rem;
    padding-bottom: 0rem;
  }
  .about-left h2{
    font-size: 2rem;
  }
  .about-us-img {
    width: 30rem;
  }
}
@media (max-width: 1024px) {
  #navbarNav > *{
    display: none;
  }
  .nav-btn{
    display: none;
  }
  .navbar-brand img {
    display: inline;
    height: 4rem;
    padding: 0;
    /* margin: -5rem 0 0 -5rem; */
  }
  section.main--nav{
    padding-top: 0;
  }
  .navbar{
    padding: 0;
  }
  .navbar>.container{
    padding: 0;
  }
  
  section.section .hero-page{
    margin-top: 1rem;
  }
  section.about-section{
    padding: 1rem 0;
  }
  .about-left{
    padding: 0;
    margin-bottom: 0;
  }
  .about-us-img {
    padding: 1rem 0.5rem 1rem 0.5rem;
    margin: 1rem 0 2rem 0;
    width: 25rem;
  }
  section.course-section .container .course-boxes{
    flex-wrap: wrap;
  }
  section.course-section .container .course-boxe{
    flex-basis: 50%;
  }
  section.testiminial-section .testi-container .testi-data-btn .testi-cards{
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  section.testiminial-section .testi-container .testi-data-btn .testi-cards .testi-card{
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.blog-section .cards{
    flex-wrap: wrap;
  }
  section.contact-section .contact-details{
    /* flex-direction: column; */
    flex-wrap: wrap;
  }
  section.contact-section .contact-details .phn-mail-box{
    flex-direction: row;
    /* flex-basis: 50%; */
  }
  section.contact-section .contact-details .phn-mail-box .mail-box{
    margin-top: 1.3rem;
  }
}

@media (max-width: 991px) {
  .navbar-brand img {
    margin: -4rem 0 0 -4rem;
  }
  .b img{
    height: 20rem;
  }
  section.main--nav{
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  section.about-section{
    padding-top: 4rem;
  }
  section.about-section .container .about-left{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .about-left{
    padding: 0;
  }
  section.course-section .container .course-info{
    /* display: flex;
    flex-direction: column; */
    width: 100%;
  }
  section.course-section .container .course-boxes{
    /* flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-container .cards .card{
    margin-bottom: 1rem;
  }
  .contact-heading>*{
    width: 100%;
  }
  .info-row > *{
    width: 100%;
  }
}

@media (max-width: 576px){
  .navbar-brand img {
    display: inline;
    height: 4rem;
    padding: 0;
    margin: 0;
    /* max-width: 100%; */
    /* height: auto; */
  }

  section.main--nav{
    padding-top: 0;
  }
  .navbar{
    padding: 0;
  }
  .navbar>.container{
    padding: 0;
  }
  section.section .hero-page{
    padding: 0 1rem;
  }
  section.section .hero-page .row{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .b img{
    max-width: 90%;
    height: auto;
    /* height: 30rem; */
    padding: 0;
    margin: -2rem 0 2rem 0;
  }
  .aa{
    margin: 1rem 0 ;
  }
  .main--nav{
    clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 0% 100%);
  }
  section.about-section .about-container .about-us{
    flex-direction: column-reverse;
    margin: 0 1rem;
  }
  .about-us-img{
    max-width: 90%;
    padding: 0;
    margin: 0;
  }
  .about-left{
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
  .about-left h6{
    display: none;
  }
  section.course-section .container .course-boxes{
    grid-template-columns: repeat(1, 1fr);
  }
  
  section.contact-section .contact-details .phn-mail-box{
    flex-direction: column;
  }
  
  .cn-form{
    display: none;
  }

  .footer-extra-links{
    margin: 1rem;
    margin-bottom: -10rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  section.msg-side-btn{
    height: 5rem;
    width: 5rem;
    bottom: 6.5rem;
    right: 1.6rem;
  }
  section.msg-side-btn .msg-btn img {
    height: 4rem;
  }
}
@media (max-width: 400px){
  section.course-section .container .course-boxes .course-box{
    max-width: 70%;
    justify-self: center;
  }
}