*{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:var(--font-family1);
   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: #2e3192;
  --primary-color2: #00aeef;
  --drk-color:#2c2f34;
  --white: #fff;
  --txt-color:#55535d;
  --title-color:#36374c;
  --gradient-col1:linear-gradient(90deg, #0278A4 28%, #00AEEF 100%);
  --font-family1: "inter", sans-serif;
  --font-family2: "Kalam", cursive;
}
.animate1{
  animation: lft-rgt 2.6s linear 0s infinite alternate;
}
@keyframes lft-rgt {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
  }
}
/*-------button-----style-1-----start----------*/
.button-style1 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background: var(--gradient-col1);
  border: 1px solid #00b1f5;
  border-radius: 40px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  transition: color 0.4s ease;
  z-index: 1;
}
/* Hover background effect */
.button-style1::before {
  content: "";
  position: absolute;
  width: 0;
  aspect-ratio: 1 / 1;
  background: var(--primary-color1);
  border-radius: 50%;
  left: -100%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.7s ease;
  z-index: -1;
}
.button-style1:hover::before {
  width: 200%;
  left: 0;
  transform: translateY(-50%) scale(1.5);
}
.button-style1:hover {
  color: #f9fafb;
  border-color: #cdcee9;
}
/*------button------style-1-----end-----------*/
/*-------button-----style-2-----start----------*/
.button-style2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 21px;
  font-size: 16px;
  font-weight: 500;
  color: var(--txt-color);
  background: var(--white);
  border: 1px solid #d3cbcb;
  border-radius: 40px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  transition: color 0.4s ease;
  z-index: 1;
}
/* Hover background effect */
.button-style2::before {
  content: "";
  position: absolute;
  width: 0;
  aspect-ratio: 1 / 1;
  background: var(--gradient-col1);
  border-radius: 50%;
  left: -100%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.7s ease;
  z-index: -1;
}
.button-style2:hover::before {
  width: 200%;
  left: 0;
  transform: translateY(-50%) scale(1.5);
}
.button-style2:hover {
  color: #f9fafb;
  border-color: #6298c7;
}
/*------button------style-2-----end-----------*/
/*----common------bttn-style-----start----------*/
.bttn-style {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 21px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background: var(--primary-color2);
  border-radius: 40px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  transition: color 0.4s ease;
  z-index: 1;
  width: fit-content;
}
/* Hover background effect */
.bttn-style::before {
  content: "";
  position: absolute;
  width: 0;
  aspect-ratio: 1 / 1;
  background: var(--gradient-col1);
  border-radius: 50%;
  left: -100%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.7s ease;
  z-index: -1;
}
.bttn-style:hover::before {
  width: 200%;
  left: 0;
  transform: translateY(-50%) scale(1.5);
}
.bttn-style:hover {
  color: #f9fafb;
}
/* Arrow icon */
.arrow {
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.7s ease;
  font-size: 15px;
  line-height: 28px;
}
/* Hover arrow */
.bttn-style:hover .arrow {
  transform: rotate(45deg);
  background: var(--primary-color1);
  border: none;
  color: var(--white);
}
/*--common----bttn-style----end-----------*/
/*--------title-------wrap------start-------*/
.title{
  margin-bottom: 45px;
}
  .title h2{
    font-size: 31px;
    margin-bottom: 7px;
    line-height: 42px;
    color: var(--title-color);
    font-weight: 600;
  }
/*--------title------wrap-----end----------*/
/*-------button----style----wrap--start-------*/
.book-demo-btn a{
  position: relative;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  padding: 11px 19px;
  display: flex;
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  background: var(--gradient-col1);
  transition: all 0.3s ease;
}
.book-demo-btn a::before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: var(--primary-color1);
}
.book-demo-btn a:hover::before {
  top: -40%;
}
.book-demo-btn .btn-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
}
.book-demo-btn .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.book-demo-btn .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.book-demo-btn:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}
.book-demo-btn:hover .btn-wrap .text-two {
  color: var(--white-color);
}
.book-demo-btn:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.book-demo-btn .btn-wrap .text-one i,
.book-demo-btn .btn-wrap .text-two i{
  width: 18px;
  height: 18px;
  background-color: var(--white);
  border-radius: 50%;
  text-align: center;
  color: var(--primary-color2);
  font-size: 11px;
  line-height: 19px;
}
/*-------button----style----wrap----end------*/
/*--------header------wrap------start--------*/
header{
  width: 100%;
  position: relative;
  padding: 5px 0;
  z-index: 99;
  background-color: rgba(240, 238, 238, 0.76);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.logo a img{
  width: 200px;
}
.contct-dtl-login-btn-wrp{
  display: flex;
  justify-content: end;
  column-gap: 20px;
  align-items: center;
}
.hdr-cont-dtl ul{
  display: flex;
  column-gap: 15px;
  margin-right: 21px;
}
.hdr-cont-dtl ul li{
  position: relative;
  padding-right: 10px;
}
.hdr-cont-dtl ul li:last-child{
  padding-right: 0px;
}
.hdr-cont-dtl ul li:after{
  content: '';
  width: 1px;
  height: 23px;
  border-right: 1px solid #b6b2b2;
  position: absolute;
  right: 0px;
  top: 4px;
}
.hdr-cont-dtl ul li:last-child:after{
  display: none;
}
.hdr-cont-dtl ul li i{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #55535d91;
  color: var(--txt-color);
  font-size: 13px;
  text-align: center;
  line-height: 30px;
  margin-right: 6px;
}
.hdr-cont-dtl ul li a{
  color: var(--txt-color);
  transition: 0.3s ease;
}
.hdr-cont-dtl ul li a:hover{
  color: var(--primary-color2);
}
/*--------header------wrap------end----------*/
/*--------banner------wrap-----start----------*/
.hero-bg{
  width: 100%;
  position: relative;
}
.hero-bg:after{
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 200px;
  height: 190px;
  background: url(../images/hero-rgt-shape.png) right top / 100% no-repeat;
}
.lrg-img-banr{
  width: 100%;
  height: 100%;
}
.bnnr-content{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
.bnr-wlcm-txt{
  background-color: rgba(196, 184, 184, 0.16);
  padding: 4px 17px;
  border-radius: 20px;
  color: var(--white);
  backdrop-filter: blur(12px);
  font-size: 15px;
  letter-spacing: 0.9px;
  margin-bottom: 16px;
  display: inline-block;
}
.innr-bnr-content h1{
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  letter-spacing: 2px;
}
.innr-bnr-content p{
  position: relative;
  font-size: 15px;
  color: #ebe9e9;
  width: 87%;
  line-height: 28px;
  letter-spacing: 1.2px;
  margin-bottom: 30px;
  padding-left: 22px;
  text-align: left;
}
.innr-bnr-content p:before{
  content: '';
  position: absolute;
  top: 7px;
  left: 0px;
  width: 1px;
  height: 75px;
  background-color: #ebe9e985;
}
.bnr-rgt-img{
  width: 100%;
  height: 520px;
}
.bnr-rgt-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bnnr-bttn-wrp{
  width: 55%;
}
.bnnr-bttn-wrp a:first-child{
  margin-bottom: 13px;
} 
/*--------banner------wrap-----end----------*/
/*------small-----title----start----*/
.smll-title{
  border-radius: 20px;
  border: 1px solid var(--primary-color2);
  padding: 3px 15px;
  font-size: 14px;
  margin-bottom: 15px;
  display: inline-block;
  color: var(--primary-color2);
}
/*------small----title----end------*/
.side-title{
  display: flex;
  column-gap: 15px;
  align-items: center;
}
.side-title h2{
  font-size: 35px;
  width: 23%;
  position: relative;
  margin-right: 35px;
}
.side-title h2 span{
  font-size: 21px;
}
.side-title h2:after{
  content: '';
  width: 1px;
  height: 86px;
  background-color: #36374c85;
  position: absolute;
  top: 0px;
  right: 0px;
}
.side-title p{
  width: 45%;
  font-size: 16px;
  line-height: 28px;
  color: var(--txt-color);
  margin-bottom: 0px;
}
/*--------about-------wrap-----start--------*/
.abt-sctn{
  position: relative;
  padding: 65px 0px 90px;
}
.about-img-wrp{
  position: relative;
}
.about-img-wrp:before{
  content: '';
  background-color: var(--primary-color2);
  position: absolute;
  top: -27px;
  left: 0px;
  width: 125px;
  height: 115px;
  border-radius: 10px;
  z-index: -1;
}
.about-img-wrp:after{
  content: '';
  border: 2px solid var(--primary-color2);
  position: absolute;
  top: 35px;
  right: 53px;
  width: 80%;
  height: 100%;
  border-radius: 21px;
  z-index: -1;
}
.abt-img{
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  margin: 30px 0px 0px 20px;
}
.abt-plane{
  position: absolute;
  top: -87px;
  width: 160px;
  left: 125px;
  transform: rotate(-5deg);
}
.about-content h2{
  font-size: 31px;
  margin-bottom: 21px;
  line-height: 42px;
  color: var(--title-color);
  font-weight: 600;
}
.about-content p{
  font-size: 15px;
  line-height: 27px;
  color: var(--txt-color);
  text-align: justify;
  margin-bottom: 20px;
}
.abt-list ul{
  display: flex;
  column-gap: 35px;
  border-top: 1px solid #cecfdd;
  padding: 20px 0px 20px;
  border-bottom: 1px solid #cecfdd;
  margin-bottom: 40px;
}
.abt-list ul li{
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.abt-list ul li .icon{
  width: 70px;
  height: 70px;
  background-color: #e1e4e5;
  border-radius: 50%;
  text-align: center;
  line-height: 62px;
}
.abt-list ul li .icon img{
  width: 50px;
}
/*----------============--------------*/
.abt-cstmr-bdge{
  position: absolute;
  border-radius: 40px;
  background-color: var(--white);
  padding: 13px 19px 13px 15px;
  top: 62%;
  right: 0px;
  border: 1px solid #cdd0e4;
}
.customer-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.avatars {
  display: flex;
}
.avatars img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--primary-color2);
  margin-left: -10px;
}
.avatars img:first-child {
  margin-left: 0;
}
.count-text h6{
  margin-bottom: 0px;
  color: var(--primary-color2);
  font-size: 21px;
  font-weight: 600;
}
.count-text p{
  margin-bottom: 0px;
  font-size: 13px;
  color: var(--txt-color);
}
/*------------============--------------*/
/*--------about-------wrap-----------end---------*/
/*--------study------abroad------wrap----start-----------*/
.study-abrd-sctn{
  background-color: rgba(0, 174, 239, 0.1);
  padding: 50px 0px;
}
.study-abroad-wrap{
  margin-top: 50px;
}
.study-abrd-crd{
  border: 1px solid rgba(0, 174, 239, 0.5);
  background-color: var(--white);
  padding: 12px 12px;
  border-radius: 13px;
}
.stdy-abrd-img{
  width: 100%;
  height: 270px;
  position: relative;
}
.stdy-abrd-img img{
  width: 100%;
  height: 100%;
}
.flag-bx{
  position: absolute;
  top: 7px;
  left: 0px;
}
.flag-bx img{
  width: 47px !important;
  height: 47px;
}
/*-------------------------*/
.study-abrd-carousel .owl-dots {
  text-align: center;
  margin-top: 25px;
}
.study-abrd-carousel .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: #bfe8f9 !important;
  display: inline-block;
  transition: all 0.3s ease;
}
.study-abrd-carousel .owl-dot.active {
  background: #00aeef !important;
}
/*-------------------------*/
/*--------study------abroad------wrap----end-----------*/
/*------Associated------wrap-----start-------------*/
.assoctd-sctn{
  background-color: var(--white);
  padding: 65px 0px;
  width: 100%;
  position: relative;
}
.assoctd-sctn:after{
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  background-image: url(../images/map-bg.png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.asso-title h2{
  text-align: center;
  font-size: 32px;
  color: var(--title-color);
  position: relative;
  z-index: 1;
}
.asso-title h2:before{
  content: '';
  position: absolute;
  left: 10%;
  top: 18px;
  width: 25%;
  height: 1px;
  background-color: #a4aab3;
  margin: auto;
  z-index: 1;
}
.asso-title h2:after{
  content: '';
  position: absolute;
  right: 10%;
  top: 18px;
  width: 25%;
  height: 1px;
  background-color: #a4aab3;
  margin: auto;
  z-index: 1;
}
.associated-wrap{
  position: relative;
  margin-top: 40px;
}
.uni-crd{
  border-radius: 7px;
  border:1px solid #ddd;
  padding: 5px 7px;
  background-color: var(--white);
  width: 100%;
  transition: 0.2s ease;
}
.uni-crd img{
  width: 130px !important;
  margin: auto
}
.uni-crd:hover{
  border: 1px solid var(--primary-color2);
}
/*------Associated------wrap-----end-------------*/
/*------form----wrap-----start------*/
.apply-form-sctn{
  position: relative;
  width: 100%;
  padding: 60px 0px;
}
.form-uni-img{
  position: relative;
  width: 100%;
  height: 500px;
}
.form-uni-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.apply-frm-para{
  margin-bottom: 25px;
  width: 45%;
}
.innr-wrp-form-img{
  width: 100%;
  display: flex;
  justify-content: space-around;
  position: absolute;
  bottom: 0px;
}
.form-stdnt-bx img{
  width: 275px;
  position: absolute;
  left: 10%;
  bottom: -54px;
  object-fit: contain;
}
.apply-form-wrp{
  background-color: var(--primary-color1);
  border-radius: 20px;
  padding: 25px 35px;
  margin-top: -16%;
  width: 365px;
  margin-bottom: 30px;
}
.apply-form-wrp h3 i{
  font-size: 17px;
}
.apply-form-wrp h3{
  color: var(--white);
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #eeeeee7d;
  padding-bottom: 5px;
  margin: auto auto 20px; 
}
.apply-form-wrp .form-group .apply-frm-lbl{
  color: #eee;
  font-size: 13px;
  padding-bottom: 5px;
  letter-spacing: 0.5px;
}
.apply-form-wrp .form-group{
  margin-bottom: 15px;
}
.apply-form-wrp .form-group .form-control,
.apply-form-wrp .form-group .form-select{
  background-color: rgba(89, 90, 153, 0.2);
  border: 1px solid #8286a999;
  color: var(--white);
  width: 100%;
  height: 40px;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 0px 10px;
}
.apply-form-wrp .form-group .form-select option{
  color: var(--txt-color);
}
.apply-form-wrp .form-group textarea.form-control{
  width: 100%;
  height: 100px;
  resize: none;
  padding-top: 7px;
}
.apply-form-wrp .form-group .form-control::placeholder{
  color: #dedee2c2;
}
.apply-form-wrp .form-group .form-control:focus,
.apply-form-wrp .form-group .form-select:focus{
  outline: none;
  border-color:var(--primary-color2);
  box-shadow: none;
}
.cptcha-wrp {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  width: 100%;
  gap: 5px 14px;
}
.innr-cptch-bx .innr-inpt-bx .form-control{
  padding: 2px 7px;
}
.rst-cptcha-icn i{
  color: #8b8b8b;
  transition: 0.4s ease;
}
.rst-cptcha-icn i:hover {
  color: var(--white);
  transform: rotate(150deg);
}
/*-----------form------wrap--------end---------*/
/*-----testimonial---------wrap-----start---------*/
.testimonial-sctn{
  padding: 10px 0px 40px;
  position: relative;
  width: 100%; 
}
.testi-crd{
  border-radius: 15px;
  border: 1px solid var(--txt-color);
  box-shadow: 1px 4px 0px 1px var(--txt-color);
  padding: 25px 20px;
  margin-bottom: 30px;
  position: relative;
}
.testimonials-carousel .owl-item.active .testi-crd{
  border: 1px solid var(--primary-color2);
  box-shadow: 1px 4px 0px 1px var(--primary-color2);
}
.testi-user-dtl h3{
  font-size: 20px;
  margin-bottom: 0px;
  color: var(--title-color);
}
.testi-user-dtl span{
  font-size: 14px;
  font-style: italic;
  color: var(--primary-color2);
}
.testi-crd .innr-up-bx{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.testi-user-dtl-bx{
  display: flex;
  justify-content: space-between;
  column-gap: 15px;
  align-items: center;
}
.testi-usr-icn img{
  width: 45px !important;
  border: 2px solid var(--primary-color2);
  border-radius: 50%;
}
.testi-content p{
  font-size: 15px;
  line-height: 26px;
  color: var(--txt-color);
  margin-bottom: 25px;
  height: 110px;
  overflow-y: scroll;
  scrollbar-width: none;
}
.testi-crd .rating ul{
  display: flex;
  column-gap: 6px;
  position: absolute;
  bottom: 15px;
  left: 19px;
}
.testi-crd .rating ul li i{
  color: #e88f1c;
  font-size: 13px;
}
.testi-quote i{
  font-size: 50px;
  color: #00aeef45;
}
/*-------------------------*/
.testimonials-carousel .owl-dots {
  text-align: center;
  margin-top: 25px;
}
.testimonials-carousel .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: #bfe8f9 !important;
  display: inline-block;
  transition: all 0.3s ease;
}
.testimonials-carousel .owl-dot.active {
  background: #00aeef !important;
}
/*-------------------------*/
/*-----testimonial---------wrap-----end--------*/
/*--------cta---------wrap-----start---------*/
.cta-sctn{
  position: relative;
  padding: 70px 0px 55px;
}
.cta-wrap{
  background-color: var(--primary-color2);
  padding: 65px 20px;
  border-radius: 15px;
  position: relative;
}
.cta-wrap:after{
  content: '';
  background-image: url(../images/cta-shape.png);
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}
.cta-lft-shape{
  border-top: 105px solid transparent;
  border-left: 160px solid var(--primary-color1);
  border-bottom: 92px solid transparent;
  border-radius: 17px 0px 0px 17px;
  position: absolute;
  left: 0px;
  top: -1px;
}
.cta-rgt-shape{
  border-top: 162px solid transparent;
  border-right: 262px solid var(--primary-color1);
  border-bottom: 34px solid transparent;
  border-radius: 0px 17px 17px 0px;
  position: absolute;
  right: 0px;
  top: 0px;
}
.inner-cta-wrp{
  display: flex;
  position: relative;
  width: 75%;
  left: 80px;
  column-gap: 34px;
  z-index: 1;
  align-items: center;
}
.cta-icon{
  width: 65px;
  height: 65px;
  background-color: var(--white);
  border-radius: 7px;
  text-align: center;
  padding: 5px;
  line-height: 50px;
}
.cta-icon img{
  width: 45px;
}
.cta-txt h6{
  font-size: 24px;
  color: var(--white);
}
.cta-txt p{
  color: #dae2e7;
  font-size: 16px;
  margin-bottom: 0px;
}
.inner-cta-wrp .bttn-style {
  background-color: var(--white);
  color: var(--primary-color2);
}
.inner-cta-wrp .bttn-style:hover{
  color: var(--white);
}
.cta-women-img{
  position: absolute;
  bottom: 0px;
  right: 75px;
  z-index: 1;
}
.cta-women-img img{
  width: 300px;
}
.arrow {
  color: var(--white);
  background-color: var(--primary-color2);
}
/*--------cta---------wrap-----end--------*/
/*------footer----wrap-----start-----*/
footer{
  background-color: #121735;
  position: relative;
  width: 100%;
  padding: 50px 0px 0px;
}
footer:after{
  content: '';
  background-image: url(../images/footer-shape.png);
  background-size: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}
.bttm-lft-shape{
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 110px;
}
.top-rgt-shape{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 110px;
}
.foot-cont-dtl{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  align-items: center;
  padding: 10px 40px;
  border-radius: 60px;
  gap: 30px;
  flex-wrap: wrap;
}
.innr-foot-bx{
  display: flex;
  position: relative;
  column-gap: 15px;
  align-items: center;
}
.innr-foot-bx .icon{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--white);
  color: var(--white);
  text-align: center;
  font-size: 15px;
  line-height: 32px;
}
.innr-foot-bx .content h6{
  font-size: 16px;
  color: #cfc7c7;
  margin-bottom: 2px;
  font-weight: 400;
}
.innr-foot-bx .content p{
  margin-bottom: 0px;
}
.innr-foot-bx .content p a{
  color: #cfc7c7;
  font-size: 13px;
  letter-spacing: 1.5px;
}
.innr-foot-bx .foot-scl-icon{
  display: flex;
  column-gap: 10px;
}
.innr-foot-bx .foot-scl-icon li a{
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-radius: 50%;
  padding: 5px;
  color: #131836;
  display: inline-block;
  text-align: center;
  font-size: 14px;
}
.foot-cont-dtl .innr-foot-bx:nth-child(3){
  width: 45%;
}
.innr-foot-bx .content{
  width: calc(100% - 45px);
}
/*-------copyright-----wrap---start-----*/
.copyright p{
  color: var(--white);
  font-size: 13px;
  text-align: center;
  padding-top: 30px;
}
/*------footer----wrap-----end-----*/
/*------breadcrumb-------wrap---start--------*/
.breadcrumb-sctn {
  content: "";
  width: 100%;
  height: 297px;
  background-position: top center;
  position: relative;
  align-items: center;
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-brdcrm {
  background: url(../images/breadcrumb-img.png);
}
.inner-brdcrmb-content h3 {
  color: var(--white);
  text-align: center;
}
.inner-brdcrmb-content ul {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.inner-brdcrmb-content ul li a {
  color: var(--white);
}
.inner-brdcrmb-content ul li {
  color: var(--primary-color2);
  position: relative;
}
.inner-brdcrmb-content ul li:after {
  content: "\f054";
  position: absolute;
  color: var(--white);
  font-size: 11px;
  font-family: fontawesome;
  padding-left: 7px;
  padding-top: 4px;
}
.inner-brdcrmb-content ul li:last-child:after {
  display: none;
}
/*------breadcrumb-------wrap---end--------*/
/*-----------About--------page--------start----------*/
.abt-pg-sctn {
  padding: 60px 0px 65px;
}
.abt-pg-sctn .abt-img{
  height: 380px;
}
.abt-pg-sctn .abt-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.abt-pg-sctn .about-img-wrp .abt-cstmr-bdge {
  top: 93%;
}
.abt-pg-sctn .about-img-wrp::after {
  top: 37px;
  right: 75px;
  width: 72%;
  height: 95%;
}
/*------dream-------about-------wrapst-----start-----------*/
.dream-about-sctn{
  position: relative;
  padding: 60px 0px;
  background: linear-gradient(270deg, rgba(0, 174, 239, 0.06) 0%, rgba(46, 49, 146, 0.06) 100%);
}
.dream-abt-img-bx{
  position: relative;
  margin-left: 50px;
}
.dream-abt-img-bx:before{
  content: '';
  border: 2px solid var(--primary-color2);
  position: absolute;
  top: 100px;
  left: -18px;
  width: 2px;
  height: 160px;
  z-index: -1;
}
.dream-abt-img-bx:after{
  content: '';
  border: 2px solid var(--primary-color2);
  position: absolute;
  top: 55px;
  right: 82px;
  width: 70%;
  height: 95%;
  border-radius: 21px;
  z-index: -1;
}
.dream-abt-img-bx img{
  border-radius: 17px;
}
.smll-dream-img-bx2{
  position: absolute;
  right: 0px;
  top: 48%;
  width: 325px;
}
.dream-abt-lft-content h2{
  font-size: 29px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 20px;
}
.dream-abt-lft-content p{
  font-size: 14px;
  text-align: justify;
  line-height: 28px;
  margin-bottom: 15px;
  color: var(--txt-color);
}
/*----------------------------------------------*/
/*---------managing--------director---wrap----start-----------*/
.manager-sctn{
  position: relative;
  width: 100%;
  padding: 50px 0px;
}
.manager-card{
  background-color: var(--primary-color2);
  padding: 20px;
  border-radius: 10px;
}
.mngr-img{
  text-align: center;
  background-color: var(--white);
  border-radius: 10px;
  padding: 50px 0px 0px;
}
.mngr-img img{
  width: 300px;
}
.mngr-des h5{
  color: var(--white);
  font-size: 20px;
  text-align: center;
  padding: 15px 0px 7px;
}
.mngr-des h6{
  color: var(--white);
  font-size: 18px;
  text-align: center;
  font-family: var(--font-family2);
  margin-bottom: 6px;
}
.mngr-scl-link ul{
  display: flex;
  justify-content: center;
  column-gap: 12px;
  border-top: 1px solid var(--white);
  padding: 20px 10px 10px;
}
.mngr-scl-link ul li a{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  display: inline-block;
  line-height: 30px;
  font-size: 14px;
  color: var(--primary-color2);
  transition: 0.5s ease;
}
.mngr-scl-link ul li a:hover{
  background-color: var(--primary-color1);
  color: var(--white);
}
.manger-right-content{
  margin-left: 15px;
}
.manger-right-content .manger-title{
  margin-bottom: 27px;
}
.manger-right-content .manger-title h2{
  font-size: 30px;
  color: var(--title-color);
  padding-bottom: 7px;
}
.manger-right-content .manger-title h5{
  font-size: 21px;
  color: var(--white);
  font-family: var(--font-family2);
  background: linear-gradient(270deg, #FFFFFF 0%, #4ACEFF 100%);
  padding: 5px 10px 4px;
  width: 85%;
}
.manger-right-content h6{
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--title-color);
}
.manger-right-content p{
  font-size: 14px;
  text-align: justify;
  line-height: 24px;
  color: var(--txt-color);
  margin-bottom: 13px;
}
/*---------managing--------director---wrap----end-----------*/
/*----about-----process---wrap----start------*/
.abt-prcess-wrap{
  background-color: var(--primary-color1);
  padding: 35px 35px;
  border-radius: 15px;
}
.about-prcess-content p{
  color: #d4d6dc;
  font-size: 14px;
  text-align: justify;
  line-height: 26px;
  margin-bottom: 19px;
}

 .abt-prcss-img {
    border-radius: 25px;
    overflow: hidden;
  }
/*-------about----process-----wrap----end------*/
/*------mission-----vision-----value-----start------*/
.mvv-sctn{
  position: relative;
  padding: 60px 0px;
  width: 100%;
  background-color: rgba(230, 247, 254, 1);
  margin-top: 65px;
}
.mvv-crd{
  background-color: var(--white);
  border-radius: 12px;
  position: relative;
  padding: 20px 15px;
  min-height: 503px;
}
.mvv-img{
  width: 100%;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.mvv-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.mvv-img:after{
  content: '';
  background-color: rgba(46, 49, 146, 0.69);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  backdrop-filter: blur(0px);
}
.lgt-blue-mvv-crd .mvv-img:after{
  background-color: rgba(0, 174, 239, 0.68);
}
.mvv-title h4{
  position: absolute;
  top: 45%;
  left: 0px;
  right: 0px;
  margin: auto;
  color: var(--white);
  z-index: 1;
  text-align: center;
}
/*------------------------*/
.mvv-icn-bdr{
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 39%;
  margin: auto;
  text-align: center;
  width: 69px;
  height: 74px;
  background: var(--white);
  clip-path: polygon(50% 0px, -4px 21%, 0px 70%, 50% 98%, 98% 72%, 120% 27%);
}
.mvv-icon {
  width: 60px;
  height: 68px;
  line-height: 64px;
  clip-path: polygon(51% 0, 0 23%, 0 75%, 50% 100%, 100% 74%, 100% 24%);
  background-color: var(--primary-color1);
  margin: auto;
}
/*---------------------------*/
.lgt-blue-mvv-crd .mvv-icon{
  background-color: var(--primary-color2);
}
.mvv-icon img{
  width: 35px;
}
.mvv-content p{
  font-size: 14px;
  line-height: 26px;
  text-align: left;
  margin-bottom: 0px;
  padding: 48px 13px 10px;
  color: var(--txt-color);
}
/*--------mission----vision-----value----end------*/
/*------about-----counter---wrap----start------*/
.counter-sctn{
  padding: 60px 0px;
  position: relative;
  width: 100%;
}
.counter-sctn .side-title h2 {
  width: 27%;
  margin-right: 25px;
}
.counter-sctn .side-title h2::after {
  height: 57px;
}
.counter-sctn .side-title p {
  width: 50%;
  margin-bottom: 0px;
}
.inner-conter-wrp{
  margin-top: 65px;
}
.innr-count-wrp{
  display: grid;
  grid-template-columns:repeat(4, 1fr);
  margin: auto;
}
.counter-bx{
  text-align: center;
}
.counter-bx-icn{
  background-color: var(--primary-color1);
  position: relative;
  width: 76px;
  height: 88px;
  margin: auto auto 17px;
  padding: 5px 10px;
  line-height: 65px;
  border-radius: 0px 0px 40px 40px;
}
.counter-bx-icn:before{
  content: '';
  position: absolute;
  left: -19px;
  top: 0px;
  border-bottom: 27px solid var(--primary-color2);
  border-left: 19px solid transparent;
}
.counter-bx-icn:after{
  content: '';
  position: absolute;
  right: -19px;
  top: 0px;
  border-bottom: 27px solid var(--primary-color2);
  border-right: 19px solid transparent;
}
.counter-bx-icn img{
  width: 48px;
}
.counter-bx-txt h6{
  font-size: 32px;
  font-weight: 600;
  color: var(--title-color);
}
.counter-bx-txt h3{
  font-size: 20px;
  color: var(--title-color);
}
/*-----about-----counter---wrap-----end--------*/
/*------about-----help-----wrap---start---------*/
.help-abt-sctn{
    width: 100%;
    position: relative;
    padding:40px 0px 65px;
}
.help-abt-img1,
.help-abt-img2{
  border-radius: 10px;
  overflow: hidden;
}
.help-abt-content{
  margin-bottom: 35px;
}
.help-abt-content h2{
  font-size: 30px;
  color: var(--title-color);
  font-weight: 600;
}
.help-abt-content p{
  font-size: 14px;
  line-height: 27px;
  text-align: left;
  margin-bottom: 20px;
  color: var(--txt-color);
}
.hlp-abt-icon-txt-wrp{
  display: flex;
  gap: 10px 15px;
  margin-bottom: 30px;
}
.hlp-abt-icon-bx{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.prim-colr1{
  background-color: var(--primary-color1);
}
.prim-colr2{
  background-color: var(--primary-color2);
}
.abt-icon-txt-bx{
  width: 90%;
}
.hlp-abt-icon-txt-bx h6{
  font-size: 18px;
  color: var(--drk-color);
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 4px;
}
.hlp-abt-icon-txt-bx p{
  font-size: 14px;
  line-height: 25px;
  color: var(--txt-color);
}
/*-------about-----help-----wrap---end---------*/
/*-----------About--------page--------end----------*/
/*-------------------login-----wrap------start-----------------------*/
.login-sctn{
  width: 100%;
  height: 100%;
  position: relative;
}
.login-wrp {
  background: var(--white);
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
  margin: 80px auto;
  width: 65%;
  border: 1px solid #e5e6f2;
  position: relative;
  overflow: hidden;
}
.login-wrp:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 40%;
  height: 100%;
  border-radius: 0px 52% 20% 0px;
  background: linear-gradient(
    60deg,
    rgba(7, 156, 221, 0.17) 0%,
    rgba(14, 64, 115, 0.09) 100%
  );
}
.login-wrp:after {
  content: "";
  width: 40%;
  height: 100%;
  position: absolute;
  right: 0px;
  transform: rotate(24deg);
  clip-path: polygon(79% 0%, 100% 10%, 28% 100%, 15% 69%);
  background-color: var(--primary-color1);
  top: 45%;
}
.login-tabs-bx {
  background-color: #e6e9f0;
  position: relative;
  border-radius: 15px 15px 0px 0px;
  width: 90%;
  margin: 46px 0px 0px auto;
}
.frm-icn i {
  position: absolute;
  left: 0px;
  top: 1px;
  width: 2.5rem;
  height: 39.5px;
  background-color: #e1e2ea;
  z-index: 9;
  border-radius: 5px 0px 0px 5px;
  line-height: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--txt-color);
}
.login-tabs-bx .nav {
  position: relative;
  z-index: 9;
  justify-content: center;
}
.login-tabs-bx .nav li {
  border-right: 1px solid #cacbd1;
  width: 25%;
  position: relative;
}
.login-tabs-bx .nav .nav-item .nav-link {
  color: #3f4753;
  font-size: 0.8rem;
  margin: auto;
}
.login-tabs-bx .nav li {
  border-right: 1px solid #cacbd1;
  width: 25%;
  position: relative;
}
.login-tabs-bx .nav li:last-child {
  border-right: none;
}
.login-tabs-bx .nav li .nav-link {
  color: #3f4753;
  font-size: 0.8rem;
  margin: auto;
  border: none;
  padding: 10px 7px;
}
.login-tabs-bx .nav li .nav-link.active,
.login-tabs-bx .nav li .show > .nav-link,
.login-tabs-bx .nav .nav-link:hover {
  color: var(--primary-color1) !important;
  background-color: transparent;
  border: none;
}
.tab-icon {
  position: absolute;
  left: 0px;
  right: 0px;
  top: -41px;
  width: 50px;
  height: 50px;
  background-color: #f0f1f4;
  border-radius: 50%;
  text-align: center;
  margin: auto;
  border: 1px solid #efd3d3;
  border-bottom: none;
  line-height: 44px;
}
.tab-icon img {
  width: 33px;
}
.login-tabs-bx .nav .nav-item:last-child {
  border-right: none;
}
.login-tabs-bx .nav-pills .nav-link.active,
.login-tabs-bx .nav-pills .show > .nav-link,
.login-tabs-bx .nav-pills .nav-link:hover {
  color: var(--primary-color1) !important;
  background-color: transparent;
}
.left-form-cotent {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.left-form-cotent img {
  width: 100%;
}
.right-form {
  position: relative;
  z-index: 1;
  background-color: #eceff4;
  width: 90%;
  margin: 0px 0px 0px auto;
  border-radius: 0rem 0rem 2rem 2rem;
}
.login-tabs-bx nav .nav-tabs {
  background-color: #eceff4;
  position: relative;
  border-radius: 15px 15px 0px 0px;
  border-bottom: none;
}
.tab-form-bx {
  width: 100%;
  margin: auto 0px auto auto;
  border: 1px solid #e4e6e7;
  padding: 1.7rem 1.6rem 1.7rem;
  border-radius: 2rem;
  background-color: var(--white);
}
.toggle-password {
  position: absolute;
  right: 19px;
  top: 16px;
  font-size: 0.65rem;
  color: #656d80;
  cursor: pointer;
  z-index: 9;
}
.right-form .form-title h4 {
  font-size: 1.3rem;
  text-align: center;
  padding-bottom: 0.2rem;
  font-weight: 600;
  position: relative;
}
.right-form .form-title h4 .uniqe-font {
  font-size: 1.1rem;
}
.form-title h4::before {
  content: "";
  width: 5rem;
  height: 0.1rem;
  background-color: var(--primary-color1);
  position: absolute;
  bottom: 0rem;
  left: 0;
}
.right-form .form-title h4::before {
  width: 2rem;
  height: 0.2rem;
  bottom: -0.04rem;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
}
.right-form .form-title h4::after {
  content: "";
  width: 6rem;
  height: 0.1rem;
  background-color: var(--title-color);
  position: absolute;
  bottom: 0rem;
  left: 0px;
  border-radius: 70%;
  right: 0px;
  margin: auto;
}
/*--------------remember--------me----------wrap------start-------------*/
.remember-chkbx {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #3d3c45;
  cursor: pointer;
}
.remember-chkbx input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkmark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  border: 1px solid #bbc5cd;
  border-radius: 4px;
  transition: all 0.3s;
}
.remember-chkbx input[type="checkbox"]:checked ~ .checkmark {
  background-color: var(--primary-color1);
  border-color: #e56f6f;
}
.remember-chkbx input[type="checkbox"]:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.remember-chkbx input[type="checkbox"]:focus ~ .checkmark {
  box-shadow: 0 0 0 2px #dfec5065;
}
.remember-chkbx:hover input[type="checkbox"] ~ .checkmark {
  border-color: #0078ac91;
}
.remember-chkbx input[type="checkbox"]:disabled ~ .checkmark {
  opacity: 0.5;
  cursor: not-allowed;
}
.remember-chkbx input[type="checkbox"]:disabled ~ .checkmark:hover {
  border-color: #4d4d4d;
}
/*--------------remember--------me----------wrap-----end------------*/
.forgot-pass-txt {
  text-align: end;
}
.forgot-pass-txt a {
  font-size: 0.82rem;
  color: #3d3c45;
  transition: 0.3s ease;
}
.forgot-pass-txt a:hover {
  color: var(--primary-color1);
}
/*---------------already----account---text---start----------*/
.already-account-txt {
  text-align: center;
  margin: 0.6rem auto 0px;
}
.already-account-txt a {
  position: relative;
  font-weight: 600;
  font-size: 0.85rem;
  color: #32333a;
  transition: 0.3s ease-out;
}
.already-account-txt a:hover {
  color: var(--primary-color);
}
.already-account-txt a::after {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -7px;
  background: var(--primary-color);
  height: 2px;
  transition: 0.3s ease-out;
}
.already-account-txt a:hover::after {
  width: 100%;
}
.already-account-txt a:hover::before {
  width: 100%;
}
/*---------------already----account---text---end----------*/
/*-------------------login-----wrap------end----------------------*/
/*---------register--------wrap-----------start-----------------*/
.reg-wrap {
  width: 90%;
}
.reg-wrap .left-form-cotent {
  width: 95%;
}
.reg-wrap:before {
  width: 36%;
}
.reg-wrap .right-form {
  width: 95%;
  border-radius: 2rem;
}
.reg-wrap:after {
  clip-path: polygon(85% 0%, 100% 10%, 45% 100%, 32% 73%);
}
.frm-field-bx {
  position: relative;
  margin-bottom: 0.7rem;
}
.frm-field-bx .form-label, .frm-textarea-bx .form-label {
  font-size: 0.8rem;
  margin-bottom: 0rem;
  color: var(--txt-color);
  letter-spacing: 0.02rem;
  font-family: var(--heading-font);
}
.frm-field-bx .input-group > .form-control,
.frm-field-bx .input-group > .form-select,
.frm-field-bx .mobile,
.frm-field-bx .p_mobile {
  border-radius: 5px !important;
  height: 2.6rem;
  padding-left: 2.8rem;
  font-size: 0.8rem;
  border: 0.08rem solid #c4c2d7;
}
.frm-field-bx .input-group > .form-control:hover,
.frm-field-bx .input-group > .form-select:hover,
.frm-field-bx .input-group > .form-control:focus,
.frm-field-bx .input-group > .form-select:focus,
.frm-textarea-bx .input-group > .form-control:focus,
.frm-textarea-bx .input-group > .form-control:hover,
.frm-field-bx .mobile:hover,
.frm-field-bx .mobile:focus,
.frm-field-bx .p_mobile:hover,
.frm-field-bx .p_mobile:focus,
.select2-container--default .select2-selection--single:hover,
.select2-container--default .select2-selection--single:focus,
.innr-cptch-bx .innr-inpt-bx > .form-control:focus {
  border-color: var(--primary-color1);
  outline: none;
  box-shadow: none;
}
.reg-wrap .frm-field-bx .input-group > .form-control,
.reg-wrap .frm-field-bx .input-group > .form-select {
  padding: 0.4rem;
}
.stdnt_qr-code img {
  width: 23%;
  border: 3px solid #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 4px 1px #26306454;
  margin-top: 23%;
  position: absolute;
  margin-left: 16.2%;
}
.partner_qr-code img {
  width: 29%;
  border: 3px solid #fff;
  box-shadow: 0px 4px 4px 2px #a5a5ce;
  border-radius: 5px;
  margin-top: 10%;
  position: absolute;
  margin-left: 32.3%;
}
/*---------register--------wrap-----------end----------------*/
/*-------------forgot--------wrap-------start----------------*/
.forgot-wrp {
  width: 50%;
  margin: 120px auto;
}
.forgot-wrp:after {
  clip-path: polygon(81% 0%, 100% 10%, 31% 100%, 21% 69%);
}
.forgot-wrp:before {
  width: 39%;
}
.forgot-wrp .left-form-cotent img {
  width: 80%;
}
.forgot-wrp .right-form {
  width: 100%;
  border-radius: 2rem;
}
/*-------------forgot--------wrap-------end-------------*/
.form-sbmt-btn{
  margin-top: 25px;
}
.form-sbmt-btn button{
  width: 100%;
  justify-content: center;
}
.frm-field-bx .rst-cptcha-icn i:hover {
  color: var(--primary-color2);
}
.frm-field-bx .innr-cptch-bx .innr-inpt-bx .form-control{
  border-radius: 5px !important;
  height: 2.6rem;
  font-size: 0.8rem;
  border: 0.08rem solid #c4c2d7;
}
.tab-form-bx .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0rem 0.5rem;
}
.tab-form-bx i.form-control-feedback.bv-icon-input-group.fa-regular.fa-xmark {
  position: absolute;
  top: 38px;
  right: 9px;
  color: rgb(235, 27, 27);
  font-size: 11px;
}
.tab-form-bx i.form-control-feedback.bv-icon-input-group.fa-regular.fa-check {
  position: absolute;
  top: 38px;
  right: 9px;
  color: rgb(2, 134, 2);
  font-size: 11px;
}
.tab-form-bx i.form-control-feedback.bv-icon-input-group.fa-regular.fa-refresh {
  position: absolute;
  top: 38px;
  right: 9px;
  color: rgb(251, 126, 16);
  font-size: 11px;
}
.tab-form-bx small.help-block {
  color: rgb(235, 27, 27);
  font-size: 12px;
  letter-spacing: .02rem;
  font-weight: 600;
}
.frm-field-bx b {
  color: rgb(235, 27, 27);
}
.has-success .form-control, .has-success .form-select, .has-success textarea {
  border: 1px dashed rgb(2, 134, 2) !important;
}
.has-error .form-control, .has-error .form-select, .has-error textarea,
.has-error .select2-selection__rendered{
  border: 1px dashed rgb(235, 27, 27)!important;
}
.reg-wrap .tab-form-bx i.form-control-feedback.bv-icon-input-group.fa-regular.fa-xmark,
.reg-wrap .tab-form-bx i.form-control-feedback.bv-icon-input-group.fa-regular.fa-check,
.reg-wrap .tab-form-bx i.form-control-feedback.bv-icon-input-group.fa-regular.fa-refresh{
  top: 43px;
  right: 19px;
}
.reg-wrap .toggle-password {
  right: 2%;
}