
/*
[Master Stylesheet] 
Project:Seo Html
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/
:root {
    --seo-theme-color:#cd37ff;
    --seo-white-color: #ffffff;
    --seo-dark-blue-color: #200f47;
    --seo-light-purple-color:#6c6087;
    --seo-bg-color:#f4f5ff;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;
    font-family: 'Mukta', sans-serif;
}
html {
  scroll-behavior: smooth;
}
*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus{	
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
h1, h2, h3, h4, h5, h6{	
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	margin:0;
	padding:0;	
	word-break: break-word;
}
img {
	max-width: 100%;
}
input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :hover, :focus, .form-control:focus{
	outline: none !important;
	box-shadow:none;
}
ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;
}
.container-fluid{
    padding: 0 135px;
}
.seo-heading{
    font-size: 32px;
    color: var(--seo-dark-blue-color);
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
}
.seo-paragraph{        
    font-size: 16px;   
    color:var(--seo-light-purple-color);
    font-weight: 400;    
}
/* bottom to top css */
.seo-top-icon a {
    display: flex;
    background-color: var(--seo-theme-color);
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
	animation: 4s installation infinite alternate;
}
@keyframes installation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
.seo-top-icon a svg {
    fill: #ffffff;
    transform: rotate(270deg);
}
.seo-top-icon a:hover {
  cursor: pointer;
  box-shadow: 0 0 0 25px var(--orange-color) inset;
}
.seo-top-icon a:active {
  background-color: #555;
}
.seo-top-icon a.show {
  opacity: 1;
  visibility: visible;
}
/* bottom to top css end */
/* loader css start */
.loader {
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}
.loader img {
	width: 100px;
}
/* loader css start end */
/* botton css start*/
.seo-btn{  
    max-width: 170px;      
    width: 100%;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, #cd37ff 0%,#a133ff 51%,  #cd37ff 100%);
    background-size: 200% auto;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    color: var(--seo-white-color);    
    transition: all 0.5s;    
    border: none;
}
.seo-btn:hover{
    background-position: right center;
    color: var(--seo-white-color);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgb(205 55 255 / 50%);
}
/* botton css end */
/* header section css start */
.seo-header-wrapper {
    position: absolute;
    top: 35px;
    right: 0;
    left: 0;
}
.seo-navbar-wrapper{
    display: flex;
    align-items: center;
}
.seo-navbar-menu{
    margin-left: auto;
}
.seo-navbar-menu .responsive-logo a img{
    display: none;
}
.seo-navbar-menu ul li{
    display: inline-block;
    margin-right: 30px;
}
.seo-navbar-menu ul li:last-child{
    margin-right: 0;
}
.seo-navbar-menu ul li a{    
    position: relative; 
    display: block; 
    color: var(--seo-white-color);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;   
}
.seo-navbar-menu ul li a span {
    position: relative;    
    display: inline-block;
    text-transform: capitalize;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;    
}
.seo-navbar-menu ul li a span:before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
	color:#000;
}
.seo-navbar-menu ul li:hover a span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%); 
}
.seo-navbar-menu ul li a:hover, .seo-navbar-menu ul li a:focus{
	background:transparent;
	outline:none;
}
.seo-navbar-menu ul li.active a span {
    color:#000;
    font-weight: 700;
}
.seo-navbar-menu ul li.active:hover a span {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.seo-postion {
    position: unset;
    background-color: #fff;
    padding: 15px 0px 10px;
}
.seo-postion ul li a{
    color: #000;
}
/* header section css end */
/* banner section css start */
.seo-banner-wrapper{
    background-image: url(../images/banner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
    padding-bottom: 60px;   
}
.seo-banner-left-content{
    padding-top: 310px;
}
.seo-banner-left-content .tagline{
    background-image: linear-gradient(to right, #ce37ff 0%, #7b00dd 100%);
    background-clip: text;
    color: rgba(0, 0, 0, 0);
    -webkit-background-clip: text;
    font-size: 18px;    
    font-weight: 600;
    border-bottom: 1px solid #deacef;
    position: relative;
    pointer-events: none;
}
.seo-banner-left-content .tagline:after{
    content: '';
    width: 76px;
    height: 4px;
    background-image: linear-gradient(-35deg, #fff 0%, #cd37ff 100%);
    position: absolute;
    right: -100px;
    top: 15px;
}
.seo-banner-left-content h1{
    font-size: 60px;
    color: var(--seo-dark-blue-color);
    font-weight: 800;
    margin: 20px 0;
}
.seo-banner-left-content p{
    max-width: 571px;
    width: 100%;
    font-size: 18px;
    color: var(--seo-light-purple-color);
    font-weight: 400;
}
.seo-banner-input{
    margin-top: 40px;
    position: relative;
    max-width: 571px;
    width: 100%;
    box-shadow:0 0 15px rgba(52,124,222,0.1);
    background-color: #fdfbff;
    padding: 10px;
}
.seo-banner-input input{    
    width: 100%;
    height: 50px;
    border-radius: 6px;
    background-color: #fbf7ff;
    border: 1px solid #e8eef5;
    font-size: 18px;
    color: #87879e;
    font-weight: 400;
    padding: 0 215px 0 20px;   
}
.seo-banner-input a {
    border-radius: 6px;
    background-color: var(--seo-dark-blue-color);
    padding: 12px 30px 12px 30px;
    font-size: 18px;
    color: var(--seo-white-color);
    font-weight: 600;
    position: absolute;
    right: 10px;
}
/* banner section css end */
/* partner section css start */
.seo-partner-wrapper{
    margin-top: 120px;
}
.seo-partner-heading .seo-heading{
    text-transform: capitalize;
    text-align: left;
}
.seo-partner-heading span{
    color: var(--seo-theme-color);    
    font-weight: 800;
}
.seo-partner-wrapper .swiper-slide{
    text-align: left;
    cursor: pointer;
    opacity: 0.5;
    margin-top: 65px;      
    transition: all 0.3s ease-in-out;        
}
.seo-partner-wrapper .swiper-slide span svg{
    fill: #656f8d;
    transition: all 0.3s ease-in-out;
} 
.seo-partner-wrapper .swiper-slide:hover span svg{
    fill: var(--seo-theme-color);
} 
.seo-partner-wrapper .swiper-slide:hover{
    transform: translateY(-10px);
}
.seo-partner-wrapper .swiper-slide:hover{
    opacity: 1;
}
/* partner section css end */
/* feauter section css start */
.seo-feature-wrapper{
    padding: 80px 0;
    background-color: var(--seo-bg-color);
    /* background-image: url(../images/feat-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
}
.seo-feature-heading{
    text-align: center;
    margin-bottom: 50px;
    margin-top: 10px;
}
.seo-top-heading {
    background-image: linear-gradient(to right, #ce37ff 0%, #7b00dd 100%);
    background-clip: text;
    color: rgba(0, 0, 0, 0);
    -webkit-background-clip: text;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 290px;
    width: 100%;
    position: relative;
    margin: auto;
}
.seo-top-heading:after{
    content: '';
    width: 76px;
    height: 4px;
    background-image: linear-gradient(-35deg, #fff 0%, #cd37ff 100%);
    position: absolute;
    right: 0;
    top: 10px;
}
.seo-top-heading:before{
    content: '';
    width: 76px;
    height: 4px;
    background-image: linear-gradient(-35deg, #cd37ff 0%, #fff 100%);
    position: absolute;
    left: 0;
    top: 10px;
}
.seo-feature-box{
    background-color: var(--seo-white-color);    
    border-radius: 10px;
    box-shadow:0 0 15px rgba(52,124,222,0.1);
    padding: 45px 30px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.seo-feature-box:hover{
    transform: translateY(-10px);
}
.seo-feature-box:hover .seo-feature-box-inner h4{
    color: var(--seo-theme-color);
}
.seo-feature-box-inner{
    text-align: center;
}
.seo-feature-box-inner h4{
    font-size: 20px;
    color: var(--seo-dark-blue-color);
    font-weight: 800;
    text-transform: capitalize;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}
.seo-feature-box-inner .seo-paragraph{
    margin: 20px 0;
    line-height: 1.8s;
}
.seo-feature-box-inner a{
    background-image: linear-gradient(to right, #ce37ff 0%, #7b00dd 100%);
    background-clip: text;
    color: rgba(0, 0, 0, 0);
    -webkit-background-clip: text;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}
.seo-feature-box-inner a:hover{
    letter-spacing: 2px;
}
.seo-feature-box-inner a img{
    margin-left: 5px;
    margin-top: -2px;
}
/* feature section css end */
/* about section css start */
.seo-about-wrapper{
    padding: 80px 0;
    background-color:var(--seo-white-color);
}
.seo-About-left img{
    animation: up-down 2s infinite alternate-reverse both;
}
@keyframes up-down{
    0%{
        transform: translateY(0px);
    }
    100%{
        transform: translateY(-10px);
    }
}
.seo-about-heading .seo-top-heading{
    max-width: 170px;
    margin-left: 0;
}
.seo-about-heading .seo-heading{
    color: #333333;
    text-align: left;
    margin-top: 10px;
}
.seo-about-heading .seo-top-heading:before{
    display: none;
}
.seo-about-text{
    margin-top: 20px;
}
.seo-about-btn{
    margin-top: 30px;
}
/* about section css end */
/* facility section css start */
.seo-facility-wrapper{
    padding: 80px 0;
    background-color: var(--seo-white-color);
}
.seo-facility-heading .seo-top-heading{
    max-width: 270px;
    margin-left: 0;
}
.seo-facility-heading .seo-top-heading:before{
    display: none;
}
.seo-facility-heading .seo-heading{
    margin-top: 10px;
    text-align: left;
}
.seo-facility-content .seo-paragraph{
    color: #666666;
    margin: 30px 0 40px 0;
}
.seo-facility-right{
    position: relative;
}
.seo-facility-right:after {
    content: '';
    width: 348px;
    height: 348px;
    border-radius: 50%;
    opacity: 0.06;
    background-image: linear-gradient(-35deg, #a133ff 0%, #cd37ff 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;    
}
/* circular counter */
.seo-counter-box{
    background-color: var(--seo-white-color);
    border-radius: 10px;
    box-shadow:0 0 15px rgba(52,124,222,0.1); 
    padding: 40px 30px; 
    max-width: 260px;  
    width: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.seo-counter-box:hover{
    transform: translateX(10px);
}
.seo-counter-box:first-child{
    margin-bottom: 30px;
}
.counter-second-box{
    margin-top: 30px;
}
.seo-counter-inner .first .circle{
    position: relative;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    cursor: default;
    margin: auto;
 }
.first .circle .box, .first .circle .box span{
    position: absolute;
    top: 50%;
    left: 50%;
}
.circle .box span{
    font-size: 30px;
    color: var(--seo-dark-blue-color);
    font-weight: 700;
    transform: translate(-45%, -45%);
    transition: all 0.1s;
}
.first .text {
    font-size: 20px;
    font-weight: 700;
    color: var(--seo-dark-blue-color);
    text-transform: capitalize;
    text-align: center;
    margin-top: 30px;
}
/* facility section css end */
/* video section start */
.seo-video-wrapper{
    background-image: url(../images/video-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 80px;    
}
.seo-video-heading{
    text-align: center;
}
.seo-video-heading .seo-heading{
    margin-top: 10px;
}
.seo-video-heading .seo-top-heading:after{    
    top: 8px;
}
.seo-video-heading .seo-top-heading:before{    
    top: 8px;
}
.seo-video-heading .seo-paragraph{
    max-width: 571px;
    width: 100%;
    color: #666666;
    padding: 15px 0 40px 0;
    margin: auto;
    line-height: 1.7;
}
.seo-video-box{
    max-width: 720px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--seo-white-color);    
    margin: auto;
}
.seo-video-inner{
    position: relative;
    padding: 55px 0;
    text-align: center;
}
.seo-video-inner .seo-video-img-overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.8);
    border-radius: 10px;
}
.seo-video-inner .seo-video-btn span{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-image: linear-gradient(-35deg, #a133ff 0%, #cd37ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shadow-pulse 2s infinite;
}
.seo-video-inner .seo-video-btn span{
    fill: var(--seo-white-color);
}
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 70%)
    }
    100% {
        box-shadow: 0 0 0 30px rgb(255 255 0 / 0%);        
    }
}
/* video section end */
/* mission section css start */
.seo-mission-wrapper{
    padding: 80px 0;
    background-color: var(--seo-white-color);
}
.seo-mission-heading{
    text-align: center;
}
.seo-mission-heading .seo-heading{
    margin-top: 10px;
}
/* tab css start */
.nav-tabs {
    border-bottom: none !important;
}
.seo-mission-tab-wrapper .nav{
    max-width: 870px;
    width: 100%;
    background-color: var(--seo-white-color);
    border-radius: 6px;
    box-shadow:0 0 15px rgba(52,124,222,0.1); 
    margin: 50px auto 30px auto; 
    padding: 25px 0;   
    justify-content: center;
}
.seo-mission-tab-wrapper .nav li{
    margin-right: 50px;
}
.seo-mission-tab-wrapper .nav li:nth-child(4){
    
}
.seo-mission-tab-wrapper .nav li a{
    font-size: 16px;
    color: #666666;
    font-weight: 500;
    padding: 25px 0 20px 0;   
    position: relative;
}
.seo-mission-tab-wrapper .nav li a:after{
    content: '';
    width: 97px;
    height: 4px;
    background-color: var(--seo-theme-color);
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 100%; 
    left: 50%;   
    transform: translateX(-50%)scale(0);
    transition: all 0.3s;
}
.seo-mission-tab-wrapper .nav li a.active:after{
    content: '';
    width: 97px;
    height: 4px;
    background-color: var(--seo-theme-color);
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 100%;
    left: 50%;        
    transform: translateX(-50%)scale(1);
    transition: all 0.3s;
}
.seo-mission-tab-wrapper .nav li a.active{
    color: var(--seo-theme-color);
}
.seo-mission-content-box {
    border-radius: 10px;
    background-color: #fefcff;
    border: 1px solid #e8eef5;
    padding: 35px 50px;
}
.seo-mission-content-inner .seo-heading{
    font-size: 26px;
    text-align: left;
    margin-top: 10px;
}
.seo-mission-content-inner .seo-paragraph {
    color: #666666;
    padding: 15px 0 30px 0;
}
.seo-mission-list ul li.paragarph{
    margin-bottom: 25px;
    color: #666666;
}
.seo-mission-list ul li.paragarph:last-child{
    margin-bottom: 0px;
}
.seo-mission-list ul li img{
    margin-right: 10px;
    margin-top: -5px;
}
/* tab scs end */
/* mission section css end */
/* score section css start */
.seo-score-wrapper{
    padding: 80px 0;
    /* background-color: var(--seo-bg-color); */
    background-image: url('../images/score-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.seo-score-heading{
    text-align: center;
}
.seo-score-heading .seo-heading{
    margin-top: 10px;
    margin-bottom: 50px;
}
.seo-score-box{
    max-width: 970px;
    width: 100%;
    background-color: var(--seo-white-color);
    border-radius: 10px;
    margin: auto;
    padding: 50px 45px;
}
.seo-score-box-inner {
    display: flex;    
    align-items: center;
}
.seo-score-box-inner input {
    max-width: 320px;
    width: 100%;
    height: 50px;
    border-radius: 6px;
    background-color: #fbf7ff;
    border: 1px solid #e8eef5;
    font-size: 18px;
    color: #87879e;
    font-weight: 400;
    padding: 0 20px;
    margin-right: 20px;
}
/* score section css end */
/* client section css start */
.seo-client-wrapper{
    padding: 80px 0;
    background-color: var(--seo-white-color);
}
.seo-client-top-heading{
    text-align: center;
}
.seo-client-top-heading .seo-heading{
    margin-top: 10px;    
}
.seo-client-box{
    background-color:var(--seo-white-color);
    padding: 12px 35px 60px 50px;
    border-radius: 10px;        
    box-shadow:1.5px 3.99px 27px 0px rgb(0 0 0 / 10%);
    margin-top: 65px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.seo-client-box:after {
    content: '';
    max-width: 411px;
    width: 100%;
    background-image: linear-gradient(to left, #a133ff -50%, #cd37ff 100%);
    padding: 25px 0;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px 0 25px 25px;
    z-index: 0;
}
.seo-client-box:before {
    content: '';
    background-image: url(../images/client-box.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 170px;
    height: 143px;
    position: absolute;    
    left: 50%;    
    bottom: 25px;
    transform: translateX(-50%);
}
.seo-client-heading {
    display: flex;
    margin-left: -25px;
}
.seo-client-name {
    position: relative;
    z-index: 1;
    margin: 5px 0 0 -10px;
}
.seo-client-name h6{
    font-size: 20px;
    font-weight: 700;
    color: var(--seo-white-color);
    transition: all 0.3s ease-in-out;
}
.seo-client-name sup{
    font-size: 14px;
    font-weight: 400;
    color: var(--seo-white-color);    
}
.seo-client-text .seo-paragraph{
    color: #666666;    
    margin-top: 20px;
    line-height: 1.7;
    transition: all 0.3s ease-in-out;
}
.seo-client-img {    
    z-index: 1;
}
.seo-qoute-img {
    position: absolute;
    top: -14px;
    right: 35px;
}
.seo-qoute-img svg{
    fill: var(--seo-theme-color);
    transition: all 0.3s ease-in-out;
}
.seo-client-wrapper .swiper-container{    
    padding: 0 20px 75px;
}
.seo-client-wrapper .swiper-slide {
    opacity: 0;
}
.seo-client-wrapper .swiper-slide.swiper-slide-active,.seo-client-wrapper .swiper-slide.swiper-slide-next {
    opacity: 1;
}
.seo-client-wrapper .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background-color: var(--seo-light-purple-color);
}
.seo-client-wrapper .swiper-pagination-bullet-active{
    width: 12px;
    height: 12px;
    background-color: var(--seo-theme-color);
}
.seo-client-wrapper .swiper-slide{
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
/* client section css end */
/* pricing section css start */
.seo-pricing-wrapper{
    padding: 80px 0;
    background-color: var(--seo-bg-color);
}
.seo-price-heading{
    text-align: center;
}
.seo-price-heading .seo-heading{
    margin-top: 10px;
    margin-bottom: 50px;
}
.seo-pricing-tab-wrapper .nav {    
    background-color: #e7e8f7;
    border-radius: 50px;
    padding: 25px 10px 25px 10px;    
    justify-content: space-between;
    position: relative;
}
.seo-pricing-tab-wrapper .nav li:last-child{
    margin-right: 0;
}
.seo-pricing-tab-wrapper .nav li a{
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    padding: 15px 50px;
}
.seo-pricing-tab-wrapper .nav li a.active {
    font-weight: 600;
    background-color: var(--seo-white-color);
    border-radius: 50px;
    color: var(--seo-theme-color);    
}
.seo-tab-header{
    position: relative;
    max-width: 335px;
    width: 100%;
    margin: auto;
    padding-bottom: 30px;
}
.seo-tab-header span {
    font-size: 12px;
    color: var(--seo-white-color);
    font-weight: 700;
    text-transform: uppercase;
    background-image: linear-gradient(to right, #cd37ff 0%,#a133ff 51%,  #cd37ff 100%);
    background-size: 200% auto;
    border-radius: 50px;
    padding: 10px 12px;
    position: absolute;
    top: 15px;
    right: -95px;
    display: block;
}
.seo-tab-header img{
    position: absolute;
    top: 10px;
    right: -20px;
}
.seo-price-table-heading {
    margin-bottom: 30px;
}
.seo-price-table-heading h1{
    font-size: 42px;    
    color: var(--seo-dark-blue-color);
    font-weight: 400;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.seo-price-table-heading span {    
    background-color: #eeeffb;
    border-radius: 50px;
    padding: 5px 20px 2px 20px;
    font-size: 16px;
    color: var(--seo-dark-blue-color);
    font-weight: 500;
    text-transform: uppercase;        
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}
.seo-price-table-list ul li{
    margin-bottom: 25px;
}
.seo-price-table-list ul li a{
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}
.seo-price-table-list ul li a img{
    margin:-5px 15px 0 0;
}
.seo-price-btn .seo-btn{
    max-width: 150px;  
    margin-top: 35px; 
    transition: all 0.3s ease-in-out; 
}
.seo-tab-wrapper{
    display: flex;    
    margin: 30px -15px 0 -15px;  
    background-color: var(--seo-white-color); 
    border-radius: 10px;  
}
.seo-inner {
    padding: 50px;
    transition: all 0.3s ease-in-out;
}
.seo-price-table-box {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;  
    transition: all 0.3s ease-in-out;
}
.seo-price-table-box:hover .seo-inner{
    background-color: var(--seo-theme-color);    
    border-radius: 20px;  
    transform: scale(1.09);    
}
.seo-price-table-box:hover .seo-price-table-heading h1{
    color: var(--seo-white-color);
}
.seo-price-table-box:hover .seo-price-table-list ul li a{
    color: var(--seo-white-color);
}
.seo-price-table-box:hover .seo-price-btn .seo-btn{
    background: var(--seo-white-color);
    color: var(--seo-theme-color);
}
/* pricing section css end */
/* footer section css start */
.seo-footer-wrapper{
    padding: 80px 0;
    background-color: #302636;
}
.seo-footer-first .seo-paragraph{
    margin-top: 25px;
    font-weight: 400;
    color: var(--seo-white-color);
}
.seo-footer-btm-heading h1{
    font-size: 24px;
    font-weight: 700;
    color: var(--seo-white-color);    
}
.seo-footer-btm-list ul {
    margin-top: 35px;
    margin-left: 20px;
}
.seo-footer-btm-list ul li{
    margin-bottom: 15px;
    list-style-type: disc;
    transition: all 0.3s ease-in-out;
}
.seo-footer-btm-list ul li::marker{    
    color: var(--seo-white-color);
    transition: all 0.3s;
}
.seo-footer-btm-list ul li a{
    color: var(--seo-white-color);
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}
.seo-footer-btm-list ul li:hover{
    transform: translateX(5px);
}
.seo-footer-btm-list ul li:hover::marker{
    color: var(--seo-theme-color);
}
.seo-footer-btm-list ul li a:hover{
    color: var(--seo-theme-color);
}
.seo-footer-btm-list ul li a img{
    margin:-4px 18px 0 0;
}
.seo-footer-btm-twitter ul{
    margin-top: 35px;
}
.seo-footer-btm-twitter ul li{
    position: relative;
}
.seo-footer-btm-twitter ul li.footer-last-para{
    margin-top: 8px;
}
.seo-footer-btm-twitter ul img {
    position: absolute;
    left: -30px;
    top: 12px;
}
.seo-footer-btm-twitter ul li.seo-paragraph{
    font-weight: 400;
    color: var(--seo-white-color);
    margin-left: 30px;
}
.seo-footer-btm-twitter ul li img{
    margin:-4px 18px 0 0;
}
.seo-footer-btm-twitter a{
    font-size: 14px;
    font-weight: 500;
    color: var(--seo-theme-color);
    margin-left:30px;
}
.seo-footer-icon ul{
    margin-top: 25px;
    text-align: left;    
}
.seo-footer-icon ul li{
    display: inline-block;
    margin-right: 15px;
}
.seo-footer-icon ul li a i{
    width: 44px;
    height: 44px;
    border: 1px solid var(--seo-white-color);
    color: var(--seo-white-color);
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.seo-footer-icon ul li a i:hover{
    background-color: var(--seo-theme-color);    
    color: var(--seo-white-color);
    border: 1px solid var(--seo-theme-color);
    transform: translateY(-5px);
}
/* footer section css end */
/* copyright section start */
.seo-copyright{
    background-color: #29202e;
}
.seo-copyright .seo-paragraph{
    color: var(--seo-white-color);
    font-weight: 400;
    text-align: center;
    padding: 10px 0;
}
.seo-copyright a{
    color: var(--seo-theme-color);
    font-weight: 600;
}
/* copyright section end */
/* swiper slider */
.seo-banner-wrapper .swiper-pointer-events, .seo-client-wrapper .swiper-pointer-events{
    touch-action: pan-y;
    overflow: hidden;
    position: relative;
}
/* swiper slider */
/* inner-banner-css-start */
.dis_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.breadcrumb{
    margin-bottom: 0;
}
.seo-page_title_bg {
    padding: 80px 0px;
}
.seo-page_title_bg{
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.seo-page_title_bg .overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #000000b5;
}
.seo-title {
    z-index: 99;
    color: #fff;
    font-size: 40px;
}
ul.breadcrumb li {
    z-index: 99;
    color: #fff;
}
ul.breadcrumb li a{
    color: #fff;
}
/* contact-css-start */
.seo-contact_wrapper {
    background:#ffffff;
    padding: 80px 0;
}
.seo-contact_from {
    width: 100%;
    margin: auto;
    background:#ffffff;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.08);
    padding: 45px 50px 50px;
}
.seo-contact_from .seo-title {
    margin-bottom: 26px;
}
.seo-inputField {
    margin-bottom: 30px;
    position: relative;
}
.seo-inputField input, .seo-inputField textarea {
    width: 100%;
    padding: 0 60px 0 20px;
    height: 50px;
    box-shadow: inset 0 0 10px 0 rgba(194, 71, 96, 0.03);
    border: 1px solid #ced7e1;
    color:#ced7e1;
    border-radius: 6px;
}
.seo-inputField input:focus, .seo-inputField textarea:focus {
    border-color: #ced7e1;
}
.seo-inputField input:focus, .seo-inputField textarea:focus, .seo-inputField input, .seo-inputField textarea {
    -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.seo-inputField i {
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
    color: #ced7e1;
    line-height: 50px;
}
.seo-inputField textarea {
    padding: 15px 60px 15px 20px;
    height: 150px;
}
/* .seo-contact_from .seo-btn-sub {
    margin: 1px 0 0 0;
    width: 108px !important;
    border-radius: 50px !important;
    height: 42px !important;
    border: 1px solid transparent !important;
    background: #00c3c9 !important;
    color: #fff !important;
} */
.seo-contact_from input::-webkit-input-placeholder, .seo-contact_from textarea::-webkit-input-placeholder {
    color: #ced7e1;
}
.seo-contact_from input::-moz-placeholder, .seo-contact_from textarea::-moz-placeholder {
    color:#ced7e1;
}
.seo-contact_from input:-ms-input-placeholder, .seo-contact_from textarea:-ms-input-placeholder {
    color: #ced7e1;
}
.seo-contact_from input:-moz-placeholder, .seo-contact_from textarea:-moz-placeholder {
    color:#ced7e1;
}
.response {
    color: red;
}
/* end */
/* map */
.responsive-map{
    overflow: hidden;
    padding-bottom:35.25%;
    position:relative;
    height:0;
    }
    .responsive-map iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
    }
/* end */
.seo-title1 {
    color: #000;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}
/* model-css-start */
.seo-video-inner .modal {   
    background: #00000063;
}
/* blog-section-start */
.seo-blog-sec-start{
    padding: 80px 0px;
}
.blog-title p a {
    font-size: 25px;
    line-height: 1.2;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    /* margin: 10px 0px; */
}
.blog-title p:hover a{
    color:#cd37ff;
}
.blog-meta ul {
    display: flex;
    align-items: center;
}
.blog-meta ul li a {
    color: #cd37ff;
    padding: 20px 0px;
}
.blog-meta ul li:last-child {
    margin-left: 20px;
}
.inner-content {
    margin: 0 0 30px;
}
.blog-title {
    padding-top: 15px;
    padding-bottom: 10px;
}
.blog-details p {
    padding: 10px 0px;
}
.modal-dialog.modal-dialog-centered {
    max-width: 860px;
}
.blog-details a {
    color:#cd37ff;
    font-size: 18px;
    font-weight: 600;
}
.blog-details a:hover{
    letter-spacing: 2px;
}
.blog-details p {
    padding: 10px 0px;
    color: #6c6087;
    font-size: 18px;
}
/* blog-single */
/* blog-single */

.blog-single-start {
    padding: 80px 0px 0px;
    /* background: #191a1a; */
}
.seo-_page_title_bg {
    background-color: #000;
    padding: 150px 0px 80px 0px;
    background-image: url(../images/single-bg.jpg);
}
.breadcrumb li {
    color: #fff;
    margin: 3px;
}
.breadcrumb li a {
    color: #fff;
}
.dis_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.seo-_title {
    color: #000;
    font-size: 32px;
    text-transform: capitalize;
}
.lms_entry_meta span a {
    color:#000;
    text-decoration:none;
    padding-top: 10px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
}
.lms_entry_meta span:hover a{
    color:rgb(205 55 255);  
}
.lms_entry_meta span a i {
    color:rgb(205 55 255);  
    transition: all 0.3s ease-in-out;
}
.lms_entry_meta span a:hover i {
    color: #cd37ff;
}
.blog-box h3 {
    color: #000;
    margin-top: 30px;
}
.seo-blog_comment_wrapper h4 {
    font-size: 28px;
    font-weight: 700;
    position: relative;
    margin: 27px 0px 20px 0px;
    /* border-bottom: 2px solid #000; */
    /* max-width: 174px; */
    color: #000;
    /* padding-top: 3px; */
}
.seo-blog_comment {
    display: inline-flex;
    margin-bottom: 10px;
    margin-top: 40px;
}
.seo-comment_image {
    float: left;
    padding-right: 10px;
}
.seo-comment_image img {
    width: 70px;
    height: 70px;
    border-radius: 3px;
}
.seo-comment_text {
    float: right;
    width: 92%;
    padding: 0px 20px;
}
.seo-comment_text h5 {
    margin: 0px;
    font-weight: 600;
    font-size: 18px;
    color: #000;
}
.seo-comment_text p {
    margin: 15px 0px 0px 0px;
    color: #000;
    font-size: 15px;
    font-weight: 400;
}
.seo-comment_text h5 span {
    float: right;
    text-transform: capitalize;
    font-size: 13px;
    color: #cd37ff;
}
.seo-comment_text h5 span a {
    text-decoration: none;
    color: #272727;
    padding-left: 25px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.single_form {
    padding: 0px 0px 80px;
}
a.seo-btn.button.padding {
    margin: 0;
}
.lms_entry_meta {
    margin: 10px 0px 14px;
}
textarea.loc_form_field {
    height: 150px;
    resize: none;
    padding: 12px 20px;
}
.loc_section_heading {
    color:#000;
    font-size: 32px;
    margin-bottom: 35px;
    font-weight: 700;
}
.loc_form_field {
    width: 100%;
    border: 1px solid #000;
    padding: 0 20px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    margin-bottom: 25px;
}
.seo-blog_sub_comment.seo-toppadder30 {
    margin-left: 60px;
}
.blog-single {
    padding: 80px 0px;
}
.blogAuthoreImg img {
    width: 110px;
    height: 110px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}
/* .blogAuthoreImg img {
    width: 181px;
    height: 100px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
} */
.blogAuthoreImg {
    flex: 0 0 9%;
    width: 9%;
}
.blogAuthoreMessageBox {
    background: #cd37ff;
    border: none;
    border-radius: 15px;
    padding: 25px;
    display: flex;   
    align-items: center;
    margin: 71px 0 71px;
    color: #ffffff;
}
.blogAuthoreContent {
    padding-left: 15px;
}
.seo_portfolio_page{
    position: relative;
    padding: 80px 0;
    background-color: var(--seo-bg-color);
}
.seo_filter ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 770px;
    width: 100%;
    /* background-color: var(--seo-white-color); */
    border-radius: 6px;
    margin: 0 auto 20px;
    /* box-shadow: 0 0 15px rgba(52,124,222,0.1); */
    /* margin: 50px auto 30px auto; */
    /* padding: 25px 0; */
}
.seo_filter ul li {
    padding: 10px 10px;
}
.seo_filter ul li a{
    font-size: 16px;
    /* color: #666666; */
    color: var(--seo-dark-blue-color);
    font-weight: 500;
    padding: 25px 0 20px 0;
    position: relative;
    transition: all .5s ease-in-out;
}
.seo_filter ul li a.active, .seo_filter ul li a:hover {
    color: var(--seo-theme-color);
}
/* .seo_filter ul li a.active:after, .seo_filter ul li a { */
    .seo_filter ul li a.active:after, .seo_filter ul li a::after {
    content: '';
    /* width: 69px; */
    width: 0;
    height: 4px;
    background-color: var(--seo-theme-color);
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 71%;
    left: 50%;
    transform: translateX(-50%)scale(1);
    transition: all 0.3s;
}
.seo_filter ul li a:hover:after, .seo_filter ul li a.active:after{
    width: 100%;
}
.seo_portfolio_div{
    margin: 0 0 20px;
    position: relative;
    transition: all .5s ease-in-out;
}
.seo_overlay_content {
    position: absolute;
    left: 50%;
    right: 51%;
    top: 0;
    bottom: 0;
    margin: auto;
    /* height: 100%;
    width: 100%; */
    /* background-color: rgb(0 0 0 / 65%); */
    background-color: rgba(24, 24, 24, 0.74);
    backdrop-filter: blur(3px);
    transition: all 400ms linear;
    visibility: hidden;
    opacity: 0;
}
.seo_portfolio_div:hover .seo_overlay_content{
    visibility: visible;
    opacity: 1;
    left: 0;
    right: 0;
    transition: all 300ms linear;
}
.seo_overlay_content i {
    position: absolute;
    top: 46%;
    left: 50%;
    color: var(--seo-theme-color);
    transform: translate(-50%, -50%);
    font-size: 25px;
    transform: scale(0);
    visibility: hidden;
    opacity: 0;
    transition: all 400ms linear;
}
.seo_portfolio_div:hover .seo_overlay_content i{
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}