@font-face {
    font-family: SourceSansPro-Regular;
    src: url('../fonts/SourceSansPro-Regular.ttf');
}

@font-face {
    font-family: SourceSansPro-SemiBold;
    src: url('../fonts/SourceSansPro-SemiBold.ttf');
}

@font-face {
    font-family: SourceSansPro-Bold;
    src: url('../fonts/SourceSansPro-Bold.ttf');
}



:root{
    --theme-color-1: #7B68EE;
    --theme-color-2: rgba(0, 215, 255, 0.08);;
    --theme-color-3: #0095CE;
    --theme-color-4: #00429B;
    --theme-color-5: #1C1C23;
    --body-bg: #ffffff;
    --font-color: #5F5F5F;
    --heading-color: #212529;
    --main-heading-color: #0B0B31;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: 'SourceSansPro-Regular';
    font-weight: normal;
    color: var(--font-color);
}

#overlayer {
    width:100%;
    height:100%;  
    position:absolute;
    z-index:9999;
    background:var(--theme-color-1);
}

.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index:99999;
    border: 4px solid #Fff;
    top: 50%;
    animation: loader 2s infinite ease;
    left: 50%;
}
  
.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}
  
@keyframes loader {
    0% {
      transform: rotate(0deg);
    }
    
    25% {
      transform: rotate(180deg);
    }
    
    50% {
      transform: rotate(180deg);
    }
    
    75% {
      transform: rotate(360deg);
    }
    
    100% {
      transform: rotate(360deg);
    }
}
  
@keyframes loader-inner {
    0% {
      height: 0%;
    }
    
    25% {
      height: 0%;
    }
    
    50% {
      height: 100%;
    }
    
    75% {
      height: 100%;
    }
    
    100% {
      height: 0%;
    }
}

h1, h2{
    color: var(--main-heading-color);
    margin-bottom: 0;
    font-family: 'SourceSansPro-Bold';
    font-weight: normal;
}

h3, h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'SourceSansPro-SemiBold';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
    border-radius: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'SourceSansPro-SemiBold';
    font-weight: normal;
}

.btn-main{
    color: #fff;
    background: linear-gradient(to right, #5236ff 50%, var(--theme-color-1) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .5s ease-out;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
}

.btn-secondary{
    color: var(--theme-color-1);
    background: linear-gradient(to right, #5236ff 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .5s ease-out;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: #fff;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--theme-color-4);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}

.navbar.fixed-top .navbar-nav .nav-link{
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link{
    color: #fff;
    font-family: 'SourceSansPro-SemiBold';
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
}


.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}


.navbar{
    background: transparent;
    box-shadow: transparent;
    transition: none !important;
}

.dropdown-menu{
    min-width: 12rem;
}


.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--heading-color);
    font-size: 16px;
    font-family: 'SourceSansPro-SemiBold';
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

.banner-section{
    background-image: url('../images/banner-bg-1.png');
    /* background: linear-gradient(to bottom, #370b6f, #00429b, #006dba, #0095ce, #2dbcdc), url('../images/banner-bg.png'); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 800px;
    display: inline-block;
    overflow: hidden;
}

.banner-grid{
    width: 100%;
    height: 100%;
    display: table;
    position: relative;
    z-index: 15;
}

.banner-grid-wrapper{
    vertical-align: middle;
    display: table-cell;
}

.banner-shape{
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-direction: column;
    text-align: left;
    width: 100%;
    /* animation: left_to_right 3s ease; */
}

.banner-small-heading{
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 10px;
    width: 100%;
}

.banner-main-heading{
    font-size: 55px;
    line-height: 70px;
    margin-bottom: 20px;
    color: #fff;
}

.banner-description{
    color: #fff;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 23px;
}

.banner-btns{
    width: 100%;
    display: flex;
}

.banner-image-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
}

.slider-banner .banner1{
    background-image: url('../images/banner-1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 800px;
}

.slider-banner .banner2{
    background-image: url('../images/banner-2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 800px;
}

.slider-content-wrapper{
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    animation: left_to_right 3s ease;
}

.banner .slick-list{
    margin: 0;
}

.banner .slick-slide {
    margin: 0 0px;
}

.home2 .section.services{
    margin-top: 0;
}

.banner .slick-dots{
    bottom: 20px;
}

.banner .slick-dots li button:before{
    display: none;
}

.banner .slick-dots li button{
    width: 35px;
    height: 6px;
    background: rgba(123, 104, 238, 0.4);
    border-radius: 6px;
    padding: 0;
}

.banner .slick-dots li{
    width: 35px;
    height: 6px;
    border-radius: 6px;
    padding: 0;
    margin: 0 3px;
}

.banner .slick-dots li.slick-active{
    background: var(--theme-color-1);
    width: 20px;
}

.banner .slick-dots li.slick-active button{
    width: 20px;
}

.banner .slick-prev{
    left: 50px;
    z-index: 10;
}

.banner .slick-next{
    right: 50px;
    z-index: 10;
}

.banner .slick-next:before, .slick-prev:before{
    font-size: 30px;
}

.section{
    padding: 60px 0px;
    position: relative;
}

.heading-line{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.heading-line span.length{
    width: 60px;
    height: 4px;
    border-radius: 6px;
    background-color: var(--theme-color-1);
    margin: 0px 6px;
}

.heading-line span.small{
    width: 20px;
    height: 4px;
    border-radius: 6px;
    background-color: var(--theme-color-1);
    margin: 0px 6px;
}

.section.services{
    background-color: #fff;
    z-index: 10;
    background-image: url('../images/services_bg_img.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-main-heading{
    font-size: 40px;
    line-height: 51px;
    text-align: center;
    margin-top: 25px;
}

.section-heading{
    margin-bottom: 4rem;
    position: relative;
}

.services-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 30px;
    text-align: left;
    height: 100%;
    position: relative;
    transition: ease-in-out 0.3s;
}

.services-icon{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px;
    transition: ease-in-out 0.3s;
}

.site-small-heading{
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.site-desctiption{
    margin-bottom: 20px;
}

.read-more-btn{
    text-transform: uppercase;
    font-size: 14px;
    line-height: 18px;
    font-family: 'SourceSansPro-Bold';
    font-weight: normal;
}

.read-more-btn i{
    margin-left: 10px;
}

.services-card:hover{
    transition: ease-in-out 0.3s;
    margin-top: -10px;
}

.services-card:hover .services-icon{
    background-color: var(--theme-color-3);
    transition: ease-in-out 0.3s;
}

*{
    transition: ease-in-out 0.3s;
}

.services-card:hover .read-more-btn{
    color: var(--theme-color-1);
}

.services-card:hover{
    background-color: var(--theme-color-2);
}

.section-heading-left{
    text-align: left;
    margin-bottom: 20px;
}

.section-heading-left .heading-line{
    justify-content: flex-start;
}

.section-heading-left .section-main-heading{
    text-align: left;
}

.progress{
    height: 6px;
    background-color: var(--theme-color-2);
}

.progress-bar{
    background-color: var(--theme-color-1);
}

.prograss-lable{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.prograss-lable span{
    font-family: 'SourceSansPro-SemiBold';
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: var(--theme-color-1);
}

.about-strength-list{
    margin: 20px 0px;
}

.about-strength-list li{
    margin-bottom: 15px;
}

.about-image-wrapper{
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-left: auto;
}

.about-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.overlay-about-box{
    position: absolute;
    width: 200px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    border: 5px solid var(--theme-color-3);
    bottom: 3rem;
    left: 3rem;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.overlay-about-box h2{
    font-size: 60px;
    line-height: 70px;
    font-family: 'SourceSansPro-Bold';
    font-weight: normal;
    margin-bottom: 0px;
    color: var(--theme-color-4);
}

.overlay-about-box p{
    font-size: 16px;
    line-height: 33px;
    font-family: 'SourceSansPro-SemiBold';
    font-weight: normal;
    margin-bottom: 0px;
    color: var(--theme-color-4);
}

.overlay-box-circle{
    background-color: var(--theme-color-2);
    width: 145px;
    height: 145px;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    left: -2rem;
    top: 2rem;
}

.solutions-content-card{
    display: flex;
    align-items: flex-start;
}

.sc-icon{
    min-width: 50px;
    min-height: 50px;
    background-color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 12px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
}

.sc-text{
    width: 100%;
}

.solutins-image-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.font-white{
    color: #fff;
}

.business-service{
    background: url('../images/servive_bg_image_low.png'), #00429B;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    position: relative;
    width: 100%;
}

.business-servive-card{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px;
    flex-direction: column;
    text-align: center;
}

.business-servive-card img{
    width: 50px;
    margin-bottom: 20px;
}

.testimonial-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1);
    border-radius: 6px; 
    padding: 30px;
    position: relative;
    height: 100%;
    padding-top: 50px;
    margin: 20px 0px;
}

.testimonial-card-author{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info{
    display: flex;
    align-items: center;
}

.author-img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 15px;
}

.author-img img{
    border-radius: 50%;
}

.auther-bio h4{
    font-size: 18px;
    line-height: 23px;
}

.auther-bio p{
    color: var(--theme-color-1);
}

.testimonial-stars i{
    color: #FFD643;
    margin-left: 5px;
}

.quote-icon-box{
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-color: var(--theme-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    position: absolute;
    top: -20px;
    left: 30px;
}

/* the slides */
.slick-slide {
    margin: 0 27px;
}

/* the parent */
.slick-list {
    margin: 0 -27px;
}

.team .slick-slide {
    margin: 0 10px;
}

.team .slick-list {
    margin: 0 -10px;
}

.testimonial .slick-dots{
    bottom: -75px;
}

.testimonial .slick-dots li button:before{
    display: none;
}

.testimonial .slick-dots li button{
    width: 35px;
    height: 6px;
    background: rgba(123, 104, 238, 0.4);
    border-radius: 6px;
    padding: 0;
}

.testimonial .slick-dots li{
    width: 35px;
    height: 6px;
    border-radius: 6px;
    padding: 0;
    margin: 0 3px;
}

.testimonial .slick-dots li.slick-active{
    background: var(--theme-color-1);
    width: 20px;
}

.testimonial .slick-dots li.slick-active button{
    width: 20px;
}

.company-success-card{
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 5px solid rgba(123, 104, 238, 0.5);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    height: 100%;
    text-align: center;
}

.company-success-card h3{
    font-size: 40px;
    line-height: 51px;
    color: #FFFFFF;
    font-family: 'SourceSansPro-Bold';
    font-weight: normal;
    margin-bottom: 10px;
    text-align: center;
}

.company-success-card h4{
    font-size: 20px;
    line-height: 25px;
    color: #FFFFFF;
    font-family: 'SourceSansPro-SemiBold';
    font-weight: normal;
    text-align: center;
}

.company-success{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/company-sccess-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: inline-block;
    background-attachment: fixed;
}

.team-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1);
    border-radius: 6px; 
    padding: 25px;
}

.team-card{
    height: 100%;
    text-align: center;
    margin: 20px 0px;
}

.team-member-image{
    border: 4px solid #7B68EE;
    box-shadow: 0px 0px 20px rgba(123, 104, 238, 0.25);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    position: relative;
    margin: auto;
    margin-bottom: 20px;
}

.team-member-image img{
    border-radius: 50%;
}

.team-member-link{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 25%);
    color: var(--theme-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.team-member-info{
    margin-bottom: 20px;
}

.team-member-info h3{
    font-size: 20px;
    line-height: 25px;
}

.team-member-social li{
    display: inline-block;
    margin: 0px 3px;
}

.team-member-social li a{
    background: rgba(123, 104, 238, 0.3);
    border-radius: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-1);
}

.blog-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.blog-image img{
    width: 100%;
    height: 220px;
    border-radius: 6px;
    object-fit: cover;
}

.blog-info{
    padding: 20px 20px;
}

.blog-publish-info{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.blog-publish-info li{
    margin-right: 15px;
    color: var(--theme-color-1);
}

.blog-publish-info li i{
    margin-right: 8px;
}

.newsletter{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/company-sccess-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 100%;
    background-attachment: fixed;
}

.newsletter-inner-wrapper{
    background: var(--theme-color-4);
    border-radius: 6px;
    padding: 50px;
}

.newsletter-inner-wrapper h3{
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 20px;
}

.newsletter-inner-wrapper p{
    color: #fff;
    margin-bottom: 20px;
}

.newsletter-form-group{
    position: relative;
}

.newsletter-input{
    border: 1px solid #FFFFFF;
    border-radius: 6px 6px 6px 6px;
    height: 51px;
    padding: 10px 103px 10px 15px;
    color: #fff;
    width: 100%;
    background-color: transparent;
}

.subscribe-submit-btn{
    color: #fff;
    background: linear-gradient(to right, #5236ff 50%, var(--theme-color-1) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .5s ease-out;
    border: 1px solid var(--theme-color-1);
    border-radius: 0px 6px 6px 0px;
    text-transform: uppercase;
    height: 51px;
    position: absolute;
    right: 0;
    padding: 10px 20px;
}

.subscribe-submit-btn:hover{
    background-position: left bottom;
    color: #fff;
    border-color: #5236ff;
}

.newsletter-input::placeholder{
    color: #fff;
}

.left-inner-wrapper h2{
    font-size: 38px;
    line-height: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.left-inner-wrapper p{
    color: #fff;
    margin-bottom: 20px;
}

footer{
    background: url('../images/footer-pattern.png'), #1C1C23;
    padding-top: 50px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: inline-block;
}

.footer-heading{
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 30px;
}

.footer-link-list li{
    margin-bottom: 15px;
}

.footer-link-list li a{
    color: #fff;
    display: flex;
    align-items: baseline;
}

.footer-link-list li a i{
    margin-right: 10px;
}

.footer-menu-list li {
    margin-bottom: 15px;
}

.footer-menu-list li a{
    color: #fff;
}

.footer-menu-list li a:before{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f105";
    margin-right: 8px;
    /* font-size: 9px; */
}

.footer-menu-block{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-subscribe-group{
    position: relative;
    width: 100%;
}

.footer-subscribe-input{
    width: 100%;
    background: #D9D9D9;
    border-radius: 30px;
    padding: 10px 15px;
    height: 51px;
    border: none;
}

.footer-subscribe-btn{
    position: absolute;
    right: 5px;
    height: 43px;
    color: #fff;
    background: linear-gradient(to right, #5236ff 50%, var(--theme-color-1) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .5s ease-out;
    padding: 10px 15px;
    border-radius: 30px;
    border: none;
    top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-subscribe-btn:hover{
    background-position: left bottom;
    color: #fff;
}


.footer-social-list li{
    display: inline-block;
    margin-right: 8px;
}

.footer-social-list li a{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 104, 238, 0.3);
    border-radius: 6px;
    color: var(--theme-color-1);
}

.footer-bottom-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
    border-top: 1px solid #787878;
    margin-top: 30px;
}

.copyright{
    color: #fff;
}

.botter-footer-menu ul li{
    display: inline-block;
    margin-left: 5px;
}

.botter-footer-menu ul li a{
    color: #fff;
}

.solutions-content-card .site-small-heading.one:hover{
    background-color: #9253f3;
    color: #fff;
}

.solutions-content-card .site-small-heading.two:hover{
    background-color: #7ee1fb;
    color: #fff;
}

.solutions-content-card .site-small-heading.three:hover{
    background-color: #31ea85;
    color: #fff;
}

.solutions-content-card .site-small-heading.four:hover{
    background-color: #dceb94;
    color: #fff;
}

.business-servive-card:hover{
    background: rgb(123 104 238 / 60%);
    margin-top: -10px;
}

.team-member-social li a:hover{
    background: rgba(123, 104, 238, 1);
    color: #fff;
}

.team-card:hover .team-member-image{
    border-color: var(--theme-color-3);
}

.blog-image{
    overflow: hidden;
}

.blog-card:hover .site-small-heading{
    color: var(--theme-color-1);
}   

.blog-card:hover .read-more-btn{
    color: var(--theme-color-1);
}   

.footer-social-list li a:hover{
    background: rgba(123, 104, 238, 1);
    color: #fff;
}

.blog-card:hover .blog-image img{
    transform: scale(1.5);
}

@keyframes left_to_right {
    from {
      margin-left: -100%;
    }
    to {
      margin-left: 0;
    }
}

@keyframes right_to_left {
    from {
      margin-left: 100%;
    }
    to {
      margin-left: 0;
    }
}

.partner-list-link{
    display: inline-block;
    width: 100%;
    text-align: center;
}

.partner-list-link img{
    width: 90px;
}

.filter-button{
    padding: 8px 20px;
    margin: 0px 6px;
}

.filter-button:focus, .filter-button:active, .filter-button:hover{
    background-color: var(--theme-color-1);
    color: #fff;
    box-shadow: none;
}

.filter-button.active{
    background-color: var(--theme-color-1);
    color: #fff;
    box-shadow: none;
}

.portfolio-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 50px;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    visibility: hidden;
}

.gallery_product img{
    border-radius: 6px;
}

.gallery_product:hover .portfolio-overlay{
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}

.po-inner{
    height: 100%;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 6px;
}

.po-inner h3 a{
    font-size: 16px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.po-inner p{
    font-family: 'SourceSansPro-SemiBold';
    font-weight: normal;
    color: var(--main-heading-color);
}

.team-member-link:hover{
    color: var(--theme-color-3);
}

.company-success-card:hover{
    transform: translateY(-10px);
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-1);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: #5236ff;
}

/* pages */
.page-banner-section{
    background: linear-gradient(to right, rgba(0,0,0,0.5) 20%,
    rgba(0,0,0,0.5)), url('../images/page-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 70vh;
}

.page-banner-inner{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.page-banner-heading{
    color: #fff;
    font-size: 45px;
    margin-bottom: 20px;
    text-align: center;
}

.page-breadcrumb li{
    display: inline-block;
    margin: 0px 3px;
}

.get-in-touch-wrapper .section-main-heading{
    text-align: left;
    margin-bottom: 30px;
}

.form-input-group{
    width: 100%;
    position: relative;
    display: inline-block;
}

.form-input{
    background: transparent;
    border: 2px solid #e9ebef;
    height: 67px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 4px;
    font-size: 15px;
    width: 100%;
    display: block;
}

.form-input-group.name::after{
    content: "\f007";
    font-family: 'Fontawesome';
    position: absolute;
    right: 25px;
    color: var(--theme-color-1);
    z-index: 999;
    font-weight: 700;
    top: 20px;
}

.form-input-group.email::after{
    content: "\f0e0";
    font-family: 'Fontawesome';
    position: absolute;
    right: 25px;
    color: var(--theme-color-1);
    z-index: 999;
    font-weight: 700;
    top: 20px;
}

.form-input-group.phone::after{
    content: "\f095";
    font-family: 'Fontawesome';
    position: absolute;
    right: 25px;
    color: var(--theme-color-1);
    z-index: 999;
    font-weight: 700;
    top: 20px;
}

.form-input-group.website::after{
    content: "\f0ac";
    font-family: 'Fontawesome';
    position: absolute;
    right: 25px;
    color: var(--theme-color-1);
    z-index: 999;
    font-weight: 700;
    top: 20px;
}

.form-input-textarea{
    padding: 15px;
    margin-bottom: 30px;
    background: transparent;
    border: 2px solid #e9ebef;
    width: 100%;
}

.form-input-group.message::after{
    content: "\f044";
    font-family: 'Fontawesome';
    position: absolute;
    right: 25px;
    color: var(--theme-color-1);
    z-index: 999;
    font-weight: 700;
    top: 20px;
}

.get-in-address-wrapper{
    background: linear-gradient(0deg, rgba(82, 54, 255, 0.7), rgba(82, 54, 255, 0.7)), url('../images/blog-1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: flex;
    background-attachment: initial;
    border-radius: 6px;
    padding: 50px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.getin-heading{
    color: #fff;
    margin-bottom: 30px;
}

.get-in-contact{
    display: flex;
    align-items: center;
}

.getin-contact-icon{
    color: #FFFFFF;
    background-color: #a594ff;
    min-width: 40px;
    height: 40px;
    border-radius: 100%;
    margin: 0px 15px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-in-contact-info{
    width: 100%;
}

.get-in-contact-info p{
    color: #fff;
    margin-bottom: 0px;
}

.get-in-contact-info h3{
    color: #fff;
    font-size: 20px;
}

.getin-contact-list li{
    margin-bottom: 3rem;
}

.getin-contact-list li:last-child{
    margin-bottom: 0;
}

.detail-content-wrapper{
    position: relative;
    width: 100%;
    display: inline-block;
}

.detail-content-wrapper img{
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.content-main .section-main-heading{
    text-align: left;
    margin-bottom: 30px;
}

.content-points{
    margin: 30px 0px;
}

.content-points ul{
    display: flex;
    justify-content: space-between;
}

.content-points ul li{
    display: flex;
    align-items: flex-start;
    margin-right: 30px;
}

.content-point-img img{
    min-width: 50px;
    height: 50px;
    margin-right: 15px;
    display: inline-block;
    width: 50px;
}

.content-point-info h3{
    font-size: 20px;
    margin-bottom: 10px;
}

.points-list li::before{
    font-family: "Fontawesome";
    font-weight: 400;
    content: "\f061";
    margin-right: 10px;
    font-size: 10px;
    color: var(--theme-color-1);
}

.points-list li{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.sidebar-widget-title{
    margin-top: -5px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
    font-size: 20px;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.sidebar-widget-title::after{
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 50px;
    border-bottom: 2px solid var(--theme-color-1);
}

.sidebar-list-service ul li{
    position: relative;
}

.sidebar-list-service ul li a{
    display: block;
    padding: 12px 15px;
    background: #ffffff;
    margin-top: 15px;
    position: relative;
    z-index: 1;
    font-weight: normal;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
    font-family: 'SourceSansPro-SemiBold';
}

.sidebar-list-service ul li::after{
    font-family: "Fontawesome";
    font-weight: 400;
    content: "\f105";
    /* margin-right: 10px; */
    font-size: 16px;
    color: var(--theme-color-1);
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 10;
}

.sidebar-widhet-help{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/help-widget.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: flex;
    background-attachment: initial;
    border-radius: 6px;
    padding: 50px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.sidebar-widhet-help i{
    display: inline-block;
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 35px;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background: var(--theme-color-1);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.sidebar-widhet-help i::after{
    position: absolute;
    left: -10%;
    top: -10%;
    content: "";
    height: 120%;
    width: 120%;
    background: var(--theme-color-1);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.3;
}

.sidebar-widhet-help h4{
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.sidebar-widhet-help p{
    margin-bottom: 15px;
    color: #fff;
}

.sidebar-widhet-help h2{
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.project-heading{
    font-size: 45px;
    margin-bottom: 20px;
}

.project-overview-list{
    display: flex;
    margin-top: 45px;
    margin-bottom: 15px;
}

.project-overview-list li{
    flex-basis: 0;
    flex-grow: 1;
    margin-bottom: 30px;
    margin-left: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--heading-color);
    border-top: 1px solid #e7e7e7;
    padding-top: 15px;
}

.project-overview-list li span{
    text-transform: capitalize;
    display: block;
    font-weight: 400;
    /* color: #666666; */
}

.project-overview-list li:first-child{
    margin-left: 0;
}

.project-top-content .thumb img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.project-overview-small-heading{
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.italic-quote{
    font-family: 'SourceSansPro-SemiBold';
    font-weight: normal;
    font-style: italic;
}

.page.team .team-card:hover{
    transform: translateY(-10px);
}

.pricing-card{
    border: 1px solid #E5E5E5;
    position: relative;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
}

.pricing-title{
    position: relative;
    padding: 20px 0;
}

.pricing-title h2{
    font-size: 20px;
    line-height: 24px;
    font-weight: normal;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.procing-price{
    padding: 15px 0;
    font-size: 36px;
    line-height: 40px;
    font-family: 'SourceSansPro-SemiBold';
    background-color: #EEE;
    color: #444;
    text-shadow: 1px 1px 1px #fff;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

.price-sub{
    display: inline-block;
    position: relative;
    font-size: 16px;
    vertical-align: top;
    top: -7px;
    margin-left: 2px;
}

.price-tenure{
    display: block;
    font-size: 13px;
    line-height: 20px;
    color: var(--font-color);
    font-family: 'SourceSansPro-Regular';
    font-weight: normal;
}

.pricing-features{
    padding: 10px 15px;
    border-bottom: 1px solid #E5E5E5;
    text-shadow: 1px 1px 1px #fff;
}

.pricing-features li {
    position: relative;
    padding: 6px 0;
    border-top: 1px solid #EEE;
}

.pricing-features li:first-child {
    border-top: 0;
}

.pricing-features li span {
    font-family: 'SourceSansPro-SemiBold';
    font-weight: normal;
    color: #333;
}

.pricing-action{
    background-color: #EEE;
    padding: 15px 0;
}

.pricing-card.center .pricing-title h2{
    color: var(--theme-color-1);
}

.pricing-card.center .procing-price{
    color: var(--theme-color-1);
}

.pc-popular{
    background-color: var(--theme-color-3);
    color: #fff;
    font-size: 10px;
    padding: 6px;
    position: absolute;
    width: 200px;
    transform: rotate(45deg);
    right: -70px;
    top: 10px;
}

.error-container{
    height: 100vh;
    width: 100%;
    display: inline-block;
    position: relative;
}

.error-page-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.error-image{
    width: 70%;
}

.error-page-content{
    width: 100%;
    margin: 30px 0px;
}

.error-page-content h2{
    margin-bottom: 10px;
}

.faq-accordion .accordion-item{
    margin-bottom: 20px;
}

.faq-accordion .accordion-button:not(.collapsed){
    color: var(--theme-color-1);
    background-color: var(--theme-color-2);
    box-shadow: none;
}

.faq-accordion .accordion-button::after{
    background-image: none;
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f067";
    font-size: 10px;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    background-image: none;
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f068";
    font-size: 10px;
}

.faq-accordion .accordion-item{
    border: none;
}

.faq-accordion .accordion-button:focus{
    border-color: transparent;
    box-shadow: none;
}

.faq-accordion .accordion-button{
    background-color: #eee;
    border-radius: 6px;
}

.comingsoon-container{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/coming-soon-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: flex;
    background-attachment: initial;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
}

.comingsoon-page-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.comingsoon-page-wrapper h2{
    font-size: 45px;
    margin-bottom: 20px;
    color: #fff;
}

.comingsoon-page-wrapper p{
    color: #fff;
}

.soon-subscribe{
    margin: 20px 0px;
    width: 80%;
}

.soon-form-wrapper{
    width: 100%;
    position: relative;
}

.soon-input{
    width: 100%;
    height: 60px;
    background-color: #fff;
    border-radius: 30px;
    padding: 10px 15px;
    border: none;
    position: relative;
}

.soon-submit{
    position: absolute;
    padding: 10px 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-1);
    color: #fff;
    border-radius: 30px;
    width: 120px;
    top: 5px;
    right: 5px;
    border: none;
}

.soon-counter{
    width: 100%;
    margin-top: 40px;
}

.soon-counter-list{
    display: flex;
    align-items: center;
    justify-content: center;
}

.soon-counter-list div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100px;
    height: 100px;
    background-color: rgb(255 255 255 / 20%);
    border-radius: 20px;
    margin: 0px 10px;
    font-size: 34px;
    font-family: 'SourceSansPro-Bold';
    font-weight: normal;
    color: var(--theme-color-1);
    border: 1px solid #6b6b6b;
}

.soon-counter-list div span{
    margin-top: 8px;
    font-size: 16px;
    color: var(--heading-color);
    font-family: 'SourceSansPro-SemiBold';
    font-weight: normal;
    color: #fff;
}

.policy-main-heading{
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'SourceSansPro-Bold';
    font-weight: normal;
}

.policy-description{
    margin-bottom: 15px;
}

.recent-post-wrapper{
    margin-top: 30px;
}

.recent-post-list li{
    margin-top: 15px;
}

.recent-post-list li{
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.recent-post-list li:last-child{
    border: none;
}

.recent-post-inner{
    display: flex;
}

.recent-post-img img{
    margin-right: 15px;
    border-radius: 10px;
    min-width: 80px;
    width: 80px;
}

.recent-post-heading{
    font-size: 12px;
    margin-bottom: 0px;
}

.recent-post-wrapper p{
    font-size: 10px;
}

.tags-list li{
    display: inline-block;
    margin-right: 5px;
}

.tags-list li a{
    padding: 6px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-list-card{
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.blc-image img{
    width: 300px;
    border-radius: 10px;
    min-width: 300px;
    margin-right: 15px;
    height: 100%;
    object-fit: cover;
}

.blc-info h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.blog-list-card:last-child{
    border-bottom: none;
}

.blog-search{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.blog-search-input{
    width: 100%;
    position: relative;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    height: 47px;
}

.search-btn{
    width: 47px;
    height: 47px;
    background-color: var(--theme-color-1);
    color: #fff;
    border-radius: 0px 6px 6px 0px;
    border: none;
    position: absolute;
    right: 0;
}

.blog-main-image{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-footer{
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: space-between;
}

.article-tags span{
    font-family: 'SourceSansPro-Bold';
    font-weight: normal;
    margin-right: 5px;
}

.article-tags a{
    margin-right: 5px;
}

.article-share span{
    font-family: 'SourceSansPro-Bold';
    font-weight: normal;
    margin-right: 5px;
}

.article-share{
    display: flex;
}

.article-share a{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--theme-color-1);
    border-radius: 6px;
    margin: 0px 3px;
}

.comments-area {
    padding: 25px;
    margin-top: 30px;
    -webkit-box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 8%);
    box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 8%);
    background-color: #ffffff;
}

.comments-area .comments-title {
    position: relative;
    margin-bottom: 30px;
    line-height: initial;
    font-size: 24px;
}

.comments-area .comment-body {
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    display: flex;
}

.comment-author-img img{
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: inline-block;
    margin-right: 15px;
    border-radius: 50%;
}

.comment-author-info h3{
    font-size: 20px;
    margin-bottom: 10px;
}

.comment-author-info h4{
    font-size: 12px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.reply-btn{
    padding: 6px;
    border-radius: 30px;
    width: 90px;
    display: inline-block;
    border: 1px solid#ccc;
    text-align: center;
    margin-top: 15px;
    color: var(--theme-color-1);
}

.comments-area .children{
    margin-left: 75px;
}

.comments-area .comment-respond {
    margin-top: 30px;
}

.comment-reply-title{
    font-size: 20px;
    margin-bottom: 20px;
}

.comment-input{
    height: 51px;
    width: 100%;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px 15px;
}

.comment-textarea{
    width: 100%;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px 15px;
}

.success-msg-contact {
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display {
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: var(--theme-color-1);
    font-size: 14px;
    border-radius: 6px;
    z-index: 10;
    bottom: 72px;
    left: 50%;
    padding-left: 10px;
    color: #fff;
    width: 265px;
    transform: translate(-50%, 50%);
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
}

.check-success-icon {
    background: var(--theme-color-3);
    padding: 10px;
    margin-right: 10px;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-msg-contact {
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display {
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left: 0;
    margin: 0;
    line-height: 0;
    color: red;
}

.mission-vission-img{
    width: 100%;
    height: 350px;
    position: relative;
    display: inline-block;
}

.mission-vission-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    display: inline-block;
    border-radius: 12px;
}

.mission-vission-content{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.mission-vission-content h3{
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'SourceSansPro-Bold';
    color: var(--main-heading-color);
}

@media (max-width: 1050px) {
    .comimgsoon-img-hig {
        min-height: fit-content;
        max-height: 1300px !important;
        padding: 24px auto;
    }
}