  @font-face {
    font-family: "Montserrat";
    src: url('../fonts/Montserrat-Regular.ttf') format("truetype");
  }
   body{
    font-family: "Montserrat", sans-serif;
  }

 /*--------------Navigation Bar----------------------*/
.navbar-sec {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s;
  padding: 0px 40px;
  z-index: 10000;
}
.navbar-sec.sticky-nav {
  padding: 0px 40px;
  background: #fff !important; 
  height: 65px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.navbar-sec  .navbar-logo {
  position: relative;
 width: 20%;
  transition: 0.6s;
}
.navbar-logo img{
    width: 50%;
}
.navbar-sec .nav-ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:15px;
}
.navbar-sec  ul li {
  position: relative;
  list-style: none;
}
.navbar-sec ul li a {
  position: relative;
  margin: 0 15px;
  text-decoration: none;
  color: #000;
  /*font-weight: 800;*/
  transition: 0.6s;
}
.navbar-sec  ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: -2px;
  height: 2px;
  background-color: #ffd900;
  transition: all 300ms ease;
}
.navbar-sec  ul li a:hover:after {
  width: 100%;
  left: 0;
} 
.navbar-sec  .sticky-nav .navbar-logo,
.navbar-sec  .sticky-nav li a {
  color: #000;
 
}
.nav-login-btn{
    padding: 5px 20px;
    background: rgb(0, 102, 255);
    border-radius: 10px;
    text-decoration: none;
    color: #fff !important;
}

.dropdown {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.dropdown ul li{
  list-style-type: none;
  font-size: 13px;
  padding: 10px;
}
.dropdown-content {
  display: none;
  position: absolute;
  right:-56px;
  background-color: #fff;
  min-width: 210px;
  border-radius: 10px;
  padding: 10px ;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 9999;
  /*margin-top: 3px;*/
}
.dropdown-content li:hover{
  background: #dfdddd;
  color: rgb(0, 0, 173) ;
  border-radius: 5px;
}
.dropdown-content li:hover a{
  color: blue !important;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content li a i {
  width: 25px;
}
.login-btn button{
    border: none;
    cursor: pointer;
    padding: 3px 15px;
    border-radius: 5px;
    color: #fff;
    margin-right:10px;
    transform: scale(1);
    transition: 1s all;
     background-image: linear-gradient(to right, #3FA8F4 , #39B44A);
  }
  .login-btn button:focus {
    transform: scale(0.9);
    background-image: linear-gradient(to left, #06d122b8 , #39B44A);
  }
  .login-btn button:hover {
    transform: scale(0.9);
    background-image: linear-gradient(to right, #3FA8F4 , #1b9cf991);
  }
.login-btn button i{
 margin-left:5px;
}
.login-btn a img{
  width: 35px;
  border-radius: 50px;
}



/* --------------Mobile Menu---------- */
.ham-menu{
    display: none;
    position: fixed;
    width: 100%;
    z-index:9999;
}
.ham-menu.sticky-nav {
    /*padding: 0px 40px;*/
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
.menuToggle {
    display: none;
    position: relative;
    top: 25px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
  }
 
  .menuToggle a {
    text-decoration: none;
    color: #232323;
    transition: all 0.3s ease;
  }
 
  .menuToggle a:hover {
    color: tomato;
  }
 
  .menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
  }
 
  .menuToggle span {
    position: relative;
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    background: #0a0a0a;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  }
 
  .menuToggle span:first-child {
    transform-origin: 0% 0%;
  }
 
  .menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }
 
  .menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
  }
 
  .menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
 
  .menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }
 
  .menuToggle input:checked ~ .menuItem {
    transform: none;
  }
 
  .menuItem {
    position: absolute;
    width: 250px;
    top: 80px;
    padding: 30px 40px;
    background: #fff;
    border-radius: 10px;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    box-shadow: rgba(111, 100, 111, 0.2) 0px 7px 29px 0px;
  }
 
  .menuItem li {
    padding: 10px 0;
    font-size: 22px;
  }
 
  .menu--right .menuToggle {
    position: fixed;
    right: 0;
  }
 
  .menu--right .menuToggle input {
    right: 15px;
  }
 
  .menu--right .menuToggle span {
    right: 15px;
  }
 
  .menu--right .menuItem {
    right: 0;
    margin: -50px 0 0 0;
    transform: translate(100%, 0);
  }
 
  /* .menu--right .menuItem li a:hover {
    padding-left: 5px;
  } */
   /* reomove */
  @keyframes text-slide-in {
    0% {
      -webkit-transform: translateX(100px);
      -moz-transform: translateX(100px);
      -ms-transform: translateX(100px);
      -o-transform: translateX(100px);
      transform: translateX(100px);
    }
 
    100% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
    }
  }
 
 
@media only screen and (max-width: 991px){
    .menuToggle{
        display: block;
   
    }
    .navbar-sec{
        display: none;
    }
    .ham-menu{
        display: block;
        background-color: #fff;
        padding: 15px;
    }
    .ham-menu img{
        width: 15%;
    }
}
@media only screen and (max-width: 600px){
    .ham-menu img{
        width: 18%;
    }
 }
 
 
 .slider-4ps-explain{
     background-image:url('../img/slider-4ps.png');
     background-size:cover;
     background-position:center;
     background-repeat:no-repeat;
 }
 .slider-4ps-heading{
     text-align:center;
     margin-top:30px;
 }
 .slider-4ps-heading h3{
     margin-bottom:0;
     font-weight:bold;
     font-size:23px;
 }
 .slider-4ps-image img{
     width:100%;
 }
 


/*------------------- Carousel Header-----------------------*/
.b2-sider-sec{
  padding-top:50px;
}
.b2-side-content {
  width: 726px;
  padding-top: 60px;
  height: 415px;
  padding-left: 60px;
  padding-right: 245px;
  background-color: #e9e9e9;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.b2-side-content a{
 margin-top:30px;
}
.b2-side-content a:hover{
  color:#000;
}
.b2-side-content p {
   font-size: 16px;
}
.b2-side-outer-block {
   padding: 60px 0;
   padding-bottom: 0px;
} 
.b2-rt-bottam-img img{
   width: 27%;
   position: absolute;
   right: 0px;
   bottom: -8px;
}
.b2-rt-ctr-img img{
   width: 27%;
   position: absolute;
   left: 520px;
   bottom: -4px;
}
.b2-rt-side-img img{
   width: 72%;
   position: absolute;
   left: 407px;
   bottom: -55px;
}
.b2-side-content h1 {
  font-size: 21px;
  font-weight: bold;
  background: linear-gradient(to right, #3FA9F5,#39B54A);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.b2-side-content p {
 margin-bottom: 40px;
}
.desktop-line {
   border-top: 3px solid #699;
   width: 87%;
   margin: 25px 0;
   position: relative;
   z-index: 9;
}
.desktop-dot-img {
   position: absolute;
   width: 9%;
   top: 16px;
   left: 59px;
}
.b2-side-content a {
   text-decoration: none;
   color: #000;
   padding: 8px 12px;
   border-radius: 10px;
   font-size: 16px;
   border: 3px solid #699;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px)  {
.b2-rt-bottam-img img {
   width: 26%;
   position: absolute;
   right: 6px;
   bottom: -8px;
}
.b2-rt-ctr-img img {
   width: 27%;
   position: absolute;
   left: 496px;
   bottom: -4px;
}
.b2-rt-side-img img {
   width: 65%;
   position: absolute;
   left: 429px;
   bottom: -42px;
}  

.b2-side-content h1 {
   font-size: 21px;
   width: 100%;
   font-weight: bold;
}
.b2-side-content p {
   font-size: 15px;
   margin-bottom: 15px;
}
.b2-side-content {
   padding-top: 54px;
   height: 325px;
}
.desktop-line {
   border-top: 3px solid #699;
   width: 79%;
   margin: 14px 0;
   position: relative;
   z-index: 9;
} 
.desktop-dot-img {
   position: absolute;
   width: 8%;
   top: 16px;
   left: 64px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px)  {
   .b2-side-content p {
     font-size: 12px;
   }
   .b2-side-content h1 {
     /* font-size: 18px; */
     /* width: 90%; */
     font-size: 16px;
     width: 100%;
     
   }      
   .b2-rt-bottam-img img {
     /* width: 26%;
     position: absolute;
     right: 6px;
     bottom: -8px; */
     width: 24%;
     position: absolute;
     right: 6px;
     bottom: -8px;
   }
   .b2-rt-ctr-img img {
       width: 24%;
       position: absolute;
       left: 455px;
       bottom: -4px;
     /* width: 27%;
     position: absolute;
     left: 455px;
     bottom: -4px; */
   }
   .b2-rt-side-img img {
     /* width: 59%;
     position: absolute;
     left: 398px;
     bottom: -10px; */
     width: 63%;
     position: absolute;
     left: 377px;
     bottom: -32px;
   }  
   .b2-side-content {
       width: 632px;
       padding-top: 47px;
       height: 265px;
       /* padding-bottom: 27px; */
       padding-left: 43px;
       padding-right: 174px;
   }  
   .desktop-dot-img {
       position: absolute;
       width: 8%;
       top: 17px;
       left: 49px;
   } 
   .desktop-line {
       border-top: 3px solid #699;
       width: 58%;
       margin: 13px 0;
       position: relative;
       z-index: 9;
   }
   .b2-side-content a {
       text-decoration: none;
       color: #000;
       padding: 8px 13px;
       border-radius: 10px;
       font-size: 17px;
       border: 3px solid #699;
   }
   
   .b2-side-content p {
       /* font-size: 16px; */
       margin-bottom: 15px;
   }
}
.dot-img {
   position: absolute;
   width: 50%;
   top: -20px;
   right: -165px;
}

  /* tab-view */
  .tab-side-content {
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 30px 20px;
    background: #e9e9e9;
    margin: 0 28px;
}
.tab-line {
    border-top: 3px solid #699;
    width: 50%;
    margin: 25px auto;
    position: relative;
}
.tab-side-content h1 {
    font-size: 25px;
    font-weight: 700;
    position: relative;
}
.tab-side-content p {
    font-size: 20px;
    font-weight: 400;
    padding: 0 40px;
    position: relative;
}
.tab-side-content a {
    text-decoration: none;
    color: #fff;
    background: #065ddb;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 17px;
}

.tab-b2-rt-side-img img {
    position: absolute;
    width: 100%;
}
.tab-b2-rt-bottam-img img {
    width: 36%;
    position: absolute;
    right: 10px;
    /* bottom: 45px; */
    top: 85px;
}
.tab-b2-lft-bottam-img img {
    width: 36%;
position: absolute;
left: 10px;
/* bottom: 45px; */
top: 85px;
}
@media (max-width:991px) {
    .b2-side-outer-block {
        display: none;
    }
    .tab-b2-side-outer-block {
        display: block;
    }
}
@media (min-width:992px) {
    .b2-side-outer-block {
        display: block;
    }
    .tab-b2-side-outer-block {
        display: none;
    }
}

@media (max-width:767px) {
    .tab-b2-rt-bottam-img img {
        width: 38%;
    }
    .tab-b2-lft-bottam-img img {
        width: 38%;
    }
    .dot-img {
        top: -10px;
        right: -115px;
        width: 55%;
    }
}
@media (max-width: 547px){
     .dot-img {
      top: -4px;
      right: -73px;
      width: 79%;
   }
}
/* dot & img animation */
.b2-rt-side-img img {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.b2-rt-side-img img.active {
  opacity: 1;
}
.b2-slider-dots {
position: absolute;
bottom: 15px;
/* left: 47%; add one banner */
left: 48%; 
/* left: 48.7%; dec close */
/* transform: translateX(-50%); */
display: flex;
}

.b2-slider-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #fff;
margin: 0 5px;
cursor: pointer;
}

.b2-slider-dot.active {
background-color: #aaaaaa;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
.b2-slider-dots {
bottom: 15px;
/* left: 585px;  add one banner */
left: 605px;
/* left: 602px; DEC close */
}
.b2-slider-dot {
    margin: 0 3px;
    width:10px;
    height:10px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.b2-slider-dots {
  bottom: 7px; 
  /* bottom: 12px; Dec close*/
  /* left: 516px; add one banner */
  left: 530px; 
  /* left: 530px; Dec close */
}
.b2-slider-dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
}
}
.tab-sider-img-part {
position: relative;
}
/* tab */
.tab-b2-rt-side-img img {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.tab-b2-rt-side-img img.active {
  opacity: 1;
}

 /* ---------------------Categories--------------------- */
 .categories {
  padding-bottom: 30px;
}
.categories-block {
  text-align: center;
}
.categories-subtitle {
  font-size: 14px;
  line-height: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  display: inline-block;
  background-color: #2f57ef21;
  color: #2f57ef;
}
.categories-title , .course-title {
  margin-top: 40px;
  font-weight: bold;
  margin: 0 20px;
  margin-bottom: 30px;
  color: #41464bdb;
  font-size:25px;
}
.categories-card {
  color: #777;
  border-radius: 10px;
  padding: 30px 10px;
  text-align: center;
}
.cat-card-learn {
  color: #ffffff;
  /*background: #6c757d;*/
   background-color: #0936ff;
  padding: 5px 10px;
  border-radius: 5px;
  position: relative; 
  text-decoration:none;
  border:none;
}
.cat-card-learn:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: -2px;
  height: 2px;
  background-color: #ffd900;
  transition: all 300ms ease;
}
.cat-card-learn:hover:after {
  width: 100%;
  left: 0;
}
.categories-card:hover i{
  color: #fff;
}
.categories-card:hover .cat-card-learn{
  color: #fff;
}
.categories-card:hover .cat-card-arrow {
  opacity: 1;
}
.cat-card-icon {
  border-radius: 100%;
}
.cat-card-icon img {
  width: 50%;
  border-radius: 100%;
}
.cat-card-title {
  margin: 5px 0px;
  font-weight: 600;
}
.cat-card-content p{
 margin-bottom: unset;
}
.cat-card-content a{
  text-decoration: unset;
  color: #fff;
  padding: 20px 10px;
 }
 .cat-card-content{
  margin-bottom: 20px;
 }
.categories-cards {
  display: block;
  transition: 0.3s;
  height: 95%;
  background-color: #ffffff;
  border-radius: 10px;
}
.cater-block-top a{
    text-decoration:none;
    color:#777;
}
.categories-cards:hover {
  transform: translate3d(0, -10px, 0);
  box-shadow: 0px 6px 34px rgba(177, 177, 177, 0.41);
  border-radius: 10px;
}
.categories-cards {
  text-decoration: none;
}
.cat-card-arrow {
  margin-left: 10px;
  color: #fff;
}
.cat-card-arrow:hover{
  color: #fff;
}
.cater-block-gap {
  row-gap: 2rem;
}
.cater-block-top {
  margin-top: 20px!important;
}
.categories-title h1 {
  font-weight: 800;
}
.cat-card-img {
  transition: all 0.7s;
}
.categories-card:hover .cat-card-img {
  transform: scale(1.3) rotate(5deg);
  transform: rotateZ(360deg); 
}
@media (max-width:575px) {
  .categories-cards {
    width: 300px;
    margin: 0 auto;
}
}

/*----------------Collage Image---------------*/
.collage-img{
margin-top: 20px;
margin-bottom: 40px;
background:#fefefe;
}
.collage-image{
  text-align:center;
}
.collage-image img{
  width:100%;
}

/*----------------About Section---------------*/
.b2-about-sec {
  padding: 25px 0 60px;
}
.b2-about-content {
  /* padding: 35px; */
  display: flex;
  align-items: center;
  padding: 0 20px;
  /* padding: 28px 35px; */
  border-radius: 30px;
  height: 160px;
  width: 300%;
}
.b2-content-vision {
  /* background-color: #eee6fe; */
  background-color: rgba(128, 86, 255, 0.15);
}
.b2-content-what {
  background-color: #fceced;
}
.b2-content-why {
  background-color: #daf6f7;
}
.b2-content-how {
  background-color: #fdf5e0;
}
.b2-about-img img {
  /* margin-left: 30px; */
  width:100px;
}
.b2-about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 50%; */
  /* width: 75%; */
}
@media (max-width:1199px){
  .b2-about-img {
  width: 50%;
}
}
.b2-about-content {
  font-size: 15px;
}
.b2-about-content p {
 width: 100%;
}
.b2-gap {
  align-items: center;
  row-gap: 4rem;
  justify-content:space-evenly;
 }
 .b2-about-content p { 
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 25px;
    margin-left: 25px;
}
@media (max-width:991px){
  .b2-about-content p {
      font-size: 12px;
      line-height: unset;
      margin-left: unset;
  }
  .b2-about-content { 
      display: flex;
      align-items: center;
      padding: 0px 34px;
  }
  .b2-about-img {
  width: 90%;
 }
  .categories {
  margin-top:50%;
}
}
@media (max-width:767px){
 .b2-gap .col-sm-5 {
     width: 100%!important;
 }
 .b2-about-content { 
    height: unset;
    padding: 10px 27px;
 }
 .b2-gap {
  row-gap: 1.5rem;
 }
 .b2-about-img img {
  width: 60%;
 }
 
}
@media (max-width:600px){
 .categories {
  margin-top:55%;
}
}
@media (max-width:575px){
 .b2-about-content { 
    height: unset;
 }
 .b2-about-content p { 
    margin-bottom: 0px;
 }
 .mob-align-b2 {
  padding: 0 20px;
 }
 .b2-gap {
  row-gap: 2rem;
 }
}
.b2-about-outer-block {
position: relative;
}
.get-content  {
position: absolute;
top: 44%;
left: 611px;
}
.get-content {
position: absolute;
top: 41%;
left: 524px;
}
.get-content p {
text-align: center;
margin-bottom: 0;
font-weight: 600;
color: #fff;
}
.get-to-know-block img {   
position: absolute;
}
@media only screen and (min-width: 768px) and (max-width: 991px)  {
.get-to-know-block img {
top: 25%;
left: 37%;
width: 25%;
}
.get-content {
  top: 41%;
  left: 310px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .b2-sider-sec {
    padding: 60px 0 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px)  {
.get-to-know-block img {
top: 23%;
left: 38%;
width: 22%;
}
.get-content {
  top: 43%;
  left: 422px;
}
}
@media only screen and (min-width: 1200px) {
.get-to-know-block img {
top: 21%;
left: 41%;
width: 18%;
}
.b2-img-left-align {
  margin-left: 10px;
}
.b2-img-right-align {
  margin-right: 10px;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1399px)  {
.get-content {
  top: 41%;
  left: 522px;
  font-weight: 700;
}
}
@media only screen and (min-width: 1400px) {
.get-content {
  top: 44%;
  left: 611px;
}        
}
@media only screen and (max-width: 767px) {
.get-to-know-block img {
display: none;
}
.get-content {
  display: none;
}
}
.b2-abt-img-align {
 display: flex;
 flex-direction: column;
 align-items: center;
}
.b2-abt-img-align p {
 font-weight: 600;
 color: #696969;    
}
/* -------------- */
@media only screen and (min-width: 991px) and (max-width: 1199px)  {
.b2-abt-img-align p {
font-size: 13px;  
}
.b2-about-img img {
  width: 160%;
}
.b2-img-left-align {
  margin-left: 10px;
}
.b2-img-right-align {
  margin-right: 10px;
}  
}
@media only screen and (min-width: 768px) and (max-width: 992px)  {
.b2-abt-img-align p {
font-size: 14px;  
}
.b2-about-img img {
  width: 140%;
}
.b2-img-left-align {
  margin-left: 7px;
}
.b2-img-right-align {
  margin-right: 7px;
}  
.b2-sider-sec {
  padding: 80px 0 0;
}
}
@media (max-width:767px) {
  .tab-side-content p {
    font-size: 17px;
    padding: 0px;
}
.tab-b2-rt-bottam-img img {
  right: 15px;
  top: 73px;
}
.tab-b2-lft-bottam-img img {
  left: 15px;
  top: 73px;
}
}
@media (max-width:450px) {
.tab-b2-rt-bottam-img img {
  top: 58px;
}
.tab-b2-lft-bottam-img img {
  top: 58px;
}
.tab-side-content h1 {
  font-size: 18px;
}
.tab-side-content p {
  font-size: 13px;
}
}
@media only screen and (max-width: 767px) {
.b2-sider-sec {
    padding-top: 74px;
}
.menu--right .menuToggle {
    top: 18px;
}
}
@media only screen and (max-width: 600px){
    .menuToggle span {
    width: 27px;
    height: 3px;
    margin-bottom: 4px;
   }
 }
@media only screen and (max-width: 475px){
    .ham-menu img{
        width: 20%;
    }
 }
 
 
/*-------------- New Our Course ----------------*/
.our-course-sec{
    margin-bottom:50px;
}
.our-course-sec .our-course-head{
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.phy-course{
  border: 1px solid #699;
  outline: 1px solid #699;
  outline-offset: -5px;
  border-radius: 20px;
  padding: 20px 20px;
  height: 100%;
  position:relative;
  min-height:380px;
  box-shadow: inset 0 0 0 1px #699;
}
  
.phy-course h3{
  font-size: 17px;
  font-weight: 900;
}
.phy-course p{
  font-size: 17px;
  font-weight: bold;
}
.phy-course ul{
  list-style-type: none;
  font-size: 13px;
  padding: 0;
  line-height: 2.5;
  color:#000000b3;
  margin-bottom:15px;
}
.phy-course ul li{
  line-height:1.6;
  margin-bottom:5px;
  color:#000;
}
.phy-learn-btn{
  margin-top:auto;
  text-align:center;
  position:absolute;
  bottom:10px;
  left:30%;
}
.phy-learn-btn .phy-input{
  border: 3px solid #699;
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 30px;
  color:#000;
  font-size:15px;
}
.phy-learn-btn .phy-input:hover {
    background-color: #fff;
    color: #000;
    /*box-shadow: 0px 0px 10px #8056FF;*/
    cursor: pointer;
    border: 3px solid #699;
}

@media (max-width:991px) {
  .phy-course{
    padding: 15px 50px;
  }
  .phy-learn-btn{
    position:unset;
  }
  .phy-course h3 {
      font-size:20px;
  }
  .phy-course ul li {
      font-size:16px;
  }
}

/*------------ Problem Solving ------------*/

.ps-course{
  border: 1px solid #699;
  outline:1px solid #699;
  outline-offset: -5px;
  border-radius: 20px;
  padding: 20px 20px;
  height: 100%;
  position:relative;
  box-shadow: inset 0 0 0 1px #699;
}
.ps-course h3{
  font-size: 17px;
  font-weight: 900;
}
.ps-course p{
  font-size: 18px;
  font-weight: bold;
}
.ps-course ul{
  list-style-type: none;
  font-size: 13px;
  padding: 0;
  line-height: 2.5;
  color:#000000b3;
  margin-bottom:50px;
}
.ps-course ul li{
  line-height:1.6;
  margin-bottom:5px;
  color:#000;
}
.ps-learn-btn{
  margin-top:auto;
  text-align:center;
  position:absolute;
  bottom:10px;
  left:30%;
}
.ps-learn-btn .ps-input{
  border: 3px solid #699;
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 30px;
  color:#000;
  font-size:15px;
}
.ps-learn-btn .ps-input:hover {
    background-color: #fff;
    color: #000;
    /*box-shadow: 0px 0px 10px #D78080;*/
    cursor: pointer;
    /*border: 3px solid #fff;*/
    border: 3px solid #699;
}
@media (max-width:991px) {
  .ps-course{
    padding: 15px 50px;
    /*margin-top:20px;*/
  }
  .ps-wrapper{
    margin-top:40px;
  }
  .ps-learn-btn{
    position:unset;
  }
  .ps-course h3 {
      font-size:20px;
  }
  .ps-course ul li {
      font-size:16px;
  }
  .ps-tab{
      margin-top:20px;
      margin-bottom:20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px)  {
.phy-course {
    min-height: 440px;
}
}

.philan-highlight{
  /*color:#DEA331;*/
  color:#000;
}
.phy-highlight{
    /*color:#8056FF;*/
    color:#000;
}
.ps-highlight{
  /*color:#D78080;*/
  color:#000;
}
.philo-highlight{
    /*color:#07ADAA;*/
    color:#000;
}




/*-----------------Our course--------------------*/
.Certificate-course-img-block img {
  transition: transform .2s;
}
 .Certificate-course-img-block img:hover {
    transform: scale(1.1);
} 

.Certificate-course-sec {
  /* background-color: #f4f4f4; */
  /* background-color: #fce9ebba; */
  padding: 30px 0;
}
.course-gap{
  margin:0;
  justify-content: center;
}
.our-course-header h2{
  font-weight: 700;
  color: #5e5c5c;
  text-align: center;
  margin-bottom: 20px;
  font-size:25px;
}
.v1-line {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 30px;
}
.v1-line hr {
  color: #000;
}
      .Certificate-course-img-block{
          /* padding: 0 20px; */
          width: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
      }
      .Certificate-course-img-block img {
          width: 200px;
          /* box-shadow:0px 10px 13px -7px #a8a4a4; */
          /* border:10px solid grey;*/
          /* border-radius: 50%;  */
      }
      .Certificate-course-block{
          display: flex;
      }
      .Certificate-course-content-block {
          /* width: 50%;   */
          display: flex;
          align-items: center;
          justify-content: center;
          margin-left: 10px;
          margin-top:50px;
      }
      .Certificate-course-content h3{
          font-size:16px;
          font-weight:bold;
      }
      .Certificate-course-content p{
          font-size:15px;
      }
     .lesson-link {
          padding: 5px 15px;
          text-decoration: none;
          color: #fff;
          background-color: blue;
          border-radius: 8px;
          border:none;
      }
      .lesson-link:hover {
          color: #fff;
      }
      @media(max-width:500px){
          .Certificate-course-block {
             flex-direction: column;
             align-items: center;
             text-align:center;
             margin-top:10px;
          }
          .Certificate-course-img-block {
              width: unset;
          }
          .Certificate-course-content-block {
              width: unset;
              margin-top:unset;
          }
      }



      @media only screen and (max-width: 991px) {
        .v1-line{
          display:none;
        }
      }


/*-----------------Footer--------------------*/
 .b2of-footer {
  padding: 25px 40px;
  background-color: black;
  display: flex;
  justify-content: space-between;
  row-gap: 1rem;
  flex-wrap: wrap;
}  
.footer-img-icon-block {
color: #fff;
display: flex;
column-gap: 2rem;
flex-wrap: wrap;
}
.footer-img-icon-block p {
font-size: 23px;
margin-bottom: 0;
}
.footer-icon-block {
display: flex;
gap: 1rem;
align-items: center;
}
.footer-icon-block a {
color: #fff;
}
.footer-copyright-block {
color: #fff;
display: flex;
align-items: center;
}
.footer-copyright-block p {
margin-bottom: 0;
}



/*====================================================*/
  .modal-login {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
  /*border-radius: 5px;*/
  text-align: center;
  z-index:20;
}

.shown {
  display: block;
}

.b2of-login {
background: url(../img/login-bg-img.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-radius:10px;
}
.login-inner-part {
display: flex;
position: relative;
padding: 50px;
height: 100%;
padding-left:0px;
}

.login-img-part {
color: #00879e;
/* width: 100%; */
}
.login-img-part h1 {
margin-bottom: 0rem;
}
.login-img-part span {
font-size: 28px;
font-weight: 500;
}
.login-img-part img {
width: 430px;
position: relative;
left: 12%;
z-index: 9;
}
.login-form {
border-radius: 20px;
width: 450px;
padding: 20px 60px;
background: rgb(255, 255, 255, 0.6)
}

.login-form input {
width: 100%;
opacity: 1;
margin-bottom: 10px;
border: none;
height: 50px;
}

.login-form input:focus{
outline: none;
}
.login-bottom input {
width: 15px;
height: 15px;
margin-bottom: 20px;
}
.login-remember{
    display:flex;
    align-items:center;
}
.login-bottom a {
float: right;
}
.login-bttn {
opacity: 1;
border: none;
background: #6fced8 !important;
color: #fff;
padding: 10px !important;
border-radius: 5px;
text-decoration: none;
width:100%;
}

.login-register {
text-align: center;
}
.login-register-btn {
border: none;
background: #00879e;
color: #fff;
padding: 10px 50px;
border-radius: 5px;
text-decoration: none;
}
.login-register-btn a:hover{
    color:#fff;
}
.input-group {
position: relative;
}
.login-form-inner h1{
color: #00879e;
}
.input-group .input-icon {
position: absolute;
left: 0px;
top: 40%;
transform: translateY(-50%);
color: #fff; 
background: #6fced8;
padding: 15px;
font-size: 18px;
z-index: 9;
}


.login-form-inner input[type="text"], 
.login-form-inner input[type="password"] {
padding-left: 60px; 
}
.close-icon{
  position: absolute;
  right: 30px;
  font-size: 30px;
  font-weight: bold;
}

@media only screen and (max-width: 991px){

.login-inner-part{
  display: block;
  padding-left:50px;
}
.login-img-part img{
left: 0%;
}
.login-form input{
  position: unset !important;
}
} 


  #overlay , #overlay1 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
  z-index: 10;
}
 
/*.modal-login.shown + #overlay {*/
/*  display: block;*/
/*}*/

@media only screen and (max-width: 575px){
    .login-form {
     width: unset; 
     padding: 20px;
    }
}


/*   WHO ARE WE? START CSS  */

.who-are-headline {
    font-weight: bold;
    margin: 0 20px;
    margin-bottom: 20px;
    color: #41464bdb;
    font-size: 20px;
}
.rowgap {
  row-gap: 1rem;
}
.b2o-who-are-4ps-img img {
  width: 25%;
}
.b2o-who-are-4ps-img img:hover {
  transform: rotateZ(360deg);
}
.b2o-who-are-4ps-img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  margin: 0 0 20px;
}
.b2o-learn-btn-more {
  color: #000;
  padding: 8px 15px;
  border-radius: 25px;
  position: relative;
  text-decoration: none;
  border: 2px solid #699;
  transition: all 0.2s ease;
  font-size: 15px;
}
/*.b2o-learn-btn-philan-color {*/
/*  background-color: #DEA331;*/
/*}*/
/*.b2o-learn-btn-philoso-color {*/
/*  background-color: #07ADAA;*/
/*}*/
/*.b2o-learn-btn-physical-color {*/
/*  background-color: #8056FF;*/
/*}*/
/*.b2o-learn-btn-problem-color {*/
/*  background-color: #D78080;*/
/*}*/
.b2o-learn-btn-philan-color:hover {
  /*background-color: #DEA331;*/
  color: #000;
  /*box-shadow: 0px 0px 10px #DEA331;*/
  cursor: pointer;
  transform: translate(2px, 2px);
  /*border: 3px solid #fff;*/
  border: 2px solid #699;
}
.b2o-learn-btn-philoso-color:hover {
  /*background-color: #07ADAA;*/
  color: #000;
  /*box-shadow: 0px 0px 10px #07ADAA;*/
  cursor: pointer;
  transform: translate(2px, 2px);
  /*border: 3px solid #fff;*/
  border: 2px solid #699;
}
.b2o-learn-btn-physical-color:hover {
  /*background-color: #8056FF;*/
  color: #000;
  /*box-shadow: 0px 0px 10px #8056FF;*/
  cursor: pointer;
  transform: translate(2px, 2px);
  /*border: 3px solid #fff;*/
  border: 2px solid #699;
}
.b2o-learn-btn-problem-color:hover {
  /*background-color: #D78080;*/
  color: #000;
  /*box-shadow: 0px 0px 10px #D78080;*/
  cursor: pointer;
  /* transform: translate(2px, 2px); */
  /*border: 3px solid #fff;*/
  /* border: 3px solid #699; */
}
/* .b2o-learn-btn-outer {
  background: #ddd;
  padding: 10px 6px;
  border-radius: 100px;
  transition: all 0.2s ease; 
} */
.b2o-learn-btn-block p{
  /* margin: 10px 0px; */
  font-weight: 600;
  font-size: 18px;
}
.b2o-learn-btn-block{
    width:40%;
}
@media only screen and (max-width: 991px) {
  .b2o-learn-btn-block{
    width:unset;
  }
}
/* .b2o-learn-btn-more:hover {
  background-color: #7e97fa;
  color: #000;
  box-shadow: 0px 6px 34px #0936ff;
  cursor: pointer;
  transform: translate(6px, 6px)
} */
.b2o-4ps-learn-content {
    text-align: center;
    padding: 30px;
    box-shadow: 0px 6px 34px rgba(177, 177, 177, 0.41);
    width: 80%;
    margin: 0 auto;
    border-radius: 15px;
    min-height: 245px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.b2o-4ps-content-philan-color:hover {
    transform: translate3d(0, -10px, 0);
    /*box-shadow: 0px 0px 15px #DEA331;*/
}
.b2o-4ps-content-philoso-color:hover {
  transform: translate3d(0, -10px, 0);
  /*box-shadow: 0px 0px 15px #07ADAA;*/
}
.b2o-4ps-content-physical-color:hover {
  transform: translate3d(0, -10px, 0);
  /*box-shadow: 0px 0px 15px #8056FF;*/
}
.b2o-4ps-content-problem-color:hover {
  transform: translate3d(0, -10px, 0);
  /*box-shadow: 0px 0px 15px #D78080;*/
}
.b2o-4ps-learn-content p {
    margin-bottom: 0;
    font-size: 15px;
}

.B2o-who-are-we {
  padding-bottom: 30px;
}
@media (max-width:991px){
  .B2o-who-are-we {
  margin-top:50%;
}

.4ps-philo-extra{
    margin-left:-30px !important;
}
.4ps-philan-extra{
    margin-left:-40px !important;
}
}
@media (max-width:600px){
  .B2o-who-are-we {
   margin-top:55%;
 }
 .4ps-philo-extra{
    margin-left:-30px !important;
}
 .4ps-philan-extra{
    margin-left:-40px !important;
}
 }
.what-are-we-content ,.why-are-we-content {
   background: linear-gradient(to left,#fff, #75cbdf4a);
   padding:10px;
   border-radius:10px;
   font-size:15px;
}
 @media (max-width:575px){
  .what-are-we-content ,.why-are-we-content {
    background: #75cbdf4a;text-align: center;
  }
 }
 
 /*--------------- Our subscription ------------*/
.ps-subscription{
  padding: 20px 10px;
  margin-bottom: 20px;
  background-color:#fce9ebba;
}
.ps-sub-head h3{
  text-align:center;
  font-size:22px;
}
.vrline-learn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90%;
  padding-top: 10px;
  flex-direction: row;
}
.vr-fade {
  background-color: #faf7ff;
  background-image: linear-gradient(197deg, #faf7ff 0%, #e398a1 55%, #faf7ff 100%);
  width: 20%;
  height: 3px;
}
.ps-subscription .ps-subscribe {
  display:flex;
  align-items:center;
  justify-content: center;
}
.ps-sub-img{
  position: relative;
  display: flex;
  right: 160px;
}
.ps-subscribe img{
  width:250px;
  z-index:9;
}
.ps-sub-content{
  background: #fff;
  padding: 20px;
  padding-left: 140px;
  height: 190px;
  width: 30%;
  border-right: 5px solid #e398a1;
  position: absolute;
  margin-left: 50px;
}
.ps-sub-content h3{
  font-size:15px;
  font-weight:bold;
}
.ps-sub-content p{
  font-size:13px;
}
.ps-sub-content .ps-sub-input{
    border-radius: 50px;
    border: none;
    background-color: #D78080;
    color:#fff;
    font-size:12px;
    padding:7px 12px;
}


/* OUR COURSE START*/
.controls {
  margin-top: 30px;
  text-align: center;
}
.controls button {
  border: none;
  color: #000;
  background: none;
}
.course-out-sec {
  background: rgb(186, 186, 186);
  padding: 50px;
  padding-bottom: 20px;
  margin-top: 100px;
}
.dot-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.dot-controls span {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  cursor: pointer;
}

.dot-controls span.active {
  background-color: #333;
}
/* OUR COURSE END*/



.what-head, .why-head{
    font-size:22px;
    background: linear-gradient(to right, #3FA9F5,#39B54A);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-weight: 1000;
}

  .city-lined-heading {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 5% auto;
}
.city-lined-heading h2 {
   padding: 0 20px;
   text-align:center;
  font-size:15px;
}
.city-lined-heading span {
  font-size:22px;
  background: linear-gradient(to right, #3FA9F5,#39B54A);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-weight: 1000;
  font-weight:bold;
}
.city-lined-heading::before,
.city-lined-heading::after {
    content: "";
    flex: 1;
    border-bottom: 3px solid #22a7c64a;
    margin: 0 20px;
}
.quotes-content-block {
    border-radius: 10px;padding: 50px;text-align: center;background-color: #eeeeee;width: 90%;margin: 65px auto;position: relative;
}
.next-generations-of-thinkers {
    font-style: italic;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
}
.top-quotes {
    position: absolute;top:-15px;left:0;
}
.bottom-quotes {
    position: absolute;bottom:-15px;right:0;
}
.double-quotes-i {
    font-size: 40px;background: linear-gradient(90deg, rgba(63, 169, 245, 0.8) 0%, rgba(58, 181, 75, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
