/* General CSS */
  @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 1.17rem;
    color: rgb(36, 35, 35);
  }
  body{
    width: 100%;
  }



  /* Styling for Main pain of Career */

  .wrap-career{
    width: 100%;
    padding: 0;
    position: relative;
    background-color: #fafaff;
  }
  img{
    pointer-events: none;
  }
  .head-img{
    width: 100%;
    z-index: 0;
    cursor: auto;
  }


  .dots{
    position: absolute;
    z-index: 10;
  }
  .dots-img1{
    top: -100px;
    right: 10%;
    transform: rotate(180deg);
  }
  .dots-img2{
    top: 100px;
    left: 50px;
    transform: rotate(180deg);
  }
  .dots-blue1{
    top: 30%;
    right: 8%;
    transform: rotate(-40deg);
  }
  .dots-blue2{
    bottom: 35%;
    right: 5%;
    transform: rotate(60deg);
  }
  .x-flame-img{
    width: 200px;
    position: absolute;
    bottom: 0;
    right: 100%;
    transform: rotate(180deg);
  }


  .wrap-career .heading{
    width: 100%;
    font-size: 25px;
    text-align: center;
    position: relative;
    top: -25px;
  }
  .wrap-career .careerpara{
    width: 80%;
    font-size: 23px;
    letter-spacing: 0.7px;
    word-spacing: 1px;
    margin: 0 auto 40px;
    text-align: center;
  }


  .wrap-career .wrapPath{
    width: 1100px;
    margin: 20px auto 20px;
    padding: 30px 0px;
    position: relative;
    background: #f9f9ff;
    border: 1px solid black;
    border-radius: 10px;
  }

  .wrapPath .pathHeading{
    width: 100%;
    margin:  auto;
    font-size: 25px;
    text-align: center;
  }
  .wrapPath .pathPara{
    width: 80%;
    margin: 0 auto;
    font-size: 23px;
    letter-spacing: 0.7px;
    word-spacing: 1px;
  }


  .wrapPath .path{
    width: 100%;
    padding: 40px 25px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .career{
    flex-wrap: wrap;
  }
  .course{
    flex-wrap: wrap-reverse;
  }
  .wrapPath .path .pathContent{
    width: calc(100% - 500px);
    min-width: 400px;
  }
  .wrapPath .path .pathContent .contentHeading{
    width: 100%;
    font-size: 25px;
    opacity: 0.9;
    padding: 0 10px;
  }
  .wrapPath .path .pathContent ul{
    padding: 10px 10px 10px;
  }
  .wrapPath .path .pathContent ul li{
    list-style: none;
    /* font-size: 20px; */
    padding: 5px 0 5px;
  }
  .wrapPath .path .pathContent ul li .signimg{
    font-size: 30px;
    font-weight: 900;
    padding: 0 5px;
    color: rgb(36, 218, 36);
  }
  .wrapPath .path .pathImg{
    width: 500px;
  }





  /* Copyright section */
  .copyright{
    position: relative;
    width: 100%;
    height: 250px;
    /* height: 400px; */
  }
  .copyright .endimg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .copyrightline{
    color: white;
    width: 100%;
    padding: 10px 10px 30px;
    font-size: 20px;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  .copyrightline span{
    color: red;
  }

  .button{
    width: 100%;
    padding: 30px 0 0 0;
    display: flex;
    justify-content: center;
  }
  .button a{
    padding: 3px 20px;
    border: 1px solid black;
    position: relative;
    border-radius: 3px;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    background: rgb(154, 154, 245);
    z-index: 1;
  }
  .button a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: rgb(31, 121, 238);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s linear;
  }
  .button a:hover::before{
    transform: scaleX(1);
  }


  /* responsivness */

  @media screen and (max-width: 1200px){
    .wrap-career .wrapPath{
      width: 900px;
    }
    .wrapPath .path .pathContent{
      min-width: 700px;
    }
    .x-flame-img{
      width: 100px;
    }
    .dots-blue1,  .dots-blue2{
      opacity: 0.5;
      width: 50px;
    }
  }
  @media screen and (max-width: 950px){
    .wrap-career .wrapPath{
      width: 600px;
    }
    .wrapPath .path .pathContent{
      min-width: 500px;
    }
  }
  @media screen and (max-width: 650px){
    .wrap-career .wrapPath{
      width: 380px;
    }
    .wrapPath .path .pathContent{
      padding: 0 10px;
      min-width: 370px;
    }
    .wrapPath .path .pathImg{
      width: 360px;
    }
    .wrap-career .heading , .wrapPath .path .pathContent .contentHeading , .wrapPath .pathHeading, .wrap-career .heading{
      font-size: 20px;
    }
    .wrapPath .path .pathContent ul li, .wrapPath .pathPara, .wrap-career .careerpara{
      font-size: 16px;
    }
    .x-flame-img{
      width: 50px;
    }
    .copyright{
      height: 200px;
    }
    .copyrightline{
      font-size: 14px;
      padding: 20px 10px;
    }
  }



