/*------------FONT----FAMILY-------------*/
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
input,
textarea,
select,
option {
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  font-family: "Jost", sans-serif;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
p {
  padding: 0;
  margin: 0;
  font-family: var(--ci-font-family1);
}
img {
  max-width: 100%;
  max-height: 100%;
}
a,
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

:root {
  --ci-white: #fff;
  --ci-dark: #34333d;
  --ci-p-dark: #5a5866;
  --ci-p-light:#d1d5e3;
  --ci-primary-color1:#c21f47;
  --ci-primary-drk-color2:#232331;
  --ci-font-size-p:14px;
  --ci-font-family1: "Open Sans", serif;
}
/*----------------------------------*/
/*-------TOP------HEADER------WRAP------START---------*/
.top-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  padding: 17px 0px;
}
.tp-hdr-cont-dtl-bx ul{
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
}
.tp-hdr-cont-dtl-bx ul li i{
	color:var(--ci-primary-color1) ;
}
.tp-hdr-cont-dtl-bx ul li a{
	font-size: 16px;
	color:var(--ci-p-light) ;
}
.tp-hdr-scl-icn ul{
	display: flex;
	flex-wrap: wrap;
	column-gap: 4px;
	justify-content: end;
}
.tp-hdr-scl-icn ul li a{
	font-size: 14px;
	color: var(--ci-primary-drk-color2);
	position: relative;
	height: 27px;
	width: 30px;
	text-align: center;
	background-color: #e6ebf2;
	border-radius: 6px;
	overflow: hidden;
	display: block;
	transition: all 500ms ease;
	z-index: 1;
	line-height: 27px;
}
.tp-hdr-scl-icn ul li a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--ci-primary-color1);
  transition: .1s ease-in-out;
  transition-duration: .4s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}
.tp-hdr-scl-icn ul li a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.tp-hdr-scl-icn ul li a:hover{
	color: var(--ci-white);
}
.office-hrs-txt p{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--ci-p-light);
}
.office-hrs-txt p strong{
	letter-spacing: 0.5px;
	color: var(--ci-primary-color1);
}
/*-------TOP------HEADER------WRAP------END--------*/
/*--------MAIN----HEADER----NAVBAR-----STRAT------------*/
.header-area {
  padding: 60px 0px 12px;
  position: absolute;
  background: transparent;
  width: 100%;
}
.site-logo {
  max-width: 130px;
  height: auto;
  display: flex;
  align-items: center;
}
.site-logo a {
  display: inline-block;
  position: relative;
  z-index: 9;
}
.site-logo a img{
  width: 110px;
}
.main-menu-ex li {
  position: relative;
  z-index: 9;
}
.main-menu-ex li > ul {
  opacity: 0;
  visibility: hidden;
  top: 60px;
  right: 0;
  transition: all 0.3s;
  transform: translateY(20px) rotateX(45deg);
}
.main-menu-ex li li > ul {
  left: 100%;
  right: auto;
}
.main-menu-ex li li:hover > ul {
  top: 0;
}
.main-menu-ex li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 50px;
  transition: all 0.3s;
  z-index: 99;
  transform: translateY(0);
  margin-top: 16px;
}
.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  z-index: 111;
  animation-name: fade-in-down;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  background-color: #F0F2F6;
  box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  padding-top: 0 !important;
  padding-bottom: 0;
}
@keyframes fade-in-down {
  0% {
    transform: translate3d(0, -50px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fade-in-down {
  animation-name: fade-in-down;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.header-area .header-elements .main-menu-ex ul li a {
  color: var(--ci-dark);
  font-size: 14px;
  display: block;
  font-weight: 500;
  transition: all 0.3s;
  font-family: var(--ci-font-family1);
   padding: 8px 15px;
}
.header-area .header-elements .main-menu-ex ul li a:hover {
  color: var(--ci-primary-color1);
  transition: all 0.4s;
}
.header-area .header-elements {
  background-color: #F0F2F6;
  position: relative;
  z-index: 3;
  padding: 5px 25px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-area .header-elements .main-menu-ex ul{
	display: flex;
  flex-wrap: wrap;
  column-gap: 2px;
}
.header-area .header-elements .main-menu-ex ul li ul {
  position: absolute;
  left: 0;
  top: 100%;
  border-radius: 4px;
  background: #fff;
  -webkit-backdrop-filter: blur(27px);
  backdrop-filter: blur(27px);
  width: 230px;
  box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
  padding: 10px;
  display: block;
}
.main-menu-ex ul li ul li a{
  font-size: 13px !important;
}
.header-area .header-elements .main-menu-ex ul li ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 0px;
  height: 100%;
  color: var(--ci-white);
  border-radius: 4px;
  transition: all 0.4s;
  z-index: -1;
  opacity: 1;
}
.header-area .header-elements .main-menu-ex ul li ul li a:hover::after {
  background-color: var(--ci-primary-color1);
  border-radius: 0px 4px 4px 0px;
  width: 4px;
  left: -10px;
  opacity: 1;
}
/*--------MAIN----HEADER----NAVBAR-----END------------*/
/*---------BANNER-----WRAP--------START---------*/
.hero-area5 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 680px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-area5:before{
  content: '';
  background-image: url('../images/hero5-main-image-bg.png');
  width: 50%;
  height: 100%;
  left: 0px;
  position: absolute;
  background-repeat: no-repeat;
  top: 0px;
  background-size: contain;
  opacity: 0.5;
}
.hero-area5 .main-heading{
  margin-top: 85px;
  position: relative;
}
.hero-area5 .main-heading span.span {
  display: inline-block;
  color: var(--ci-p-light);
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  border-radius: 4px;
  background-color: HSL(240, 31.6%, 22.9%);
  padding: 8px 12px;
  margin-bottom: 20px;
}
.hero-area5 .main-heading h1 {
  font-size: 50px;
  line-height: 50px;
  color: var(--ci-white);
  font-weight: 600;
  margin-bottom: 19px;
}
.hero-area5 .main-heading p {
  color: var(--ci-white);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
.hero-area5 .images-all {
  position: relative;
  height: 500px;
  margin-bottom: -50px;
  text-align: end;
}
.hero-area5 .images-all .image1 {
  position: absolute;
  top: 0px;
  right: 100px;
}
.hero-area5 .images-all .image2 {
  position: absolute;
  top: 27px;
  right: 0;
}
.hero-area5 .shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
/*--------BANNER-----WRAP-------END------------*/
.hero2-buttons{
  display: flex;
  column-gap: 15px;
  margin-top: 30px;
}
/*-------button-----style-----start----------*/
.cistdy-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  appearance: none;
  border: none;
  outline: none !important;
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  color: var(--ci-white);
  text-transform: capitalize;
  padding: 16px 16px 16px 16px;
  background-color: var(--ci-primary-color1);
  overflow: hidden;
  z-index: 1;
  border-radius: 4px;
  font-family: var(--ci-font-family1);
}
.cistdy-btn::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -1px;
  height: 100%;
  width: 102%;
  background-color: var(--ci-primary-drk-color2);
  transform: rotateY(95deg);
  transition: all 0.6s linear;
  z-index: -1;
  opacity: 0;
  border-radius: 4px;
}
.cistdy-btn:hover::after {
  transform: rotateY(0deg);
  transform-origin: bottom center;
  transition-delay: 200ms;
  transition: all 0.4s linear;
  opacity: 1;
}
.cistdy-btn:hover {
  color: var(--ci-white);
}
.cistdy-btn span {
  position: relative;
  margin-left: 4px;
  font-size: 16px;
  transition: all 0.4s linear;
  transform: rotate(-45deg);
  display: inline-block;
}
/*---------button-----style-----end----------*/
/*------border----button-----style-----start-------*/
.bdr-bttn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  appearance: none;
  border: none;
  outline: none !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: var(--ci-white);
  border: 2px solid var(--ci-white);
  text-transform: capitalize;
  padding: 14px 21px 14px 21px;
  overflow: hidden;
  z-index: 1;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s;
}
.bdr-bttn::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -1px;
  height: 100%;
  width: 102%;
  background-color: var(--ci-primary-drk-color2);
  transform: rotateY(95deg);
  transition: all 0.6s linear;
  z-index: -1;
  opacity: 0;
  border-radius: 4px;
}
.bdr-bttn:hover::after {
  transform: rotateY(0deg);
  transform-origin: bottom center;
  transition-delay: 200ms;
  transition: all 0.4s linear;
  opacity: 1;
}
.bdr-bttn:hover {
  color: var(--ci-white);
  border: 2px solid var(--ci-primary-drk-color2);
  transition: all 0.4s;
}
.bdr-bttn span {
  position: relative;
  margin-left: 4px;
  font-size: 16px;
  transition: all 0.4s linear;
  transform: rotate(-45deg);
  display: inline-block;
}
/*-----border------button----style----end---------*/
/*---------banner---------course-----finder-----form----start-------*/
.bannr-course-box {
  background-color: #f6f1f2;
  margin: -60px auto 0px;
  position: relative;
  z-index: 1;
  width: 95%;
  border-radius: 20px;
  box-shadow: rgba(160, 168, 204, 0.17) 0px -23px 25px 0px inset, rgba(80, 81, 103, 0.15) 0px -36px 30px 0px inset, rgba(153, 159, 206, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(93, 101, 226, 0.09) 0px 16px 8px, rgba(222, 220, 236, 0.09) 0px 32px 16px;
  border: 2px solid #eee;
}
.bannr-course-box::before {
  position: absolute;
  background-image: url(../images/bnnr-form-bg.jpg);
  background-size: 100%;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0px;
  top: 0px;
  border-radius: 3px;
  background-position: left center;
}
.course-srch-title {
  top: -41px;
  position: absolute;
  background-color: #c21f47;
  padding: 12px 12px 8px;
  border-radius: 15px 15px 0px 0px;
  box-shadow: 3px 3px 8px -4px #3f0621;
  border-bottom: none;
  left: 10%;
}
.course-srch-title h5 {
  font-size: 16px;
  color: #e3e3ea;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.4px;
}
.bannr-course-srch-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.course-fnd-icon{
  background-color: #f5f5f7;
  padding: 30px 17px 22px 14px;
  margin-right: 10px;
  border-radius: 20px 0px 0px 20px;
  box-shadow: rgba(84, 84, 191, 0.25) 0px 30px 60px -12px inset, rgba(117, 119, 222, 0.3) 0px 18px 36px -18px inset;
 
}
.course-fnd-icon img{
  width: 75px;
}
.innr-course-slct {
  position: relative;
 
}
.bnnr-frm-icn {
 position: absolute;
  width: 41px;
  height: 41px;
  background-color: #e2e1e8;
  color: #4b5882;
  text-align: center;
  border-radius: 2px 0px 0px 2px;
  line-height: 41px;
  top: 0px;
  left: 0px;
}
.innr-course-slct select {
      width: 209px;
    height: 44px;
    border-radius: 3px;
    line-height: 13px;
    padding: 0px 3px 0px 3px;
    font-size: 13px;
    appearance: auto;
    border: 1px solid #54638475;
    background-color: #eaeef8;
    color: #4c5067;
    text-indent: 40px;
    outline: none;
}
.innr-course-srch{
  margin-right: 20px;
}
.innr-course-srch button {
  border-bottom: 2px solid #91213c;
  padding: 12px 18px;
  
}
/*---------banner---------course-----finder-----form----end-------*/

/*--------select2-----wrap-----start----------*/

.select2-container--default .select2-selection--single{
  width: 100%;
  height: 2.62rem;
  border-radius: 5px;
  line-height: 2.62rem;
  font-size: 0.83rem;
  border: 1px solid #7477aa52;
  background-color: #fcfcfc47;
  color: #35343a;
  position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #35343a;
  line-height:2.60rem;
  font-size: 0.83rem;
  padding: 0rem 1.20rem 0rem 2.90rem;
  letter-spacing: 0.05rem;
}



.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 2.60rem !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--ci-primary-color1) !important;
}


.select2-results__option {
  font-size: 13px !important;
}


.select2-container--default .select2-results > .select2-results__options {
  scrollbar-width: thin;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #c1c2da;
  border-radius: 4px;
  height: 33px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus{
  border: 1px solid #c21f4763;
  outline: none;
  box-shadow: none;
}

/*------select2-------wrap---------end--------*/
/*---------heading-------wrap------start---------*/
.heading span{
  display: inline-block;
  color: #c21f47;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  border-radius: 4px;
  background-color: #eceef5;
  padding: 9px 14px;
  margin-bottom: 18px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.heading h2{
  font-size: 34px;
  font-weight: 700;
  color: var(--ci-primary-drk-color2);
  margin-bottom: 19px;
}
/*---------heading-------wrap------end--------*/
/*-------------------------course---------wrap-------start------------------*/
.our-course-sctn {
    position: relative;
    padding: 55px 25px 55px;
}
.our-course-sctn:before {
    content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color:#fbfbfb;
  pointer-events: none;
  z-index: -1;
}
.our-course-sctn:after {
    content: "";
  position: absolute;
  left: 0px;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/courses-bg.png);
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
  background-size: cover;
  opacity: 0.10;
}
.our-course-sctn .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
    margin: 33px auto 40px;
}
.our-course-sctn .course-block {
    min-height: 470px;
    margin-right: 5px;
    margin-left: 5px;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    will-change: flex;
}
.our-course-sctn .course-block:hover,
.our-course-sctn .course-block.active {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
}
.our-course-sctn .course-block:hover .content-box,
.our-course-sctn .course-block.active .content-box {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}
.our-course-sctn .course-block:hover .content-box .read-more,
.our-course-sctn .course-block.active .content-box .read-more {
    opacity: 1;
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}
.our-course-sctn .course-block:hover .content-box-hover,
.our-course-sctn .course-block.active .content-box-hover {
    opacity: 0;
    -webkit-transform: translateY(100);
    transform: translateY(100);
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}
.course-block {
    position: relative;
    margin-bottom: 10px;
    -webkit-transition: 0.8s cubic-bezier(0.29, 0, 0.2, 1);
    transition: 0.8s cubic-bezier(0.29, 0, 0.2, 1);
}
.course-block .active .image-box .image:before {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.course-block .active .content-box {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}
.course-block .active .content-box .read-more {
    opacity: 1;
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}
.course-block .active .content-box-hover {
    opacity: 0;
    -webkit-transform: translateY(100);
    transform: translateY(100);
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}
.course-block .inner-box {
    position: relative;
    overflow: hidden;
}
.course-block .inner-box:hover .image-box .image:before {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.course-block .inner-box:hover .content-box {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}
.course-block .inner-box:hover .content-box .read-more {
    opacity: 1;
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}
.course-block .inner-box:hover .content-box-hover {
    opacity: 0;
    -webkit-transform: translateY(100);
    transform: translateY(100);
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}
.course-block .image-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.course-block .image-box .image {
    position: relative;
    display: block;
    margin-bottom: 0;
}
.course-block .image-box .image::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(242, 245, 245, 0) 50%, rgba(12, 13, 62, 0.83) 95%);
    opacity: 0.7;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 2;
}
.course-block .image-box .image img {
    width: 100%;
    height: 470px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.course-block .content-box-hover {
    position: absolute;
    left: 0;
    bottom: 0;
    min-height: 200px;
    padding: 30px 29px 30px;
    z-index: 2;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background: #ffffffbf;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.course-block .content-box-hover .title{
    position: relative;
    color: var(--ci-dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    border-radius: 10px;
    text-align: start;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.course-block .content-box {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px 90px 20px 20px;
    z-index: 3;
    background: #c21f47d1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    opacity: 0;
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
}
.course-block .content-box .title{
    position: relative;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0;
    color: #ebe9f4;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 7px;
}
.course-block .content-box .text{
  color: var(--ci-white);
  font-size: 15px;
  line-height: 20px;
}
.course-block .content-box .read-more {
    position: absolute;
    top: 30px;
    right: 26px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    color: var(--ci-white);
    text-align: center;
    -webkit-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
    opacity: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.course-block .content-box .read-more:before {
    content: "";
    position: absolute;
    background-color: rgba(114, 18, 37, 0.36);
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: -1;
}
.course-block .content-box .read-more i {
    font-size: 16px;
}
/*----------course---------wrap-------end-----------*/
/*--------university-----logo-----slider-----wrap------start------*/
.logo-slider-area{
  padding:50px 0px 45px;
}
.heading3 h2 {
  font-size: 32px;
  line-height: 50px;
  color: var(--ci-dark);
  font-weight: 600;
  transition: all 0.4s;
  text-align: center;
  margin-bottom: 40px;
}
.university-logo-slide .single-slider{
  border-radius: 5px;
  border: 1px solid #ada3a540;
  margin: 18px 10px;
  text-align: center;
}
.university-logo-slide .single-slider img{
  width: 73%;
  margin: auto;
}
/*--------university-----logo-----slider-----wrap------end-----*/
/*-----------study----abroad-------wrap------start---------*/
.stdy-abrd-sctn{
  position: relative;
  padding: 60px 15px 240px;
  background: rgb(242,245,245);
  background: radial-gradient(circle, rgba(44, 45, 57, 0.64) 0%, rgb(35, 35, 48) 100%);
}
.study_abroad_wrap{
  margin: -200px auto 33px;
  padding: 0px 55px 0px;
}
.icon-plane {
  width: 237px;
  height: 357px;
  background-image: url(../images/stdy-abrd-plane.png);
  animation: bounce-y 10s infinite linear;
}
@-webkit-keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.stdy-abrd-sctn .icon-plane {
  left: 65px;
  top: 25px;
  position: absolute;
}
.stdy-abrd-block {
    position: relative;
    z-index: 1;
}
.stdy-abrd-block .inner-box {
    position: relative;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.stdy-abrd-block .inner-box:hover .image-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.stdy-abrd-block .inner-box:hover .image-box .image:after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 8, 43, 0.69)), to(#191623));
    background: linear-gradient(180deg, rgba(17, 8, 43, 0.69) 0%, #191623 100%);
}
.stdy-abrd-block .image-box {
    position: relative;
}
.stdy-abrd-block .image-box .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.stdy-abrd-block .image-box .image img {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.stdy-abrd-block .image-box .image:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    pointer-events: none;
    content: "";
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 23, 0)), to(#191623));
    background: linear-gradient(180deg, rgba(20, 19, 23, 0) 0%, #191623 100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.stdy-abrd-block .content-box .text {
    position: relative;
    color: #fff;
    margin-top: 21px;
    display: none;
}
.stdy-abrd-block .content-box {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px 30px 38px;
    z-index: 2;
}
.stdy-abrd-block .content-box .icon-img {
    width: 60px;
    margin-bottom: 13px;
}
.stdy-abrd-block .content-box .title {
    position: relative;
  display: block;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
  padding-right: 30px;
  font-size: 19px;
  letter-spacing: 0.5px;
}
.stdy-abrd-block .content-box .read-more {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-color-light);
    display: block;
    margin-top: 25px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.stdy-abrd-block .content-box .read-more span {
    margin-right: 4px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.stdy-abrd-block .content-box .read-more i {
    font-size: 14px;
}
.stdy-abrd-block .content-box .read-more:hover span {
    text-decoration: underline;
}
.study_abroad_carousel.owl-carousel .owl-nav button.owl-next, 
.study_abroad_carousel.owl-carousel .owl-nav button.owl-prev{
  
  width: 40px;
  height: 40px;
  background-color: #f7f6f6;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  line-height: 22px;
  box-shadow: rgba(236, 232, 233, 0.35) 0px -50px 36px -28px inset;
  opacity: 0.2;
  transition: all 300ms ease;
}
.study_abroad_carousel.owl-carousel:hover .owl-nav button.owl-next, 
.study_abroad_carousel.owl-carousel:hover .owl-nav button.owl-prev{
  opacity: 1;
}
.study_abroad_carousel.owl-carousel .owl-nav button.owl-next span, 
.study_abroad_carousel.owl-carousel .owl-nav button.owl-prev span{
  font-size: 40px;
  color: var(--ci-primary-color1);
}
.study_abroad_carousel.owl-carousel .owl-nav button.owl-next{
  right: -2%;
}
.study_abroad_carousel.owl-carousel .owl-nav button.owl-prev{
  left:-2%;
}
/*-----------study----abroad-------wrap------end---------*/
/*------------about-us---------------wrap-----start-------------------*/
.about-sctn{
  width: 100%;
  padding: 65px 40px 60px;
  background: linear-gradient(246deg, rgb(250, 250, 250) 0%, rgb(238, 246, 249) 100%, rgb(215, 235, 243) 100%);
}
.about-sctn .images {
  position: relative;
  min-height: 575px;
}
.about-sctn .images .image1 {
  position: absolute;
  left: 0px;
  top: 0;
}
.about-sctn .images .image2 {
  position: absolute;
  right: 35px;
  bottom: 0;
  z-index: 9;
}
.about-sctn .images .image2 img{
  border-radius: 2px 2px 15px 2px;
}
.about-sctn .images .image3 {
  position: absolute;
  left: 0;
  top: 100px;
}
 .overlay-anim::after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
  }
   .overlay-anim:hover::after {
    height: 100%;
    opacity: 0;
    transition: all 400ms linear;
  }
.about-sctn .buttons-about-sctn {
  display: flex;
  align-items: center;
  margin-top: 60px;
}
.about-sctn-content p{
  font-size: 15px;
  line-height: 31px;
  text-align: justify;
  color: var(--ci-dark);
  letter-spacing: 0.5px;
}
.about-sctn .abt-vrn .vision-mission-bx{
  background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 5px 20px rgb(95 95 104 / 20%);
}
.about-sctn .abt-vrn .vision-mission-bx .icon{
  border: 7px solid #afbcc81a;
}
.vision-mission-bx{
  margin-top: 25px;
  width: 90%;
}
.vision-mission-bx .icon{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #afbcc81a;
  text-align: center;
  border: 7px solid #fff;
  box-shadow: rgba(47, 38, 111, 0.11) -3px 2px 3px;
  font-size: 22px;
  line-height: 52px;
  color: #3f415d;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}
.vision-mission-bx:hover .icon{
   background-color: #c21f47;
   color: #fff;
}
.vision-mission-bx h5{
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #c3d4ed;
  color: #c21f47;
  margin-bottom: 5px;
  padding-bottom: 3px;
}
.vision-mission-bx p{
  font-size: 14px;
  line-height: 25px;
  text-align: justify;
  color: var(--ci-dark);
  
}
/*---------------about--------us--------wrap--------end---------------*/
/*--------services-----wrap-----------start--------*/
.services_sctn{
  width: 100%;
  padding: 60px 28px;
  position: relative;
  background-color: var(--ci-primary-drk-color2);
  overflow: hidden;
}
.services_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.service2-box {
  margin-top: 60px;
  padding: 55px 32px 32px 32px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1019607843);
  position: relative;
  transition: all 0.4s;
  height: 200px;
}
.service2-box::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  top: 0;
  left: 0;
  transform: rotateY(95deg);
  transition: all 0.6s linear;
  background-color: var(--ci-primary-color1);
  z-index: -1;
  opacity: 0;
}
.service2-box .icon {
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background-color: #46466B;
  position: absolute;
  top: -35px;
  left: 30px;
  transition: all 0.4s;
  color: #fff;
  font-size: 27px;
}
.service2-box .icon{
  transition: all 0.4s;
}
.service2-box .learn {
  display: inline-block;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: var(--ci-white);
  text-transform: capitalize;
  padding: 16px 22px 16px 22px;
  background-color: var(--ci-primary-color1);
  overflow: hidden;
  z-index: 1;
  border-radius: 4px;
  position: relative;
  margin-top: 24px;
  transition: all 0.4s;
}
.service2-box .learn span {
  position: relative;
  margin-left: 4px;
  font-size: 16px;
  transition: all 0.4s linear;
  transform: rotate(-45deg);
  display: inline-block;
}
.service2-box:hover {
  transition: all 0.4s;
}
.service2-box:hover::after {
  transform: rotateY(0deg);
  transition: all 0.4s linear;
  background-color: var(--ci-primary-color1);
  z-index: -1;
  opacity: 1;
}
.service2-box:hover .icon {
  background-color: var(--ci-white);
  transition: all 0.4s;
  color: var(--ci-primary-color1);
}
.service2-box:hover .icon img {
  transition: all 0.4s;
  filter: none;
}
.service2-box:hover .learn {
  color: var(--vtc-bg-main-bg-2);
  background-color: var(--ci-white);
  transition: all 0.4s;
}
.service-content h4{
  font-size: 22px;
  color: var(--ci-white);
  padding-bottom: 15px;
  letter-spacing: 0.4px;
}
.service-content p{
  font-size: 15px;
  color: var(--ci-white);
}
.see-all-btn{
  text-align: center;
  margin: 45px auto 0px;
  position: relative;
  background-color: #3939445e;
  width: fit-content;
  padding: 5px 19px;
  border-radius: 6px;
  box-shadow: rgba(81, 36, 70, 0.25) 0px 30px 60px -12px inset, rgba(104, 40, 58, 0.3) 0px 18px 36px -18px inset;
}
.see-all-btn:hover{
  background-color: var(--ci-primary-color1);
  color:var(--ci-white);
}
.see-all-btn a{
  font-size: 19px;
  color: var(--ci-p-light);
  transition:all 0.4s ;
}
.see-all-btn:hover a{
  color: var(--ci-white);
}
.see-all-btn a span {
  display: inline-block;
  transform: rotate(-45deg);
  transition: all 0.4s;
  font-size: 14px;
}
.see-all-btn:hover a span {
  transform: rotate(-0deg);
}
/*--------services------wrap------end--------------*/
/*---------cta-------wrap-------start---------*/
.cta-one {
  position: relative;
  padding: 70px 0;
  background-color: var(--ci-primary-color1);
  overflow: hidden;
}
.cta-one .container {
  position: relative;
  z-index: 2;
}
.cta-one__content {
  text-align: center;
}
.cta-one__title {
  margin-bottom: 31px;
  font-size: 36px;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}
.cta_content{
  width: 60%;
  margin: auto;
  font-size: 17px;
  line-height: 30px;
  color: #e7e8ef;
  letter-spacing: 0.4px;
}
.cta-one__image-one {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 33px;
  bottom: 0;
  animation: moveHorizontal 2s linear infinite;
  z-index: 1;
  width: 288px;
}
@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.cta-one__image-two {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 90px;
  bottom: 0;
  z-index: 1;
  animation: moveHorizontal 2s linear infinite;
  width: 221px;
}
.cta-one__shape-box-one {
  width: 289px;
  height: 307px;
  background-color: RGBA(139, 6, 38, 0.26);
  position: absolute;
  top: 43px;
  left: 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 846.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M805 8985 c-7 -10 -33 -17 -75 -20 -66 -6 -168 -25 -275 -52 -86 -22 -352 -108 -407 -132 l-48 -20 0 -4152 c0 -3317 3 -4150 12 -4146 7 3 33 12 58 22 25 9 54 21 65 26 11 4 43 17 71 28 120 46 331 144 639 296 182 89 364 177 405 195 41 17 93 40 115 49 22 10 59 25 83 35 23 9 59 23 80 31 20 8 62 22 92 31 30 9 70 23 88 30 18 8 40 14 49 14 9 0 39 6 67 14 123 35 209 46 369 46 165 0 219 -7 367 -52 129 -39 278 -104 366 -160 23 -15 56 -35 75 -45 88 -48 331 -222 485 -348 305 -249 494 -370 714 -459 36 -15 74 -31 85 -35 11 -5 37 -16 58 -25 21 -9 44 -16 52 -16 8 0 29 -6 47 -14 95 -41 308 -88 523 -116 103 -13 606 -13 710 0 275 36 586 108 767 179 12 5 43 17 68 26 88 34 108 43 310 143 204 101 353 191 505 305 302 228 579 531 747 817 40 68 168 324 188 375 51 133 66 173 83 235 43 154 75 299 82 383 5 48 11 67 21 67 22 0 21 518 -1 534 -8 6 -17 34 -20 61 -10 87 -47 255 -77 340 -5 17 -13 44 -18 60 -26 95 -66 189 -160 380 -91 183 -125 241 -229 395 -180 266 -467 588 -802 898 -126 118 -279 252 -350 307 -21 17 -102 82 -181 145 -79 64 -201 161 -273 215 -202 155 -382 298 -534 423 -129 107 -351 294 -430 362 -42 36 -90 77 -107 90 -17 14 -106 88 -199 165 -964 803 -1550 1225 -2134 1534 -238 126 -443 222 -606 284 -22 8 -59 22 -82 31 -102 38 -181 66 -218 76 -16 4 -66 18 -110 30 -44 12 -96 26 -115 30 -19 4 -55 12 -80 18 -111 27 -198 42 -240 43 -63 2 -105 13 -102 27 1 9 -67 12 -281 12 -240 0 -284 -2 -292 -15z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 846.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M805 8985 c-7 -10 -33 -17 -75 -20 -66 -6 -168 -25 -275 -52 -86 -22 -352 -108 -407 -132 l-48 -20 0 -4152 c0 -3317 3 -4150 12 -4146 7 3 33 12 58 22 25 9 54 21 65 26 11 4 43 17 71 28 120 46 331 144 639 296 182 89 364 177 405 195 41 17 93 40 115 49 22 10 59 25 83 35 23 9 59 23 80 31 20 8 62 22 92 31 30 9 70 23 88 30 18 8 40 14 49 14 9 0 39 6 67 14 123 35 209 46 369 46 165 0 219 -7 367 -52 129 -39 278 -104 366 -160 23 -15 56 -35 75 -45 88 -48 331 -222 485 -348 305 -249 494 -370 714 -459 36 -15 74 -31 85 -35 11 -5 37 -16 58 -25 21 -9 44 -16 52 -16 8 0 29 -6 47 -14 95 -41 308 -88 523 -116 103 -13 606 -13 710 0 275 36 586 108 767 179 12 5 43 17 68 26 88 34 108 43 310 143 204 101 353 191 505 305 302 228 579 531 747 817 40 68 168 324 188 375 51 133 66 173 83 235 43 154 75 299 82 383 5 48 11 67 21 67 22 0 21 518 -1 534 -8 6 -17 34 -20 61 -10 87 -47 255 -77 340 -5 17 -13 44 -18 60 -26 95 -66 189 -160 380 -91 183 -125 241 -229 395 -180 266 -467 588 -802 898 -126 118 -279 252 -350 307 -21 17 -102 82 -181 145 -79 64 -201 161 -273 215 -202 155 -382 298 -534 423 -129 107 -351 294 -430 362 -42 36 -90 77 -107 90 -17 14 -106 88 -199 165 -964 803 -1550 1225 -2134 1534 -238 126 -443 222 -606 284 -22 8 -59 22 -82 31 -102 38 -181 66 -218 76 -16 4 -66 18 -110 30 -44 12 -96 26 -115 30 -19 4 -55 12 -80 18 -111 27 -198 42 -240 43 -63 2 -105 13 -102 27 1 9 -67 12 -281 12 -240 0 -284 -2 -292 -15z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
  animation: moveHorizontal2 2s linear infinite;
}
.cta-one__shape-box-two {
  width: 715px;
  height: 475px;
  background-color: RGBA(139, 6, 38, 0.23);
  position: absolute;
  right: -25px;
  bottom: 0;
  border-radius: 50% 90% 0% 108%;
}
.cta-one__shape-one {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 90px;
  left: 135px;
  animation: zoomOut 2s linear infinite;
}
.cta-one__shape-two {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 92px;
  bottom: 47px;
  animation: zoomOut 2s linear infinite;
}
/*----------cta-----button---start---------*/
.cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  -webkit-appearance: none;
  border: 2px solid #fff;
  outline: none !important;
  padding: 9px 9px 9px 15px;
  background-color: #FAF9FF2E;
  font-size: 16px;
  color: #F6F6F6;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 6px;
  z-index: 1;
  transition: 500ms;
  margin-top: 30px;
}
.cta_btn::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0px;
  background-color: #39D4D6;
  z-index: -1;
  transition: all 500ms ease;
}
.cta_btn:hover::after {
  width: 100%;
  left: 0;
}
.cta_btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 37px;
  background-color: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  transition: all 500ms ease;
}
.cta_btn__icon__inner {
  display: inline-flex;
  font-size: 13px;
  color: #C21F47;
  transition: all 500ms ease;
}
.cta_btn:hover .cta_btn__icon__inner {
  color: #39D4D6;
  animation: slideLeft 0.4s;
}
.cta_btn--normal {
  padding: 13.5px 25px;
  border-radius: 10px;
}
.cta_btn--black {
  background-color: #20104B;
}
.cta_btn--black::after {
  background-color: #674CEF;
}
.cta_btn--black:hover .cta_btn__icon__inner {
  color: #674CEF;
}
.cta-one .cta_btn::before, .cta-one .cta_btn::after {
  background-color: #232331;
}
.cta-one .cta_btn:hover .cta_btn__icon__inner {
  color: #232331;
}
.cta-one .cta_btn:hover{
  color: #fff;
  border-color: #232331;
}
/*----------cta-----button---start---------*/
/*---------cta------wrap----end-----------*/
/*----------------testimonials-------wrap-----------start----------*/
.testimonial-sctn{
  padding: 60px 50px 55px;
  width: 100%;
  position: relative;
}
.testimonial-sctn:after{
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/testimonial-bg.png);
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
  background-size: cover;
  
}
.testimonial-slider{
  margin-top: 30px;
  position: relative;
}
.testi-bx{
  position: relative;
    padding: 10px 19px 15px;
    margin: 0 10px 20px;
    background: #fff;
    border-radius: 7px;
    border: 1px solid #e6e8f0;
    box-shadow: 0 10px 10px rgb(0 0 0 / 24%);
     min-height: 410px; 
}
.testi-bx:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  left: 30px;
  width: 100px;
  height: 143px;
  opacity: 0;
  border-radius: 100px;
  background-color: var(--ci-primary-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testi-bx:hover:before {
  width: 100%;
  height: 100%;
  opacity: 1;
  left: 0;
   border-radius: 7px;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}
.testi-bx .author-box {
    position: absolute;
  padding: 10px;
  background: #f4f4f4;
  border-radius: 5px;
  width: 94%;
  bottom: 17px;
  left: 0px;
  right: 0px;
  margin: auto;
}
.author-box .author-image{
  position: absolute;
    width: 75px;
    height: 75px;
    border: 4px solid #fff;
    border-radius: 50%;
    top: -39px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    overflow: hidden;
}
.author-box .author-image img{
  width: 100%;
    height: 100%;
    object-fit: cover
}
.author-box .author-info{
    text-align: center;
    padding-top: 37px;
    padding-bottom: 15px
}
.testi-bx:hover .author-box .image-box::before {
  height: 100%;
}
.testimonial-slider{
  position: relative;
}
.slick-slider .custom-slick-prev, .slick-slider .custom-slick-next{
  font-size: 20px;
  position: absolute;
  width: 40px;
  height: 40px;
  background: #eef0f7;
  color: #c21f47;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.slick-slider .custom-slick-prev:hover, .slick-slider .custom-slick-next:hover{
  background: #c21f47;
  color: #fff;
}
.slick-slider .custom-slick-prev{
  left: -50px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.slick-slider .custom-slick-next{
  right: -50px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.testimonial-slider:hover .custom-slick-prev{
    left: 0;
  visibility: visible;
  opacity: 1;
}
.testimonial-slider:hover .custom-slick-next{
   right: 0;
  visibility: visible;
  opacity: 1;
}
.icon-quote-2 {
  font-size: 47px;
  color: #fff;
  position: relative;
}
.testi-bx .author-box .author-info .name {
  position: relative;
  color: var(--ci-dark);
  font-weight: 700;
  letter-spacing:0.5px;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.counter_box{
  padding: 40px 0;
    background: rgb(244 244 244 / 90%);
    backdrop-filter: blur(10px);
}
.testi-bx:hover .author-box .author-info .designation {
  color: var(--ci-white);
}
.testi-bx:hover .author-box{
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
}
.testi-bx:hover .author-box .author-info .name{
  color: #c21f47;
}
.testi-bx .author-box .author-info .designation {
  position: relative;
  color: var(--ci-p-dark);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testi-bx .author-box .author-info .rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testi-bx .author-box .author-info .rating li {
  position: relative;
  font-size: 13px;
  margin-right: 8px;
  color: #f09c1a;
  text-shadow: 2px 1px 2px #a3530c;
  transition: all 300ms ease;
}
.testi-bx .text {
 position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 28px;
  transition: all 300ms ease;
  color: var(--ci-p-dark);
  text-align: left;
}

.testi-bx:hover .content .text {
  color: var(--ci-white);
}
/*----------------testimonials-------wrap-----------end----------*/
/*---------faq--------counter-----wrap-------start--------*/
.faq_counter-sctn{
  width: 100%;
  position: relative;
  padding: 65px 20px 45px;
}
.faq_counter-sctn .faq-one__image-inner {
  /*width: 641px;
  height: 525px;*/
  position: absolute;
  left: 0;
  bottom: 64px;
  /*-webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 738.000000">  <g transform="translate(0.000000,738.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M4944 7371 c9 -14 -15 -19 -121 -26 -250 -15 -653 -85 -968 -170 -111 -29 -410 -124 -486 -154 -13 -5 -44 -17 -69 -26 -25 -10 -58 -23 -75 -31 -16 -7 -55 -22 -85 -34 -84 -34 -443 -206 -500 -240 -8 -5 -67 -40 -130 -76 -815 -474 -1494 -1156 -1978 -1984 -72 -123 -200 -383 -252 -510 -12 -30 -28 -68 -35 -85 -7 -16 -20 -47 -29 -68 -9 -21 -16 -44 -16 -52 0 -7 -6 -26 -14 -42 -8 -15 -22 -55 -32 -88 -9 -33 -23 -78 -30 -100 -22 -72 -50 -186 -84 -345 -23 -107 -31 -208 -37 -460 -5 -256 1 -356 33 -540 32 -184 88 -411 120 -488 8 -18 14 -39 14 -47 0 -8 6 -29 14 -47 8 -18 22 -53 31 -78 27 -67 48 -115 99 -220 133 -275 264 -459 481 -675 251 -252 537 -438 875 -570 25 -9 60 -23 78 -31 18 -8 39 -14 47 -14 8 0 29 -6 47 -14 87 -36 321 -91 513 -120 201 -30 307 -36 630 -36 309 0 411 5 610 31 44 6 112 14 150 19 39 4 95 13 125 19 30 7 89 19 130 27 317 66 743 188 990 284 30 12 70 25 89 30 18 5 38 13 44 19 6 6 19 11 28 11 10 0 30 6 46 14 15 8 48 22 73 31 25 10 59 23 75 31 17 7 55 22 85 34 49 20 101 42 195 85 157 70 444 212 580 286 50 26 97 52 105 56 8 4 47 25 85 48 39 22 77 44 85 48 8 4 29 16 45 27 17 11 39 24 50 30 11 6 34 19 50 30 17 11 37 23 45 28 43 22 251 160 435 286 68 48 309 229 331 250 6 6 42 36 79 66 248 201 535 485 732 725 88 107 219 286 268 366 174 283 241 419 339 687 45 122 105 370 107 437 2 58 13 100 27 98 9 -2 12 69 12 293 0 249 -2 299 -15 308 -9 7 -16 37 -20 81 -7 90 -33 246 -51 311 -8 28 -14 59 -14 70 0 10 -6 39 -14 64 -8 25 -29 90 -46 145 -84 269 -212 518 -388 755 -106 142 -360 398 -497 501 -338 252 -627 394 -1105 543 -228 71 -734 165 -895 167 -92 1 -160 13 -158 27 2 9 -94 12 -428 12 -251 0 -428 -4 -425 -9z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 738.000000">  <g transform="translate(0.000000,738.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M4944 7371 c9 -14 -15 -19 -121 -26 -250 -15 -653 -85 -968 -170 -111 -29 -410 -124 -486 -154 -13 -5 -44 -17 -69 -26 -25 -10 -58 -23 -75 -31 -16 -7 -55 -22 -85 -34 -84 -34 -443 -206 -500 -240 -8 -5 -67 -40 -130 -76 -815 -474 -1494 -1156 -1978 -1984 -72 -123 -200 -383 -252 -510 -12 -30 -28 -68 -35 -85 -7 -16 -20 -47 -29 -68 -9 -21 -16 -44 -16 -52 0 -7 -6 -26 -14 -42 -8 -15 -22 -55 -32 -88 -9 -33 -23 -78 -30 -100 -22 -72 -50 -186 -84 -345 -23 -107 -31 -208 -37 -460 -5 -256 1 -356 33 -540 32 -184 88 -411 120 -488 8 -18 14 -39 14 -47 0 -8 6 -29 14 -47 8 -18 22 -53 31 -78 27 -67 48 -115 99 -220 133 -275 264 -459 481 -675 251 -252 537 -438 875 -570 25 -9 60 -23 78 -31 18 -8 39 -14 47 -14 8 0 29 -6 47 -14 87 -36 321 -91 513 -120 201 -30 307 -36 630 -36 309 0 411 5 610 31 44 6 112 14 150 19 39 4 95 13 125 19 30 7 89 19 130 27 317 66 743 188 990 284 30 12 70 25 89 30 18 5 38 13 44 19 6 6 19 11 28 11 10 0 30 6 46 14 15 8 48 22 73 31 25 10 59 23 75 31 17 7 55 22 85 34 49 20 101 42 195 85 157 70 444 212 580 286 50 26 97 52 105 56 8 4 47 25 85 48 39 22 77 44 85 48 8 4 29 16 45 27 17 11 39 24 50 30 11 6 34 19 50 30 17 11 37 23 45 28 43 22 251 160 435 286 68 48 309 229 331 250 6 6 42 36 79 66 248 201 535 485 732 725 88 107 219 286 268 366 174 283 241 419 339 687 45 122 105 370 107 437 2 58 13 100 27 98 9 -2 12 69 12 293 0 249 -2 299 -15 308 -9 7 -16 37 -20 81 -7 90 -33 246 -51 311 -8 28 -14 59 -14 70 0 10 -6 39 -14 64 -8 25 -29 90 -46 145 -84 269 -212 518 -388 755 -106 142 -360 398 -497 501 -338 252 -627 394 -1105 543 -228 71 -734 165 -895 167 -92 1 -160 13 -158 27 2 9 -94 12 -428 12 -251 0 -428 -4 -425 -9z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
  animation: moveHorizontal 2s infinite linear;*/
}
.faq_counter-sctn .faq-one__image-inner img {
  width: 636px;
  opacity: 1;
  object-fit: cover;
  height: 625px;
  max-width: 100%;
}
@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/*----==================funfact---===---counter=========================---*/
.funfact-one .container {
  position: relative;
  z-index: 1;
}
.funfact-one__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1rem;
}
.funfact-one__item {
  position: relative;
    padding: 10px 10px 18px 10px;
    text-align: center;
    border-radius: 10px;
    /*border: 1px solid #DBD8E6;*/
    transition: all 500ms ease;
}
.funfact-one__item:before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-radius: 10px;
  transition: all 0.6s linear;
}
.funfact-one__item::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  width: 0;
  height: 0;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-radius: 10px;
  transition: all 0.6s linear;
}
.funfact-one__item:hover::before, .funfact-one__item:hover::after {
  border-color:  #c21f47;
  width: 100%;
  height: 100%;
}
.funfact-one__icon {
  margin: 0 auto 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
}
.funfact-one__icon__inner {
  display: inline-flex;
  font-size: 42px;
  color:  #c21f47;
}
.funfact-one__item--secondary .funfact-one__icon {
  /*background-color: #39D4D6;*/
}
.funfact-one__item--primary .funfact-one__icon {
  /*background-color: #EF802E;*/
}
/*.funfact-one__item:hover .funfact-one__icon {
  background-color: #674CEF;
}*/
.funfact-one__item:hover .funfact-one__icon__inner {
  animation: slideTop 0.4s;
}
@keyframes slideTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
.funfact-one__title {
  margin-bottom: 1px;
  display: flex;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.388;
  transition: all 500ms ease;
}
.funfact-one__text{
  font-size: 15px;
    color: var(--ci-dark);
    font-weight: 400;
}
/*--================faq=========start==============--*/
.faq-all-area{
  margin-left: 25px;
}
.faq-all-area .accordion-item{
  margin-bottom: 15px;
  border:none;
/*  background: radial-gradient(circle, rgba(242,245,245,1) 0%, rgba(186,211,246,1) 100%);*/
}
.faq-all-area .accordion-item .accordion-button:not(.collapsed) {
  color: var(--ci-dark);
  box-shadow: none !important;
  border-color: transparent !important;
  background-color: #eef2f6 !important;
  border-radius: 8px 8px 0px 0px !important;
}
.faq-all-area .accordion-item .accordion-body {
  box-shadow: rgba(89, 87, 134, 0.1) 0px 10px 15px -3px, rgba(88, 91, 129, 0.05) 0px 4px 6px -2px;
  font-size: 15px;
  line-height: 27px;
  padding: 13px 15px;
  text-align: justify;
  color: var(--ci-p-dark);
  border-top: none !important;
  border: 1px solid #efeef6;
}
.faq-all-area .accordion-flush .accordion-item .accordion-button {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: rgba(73, 76, 110, 0.12) 4px 3px 15px;
  border: 5px solid #dddddd70;
}
/*---------faq--------counter-----wrap------end-------*/
/*------------blog----------wrap---------style-----------*/
.blog-sctn{
  padding: 60px 50px 60px;
}
.blog-sctn .slider-rgt-buttons {
  text-align: end;
}
.blog-sctn .slider-rgt-buttons button {
  height: 48px;
  width: 48px;
  border: none;
  border-radius: 4px;
  background-color: #eef0f7;
  margin-right: 10px;
  color: var(--ci-primary-color1);
  transition: all 0.4s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px -5px, rgba(0, 0, 0, 0.04) 0px 7px 7px -5px;
}
.blog-sctn .slider-rgt-buttons button:hover {
  color: var(--ci-white);
  background-color: var(--ci-primary-color1);
  transition: all 0.4s;
}
.blog-slider{
  margin-top: 50px;
}
.blog-card{
  position: relative;
  padding: 24px 24px 17px;
  background-color: #FFFFFF;
  border: 1px solid #D8D8E6;
  border-radius: 8px;
  margin: 0px 10px;
}
.blg-crd-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 17px;
}
.blg-crd-img img{
  border-radius: 15px;
  transition: 0.5s;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.blog-card:hover .blg-crd-img img {
  transform: scale(1.1);
}
.blog-card .tags{
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.blog-card .tags li i{
  color: var(--ci-primary-color1);
  font-size: 16px;
}
.blog-card .tags li{
  color: #2a2b3c;
  font-size: 16px;
}
.blog-card h4{
  font-size: 19px;
  padding-bottom: 13px;
  line-height: 25px;
  color: #454a5e;
}
.blog-card p{
  font-size: 15px;
  color: #333444;
  letter-spacing: 0.4px;
  padding-bottom: 10px;
}
.blog-card .blog1-border {
  background-color: rgba(217, 108, 118, 0.17);
  width: 100%;
  height: 1px;
  margin-bottom: 12px;
}
.blog-card .learn {
  display: inline-block;
  color: #fdfdfd;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  margin-top: 18px;
  transition: all 0.4s;
  width: 100%;
  background-color: #c21f47;
  text-align: center;
  padding: 9px 0px;
  border-radius: 8px;
}
.blog-card:hover  .learn{
  background-color: var(--ci-primary-drk-color2);
}
.blog-card .learn span {
  display: inline-block;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.blog-card:hover .learn span {
  transform: rotate(-0deg);
}
.blog-bx {
    position: relative;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    z-index: 1;
}
.gradient-border {
        border: 1px solid #bfc2d2;
}
.gradient-border::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    border-radius: 8px;
    z-index: -1;
}
.lrg-blog-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top center;
    border-radius: 7px;
}
.blog-admin-date-bx ul {
    display: flex
;
    column-gap: 10px;
    justify-content: space-between;
    padding: 3px 15px;
    position: absolute;
    background-color: #c21f47;
    left: 30px;
    border-radius: 15px;
    box-shadow: -1px 0px 6px -1px #353542de;
    margin-top: -15px;
}
/*.lft-wrp-blg-pg .blog-admin-date-bx ul {
    column-gap: 19px;
    padding: 4px 16px;
    top: -16px;
    left: 18px;
}*/
.blog-admin-date-bx ul li {
    font-size: 0.8rem;
    color: #fff;
}
.lft-wrp-blg-pg .blog-admin-date-bx ul li {
    font-size: 1rem;
}
.blog-pg-content {
    padding: 2rem 1.20rem 0.50rem;
}
.blog-pg-content h4 {
        color: #454a5e;
    font-size: 21px;
    padding-bottom: 13px;
    line-height: 33px;
}
.blog-pg-content p {
    font-size: 15px;
    color: #3b3c4a;
    letter-spacing: 0.4px;
    padding-bottom: 10px;
    text-align: justify;
    line-height: 26px;
}
.searchBox {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #e5e8ed;
    border-radius: 50px;
    position: relative;
    border: 1px solid #3c3f483b;
    margin-bottom: 1.70rem;
}
.searchInput {
    border: none;
    background: none;
    outline: none;
    color: #35343a;
    font-size: 1rem;
    padding: 1rem 4rem 1rem 1rem;
    width: 100%;
}
.searchButton {
    color: #fff;
    position: absolute;
    right: 4px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #c21f47;
    border: 0;
    display: inline-block;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    box-shadow: inset 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.rcnt-blog-sidebar {
    border-radius: 1rem;
    border: 1px solid #bfc2d2;
    padding: 1rem 1rem;
    background-color: #fff;
    position: relative;
}
.rcnt-blog-sidebar h5 {
    font-size: 1.50rem;
    padding-bottom: 0.40rem;
    font-weight: 700;
    color: #2f2e36;
    position: relative;
    margin-bottom: 1.90rem;
}
.rcnt-blog-sidebar h5:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #b5b4bd8a;
    position: absolute;
    bottom: 0px;
}
.rcnt-blog-sidebar h5:after {
    content: '';
    width: 75px;
    height: 4px;
    clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
    background-color: #c21f47;
    position: absolute;
    bottom: -1px;
    left: 15px;
}
.rcnt-multi-post {
    display: flex;
    column-gap: 9px;
    border: 4px double #d8d8e187;
    border-radius: 5px;
    background-color: #fff2f6;
    margin-bottom: 0.80rem;
}
.rcnt-side-img {
    width: 36%;
}
.rcnt-side-img .blg-sml-img{
  width: 100%;
}
.rcnt-side-img .blg-sml-img img{
    width: 110px;
    height: 72px;
    object-fit: cover;
    object-position: center;
}
.rcnt_side_rght-content {
    padding-right: 0.50rem;
    width: 90%;
}
.rcnt_side_rght-content .date {
    font-size: 0.80rem;
    font-weight: 600;
    color: #c21f47;
    background-color: #b32c2c1f;
    padding: 0.20rem 0.50rem;
    letter-spacing: .05rem;
    border-radius: 5px;
}
.rcnt_side_rght-content h6 {
    line-height: 1.20rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rcnt_side_rght-content h6 a {
    font-size: 15px;
  color: #3d3d42;
  letter-spacing: .02rem;
  transition: 0.4s ease;
  padding-top: 0.30rem;
  line-height: 21px;
  display: block;
}
/*----------blog---------wrap--------end----------------*/
/*----------footer-------wrap--------style---------start-----------*/
.footer{
  width: 100%;
  position: relative;
  padding: 50px 0px 70px;
  background-position: bottom right;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer:before{
  content: '';
  width: 94%;
  height: 15px;
  background-color: #c21f47;
  display: block;
  position: absolute;
  top: -8px;
  margin: auto;
  left: 0px;
  right: 0px;
  border-radius: 6px;
  box-shadow: 2px 4px 2px #1d1d26;
}
.single-footer-items h3{
  font-size: 23px;
  color: var(--ci-white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 9px;
}
.single-footer-items h3:before{
  content: '';
  width: 7px;
  height: 2px;
  background-color: #c21f47;
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-radius: 20px;
}
.single-footer-items h3:after{
  content: '';
  width: 41px;
  height: 2px;
  background-color: #c21f47;
  position: absolute;
  left: 10px;
  bottom: 0px;
  border-radius: 20px;
}
.foot-abt-para p{
  font-size: 14px;
  color: var(--ci-p-light);
  line-height: 23px;
  text-align: justify;
  width: 87%;
}
.single-footer-items .menu-list li{
    padding-bottom: 11px;
    position: relative;
    padding-left: 16px;
}
.single-footer-items .menu-list li:before{
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid #c21f47;
  display: block;
  position: absolute;
  left: 0px;
  top: 9px;
}
.single-footer-items .menu-list li a{
    color: var(--ci-p-light);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s  ease-in;
}
.single-footer-items .menu-list li a:hover{
  color: #c21f47;
  padding-left: 2px;
}
.contact-box ul li{
   display: flex;
   padding-bottom: 11px;
}
.contact-box ul li i{
  color: #c21f47;
  padding-top: 5px;
  padding-right: 9px;
}
.contact-box ul li a{
  color: var(--ci-p-light);
  font-size: 15px;
  font-weight: 600;
}
.footer .social-icon{
  display: flex;
  column-gap: 5px;
  margin-top: 20px;
}
.footer .social-icon li a {
  font-size: 12px;
  color: var(--ci-white);
  position: relative;
  height: 29px;
  width: 30px;
  text-align: center;
  background-color: var(--ci-primary-color1);
  border-radius: 6px;
  overflow: hidden;
  display: block;
  transition: all 500ms ease;
  z-index: 1;
  line-height: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border: 1px solid #dedff6;
}
.footer .social-icon li a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #fff;
  transition: .1s ease-in-out;
  transition-duration: .4s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}
.footer .social-icon li a:hover::after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.footer .social-icon li a:hover {
  color: var(--ci-primary-color1);
}
/*----------footer-------wrap--------style---------end-----------*/
/*----------copyright-------wrap--------style---------start-----------*/
.copyright-area{
  position: relative;
  width: 100%;
  background-color: #34333d;
}
.coppyright p {
  color: var(--ci-p-light);
  font-size: 14px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
}
/*-----------copyright-------wrap---------style---------end-----------*/
/*---------------Progress--------top--------style-----------start-------------*/
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 99;
}
.progress-wrap::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  color: #c21f47;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}
.progress-wrap:hover::after {
  opacity: 0;
}
.progress-wrap::before {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  opacity: 0;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}
.progress-wrap:hover::before {
  opacity: 1;
  color: #21212f;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #d794a5; 
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}
/*============================
++++PAGE-PROGRESS-END+++++
=============================*/
.progress-wrap.progress-wrap2 {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.267);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}
.progress-wrap.progress-wrap2.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 99;
  color: rgb(255, 255, 255);
}
.progress-wrap.progress-wrap2::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  color: #f7f7f7;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}
.progress-wrap.progress-wrap2:hover::after {
  opacity: 0;
}
.progress-wrap.progress-wrap2::before {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  opacity: 0;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}
.progress-wrap.progress-wrap2:hover::before {
  opacity: 1;
}
.progress-wrap.progress-wrap2 svg path {
  fill: none;
}
.progress-wrap.progress-wrap2 svg.progress-circle path {
  stroke: #ffffff; 
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}
/*----------------------Progress-----top----style-------end-----------*/
/*----------------popup-------form----modal--------style-------start----------*/
.pop_formmdl_dlg{
  max-width: 65%;
  position: relative;
}
.bttn-close{
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 30px;
  right: 0px;
  top: 0px;
  border: 0;
  border-radius: 0px 8px 0px 0px;
  background-color: #fff;
  color: #50517f;
}
/*---------form-------contact------detail---start--------*/
.contact-page__content {
  position: relative;
  padding: 120px 40px 35px 35px;
  background-color: #F4F2F8;
  border-radius: 20px;
}
.contact-page__content__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.3;
  border-radius: 20px;
}
.contact-page__content__inner {
  position: relative;
  z-index: 1;
}
.contact-page__content__image {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 693.000000 618.000000">  <g transform="translate(0.000000,618.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M3 5933 c5 -241 20 -483 31 -513 4 -8 10 -55 15 -105 5 -49 15 -117 21 -150 6 -33 18 -96 26 -140 23 -127 44 -226 59 -280 25 -95 36 -140 45 -180 4 -22 12 -53 18 -70 6 -16 15 -46 22 -65 7 -19 16 -51 20 -70 20 -81 41 -145 50 -154 5 -5 10 -20 10 -32 0 -12 6 -35 14 -51 28 -56 46 -104 46 -121 0 -10 7 -27 15 -38 8 -10 15 -29 15 -40 0 -12 7 -27 15 -34 8 -7 15 -22 15 -34 0 -12 7 -31 15 -42 8 -10 15 -29 15 -40 0 -12 7 -27 15 -34 8 -7 15 -19 15 -27 0 -30 251 -535 286 -574 8 -8 14 -23 14 -32 0 -9 5 -19 11 -22 5 -4 15 -17 20 -28 5 -12 18 -35 29 -52 11 -16 23 -37 27 -45 4 -8 26 -43 50 -78 24 -35 43 -66 43 -69 0 -3 14 -22 30 -43 17 -21 30 -41 30 -45 0 -4 14 -24 30 -45 17 -21 30 -41 30 -44 0 -12 310 -414 371 -481 20 -22 74 -83 120 -135 224 -255 593 -588 899 -813 226 -167 277 -202 320 -223 8 -4 42 -26 75 -48 87 -59 98 -65 115 -73 8 -4 44 -24 79 -46 35 -21 74 -43 85 -48 12 -5 37 -19 56 -31 48 -29 343 -178 353 -178 4 0 35 -13 70 -29 138 -65 198 -91 210 -91 6 0 21 -7 31 -15 11 -8 29 -15 40 -15 12 0 30 -7 40 -15 11 -8 29 -15 41 -15 12 0 26 -5 32 -11 6 -6 26 -14 44 -19 19 -5 86 -27 149 -49 63 -22 124 -40 136 -41 11 0 24 -4 30 -9 9 -9 92 -34 169 -51 56 -12 124 -30 165 -43 19 -6 55 -14 80 -17 25 -4 65 -12 90 -18 94 -23 196 -42 220 -42 14 0 57 -6 95 -14 70 -15 241 -36 450 -56 62 -5 368 -10 688 -10 l577 0 0 2850 c0 2221 -3 2849 -12 2848 -7 -2 -17 17 -24 42 -21 79 -88 195 -149 255 -63 64 -202 145 -246 145 -11 0 -28 9 -39 20 -20 20 -33 20 -3241 20 l-3221 0 5 -247z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 693.000000 618.000000">  <g transform="translate(0.000000,618.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M3 5933 c5 -241 20 -483 31 -513 4 -8 10 -55 15 -105 5 -49 15 -117 21 -150 6 -33 18 -96 26 -140 23 -127 44 -226 59 -280 25 -95 36 -140 45 -180 4 -22 12 -53 18 -70 6 -16 15 -46 22 -65 7 -19 16 -51 20 -70 20 -81 41 -145 50 -154 5 -5 10 -20 10 -32 0 -12 6 -35 14 -51 28 -56 46 -104 46 -121 0 -10 7 -27 15 -38 8 -10 15 -29 15 -40 0 -12 7 -27 15 -34 8 -7 15 -22 15 -34 0 -12 7 -31 15 -42 8 -10 15 -29 15 -40 0 -12 7 -27 15 -34 8 -7 15 -19 15 -27 0 -30 251 -535 286 -574 8 -8 14 -23 14 -32 0 -9 5 -19 11 -22 5 -4 15 -17 20 -28 5 -12 18 -35 29 -52 11 -16 23 -37 27 -45 4 -8 26 -43 50 -78 24 -35 43 -66 43 -69 0 -3 14 -22 30 -43 17 -21 30 -41 30 -45 0 -4 14 -24 30 -45 17 -21 30 -41 30 -44 0 -12 310 -414 371 -481 20 -22 74 -83 120 -135 224 -255 593 -588 899 -813 226 -167 277 -202 320 -223 8 -4 42 -26 75 -48 87 -59 98 -65 115 -73 8 -4 44 -24 79 -46 35 -21 74 -43 85 -48 12 -5 37 -19 56 -31 48 -29 343 -178 353 -178 4 0 35 -13 70 -29 138 -65 198 -91 210 -91 6 0 21 -7 31 -15 11 -8 29 -15 40 -15 12 0 30 -7 40 -15 11 -8 29 -15 41 -15 12 0 26 -5 32 -11 6 -6 26 -14 44 -19 19 -5 86 -27 149 -49 63 -22 124 -40 136 -41 11 0 24 -4 30 -9 9 -9 92 -34 169 -51 56 -12 124 -30 165 -43 19 -6 55 -14 80 -17 25 -4 65 -12 90 -18 94 -23 196 -42 220 -42 14 0 57 -6 95 -14 70 -15 241 -36 450 -56 62 -5 368 -10 688 -10 l577 0 0 2850 c0 2221 -3 2849 -12 2848 -7 -2 -17 17 -24 42 -21 79 -88 195 -149 255 -63 64 -202 145 -246 145 -11 0 -28 9 -39 20 -20 20 -33 20 -3241 20 l-3221 0 5 -247z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.contact-page__content__image img {
  max-width: 100%;
  height: auto;
}
.contact-page .sec-title {
  margin-bottom: 36px;
}
.contact-page .sec-title__title span {
  font-weight: 600;
  font-style: italic;
  color: var(--ci-primary-color1);
}
.contact-page__info {
  margin-top: 20px;
  position: relative;
  display: table;
}
.contact-page__info li + li {
  margin-top: 25px;
}
.contact-page__info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.contact-page__info__icon {
  width: 48px;
  height: 48px;
  background-color: var(--ci-primary-color1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
}
.contact-page__info__icon__inner {
  display: inline-flex;
  font-size: 17px;
  color: var(--eduhive-white, #FFFFFF);
}
.contact-page__info__icon__inner svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
li:hover .contact-page__info__icon {
  background-color: var(--ci-primary-drk-color2);
}
li:hover .contact-page__info__icon__inner {
  animation: slideTop 0.4s;
}
.contact-page__info__title {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-page__info__text {
  color: var(--ci-dark);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-page__info__text:hover {
  background-size: 100% 1px;
}
.contact-page__info__text:hover {
  color: var(--ci-primary-color1);
}
.contact-page__info__text--email {
  text-transform: lowercase;
}
.sec-title__tagline {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ci-primary-drk-color2);
  line-height: 1.266;
  text-transform: uppercase;
}
.sec-title__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: var(--ci-dark);
  line-height: 1.388;
  letter-spacing:  -0.03em;
  text-transform: capitalize;
}
.contact-page__content__inner .sec-title__title span {
  font-weight: 600;
  font-style: italic;
  color: var(--ci-primary-color1);
}
.contact-page__content__inner .sec-title__title{
  font-size: 30px;
  width: 65%;
}
/*-----------form-----style---------start------*/
.contact-page__form{
  position: relative;
  padding: 55px 70px 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 11px rgba(49, 46, 65, 0.23);
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}
.contact-page__form:after{
  content: '';
  width: 345px;
  height: 354px;
  background-image: url(../images/form-bottom-shape.png);
  position: absolute;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  z-index: -1;
}
.contact-page__form:before{
  content: '';
  width: 345px;
  height: 354px;
  background-image: url(../images/form-top-shape.png);
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  z-index: -1;
}
.form-one__control .form-control,
.form-one__control .form-select{
  width: 100%;
  height: 42px;
  border-radius: 3px;
  border: 1px solid #c1c0d4;
  font-size: 14px;
  color: #42434f;
  font-weight: 500;
  padding-left: 47px;
}
.form-one__control textarea.form-control.cntl-txara{
  height: 80px;
  resize: none;
  padding-left: 12px;
}
.form-select.slct-cntl{
  text-indent: 35px;
  padding-left: 10px;
}
@-moz-document url-prefix() {
    .form-select.slct-cntl {
       text-indent: 18px;
    }
    .innr-course-slct select{
    text-indent: 22px;  
    }
}
.contact-page__form .form-one__control{
  margin-bottom: 15px;
  position: relative;
}
.frm-icn {
  position: absolute;
  width: 42px;
  height: 40px;
  text-align: center;
  border-radius: 3px 0px 0px 3px;
  line-height: 41px;
  background-color: #edeced;
  color: #515188;
  font-size: 15px;
  top: 1px;
  left: 1px;
}
.form-one__control .form-control:focus,
.form-one__control .form-select:focus{
  border-color:#c21f4778;
  box-shadow: none;
}
.contact-page__form .form-sbmt-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  padding: 9px 9px 9px 15px;
  background-color:  #c21f47;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 6px;
  z-index: 1;
  transition: 500ms;
}
.contact-page__form .sbmt-btn__icon {
  display: inline-flex;
  width: auto;
  height: auto;
  font-size: 15px;
  background-color: transparent;
  overflow: visible;
  border-radius: 0;
  transition: all 500ms ease;
}
.sbmt-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 37px;
  background-color:  #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  transition: all 500ms ease;
}
.form-sbmt-btn::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: inherit;
  background-color: #b5193f;
  z-index: -1;
  transition: all 500ms ease;
}
.form-sbmt-btn:hover::after {
  width: 100%;
  left: 0;
}
.contact-page__form .form-sbmt-btn:hover .sbmt-btn__icon {
  transform: rotate(45deg);
}
.popup-frm-title{
  position: relative;
  margin-top: 30px;
  z-index: 2;
}
.popup-frm-title h4{
  font-size: 20px;
  text-align: center;
  background-color: #f6f0f0;
  position: absolute;
  width: fit-content;
  padding: 11px 20px;
  margin: -15px auto 0px;
  z-index: 1;
  border-radius: 25px;
  left: 0px;
  right: 0px;
  color: #43436c;
  box-shadow: rgba(137, 137, 202, 0.25) 0px 30px 60px -12px inset, rgba(156, 153, 233, 0.3) 0px 18px 36px -18px inset;
}
/*----------------popup-------form----modal--------style-------end-----------*/
/*------------filter-------accordian----wrap--------start----------*/
.uni-sctn{
  padding: 50px 0px 60px;
  background-color:#faf8f7;
  position: relative;
}
.uni_bg{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  right: -100%;
  opacity: 0.06;
}
.filter-menu-active .btn:focus{
  box-shadow: none;
}
.filter-menu-active .btn.style-border3 {
  color: #3d3d44;
  border: 1px solid #f0d3da;
  background: #fff;
  padding: 9px 18px 10px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  box-shadow: rgba(53, 53, 110, 0.25) 0px 4px 26px -5px, rgba(56, 56, 73, 0.3) 0px 8px 16px -8px;
}
.filter-menu-active .btn.style-border3:before, .filter-menu-active .btn.style-border3:after {
  background: #c61f4c;
}
.filter-menu-active .btn.style-border3:active, .filter-menu-active .btn.style-border3:focus, .filter-menu-active .btn.style-border3:hover {
  color: #fff;
  background-color: #971b33;
}
.portfolio-tab-1 .filter-menu-active .btn.active::after, .portfolio-tab-1 .filter-menu-active .btn.active::before {
  height: 410px;
  width: 410px;
  display: block;
}
.portfolio-tab-1 {
  /* Small devices */
}
.portfolio-tab-1 .filter-menu-active {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 18px;
  justify-content: center;
  padding: 30px 0px 50px;
}
.portfolio-tab-1 .filter-menu-active .btn.active {
  color: #fff;
  background-color: #971b33;
}
.portfolio-tab-1 .filter-menu-active .btn.active:after, .portfolio-tab-1 .filter-menu-active .btn.active:before {
  height: 410px;
  width: 410px;
}

.uni-block .inner-box .content .icon-btn {
 font-size: 17px;
  background: #b71f44;
  border-radius: 50%;
  color: #fff;
  flex: none;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  position: absolute;
  right: 15px;
  bottom: 28px;
}
.uni-block .inner-box .content .icon-btn:hover {
  background: #911924;
}
/*---------------------------------*/
/*------------------------------------------*/
.uni-block .inner-box {
    position: relative;
    overflow: hidden;
}
.uni-block .inner-box:hover .content {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
.uni-block .inner-box .image {
    position: relative;
    display: block;
    margin-bottom: 0;
}
.uni-block .inner-box .image img {
    position: relative;
    display: block;
    width: 100%;
    height:250px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
  border: 3px solid #dddee6;
  transition: 0.4s ease-in-out;
}
.uni-block:hover .inner-box .image img {
  transform: scale(1.1);
}
.uni-block .inner-box .content {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 30px;
    padding: 12px 27px 20px;
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    background-color: #ffffffe8;
    -webkit-box-shadow: rgba(122, 118, 165, 0.53) 0px 30px 60px -12px inset, rgba(105, 104, 128, 0.26) 0px 18px 36px -18px inset;
    box-shadow: rgba(122, 118, 165, 0.53) 0px 30px 60px -12px inset, rgba(105, 104, 128, 0.26) 0px 18px 36px -18px inset;
    z-index: 3;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 25px;
}
.uni-block .inner-box .content .uni-icon{
  font-size: 31px;
  color: #5c5c7b;
}
.uni-block .inner-box .content .border-line {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: var(--ci-primary-color1);
    margin-bottom: 7px;
}
.uni-block .inner-box .content .name {
    position: relative;
  color: #423f58;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-bottom: 0;
}
.uni-block .inner-box .content .designation {
    position: relative;
    display: block;
    margin-bottom: 15px;
}
.uni-block .inner-box .content .text {
    position: relative;
    display: block;
    white-space: nowrap;
}
/*-------------university------filter-----tab---end----*/
/*----------whatsapp-------wrap--------start--------*/
.btn-whatsapp-pulse:hover{
    color: #fff;
}
.btn-whatsapp-pulse {
  position: fixed;
  bottom: 0px;
  left: 4%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #1c9b13;
  color: #fff;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
  font-size: 30px;
  z-index: 9;
}
.btn-whatsapp-pulse::after, .btn-whatsapp-pulse::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: #1c9b13;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: grow 1.3s ease-in-out infinite;
          animation: grow 1.3s ease-in-out infinite;
}
.btn-whatsapp-pulse::after {
  background: rgba(30, 172, 45, 0.4);
}
@-webkit-keyframes grow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}
/*--------whatsapp--------wrap----------end--------*/
/*start by lalit*/
.brdcm-hdr{
  width: 100%;
  height: 320px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.brdcm-hdr::after{
  position: absolute;
    content: '';
    width: 250px;
    height: 250px;
    background: url(../images/banner-dots.png);
    top: 0px;
    right: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.brdcm-hdr::before{
 position: absolute;
    content: '';
    width: 350px;
    height: 350px;
    background: url(../images/banner-dots2.png);
    bottom: 0px;
    left: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.breadcrumb-cntnt{
  margin-top: 180px;
  position: relative;
}
.brdrmb-img {
    position: absolute;
    bottom: -72px;
    right: 0;
    opacity: .6;
    text-align: end;
    /*width: 300px;*/
    
}
.brdrmb-img img{
  width: 45%;
}
.brdrmb-img::after{
      position: absolute;
    content: '';
    width: 550px;
    height: 550px;
    /*background: linear-gradient(180deg, var(--ci-primary-color1) 41%, transparent 75%);*/
    top: -266px;
    left: -50px;
    z-index: -1;
    border-radius: 50%;
}
.breadcrumb-cntnt .brd-crmb-hdg {
    color: #fff;
    font-size: 35px;
    position: relative;
    margin: 0;
}
.breadcrumb-cntnt .brd-crmb-hdg::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background: var(--ci-primary-color1);
    top: 26px;
    margin-left: 15px;
}
.breadcrumb-cntnt .brd-crmb-lst {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 12px;
}
.breadcrumb-cntnt .brd-crmb-lst li {
    display: inline-block;
    padding-right: 25px;
    position: relative;
}
.breadcrumb-cntnt .brd-crmb-lst li a {
    display: block;
    color: rgb(255 255 255 / 80%);
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
}
.breadcrumb-cntnt .brd-crmb-lst li::after {
    content: '\f324';
    font-family: 'fontAwesome';
    position: absolute;
    right: 5px;
    top: 0;
    font-size: 11px;
    color: rgb(255 255 255 / 30%);
}
.breadcrumb-cntnt .brd-crmb-lst li a.prmry-clr {
    color: var(--ci-primary-color1);
}
.breadcrumb-cntnt .brd-crmb-lst li:last-child::after{
  display: none;
}
.services_sctn.inr-srvc{
  background: #fff;
}
.service2-box.srvc-bx-inr{
  box-shadow: rgba(122, 118, 165, 0.53) 0px 30px 60px -12px inset, rgba(105, 104, 128, 0.26) 0px 18px 36px -18px inset;
}
.service2-box.srvc-bx-inr .icon{
  border: 1px solid #c21f47;
  background: #c21f47;
}
.service2-box.srvc-bx-inr:hover .icon {
  border: 1px solid var(--ci-primary-color1);
  background: #fff;
}
.service2-box.srvc-bx-inr .service-content h4{
  color: #423f58;
  position: relative;
}
.service2-box.srvc-bx-inr .service-content h4::after{
      position: absolute;
    content: '';
    background-color: var(--ci-primary-color1);
    width: 50px;
    height: 3px;
    bottom: 5px;
    left: 0;
}
.service2-box.srvc-bx-inr .service-content p{
  color: #212529;
  padding-top: 10px;
}
.service2-box.srvc-bx-inr:hover{
   box-shadow: rgb(212 39 91 / 64%) 0px 30px 60px -12px inset, rgba(105, 104, 128, 0.26) 0px 18px 36px -18px inset;
}
.service2-box.srvc-bx-inr:hover .service-content h4{
  color: #fff;
}
.service2-box.srvc-bx-inr:hover .service-content h4::after{
  background-color: #fff;
  opacity: .5;
}
.service2-box.srvc-bx-inr:hover .service-content p{
  color: #fff;
  opacity: .8;
}
.lft-mn-bx{
  position: sticky;
    top: 85px;
}
.inr-srvc-lft {
    background: #fff;
    padding: 15px 15px;
    border-radius: 8px;
    box-shadow: rgba(160, 168, 204, 0.17) 0px -23px 25px 0px inset, rgba(80, 81, 103, 0.15) 0px -36px 30px 0px inset, rgba(153, 159, 206, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(93, 101, 226, 0.09) 0px 16px 8px, rgba(222, 220, 236, 0.09) 0px 32px 16px;
    
}
.tp-inr-srvc-hdg{
  position: relative;
}
.inr-srvc-lft .tp-inr-srvc-hdg {
    background: var(--ci-primary-color1);
    padding: 15px;
    color: #fff;
    border-radius: 10px 10PX 0 0;
    margin-bottom: 20px;
}
.inr-srvc-lft .tp-inr-srvc-hdg h5 {
    color: #fff;
    margin: 0;
    font-size: 19px;
    padding-left: 35px;
}
.inr-srvc-lft .tp-inr-srvc-hdg h5 i {
    padding-right: 6px;
    font-size: 15px;
    vertical-align: middle;
}
.inr-srvc-lft .srvc-lst {
    list-style-type: none;
    padding: 0;
    margin: 0;
    /*height: 200px;*/
    /*min-height: 300px;*/
    /*overflow-y: scroll;*/
    /*scrollbar-width: thin;*/
}
.inr-srvc-lft .srvc-lst li {
    display: block;
    margin-top: 10px;
}
.inr-srvc-lft .srvc-lst li:first-child {
    margin-top: 0;
}
.inr-srvc-lft .srvc-lst li .srvc-anchr {
    width: 100%;
    padding: 15px 55px 15px 45px;
        box-shadow: 0 0 8px rgb(255 230 237);
    color: #03041c;
    position: relative;
    display: block;
    z-index: 1;
    transition: all 0.5s ease;
}
.inr-srvc-lft .srvc-lst li .srvc-anchr:hover, .inr-srvc-lft .srvc-lst li .srvc-anchr.active {
    color: #fff;
}
.srvc-anchr .flag{
      position: absolute;
    top: 13px;
    left: 11px;
    width: 26px;
    height: 26px;
}
.inr-srvc-lft .srvc-lst li .srvc-anchr .icn {
    position: absolute;
    top: 0;
    right: 0;
   background: rgb(32 33 45 / 9%);
    height: 100%;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}
.inr-srvc-lft .srvc-lst li .srvc-anchr:hover .icn, .inr-srvc-lft .srvc-lst li .srvc-anchr.active .icn {
    background: #1b1b22;
    width: 45px;
    color: #fff;
}
.inr-srvc-lft .srvc-lst li .srvc-anchr .cntnt {
    font-size: 16px;
    font-weight: 600;
}
.inr-srvc-lft .srvc-lst li .srvc-anchr::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 100%;
    top: 0;
    left: 0;
    background: #232331;
    z-index: -1;
    transition: all 0.5s ease;
}
.inr-srvc-lft .srvc-lst li .srvc-anchr:hover::after, .inr-srvc-lft .srvc-lst li .srvc-anchr.active::after {
    width: 100%;
}
.srvr-cntnt-nu {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(3 4 28 / 50%);
    padding: 30px;
    z-index: -1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.srvr-cntnt-nu .hdg4 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    line-height: 34px;
}
.srvr-cntnt-nu .cntnt-btn {
    display: block;
    background: #fff;
    padding: 17px 20px 17px 50px;
    margin-top: 20px;
    border-radius: 5px;
    color: #c21f47;
    font-weight: bold;
    font-size: 15px;
    position: relative;
    z-index: 1;
}
.srvr-cntnt-nu::after {
    position: absolute;
    width: 389px;
    height: 250px;
    background: var(--ci-primary-color1);
    content: '';
    top: -38px;
    left: -216px;
    border-radius: 16px;
    transform: rotate(45deg);
    z-index: -1;
    opacity: .8;
}
.srvr-cntnt-nu::before{
  position: absolute;
    content: '';
    background: #232331;
    width: 500px;
    height: 15px;
    top: -67px;
    left: -220px;
    transform: rotate(45deg);
    z-index: -2;
    border-radius: 5px;
    opacity: .8;
}
.srvr-cntnt-nu .cntnt-btn .phn {
    position: absolute;
    left: 8px;
    width: 36px;
    height: 36px;
    background: #232331;
    border-radius: 50%;
    top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
}
.srvc-hlp {
    margin-top: 25px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    height: 260px;
    overflow: hidden;
    background: #ffecf1
}
.gif_icn {
    position: absolute;
    width: 35px;
    left: 9px;
    top: 10px;
}
.inr-pges {
        padding: 15px;
    box-shadow: rgba(160, 168, 204, 0.17) 0px 10px 10px 0px inset;
    border: 1px solid rgb(187 180 229 / 21%);
    border-radius: 8px;
}
.inr-pges .stdy-cntnt .stdy-cntnt2{
  width: 100%;
  height: 420px;
}
.inr-pges .stdy-cntnt .stdy-cntnt2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.sml-img{
  width: 100%;
  height: 400px;
}
.sml-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.stdy-cntnt2 img{
    width: 100%;
}
.stdy-cntnt .hdgH3{
  font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--tp-heading-primary);
    position: relative;
    width: fit-content;
    margin-top: 15px;
}
.stdy-cntnt .hdgH3:first-letter{
  color: var(--ci-primary-color1);
  font-size: 30px;
}
.stdy-cntnt .hdgH3::after{
  position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    background: var(--ci-primary-color1);
    top: 18px;
    margin-left: 10px;
}
.stdy-cntnt .para p{
  font-size: 15px;
  color: #3b3c4a;
  letter-spacing: 0.4px;
  padding-bottom: 10px;
  text-align: justify;
  line-height: 26px;
}
.img-list{
    border-top: 1px dashed #eee;
    padding-top: 15px;
    margin-top: 20px;
}
.img-list .lst-inr-pg ul{
  list-style-type: none;
  padding: 0;
}
.img-list .lst-inr-pg li{
  display: block;
  line-height: 28px;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #595b61;
    position: relative;
    padding-left: 35px;
    margin-top: 15px;
}
.img-list .lst-inr-pg li:first-child{
  margin-top: 0;
}
.img-list .lst-inr-pg li::after{
  position: absolute;
    content: '\f560';
    font-family: 'fontAwesome';
    width: 25px;
    height: 25px;
    background: #f5dee3;
    top: 3px;
    left: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c21f47;
    font-size: 11px;
}
.inr-sml-hdg .sml-hdg{
  color: #c21f47;
    display: block;
    font-size: 13px;
    font-style: italic;
    font-weight: 500;
}
.inr-sml-hdg .hdgH4{
  color: #595b61;
    font-size: 21px;
    font-weight: 700;
    padding-top: 5px;
}
.para2{
  line-height: 28px;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #595b61;
}
.inr-icn-txt .para2{
  margin-top: 10px;
} 
.inr-icn-txt {
    margin-top: 20px;
}
.chs-ci-lst {
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
}
.chs-ci-lst .lst-itm{
      width: 48%;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
}
.chs-ci-lst .lst-itm .icn{
  width: 45px;
}
.chs-ci-lst .lst-itm .icn svg{
  width: 45px;
}
.chs-ci-lst .lst-itm .cntnt{
  width: 80%;
}
.chs-ci-lst .lst-itm .cntnt .hdgH6{
  color: #595b61;
    font-size: 16px;
    font-weight: 700;
    padding-top: 5px;
}
.chs-ci-lst .lst-itm .cntnt .txt{
  line-height: 28px;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #595b61;
    padding-top: 10px;
}
.faq-all-area.innr-faq{
  border-top: 1px dashed #ddd;
    padding-top: 15px;
    margin-top: 15px;
    margin-left: 0;
}
.faq-all-area.innr-faq .accordion{
  margin-top: 25px;
}
.faq-all-area.innr-faq .accordion-flush .accordion-item .accordion-button{
  box-shadow: none;
  border: 0;
  border-bottom: 1px dashed #eee;
}
.faq-all-area.innr-faq .accordion-flush .accordion-item{
  margin-bottom: 0;
}
.inr-pg-sctn-pd{
  padding: 55px 0 75px 0;
}
.srvr-cstmr-img {
    z-index: -1;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.srvr-cstmr-img img{
  width: 100%;
    object-fit: scale-down;
    object-position: right;
}
.srvr-cntnt-nu .cntnt-btn .phn::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    background-color: #232331;
    border-radius: 50%;
    z-index: -2;
    animation: btn_ani 2s infinite linear;
}
@keyframes btn_ani{
  0%{
     width: 100%;
      height: 100%;
      opacity: 1;
  }
  20%{
     width: 110%;
      height: 110%;
      opacity: 0.8;
  }
  40%{
     width: 120%;
      height: 120%;
      opacity: 0.6;
  }
  60%{
     width: 140%;
      height: 140%;
      opacity: 0.4;
  }
  80%{
     width: 160%;
      height: 160%;
      opacity: 0.4;
  }
    100%{
      width: 200%;
      height: 200%;
      opacity: 0;
  }
}
.unvrsty-bx {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 8px;
    gap: 10px;
    transition: all 0.5s linear;
    flex-direction: column;
    border: 1px solid #e2e9ec;
    /*border-radius: 3px;*/
    box-shadow: rgba(149, 157, 165, 0.2) 0px 5px 9px;
    background-color: #f9f9f9;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 178px;
}
.unvrsty-bx::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--ci-primary-color1);
  z-index: -1;
  top: 0;
  transform: scale(.01);
  -webkit-transform: scale(.01);
  -moz-transform: scale(.01);
  -o-transform: scale(.01);
  -ms-transform: scale(.01);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}
.unvrsty-bx:hover::after{
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.unvrsty-bx .unvrsty-icn{
    width: 85px;
    height: 85px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ddd;
}
.unvrsty-bx .unvrsty-icn img{
  width: 80%;
  object-fit: scale-down;
  object-position: center;
}
.unvrsty-bx .unvrsty-name{
      width: 100%;
    text-align: center;
}
.unvrsty-bx .unvrsty-name .anchur-txt{
  font-size: 17px;
    font-weight: 500;
    color: #232331;
    margin: 0;
}
/*.unvrsty-bx:hover .unvrsty-icn{
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
}*/
.unvrsty-bx:hover  .unvrsty-name .anchur-txt{
  color: #fff;
  opacity: .9;
}
.inr-srvc-lft .srvc-lst.coursemenu li .srvc-anchr{
  padding: 15px 55px 15px 20px;
}
.tstmonail-lst .testi-bx{
  display: block;
  margin: 0 0px 15px;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
  min-height: auto;
}
.tstmonail-lst .testi-bx .author-box{
  position: relative;
  bottom: -9px;
  margin: 0px;
  display: flex;
  column-gap: 10px;
  width: 100%;
}

.tstmonail-lst .author-box .author-image {
  position: relative;
  top: 0px;
  left: 0%;
  transform: translateX(0%);
}

.tstmonail-lst .author-box .author-info {
  padding-top: 26px;
}


/*.tstmonail-lst .testi-bx .content{
  order: 2;
  width: 80%;
  flex-grow: 1;
}*/
/*.tstmonail-lst .testi-bx .content .text{
  margin-top: 0;
}*/
.tstmonail-lst .testi-bx::before{
  display: none;
}
.tstmonail-lst .testi-bx:hover .text{
      color: var(--ci-p-dark);
}
.inr-pg-sctn-pd.tstmnl-tp{
  position: relative;
  z-index: 1;
}
.inr-pg-sctn-pd.tstmnl-tp::after{
  content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/testimonial-bg.png);
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
    background-size: cover;
}
.lft-mn-bx.courses-mn{
      position: inherit;
    top: 0;
}
.lft-mn-bx.courses-mn .inr-srvc-lft{
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: rgba(160, 168, 204, 0.17) 0px -23px 25px 0px inset, rgba(80, 81, 103, 0.15) 0px 0px 0px 0px inset, rgba(153, 159, 206, 0.1) 0px 0px 0px 0px inset, rgba(0, 0, 0, 0.06) 0px 0px 0px, rgba(0, 0, 0, 0.09) 0px 0px 0px, rgba(0, 0, 0, 0.09) 0px 0px 0px, rgba(93, 101, 226, 0.09) 0px 0px 0px, rgba(222, 220, 236, 0.09) 0px 0px 0px;
}
.lft-mn-bx.courses-mn .coursemenu.srvc-lst{
  display: flex;
  gap: 8px;
  padding-bottom: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.lft-mn-bx.courses-mn .coursemenu.srvc-lst li{
  margin-top:0;
}
.lft-mn-bx.courses-mn .coursemenu.srvc-lst li .srvc-anchr{
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #eee;
    border-radius: 9px;
    background: #fff;
    color: #44434a;
    overflow: hidden;
}
.lft-mn-bx.courses-mn .coursemenu.srvc-lst li .srvc-anchr::after{
  background: #c21f47;
  width: 0;
}
.lft-mn-bx.courses-mn .coursemenu.srvc-lst li .srvc-anchr:hover::after{
  width: 100%;
}
.lft-mn-bx.courses-mn .coursemenu.srvc-lst li .srvc-anchr.active::after{
  width: 100%;
}
.lft-mn-bx.courses-mn .coursemenu.srvc-lst li .srvc-anchr:hover{
  color: #fff;
}
.lft-mn-bx.courses-mn .coursemenu.srvc-lst li .srvc-anchr.active{
  color: #fff;
}
.lft-mn-bx.courses-mn .inr-srvc-lft .tp-inr-srvc-hdg{
  background: transparent;
    padding: 0px;
    color: #fff;
    border-radius: 0px 0PX 0 0;
    margin-bottom: 20px;
}
.lft-mn-bx.courses-mn .inr-srvc-lft .tp-inr-srvc-hdg h5{
  color: #232331;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 0;
  }
  .lft-mn-bx.courses-mn .inr-srvc-lft .tp-inr-srvc-hdg h5 .crse-icn{
    width: 35px;
    height: 35px;
  }
  .lft-mn-bx.courses-mn .inr-srvc-lft .tp-inr-srvc-hdg h5 .gif_icn{
    position: inherit;
    width: inherit;
    top: inherit;
    left: inherit;
  }
  .curse-hlp{
    position: sticky;
    top: 85px;
  }
  .curse-hlp .srvc-hlp{
    margin-top: 0;
  }
  .blog-section{
    padding: 65px 0;
    position: relative;
    z-index: 1;
  }
  .blog-section::after{
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/testimonial-bg.png);
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
    background-size: cover;
  }
  .abt-vrn{
    padding: 20px 0;
    border-top: 1px dashed #ddd;
    margin-top: 40px;
  }
  .counter_box.abt-cntr{
    background: #fff;
  }
.msg-sectn{
      padding: 65px 0;
    box-shadow: rgba(160, 168, 204, .5) 15px 30px 42px 0px inset;
    z-index: 0;
    position: relative;
}
.msg-sectn::after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 23%;
    height: 100%;
    border-right: 15px solid #c21f47;
    top: 0;
    left: 0;
    background: rgb(209 12 71 / 25%);
}
.athr-pic{
  overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 0 10px rgb(78 76 92 / 28%);
    position: relative;
}
.athr-pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  }
 
.athr-pic::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.athr-pic:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.msg-cntnt-bx{
  padding-left: 20px;
}
.msg-cntnt-bx .hdgH5{
  color: #424448;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    letter-spacing: .3px;
    margin-bottom: 8px;
}
.msg-cntnt-bx .hdgH5::after{
  position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    background: #c21f47;
    top: 14px;
    margin-left: 10px;
}
.msg-cntnt-bx .hdgH5:first-letter{
  color: #c21f47;
}
.msg-cntnt-bx .hdgH6{
  color: #5c5a60;
    font-size: 17px;
    padding-bottom: 15px;
} 
.msg-cntnt-bx .para{
  font-size: 15px;
    text-align: justify;
    line-height: 28px;
    padding-bottom: 13px;
    color: #5d5d68;
}
.albm-bx{
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
      box-shadow: 0 0 18px rgb(93 97 116 / 25%);
}
.albm-bx .albm-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s linear;
}
.albm-bx .albmcntnt{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 90px;
    padding: 15px 15px;
    background: linear-gradient(to top, rgb(194 31 71 / 40%) 60%, transparent 94%);
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    -ms-transition: all .3s linear;
    z-index: 1;
}
.zm-icn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0;
    /*visibility: hidden;*/
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    -ms-transition: all .3s linear;
}
.zm-icn i{
  font-size: 70px;
    color: #fff;
    opacity: .9;
}
.albm-bx:hover .zm-icn{
  /*top: 0;*/
  opacity: 1;
  /*visibility: visible;*/
}
.albm-bx .albmcntnt .hdgH6{
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    text-shadow: 1px 2px 3px rgb(47 44 62);
}
.albm-bx .albmcntnt .para{
  color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    font-size: 15px;
    margin: 0;
    padding: 0;
    padding-top: 5px;
}
.albm-bx:hover .albm-img img{
  transform: scale(1.2) rotate(5deg);
}
.albm-bx:hover .albmcntnt{
  height: 100%;
  background: rgb(194 31 71 / 80%);
  justify-content: center;
   align-items: center;
}
.albm-bx:hover .albmcntnt .para{
  display: inherit;
    -webkit-line-clamp: inherit;
    overflow: inherit;
    -webkit-box-orient: inherit;
    text-overflow: inherit;
    text-align: center;
}
.stdy-menu {
    /*border: 1px solid #e0e0e9;*/
    padding: 20px 14px;
    border-radius: 15px;
    margin-bottom: 25px;
    /*box-shadow: rgba(160, 168, 204, 0.17) 0px 10px 10px 0px inset;*/
    border: 1px solid rgb(187 180 229 / 21%);
}
.stdy-menu .stdy-hdg{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 10px;
  position: relative;
}
.stdy-menu .stdy-hdg::after{
  position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    background: #c21f47;
    margin-left: 165px;
}
.stdy-menu .stdy-hdg .icn{
  width: 35px;
  height: 35px;
}
.stdy-menu .stdy-hdg .txt h5{
  color: #232331;
  margin: 0;
    font-size: 19px;
}
.stdy-menu .stdy-menus{
  background-color: #fff;
    padding: 20px;
    box-shadow: rgba(92, 143, 197, 0.25) 0px 30px 60px -12px inset, rgba(142, 141, 177, 0.3) 0px 18px 36px -18px inset;
    border-radius: 15px;
}
.stdy-menu .stdy-menus ul{
  list-style: none;
  padding: 0;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}
.stdy-menu .stdy-menus li{
  display: block;
}
.stdy-menu .stdy-menus li .stdy-anchr{
  border: 1px solid #c9b5f152;
    background: #fff;
    padding: 6px 14px 5px 14px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    border-radius: 40px;
    display: flex
;
    align-items: center;
    color: #44434a;
    justify-content: flex-start;
    box-shadow: 0 0 20px rgb(93 89 110 / 21%);
}
.stdy-menu .stdy-menus li .stdy-anchr.active{
  background: #c21f47;
  color: #fff;
  border: 1px solid #c21f47;
}
.stdy-menu .stdy-menus li .stdy-anchr:hover{
  background: #c21f47;
  color: #fff;
  border: 1px solid #c21f47;
}
.stdy-menu .stdy-menus li .stdy-anchr .flag{
  width: 30px;
    border: 1px solid #ebf3f7;
    border-radius: 50%;
    background-color: #ebf3f7;
    position: relative;
    left: -8px;
}
.pagination, .page-numbers {
    display: flex
;
    align-items: center;
    justify-content: end;
    gap: 5px;
}
.blog-section .pagination{
  justify-content: center;
  margin-top: 2rem;
  gap: 5px;
  display: flex;
  align-items: center;
  padding-left: 0;
    list-style: none;
}
.btn-page {
    border: none;
    width: 36px;
    height: 36px;
    font-size: 16px;
    box-shadow: 0 2px 4px rgb(106 104 115 / 70%);
}
.btn-nav, .btn-page {
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
}
.btn-nav:hover, .btn-page:hover{
  background: #c21f47;
  color: #fff;
}
.btn-nav {
    width: 42px;
    height: 42px;
    border: 1.5px solid #c21f47;
    color: #c21f47;
    padding: 8px;
        border-radius: 50%;
}
.btn-selected {
    background-color: #c21f47;
    color: #fff;
}
.exp-bx{
  background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 7px rgb(77 80 108 / 30%);
    position: relative;
    z-index: 1;
}
.exp-bx::after{
      position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(194 31 71 / 9%);
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 10px;
}
.exp-bx .days {
    position: absolute;
    z-index: 2;
    right: 10px;
    background: #e38700;
    padding: 2px 12px;
    border-radius: 25px 0 0 25px;
    color: #ffffff;
    box-shadow: 0 0px 5px rgb(77 76 82 / 58%);
    margin-top: -14px;
    font-size: 15px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgb(0 0 0 / 41%);
}
.exp-bx .exp-img{
  width: 100%;
  height: 220px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.exp-bx .exp-img::after{
  position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 20%);
    content: '';
    top: 0;
    left: 0;
    z-index: 2;
}
.exp-bx .exp-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s linear;
  -webkit-transition: transform .2s linear;
  -moz-transition: transform .2s linear;
  -o-transition: transform .2s linear;
  -ms-transition: transform .2s linear;
}
.exp-bx:hover .exp-img img{
  transform: scale(1.1) rotate(5deg);
  -webkit-transform: scale(1.1) rotate(5deg);
  -moz-transform: scale(1.1) rotate(5deg);
  -o-transform: scale(1.1) rotate(5deg);
  -ms-transform: scale(1.1) rotate(5deg);
}
.exp-bx .exp-cntnt{
  background: #fff;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    position: relative;
    z-index: 1;
}
.exp-bx .exp-cntnt::after{
      position: absolute;
    content: '';
    width: 120px;
    height: 120px;
    background: url(../images/favicon.png);
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: .05;
}
.exp-bx .exp-cntnt .hdgH6{
  color: #34333d;
    font-size: 20px;
    font-weight: 700;
    /* margin-top: 13px; */
    margin-bottom: 6px;
    letter-spacing: .3px;
    display: flex
;
    align-items: center;
    justify-content: flex-start;
}
.exp-bx .exp-cntnt .hdgH6 .icn img{
  width: 35px;
}
.exp-bx .exp-cntnt .hdgH6 .txt{
  padding-left: 5px;
}
.lstExpo{
      border-top: 1px dashed #ddd;
    margin-top: 12px;
    padding-top: 12px;
} 
.exp-bx .exp-cntnt .para{
      margin: 0;
    /* border-top: 1px dashed #ddd; */
    /* padding: 8px 0px; */
    /* margin-top: 15px; */
    color: #686672;
    font-size: 15px;
    padding-bottom: 4px;
}
.exp-bx .exp-cntnt .para .icn{
  padding-right: 10px;
  color: #c21f47;
  font-size: 12px;
}
.res_btn{
  display: inline-block;
    color: #fdfdfd;
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.4s;
    width: 100%;
    background-color: #c21f47;
    text-align: center;
    padding: 9px 0px;
    border-radius: 8px;
    opacity: 0.8;
}
.res_btn span{
  transform: rotate(-25deg);
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
    display: inline-block;
    margin-left: 5px;
    transition: transform .2s linear;
    -webkit-transition: transform .2s linear;
    -moz-transition: transform .2s linear;
    -o-transition: transform .2s linear;
    -ms-transition: transform .2s linear;
}
.exp-bx:hover .res_btn{
  opacity: 1;
  color: #fff;
} 
.exp-bx:hover .res_btn span{
   transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
}
.cntnt-frm{
  background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 0 30px rgb(100 100 126 / 10%);
    margin-bottom: 20px;
}
.frm-grp {
    position: relative;
    /*margin-bottom: 24px;*/
  }
  .frm-cntl {
        padding: 11px 22px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #d7d7e0;
    background-color: #f9f9f9;
    outline: none;
    transition: border 0.3s ease;
    display: block;
    width: 100%;
  }
  .lbl-cntnt {
        position: absolute;
    top: 15px;
    left: 19px;
    font-size: 15px;
    color: #84858f;
    line-height: 1;
    pointer-events: none;
    transition: all 0.3s ease;
   
  }
.frm-cntl:hover,
.frm-cntl:focus {
  border: 1px solid #c21f47;
}
.frm-cntl:not(:placeholder-shown) {
  border: 1px solid #555;
}
  /* On focus or when input has text */
  .frm-cntl:focus + .lbl-cntnt,
  .frm-cntl:not(:placeholder-shown) + .lbl-cntnt {
    top: -8px;
    font-size: 13px;
    background: #fff;
    color: #444;
    padding: 2px 4px;
  }
  .frm-cntl.txtar-ht{
    height: 120px;
  }
  .cntnt-us-frm {
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 9px;
    /*box-shadow: 0 7px 10px rgb(194 193 199 / 11%);*/
}
.cntnt-us-frm .tp-hdg .hdgH4{
  font-size: 22px;
    color: #4e4e5c;
}
.cntnt-us-frm .tp-hdg .hdgH4 span{
  color: #c21f47;
}
.cntnt-us-frm .tp-hdg .hgdH3{
      font-size: 24px;
    font-weight: 700;
    padding-top: 6px
}
/* Core styles/functionality */
.tab2 {
  position: relative;
  background: #fff;
  margin-top: 5px;
}
.tab2:first-child{
  margin-top: 0;
}
.tab2 input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.tab2 input:checked ~ .tab__content {
  max-height: 1500px;
}
/* Visual styles */
.accordion-cntnt {
      overflow: hidden;
    /*background: #fff;*/
    margin-top: 20px;
}
.tab__label {
   display: flex;
    justify-content: flex-start;
      padding: 8px 20px;
    cursor: pointer;
    box-shadow: rgba(92, 143, 197, 0.25) 0px 30px 60px -12px inset, rgba(142, 141, 177, 0.3) 0px 18px 36px -18px inset;
    border-bottom: 1px solid rgba(92, 143, 197, 0.25);
}
.tab__label .cnty{
    padding: 0px 0px 0px 0px;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    border-radius: 40px;
    display: flex;
    align-items: center;
    color: #3a384a;
    justify-content: flex-start;
    gap: 12px;
}
.tab__label .cnty .icn{
    width: 40px;
    border: 1px solid #d10c47ab;
    border-radius: 50%;
    background-color: #ebf3f7;
    position: relative;
    /*left: -8px;*/
}
.tab__label::after {
      content: "\2b";
    font-family: 'fontAwesome';
    text-align: center;
    position: absolute;
    right: 20px;
    top: 16px;
    line-height: 0;
    background: #fff6f9;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #dbacb7;
    color: #c21f47;
    font-size: 14px;
}
.tab2 input:checked + .tab__label::after {
    content: '\f068';
}
.acdn-add {
    padding: 25px;
}
.info-box {
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    min-height: 174px;
}
.info-box img {
    width: 50px;
    margin-bottom: 15px;
}
.info-box h3 {
    font-size: 20px;
    color: #c21f47;
    margin-bottom: 5px;
}
.info-box p a {
    font-size: 14px;
    color: #494855;
    line-height: 1.5;
    transition: 0.4s ease;
    font-weight: 600;
}
.info-box p a:hover{
  text-decoration: underline;
}
.map-with_img {
    margin-bottom: 14px;
    padding: 0 25px;
}
.map-with_img >.row >div:first-child{
  padding-right: 0;
}
.map-with_img >.row >div:last-child{
  padding-left: 0;
}
.map-with_img .cnty-img{
  width: 100%;
  height: 320px;
}
.map-with_img .cnty-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.map-with_img iframe{ 
  width: 100%;
  height: 320px;
 }
 .tp_hdr .hdgH4{
  font-size: 21px;
    font-weight: 700;
    letter-spacing: .2px;
    color: #2a2830;
    /*text-shadow: 0 2px 4px #545d6c33;*/
    /*background: rgb(255 255 255 / 34%);*/
    /*padding: 10px 15px;*/
    /*backdrop-filter: blur(8px);*/
    /*border-radius: 5px;*/
    margin-bottom: 10px;
 }
 .tp_hdr .hdgH4 span{
  color: #c21f47;
 }
 .tp_hdr .info-box{
  background: #fff;
 }
 .tp_hdr {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}
.blog-pagination li .page-item {
    margin: 0 5px;
}
.blog-pagination li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    border: 1px solid #c21f47;
    color: #c21f47;
    font-weight: 600;
    transition: 0.4s ease;
}
.blog-pagination .active .page-link{
     background-color: #c21f47 !important;
    border-color: #c21f47 !important;
    color: #fff;
}
.blog-pagination li a:hover{
  background-color: #c21f47;
  color: #fff;
}
small.help-block {
    color: #a71111;
}
.loading {
    height: 0;
    width: 0;
    padding: 15px;
    border: 6px solid #ccc;
    border-right-color: #c21f47;
    border-radius: 22px;
    -webkit-animation: rotate 1s infinite linear;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99999;
}
@-webkit-keyframes rotate {
  /* 100% keyframe for  clockwise. 
     use 0% instead for anticlockwise */
  100% {
    -webkit-transform: rotate(360deg);
  }
}
#loaderBody {
    background: #212529a1;
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    display: none;
}

/*thank you page*/
.thank-you_cntnt .thank-you_img img {
    width: 260px;
    display: block;
    margin: 0 auto;
}
.thank-you_cntnt .headH2 {
    text-align: center;
    padding-top: 30px;
    color: #4e536a;
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    letter-spacing: .3px;
}
.thank-you_cntnt .title {
    text-align: center;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #9292a3;
    line-height: 24px;
    padding-top: 12px;
}
.back_homeBtn {
    background: var(--ci-primary-color1);
    color: #fff;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: fit-content;
    padding: 6px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 27px;
    border-radius: 5px;
    border: 1px solid var(--ci-primary-color1);
}
.back_homeBtn:hover{
  background: transparent;
  color: var(--ci-primary-color1);
}
/*end thank you page*/
.prtnr_img {
    width: 100%;
    height: 80px;
}
.prtnr_img {
    width: 100%;
    height: 80px;
}
.prtnr_img img {
    display: block;
    width: 100% ;
    height: 100%;
    object-fit: scale-down;
}

.login-apply-btn-wrp{
  display: flex;
  column-gap: 13px;
}

.login-apply-btn-wrp a{
  border-radius: 5px;
  font-size: 15px;
  padding: 7px 6px;
  width: 100px;
  text-align: center;
  letter-spacing: 0.5px;
  transition: 0.4s ease;
}

.login-apply-btn-wrp .login-btn{
  border: 2px solid var(--ci-primary-drk-color2);
  color: var(--ci-primary-drk-color2);
}

.login-apply-btn-wrp .login-btn:hover{
  color: var(--ci-white);
  background-color: var(--ci-primary-color1);
  border-color: var(--ci-primary-color1);
}


.login-apply-btn-wrp .apply-btn{
  background-color: var(--ci-primary-color1);
  color: var(--ci-white);
}


.login-apply-btn-wrp .apply-btn:hover{
  background-color: var(--ci-primary-drk-color2);
}


/*------------===================----------------*/

.crs_dtl-name{
  align-items: center;
}

.crs_dtl-name h6 a {
  font-size: 22px;
}

.sidbr-scroll {
  scrollbar-width: thin;
  overflow-y: scroll;   
  height: 360px;
  -ms-overflow-style: none; 
  scrollbar-width: none;    
}


.sidbr-scroll::-webkit-scrollbar {
  display: none;
}

