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

  --header-bgColor:#FFB938;
  --icon-color:#C04020;
  --bg-color-2:#4b9b7f;
  --heading-color:#c04020;
}
html{
/* 100%/16==6.25 % */
/* 6.25*10 == 62.5%  */
/* 1rem = 10px */
font-size:62.5%;
}
body{
  font-family:'poppins',sans-serif;
  position: relative;
  /* leave room for fixed bottom bar + legal strip */
  padding-bottom: 8rem;
}
/* common classes */
.red-text{
  color: #ff5826;
}
.heading-text{
    padding: 2rem 0 0 0;
}
.heading-text p{
 font-size: 4rem;
  font-weight: 500;
  padding: 0 3rem;
  text-align: center;
  text-transform:uppercase ;
  
}

header{
  max-width: 1200px;
  margin: auto;

   display: flex;
  justify-content: space-around;
  align-items: self-star;
  /* align-items: center; */
}

.home {
  position: absolute;
  top: 1rem;
  left:1rem;
  /* padding: 0 1rem; */
}

.home a i{
  font-size: 3rem;
  /* color: var(--heading-color); */
}


/* header text  */
.top-header-text{
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.yellow-strip{
  background-color:var(--icon-color);
  padding: 1.4rem 3rem;
  margin: 0 auto;
  text-align: center;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  margin: 0 auto;
  color:rgb(255, 255, 255)
  }
.yellow-strip h1{
font-size: 1.9rem;
  font-weight: 550;
  text-transform: uppercase;
}
.yellow-strip h1 span{
  font-style: italic;
}

/* bold top heading blok */
.bold-heading h2{
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
}
.bold-heading h2 .red-text{
  color: #ff5826;
}
.top-header-text p:nth-of-type(1){
  font-size: 1.9rem;
}

.top-header-text p:nth-of-type(2){
font-size: 1.5rem;
  background-color: #FFD995;
  padding: .5rem 1rem;
  border-radius: 2rem;
  box-shadow: .01rem .01rem .8rem .01rem; 
  text-align: center; 
  
}

/* main section  */
main{
  padding: 2.5rem 0;
}
.main-content{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.video-block{
  width: 45%;
}
.about-video{
  margin-top: 2rem;
  
}
.about-video h2{
  font-size: 2rem;
  font-weight: 550;
}
.about-video p{
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: .5rem;
}
.who-is-this-for{
  width: 50%;
}
.divider{
  height: .1rem;
  background-color: #d3cccc;
  margin: .5rem 0 2rem 0;
}
.text-details-box{
  display: block;
}
.who-is-this-for h1{
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
.icon-with-text{
  display: flex;
 align-items: center;
 gap: 1.5rem;
 font-size: 1.9rem;
}

.icon-with-text i{
  color: greenyellow;
}
.icon-with-text i p{
  font-size: 2rem;
 }

 .icon-with-text p{
        font-weight: 500;
  }

  /* details box  */
 .details-box{
  display: flex;
  flex-direction: column;
  gap: 1rem;
 }
  .first-row,.second-row{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .common-layout{
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    align-items: center;
    border-radius: 1.2rem;
    box-shadow: 0 .2rem .8rem rgba(0,0,0,0.5);
  }

  .icon-box{
  background-color: var(--icon-color);
  color: white;
  padding: 1.1rem;
  font-size: 3rem;
  border-radius: .6rem;
  height: 6rem;
  width: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  }
  .date-picker-container{
    position: relative;
    width: 100%;
  }
  .calendar{
    position: absolute;
    top: 110%;
    left: 0;
    width: 30rem;
    background-color: wheat;
    border: .2rem solid #ccc;
    border-radius: .8rem;
    z-index: 10;
    display: none;
    box-shadow: 0 .4rem 1rem rgba(0,0,0,0.5);
  }
  .calendar-header{
    display: flex;
  justify-content: space-between;
  padding: .5rem 1rem;
  background-color: #f0f0f0;
  border-bottom: .1rem solid #ccc;
  }

  .calendar-weekdays,.calendar-days{
   
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
  }

  .calendar-weekdays div{
      background-color: #f7f7f7;
      padding: 0.4rem 0;
      font-weight: 600;
      font-size: 1.5rem;
  }

   .calendar-days .day {
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
        border-right: 1px solid #eee;
        cursor: pointer;
        font-size: 1.6rem;
        transition: 0.2s;
      }

         .calendar-days .day:nth-child(7n) {
        border-right: none;
      }

      .calendar-days .day:hover {
        background-color: #ffd966;
        border-radius: 50%;
      }

      .calendar-days .day.today {
        background-color: #ff9f43;
        color: white;
        border-radius: 50%;
        font-weight: bold;
      }
/* calender end  */

/* time select start  */
 .time-picker-container {
        position: relative;
        width: 100%;
      }
.common-layout{
    display: flex;
    gap: 1rem;
    font-size: 2rem;
   align-items: center;
   border-radius: 1.2rem;
  box-shadow: 0 .2rem .8rem rgba(0,0,0,0.5);
  padding: 1rem;
}
  .time-input-box span {
        margin-left: 0.5rem;
      }

       .time-picker {
        position: absolute;
        top: 110%;
        left: 0;
        width: 150px;
        background: white;
        border: 1px solid #ccc;
        border-radius: 6px;
        z-index: 10;
        display: none;
        padding: 0.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }

       .time-picker input {
        width: 100%;
        padding: 0.3rem;
        font-size: 1.9rem;
        border-radius: 4px;
        border: 1px solid #ccc;
      }


/* time select End  */

/* select language start */
   .language-picker-container {
        position: relative;
        width: 100%;
      }
    

      .language-input-box span {
        margin-left: 0.5rem;
      }

      /* Language Dropdown */
      .language-dropdown {
        position: absolute;
        top: 110%;
        left: 0;
        width: 100%;
        background: white;
        border: 1px solid #ccc;
        border-radius: 6px;
        z-index: 10;
        display: none;
        max-height: 150px;
        overflow-y: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }

      .language-dropdown div {
        padding: 1rem 2rem;
        font-size: 1.5rem;
        cursor: pointer;
        transition: 0.2s;
      }

      .language-dropdown div:hover {
        background-color: #ffd966;
      }
/* select language End */

/* set duration section start  */

  .duration-picker-container {
        position: relative;
        width: 100%;
      }

       .duration-input-box span {
        margin-left: 0.5rem;
      }

           /* Duration Dropdown */
      .duration-dropdown {
        position: absolute;
        top: 110%;
        left: 0;
        width: 100%;
        background: white;
        border: 1px solid #ccc;
        border-radius: 6px;
        z-index: 10;
        display: none;
        max-height: 150px;
        overflow-y: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }

      .duration-dropdown div {
        padding: 0.5rem;
        cursor: pointer;
        transition: 0.2s;
        font-size: 1.5rem;
      }

      .duration-dropdown div:hover {
        background-color: #ffd966;
      }
/* set duration section End  */

  .elementor-button-wrapper{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
  }
  
  
  .elementor-button-wrapper a{
    font-size: 2rem;
    text-decoration: none;
    background-color: var(--header-bgColor);
    color: rgb(0, 0, 0);
    padding: 1.5rem 5rem;
    text-align: center;
    border-radius: .9rem;
    position: relative;
    overflow: hidden;
    font-weight: 500;
  }
 .elementor-button-wrapper a::after{
  content: "";
  position: absolute;
  /* background-color: #b8b5f594; */
  background-color: #f5e8b54a;
  width: 44rem;
  left: 0;
  z-index: 0;
  top: -9rem;
  right: 0;
  height: 27rem;
  width: 33rem;
  transform: skewX(-35deg);
  filter: blur(1rem); 
  animation: shine 2s linear infinite;
 }
   @keyframes shine{
    0%{
      transform:translateX(-200%)skewX(-35deg);
    }
    100%{
      transform: translateX(400%)skewX(-35deg);

    }
   }
  /* .review-container */
  .review-container{
    width: 25%;
    /* margin-top: 1.6rem; */
  }
  .review-container img{
    width: 100%;
    object-fit: cover;
      }


/* video section  */
.video-section{
  padding: 0rem 0 1rem 0;
  text-align: center;
  max-width: 120rem;
  margin: 0 auto;
}
.video-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(450px,1fr));
  gap: 1.5rem;
  border-radius: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
}
      
.video-wrapper video{
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  border: .3rem solid black;
  max-height: 30rem;

}

/* .recently-spoken-At section  */
.recently-spoken-wrapper{
  background-color:var(--bg-color-2);
  padding: 4rem 0 5rem 0;
    margin-top: 3rem;
}
.recently-spoken-content .gird{
display: grid;
grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
max-width: 1200px;
margin: 0 auto;
gap: 2rem;
padding: 3rem 0;
}

.brand-wrapper{
  /* border: .5rem solid black; */
  border-radius: 1rem;
}
.brand-wrapper img{
  width: 100%;
  border-radius: 1rem;
}


/* -- HAVE YOU ALSO FELT THIS... start  -- */
.have-yout-felt-this-wrapper h3{
  font-size: 2.3rem;
  font-weight:450;
  width: 80%;
  margin: 0 auto;
  text-align: center;

}
.flex-box{
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 120rem;
  margin: 0 auto;
  padding-bottom: 2rem;
   /* flex-direction: row-reverse; */
}

.arrow{
  font-size: 6.5rem;
  color: var(--heading-color);
}
.list-content{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 0 2rem;
  }

.list-content li {
  list-style: none;
box-shadow: .1rem .1rem .5rem .1rem;
border-radius: 1rem;
padding: 1rem;
max-width: 40rem;
 font-size: 2rem;
  color: black;
}
.list-content li:nth-child(3) a{
  text-decoration: none;
  color:black;
}

.list-content li span{
  color: var(--heading-color);
  margin-right: 1.5rem;
}

.left-text-container h3,.right-text-container h3{
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}
/* -- HAVE YOU ALSO FELT THIS... end  -- */

  /* -- who should attend this workshop section start   -- */
  .high-achieving-wrapper{
    margin: 0 auto;
    background-color: var(--bg-color-2);
    padding: 1rem 0 5rem 0;
  }
  .high-achieving-wrapper h2{
  font-size: 2.4rem;
  color: white;
  font-weight: 450;
  margin: 0 auto;
  text-align: center;
  }

.conclusion-line p{
font-size: 1.7rem; 
color: white;
text-align: center;
margin-bottom: 2.5rem;
}
.achieving-list{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  width: 60%;
  padding: 0rem 2rem 4rem 2rem;
  margin: 0 auto;
  max-width: 120rem;
  padding-top: 2.6rem;
}
  .achieving-list li {
     list-style: none;
     box-shadow: .1rem .1rem .5rem .1rem;
      border-radius: 1rem;
      padding: 1rem;
      border-bottom:.5rem solid rgb(180, 177, 177) ;
      background-color: white;
      font-size: 1.9rem;
      color: black;
    }
 

  .achieving-list li span{
    color: #FFB938;
    font-weight: bold;
    /* margin-right: 1rem; */
    
  }

  /* -- WHY MOST HIGH-ACHIEVING section End   -- */


  /* -- THE 3-PART TRANSFORMATION METHOD start --*/
 .transformation-method-wrapper{
    padding: 2rem 0;
    max-width: 120rem;
    margin: 0 auto;
 }
  .transition-method-img-container{
    width: 40%;
    margin: 0 auto;
  }
  .transition-method-img-container img{
    width: 100%;
    object-fit: cover;
    display: block;
  }
  /* -- THE 3-PART TRANSFORMATION METHOD End      --*/

  /*-- WHAT YOU WILL LEARN Start -- */
  .what-you-will-learn-wrapper{
    background-color: var(--bg-color-2);
    padding: 3rem 0;
  }

  .what-you-will-learn-grid{
    display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 4rem;
  max-width: 120rem;
  margin: 0 auto;
  padding-top: 1.5rem;
  }

   .what-you-will-learn-grid li{
      list-style: none;
      box-shadow: .1rem .1rem .5rem .1rem;
      border-radius: 1rem;
      padding: 1rem;
      border-bottom:.5rem solid rgb(180, 177, 177) ;
      background-color: white;
      
      display: flex;
      align-items: center;
      gap: 2rem;
      width: 45%;

      font-weight: 550;
      font-size: 2.3rem;
      text-decoration: none;
      font-size: 1.9rem;
      color: black;
      padding: 2rem 2rem;
      }
      .what-you-will-learn-grid li i{
        font-size: 4rem; }
 

  /*-- WHAT YOU WILL LEARN End -- */


  /* <!-- Special Bonuses for Participants --> */
  .snippets-of-wrapper-wrapper{
    padding: 2rem 0;
  }
  .sippets-of-contents{
   max-width: 120rem;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 0 auto;
   width: 75%;
   gap: 1.2rem;
   padding-bottom: 4rem;
   
  }
 
    .sippets-of-contents img{
      object-fit: cover;
      display:block;
      width:100%;
    }

  /* <!-- Special Bonuses for Participants --> */

/* What Participants Say start  */
.What-Participants-wrapper{
  background-color: var(--bg-color-2);
  padding: 4rem 0;
}
/* What Participants Say end  */

/* secure-your-seat-start  */
.secure-your-seat-today-wrapper{
  padding: 2rem 0;
  background-color: var(--bg-color-2);
}
/* secure-your-seat-End  */

.secure-your-seat-today-wrapper .secure-cta{
  list-style: none;
  margin-top: 1.5rem;
  background-color: transparent;
  box-shadow: none;
  border-bottom: 0;
  padding: 0;
}

.secure-your-seat-today-wrapper .secure-cta .registerBtn{
  width: 100%;
  max-width: 42rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  animation: zoom-in-out 1s linear infinite;
}

  /* <-- WHY LEARN FROM MEENAL GAWLANI? Start --> */
  .meenalgawlani-wrapper{
    background-color: var(--bg-color-2);
    padding: 2.5rem 0;
  }

  .meenalgawlani-content{
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 1rem; */
    max-width: 120rem;
    width: 100%;
    margin: 0 auto;
      margin-top: -5rem;
  }
.meenalgawlani-img{
  width: 45%;
  /* background-color: red; */
display: flex;
  justify-content: center;
  align-items: center;
}
.meenalgawlani-img img{
  width: 100%;
}

.text-wrapper{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.text-wrapper li{
  font-size: 1.7rem;
  list-style: none;
  color: white;
}
  /* <-- WHY LEARN FROM MEENAL GAWLANI? End --> */


  /* result and coummunity setion start */
  .more-result-wrapper{
    padding: 2rem 0;
  }
  .community-screen-short{
   display: flex;
   justify-content: center;
   align-items: center;
   width: 120rem;
   width: 100%;
   padding-bottom: 5rem;
   max-width: 120rem;
   margin: 0 auto;
  }
  .community-screen-short .img-wrapper{
    width: 60%;
  }
  .community-screen-short img{
    width: 100%;
    object-fit: cover;
    display: block;
  }
  /* result and community section end  */

  /* accordion list start  */
  .faq-wrapper{
    background-color: var(--bg-color-2);
    padding: 4rem 0;

  }
  .faq-container{
    width: 100rem;
    margin: 0 auto;
      margin-bottom: 5rem;
  }
    .faq-container .item{
    background-color:rgba(250, 250, 250, 0.14);
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 .2rem 0.8rem rgba(0, 0,0,0.5);
    border-radius: .5rem;
    overflow: hidden;
  }
  .faq-container .header{
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
  font-weight: 600;
  font-size: 2rem;
  }

  .header .icon{
    font-size: 2.3rem;
    transition: .3s ;
  }
  .content{
    height: 0;
    overflow: hidden;
    transition: all .3s ease;
    padding: 0 1.8rem;
  }
.item .content p{
  font-size: 1.5rem;
  padding: 0 2rem;
  margin: 1.5rem 0;
}
 /* accordion list end  */

 /* foot bar  */
.bottom-bar{
  background-color: var(--bg-color-2);
  padding: 1rem 0;
  font-size: 1.5rem;
  text-align: center;
  color: white;
  font-weight: 500;
  position: fixed;
  width: 100%;
  bottom: 0;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.18), 0 -1.5px 4px rgba(0,0,0,0.08);
}

.bottom-bar-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-wrapper{
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 22rem;
}

.bottom-bar-fee-label{
  color: #FFB938;
  font-size: 3rem;
  font-weight: 600;
}

.bottom-bar-price-group{
  display: inline-flex;
  align-items: baseline;
  gap: 1rem;
}

.bottom-bar-strike{
  font-size: 1.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  text-decoration-thickness: .2rem;
}
.price{
  font-size: 3rem;
  font-weight: bold;
  color: white;
}

.bottom-bar-center{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.countdown{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.countdown-box{
  min-width: 8.5rem;
  padding: 1rem 1.2rem;
  border: .2rem solid rgba(255, 255, 255, 0.95);
  border-radius: 1.6rem;
  text-align: center;
}

.countdown-value{
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.countdown-label{
  margin-top: .4rem;
  font-size: 1.1rem;
  opacity: .9;
  color: #fff;
}




.bottom-bar-right{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.registerBtn{
  font-size: 1.6rem;
  font-weight: 501;
  color: rgb(0, 0, 0);
  background-color: var(--header-bgColor);
  padding: 1.5rem 5rem;;
  font-family: "Sora", Sans-serif;
  border-radius: 1rem;
  border: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  animation:zoom-in-out 1s linear infinite;
}
@keyframes zoom-in-out{
0%{
  transform: scale(1);
}
50%{
  transform: scale(1.1);
}
100%{
  transform: scale(1);
}
}


.registerBtn::after{
  content: "";
  position: absolute;
  background-color: #f5e8b54a;
  width: 44rem;
  left: 0;
  z-index:0;
  top: -9rem;
  right: 0;
  height: 27rem;
  width: 33rem;
  transform: skewX(-35deg);
  filter: blur(1rem); 
  animation: shine 2s linear infinite;
}

.arrow-btn{
  font-size: 2.2rem;
  font-weight: bold;
  height: 3.5rem;
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--heading-color);
  color: white;
  border: none;
  outline: none;
  border-radius: .3rem;
  position: fixed;
  right: 2rem;
  bottom: 2.2rem;
  visibility: hidden;
  z-index: 999;
  cursor: pointer;
}
  /* Bottom Bar end  */


  /* registration form start  */
body.no-scroll{
  overflow:hidden;
}
  .overlay{
    position: fixed;
    width: 100vw;
    height: 100%;
    background-color: rgb(0 0 0 / 76%);
    /* background-color: yellow; */
    backdrop-filter:blur(5px);
    top: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: all .2s ease; 
    opacity: 0;
  }

.registration-wrapper{
  padding: 2rem;
  position: relative;
  background-image: url("../media/Dotted-dots-1920x1080-1920-x-1286-px-1-1-4.png");
  background-position: center;
  object-fit: cover;
  max-height:67rem;
  border-radius: .5rem;
  /* transition: all .2s ease; */
}
.overlay.show{
  visibility: visible;
  opacity: 1;
}

.form-header h3{
  font-size: 3rem;
  text-align: center;
}
.form-header p{
  font-size: 1.6rem;
  text-align: center;
  padding: 1.2rem 0;
}
.close-btn{
font-size: 2rem;
  font-weight: bold;
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
}


.form-content .form-control{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  margin-bottom: 1rem;
}

.form-content .form-control input{
  font-size: 2rem;
  padding: 1rem 1.3rem;
  border: .1rem solid black;
  border-radius: .3rem;
  width: 100%;
  display: block;
}
.form-control input:focus{
  outline: 0;
}

.form-control.success input{
 border-color: #2ecc71;

}
.form-control.error input{
  border-color:#e74c3c ;

}

.form-control small{
    font-size: 1.6rem;
}
.form-control small{
  color: #e74c3c;
  visibility: hidden;
  }

  .form-control.error small{
    visibility: visible;
  }

  
.form-control i{
 position: absolute;
  right: .5rem;
  top: 1.5rem;
  font-size: 1.7rem;
  visibility: hidden;
}

.form-control.success i.fa-circle-check{
  visibility: visible;
  color: #2ecc71;
} 
.form-control.error i.fa-circle-exclamation{
  color: #e74c3c;
  visibility: visible;
}

.form-content.error input{
border-color: #e74c3c;
}
.form-control.success input{
  border-color: #2ecc71;
}
.form-content .form-control select{
  font-size: 2rem;
  padding: 1rem 1.3rem;
  border: .1rem solid black;
  border-radius: .3rem;
  width: 100%;
  background-color: white;
}

.payment-btn{
  font-size: 2.5rem;
  padding: 1rem 1.3rem;
  border-radius: .3rem;
  width: 100%;
  font-weight: 500;
  color: white;
  background-color: var(--heading-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: none;
  cursor: pointer;
}
/* contact us start  */
.Contact-P5-Educations-wrapper{
  padding: 2rem 0 1rem 0;
}

/* Center-align only the Contact section layout */
.Contact-P5-Educations-wrapper .flex-box{
  justify-content: center;
  gap: 5rem;
  padding-bottom: 0;
}

.Contact-P5-Educations-wrapper .left-text-container,
.Contact-P5-Educations-wrapper .right-text-container{
  flex: 1;
  display: flex;
}

.Contact-P5-Educations-wrapper .left-text-container{
  justify-content: flex-end;
}

.Contact-P5-Educations-wrapper .right-text-container{
  justify-content: flex-start;
}

.Contact-P5-Educations-wrapper .list-content{
  margin-top: 0;
  max-width: 40rem;
  width: 100%;
}

.Contact-P5-Educations-wrapper .arrow{
  flex: 0 0 auto;
}
.conclusion-line .social-media{
  padding-bottom: 2.7rem;
}
/* contact us End  */


/* notification section start  */
.notification-wrapper{
  position: fixed;
  bottom: 9rem;
  font-size: 1.7rem;
  left: 2rem;
  padding: 1rem;
  /* min-width: 26%; */
  height: fit-content;
  border-radius: 9rem;
  background-color:var(--heading-color);
  color: white;
  box-shadow: 0 .1rem .1rem rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: start;
  align-items: center;
  gap:1rem;
  transform:translateY(30%);
  opacity: 0;
  visibility: hidden;
  transition: all .3s linear;
  z-index: 999;
}

.notification-wrapper.show{
  visibility:visible;
  opacity: 1;
  transform: translateY(0);
}


.notification-wrapper span{
  background-color: rgb(134, 214, 14);
  padding: 1rem;
  color: black;
  border-radius: 20rem;
  font-size: 1.9rem;
  height: 4rem;
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* notification section end  */

.bottom-content{
  background-color:red;
  font-size: 3rem;
  height: 4rem;
  position: fixed;
}

/* site footer start */
.site-footer{
  background-color: var(--bg-color-2);
  color: #fff;
  padding: 4rem 2rem 12rem; /* leave space for fixed bars */
}
.site-footer-content{
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}
.site-footer .footer-col h3{
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: #fff;
}
.site-footer .footer-col p{
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: .9;
}
.site-footer .footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer .footer-col li{
  font-size: 1.5rem;
  opacity: .95;
}
.site-footer a{
  color: #FFB938;
  text-decoration: none;
}
.site-footer a:hover{
  text-decoration: underline;
}

@media (max-width: 760px){
  .site-footer-content{
    grid-template-columns: 1fr;
  }
  .site-footer{
    padding-bottom: 14rem;
  }
}
/* site footer end */

/* footer privacy start  */
.footer-privacy-wrapper{
  background-color: var(--bg-color-2);
  position: relative;
  width: 100%;
  padding: 1.4rem 0;
}

.footer-privacy-content{
  padding: 0 4rem;
  max-width: 120rem;
  margin: 0 auto;
  font-style:italic;
  font-weight: 440;
  text-align: center;
}

.footer-privacy-content a{
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}

.footer-privacy-content .sep{
  font-size: 2rem;
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.65);
}

/* footer privacy End  */


 /*================================ 
  Thank you page start
  =============================  */
.container{
  max-width: 120rem;
  margin: 0 auto;
  padding-top: 9rem;
  position: relative;
}
.pop-up{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;

}
.popup-icon{
  max-width: 30rem;
}
.popup-icon img{
  object-fit: cover;
  display: block;
  width: 100%;
}
.text{
  margin: 0 auto;
  text-align: center;
}
.text h1{
  font-size: 6rem;
  font-weight: bold;
  color: #059205;
}

.text h2{
  font-size: 4rem;
  color: #059205;
}
.social-media{
  font-size: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  color: rgb(31, 186, 144);
}
.social-media-icons a{
  color:var(--heading-color)
}
.social-media i{
  margin-left: 2rem;
  font-size: 3.5rem;
}
/* ========================
greeting page End
======================  */




/* ============================
privacy policy page start 
============================== */

.policies-sub-heading{
  font-size: 2.2rem;
  max-width: 120rem;
  width: calc(100% - 4rem);
  margin: 0 auto;
  padding: 1rem;
  font-weight: 440;
}
.content-of-privacy-policy{
  padding: 4rem 0;
}

 .comman-policy-box{
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: start;
  max-width: 120rem;
  margin: 0 auto;
  gap: 1rem;
  width: 90%;
  padding-bottom: 1rem;
 }
.policy-heading p{
   font-size: 2.5rem;
  font-weight: 500;
  padding: 0 3rem;
  text-transform:uppercase ;
}

.top-heading{
  max-width: 120rem;
  width: calc(100% - 4rem);
  margin: 0 auto;
  background-color: var(--header-bgColor);
  border-radius: 1.5rem;
  position: relative; 
  padding: 0 9rem;
}
.top-heading h1{
font-size: 3.2rem;
text-transform: uppercase;
text-align: center;
margin-top: 1rem;
}
.comman-policy-box .policy-list{
margin-left: 3rem;
}
.policy-list >.sub-heading{
  font-size: 2.3rem;
  font-weight:450;
}
.policy-list >.sub-heading i{
  color: var(--header-bgColor);
  font-size: 2rem;
}
.policy-list li{
 font-size: 2rem;
 list-style: none;
 margin-bottom: 1rem;
}
.policy-list li i{
  font-size: 1.6rem;
  color: var(--header-bgColor);
}
/* ============================
privacy policy page end 
============================== */