@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/*______Montserrat font______*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/*____Roboto font____*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");


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

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





body {
  padding: 0;
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: #3a3a3c;
}

a {
  color: #3a3a3c;
  transition: 0.5s;
  text-decoration: none;
}
a:hover {
  color: #00aeef;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

.home-banner .owl-nav{
  display: none;
}

.visit-site-bt{
    position: absolute;
    top: 11px;
    right: 80px;
    color: #fff;
    z-index: 9;
    text-transform: capitalize;
}
.visit-site-bt:hover{
    opacity: 0.7;
        color: #fff;
}

.navbar {
  position: absolute;
  top: 45px;
  width: 90%;
  left: 5%;
  z-index: 5;
  background: #fff;
  padding: 11px 30px;
  border-radius: 0;
  box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.3);
}
.navbar .login-bt {
  font-size: 21px;
  text-decoration: none;
  color: #3a3a3c;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #00aeef;
}
.navbar .login-bt:hover {
  background: #00aeef;
  color: #fff;
}
.navbar .navbar-nav {
  width: 39%;
  justify-content: center;
  gap: 2%;
}
.navbar .navbar-nav .nav-link {
  color: #3a3a3c;
  font-size: 21px;
}
.navbar .navbar-nav .nav-link:hover {
  color: #00aeef;
}
.navbar .navbar-brand {
  width: 9%;
}
.navbar .navbar-text {
  width: 43%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2%;
}
.navbar .navbar-text a {
  font-size: 21px;
  color: #3a3a3c;
  padding-left: 0%;
}
.navbar .navbar-text a:hover {
  color: #00aeef;
}

.me-auto {
  margin-right: 0 !important;
}

.banner-wrap {
  position: relative;
}
.banner-wrap .owl-dots {
  display: none;
}
.banner-wrap .mob-dis {
  display: none !important;
}
.banner-wrap .banner-text-wrap {
  position: absolute;
  bottom: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  right: 5%;
  left: 0;
  text-align: center;
  height: 100%;
  width: 100%;
}
.banner-wrap .banner-text-wrap h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 80px;
  padding: 0;
  margin: 26% auto;
  text-transform: uppercase;
}
.banner-wrap .banner-text-wrap h2 span {
  padding: 0 6%;
}
.banner-wrap .banner-text-wrap h5 {
  font-size: 34px;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

.banner-wrap .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  font-size: 80px;
  top: 43%;
  color: #fff;
  /* left: 2%; */
}

.banner-wrap .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  font-size: 80px;
  top: 43%;
  color: #fff;
  right: 2%;
}

.banner-wrap .owl-carousel {
  height: 100vh;
  position: absolute;
  z-index: 2;
  top: 0;
}

.banner-wrap .owl-carousel .owl-stage-outer {
  height: 100%;
}

video {
  height: 100%;
}

.transparent-layer {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: red;
}

/*___________________ANIMATION START__________*/
.owl-carousel .owl-item.active div .banner-text-wrap h2 {
  transform: scale(1.5);
  animation: ZoomInOut 1.5s ease;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}


@keyframes ZoomInOut {
  0% {
    transform: scale(4.5);
  }
  100% {
    transform: scale(1);
  }
}
/* 
.banner-text-1{
  animation: bt1 4s infinite;
  animation-fill-mode: forwards;
  display: inline-block;
  /* animation-delay: 0.3s; */
}

@keyframes bt1 {
  0% {
    filter: blur(2.5px);
    opacity: 0;
  }

  50% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    filter: blur(2.5px);
    opacity: 0;
  }
}

.banner-text-2{
  animation: bt2 4s infinite;
  animation-fill-mode: forwards;
  display: inline-block;
  animation-delay: 4s;
}

@keyframes bt2 {
  0% {
    filter: blur(2.5px);
    opacity: 0;
  }

  50% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    filter: blur(2.5px);
    opacity: 0;
  }
}

.banner-text-3{
  animation: bt3 4s infinite;
  animation-fill-mode: forwards;
  display: inline-block;
  animation-delay: 8s;
}

@keyframes bt3 {
  0% {
    filter: blur(2.5px);
    opacity: 0;
  }

  50% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    filter: blur(2.5px);
    opacity: 0;
  }
}


.banner-text-4{
  animation: bt4 4s infinite;
  animation-fill-mode: forwards;
  display: inline-block;
  animation-delay: 12s;
}

@keyframes bt4 {
  0% {
    filter: blur(2.5px);
    opacity: 0;
  }

  50% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    filter: blur(2.5px);
    opacity: 0;
  }
} */



/* .owl-carousel .owl-item.active div .banner-text-wrap span {
  display: inline-block;
  animation: ShakeBlur 1s ease;
  filter: blur(2.5px);
  animation-delay: 1.7s;
  animation-fill-mode: forwards;
} */

@keyframes ShakeBlur {
  0% {
    filter: blur(2.5px);
  }
  25% {
    filter: blur(2px);
  }
  50% {
    filter: blur(1.5px);
  }
  75% {
    filter: blur(1px);
  }
  100% {
    filter: blur(0);
  }
}
/*_________________ANIMATION END____________*/
/*____START OF MOVEABLE TEXT_____*/
.scrollingTextContainer {
  width: 100%;
  overflow-x: hidden;
  background-color: #00aeef;
  padding: 0.5% 0;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.horizontal-scrolling-items {
  display: flex;
  font-size: 30px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  width: 100%;
  animation-name: infiniteScroll;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.horizontal-scrolling-items__item {
  white-space: nowrap;
}

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/*____END OF MOVEABLE TEXT_____*/
.home-search-wrap {
  padding: 100px 80px;
}
.home-search-wrap h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
}
.home-search-wrap p {
  font-size: 20px;
}
.home-search-wrap .form-control {
  font-size: 20px;
  padding: 10px 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.home-search-wrap .search-bt {
  display: block;
  background: #00aeef;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 10px 0;
  border-radius: 10px;
}
.home-search-wrap .search-bt:hover {
  background: #0384b3;
}

.home-why-chouse {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
.home-why-chouse .left-wrap {
  width: 50%;
  float: left;
}
.home-why-chouse .right-wrap {
  width: 50%;
  float: left;
  padding-right: 125px;
}
.home-why-chouse .right-wrap .row {
  align-items: center;
  background: url(../images/home-bg-line.png) repeat-y 70px 0;
  padding-bottom: 25px;
  padding-bottom: 60px;
}
.home-why-chouse .right-wrap h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
  margin-bottom: 50px;
}
.home-why-chouse .right-wrap h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  color: #3a3a3c;
  font-weight: 600;
}
.home-why-chouse .right-wrap p {
  font-size: 20px;
  color: #3a3a3c;
}
.home-why-chouse .right-wrap .why-icon {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 10px;
  background: #fff;
  padding: 25px;
  border-radius: 120px;
  width: 120px;
}

.home-cartfied-wrap {
  padding: 80px 80px;
  background: rgb(238, 238, 238);
  background: linear-gradient(180deg, rgb(238, 238, 238) 0%, rgb(238, 238, 238) 60%, rgb(238, 238, 238) 60%, rgb(255, 255, 255) 61%, rgb(255, 255, 255) 100%);
}
.home-cartfied-wrap h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
  text-align: center;
}
.home-cartfied-wrap p {
  font-size: 24px;
  color: #3a3a3c;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 3%;
}

.home-cartfied-wrap{
  position: relative;
  overflow: hidden;
}
.home-cartfied-wrap .blue-circle{
  position: absolute;
  top: 22%;
  right: -4%;
  width: 20%;
  z-index: 0;
}
.home-cartfied-wrap .blue-circle img{
  width: 100%;
}


.home-cartfied-slider .owl-nav {
  position: absolute;
  top: 35%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.home-cartfied-slider .owl-dots {
  display: none;
}
.home-cartfied-slider .owl-nav .owl-prev i, .home-cartfied-slider .owl-nav .owl-next i {
  color: white;
  font-size: 23px;
  height: 70px;
  width: 70px;
  background-color: #00aeef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-cartfied-slider .owl-nav .owl-next i {
  margin-left: 53%;
}
.home-cartfied-slider .owl-nav .owl-prev i {
  margin-left: -53%;
}

.home-cartfied-slider img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.home-cartfied-slider .cartified-text-wrap {
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
  margin-bottom: 25px;
  min-height: 194px;
  background: #fff;
}
.home-cartfied-slider .cartified-text-wrap h3 {
  font-size: 28px;
  color: #00aeef;
  width: 100%;
  margin-bottom: 25px;
  text-align: left;
}
.home-cartfied-slider .cartified-text-wrap h3 span {
  background: #d3d3d3;
  display: table;
  text-align: right;
  padding: 5px 10px;
  float: right;
  font-size: 18px;
  font-weight: normal;
  color: #3a3a3c;
}
.home-cartfied-slider .cartified-text-wrap h4 {
  font-size: 20px;
  font-weight: 600;
  display: block;
}

.home-cartfied-slider .cartified-text-wrap p {
  font-size: 18px;
  display: block;
  margin-bottom: 30px;
  text-align: left;
}
.home-cartfied-slider .cartified-text-wrap h5 {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 20px;
}
.home-cartfied-slider .cartified-text-wrap h6 {
  font-size: 20px;
  font-weight: bold;
  color: #00aeef;
  width: 100%;
}
.home-cartfied-slider .cartified-text-wrap h6 span {
  text-align: right;
  color: #a0a0a0;
  float: right;
}

.home-new-wrap {
  padding: 0 0 0 125px;
  background: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.home-new-wrap .flex-container .left-flex a {
  background: #00aeef;
}
.home-new-wrap h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 50px;
  color: #3a3a3c;
  text-align: center;
  text-transform: uppercase;
}
.home-new-wrap p {
  font-size: 28px;
  color: #3a3a3c;
  text-align: center;
  margin-top: 10px;
}
.home-new-wrap .flex-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4%;
}
.home-new-wrap .flex-container .left-flex {
  width: 40%;
}
.home-new-wrap .flex-container .left-flex .top {
  font-size: 24px;
  color: #3a3a3c;
  margin-top: 10px;
  margin-bottom: 5%;
}
.home-new-wrap .flex-container .left-flex ul {
  padding: 0;
}
.home-new-wrap .flex-container .left-flex ul li {
  font-size: 28px;
  color: #3a3a3c;
  list-style: none;
  list-style-type: none;
  margin-bottom: 0.5%;
  background: url(../images/list-icon-1.png) no-repeat 0 5px;
  color: #000;
  padding: 0px 10px 20px 45px;
  font-size: 24px;
}
.home-new-wrap .flex-container .right-flex {
  width: 57%;
}
.home-new-wrap .flex-container .right-flex img {
  width: 100%;
}

.home-subject-wrap {
  padding: 100px 125px;
  background: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.home-subject-wrap h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
  text-align: center;
}
.home-subject-wrap p {
  font-size: 24px;
  color: #3a3a3c;
  text-align: center;
  margin-top: 10px;
}
.home-subject-wrap ul {
  padding: 0;
  margin: 50px 0 0 0;
}
.home-subject-wrap ul li {
  list-style-type: none;
  float: left;
  width: 14%;
  margin: 1%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.home-subject-wrap ul li:hover .overlay-content {
  height: 100%;
}
.home-subject-wrap ul li .overlay-content {
  position: absolute;
  height: 0%;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.5s;
}
.home-subject-wrap ul li .overlay-content h3 {
  text-align: center;
  font-size: 20px;
  color: #3a3a3c;
  color: #fff;
  padding: 0 3%;
}
.home-subject-wrap ul li a img {
  border-radius: 5px;
  width: 100%;
  height: auto;
}
.home-subject-wrap .blue-circle {
  width: 30%;
  position: absolute;
  right: -15%;
  top: 20%;
  z-index: -1;
}
.home-subject-wrap .blue-circle img {
  width: 100%;
}

.home-info-wrap {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-info-wrap .left-wrap {
  width: 55%;
}
.home-info-wrap .left-wrap img {
  width: 100%;
  height: auto;
  border-top-right-radius: 8px;
}
.home-info-wrap .right-wrap {
  width: 45%;
  padding: 0 125px 0 100px;
}
.home-info-wrap .right-wrap h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
}
.home-info-wrap .right-wrap p {
  font-size: 20px;
  color: #3a3a3c;
  margin-top: 10px;
}



.home-info-wrap1 {
  /* margin-top: 50px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-info-wrap1 .left-wrap {
  width: 50%;
}
.home-info-wrap1 .left-wrap img {
  width: 100%;
  height: auto;
}
.home-info-wrap1 .right-wrap {
  width: 45%;
  /* padding: 0 125px 0 100px; */
  padding-right: 85px;
}
.home-info-wrap1 .right-wrap h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
}
.home-info-wrap1 .right-wrap p {
  font-size: 20px;
  color: #3a3a3c;
  margin-top: 10px;
}
.home-info-wrap1 .right-wrap a{
  background: #0384b3;
  border-radius: 7px;
  margin: 3% 0;
}

.home-info-wrap2 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  background-color: #00aeef;
}
.home-info-wrap2 .left-wrap {
  width: 50%;
}
.home-info-wrap2 .left-wrap img {
  width: 100%;
  height: auto;
}
.home-info-wrap2 .right-wrap {
  width: 45%;
  /* padding: 0 125px 0 100px; */
  padding-left: 80px;
}
.home-info-wrap2 .right-wrap h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #fff;
}
.home-info-wrap2 .right-wrap p {
  font-size: 20px;
  color: #fff;
  margin: 3% 0;
}
.home-info-wrap2 .right-wrap a{
  background: #fff;
  color: #2f2f31;
  border-radius: 7px;
}

.home-info-wrap2 .right-wrap a:hover{
  background: #00aeef;
  color: #ffffff;
  border-color: #fff;
}

.home-info-wrap1 .right-wrap a:hover{
  background: #ffffff;
  color: #00aeef;
}


.certificate-container {
  background-color: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 80px;
}
.certificate-container .left-side {
  /* height: 650px;
  width: 650px; */
  border-radius: 50%;
  /* background-color: #e2e2e2; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  /* box-shadow: 0 0 15px 15px #ffffff; */
  z-index: 1;
}
.certificate-container .left-side h1 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
  text-align: left;
  line-height: 1;
  margin-bottom: 3%;
  padding: 0;
}
.certificate-container .left-side p {
  text-align: left;
  font-size: 24px;
  color: #3a3a3c;
  padding: 0 30px 0 0;
  line-height: 1.3;
}
.certificate-container .right-side {
  display: grid;
  grid-template-columns: 31% 31% 31%;
  align-items: start;
  justify-content: center;
  gap: 1.5em;
  z-index: 1;
  width: 80%;
}
.certificate-container .right-side div img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.certificate-container .right-in-side {
  z-index: 1;
  width: 56%;
  padding-right: 7%;
}
.certificate-container .right-in-side p {
  font-size: 20px;
  color: #3a3a3c;
  margin-bottom: 4%;
}
.certificate-container .right-in-side ul {
  display: grid;
  grid-template-columns: 46% 46%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
}
.certificate-container .right-in-side ul li {
  font-size: 20px;
  color: #3a3a3c;
}
.certificate-container .bg-pattern {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.certificate-container .bg-pattern img {
  height: 100%;
  width: 100%;
}
.certificate-container .blue-circle {
  position: absolute;
  width: 30%;
  left: -20%;
}
.certificate-container .blue-circle img {
  width: 100%;
}

.home-faq-wrap {
  /* padding: 100px 125px; */
  /* background: #eee; */
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.home-faq-wrap h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
  text-align: center;
}
.home-faq-wrap h6 {
  font-size: 24px;
  color: #3a3a3c;
  margin-top: 10px;
  text-align: center;
  font-weight: 400;
  margin: 10px 80px 10px 80px;
}
.home-faq-wrap p {
  color: #3a3a3c;
  margin-top: 10px;
  font-size: 18px;
}
.home-faq-wrap .accordion-item {
  margin-bottom: 15px;
}
.home-faq-wrap .accordion-button {
  font-size: 20px;
  font-weight: 600;
  color: #3a3a3c;
}
.home-faq-wrap .blue-circle {
  position: absolute;
  width: 30%;
  left: -18%;
  bottom: 2%;
  z-index: -1;
}
.home-faq-wrap .blue-circle img {
  width: 100%;
}
.faq-container{
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.lady{
  width: 40%;
  /* float: left; */
}
.lady img{
  width: 100%;
}
#accordionExample{
   width: 60%;
   padding-right: 80px;
   /* float: right;
   padding-right: 5%; */
}
.home-faq-wrap .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #00aeef;
  border-top: 1px solid;
}

.home-faq-wrap .accordion-button:focus {
  box-shadow: none;
}

/*________Added by SUrajit_________*/
.home-our-activities {
  padding: 4% 5% 3.5%;
}
.home-our-activities h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  text-align: center;
  color: #3a3a3c;
}
.home-our-activities .button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2% 0 2% 0;
}
.home-our-activities .button-container button {
  font-size: 23px;
  padding: 0.5% 2%;
  margin: 0.3%;
  border-radius: 5px;
  background: transparent;
  border: none;
  border: 1px solid #3a3a3c;
  transition: 0.5s;
}
.home-our-activities .button-container button:hover {
  background-color: #00aeef;
  color: #fff;
}

.activity-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
}
.activity-container .left {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
}
.activity-container .left .image {
  width: 100%;
}
.activity-container .left .image img {
  width: 100%;
}
.activity-container .left .image iframe {
  width: 100%;
  border-radius: 10px;
}
.activity-container .middle {
  width: 34%;
}
.activity-container .middle .image {
  width: 100%;
}
.activity-container .middle .image img {
  width: 100%;
}
.activity-container .right {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
}
.activity-container .right .image {
  width: 100%;
}
.activity-container .right .image img {
  width: 100%;
}
.activity-container .right .image iframe {
  width: 100%;
  border-radius: 10px;
}

/*____________END______________*/
.home-be-teacher {
  background: #00aeef;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-be-teacher .left-wrap {
  width: 50%;
  padding-left: 125px;
}
.home-be-teacher .left-wrap h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #fff;
}
.home-be-teacher .left-wrap p {
  font-size: 24px;
  color: #3a3a3c;
  margin-top: 10px;
  color: #fff;
}
.home-be-teacher .left-wrap .click-to-know-bt {
  background: #fff;
  color: #3a3a3c;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 29px;
  display: table;
}
.home-be-teacher .right-wrap {
  width: 50%;
}
.home-be-teacher .right-wrap img {
  float: right;
}

.footer-wrap {
  font-size: 20px;
  background: #3a3a3c;
  padding: 20px 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.footer-wrap div {
  width: 20%;
}
.footer-wrap a {
  color: #fff;
}
.footer-wrap a:hover {
  color: #00aeef;
}
.footer-wrap a img {
  width: 40%;
}
.footer-wrap ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: end;
  gap: 0.5em;
  width: 100%;
}
.footer-wrap ul li {
  list-style: none;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-wrap ul li a {
  text-decoration: none;
}
.footer-wrap ul li a i {
  font-size: 22px;
  height: 45px;
  width: 45px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  color: #00aeef;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50%;
  transition: 0.5s;
}
.footer-wrap ul li a i:hover {
  /* transform: rotate(360deg); */
  background-color: transparent;
  border: 1px solid #fff;
  color: #00aeef;
}

.footer-end {
  font-size: 16px;
  text-align: center;
  background: #2f2f31;
  color: #fff;
  padding: 1% 0;
}

.coursepage-wrap {
  background: linear-gradient(180deg, #00aeef 0%, #00aeef 52%, rgb(255, 255, 255) 30%, rgb(255, 255, 255) 100%);
  position: relative;
  padding: 250px 95px 100px 95px;
}
.coursepage-wrap .course-thum {
  padding: 0;
  margin: 50px 0 0 0;
  display: grid;
  grid-template-columns: 32% 32% 32%;
  align-items: normal;
  justify-content: space-between;
  gap: 3%;
}
.coursepage-wrap .course-thum li {
  float: left;
  /* width: 29.2%; */
  width: 100%;
  margin: 1%;
  list-style-type: none;
  background: #fff;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
}
.coursepage-wrap .course-thum li a img {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.coursepage-wrap .course-thum li a .cartified-text-wrap {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
  margin-bottom: 25px;
  min-height: 210px;
}
.coursepage-wrap .course-thum li a .cartified-text-wrap h3 {
  font-size: 24px;
  color: #3a3a3c;
  font-weight: bold;
  width: 100%;
  margin-bottom: 25px;
}
.coursepage-wrap .course-thum li a .cartified-text-wrap h3 span {
  background: #d3d3d3;
  display: table;
  text-align: right;
  padding: 5px 10px;
  float: right;
  font-size: 18px;
  font-weight: normal;
}
.coursepage-wrap .course-thum li a .cartified-text-wrap h4 {
  font-size: 20px;
  font-weight: 600;
  display: block;
}
.coursepage-wrap .course-thum li a .cartified-text-wrap p{
        font-size: 18px;
    display: block;
    margin-bottom: 30px;
    text-align: left;
    color: #3a3a3c;
        
}
.coursepage-wrap .course-thum li a .cartified-text-wrap h5 {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 20px;
}
.coursepage-wrap .course-thum li a .cartified-text-wrap h6 {
  font-size: 20px;
  font-weight: bold;
  color: #00aeef;
  width: 100%;
}
.coursepage-wrap .course-thum li a .cartified-text-wrap h6 span {
  text-align: right;
  color: #a0a0a0;
  float: right;
}
.coursepage-wrap h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  text-align: center;
  color: #fff;
}
.coursepage-wrap p {
  font-size: 24px;
  color: #3a3a3c;
  text-align: center;
  color: #fff;
}
.coursepage-wrap .searh-box {
  width: 70%;
  display: block;
  margin: 25px auto 0 auto;
}
.coursepage-wrap .searh-box .form-control {
  font-size: 20px;
  padding: 10px 45px !important;
  border-radius: 10px;
}
.coursepage-wrap .searh-box .fa-search {
  margin-top: 7px;
  color: #1d124b;
  font-size: 20px;
  margin-left: 6px;
}
.coursepage-wrap .show-all-bt {
  text-align: center;
  font-size: 24px;
  display: table;
  margin: 0 auto;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 3%;
}

.coursepage-wrap .has-search .form-control {
  padding-left: 2.375rem;
}

.coursepage-wrap .has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

.course-deatils-banner {
  position: relative;
  background: #00aeef;
  padding: 0;
  display: flex;
  align-items: center;
}
.course-deatils-banner .left-wrap {
  width: 55%;
  padding-left: 95px;
  padding-right: 100px;
}
.course-deatils-banner .left-wrap h3 {
  font-size: 50px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 90px;
}
.course-deatils-banner .left-wrap h4 {
  font-size: 20px;
  color: #3a3a3c;
  color: #fff;
  margin-bottom: 80px;
}
.course-deatils-banner .left-wrap h5 {
  font-size: 18px;
  color: #fff;
  font-weight: normal;
  margin-bottom: 12px;
}
.course-deatils-banner .left-wrap h6 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
}
.course-deatils-banner .left-wrap h6 span {
  background: #fff;
  margin-left: 25px;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: normal;
  color: #00aeef;
}
.course-deatils-banner .right-wrap {
  width: 45%;
}

.course-info #target {
  padding: 55px 95px;
  display: block;
}
.course-info #target h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
  text-align: center;
}
.course-info #target h3 {
  font-size: 24px;
  color: #3a3a3c;
  text-align: center;
}
.course-info #target .course-info-pic {
  border-radius: 10px;
}
.course-info #target .listOne {
  padding: 50px 70px;
  margin: 0;
  background: #eee;
  border-radius: 10px;
}
.course-info #target .listOne li {
  display: block;
  list-style-type: none;
  margin-bottom: 20px;
  background: url(../images/list-icon-1.png) no-repeat 0 5px;
  color: #3a3a3c;
  padding: 0 0 0 45px;
  font-size: 20px;
}
.course-info #target .listTwo {
  padding: 50px 70px;
  margin: 50px 0 0 0;
  background: #00aeef;
  border-radius: 10px;
}
.course-info #target .listTwo h4 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 70px;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 2%;
}
.course-info #target .listTwo ul {
  padding: 0;
  margin: 0;
  padding-bottom: 2%;
}
.course-info #target .listTwo ul li {
  list-style-type: none;
  background: url(../images/white-list-icon.png) no-repeat 0 9px;
  float: left;
  width: 48%;
  margin: 1%;
  font-size: 24px;
  color: #fff;
  padding: 0 0 0 30px;
}

.course-info #target .listThree {
  padding: 50px 70px;
  margin: 50px 0 0 0;
  background: #eee;
  border-radius: 10px;
}
.course-info #target .listThree h4 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 70px;
  color: #3a3a3c;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 2%;
}
.course-info #target .listThree ul {
  padding: 0;
  margin: 0;
  padding-bottom: 2%;
}
.course-info #target .listThree ul li {
  list-style-type: none;
  background: url(../images/list-icon-2.png) no-repeat 0 9px;
  float: left;
  width: 48%;
  margin: 1%;
  font-size: 24px;
  color: #3a3a3c;
  padding: 0 0 0 30px;
}

/*_____newly added_______*/
.courseFee-wrap{
  margin: 0 95px 3% 95px;
}
 .Coursefees{
  padding: 50px 70px;
  background: #eee;
  border-radius: 10px;
}


.Coursefees h4{
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 70px;
  color: #3a3a3c;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 2%;
}
.courseFee-wrap .Coursefees  ul {
  padding: 0;
  margin: 0;
  padding-bottom: 2%;
}
.courseFee-wrap .Coursefees  ul li {
  list-style-type: none;
  background: url(../images/list-icon-2.png) no-repeat 0 5px;
  float: left;
  width: 48%;
  margin: 1%;
  font-size: 24px;
  color: #3a3a3c;
  padding: 0 0 0 30px;
}


/*______________end_________*/


.course-info .Hide {
  display: none;
}
.course-info .Show {
  background: #eee;
  font-size: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  border: solid 15px #fff;
  z-index: 2;
  position: relative;
  display: table;
  margin: -50px auto 0 auto;
  transition: .5s;
}
.course-info .Hide {
  background: #eee;
  font-size: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  border: solid 15px #fff;
  z-index: 2;
  position: relative;
  margin: -50px auto 0 auto;
}

.select-batch-wrap {
  padding: 100px 125px;
}
.select-batch-wrap h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
  text-align: center;
  margin-bottom: 50px;
}
.select-batch-wrap .teacher-batch-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  align-items: center;
  margin-bottom: 50px;
}
.select-batch-wrap .teacher-batch-wrap img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-left: -10px;
}
.select-batch-wrap .teacher-batch-wrap h6 {
  font-size: 24px;
  margin-bottom: 15px;
}
.select-batch-wrap .teacher-batch-wrap p {
  font-size: 20px;
}
.select-batch-wrap .teacher-batch-wrap .bt-wrap {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 80%, #00aeef 80%, #00aeef 100%);
  border: solid 1px #00aeef;
  font-size: 20px;
  text-align: center;
  display: block;
  padding: 7px 20% 7px 0;
  position: relative;
  margin-bottom: 10px;
}
.select-batch-wrap .teacher-batch-wrap .bt-wrap .fa-chevron-right {
  float: right;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 8%;
  font-size: 34px;
}
.select-batch-wrap .teacher-batch-wrap .bt-wrap:hover {
  background: linear-gradient(90deg, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 80%, rgb(7, 3, 24) 80%, rgb(7, 3, 24) 100%);
  border: solid 1px rgb(7, 3, 24);
}
.select-batch-wrap .batches-wrap {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  margin-bottom: 35px;
}
.select-batch-wrap .batches-wrap .row {
  align-items: center;
}
.select-batch-wrap .batches-wrap .line-height {
  line-height: 54px;
}
.select-batch-wrap .batches-wrap .block-1 {
  background: #eee;
  padding: 7px 0;
  font-size: 18px;
  color: #3a3a3c;
  border-radius: 5px;
}
.select-batch-wrap .batches-wrap .block-1 span {
  font-weight: bold;
}
.select-batch-wrap .batches-wrap .block-2 {
  font-size: 18px;
  color: #3a3a3c;
}
.select-batch-wrap .batches-wrap .block-2 span {
  font-weight: bold;
}
.select-batch-wrap .batches-wrap .block-3 {
  background: #00aeef;
  display: block;
  padding: 19px 0;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
}
.select-batch-wrap .batches-wrap .block-4 {
  font-size: 34px;
  font-weight: 600;
}
.select-batch-wrap .batches-wrap .block-5 {
  background: #00aeef;
  color: #fff;
  border-radius: 5px;
  display: block;
  padding: 19px 0;
  font-size: 20px;
  font-weight: 600;
}
.select-batch-wrap .batches-wrap .block-5:hover {
  background: #00aeef;
}
.select-batch-wrap .batches-wrap .bor-right {
  border-right: solid 1px #eee;
}

.course-review-wrap {
  background: rgb(238, 238, 238);
  background: linear-gradient(180deg, rgb(238, 238, 238) 0%, rgb(238, 238, 238) 70%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
  padding: 100px 125px;
}

.course-review-wrap .see-all-bt {
  text-align: center;
  font-size: 24px;
  display: table;
  margin: 50px auto 0 auto;
  font-weight: 600;
  text-decoration: underline;
}
.course-review-wrap h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
  text-align: center;
}
.course-review-wrap h4 {
  font-size: 28px;
  color: #3a3a3c;
  text-align: center;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 120px;
}
.course-review-wrap .dubble-shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  margin: 0 30px;
  border-radius: 100px;
}
.course-review-wrap .review-box {
  background: #fff;
  border-radius: 7px;
  padding: 25px;
  /* box-shadow: 11px -11px 0px 0px #00aeef; */
  text-align: center;
  margin: 0;
}
.course-review-wrap .review-box .img-wrap {
  width: 145px;
  height: 145px;
  border-radius: 200px;
  margin: -85px auto 0 auto;
}
.course-review-wrap .review-box .img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 200px;
  border: solid 7px #ededed;
}
.course-review-wrap .review-box h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 15px 0;
}
.course-review-wrap .review-box h4 {
  font-size: 18px;
  color: #00aeef;
  margin: 0;
}
.course-review-wrap .review-box h4 span {
  color: #eee;
}
.course-review-wrap .review-box p {
  font-size: 20px;
  color: #000;
  margin: 40px 30px;
}

.course-more-wrap {
  padding: 100px 95px;
}
.course-more-wrap .owl-carousel .owl-nav.disabled {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-more-wrap .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot span{
  font-size: 50px;
  color: #ffff;
  height: 70px;
  width: 70px;
  background-color: #00aeef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-more-wrap .owl-carousel .owl-nav button.owl-prev{
  margin-left: -2%;
}
.course-more-wrap .owl-carousel .owl-nav button.owl-next{
  margin-right: -2%;
}
.course-more-wrap h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
  text-align: center;
}

.student-profile-wrap-1 {
  position: relative;
  padding: 100px 125px 280px 125px;
  background: #00aeef;
}

.student-profile-wrap-2 .pro-pic {
  width: 310px;
  height: 310px;
  border-radius: 500px;
  border: solid 13px #fff;
  margin: -150px auto 20px auto;
  position: relative;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.student-profile-wrap-2 .pro-pic img {
  width: 100%;
  height: auto;
  border-radius: 500px;
}
.student-profile-wrap-2 h3 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin: 5px 0;
  display: block;
  color: #00aeef;
}
.student-profile-wrap-2 p {
  text-align: center;
  display: block;
  font-size: 20px;
  padding: 0.5% 5%;
}

.teacher-popup {
  background: none;
  border: none;
}
.teacher-popup .modal-body {
  padding: 0;
}
.teacher-popup .modal-header {
  border: none;
  background: #00aeef;
  color: #fff;
  border-radius: 10px;
  display: block;
  position: relative;
}
.teacher-popup .modal-header .cross-bt {
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
}
.teacher-popup .modal-header .cross-bt:hover {
  color: #eee;
}
.teacher-popup .modal-header h3 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}
.teacher-popup .modal-header h5 {
  font-size: 20px;
  color: #fff;
}
.teacher-popup .modal-header h4 {
  font-size: 34px;
  position: absolute;
  right: 100px;
  top: 15px;
  font-weight: bold;
}
.teacher-popup .stu-pop-block {
  background: #fff;
  font-size: 40px;
  font-weight: 600;
  margin: 10px 0;
  border-radius: 10px;
  padding: 10px;
}
.teacher-popup .stu-pop-block .row {
  align-items: center;
}
.teacher-popup .stu-pop-block .imge-wrap {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.teacher-popup .stu-pop-block .imge-wrap img {
  width: 100%;
  height: auto;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.teacher-popup .stu-pop-block .name-wrap {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  background: #eee;
  display: block;
  line-height: 87px;
  font-weight: normal;
}
.teacher-popup .stu-pop-block .email-wrap {
  text-align: center;
  font-size: 24px;
  display: block;
  font-weight: normal;
}

/*___________START OF ABOUT US PAGE(SURAJIT's css)___________*/
.about-banner {
  display: flex;
}
.about-banner .left-text {
  width: 53%;
  background: #00aeef;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: 0 95px 25px 95px;
}
.about-banner .left-text .text h1 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 3%;
}
.about-banner .left-text .text p {
  font-size: 24px;
  color: #fff;
}
.about-banner .right-img {
  width: 47%;
}
.about-banner .right-img img {
  width: 100%;
}

.about-sec-2 {
  padding: 95px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}
.about-sec-2 .heading {
  margin-bottom: 4%;
}
.about-sec-2 .heading h1 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  text-align: center;
  color: #3a3a3c;
}
.about-sec-2 .heading p {
  font-size: 24px;
  color: #3a3a3c;
  text-align: center;
}
.about-sec-2 .main {
  display: flex;
  justify-content: space-between;
}
.about-sec-2 .main .reviews {
  width: 60.3%;
  background: #eee;
  border-radius: 10px;
}
.about-sec-2 .main .reviews .all-reviews {
  border-radius: 10px;
  padding: 6%;
}
.about-sec-2 .main .reviews .all-reviews p {
  font-size: 20px;
  color: #3a3a3c;
}
.about-sec-2 .main .reviews .all-reviews .num {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
.about-sec-2 .main .reviews .all-reviews .num div h1 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
}
.about-sec-2 .main .reviews .all-reviews .num div p {
  font-size: 24px;
  color: #3a3a3c;
}
.about-sec-2 .main .reviews .all-reviews .listOne li {
  display: block;
  list-style-type: none;
  margin-bottom: 20px;
  background: url(../images/list-icon-1.png) no-repeat 0 5px;
  color: #000;
  padding: 0 0 0 45px;
  font-size: 20px;
}
.about-sec-2 .main .img {
  width: 37.6%;
}
.about-sec-2 .main .img img {
  width: 100%;
}
.about-sec-2 .blue-circle {
  width: 30%;
  position: absolute;
  right: -10%;
  top: 16%;
  z-index: -1;
}
.about-sec-2 .blue-circle img {
  width: 100%;
}

.about-sec-3 {
  padding: 95px;
  overflow: hidden;
}
.about-sec-3 .heading {
  margin-bottom: 4%;
}
.about-sec-3 .heading h1 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  text-align: center;
  color: #3a3a3c;
}
.about-sec-3 .heading p {
  font-size: 24px;
  color: #3a3a3c;
  text-align: center;
}
.about-sec-3 .blog-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-right-radius: 80px;
}
.about-sec-3 .blog-container .left {
  width: 35%;
}
.about-sec-3 .blog-container .left .content {
  padding: 0 13%;
}
.about-sec-3 .blog-container .left .content span {
  font-size: 20px;
  color: #3a3a3c;
  color: #00aeef;
}
.about-sec-3 .blog-container .left .content h3 {
  font-size: 24px;
  color: #3a3a3c;
  margin: 4% 0;
  font-weight: bold;
}
.about-sec-3 .blog-container .left .content p {
  font-size: 20px;
  color: #3a3a3c;
}
.about-sec-3 .blog-container .right {
  width: 65%;
}
.about-sec-3 .blog-container .right img {
  width: 100%;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

.about-sec-4 {
  overflow: hidden;
  position: relative;
  padding: 95px;
  background-image: linear-gradient(to bottom, #eee 59%, #fff 50%);
  /*_____owl carousel css link start_________*/
  /*_______owl carousel css link end________*/
}
.about-sec-4 .heading {
  margin-bottom: 4%;
}
.about-sec-4 .heading h1 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  text-align: center;
  color: #3a3a3c;
  padding: 0 23%;
}
.about-sec-4 .heading p {
  font-size: 24px;
  color: #3a3a3c;
  text-align: center;
}
.about-sec-4 .card-container {
  display: flex;
  justify-content: space-between;
}
.about-sec-4 .card-container .card {
  width: 100%;
  border-top-right-radius: 80px;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
  border-top-right-radius: 130px;
}
.about-sec-4 .card-container .card .img {
  width: 100%;
  border-top-right-radius: 108px;
}
.about-sec-4 .card-container .card .img img {
  width: 100%;
  border-top-right-radius: 7px;
}
.about-sec-4 .card-container .card .text {
  padding: 4%;
}
.about-sec-4 .card-container .card .text h3 {
  font-size: 24px;
  color: #3a3a3c;
  font-weight: bold;
  margin-bottom: 2%;
  text-transform: uppercase;
}
.about-sec-4 .card-container .card .text p {
  font-size: 20px;
  color: #3a3a3c;
}
.about-sec-4 .owl-carousel .owl-nav.disabled {
  display: block;
}
.about-sec-4 .owl-item {
  margin-right: 0;
}
.about-sec-4 .owl-prev {
  font-size: 21px;
  position: absolute;
  left: -2%;
  top: 45%;
  bottom: 45%;
  z-index: 2;
}
.about-sec-4 .owl-next {
  position: absolute;
  right: -2%;
  top: 45%;
  bottom: 45%;
  z-index: 2;
}
.about-sec-4 .owl-prev i, .about-sec-4 .owl-next i {
  color: white;
  font-size: 23px;
  height: 70px;
  width: 70px;
  background-color: #00aeef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-sec-4 #blue-circle {
  width: 30%;
  position: absolute;
  left: -15%;
  top: 14%;
}
.about-sec-4 #blue-circle img {
  width: 100%;
}

/*___________END OF ABOUT US PAGE(SURAJIT's css)___________*/
/*____________START OF CONTACT PAGE____________*/
.contact-sec-1 {
  padding: 12% 95px 6% 95px;
  color: #fff;
  background: #00aeef;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-sec-1 .left-sec {
  width: 38%;
}
.contact-sec-1 .left-sec h1 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #fff;
  margin-bottom: 3%;
}
.contact-sec-1 .left-sec p {
  font-size: 20px;
  color: #3a3a3c;
  color: #fff;
  margin-bottom: 8%;
}
.contact-sec-1 .left-sec div {
  font-size: 20px;
  color: #3a3a3c;
  color: #fff;
  margin-bottom: 5%;
}
.contact-sec-1 .left-sec div i {
  margin-right: 3%;
}
.contact-sec-1 .right-sec {
  width: 54%;
  background-color: #fff;
  border-radius: 10px;
  padding: 4%;
}
.contact-sec-1 .right-sec .heading h1 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
  text-align: center;
  margin-bottom: 2%;
}
.contact-sec-1 .right-sec .heading p {
  text-align: center;
  font-size: 20px;
  color: #3a3a3c;
  color: #3a3a3c;
  margin-bottom: 3%;
}
.contact-sec-1 .right-sec .white-form input {
  display: block;
  width: 100%;
  padding: 1%;
  font-size: 20px;
  color: #3a3a3c;
  color: #3a3a3c;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #a0a0a0;
  margin-bottom: 3%;
}
.contact-sec-1 .right-sec .white-form input:focus {
  outline: 0;
}
.contact-sec-1 .right-sec .white-form input::-moz-placeholder {
  color: #3a3a3c;
}
.contact-sec-1 .right-sec .white-form input::placeholder {
  color: #3a3a3c;
}
.contact-sec-1 .right-sec .white-form button {
  margin-top: 3%;
  float: right;
  font-size: 24px;
  color: #3a3a3c;
  color: #3a3a3c;
  background: transparent;
  border: 0;
  font-weight: bold;
  transition: 0.5s;
}
.contact-sec-1 .right-sec .white-form button i {
  transform: rotate(-45deg);
}
.contact-sec-1 .right-sec .white-form button:hover {
  border-bottom: 1px solid #3a3a3c;
}

/*___________END OF CONTACT PAGE__________*/
.navbar-toggler:focus {
  box-shadow: none;
}

/*________START OF TRAINNING REQUIREMENTS PAGE________*/
.tainning-images {
  padding: 4% 6%;
  position: relative;
  overflow: hidden;
}
.tainning-images .all-trainning h1 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  color: #3a3a3c;
  text-align: center;
}
.tainning-images .all-trainning p {
  font-size: 24px;
  color: #3a3a3c;
  text-align: center;
}
.tainning-images .img-container {
  display: flex;
  justify-content: space-between;
}
.tainning-images .img-container .img {
  width: 49%;
}
.tainning-images .img-container .img img {
  width: 100%;
}
.tainning-images .img-container .img p {
  font-size: 20px;
  color: #3a3a3c;
  font-weight: 500;
}
.tainning-images #blue-circle {
  position: absolute;
  right: -10%;
  top: 15%;
  width: 30%;
  z-index: -1;
}
.tainning-images #blue-circle img {
  width: 100%;
}

/*___________END OF TRAINNING REQUIREMENTS PAGE______*/
@media screen and (max-width: 1600px) {
  .footer-wrap{
    padding: 20px 80px;
  }
  .about-banner .left-text .text h1 {
    font-size: 40px;
  }
  .about-banner .left-text .text p {
    font-size: 18px;
  }
  .certificate-container .left-side {
    height: 550px;
    width: 550px;
  }
}
@media screen and (max-width: 1500px) {

  .certificate-container{
    padding: 80px 50px;
  }
  #accordionExample{
    padding-right: 50px;
  }
  /* .navbar-brand img {
    width: 70%;
  } */
  .banner-wrap .navbar-brand img {
    width: 70%;
  }
  .navbar .navbar-nav {
    gap: 1%;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 17px;
    margin: 0 0px;
  }
  .navbar .login-bt {
    font-size: 15px;
    padding: 4px 14px;
  }
  .about-sec-4 .card-container .card .text{
    min-height: 160px;
  }
  .navbar .navbar-text a {
    font-size: 17px;
    text-align: center;
    padding-left: 0%;
  }
  .navbar .navbar-text {
    gap: 1em;
  }
  .horizontal-scrolling-items {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .banner-wrap .banner-text-wrap h2 {
    font-size: 60px;
  }
  .banner-wrap .banner-text-wrap h5 {
    font-size: 28px;
  }
  .home-search-wrap {
    padding: 100px 50px;
  }
  .home-search-wrap h2 {
    font-size: 40px;
  }
  .home-search-wrap p {
    font-size: 18px;
  }
  .home-why-chouse .right-wrap {
    padding-right: 50px;
  }
  .home-why-chouse .right-wrap h2 {
    font-size: 40px;
  }
  .home-why-chouse .right-wrap .why-icon {
    padding: 20px;
    width: 90px;
  }
  .home-why-chouse .right-wrap .row {
    background: url(../images/home-bg-line.png) repeat-y 56px 23px;
  }
  .home-why-chouse .right-wrap h3 {
    font-size: 20px;
  }
  .home-why-chouse .right-wrap p {
    font-size: 18px;
  }
  .home-cartfied-wrap h2 {
    font-size: 40px;
  }
  .home-cartfied-wrap p {
    font-size: 18px;
  }
  .about-banner .left-text{
    padding: 0 50px 25px 50px;
  }
  .navbar{
    width: 92.6%;
  left: 3.7%;
  }
  .home-cartfied-slider .cartified-text-wrap {
    padding: 20px;
    min-height: 215px;
  }
  .home-cartfied-slider .owl-nav .owl-prev i, .home-cartfied-slider .owl-nav .owl-next i {
    color: white;
    font-size: 19px;
    height: 50px;
    width: 50px;
  }
  .home-cartfied-slider .cartified-text-wrap h4 {
    font-size: 20px;
  }
  .home-new-wrap {
    padding: 0 0 0 50px;
  }

  /*___SURAJIT's code___*/
  .certificate-container .left-side h1 {
    font-size: 40px;
  }
  .certificate-container .left-side p {
    font-size: 18px;
  }
  /* .certificate-container {
    padding: 0px 0% 0 2%;
  } */
  .certificate-container .left-side {
    height: 450px;
    width: 450px;
  }
  .home-info-wrap2 .right-wrap{
    padding-left: 50px;
  }
  .home-info-wrap1 .right-wrap{
    padding: 25px 25px 24px 0;
  }
  .certificate-container .right-side {
    gap: 1em;
    justify-content: space-between;
    grid-template-columns: 32% 32% 32%;
  }
  .contact-sec-1{
    padding: 180px 50px 50px 50px;
  }
  .home-our-activities{
    padding: 50px;
  }
  .home-our-activities h2 {
    font-size: 40px;
  }
  .home-our-activities h2{
    font-size: 40px;
  }
  .activity-container {
    gap: 1em;
  }
  .activity-container .right, .activity-container .left {
    gap: 1em;
  }
  .tainning-images{
    padding: 4% 50px;
  }
  .student-profile-wrap-2 p{
    padding: 0.5% 50px;
  }
  .certificate-container .right-in-side{
    padding-right: 0;
  }
  .certificate-container .right-in-side p {
    font-size: 18px;
  }
  .certificate-container .right-in-side ul li {
    font-size: 18px;
  }
  .about-sec-2 .main .reviews .all-reviews .listOne li {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .home-info-wrap2 .right-wrap h2 {
    font-size: 40px;
  }
  .home-info-wrap2 .right-wrap p {
    font-size: 18px;
  }
  .home-info-wrap1 .right-wrap h2 {
    font-size: 40px;
  }
  .home-info-wrap1 .right-wrap p {
    font-size: 18px;
  }

  .home-new-wrap h2 {
    font-size: 40px;
  }
  .home-new-wrap p {
    font-size: 18px;
  }
  .home-new-wrap .flex-container .left-flex .top {
    font-size: 18px;
  }
  .home-new-wrap .flex-container .left-flex ul li {
    font-size: 18px;
  }
  /*____end____*/
  .home-subject-wrap h2 {
    font-size: 40px;
  }
  .home-subject-wrap p {
    font-size: 18px;
  }
  .home-cartfied-wrap {
    padding: 100px 50px 50px 50px;
  }
  .home-subject-wrap {
    padding: 100px 50px;
  }
  .home-info-wrap .right-wrap {
    padding: 0 50px 0 50px;
  }
  .home-info-wrap .right-wrap h2 {
    font-size: 40px;
  }
  .home-info-wrap .right-wrap p {
    font-size: 18px;
  }
  .home-faq-wrap h3 {
    font-size: 40px;
  }
  .home-faq-wrap h6 {
    font-size: 18px;
    padding: 0 50px;
  }
  .home-faq-wrap .accordion-button {
    font-size: 18px;
  }
  .home-be-teacher .left-wrap h3 {
    font-size: 40px;
  }
  .home-be-teacher .left-wrap p {
    font-size: 18px;
  }
  /* .home-faq-wrap {
    padding: 100px 50px;
  } */
  .footer-wrap {
    padding: 20px 50px;
  }
  .footer-wrap {
    font-size: 18px;
  }
  .footer-wrap ul li a i {
    font-size: 18px;
    height: 38px;
    width: 38px;
  }
  .footer-end {
    font-size: 14px;
  }
  .about-sec-2 .heading h1 {
    font-size: 40px;
  }
  .about-sec-2 .heading p {
    font-size: 18px;
  }
  .about-sec-2 {
    padding: 50px;
  }
  .about-sec-2 .main .reviews .all-reviews p {
    font-size: 18px;
  }
  .about-sec-2 .main .reviews .all-reviews .num div h1 {
    font-size: 46px;
  }
  .about-sec-2 .main .reviews .all-reviews .num div p {
    font-size: 21px;
  }
  .about-sec-3 {
    padding: 50px;
  }
  .about-sec-3 .heading h1 {
    font-size: 40px;
  }
  .about-sec-3 .heading p {
    font-size: 18px;
  }
  .about-sec-3 .blog-container .left .content h3 {
    font-size: 18px;
  }
  .about-sec-3 .blog-container .left .content p {
    font-size: 18px;
  }
  .about-sec-4 .heading h1 {
    font-size: 40px;
  }
  .about-sec-4 {
    padding: 50px;
  }
  .about-sec-4 .card-container .card .text h3 {
    font-size: 21px;
  }
  .about-sec-4 .card-container .card .text p {
    font-size: 18px;
  }
  .about-sec-4 .owl-prev i, .about-sec-4 .owl-next i {
    color: white;
    font-size: 15px;
    height: 45px;
    width: 45px;
  }
  /*____CONTACT PAGE START_____*/
  .contact-sec-1 .left-sec h1 {
    font-size: 40px;
  }
  .contact-sec-1 .left-sec p {
    font-size: 18px;
  }
  .contact-sec-1 .left-sec div {
    font-size: 18px;
  }
  .contact-sec-1 .right-sec .heading h1 {
    font-size: 40px;
  }
  .contact-sec-1 .right-sec .heading p {
    font-size: 18px;
  }
  .contact-sec-1 .right-sec .white-form input {
    font-size: 20px;
  }
  .contact-sec-1 .right-sec .white-form button {
    font-size: 21px;
  }
  /*______CONTACT PAGE END___*/
  /*_____START OF STUDENT PROFILE PAGE_____*/
  .student-profile-wrap-2 h3 {
    font-size: 24px;
  }
  .select-batch-wrap .batches-wrap .block-3 {
    font-size: 18px;
  }
  .student-profile-wrap-2 p {
    text-align: center;
    display: block;
    font-size: 17px;
  }
  .select-batch-wrap h3 {
    font-size: 54px;
    margin-bottom: 20px;
  }
  .select-batch-wrap {
    padding: 30px 50px;
  }
  .course-more-wrap {
    padding: 30px 50px;
  }
  .course-more-wrap h3 {
    font-size: 40px;
  }
  .home-cartfied-slider {
    margin-top: 50px;
  }
  .student-profile-wrap-2 .pro-pic {
    width: 206px;
    height: 206px;
  }
  .course-more-wrap .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot span {
    font-size: 35px;
    color: #ffff;
    height: 50px;
    width: 50px;
  }
  /*____END OF STUDENT PROFILE PAGE____*/
  /*___START OF TEACHER PROFILE PAGE____*/
  .select-batch-wrap .teacher-batch-wrap p {
    font-size: 19px;
  }
  .select-batch-wrap .teacher-batch-wrap h6 {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .select-batch-wrap .teacher-batch-wrap .bt-wrap {
    font-size: 17px;
  }
  .select-batch-wrap .teacher-batch-wrap .bt-wrap .fa-chevron-right {
    font-size: 22px;
  }
  /*___END OF TEACHER PROFILE PAGE____*/
  /*____ALL COURSES_____*/
  .coursepage-wrap {
    padding: 210px 50px 100px 50px;
  }
  .coursepage-wrap h2 {
    /* font-family: "Playfair Display", serif; */
    font-size: 40px;
  }
  .coursepage-wrap p {
    font-family: "PT Sans", sans-serif;
    font-size: 18px;
  }
  .coursepage-wrap .course-thum li a .cartified-text-wrap{
      min-height: 210px;
  }
  .coursepage-wrap .course-thum li a .cartified-text-wrap h4 {
    font-size: 20px;
  }
  .coursepage-wrap .course-thum li a .cartified-text-wrap {
    padding: 25px;
  }
  /*____ALL COURSES END____*/
  /*_____COURSE DETAILS_____*/
  .course-deatils-banner .left-wrap h3 {
    font-size: 40px;
    margin-top: 160px;
  }
  .course-deatils-banner .left-wrap h4 {
    font-family: "PT Sans", sans-serif;
    font-size: 22px;
    margin-bottom: 30px;
  }
  .course-deatils-banner .left-wrap {
    width: 55%;
    padding-left: 100px;
  }
  .select-batch-wrap .batches-wrap .block-3 {
    padding: 12px 0;
    font-size: 18px;
  }
  .select-batch-wrap .batches-wrap .block-4 {
    font-size: 28px;
  }
  .select-batch-wrap .batches-wrap .block-5 {
    padding: 12px 0;
    font-size: 18px;
  }
  .course-review-wrap h3 {
    font-size: 40px;
  }
  .course-review-wrap .review-box p {
    font-size: 18px;
    margin: 20px 20px;
  }
  .course-review-wrap {
    padding: 50px 50px;
  }
  .course-review-wrap .see-all-bt {
    font-size: 21px;
    margin: 40px auto 0 auto;
  }
  .course-info #target {
    padding: 50px 50px;
  }
  .course-info #target h2 {
    font-size: 40px;
  }
  .course-info #target h3 {
    font-size: 21px;
  }
  .course-info #target .listOne {
    padding: 25px 25px;
  }
  .course-info #target .listOne li {
    margin-bottom: 15px;
    background: url(../images/list-icon-1.png) no-repeat 0 0px;
    font-size: 18px;
  }
  .course-info #target .listTwo h4 {
    font-size: 45px;
  }
  .course-info #target .listTwo {
    padding: 30px 30px;
    margin: 30px 0 0 0;
  }
  .course-info #target .listTwo h4 {
    font-size: 40px;
  }
  .course-info #target .listThree h4 {
    font-size: 40px;
  }
  .course-info #target .listTwo {
    padding: 30px 30px;
    margin: 30px 0 0 0;
  }
  .course-info #target .listThree {
    padding: 30px 30px;
    margin: 30px 0 0 0;
  }
  .course-info #target .listTwo ul li {
    font-size: 19px;
  }
  .course-info #target .listThree ul li {
    font-size: 19px;
  }
  .course-info #target .listTwo ul li {
    font-size: 20px;
  }

 .courseFee-wrap {
    margin: 0 4% 3% 4%;
}
  .Coursefees h4 {
    font-size: 40px;
  }
  .Coursefees {
    padding: 30px 30px;
    margin:0;
  }
  .courseFee-wrap .Coursefees ul li {
    font-size: 19px;
  }

  /*____COURSE DETAILS______*/
  /*______trainning requirements start___*/
  .tainning-images .img-container .img p {
    font-size: 21px;
  }
  .about-sec-4 .heading p {
    font-size: 21px;
  }
  .tainning-images .all-trainning h1 {
    font-size: 54px;
  }
  .tainning-images .all-trainning p {
    font-size: 21px;
  }
  /*_____trainning requirements page end____*/
}
@media screen and (max-width: 1300px) {


  .banner-wrap .banner-text-wrap h5 {
    font-size: 23px;
  }
  
  .certificate-container .left-side h1 {
    font-size: 45px;
  }
  .certificate-container .left-side p {
    font-size: 17px;
  }
  .activity-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
  }
  .about-sec-3 .blog-container .left .content{
    padding: 25px;
  }
  .about-sec-4 .card-container .card .text {
    min-height: 180px;
}
  .activity-container .right, .activity-container .left {
    gap: 1em;
  }
  .home-search-wrap h2 {
    font-size: 46px;
  }
  .home-search-wrap p {
    font-size: 18px;
  }
  .home-why-chouse .right-wrap h2 {
    font-size: 46px;
  }
  .home-why-chouse .right-wrap .why-icon {
    padding: 16px;
    width: 75px;
  }
  .home-why-chouse .right-wrap .row {
    background: url(../images/home-bg-line.png) repeat-y 47px 23px;
  }
  .home-cartfied-wrap h2 {
    font-size: 46px;
  }
  .home-cartfied-wrap p {
    font-size: 18px;
  }
  .home-subject-wrap h2 {
    font-size: 46px;
  }
  .home-subject-wrap p {
    font-size: 18px;
  }
  .home-info-wrap .right-wrap h2 {
    font-size: 46px;
  }
  .home-info-wrap .right-wrap p {
    font-size: 18px;
  }
  .home-faq-wrap h3 {
    font-size: 46px;
  }
  .home-faq-wrap h6 {
    font-size: 18px;
  }
  .home-be-teacher .left-wrap {
    padding-left: 50px;
  }
  .home-be-teacher .left-wrap h3 {
    font-size: 40px;
  }
  .home-be-teacher .left-wrap p {
    font-size: 18px;
  }
  .home-new-wrap h2 {
    font-size: 46px;
  }
  .home-new-wrap p {
    font-size: 18px;
  }
  .home-new-wrap .flex-container .left-flex .top {
    font-size: 17px;
  }
  .footer-wrap ul {
    justify-content: center;
  }
  .about-banner {
    flex-direction: column-reverse;
  }
  .about-banner .right-img {
    width: 100%;
  }
  .about-banner .left-text {
    width: 100%;
    padding: 50px;
  }
  .contact-sec-1 .left-sec h1 {
    font-size: 46px;
  }
  .contact-sec-1 .left-sec p {
    font-size: 17px;
  }
  .contact-sec-1 .left-sec div {
    font-size: 17px;
  }
  .contact-sec-1 .right-sec .heading h1 {
    font-size: 46px;
  }
  .contact-sec-1 .right-sec .heading p {
    font-size: 17px;
  }
  .contact-sec-1 .right-sec .white-form input {
    font-size: 16px;
  }
  .contact-sec-1 .right-sec .white-form button {
    font-size: 17px;
  }
  .student-profile-wrap-2 p {
    padding: 0 25px;
  }
  /*____START OF STUDENT PROFILE PAGE____*/
  .select-batch-wrap {
    padding: 30px 40px;
  }
  .course-more-wrap {
    padding: 30px 40px;
  }
  .home-cartfied-slider .cartified-text-wrap{
    min-height: 265px;
  }
  .course-review-wrap  .row{
    row-gap: 6em;
  }
  .course-review-wrap  .row .col-sm-4{
    width: 48%;
  }
  /*____END OF STUDENT PROFILE PAGE_____*/
  /*___COURSE DETAILS___*/
  .course-deatils-banner {
    flex-direction: column-reverse;
  }
  .course-deatils-banner .left-wrap {
    width: 100%;
  }
  .course-deatils-banner .right-wrap {
    width: 100%;
  }
  .course-deatils-banner .right-wrap img {
    width: 100%;
  }
  .course-review-wrap {
    padding: 50px 50px;
  }
  /*__COURSE DETAILS____*/
  .tainning-images .img-container .img p {
    font-size: 18px;
  }
  .about-sec-4 .heading h1 {
    padding: 0;
  }
  .course-deatils-banner .left-wrap h3 {
    font-size: 40px;
    margin-top: 4%;
  }
  .course-deatils-banner .left-wrap{
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 989px) {

  .certificate-container .left-side {
    height: 350px;
    width: 350px;
  }
  .certificate-container .right-side{
    padding: 0 50px;
  }

  .home-info-wrap2{
    padding: 50px 0;
  }
  .home-info-wrap1{
    padding: 50px 0;
  }



  .certificate-container .right-side {
    width: 100%;
  }
  .home-cartfied-wrap .blue-circle {
    top: 30%;
  }
    .visit-site-bt{
            top: 3px;
    right: 30px;
    }
    .about-sec-3 .blog-container{
            flex-direction: column-reverse;
    }
    .about-sec-3 .blog-container .right{
        width: 100%;
    }
    .about-sec-3 .blog-container .left {
    width: 100%;
    margin-bottom: 30px;
}
.coursepage-wrap .course-thum li{
    width: 100%;
}
.coursepage-wrap {
        padding: 120px 50px 100px 50px;
    }
.about-sec-3 .blog-container .left .content {
    padding: 0 30px;
}
.certificate-container .left-side{
    margin-bottom: 50px;
}
.home-subject-wrap ul li{
    width: 23%;
}
  .about-sec-2 .main{
    flex-direction: column-reverse;
  } 
  .about-sec-2 .main .reviews{
      width: 100%;
      margin-top: 30px;
  }
  .about-sec-2 .main .img{
      width: 100%;
  }

  .home-info-wrap2 .right-wrap h2,.home-info-wrap1 .right-wrap h2 {
    font-size: 34px;
  }
  .home-info-wrap2 .right-wrap p,.home-info-wrap1 .right-wrap p {
    font-size: 16px;
 }

 .faq-container {
  flex-direction: column;
 }
 .lady {
  width: 100%;
 }
  #accordionExample {
    width: 100%;
    padding: 3% 5%;
  }
  
  .certificate-container{
     flex-direction: column;
  }
  .certificate-container .right-in-side{
      width: 90%;
      margin-top: 50px;
  }
  .certificate-container{
      padding: 50px 0;
  }
  .footer-wrap a img{
    width: 200px;
  }
    
  .navbar-collapse {
    padding-bottom: 3%;
  }
  .banner-wrap .desk-dis {
    display: none !important;
  }
  .banner-wrap .mob-dis {
    display: block !important;
  }
  .banner-wrap .navbar-brand img {
    width: 100%;
  }
  .navbar {
    padding: 2px 15px;
    top: 33px;
    width: 94%;
    left: 3%;
    border-radius: 25px;
  }
  .navbar .navbar-text {
    width: 100%;
  }
  .home-why-chouse .left-wrap {
    width: 100%;
  }
  .home-why-chouse .right-wrap {
    padding: 25px 50px;
    width: 100%;
  }
  .home-info-wrap {
    display: block;
  }
  .home-new-wrap .flex-container {
    flex-direction: column;
  }
  .home-new-wrap .flex-container .left-flex {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 4%;
  }
  .home-new-wrap .flex-container .right-flex {
    width: 100%;
  }
  .home-new-wrap {
    padding: 0 50px;
  }
  .home-info-wrap .left-wrap {
    width: 100%;
  }
  .home-info-wrap .right-wrap {
    padding: 25px 50px;
    width: 100%;
  }
  .home-be-teacher .left-wrap h3 {
    font-size: 20px;
  }
  .home-be-teacher .left-wrap p {
    font-size: 16px;
  }
  .home-search-wrap .search-bt {
    font-size: 20px;
  }
  .home-search-wrap .form-control {
    font-size: 20px;
  }
  .footer-wrap {
    text-align: center;
    flex-direction: column;
  }
  .footer-wrap div {
    width: 100%;
    margin-top: 25px;
  }
  .course-review-wrap {
    padding: 50px 25px;
  }
  .home-faq-wrap {
     padding: 0;
  }
  .coursepage-wrap .course-thum {
    grid-template-columns: 49% 49%;
    row-gap: 0;
  }
  .contact-sec-1 {
    padding-top: 150px;
  }

  .certificate-container .left-side-mob{
    margin-bottom: 0;
    width: 100%;
    height: auto;
    padding: 0 42px;
  }

}
@media screen and (max-width: 767px) {
  .mt-5 {
    margin-top: 3% !important;
  }
  /*___changed by surajit___*/
    #desk-video {
    display: none;
  }
  #mob-video {
    display: block;
  }
  .banner-wrap .owl-carousel {
    height: auto;
  }
  .banner-wrap .banner-text-wrap h2 {
    font-size: 19px;
    margin: 50% auto;
  }
  .navbar-collapse {
    padding-bottom: 6%;
  }
  .navbar .navbar-nav {
    gap: 0em;
  }
  .owl-carousel {
    height: auto;
  }
  .navbar .navbar-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1em;
  }
  .navbar .navbar-brand {
    width: 65px;
  }
  .banner-wrap .banner-text-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
  }
  .horizontal-scrolling-items {
    font-size: 17px;
  }
  .scrollingTextContainer {
    padding: 2.5% 0;
  }
  
  .certificate-container {
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding: 4% 0;
  }
  #menu2,#menu3 {
    display: flex;
    flex-direction: column;
  }
  #menu1 {
    display: flex;
    flex-direction: column;
  }
  .activity-container .left, .activity-container .right, .activity-container .middle {
    width: 100%;
  }
  #accordionExample {
    margin: 0;
  }
  .certificate-container .right-side {
    gap: 0.5em;
    grid-template-columns: 48% 48%;
    padding: 0 25px;
    width: 100%;
    margin-bottom: 40px;
  }
  .certificate-container .left-side h1 {
    font-size: 34px;
  }
  .footer-wrap a img {
        width: 140px;
    }
  .certificate-container .blue-circle {
    width: 40%;
    top: 10%;
  }
  .certificate-container .left-side{
    margin-bottom: -20px;
    height: auto;
    margin-top: 38px;
  }
  .certificate-container .right-in-side {
    z-index: 1;
    width: 100%;
    padding: 0 6%;
  }
  .certificate-container .right-in-side ul {
    display: grid;
    grid-template-columns: 100%;
  }
  .home-our-activities h2 {
    font-family: "Playfair Display", serif;
    font-size: 45px;
  }
  .home-our-activities h2 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
  }
  .activity-container {
    gap: 0.5em;
  }
  .home-cartfied-slider .owl-nav .owl-prev i, .home-cartfied-slider .owl-nav .owl-next i {
    color: white;
    font-size: 16px;
    height: 40px;
    width: 40px;
  }
  .course-info #target .course-info-pic{
    margin-top: 25px;
  }
  .home-info-wrap2 {
    flex-direction: column;
  }
  .home-info-wrap2 .left-wrap {
    width: 100%;
  }
  .home-info-wrap2 .right-wrap {
    width: 100%;
    padding: 5% ;
  }
  .home-info-wrap2 .right-wrap h2,.home-info-wrap1 .right-wrap h2 {
    font-size: 34px;
  }
  .home-info-wrap2 .right-wrap p {
    font-size: 17px;
  }
  .home-info-wrap1 {
    flex-direction: column;
  }
  .home-info-wrap1 .left-wrap {
    width: 100%;
  }
 .home-info-wrap1 .right-wrap {
  width: 100%;
  padding: 5%;
 }
 .home-info-wrap1 .right-wrap p, .home-info-wrap2 .right-wrap p {
  font-size: 17px;
 }
  .activity-container .left, .activity-container .right {
    gap: 0.5em;
  }
  .home-our-activities .button-container button {
    font-size: 17px;
    margin: 1.3%;
    padding: 1.5% 3%;
  }
  .home-subject-wrap ul li .overlay-content h3 {
    font-size: 15px;
  }
  .home-our-activities {
    padding: 5% 3.5%;
  }
  .home-new-wrap {
    padding: 25px;
  }
  .home-new-wrap h2 {
    font-size: 34px;
  }
  .home-new-wrap p {
    font-size: 18px;
  }
  .home-new-wrap .flex-container .left-flex .top {
    font-size: 18px;
  }
  .home-new-wrap .flex-container .left-flex ul li {
    font-size: 16px;
    margin-bottom: 1%;
  }
  /*___changed by surajit___*/
  .home-subject-wrap .blue-circle {
    width: 45%;
    right: -15%;
    top: 30%;
  }
  .banner-wrap .owl-carousel .owl-nav button.owl-next, .banner-wrap .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    font-size: 50px;
  }
  .home-search-wrap {
    padding: 50px 25px;
  }
  .home-search-wrap h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .home-search-wrap .form-control {
    margin-bottom: 20px;
  }
  .home-why-chouse .right-wrap {
    padding: 25px;
  }
  .home-why-chouse .right-wrap .row {
    background: none;
    text-align: center;
  }
  .home-why-chouse .right-wrap .why-icon {
    margin: 0 auto 20px auto;
  }
  .home-cartfied-wrap {
    padding: 25px;
  }
  .home-cartfied-wrap h2 {
    font-size: 34px;
  }
  .home-subject-wrap {
    padding: 25px;
  }
  .home-subject-wrap h2 {
    font-size: 34px;
  }
  .home-subject-wrap ul li {
    width: 31.2%;
  }
  .home-info-wrap .right-wrap {
    padding: 25px;
  }
  .home-info-wrap .right-wrap h2 {
    font-size: 34px;
  }
  .home-faq-wrap h6 {
    font-size: 17px;
    padding: 14px 25px;
    margin: 0;
  }
  .home-faq-wrap {
    padding: 0;
  }
  .home-faq-wrap h3 {
    font-size: 34px;
    padding: 0 25px;
  }
  .home-faq-wrap .accordion-button {
    font-size: 18px;
  }
  .home-be-teacher {
    display: block;
  }
  .home-be-teacher .left-wrap {
    width: 100%;
    padding: 25px;
    text-align: center;
  }
  .home-be-teacher .right-wrap {
    display: none;
  }
  .home-be-teacher .left-wrap .click-to-know-bt {
    margin: 0 auto;
  }
  .home-why-chouse .right-wrap h2 {
    font-size: 34px;
    text-align: center;
  }
  .footer-wrap ul {
    justify-content: center;
    gap: 0.5em;
  }
  .footer-end {
    font-size: 15px;
    padding: 3% 4%;
  }
  .about-banner .left-text .text h1 {
    font-size: 34px;
  }
  .about-banner .left-text .text p {
    font-size: 18px;
  }
  .about-banner .left-text {
    padding: 25px;
  }
  .about-sec-2 {
    padding: 25px;
  }
  .about-sec-2 .heading h1 {
    font-size: 34px;
  }
  .about-sec-2 .main .reviews .all-reviews .num div h1 {
        font-size: 38px;
    }
  .about-sec-2 .heading p {
    font-size: 18px;
  }
  .about-sec-2 .main {
    display: block;
  }
  .about-sec-2 .main .reviews {
    width: 100%;
  }
  .about-sec-2 .main .img {
    width: 100%;
    margin-top: 50px;
  }
  .about-sec-2 .main .reviews .all-reviews .num {
    display: block;
    text-align: center;
  }
  .about-sec-2 .main .reviews .all-reviews .num div {
    margin-bottom: 50px;
  }
  .about-sec-3 {
    padding: 25px;
  }
  .about-sec-3 .heading h1 {
    font-size: 34px;
  }
  .about-sec-3 .heading p {
    font-size: 18px;
  }
  .about-sec-3 .blog-container {
    display: block;
  }
  .about-sec-3 .blog-container .left {
    width: 100%;
    padding: 25px;
  }
  .about-sec-3 .blog-container .left .content {
    padding: 0;
  }
  .about-sec-3 .blog-container .right {
    width: 100%;
  }
  .about-sec-4 .heading h1 {
    font-size: 34px;
  }
  .about-sec-4 .owl-prev i, .about-sec-4 .owl-next i {
    color: white;
    font-size: 15px;
    height: 45px;
    width: 45px;
  }
  .about-sec-4 {
    padding: 25px;
  }
  .about-sec-2 .blue-circle {
    width: 34%;
    position: absolute;
    right: -10%;
    top: 11%;
  }
  /*______CONTACT PAGE START______*/
  .contact-sec-1 {
    flex-direction: column;
    /* padding-top: 40%; */
    gap: 1em;
    padding: 150px 25px 50px 25px;
  }
  .contact-sec-1 .left-sec {
    width: 100%;
  }
  .contact-sec-1 .left-sec h1 {
    font-size: 34px;
  }
  .contact-sec-1 .left-sec p {
    font-size: 18px;
  }
  .contact-sec-1 .left-sec div {
    font-size: 17px;
    margin-bottom: 3%;
  }
  .contact-sec-1 .right-sec {
    width: 100%;
  }
  .contact-sec-1 .right-sec .heading h1 {
    font-size: 34px;
    line-height: 1;
  }
  .contact-sec-1 .right-sec .heading p {
    font-size: 17px;
  }
  .contact-sec-1 .right-sec .white-form input {
    font-size: 17px;
  }
  .contact-sec-1 .right-sec .white-form button {
    font-size: 17px;
  }
  .contact-sec-1 .left-sec div i {
    margin-right: 1%;
  }
  /*_______CONTACT PAGE END_______*/
  /*_____START OF STUDENT PROFILE PAGE____*/
  .student-profile-wrap-2 .pro-pic {
    width: 260px;
    height: 260px;
  }
  .select-batch-wrap h3 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .course-more-wrap h3 {
    font-size: 34px;
  }
  .select-batch-wrap .batches-wrap .block-2 {
    margin-bottom: 2%;
  }
  .select-batch-wrap {
    padding: 30px 25px;
  }
  .course-more-wrap {
    padding: 30px 25px;
  }
  /*____END OF STUDENT PROFILE PAGE____*/
  /*___TEACHER PROFILE PAGE____*/
  .teacher-popup .modal-header h3 {
    font-size: 21px;
  }
  .teacher-popup .modal-header h4 {
    font-size: 20px;
  }
  .teacher-popup .modal-header h5 {
    font-size: 17px;
  }
  .teacher-popup .modal-header .cross-bt {
    font-size: 20px;
  }
  .teacher-popup .stu-pop-block .email-wrap {
    text-align: center;
    font-size: 20px;
  }
  /*____TEACHER PROFILE PAGE____*/
  /*____ALL COURSES___*/
  .courseFee-wrap .Coursefees ul li {
    width: 100%;
  }
  .Coursefees h4 {
    font-size: 34px;
  }
  .coursepage-wrap .course-thum li {
    float: left;
    width: 100%;
    margin: 0;
  }
  .coursepage-wrap {
    padding: 120px 25px 50px 25px;
    background: rgb(29, 18, 74);
    background: linear-gradient(180deg, #00aeef 0%, #00aeef 20%, rgb(255, 255, 255) 10%, rgb(255, 255, 255) 100%);
  }
  .coursepage-wrap h2 {
    /* font-family: "Playfair Display", serif; */
    font-size: 34px;
  }
  .coursepage-wrap .course-thum li a .cartified-text-wrap {
        min-height: auto;
    }
  .coursepage-wrap p {
    font-family: "PT Sans", sans-serif;
    font-size: 17px;
  }
  .coursepage-wrap .searh-box {
    width: 100%;
  }
  .coursepage-wrap .course-thum li a img {
    width: 100%;
  }
  .course-more-wrap .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot span {
    font-size: 27px;
    color: #ffff;
    height: 35px;
    width: 35px;
  }
  .course-review-wrap .row .col-sm-4 {
    width: 100%;
  }

  /*___ALL COURSES___*/
  /*___COURSE DETAILS___*/
  .course-deatils-banner .left-wrap h6 span {
    font-size: 18px;
    display: inline-block;
    margin-top: 3%;
    margin-left: 0;
  }
  .course-info .Show {
    font-size: 21px;
    width: 60px;
    height: 60px;
    margin: -30px auto 0 auto;
  }
  .course-review-wrap {
    padding: 25px 25px;
  }
  .course-review-wrap .review-box {
    padding: 0;
  }
  .course-review-wrap .review-box p {
    font-size: 18px;
    padding: 20px 20px;
  }
  .course-review-wrap .row {
    gap: 6em;
  }
  .course-review-wrap .dubble-shadow {
    margin: 0 0px;
  }
  .course-review-wrap h3 {
    font-size: 34px;
  }
  .course-deatils-banner .left-wrap {
    width: 100%;
    padding: 0 25px;
    padding-bottom: 6%;
  }
  .course-deatils-banner .left-wrap h3 {
    font-size: 34px;
    margin-top: 20px;
  }
  .course-deatils-banner .left-wrap h4 {
    font-family: "PT Sans", sans-serif;
    font-size: 17px;
  }
  .course-info #target h2 {
    font-size: 34px;
  }
  .course-info #target h3 {
    font-size: 17px;
  }
  .course-info #target {
    padding: 25px;
  }
  .course-info #target .listTwo ul li {
    font-size: 18px;
    width: 100%;
  }
  
  .course-info .Hide {
    font-size: 20px;
    width: 60px;
    height: 60px;
  }
  .course-info #target .listTwo h4 {
    font-size: 34px;
  }
  /*___COURSE DETAILS___*/
  /*______Traininng requirements page_____*/
  .tainning-images .img-container {
    display: flex;
    flex-direction: column;
  }
  .tainning-images .img-container .img {
    width: 100%;
  }
  .tainning-images .all-trainning h1 {
    font-size: 34px;
  }
  .tainning-images .img-container .img p {
    font-size: 18px;
  }
  .tainning-images .all-trainning p {
    font-size: 18px;
  }
  .about-sec-4 .heading p {
    font-size: 18px;
  }
  .about-sec-4 .heading h1 {
    padding: 0;
  }
  .listOne {
    padding-left: 0;
  }
  .course-info #target .listTwo h4 {
    font-size: 34px;
  }
  .course-info #target .listThree h4 {
    font-size: 34px;
  }
  .course-info #target .listThree h4 {
    font-size: 34px;
  }
  .course-info #target .listThree ul li {
    font-size: 18px;
    width: 100%;
  }
  .coursepage-wrap .course-thum {
    grid-template-columns: 100%;
    gap: 0;
  }
  /*___trainning requirements apge____*/
}
@media screen and (min-width: 768px) {
  #desk-video {
    display: block;
  }
  #mob-video {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: end;
    gap: 8%;
  }
  
}/*# sourceMappingURL=style.css.map */


/*Directly linked with js*/


.myAnimation {
  animation: anim 1s linear;
  }

  @keyframes anim {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
  }
  /*script is end*/
  .active_my_btn {
      background-color: #be9109;
      padding-bottom: 0px;
      transition: 0.6s;
  }
  #menu2,#menu3{
      display: none;
  }