@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Poppins:wght@200;300;600;700;800;900&family=Roboto&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #F8F9FB;
  --secondary-color: #474BFF;
  --Tertiary-color: #F1F2FB;
  --white-color: #ffffff;
  --black-color: #000000;
  --text-color: #26274B;

  --poppins: 'poppins',sans-serif;
  --Manrope: 'Manrope', sans-serif;
  --Roboto: 'Roboto', sans-serif;
  --Space-Grotest: 'Space Grotesk', sans-serif;

}

body {
  font-family: "Poppins", sans-serif;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}
/* ==========================================
       ====> Header CSS <=====
==========================================
*/

.Nav-Bar {
  background-color: var(--primary-color);
  width: 100%;
  height: 70px;
}

.Nav-logo-div {
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 70px;
}

.Nav-logo {
  display: inline-block;
  width: 250px;
}

.Nav-ul {
  float: right;
  margin-right: 20px;
  font-family: var(--poppins);
  font-size: 18px;
  margin-top: 0;
}

.Nav-li {
  list-style: none;

  display: inline-block;
  line-height: 70px;
  margin: 0 5px;
  font-family: var(--poppins);
  font-size: 18px;
  font-weight: 400;
}

.Nav-a {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 18px;
  padding: 5px 10px;
}

.HamBurger {
  display: none;
  float: left;
  margin-top: 20px;
  margin-left: 20px;
  cursor: pointer;
}

.Nav-Bar-Line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--secondary-color);
}

@media (max-width:995px) {

  .Nav-a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 16px;
    padding: 5px 5px;
  }

  .Nav-li {
    list-style: none;
  
    display: inline-block;
    line-height: 70px;
    margin: 0 3px;
   
    font-size: 16px;
    font-weight: 400;
  }

  .Nav-logo-div {
    float: left;
    width: 180px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .Nav-logo {
    display: inline-block;
    width: 140px;
  }

}

@media (max-width:768px) {

  .h-tags {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--poppins);
  }

  .Nav-logo-div {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    width: 350px;
    height: 70px;
  }

  .Nav-logo {
    display: inline;
    width: 250px;
  }

  .HamBurger {
      display: block;
  }

  .HamBurger.Active .Nav-Bar-Line:nth-child(2) {
      opacity: 0;
  }

  .HamBurger.Active .Nav-Bar-Line:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .HamBurger.Active .Nav-Bar-Line:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  .Nav-ul {
      position: fixed;
      width: 100%;
      height: 100vh;
      margin-top: 0;
      margin-bottom: 0;
      background-color: var(--primary-color);
      top: 70px;
      left: -100%;
      text-align: center;
      transition: all .5s;
  }

  .Nav-li {
      list-style: none;

      display: block;
      line-height: 30px;
      margin: 50px 0;
      padding: 0;

      font-family: var(--poppins);
      font-size: 18px;
      font-weight: 400;
  }

  .Nav-a {
      text-decoration: none;
      color: var(--black-color);
      font-size: 24px;
      padding: 5px 10px;
  }

  .Nav-ul,
  .Nav-a:hover {
      color: var(--secondary-color);
      font-size: 24px;
  }

  .Nav-ul.Active {
      position: fixed;
      width: 100%;
      height: 100vh;
      background-color: var(--primary-color);
      color: var(--secondary-color);
      top: 70px;
      left: 0;
      text-align: center;
      transition: all .5s;
  }

}

@media (max-width:426px) {

  .h-tags {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--poppins);
  }


  .Nav-logo-div {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    width: 150px;
    height: 70px;
    margin-left: 5px;
}

  .Nav-logo {
    display: inline;
    width: 150px;
  }
}

.Act {
  display: none;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 0 2em 0 rgb(0, 0, 0, 0.1);
  z-index: 9999;
}

.Header-Button-Style {
  background-color: var(--Tertiary-color);
  width: 6em;
  height: 2em;
}

.header-logo {
  width: 9em;
  height: auto;
}

.YoutubeLogo {
  width: 1em;
  margin: 2px;
}

/* ==========================================
       ====> Hero Section CSS <=====
==========================================
*/

*:after,::before {
  box-sizing: border-box;
}

.HeroSection {
  background-color: var(--Tertiary-color);
}

.HeroSectionHeading{
  font-family: var(--poppins);
  font-weight: 700;
  font-size: 36px;
}

u {
  text-decoration-color: var(--secondary-color);  
}

.heroSectionPtag {
  color: var(--black-color);
  font-family: var(--poppins);
  font-size: 18px;
  font-weight: 400;
}

.HeroSectionImg {
  width: 100%;
  height: 100%;
}

.HeroSectionButton {
  width: 10em;
  height: 3em;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-width: 0;
  border-radius: 0.65em;
}

/* ==========================================
       ====> Body Content CSS <=====
==========================================
*/

.TelegramGif-Container {
  text-align: center;
}

.TelegramGif {
  width: 350px;
  margin-top: 12px;
  margin-bottom: 10px;
}

@media (max-width: 360px) {

  .HeroSectionButton {
    width: 10em;
    height: 3em;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-width: 0;
    border-radius: 0.65em;
  }

  .header-logo {
    width: 6em;
    height: auto;
  }

  .TelegramGif {
    width: 240px;
    margin-top: 12px;
    margin-bottom: 10px;
  }
}

.Box {
  width: 230px;
  height: 410px;
  margin-top: 23px;
  margin-bottom: 22px;
  border-radius: 12px;
  background-color: var(--white-color);
}

.box-bg {
  width: 100%;
  padding: 20px;
  border-radius: 25px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.box-bg-ss {
  width: 100%;
  height: 230px;
  padding: 20px;
  border-radius: 25px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));

}

.font-box-heading {
  width: 100%;
  padding: 1px;
  font-family: var(--Space-Grotest);
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  align-items: center;
  text-align: center;
  color: var(--black-color);
}

.font-box-sub-heading {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  font-family: "Roboto";
  color: var(--text-color);
}

.box-button {
  height: 30px;
  width: 85%;
  transform: all 0.1s ease-in 0s;
  border: 1px;
  border-color: var(--secondary-color);
  border-style: solid;
  background-color: transparent;
  font-family: var(--Roboto);
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  border-width: 1px;
  color: var(--secondary-color);
  box-sizing: border-box;
}

.box-button:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
  outline: var(--secondary-color);
  border-color: var(--secondary-color);
}

.box-button:active {
  border-width: 0px;
  color: #ffffff;
  background-color: var(--secondary-color);
  outline: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* ==========================================
       ====> Semseter CSS <=====
==========================================
*/

.Semster-content {
  width: 100%;
  background-color: #F1F2FB;
  height: 75px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  padding: 10px;
}

.Card-Main {
  height: 5px;

}

.Card-Main-heading {
  margin-top: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.aa {
  background-color: yellow;
  width: 100%;
  justify-content: center;
  align-items: center;

}

.bb {
  background-color: #474BFF;
  margin-top: 15px;
  height: 55px;
  width: 15px;

}

.cc {
  background-color: #F1F2FB;
  margin-top: 15px;
  height: 55px;
  width: 350px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

@media (max-width: 533px) {
  .h-style {
    font-size: 24px;
  }

}

@media (max-width: 339px) {
  .h-style {
    font-size: 16px;
  }

}

/* ==========================================
       ====> Footer CSS <=====
==========================================
*/

.Footer-bg {
  background-color: var(--Tertiary-color);
}

.Foot-logo{
  width: 75%;
  height: auto;
  margin-bottom: 2em;
}

.footer-Heading{
  color: var(--secondary-color);
  font-family: 'poppins';
  font-weight: 400;
  font-size: 1.5em;
}

.footer-subheading {
  color: var(--text-color);
  font-family: 'poppins';
  font-weight: 400;
  font-size: 1em;
  transition: all 0.3s;
}

@media (max-width: 360px) {

  .footer-subheading {
    color: var(--text-color);
    font-family: 'poppins';
    font-weight: 400;
    font-size: 12px;
    transition: all 0.3s;
  }

  .footer-subheading:hover, 
  .footer-subheading:focus {
    text-decoration: none;
  }

}


.footer-subheading:hover, 
.footer-subheading:focus {
  text-decoration: none;
}

.Footer-Li-tag {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1em;
  padding-top: 6px;
}

.Footer-Bottom-Style{
  background-color: var(--primary-color);
  color: var(--black-color);
  width: 100%;
  font-family: 'poppins';
  font-weight: 400;
  font-size: 12px;
  text-align: center;
}