  @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: 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;
    height: 3rem;
  }
  .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 !important;
    }
    .ham-menu{
        display: block;
        background-color: #fff;
        padding: 15px !important;
    }
    .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;
    }
 } 

  

/* --------------4Ps foundation section---------- */

/*.ps-head-img-sec {*/
/*  box-shadow:0px 10px 13px -7px #a8a4a4;*/
/*  background-color: #f3f3f3;*/
/*}*/

.ps-head-img-sec{
    padding-top:70px;
    margin-bottom:40px;
}

/*.physical-img-block{*/
/*    margin: 0 auto;*/
/*    width:80%;*/
/*}*/
.ps-content-align {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .border-right-dir {
    border-right: 15px solid #adb5bd;
}
.border-left-dir {
    border-left: 15px solid #adb5bd;
} */
.four-ps-content-sec {
    margin: 0 0 35px;
}
.ps-head-img-block img {
    width: 100%;
    /* box-shadow:0px 10px 13px -7px #a8a4a4; */
}
.physical-img-block img {
    width: 90%;
}
.four-ps-content-block {
    width: 80%;
}
.four-ps-content-block h3 {
    font-weight: 600;
    font-size:20px;
}
.four-ps-content-block p {
    font-size:15px;
}
.four-ps-content-block a {
    text-decoration: none;
    padding: 10px 20px;
    color:#fff;
    border-radius: 10px;
    border: 3px solid transparent;
    transition: 0.5s all;
}
.four-ps-content-block a:hover {
    color: #fff;
    cursor: pointer;
    transform: translate(2px, 2px);
    border: 3px solid #fff;
}
.phy-shadow a:hover  {
    box-shadow: 0px 0px 10px #8056FF;
}
.philoso-shadow a:hover {
    box-shadow: 0px 0px 10px #07bdb8;
}
.philan-shadow a:hover {
    box-shadow: 0px 0px 10px #ecb84e;
}
.problem-shadow a:hover {
    box-shadow: 0px 0px 10px #e47f85;
}
.phy-shadow a  {
   background-color:#8056FF;
}
.philoso-shadow a {
    background-color:#07ADAA;
}
.philan-shadow a {
    background-color:#DEA331;
}
.problem-shadow a {
   background-color: #D78080;
}
.physical-color {
    color: #8056ff;
}
.philosophy-color {
    color: #07bdb8;
}
.philanthropy-color {
    color: #ecb84e;
}
.problem-color {
    color: #e47f85;
}

/* .physical-content-block {
    width: 550px;
}
.physical-img-block {
   text-align: center;
   width: 85%; 
} */
@media (max-width:991px) {
    .reverse-align {
        flex-direction: column-reverse;
    }
    .physical-img-block {
        width: 65%; 
        margin: 30px auto;
     } 
     .four-ps-content-block {
        width: 65%;
        text-align: center;
    }
}


/*-----------------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;
  } */

  /*        Start Footer New CSS           */
     
  .b2-copy-right-block {
    color: #fff;display: flex;align-items: center;justify-content: center;background-color:#000;
  }
  .b2-copy-right-block p {
   margin: 15px 0;font-size: 14px;
  }
  .b2-policy-block {
  width:45%;
  }
  .b2-policy-links {
   color:#fff;display:grid;justify-content: space-around;font-size: 13px;gap: .5rem; margin-top: 45px;
  }
  .b2-policy-links a {
  color:#313131;text-decoration: none;
  }
  .b2-policy-links a span {
  margin-right:15px;
  }
  /* .b2-social-media-block {
  display: flex;gap: 1rem;align-items: center;
  }
  .b2-social-media-block a {
  color: #000;width: 35px;height: 35px;background-color: #fff;display: flex;align-items: center;justify-content: center;text-decoration: none;border-radius: 2px;font-size: 20px;
  } */
  .b2-social-media-block {
    display: flex;
    gap: .5rem;
    align-items: center;
  }
  .b2-social-media-block a {
    position: relative;
    color: #000;
    width: 35px;
    height: 35px;
    /* background-color: #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 2px;
    font-size: 20px;
    transition: background-color 0.3s ease;
  }
  .b2-social-media-block a:hover {
    background-color: #eee;
  }
  .b2-social-media-block a::after {
    content: attr(data-name);
    position: absolute;
    bottom: 36px; /* Adjust this value for positioning */
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #000;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
  }
  .b2-social-media-block a::before {
    content: '';
    position: absolute;
    bottom: 30px; /* Adjust based on desired position */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff; /* Color of the arrow */
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .b2-social-media-block a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px); /* Slight bounce effect */
  }
  .b2-social-media-block a:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px); /* Move arrow up slightly */
  }
  .b2-footer-descri {
   display: block;color: #fff;
  }
  .b2-footer-descri h5 {
  font-weight:1000;
  }
  .b2-footer-descri p {
   font-size: 13px;margin: 10px 0;color: #313131;
  }
  .b2footer-content-icon-block {
  width:40%
  }
  .b2-footer-part {
  display: flex;justify-content: space-between;row-gap: 1rem;flex-wrap: wrap;/* align-items: center; */
  }
  .b2-footer-block {
  padding: 25px 40px;background-color: #d2d2d2;
  }
  .b2-social-media-block a i {
   color: #313131;
  }
  .b2-social-media-block a[data-name="YouTube"]:hover i {
    color: #FF0000;
  }
  
  .b2-social-media-block a[data-name="Instagram"]:hover i {
    color: #E1306C; 
  }
  
  .b2-social-media-block a[data-name="Facebook"]:hover i {
    color: #1877F2; 
  }
  
  .b2-social-media-block a[data-name="LinkedIn"]:hover i {
    color: #0A66C2; 
  }
  
  @media only screen and (max-width: 767px) {
    .b2footer-content-icon-block {
      width: 50%;
    }
  }
  @media only screen and (max-width: 575px) {
    .b2footer-content-icon-block {
      width: 100%;
    }
    .b2-policy-block {
      width: 100%;
      padding: 15px 0;
    }
    .b2-policy-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      margin-top: 10px;
    }
  }
  @media only screen and (max-width: 375px) {
    .b2-policy-links {
      justify-content: left;
    }
  }
/*       End Footer New CSS           */

  
  
 .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;
}
/* new responsive
@media only screen and (min-width: 575px){
 .modal-login {
    height: 100vh;
    overflow: scroll;
    padding: 15px 0;
   }
} */


.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: 13px;
}
@media only screen and (min-width: 991px){
.login-bottom input {
   margin-bottom: 15px;
}
}
 .for-pass-block a {
     text-decoration: none;
     color: #5b6266;
 }
         
 .rem-for-pass-block {
      display: flex;
      align-content: center;
      justify-content: space-between;
      flex-wrap: wrap;
      margin: 10px 0;
 }
.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 !important;
padding: 10px 50px;
border-radius: 5px;
text-decoration: none;
}
.login-register-btn:hover{
 color: #fff !important;
}
.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;
}

.ps-gap{
    margin:30px 0;
}

@media only screen and (max-width: 575px){
.login-form {
    width: unset;
    padding: 20px;
}
}


.login-form-inner input[type="email"] {
  padding-left: 60px;
}


.cart-button {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      outline: none;
      margin: 0 15px;
    }

    .cart-button:hover {
      cursor: pointer;
    }

    .cart-button:active {
      background: #cccccc;
    }

    .cart-button__badge {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 20px;
        height: 20px;
        background: #ddd;
        color: #000;
        font-weight: bolder;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-size: 12px;
    }
    .cart-button i {
    font-size: 20px;
    }

    @media only screen and (max-width: 991px) {
      .cart-button {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        margin: 8px 0 !important;
      }
  
      .cart-button:hover {
        cursor: pointer !important;
      }
  
      .cart-button:active {
        background: #cccccc !important;
      }
  
      .cart-button__badge {
          position: absolute !important;
          top: -10px !important;
          right: -10px !important;
          width: 20px !important;
          height: 20px !important;
          background: #ddd !important;
          color: #000 !important;
          font-weight: bolder !important;
          display: flex !important;
          justify-content: center !important;
          align-items: center !important;
          border-radius: 50% !important;
          font-size: 12px !important;
      }
      .cart-button i {
      font-size: 20px !important;
      }
    }



.password-secure-container {
      position: relative;
      display: inline-block;
  }

  .form-control {
      padding-right: 30px; /* Make room for the toggle icon */
  }

  .toggle-password-secure {
    z-index: 999; 
    position: absolute;
    right: 15px;
    top: 40%;
    transform: translateY(-50%);
    cursor: pointer;
  }
 

  .toast-top-right {
    top: 80px !important;
  }




  .addform-password-secure {
    z-index: 99;
    position: absolute;
    right: 80px;
    top: 40%;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .form-wrapper::after {
    content: "*";
    color: red;
    font-size: 16px;
    position: absolute;
    right: 12% !important;
    top: 30%;
    transform: translateY(-50%);
  }