  @font-face {
    font-family: "Montserrat";
    src: url('../fonts/Montserrat-Medium.ttf') format("truetype");
  }
  @font-face {
    font-family: "Montserrat";
    src: url('../fonts/Montserrat-Regular.ttf') format("truetype");
  }
   body{
    font-family:"Montserrat", sans-serif !important;
  }


 /*--------------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: 99;
}
.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;
  }
  @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%;
    }
    .menuToggle span {
        width: 27px;
        height: 3px;
        margin-bottom: 4px;
    }
 }
 
 @media only screen and (max-width: 767px){
    .menu--right .menuToggle {
      top: 18px;
    }
 } 



 /* -------------Course list section-------------------- */
 .course-top-block{
  padding-top:80px;
 }
 .course-top-left-img{
  width: 80%;
  margin: 0 auto;
 }
 .course-top-left-img img {
  width: 100%;
 }
 .course-content-bg{
  background-image: url(../img/content-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    height:100%;
}
.course-top-right-content {
  padding: 80px 140px;
  padding-left: 50px;
}
 .course-top-right-content h4{
  font-weight:bold;
  font-size:22px;
 }
 .course-top-right-content p{
    font-size:15px;
    color:#6b6969;
    margin-bottom:8px;
    margin-right: 25px;
}
 .course-review i{
  color: #f58c21;
  font-size: 15px;
 }
 .course-review span{
  margin-left: 5px;
  font-weight: 600;
  font-size:15px;
  color:#808080;
 }
 /* .Subscribe {
  margin-top: 20px;
  padding: 10px 20px;
  border:2px solid #699 !important;
  border-radius: 10px;
  color: #000;
  text-decoration: unset;
  border:none;
  cursor:default;
 } */
 .cour-icon {
  width: 30px;
  color: #808080;
 }
 
 .cour-circle-icon {
  width: 30px;
  color: #009145;
 }
 @media (max-width:1366px){
  .course-top-left-img {
    width: 90%;
 }
 .course-top-right-content {
     margin: 20px 0;
     padding: 80px 59px;
 }
 }
 @media (max-width: 1200px) {
  .course-top-left-img {
      width: 100%;
  }
 }
 @media (max-width:991px) {
  .course-content-bg {
    background-size: cover;
}
.course-top-left-img img {
  width: 100%;
}
 }

 @media (max-width:767px) {
 .course-top-block{
  padding-top:100px;
 }
 .what-in-store {
  margin: 40px 40px !important;
}
}

@media (max-width: 575px) {
  .course-top-right-content {
    padding: 80px 35px;
  }
  .course-top-right-content p{
    margin-right: 0px;
  }
}
 /*---------- What section ---------*/
 
.tik-subscribed {
  display: flex;
  align-items: center;
  margin-bottom:0 !important;
}
.start-course{
   background-color: #009145;
    color: #fff;
    border: none;
    padding: 10px 10px;
    border-radius: 5px;
    margin-top: 15px;
    font-size:13px;
}
.what-in-store {
margin: 30px 100px;
padding: 30px;
border-radius: 20px;
text-align: center;
box-shadow: inset 0px 0px 10px #adb5bd;
}
.what-in-store h3 {
color: #D40059;
font-size:18px;
font-weight:900;
margin-bottom:20px;
}
.what-in-store p {
  margin-bottom:0.7rem;
  font-size:15px;
}
.v1-line {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top:30px;
} 
.v1-line hr{
  color: #bd698a;
}
.how-sec{
  background-image:url('../img/How-img.png');
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  text-align:center;
  padding-top:55px;
  padding-bottom:35px;
}
.how-sec h4{
  font-size:19px;
  font-weight:bold;
  margin-bottom:20px;
}
.how-sec p{
  font-size:15px;
  margin-bottom:10px;
}
.why-sec{
  background-image:url('../img/Why-img.png');
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  text-align:center;
  padding-top:55px;
  padding-bottom:35px;
}
.why-sec h4{
  font-size:19px;
  font-weight:bold;
  margin-bottom:20px;
}
.why-sec p{
  font-size:15px;
  margin-bottom:10px;
}

/*----------- Lesson Section -----------*/
.what-you-learn-margin {
  margin: 0 40px;
 }
 
 @media (max-width:991px) {
  .what-you-learn-margin {
      margin: 0 0px;
  }

 }
 
.lesson-sec {
  margin: 20px 0;
 }
 .lesson-part {
   background-color: #dee2e687;
   text-align: center;
   border-radius: 10px;
   padding: 10px 0px;
 }
 .lesson-part p {
  margin-bottom: 0;
}
 .separator{
   display:flex;
   align-items: center;
   margin-bottom: 20px;
 }
 .separator .line{
   height: 1px;
   flex: 1;
   background-color: #000;
 }
 .separator h3{
   padding: 0 2rem;
 }
  
 
.modal-button{
  color: #000000;
  opacity: 0.8;
  text-decoration: none;
  font-size: 14px;
 
}
/* .modal-button:focus{
    background: #c0c0c0;
    color: #ffffff;
    padding: 12px 50px;
    border-radius: 10px;
 
} */
.modal-button:hover{
    color: #000;
}
.model-box {
  text-align: center;
  /* width: 140px; */
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
 border-radius: 5px;
 background-color: #dee2e687;
 transition: .3s all;
}
.model-box:hover {
    background: #d4307969;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
 .model-box:focus {
    background: #d4307969;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.modal {
  display: none;
  position: absolute;
  z-index: 1;
  /* padding-top: 100px; */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;;
   background-color: rgba(0, 0, 0, 0.4); 
}
.model-card {
    padding: 10px 0px;
}
 
.modal-content {
  position: relative;
  /* top: 30%; */
  background-color: unset;
  border: unset;
  color: #000;
  margin: auto;
  /* padding: 1.8rem; */
  /*width: 80%;*/
  width: 100%;
  text-align: start;
  animation-name: animatetop;
  animation-duration: 0.8s;
}
.model-inner{
    display: flex;
    justify-content: center;
}
.model-inner p{
    padding: 0px 15px;
}
.model-body-two p{
    padding: 0px;
    margin-bottom:0;
    font-size:15px;
}
.model-body-two{
    width: 80%;
    /* height: 75px; */
    /* border-left: 2px solid #8d8d8d; */
}
.start-btn {
    text-align: center;
}
.start-btn a{
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    background: rgba(24, 78, 255, 0.867);
}
 
@keyframes animatetop {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
 
.close i{
  color: #000000;
  font-size: 28px;
  font-weight: bold;
  float: right;
  margin-top: -50px;
}
 
.close i:hover,
.close i:focus {
  transform: scale(1.25);
  text-decoration: none;
  cursor: pointer;
}
 
  /* .lesson-part {
    display: none;
  } */
 
  @media (min-width:576px){
    .lesson-part {
      display: none!important;
    }
    .content-box {
      display: none!important;
    }
      .content-box h6{
      font-weight:800 !important;
}
  }
  .learn-gap {
    row-gap:18px;
  }
@media (max-width:575px){
  .model-box {
    display: none;
  }
  .lesson-part {
    display: block;
    margin: 10px 0;
  }
  .content-box {
    display: none;
  }
    .content-box h6{
      font-weight:800 !important;
}
  .learn-gap {
    /* row-gap:10px; */
       row-gap:0px;
  }

}
/* @media (max-width:576px){
  .modal {
    padding-top: 250px!important;
  }
} */
.popup-align {
   width: 700px;
   margin:100px auto;
}
@media (min-width:992px){
  .popup-align {
      
    margin-top: 100px;
  }
}
 
@media (max-width:991px){
  .popup-align {
    margin-top: 250px;
    width: 600px;
  }
  .v1-line{
    display:none;
  }
}
@media (max-width: 767px) {
.popup-align {
    margin-top: 250px;
    width: 450px;
 }
}

/* ----------------------- */
 
.model-inner img {
  width: 80%;
  height: auto;
}
.model-inner-image{
  width: 20%;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  background-color:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cam-content-part {
  padding: 13px;
  background: #2b2a4c;
  color: #fff;
  border-top-right-radius: 15px;
}
.cam-content-part h3{
  font-size:20px;
  font-weight:bold;
}
.inner-content-bottom {
    padding: 16px;
    background: #f2f2f2;
    border-bottom-right-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.inner-content-bottom i {
    margin-right: 7px;
}

@media only screen and (max-width: 991px) {
  .model-inner img {
     width: 85%;
  }
}
@media (max-width: 767px) {
 .model-inner-image {
    width: 30%;
 }
 .model-inner img {
    width: 70%;
 }
}
 /* ---------------------------------- */
 .lesson-border {
    padding: 10px;
    padding-bottom: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
 }
 .unlock-block {
    text-align: center;
    font-size: 27px;
    padding: 25px;
 }
 .unlock-block p {
  margin-bottom: 0;
  font-size: 18px;
}
.unlock-block span {
  color: #D40059;
  font-weight: 900;
  font-size: 20px;
}




/*-----------------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;
}


/*---------------popup---------------------------------*/
.sub-popup-course-btn{
  text-decoration: none;
    background: #D78080;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    border: none;
    box-shadow: 6px 6px 0px #d780818c;
    transition: 0.5s all;
    border:1px solid #fff;
}
.sub-popup-course-btn:hover {
    transform: translate(4px, 7px);
    box-shadow: unset;
}

.course-popup-right-content{
  padding: 80px 60px;
  padding-left: 90px;
}
.course-popup-left-img img{
   width: 100%;
   }
   .course-popup-block{
    width: 80%;
   }
   .popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    justify-content: center;
    align-items: center;
    z-index: 9;
  }
  .course-popup-block {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  /* Style to close the popup */
  .close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }



/*====================================================*/
  .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:99;
}

  .modal-login-two {
  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:9999; /* new chaanges */
}


.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;
}
.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, #overlay2 {
  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 (max-width: 991px){
    .desktop-login {
        display:none;
    }
     .mob-login {
        display:block;
    }
}

@media (min-width: 992px){
    .desktop-login {
        display:block;
    }
     .mob-login {
        display:none;
    }
}

@media only screen and (max-width: 575px){
.login-form {
    width: unset;
    padding: 20px;
}
.modal-login-two {
  width: 90%  ;
}
}

/* ------------- learn cousre btn ----------------- */


.learn-p-dropbtn {
  background-color: transparent;
  padding: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.learn-p-dropbtn:hover, .learn-p-dropbtn:focus {
    
}

.learn-p-dropdown {
  position: relative;
  display: inline-block;
}

.learn-p-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 185px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
  transition: all 10s;
}

.learn-p-dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.learn-p-dropdown:hover .learn-p-dropdown-content {
  display: block;
}

.learn-p-dropdown-content a {
    margin:0 !important;
}
@media (max-width:991px) {
    .menuItem li {
        font-size: 18px;
     }
     .learn-p-dropdown-content {
       min-width: 215px;
       left: -22px;
     }
.learn-p-dropbtn {
    padding: 0px;
    font-size: 18px;
}
}

/* ------------- END learn cousre btn ----------------- */
.ps-subs-btn p i{
  margin-bottom:20px;
}
.ps-subs-btn a{
  background-color: #ffffff;
  border-radius: 25px;
  border: 2px solid #699;
  text-decoration: none;
  color: #000;
  padding: 10px 20px;
  margin-top:20px;
}
.ps-subs-btn input {
  border: none;
  background-color: unset !important;
}

