@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Catamaran", sans-serif;
}

/* From Uiverse.io by OliverZeros */ 
button {
  all: unset;
}

.button {
  position: relative;
  display: inline-flex;
  height: 3rem;
  align-items: center;
  border-radius: 9999px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
 
 
  

}

.button-item {
  background-color: transparent;
  color: #fff;
  text-transform:uppercase;
  font-size: 15px;
  font-weight: 500
}

.button-item .button-bg {
  border-color: var(--violet);
  background-color:var(--violet);
}

.button-inner,
.button-inner-hover,
.button-inner-static {
  pointer-events: none;
  display: block;
}

.button-inner {
  position: relative;
}

.button-inner-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(70%);
}

.button-bg {
  overflow: hidden;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.button-bg,
.button-bg-layer,
.button-bg-layers {
  display: block;
}

.button-bg-layers {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: -60%;
  aspect-ratio: 1 / 1;
  width: max(200%, 10rem);
}

.button-bg-layer {
  border-radius: 9999px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
}

.button-bg-layer.-purple {
  background-color: rgba(163, 116, 255);
}

.button-bg-layer.-turquoise {
  background-color: rgba(23, 241, 209);
}

.button-bg-layer.-yellow {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 208, 116, var(--tw-bg-opacity));
}

.button:hover .button-inner-static {
  opacity: 0;
  transform: translateY(-70%);
  transition:
    transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.3s linear;
}

.button:hover .button-inner-hover {
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.button:hover .button-bg-layer {
  transition:
    transform 1.3s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.3s linear;
}

.button:hover .button-bg-layer-1 {
  transform: scale(1);
}

.button:hover .button-bg-layer-2 {
  transition-delay: 0.1s;
  transform: scale(1);
}

.button:hover .button-bg-layer-3 {
  transition-delay: 0.2s;
  transform: scale(1);
}









a{
    text-decoration: none;
}
ul{
    list-style: none;
}
html, body{
    overflow-x: hidden;
    scroll-behavior: smooth;
    
}
.card{
    border: none;
    border-radius: 0;
}

:root {
    --violet: #7A46B8;
    --blue:#0ABBD8;
    --darkblue:#020842;
    --darkviolet:#361163;
    --para-gray:#797979;
    --lightviolet:#EFEFFF;
    --lightpink:#EAD8FF;
}

.text-blue{
    color: var(--blue);
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-800{
    font-weight: 800;
}
.fw-900{
    font-weight: 900;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~ Header ~~~~~~~~~~~~~~~~~~~~~~~~~~ */





/* Navbar */
header .navbar{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 999999;

}

/* @media screen and (max-width:768px){
header .navbar-brand img {
    width:80px;
    height: 80px;
}
} */

header .navbar-nav li a{
    font-family: "Catamaran", sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
    color:#fff;

}
header .navbar-nav li{
    margin:10px 0;
}
@media screen and (min-width:991px){
    header .navbar-nav li{
        padding: 5px 15px;
        margin:unset;
    }
    header .navbar-nav li a{
        color: #000;
    }
}
@media screen and (min-width:992px) and (max-width:1320px) {
    header .navbar-nav li{
        padding: 0 5px;
    }
}
header .navbar-nav li a.current-menu-item, header .navbar-nav li a:hover,header .navbar-nav li a.active{
    color: var(--violet) !important;
}

/* 
header .navbar-collapse{
    position: absolute;
    top: 55px;

    text-align: center;
    width: 100%;
    background: rgb(255, 255, 255);
    padding: 20px 0;
} */
header .navbar-collapse .btn {
    width: 180px;
    height: 50px;
    background: var(--violet);
    color: #fff;
    font-size: 13px;
    border-radius: 6px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
   
}
@media screen and (max-width:991px){
    header .navbar-collapse{
        background: #000000;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 100%;
        padding: 27px 0;
        z-index: 9999;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}




header .navbar-collapse .btn span {
    font-size: 14px;
    letter-spacing: 1px;
    -webkit-transition: top 0.5s;
    transition: top 0.5s;
    font-weight: 500;
    text-transform: uppercase;
}

header .navbar-collapse .btn-text-one {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

header .navbar-collapse .btn-text-two {
    position: absolute;
    width: 100%;
    top: 150%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

header .navbar-collapse .btn:hover .btn-text-one {
    top: -100%;
}

header .navbar-collapse .btn:hover .btn-text-two {
    top: 50%;
}
/* hamburger */
.nav-icon {
    width: 40px;
    height: 25px;
    position: relative;
    /* margin: 50px auto; */
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--darkviolet) !important;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
    top: 0px;
}

.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 8px;
}

.nav-icon span:nth-child(4) {
    top: 16px;
}

.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

header .navbar button {
    outline: none;
    box-shadow: none !important;
}

header .navbar .navbar-toggler {
    border: none !important;
}
/* end of hamburger */
 .banner-1{
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5)),url('../../images/banner1.webp')no-repeat center/cover;
    height:100vh;
    /* width: 100vw; */
}



.menu-item-has-children .sub-menu{
    display:none;
}

.menu-item-has-children:hover > .sub-menu{
    display: block;
}
 .menu-item-has-children .sub-menu li{
        padding:10px 30px;
    }
    .menu-item-has-children .sub-menu li a:hover{
        color:#000;
    }

@media screen and (min-width: 769px) {
    .menu-item-has-children .sub-menu{
      position: absolute;
    background: #da9103;
    z-index: 99999;
    margin-top: 10px;
    padding: 0;
    }
}

@media screen and (min-width:991px){
    .navbar-collapse{
        justify-content: flex-end;
    }
}


/*---------------banner--------------------*/
.banner-section{
    background: url('../../images/banner-bg.svg') no-repeat center/cover;
}
/* .banner-section .img-div{
    width: 550px;
    z-index: 111;
} */
.banner-section .sub-title{
    font-family: "Jost", sans-serif;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: var(--blue);
    text-transform: uppercase;
    padding-bottom: 10px;
}
.banner-section .title{
    font-family: "Poppins", sans-serif;
    font-size:35px;
    line-height: 35px;
    font-weight: 500;
    color:var(--darkviolet);
    padding-bottom: 10px;
}
.banner-section p{
    font-size: 18px;
}
.text-purple{
    color: var(--violet);
}
@media only screen and (min-width: 991px)  {
    .banner-section .title{
        font-size: 35px;
        line-height: 48px;
    }
}
.reg-btn button {
    font-size: 15px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 0.7em 2em;
    background-color: var(--violet);
    border: none;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
  }
  
  .reg-btn button:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color:#000;
    z-index: -1;
  }
  
  .reg-btn button:hover, .reg-btn button:focus {
    color: white;
  }
  
  .reg-btn button:hover:before, .reg-btn button:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    
  }
  
  .reg-btn button:active {
    transform: scale(0.9);
  }

  .banner-intro-box .intro-img {
    position: absolute;
    right: 1%;
    top: 60px;
}

@media only screen and (min-width: 991px)  {
    .banner-intro-box .intro-img {
      
        right: 8%;
    }
}
.banner-intro-box .intro-img img {
    width: 600px;
}
.spine2 {
    animation: spine 8s linear infinite;
}
.banner-section .img-div img{
    animation: up-down 8s alternate infinite;
    -webkit-animation: up-down 8s alternate infinite;
}
@keyframes spine {
    0%   {
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
  }

  @keyframes up-down {
    0%   {
        transform: translateY(30px);
        -webkit-transform: translateY(0);
    }

    0%   {
        transform: translateY(-50px);
        -webkit-transform: translateY(-50px);
    }
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
  }

  /* .radius-btn button:hover:before, .radius-btn button:focus:before {
border-radius: 25px;
  } */
/*---------------banner--------------------*/

/*----about us-----*/

.lightviolet{
    background: var(--lightviolet);
}
.section-para{
    font-size: 15px !important;
    font-weight: 400 !important;
}

.sec-subtitle2{
    font-size: 18px;
    line-height: 28px;
    color: var(--violet);
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.sec-subtitle2::after{
    content: '';
    position: absolute;
    height: 2px;
    width: 65%;
    background: var(--violet);
    top: 45%;
    right: -75%;
}
.about-section .icon-div{
width: 65px;
height: 65px;
background: var(--lightpink);
display: flex;
justify-content: center;
align-items: center;
}


/*----about us-----*/

/*----services---------*/
.sec-subtitle{
    font-size: 18px;
    line-height: 28px;
    color: var(--violet);
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.sec-subtitle:before{
    content: '';
    position: absolute;
    height: 2px;
    width: 50%;
    background: var(--violet);
    top: 45%;
    left: -95px;
}

.sec-subtitle:after{
    content: '';
    position: absolute;
    height: 2px;
    width: 50%;
    background: var(--violet);
    top: 45%;
    right: -95px;
}
.sec-title{
    font-size: 25px;
    line-height: 35px;
    color: var(--darkblue);
    position: relative;
    
}

.sec-title2{
    font-size:25px;
    line-height: 35px;
    color:var(--blue);
    position: relative;
   
}


@media only screen and (min-width: 991px) {
    .sec-title,.sec-title2{
        font-size: 35px;
        line-height: 43px;
    }
  
}

.service-slider  .card{
    margin: 20px;
    position:relative;
}
.service-slider .slick-next:before, .service-slider .slick-prev::before{
    color: #000000;
}
.service-slider .slick-arrow{
top: 105%;
border: 1px solid #000;
border-radius: 50%;
width: 50px;
height: 50px;
}
.service-slider .slick-prev{
   left:33%
}
.service-slider .slick-next{
right:33%
}
.service-block .img-div{
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: #F4F5F8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}
.service-block .card{
    /*border-top: 6px solid var(--violet);*/
    /*background: #ffffff;*/
    /*box-shadow: 0 0 30px #e7e7e7;*/
    
    position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  
  /*overflow: hidden;*/
  
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);

}

.service-block .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--violet);
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-block .card:hover::before {
  height: 100%;
}

.service-block .course-name a{
text-transform: capitalize !important;
font-size: 20px;
line-height: 25px;
font-weight: 800;
color: var(--darkblue);
padding: 15px 0;
margin: 0;
position:relative;
z-index:2;
}
.service-block .card:hover .course-name a{
    color:#fff;
}
.service-block .card:hover .para{
    color:#e7e7e7;
}

.service-block .card:hover .img-div{
    margin-top:-25%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.para{
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 23px;
    font-weight: 500;
    color: var(--para-gray);
    margin: 0;
    position:relative;
z-index:2;
   
}

.service-slider .slick-prev:before,.service-slider .slick-next:before {
 width: 50px;
    height: 50px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*----services---------*/


/*-------------why choose us-----------*/
.why-choose-us .features h4{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
}
.why-choose-us .features .icon-div{
    background: none;
    position: relative;
}

.why-choose-us .features .icon-div:before{
    position: absolute;
    content: '';
    width: 35px;
    height: 3px;
    background: var(--violet);
    left: -25px;
}

/*-------------why choose us-----------*/
.why-choose-us .features .row:before{
    position: absolute;
    content: '';
    width: 3px;
    height: 67%;
    background: var(--violet);
    top: 19%;
    left: -13px;
   }
@media only screen and (min-width: 991px)  {
    .why-choose-us .features .row:before{
        position: absolute;
       content: '';
       width: 3px;
       height: 67%;
       background: var(--violet);
       top: 19%;
       left: -13px;
       }
    
}
/*-------------why choose us-----------*/

/*---------------counter----------*/
.counter-section{
    margin-top: -25%;
}
.counter-section  .item{
display: flex;
flex-direction: column;
align-items: center;
}
.counter-section .card{
    background: transparent;
}

.counter-section .card .icon-div{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    height: 80px;
    width: 80px;
}

.counter-section .card-title{
    color: var(--violet);
    font-size: 32px;
    font-weight: 900;
    line-height: 30px;
}
.counter-section .card-text{
    color: var(--darkblue);
    text-transform: uppercase;
    font-size:15px;
    font-weight: 700;
   
}
.border-all{
    border: 1px solid #e7e7e7;
}

.counter-section .item{
    border-right:1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}
.counter-section .item:last-child{
    border: none;
}

@media only screen and (min-width: 991px)  {
    .counter-section{
        margin-top: -5%;
    }
    .counter-section  .item{
        
        flex-direction: row;
        }
        .counter-section .card-title{
            font-size: 42px;
            line-height: 51px;
        }
        .counter-section .item{
            border-bottom: none;
        }
}
/*---------------counter----------*/

/*--------------process---------------*/
.process-block .card{
    position: relative;
    margin: 0 35px;
}
.process-block .card .icon-div{
    background: var(--blue);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: absolute;
    top: -10%;
    left: -10%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.process-block .card .icon-div span{
    font-weight: bold;
    font-size: 36px;
    color: #fff;
   
}
.process-block .card .course-name{
    font-size: 22px;
    color: var(--darkblue);
}

.pricing-row ul li{
    position: relative;
    margin: 15px 0;
    color: #6A6A6A;
	    display: flex;
    justify-content: space-between;
/*     text-align: justify; */
}
.pricing-row ul li strong{
	color: #007bff;
}
.pricing-row ul li:before{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.3em' height='1.3em' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m9.55 17.308l-4.97-4.97l.714-.713l4.256 4.256l9.156-9.156l.713.714z'/%3E%3C/svg%3E");
    position: absolute;
    left: -30px;
    margin-right: 20px;
}

.plan-type{
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
}
.plan-price{
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: var(--darkblue);
}
.plan-price span,.pricing-row h6 span{
    font-family: "Catamaran", sans-serif;
    color: var(--darkblue);
    font-size: 15px;
    font-weight: 600;
    
}
.border-gray{
    border: 1px solid #b9b8b8;
}
.border-black{
    border: 1px solid var(--darkblue);
}
.highlight{
    background: var(--darkblue);
    display: inline-block;
    position: absolute;
    top: 4%;
    right: -10px;
    padding: 5px 20px;
   
	clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 13% 54%, 0% 0%);
    
}

.highlight span{
    color: #fff;
}
/* From Uiverse.io by doniaskima */ 
.btn-23,
.btn-23 *,
.btn-23 :after,
.btn-23 :before,
.btn-23:after,
.btn-23:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-23 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #fff;
  background-image: none;
  color: #4E4E4E;
  cursor: pointer;
  
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
}

.btn-23:disabled {
  cursor: default;
}

.btn-23:-moz-focusring {
  outline: auto;
}

.btn-23 svg {
  display: block;
  vertical-align: middle;
}

.btn-23 [hidden] {
  display: none;
}

.btn-23 {
  border-radius: 8px;
  border-width: 1px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}

.btn-23 span {
  display: grid;
  inset: 0;
  place-items: center;
  position: absolute;
  transition: opacity 0.2s ease;
}

.btn-23 .marquee {
  --spacing: 5em;
  --start: 0em;
  --end: 5em;
  -webkit-animation: marquee 1s linear infinite;
  animation: marquee 1s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  opacity: 0;
  position: relative;
  text-shadow: #4E4E4E var(--spacing) 0, #4E4E4E calc(var(--spacing) * -1) 0,
  #4E4E4E calc(var(--spacing) * -2) 0;
}

.btn-23:hover .marquee {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
}

.btn-23:hover .text {
  opacity: 0;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

@keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

  
/*--------------process---------------*/

/*---------------faq form---------*/

.form-container .form-control{
    width: 100%;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color:#F3F3F3;
    background-color: #F3F3F3;
    border-radius: 3px;
    padding: 10px 18px;
}
.form-container .form-control::placeholder{
    color:#888888;
    font-style: italic;
}
.mb-30{
    margin-bottom: 30px;
}
.form-container input[type="submit"]{
    background-color: #7A46B8;
    margin: 0px 0px 0px 0px;
    padding: 13px 35px 13px 35px;
    outline: none;
    border: none;
    padding: 12px 40px;
    border-radius: 3px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    
    font-weight: 500;
    color: #fff;
}



.faq-schema .accordion-body{
    background: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: #505050;
    padding: 20px 14px 35px;
    width: 100%;
}
.faq-schema .accordion-header button{
    height: 65px;
    line-height: 65px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 0 49px 0 rgba(0, 0, 0, 0.08);
    
   
}
.accordion-button:not(.collapsed) {
    background: #ff5421;
    color: #ffffff;
    font-weight: 800;
}
.faq-schema .accordion-item{
margin-bottom: 20px;
border: none !important;
}
.accordion-button:not(.collapsed)::after {
    color: #fff;
}



/*---------------faq form---------*/

/*----------testimonial-------------*/

.client-meta img{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
}
.testimonial-section p{
    font-style: italic;
   
}
.client-meta{
    gap: 20px;
}
.client-meta .client-name {
    font-size: 20px;
    color: #000000;
    font-weight: 700;
   
}
.client-meta .client-desc{
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    color: #555555;
    text-align: start;
}
.testimonial-section .items{
    margin: 0 10px;
    padding:30px

}

/*----------testimonial-------------*/

/*----------------profile-----------*/
.client-marquee .title{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: var(--darkblue);
    font-weight: 600;
}
/*----------------profile-----------*/


/*--------------events-----------*/
.events-section{
    background: url('../../images/testi-bg.webp') no-repeat center/cover;
}
.events-slider .card{
    background: #ffffff;
    box-shadow: 0 0 20px #eee;
}
.events-slider .event-title{
    font-size: 22px;
    line-height: 32px;
    transition: all .8s ease;
    font-weight: 700;
    margin: 0 0 26px;
}
.event-desc{
    border-top: 1px solid #efefef;
    margin-top: 34px;
    padding-top: 26px;
}
.event-btn{
    background: #ff5421;
    text-transform: capitalize;
    padding: 7px 15px;
    color: #ffffff;
    border-radius: 2px;
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
}
.events-slider .slick-dots,.testimonials .slick-dots{
    bottom: -50px;
}
.events-slider .slick-dots button,.testimonials .slick-dots button{
    width: 10px ;
    height: 4px;
    display: inline-block;
    margin: 0 6px;
    padding: 3px 0;
    border-radius: 30px;
    background: var(--darkblue);
    border: none;
    transition: all 0.3s ease;
}
.events-slider .slick-dots button::before,.testimonials .slick-dots button::before{
    opacity: 0 !important;
}
.events-slider .slick-dots .slick-active button,.testimonials .slick-dots .slick-active button{
    
    background: var(--blue);
    opacity: 0.5;
    
}

.events-slider .slick-dots li,.testimonials .slick-dots li{
    margin: 0 9px;
}
.events-slider .card img{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
@media only screen and (min-width: 991px)  {
    .events-slider .slick-dots li,.testimonials .slick-dots li{
        margin: 0 5px;
    }
}
/*--------------events-----------*/


/*---------------- blog---------*/
.blog-section .card{
    background: #f3fcf8;
}
/*---------------- blog---------*/


/*-----------client marquee---------*/
.wrapper{
    position:fixed;
    width:100%;
    height:100px;
    left:50%;
    top:75px;
  
    overflow:hidden;
  }
  .wrapper .box{
    position:absolute;
    width: 250px;  
    height:200px;
    text-align: center;
  
  }
  .wrapper .boxes {
    position:relative;
    left:-250px;
    height: auto;
  }
  .wrapper .boxes img{
    height: 80px;
    object-fit: cover;
  }
  @media only screen and (min-width: 991px) {
    
    .wrapper{
      width:150%;
    }
    .wrapper .box{
      position:absolute;
      width: 250px;  
      height:100px;
      background: #fff;
      
      padding:  0 10px;
    
    }
  }
/*-----------client marquee---------*/
/*footer*/
footer{
    background: url(../../images/footer-bg.svg)#EFEFFF no-repeat center/cover;
   
}
.footer-title{
    font-family: "Jost", sans-serif;
    color: var(--blue);
    font-size: 24px;
    line-height: 26px;
    font-weight: 500;
   
    margin-bottom: 25px;
    position: relative;
}

.payment-method{
    display: flex;
    gap: 5px;
}

.company-info{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--darkblue);
}
.social-list ul{
    display: flex;
    padding-left: 0;
    gap:5px;
}

.course-list ul{
   
padding: 0;
columns: 2;
}
.course-list ul li{
    margin-bottom: 7px;
}
.course-list ul li a{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #4E4E4E;
    
}
footer .sub-head{
    color: var(--blue);
    font-size: 18px;
    font-weight: 500;
}
.address-details a,.address-details p{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4E4E4E;
}
.copyright{
   background: var(--violet);

}

.copyright p,.copyright a{
    
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #fff;
    padding: 0;
    margin: 0;
}
@media only screen and (min-width: 991px) {
    .course-list ul{
        columns: 1;
    }
}

/*footer*/

/*-----------projects-----------*/

.ufg-parent-filters{
    text-align:center;
}
.ufg-parent-filters button{
        font-family: "Poppins", sans-serif;
    border: 1px solid #c5c5c5 !important;
        font-size: 16px;
    text-transform: uppercase;
}
.ufg-parent-filters .fas{
    display:none;
}
/*-----------projects-----------*/

/*inner pages*/
.inner-banner{
    background: url(../../images/banner-bg.svg) no-repeat center / cover;
    position:relative;
    border-bottom-left-radius: 55px;
    border-bottom-right-radius: 55px;
    box-shadow: rgb(50 50 93 / 25%) 0px 50px 100px -20px, rgb(0 0 0 / 8%) 0px 30px 60px -30px;
}
.inner-banner .breadcrum svg{
	position: relative;
	transform: translateY(-3px) !important;
}
.entry-title span{
  text-transform: uppercase;
  background: linear-gradient(45deg,#fc5c7d,#6a82fb,#fc5c7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Poppins", sans-serif;
    font-size:1.3em;
    font-weight:900;
    text-transform:uppercase;
	width:100%;
	margin:0;
	padding:0;
	display:flex;
	flex-flow:row wrap;
	align-content:center;
	justify-content:start;
}
@media only screen and (min-width: 991px) {
    .entry-title span{
        font-size:1.6em;
    }
	.entry-title .ser_title {
		font-size: 65px !important;
	}
}
.banner-content p{
    font-size:18px;
}
/* From Uiverse.io by cssbuttons-io */ 
.learn-more {
 position: relative;
 display: inline-block;
 cursor: pointer;
 outline: none;
 border: 0;
 vertical-align: middle;
 text-decoration: none;
 background: transparent;
 padding: 0;
 font-size: inherit;
 font-family: inherit;
}

.learn-more {
 width: 12rem;
 height: auto;
}

.learn-more .circle {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: relative;
 display: block;
 margin: 0;
 width: 3rem;
 height: 3rem;
 background: #007bff;
 border-radius: 1.625rem;
}

.learn-more .circle .icon {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 bottom: 0;
 margin: auto;
 background: #fff;
}

.learn-more .circle .icon.arrow {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 left: 0.625rem;
 width: 1.125rem;
 height: 0.125rem;
 background: none;
}

.learn-more .circle .icon.arrow::before {
 position: absolute;
 content: "";
 top: -0.29rem;
 right: 0.0625rem;
 width: 0.625rem;
 height: 0.625rem;
 border-top: 0.125rem solid #fff;
 border-right: 0.125rem solid #fff;
 transform: rotate(45deg);
}

.learn-more .button-text {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 padding: 0.75rem 0;
 margin: 0 0 0 1.85rem;
 color: #282936;
 font-weight: 700;
 line-height: 1.6;
 text-align: center;
 text-transform: uppercase;
     font-size: 18px;
    font-family: "Poppins", sans-serif;
}

.learn-more:hover .circle {
 width: 100%;
}

.learn-more:hover .circle .icon.arrow {
 background: #fff;
 transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
 color: #fff;
}

.font-25{
    font-size:25px !important;
}
.breadcrum{
    font-weight: 700;
    display: inline-block;
    color: #aa71c38c;
}
.features .title,.highlight-text,.txt-blue,.contact-form .title{
   font-family: "Poppins", sans-serif;
font-size: 23px;
font-weight: 600;
line-height: 45px;
color: var(--white-text);
}
.highlight-text{
      background: linear-gradient(45deg,#fc5c7d,#6a82fb,#fc5c7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.txt-blue{
    color:#007bff !important;
}
@media only screen and (min-width: 991px) {
  .features .title,.features .highlight-text,.txt-blue,.contact-form .title{
    font-size: 42px;
    line-height: 64px;
   
  }
}
.lines{
  color: #000; 
  /*opacity: 0; */
  transform: translateY(20px); /* Start with a slight vertical offset */
}
.rotate{
 -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    float: left;
    position: absolute;
    top: 45%;
    /* transform: translate(-50%, -50%); */
    font-size: 4em;
    font-weight: 900;
    color: #80808000;
    -webkit-text-stroke: 2px #000;
    /* width: 100%; */
    /* height: 100%; */
    left: -2%;
    text-transform: uppercase;
}

.content-para{
    font-size:19px;
}


.sale-section{
  background: #361163;
}

.sale-lines {
  white-space: nowrap;
}

.saleword{
  display: inline-block;
  font-family: "Poppins", sans-serif;
    font-size: 2em;
    font-weight: 900;
    text-transform: uppercase;
    font-style:italic;
  text-align: left;
  margin: 0 15px;

  
  color: #eadef9;

}
/*.features{*/
/*    background:#f4f5ff;*/
/*}*/

/* Typing effect */
.typing {
      font-family: "Poppins", sans-serif;
  margin-left: 10px;
  display: inline-block;
  overflow: hidden; /* Ensures the text stays within its container */
  border-right: 2px solid; /* Creates the cursor effect */
  white-space: nowrap; /* Prevents the text from wrapping */
  animation: typing 3s steps(30, end) 1s infinite alternate, blink-caret 0.75s step-end infinite;
  max-width: 0; /* Start with zero width */
  font-style: italic;
}

/* Typing effect keyframes */
@keyframes typing {
  from { max-width: 0; }
  to { max-width: 100%; }
}

/* Blinking cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: black; }
}

.loud-section{
        background: linear-gradient(45deg, #472174, #6a82fb, #9e74ce);
}
.btn-12,
.btn-12 *,
.btn-12 :after,
.btn-12 :before,
.btn-12:after,
.btn-12:before {
/* border: none; */
  box-sizing: border-box;
}

.btn-12 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;

  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;




}

.btn-12:disabled {
  cursor: default;
}

.btn-12:-moz-focusring {
  outline: auto;
}

.btn-12 svg {
  /* display: block; */
  margin-left: 5px;
  vertical-align: middle;
}

.btn-12 [hidden] {
  display: none;
}

.btn-12 {
  border-radius: 99rem;
  /* border-width: 2px; */
  overflow: hidden;
  padding: 0.8rem 1.5rem;
  position: relative;


}

.btn-12 span {
  mix-blend-mode: difference;
}

.btn-12:after,
.btn-12:before {
  background: linear-gradient(
    90deg,
    #fff 25%,
    transparent 0,
    transparent 50%,
    #fff 0,
    #fff 75%,
    transparent 0
  );
  content: "";
  inset: 0;
  position: absolute;
  transform: translateY(var(--progress, 102%));
  transition: transform 0.5s ease;
}

.btn-12:after {
  --progress: -102%;
  background: linear-gradient(
    90deg,
    transparent 0,
    transparent 25%,
    #fff 0,
    #fff 50%,
    transparent 0,
    transparent 75%,
    #fff 0
  );
  z-index: -1;
}

.btn-12:hover:after,
.btn-12:hover:before {
  --progress: 0;
}

.btn-12:hover svg path{
  fill: #000;
}


.contact-form {
    background:#361163;
}

.contact-info .title, .contact-title {
        font-family: "Poppins", sans-serif;
    color: #000;
    line-height: 1.2em;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 22px;
}
.contact-info .card{
    background:none;
}
.contact-form .title,.italic-text{
        font-family: "Poppins", sans-serif;
}
.info-anchor {
    line-height: 1.54em;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #000;
    margin: 0 8px 11px 0;
    padding: 12px 23px;
    font-size: 15px !important;
    display: inline-block;
}
.map-section{
    margin-bottom:-5px;
}


.InputContainer {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  
  overflow: hidden;
  cursor: pointer;
  border: 1px solid gray;
  /* padding-left: 15px; */

}

.input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 0.9em;
  padding: 0 20px;
}

.labelforsearch {
  cursor: text;
  padding: 0px 12px;
}

.searchIcon {
  width: 13px;
}

.border {
  height: 40%;
  width: 1.3px;
  background-color: rgb(223, 223, 223);
}

.micIcon {
  width: 12px;
}

.micButton {
  padding: 0px 15px 0px 12px;
  border: none;
  background-color: transparent;
  height: 40px;
  cursor: pointer;
  transition-duration: 0.3s;
}

.searchIcon path {
  fill: rgb(114, 114, 114);
}

.micIcon path {
  fill: rgb(255, 81, 0);
}

.micButton:hover {
  background-color: rgb(255, 230, 230);
  transition-duration: 0.3s;
}






.cat-item{
  position: relative;
margin-bottom: 13px;
padding-bottom: 13px;
border-bottom: 1px solid #E7E9EE;
padding-top: 0;
}
.cat-item a{
  color: #57586b;
  font-size: 16px;
      display: flex;
align-items: center;
justify-content: space-between;
font-weight: 500;
}
.searchform{
position:relative;
}
.searchform input[type="text"],.searchform label{
  margin-bottom: 0;
width: 100%;
background: #F3F4F5;
height: 60px;
border: 0;
color: #000;
padding:0 0 0 20px;
}
.searchform span{
position:absolute;
}
.searchform span:after{

  color: #fff;
font-family: FontAwesome;
content: "\f002";
font-size: 23px;
position: absolute;
right: 19px;
top: 12px;
pointer-events: none;

}
#searchsubmit{
position: absolute;
top: 7px;
font-size: 18px;
color: #fff;
height: 46px;
width: 46px;
right: 8px;
background: transparent;
margin-top: 0;
background-color: #00cc99;
border-radius: 3px;
border:none;
}


@media only screen and (min-width: 991px){
.events-slider .event-title a{
  font-size: 21px;
}
}
@media only screen and (max-width: 768px){
.events-slider .card {
filter: none !important;
border: 1px solid rgb(224, 224, 224);

}
}

@media only screen and (min-width: 768px) and (max-width: 990px){
.blog-row .slick-prev{
  left: 38%;
}
.blog-row .slick-next{
  right: 38%;
}
}
.tag-list{
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
margin: -10px;
}
.blog-content-meta{
background:#a9a9a9;
}
.tag-list a,.blog-content-meta .tags a{
  line-height: 1.54em;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight:bold;
  background-color: #f6f6f6;
  color: #000;
  margin: 0 8px 11px 0;
  padding: 12px 23px;
  font-size: 14px !important;
  display: inline-block;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;

}

.blog-content-meta .list ul{
display:flex;
}
.tag-list a:hover,.blog-content-meta .tags a:hover{
background:var(--neongreen);


}
.service-quick li:hover a{
color:#ff712b;
}
.service-quick li:last-child{
border-bottom:none;
}
.blog-meta ul{
display:flex;
padding:0;
gap:25px;
}
.blog-meta ul li{
  color: #000000;
  font-size: 11px;
  line-height: 1.54em;
  display: inline-block;
  font-weight: 100;
  
  letter-spacing: .2em;
  text-transform: uppercase;
}

.comment input[type="submit"]{
font-size: 16px;
font-weight: 600;
text-transform: None;
color: #fff;
border-style: none;
padding: 21px 50px 23px;
align-self: center;
position: relative;
display: inline-block;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
line-height: 1.1;
letter-spacing: -.3px;
transition: all 0.2s cubic-bezier(0.68, 0.01, 0.58, 0.75);
background-color: #ff712b;
}
.comment input[type="text"],.comment input[type="email"],.comment input[type="url"]{

}
.comment input[type="text"],.comment input[type="email"],.comment input[type="url"],.comment textarea{
width:100%;
background: #F3F4F5;
color: #000;
border: 0;
height: 60px;
margin-bottom: 20px;
border: 2px solid transparent;
padding: 20px;
}
.comments-area{
border-top:1px solid #d5d3d3;
padding-top:5%;
}


.blog-title,.blog-title a{
      font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 24px;
  line-height: 27px;
  font-weight: 700;
  text-transform: uppercase;;
  position: relative;
}
.blog-content p{
  
  font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .5px;
    color: #7b7b7b;
}
@media screen and (min-width:991px){
  .blog-title.blog-title a{
    font-size: 27px;
    line-height: 35px;
  }
}
.list-anchor ul li {
    margin: 0 0 10px;
}
.list-anchor ul li a, .quick-meta {
    font-size: 14px;
    letter-spacing: .2em;
    color: #000;
    position: relative;
    text-transform: uppercase;
    transition: color .2s ease-out;
}

.list-anchor ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: currentColor;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.list-anchor ul li:hover a:after {
    width: 100%;
}
/*inner pages*/
.service-block .course-name .view_btn {
    font-size: 16px !important;
}



@media only screen and (max-width: 768px) {
	.banner-section .title {font-size: 34px;}
	.why-choose-us .features .row:before {top: 13%;/* height: 69%; */}
	.features .title {font-size: 27px;line-height: 41px;}
}


.current-menu-item a{
	color: #7a46b8 !important;
	
}
.projects img{
	height: 380px;
	width: 100%;
	object-fit: cover;
}

.nav-tabs .nav-link.active{
	    font-size: 15px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 0.7em 2em;
    background-color: var(--violet);
    border: none;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
}
.nav-tabs .nav-link{
		    font-size: 15px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 0.7em 2em;
    border: 1px solid var(--violet);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: var(--violet);
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
}
.nav-tabs{
	border-bottom: none;
}

.projects .portfolio-img-wrapper img{
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 10px;
}
@media screen and (max-width:768px){
.projects .portfolio-img-wrapper img{
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: 10px;
}	
}
.projects #flyer-tab-pane .portfolio-img-wrapper img{
	width: 100%;
	height: 350px; 
	object-fit: cover !important;
}



/* Additional CSS */
/*-----------------------------------
      contact section style
------------------------------------*/
.services-contact-section{
    background: var(--violet);
}
.modal .contact-section-content p{
    font-size: 13px;
    line-height: 23px;
    color: #7F7F7F;
}
.modal .contact-section-form{
    background: #7a46b8''
    position: relative;
/*     transform: translateY(-29px); */
    /* margin-bottom: -50px; */
}
.modal .contact-section-form:before{
    top: 0;
    left: -25px;
    width: 25.63px;
    height: 29px;
    position: absolute;
    content: "";
    background: var(--third-color);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    transition: all .5s ease-in-out;
    z-index: 1;
}

.modal .contact-section-form input,
.modal .contact-section-form select{
    height: 47px;
    border-radius: 3px;
    color: #7a46b8;
}

..modal .contact-section-form input::placeholder{
    color: #9E9E9E;
   
    font-size: 13px;
}
.services-contact-section .contact-section-form select{
    color: #9E9E9E;
}
.services-contact-section .contact-section-form input:focus{
    box-shadow: none;
}
.services-contact-section .contact-section-form .theme-btn {
    cursor: pointer;
    position: relative;
    padding: 10px 24px;
    color: #7a46b8;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 34px;
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    font-size: 15px;
    border-radius: 4px;
    
  }

.register-btn{
font-size: 15px;
	background: var(--violet);
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 0.7em 2em;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
	height:80px;
	border: none;
	outline: none;
}
.register-now-page input,
.register-now-page select{
	height: 50px !important;
}
.register-now-page .contact-form-wrapper{
	padding: 40px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	border-radius: 10px;
	
}

/* Additionial pricing CSS */
.pricing-tabs .nav-pills .nav-link.active{ 
	font-size: 15px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 0.7em 1.5em;
    background-color: var(--violet);
    border: none;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
}

.pricing-tabs .nav-pills .nav-link{
    font-size: 15px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 0.7em 1.5em;
    border: 1px solid var(--violet);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: var(--violet);
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
}
@media screen and (min-width:991px){
	.pricing-tabs .nav-pills .nav-link{
		width: 232px !important;
	}
}
.pricing-row ul li{
	text-align: start !important;
}
.seo-tabs-pricing ul li{
	text-transform: capitalize;
	font-size: 14px !important;
}
.seo-tabs-pricing ul li strong{
	text-align: end !important;
}

@media screen and (max-width:768px){
	.pricing-tabs .nav-pills{
		display: flex;
		justify-content: center;
		flex-direction: row !important;
		flex-wrap: wrap;
	}
	.pricing-tabs .nav-pills .nav-link{
		width: 38% !important;
		margin: 0 5px;
		padding: 5px 10px !important;
		font-size: 14px !important;
		height: 50px !important;
	}
}



/* Additional CSS */
.christmas-offer-style li{
	font-size: 20px;
}