*{margin: 0px; padding: 0px; box-sizing: border-box;}


body {
  font-family: "inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #484848;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6{
  letter-spacing: 0.6px;
}

p{
   font-family: "inter", sans-serif;
   letter-spacing: 0.6px;
}

a{
 text-decoration: none;
 letter-spacing: 0.6px;
}


ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}


button {
  background: none;
  border: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}


:root {
  --primary-color1: #d7172e;
  --primary-color2: #0e1728;
  --secondary-color: #373639;
  --drk-color:#2c2f34;
  --white: #fff;
  --txt-color:#55535d;
  --title-color:#36374c;
}

/*-------------------------------*/


/*------banner-------wrap------start------*/

.banner-sctn2{
  position: relative;
  background-image: url(../images/landing-bnnr-bg.webp);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}


.innr-brnn-wrp{
  width: 100%;
  padding: 50px 0px;
}

.banner-content2 h1{
  font-size: 40px;
  line-height: 54px;
  color: var(--title-color);
  font-weight: 600;
}

.banner-content2 h1 span{
  color: var(--primary-color1);
}

.banner-content2 p {
  font-size: 16px;
  line-height: 27px;
  color: var(--txt-color);
  margin-bottom: 12px;
  /* text-align: justify; */
  width: 95%;
}

.crm-mdul-title2 {
  font-size: 27px;
  margin-bottom: 3px;
  color: var(--primary-color1);
  width: 75%;
  align-items: center;
  display: flex;
  text-decoration: underline;
  font-weight: 700;
}


.crm-mdul-wrp{
  width: 80%;
  margin-top: 20px;
  border-top: 1px solid #a3a3b3;
  padding-top: 5px;
}

.crm-mdul-wrp .innr-mdul-bx{
  position: relative;
  border-bottom: 1px solid #a3a3b3;
  padding: 8px 5px;
  display: flex;
  align-items: center;
  gap: 5px 13px;
  cursor: pointer;
}

.crm-mdul-wrp .innr-mdul-bx:before{
  content: '';
  width: 55px;
  height: 2px;
  background-color: var(--primary-color1);
  position: absolute;
  bottom: -2px;
  left: 0px;
  transition: width 0.4s ease;
}

.crm-mdul-wrp .innr-mdul-bx:hover::before {
  width: 100%;              
}


.mdul-icon{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #5e5e5f;
  text-align: center;
  line-height: 48px;
  position: relative;
}

.innr-mdul-bx .mdul-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--primary-color1); 
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
  z-index: 0;
}

.innr-mdul-bx:hover .mdul-icon::before {
  transform: scale(1);
}

.mdul-icon img{
  width: 35px;
  filter: brightness(0) invert(1);
}

.innr-mdul-bx h6{
  text-align: center;
  font-size: 15px;
  line-height: 46px;
  color: var(--txt-color);
  margin-bottom: 0rem;
  transition: 0.4s ease;
}

.innr-mdul-bx:hover h6{
  color: var(--primary-color1);
}


.mdul-bttm-hdng{
  background-color: #5e5e5f;
  color: var(--white);
  padding: 12px 13px 0px;
  clip-path: polygon(0 0, 90% 0%, 97% 100%, 0px 100%);
  width: 83%;
  height: 50px;
  margin-top: 35px;
  margin-bottom: 0px;
}

.mdul-bttm-hdng h5{
  color: var(--white);
  margin-bottom: 0px;
}

/*------banner-------wrap------end------*/


/*--------title-----wrap----start-------*/

.abot-hdng-wrp2 span{
  font-size: 15px;
  position: relative;
  background-color: var(--primary-color1);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: inline-block;
  color: var(--white);
  padding: 4px 23px;
  border-radius: 3px 0px 21px 3px;
}

.abot-hdng-wrp2 h2{
 font-size: 31px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--title-color);
  line-height: 36px;
}

/*--------title-----wrap----end-------*/

/*----about--------wrap-------start------------*/

.about-sctn2{
  position: relative;
  background-image: url(../images/landing-about-bg.webp);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0px;
}


.about-img-exp-wrp{
  position: relative;
}


.abt-img{
  width: 410px;
  height: 410px;
  border-radius: 50%;
  position: relative;
  margin: 0px 0px 0px 30px;
}

.abt-img img{
  width: 410px;
  height: 410px;
  border-radius: 50%;
  object-position: center;
  object-fit: cover;
  position: relative;
  border: 5px solid var(--primary-color1);
  z-index: 1;
  
}

.abt-img:before,
.abt-img:after{
  content: '';
  border-radius: 50%;
  background-color: rgba(215, 23, 46, 0.46);
  animation: abtImgMive 3s infinite linear;
  position: absolute;
  display: inline-block;
}

.abt-img:before{
  left: -40px;
  top: -24px;
  height: 365px;
  width: 365px;
}

.abt-img:after{
  height: 365px;
  width: 365px;
  right: -56px;
  bottom: -30px;
}

@keyframes abtImgMive{
  0%{transform: translateX(0);}
  50%{transform: translateX(10px);}
  100%{transform: translateX(0);}
}

.about-exp{
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(180deg,rgba(197, 221, 241, 1) 30%, rgba(255, 199, 207, 1) 80%);
  border: 5px solid var(--primary-color1);
  text-align: center;
  position: absolute;
  bottom: -5%;
  z-index: 1;
  left: 4%;
  padding-top: 17px;
}

.about-exp h6{
  color: var(--primary-color1);
  font-size: 30px;
  font-weight: 600;
}

.about-exp p{
  color: var(--primary-color1);
  font-size: 15px;
  line-height: 18px;
}

.abt-content2{
  position: relative;
  z-index: 1;
  width: 92%;
  margin: auto;
}

.abt-innr-txt2 p{
  font-size: 15px;
  line-height: 26px;
  color: var(--txt-color);
  /* text-align: justify; */
  margin-bottom: 15px;
}

/*----about--------wrap-------end------------*/


/*-------counter------wrap-----start------*/

.counter-sctn2{
  position: relative;
  padding: 50px 0px;
  background-color: var(--primary-color1);
}


.counter-sctn2:after{
  content: '';
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-image: url(../images/crm-software-for-coaching-institutes/counter-mask.webp);
  position: absolute;
  top: 0px;
  left: 0px;
}

.innr-count2-wrp{
  display: flex;
  width: 100%;
  position: relative;
}

.innr-count2-wrp .counter-bx2{
  padding: 7px 15px;
  width: 100%;
  height: 85px;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 5px 18px;
  justify-content: center;
}



.counter-bx2-icn{
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #e2ced0;
  text-align: center;
  line-height: 52px;
  background-color: rgba(255, 255, 255, 0.29);
}

.counter-bx2-icn img{
  filter: brightness(0) invert(1);
}


.counter-bx2-txt h6{
  font-size: 30px;
  color: var(--white);
  margin-bottom: 0px;
  font-weight: 600;
}

.counter-bx2-txt h3{
  font-size: 16px;
  margin-bottom: 0px;
  line-height: 22px;
  color: var(--white);
}

/*------counter------wrap----end---------*/



/*--------crm-----features----wrap---start------*/
.lndng2_features-sctn{
  background-image: url(../images/crm-software-for-study-abroad-consultants/lndng2-feature-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 60px 0px 60px;
}


.lndng2-title h2{
  font-size: 25px;
  color: var(--primary-color1);
  position: relative;
  padding-bottom: 3px;
  margin-bottom: 56px;
}

.lndng2-title h2:after{
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: var(--primary-color1);
  width: 215px;
  height: 2px;
  margin: auto;
}

.lndng2-title h2 img{
  width: 28px;
}


.lndng2-feature-crd{
  background-color: var(--white);
  padding: 20px 20px;
  border-radius: 20px 0px 20px 0px;
  height: 215px;
  transition: all 1s ease;
  margin-bottom: 20px;
  position: relative;
  overflow:hidden;
}

.lndng2-feature-crd:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url(../images/crm-software-for-coaching-institutes/feautr-crd-shape.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  transition: width 0.5s ease;
}

.lndng2-feature-crd:hover::before {
  width: 0; 
}

.lndng2-feature-crd:hover{
  cursor: pointer;
  box-shadow: rgba(119, 120, 133, 0.39) 0px 3px 8px;
}


.lndng2-feature-icn{
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 27px;
  line-height: 57px;
  color: var(--primary-color1);
  margin: 0px auto 10px;
  transition: 0.3s ease;
  background-color: var(--white);
  border: 1px solid var(--primary-color1);

}


.lndng2-innr-feature-tx h6{
  text-align: center;
  font-size: 18px;
  color: var(--title-color);
  margin-bottom: 11px;
  font-weight: 600;
}

.lndng2-innr-feature-tx p {
  font-size: 13px;
  color: var(--txt-color);
  letter-spacing: 0.7px;
  line-height: 22px;
}


/*----------------------------*/


.lndng2_feature-slider .owl-dots {
  margin-top: 15px !important;
  display: flex;
  justify-content: center;
  gap: 0px;
}

/* Default dot */
.lndng2_feature-slider .owl-dot span {
  background: var(--white) !important;
  border: 1px solid var(--primary-color1);
}

/* Active dot */
.lndng2_feature-slider .owl-dot.active span {
  background: var(--primary-color1) !important;
}


/*----crm------features-----wrap-----end-----*/


/*-----========responsive--------start----here=============-------*/

@media only screen and (max-width:1399px){


.mdul-bttm-hdng {
  width: 90%;
}
.about-sctn2{
  overflow: hidden;
}

}
@media only screen and (max-width: 1199px){
    .lndng2-feature-crd {
   
    height: 215px;
   
    border: 1px solid #d3e5f6;
}
  .banner-content2 h1{
    font-size: 34px;
    line-height: 46px;
  }

  .crm-mdul-wrp{
    width: 100%;
  }

  .mdul-bttm-hdng{
    width: 100%;
  }

  .abt-content2{
    width: 100%;
  }

  .abt-img,
  .abt-img img{
    width: 320px;
    height: 320px;
  }

  .about-exp{
    left: 10%;
  }

  .lndng2-feature-crd{
    height: auto;
    min-height: 205px;
  }

}


/* ---------- Tablet ---------- */
@media only screen and (max-width: 991px){
  .banner-sctn2 .free-demo-form .cptcha-wrp{width: 100%;}
  .lndng2-innr-feature-tx p{margin: 0;}
      .lndng2-feature-crd {min-height: 212px;}
      .lndng2_feature-slider .owl-dots {
    margin-top: 5px !important;
   
}
  .mdul-bttm-hdng {
   
    width: 100%;
    height: 68px;
    clip-path: inherit;
}
  .banner-sctn2{
    text-align: center;
  }
.mdul-bttm-hdng h5 {
    font-size: 17px;
}
  .banner-content2{
    margin-bottom: 40px;
  }

  .banner-content2 p{
    width: 100%;
    text-align: center;
  }

  .crm-mdul-title2{
    justify-content: center;
    width: 100%;
  }

  .crm-mdul-wrp{
    width: 100%;
  }

  .innr-mdul-bx{
    justify-content: flex-start;
    text-align: left;
  }

  .mdul-bttm-hdng{
    width: 100%;
    margin: 25px auto 0;
  }

  .abt-content2{
    width: 100%;
    margin-top: 30px;
  }

  .abot-hdng-wrp2{
    text-align: center;
  }

  .abt-innr-txt2 p{
    text-align: center;
  }

  .about-img-exp-wrp{
    text-align: center;
  }

  .abt-img{
    margin: 0 auto 60px;
  }

  .about-exp{
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }

  .innr-count2-wrp{
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .innr-count2-wrp .counter-bx2{
    width: 50%;
    justify-content: center;
    text-align: center;
    height: auto;
    padding: 20px 10px;
  }

  .lndng2-title h2{
    margin-bottom: 35px;
  }

}


/* ---------- Mobile ---------- */
@media only screen and (max-width: 767px){
  .abt-img:before {
    left: -40px;
    top: -24px;
    height: 240px;
    width: 240px;
}
.abt-img:after {
    height: 240px;
    width: 240px;
    right: -56px;
    bottom: -30px;
}
  .innr-brnn-wrp{
    padding: 30px 0;
  }

  .banner-content2 h1{
    font-size: 28px;
    line-height: 40px;
  }

  .banner-content2 p{
    font-size: 15px;
    line-height: 26px;
  }

  .crm-mdul-title2{
    font-size: 22px;
  }

  .innr-mdul-bx{
    gap: 10px;
    padding: 12px 5px;
  }

  .innr-mdul-bx h6{
    font-size: 14px;
    line-height: 20px;
  }

  .mdul-bttm-hdng{
    height: auto;
    padding: 12px;
    clip-path: none;
    border-radius: 10px;
  }

  .mdul-bttm-hdng h5{
    font-size: 15px;
    line-height: 24px;
  }

  .about-sctn2{
    padding: 40px 0;
  }

  .abt-img,
  .abt-img img{
    width: 260px;
    height: 260px;
  }

  .about-exp{
    width: 110px;
    height: 110px;
    padding-top: 12px;
  }

  .about-exp h6{
    font-size: 24px;
  }

  .about-exp p{
    font-size: 13px;
  }

  .abot-hdng-wrp2 h2{
    font-size: 24px;
    line-height: 34px;
  }

  .counter-sctn2{
    padding: 35px 0;
  }

  .innr-count2-wrp .counter-bx2{
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .counter-bx2-txt h6{
    font-size: 26px;
  }

  .counter-bx2-txt h3{
    font-size: 15px;
  }

  .lndng2_features-sctn{
    padding: 40px 0;
  }

  .lndng2-title h2{
    font-size: 22px;
  }

  .lndng2-feature-crd{
    padding: 20px 15px;
        border-radius: 15px;
        min-height: 240px;
        margin-bottom: 10px;
  }

  .lndng2-innr-feature-tx h6{
    font-size: 17px;
  }

  .lndng2-innr-feature-tx p{
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }

}

@media only screen and (max-width: 575px){
  .lndng2-feature-crd {
      
        min-height: 200px;
    }
}
/* ---------- Small Mobile ---------- */
@media only screen and (max-width: 480px){

  .banner-content2 h1{
    font-size: 24px;
    line-height: 34px;
  }

  .crm-mdul-title2{
    font-size: 20px;
  }

  .abt-img,
  .abt-img img{
    width: 220px;
    height: 220px;
  }

  .abot-hdng-wrp2 h2{
    font-size: 21px;
    line-height: 30px;
  }

  .lndng2-title h2{
    font-size: 20px;
  }

}
/*-----====large----screen----start====------*/

/* @media only screen and (max-width:1199px){
  .about-sctn2 {
    overflow: hidden;
}
.abt-img:after {
            height: 220px;
        width: 220px;
        right: -11px;
    bottom: -19px;
}
.abt-img:before {
   height: 220px;
        width: 220px;
        left: -40px;
    top: -24px;
}
.abt-img {
            width: 335px;
        height: 335px;
}
.abt-img img {
            width: 335px;
        height: 335px;
}
  .banner-content2 h1 {
    font-size: 31px;
  }

  .crm-mdul-wrp {
    width: 95%;
  }

  .mdul-bttm-hdng h5 {
    font-size: 17px;
    padding-top: 4px;
  }

  .cptcha-wrp {
    width: 100%;
  }

  .counter-sctn2 {
    padding: 40px 0px;
  }

  .innr-count2-wrp .counter-bx2 {
    padding: 7px 5px;
    gap: 5px 10px;
  }

  .counter-bx2-txt h3 {
    font-size: 14px;
  }

  .lndng2_features-sctn {
    padding: 45px 0px 45px;
  }

  .lndng2-feature-crd {
    padding: 18px 14px;
    height: 261px;
  }

  .lndng2-innr-feature-tx h6 {
    font-size: 16px;
  }


  
}



@media only screen and (max-width:991px){

  .banner-content2 h1 {
    font-size: 26px;
    line-height: 34px;
    padding-bottom: 10px;
  }

   .mdul-bttm-hdng {
    width: 100%;
    clip-path: polygon(0 0, 94% 0%, 100% 100%, 0px 100%);
    height: 62px;
  }

  .innr-brnn-wrp {
    padding: 35px 0px;
  }

  .abt-img {
    margin: 0px auto 70px;
  }

  .about-exp {
    bottom: -7%;
    left: 17%;
  }

  .abot-hdng-wrp2 h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.innr-count2-wrp .counter-bx2 {
  flex-wrap: wrap;
  text-align: center;
  height: auto;
}


}


@media only screen and (max-width: 767px) {

  .mdul-bttm-hdng {
    width: 100%;
    clip-path: polygon(0 0, 86% 0%, 94% 100%, 0px 100%);
    height: 51px;
    margin-bottom: 20px;
  }

  .innr-count2-wrp {
    flex-wrap: wrap;
  }

  .innr-count2-wrp .counter-bx2 {
    justify-content: left;
    width: 50%;
    text-align: left;
  }

 
 
}



@media only screen and (max-width:575px){

  .banner-content2 p {
  font-size: 15px;
}


.crm-mdul-title2 {
  font-size: 20px;
  margin-bottom: 3px;
  width: 100%;
  font-weight: 600;
}


.mdul-icon {
  width: 43px;
  height: 43px;
  line-height: 42px;
}

.mdul-icon img {
  width: 31px;
}

.innr-mdul-bx h6 {
  text-align: left;
  font-size: 13px;
  line-height: 17px;
}

.mdul-bttm-hdng {
  margin-top: 19px;
  padding: 6px 11px 0px;
}

 .mdul-bttm-hdng h5 {
    font-size: 13px;
    padding-top: 0px;
    width: 90%;
    line-height: 19px;
  }

  .about-sctn2 {
    padding: 35px 0px;
  }

   .abt-img {
    margin: 0px auto 35px;
    height: auto;
    width: 100%;
  }

  .abt-img img {
  width: 300px;
  height: 300px;
}

.abt-img::before,
.abt-img::after {
  display: none;
}

.about-exp{
  display: none;
}

 .abot-hdng-wrp2 h2 {
    font-size: 24px;
    margin-bottom: 9px;
  }

  .abt-innr-txt2 p {
    text-align: left;
  }

   .innr-count2-wrp .counter-bx2 {
    justify-content: center;
    text-align: center;
    height: 170px;
  }


  
} */

