@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');




/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: #3c4049;
  background-color: #ffffff;
}



a {
  color: #9fde59;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #9fde59, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #552772;
    font-family: "Raleway", sans-serif;
}

h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: #000;
    left: calc(50% - 20px);
    margin-top: 5px;
}

p{
	  font-family: "Open Sans", sans-serif;
  line-height: 26px;
  font-size: 18px !important;
  font-weight:500 !important
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
  transition: all 0.5s;
  z-index: 997;
}


.header .topbar {
  background-color: rgba(255, 255, 255, 0);
  height: 40px;
  padding: 0;
  font-size: 16px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: #9fde59;
  font-weight:600;
  font-size:16px
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: #ffffff;
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}


@media (max-width: 320px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 11px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: #ffffff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

@media (max-width: 320px) {
.header .topbar .social-links a {
display:none
}	
}

.header .topbar .social-links a:hover {
  color: #ffffff;
}

.header .branding {
  min-height: 60px;
  padding: 0px 0px 5px;
   background: rgba(81, 38, 110);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
  margin-top:5px
}

@media (max-width: 893px) {
	.header .logo img {
  max-height: 50px;
  margin-right: 8px;
  margin-top:5px
}
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  color: #552772;
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* Header on Scroll
------------------------------*/
.scrolled .header {
 background: rgba(81, 38, 110);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 893px) { 
  .navmenu {
    padding: 0;
}
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #3c4049;
    font-size: 17px;
    padding: 0 2px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
 

   .fixed-top .navmenu a,
  .fixed-top .navmenu a:focus {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
	text-transform:uppercase
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #9fde59;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .navmenu .active:before {
    visibility: visible;
    width: 50%;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before {
    visibility: visible;
    width: 100%;
  }



    .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
	background:#fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  
  

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none !important;
    background: #fff;
	color:rgba(81, 38, 110)
  }
  
@media (max-width: 1024px) {
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none !important;
    background: #fff;
	color:rgba(81, 38, 110)
  }
}	

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #fff;
	background:rgba(81, 38, 110)
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 80%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}



/* Mobile Navigation */
@media (max-width: 893px) {
  .mobile-nav-toggle {
    color:#fff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;

  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  
  .navmenu a:hover{
	  	  background:rgba(81, 38, 110);
	  color:#fff
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid color-mix(in srgb, #fff, transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  

  .navmenu a,
  .navmenu a:focus {
    color: rgba(81, 38, 110);
    padding: 10px 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
	background:#fff
  }
  
  @media (max-width: 478px) {
	  .navmenu a,
  .navmenu a:focus {
    color: rgba(81, 38, 110);
    padding: 10px 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: wrap;
    transition: 0.3s;
	background:#fff
  } 

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid color-mix(in srgb, #fff, transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
	max-height:350px
  }  
  }
  
    @media (max-width: 320px) {
	  .navmenu a,
  .navmenu a:focus {
    color: rgba(81, 38, 110);
    padding: 10px 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
	background:#fff
  }  
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color:rgba(81, 38, 110);
	color:#fff
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #9fde59;
    color: #ffffff;
  }



  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #9fde59;
    color: #ffffff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
  }
  
  @media (max-width: 320px) {
	  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 10px;
    transition: all 0.5s ease-in-out;
  }  
  }
  
  .navmenu .dropdown ul a:hover{
	  background:rgba(81, 38, 110);
	  color:#fff
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  
  @media (max-width: 320px) {
	      .navmenu .dropdown ul a{
		  font-size:10px !important;
	  }
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: #fff;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-bottom {
  padding: 20px 0 0 0;
  background:#552772;
  color:#fff
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color:#fff !important
}

.footer .footer-bottom .copyright p .sitename {
  font-weight: 600;
}


@media (max-width: 768px) {


  .footer .footer-bottom {
    text-align: center;
  }


}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #552772;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #9fde59, transparent 20%);
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}





/*--------------------------------------------------------------
# Header Carousel
--------------------------------------------------------------*/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

    #header-carousel .carousel-item {
        position: relative;
        max-height: 640px;
    }
	


@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-item .btn{
	border:0px
}

/*** Banner ***/
.banner {
      background:url(../img/paybbles-fintech-service-platform.jpg) center center no-repeat;    
  /* Set a specific height */
  min-height: 600px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}





@media (max-width: 893px) {
.banner {
      background:url(../img/paybbles-fintech-service-platform.jpg) center center no-repeat;    
  /* Set a specific height */
  min-height: 450px; 

  /* Create the parallax scrolling effect */


  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}	
	
}

@media (max-width: 600px) {
.banner {
      background:url(../img/paybbles-fintech-service-platform.jpg) center center no-repeat;    
  /* Set a specific height */
  min-height: 350px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}	
	
}

.banner h1, .banner h2{
	color:#fff
}

.banner h1{
		font-size:55px !important;
		color:#9fde59;
		width:55%
	}
	
	.banner h2{
		width:53%
	}
	
	.lightgr{
		color:#9fde59
	}
	
		
	@media (max-width: 1024px) {
		.banner h1{
		font-size:45px !important;
		color:#9fde59;
		width:65%
	}
	
	}
	
	@media (max-width: 893px) {
		.banner h1{
		font-size:45px !important;
		color:#9fde59;
		width:95%
	}
	
		.banner h2{
		width:73%
	}
		
	}
	
		@media (max-width: 768px) {
		.banner h1{
		font-size:40px !important;
		color:#9fde59;
		width:100%
	}
	
		.banner h2{
		width:83%
	}
		
	}
	
			@media (max-width: 600px) {
		.banner h1{
		font-size:40px !important;
		color:#9fde59;
		width:100%;
		margin-top:60px
	}
	
		.banner h2{
		width:83%
	}
		
	}
	
				@media (max-width: 478px) {
		.banner h1{
		font-size:30px !important;
		color:#9fde59;
		width:100%;
		margin-top:60px
	}
	
		.banner h2{
		width:83%;
		font-size:20px
	}
		
	}

/*--------------------------------------------------------------
# Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #3c4049;
  background-color: #ffffff;
  position: relative;
  padding-top: 100px;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 500;
}

.page-title nav {
  background-color: color-mix(in srgb, #3c4049, transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section,
.section {
  color: #3c4049;
  background-color: #ffffff;
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #3c4049, transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #9fde59;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}




/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.intro-para {
  padding: 50px 0;
      background: #f7f7f7;
}


.intro-para .ip-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
    margin-top:20px
}

.intro-para .ip-item {
  padding: 0px 0;
  display: flex;
  transition: all 0.3s ease;
}


.intro-para .ip-sidebar1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
}

.intro-para .ip-item1 {
  padding: 32px 0;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.intro-para img{
	max-height:600px
}

.intro-para .ip-info {
  flex: 1;
}

.intro-para .ip-info h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #552772;
  line-height: 1.4;
  margin-left:10px  
}

.intro-para .ip-info p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  margin-left:10px
}

.intro-para .ip-info ul {
  list-style: none;
  padding: 0;
}

.intro-para .ip-info ul li {
  padding: 0 30px 0px 30px;
  position: relative;
}

.intro-para .ip-info ul i {
  position: absolute;
  font-size: 24px;
  left: 0;
  top: -3px;
  color: rgba(81, 38, 110);
}

.ex-mar{
	margin-top:10px
}


@media (max-width: 1024px) {
	.ex-mar{
	margin-left:20px
}

}


@media (max-width: 992px) {
  .intro-para .ip-sidebar {
    padding-left: 0;
    margin-top: 0px;
  }
  
  .first-one{
	margin-top:20px  
  }
  
  .intro-para .ip-sidebar1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 0px;
}


  .intro-para .service-details h2 {
    font-size: 28px;
  }
  
  	.ex-mar{
	margin-left:0px !important
}
}

@media (max-width: 768px) {
  .intro-para {
    padding: 60px 0;
  }
  
  .intro-para .ip-image {
position:relative;
	background: linear-gradient(to left, rgba(190,215,247,0), rgba(19,48,88,0.2), rgba(19,48,88,1)), url(../img/financial-services-products-sc.jpg);
    background-size: cover;
    height: 400px;
}

  .intro-para .service-image-wrapper {
    height: 280px;
  }

  .intro-para .service-overlay {
    padding: 24px;
  }

  .intro-para .service-details {
    padding-top: 24px;
  }

  .intro-para .service-details h2 {
    font-size: 24px;
  }

  .intro-para .service-details p {
    font-size: 15px;
  }

  .intro-para .plat-item {
    padding: 24px 0;
  }

  .intro-para .specialties-grid {
    margin-top: 50px;
  }

  .intro-para .specialty-image {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .intro-para .specialty-content h5 {
    font-size: 14px;
  }

  .intro-para .specialty-content span {
    font-size: 12px;
  }
}


@media (max-width: 478px) {

  .intro-para .ip-image {
position:relative;
	background: linear-gradient(to left, rgba(190,215,247,0), rgba(19,48,88,0.2), rgba(19,48,88,1)), url(../img/financial-services-products-vsc.jpg);
    background-size: cover;
    height: 400px;
}

}

@media (max-width: 320px) {

  .intro-para .ip-image {
position:relative;
	background: linear-gradient(to left, rgba(190,215,247,0), rgba(19,48,88,0.2), rgba(19,48,88,1)), url(../img/financial-services-products-vsc.jpg);
    background-size: cover;
    height: 250px;
}


.intro-para .ip-image .sp-txt{
	position:absolute;
	color:#fff;
	width:200px;
	left:10px;
	font-size:20px;
	text-align:left;
	font-weight:bold;
	text-transform:uppercase;
	top:20%;
	line-height:1.8em
}
}


/*--------------------------------------------------------------
# Home Page Platforms Section
--------------------------------------------------------------*/

.plat h1{
	  font-size:32px;
	  font-weight:600
}

@media (max-width: 320px) {
.plat h1{
	  font-size:22px;
	  font-weight:600
}
	
}

.plat-item {
	background:#dddddd;
	text-align:center;
	transition: .5s;
}

.plat-item h5{
	font-size: 21px;
    font-weight: 700;
    color: #552772;
	text-transform:uppercase
}

.plat-item:hover {
    margin-top: -10px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.pulse1 {
    background: rgb(var(--pulse-color));
    border-radius: 50%;
    height: 40px;
    width: 40px;
    box-shadow: 0 0 0 0 rgba(var(--pulse-color), 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

.pulse-icon1{
	  background: #552a70;
	    border-radius: 20%;
    height: 70px;
    width: 70px;
	  display:block;
  margin:0 auto 20px auto
}

.pulse-icon1 img{
	height:65px;
}


   

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/ 
  

.services{
    background: #f7f7f7;
    overflow: hidden;
}

.services  h1 {
    font-size: 32px;
	font-weight:600
}

.services .content-inner{
	background:#c7c5c5;
	padding:5px;
}

.services h2{
	color:#fff;
	font-size:40px;
	position:absolute;
	    left: calc(50% - 10px);
		top:0px
}


.emfh{
	margin-top:12px
}

.serv-box{
		position:relative;
		background:#552a70;
		height:200px
}



.serv-box h3{
	font-size:21px;
	font-weight:600;
	text-transform:uppercase;
	margin-bottom:10px;
	position:relative;
	color:#fff
}

.serv-box h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    left: calc(10% - 35px);
    margin-top: 5px;
}

.serv-box p{
	font-weight:500;
	color:#fff
}

@media (max-width: 1024px) {
	.serv-box{
		position:relative;
		background:#552a70;
		height:250px
}

.serv-box h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    left: calc(10% - 25px);
    margin-top: 5px;
}

}

@media (max-width: 893px) {
	.serv-box{
		position:relative;
		background:#552a70;
		height:230px
}	
}

@media (max-width: 768px) {
	.serv-box{
		position:relative;
		background:#552a70;
		height:auto
}

.serv-box h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    left: calc(10% - 45px);
    margin-top: 5px;
}

}

@media (max-width: 478px) {
	.serv-box{
		position:relative;
		background:#552a70;
		height:auto;
		margin-bottom:20px
}

.serv-box h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    left: calc(10% - 40px);
    margin-top: 5px;
}

}

@media (max-width: 320px) {
.serv-box h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    left: calc(10% - 25px);
    margin-top: 5px;
}	
}

.services .btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 15px;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.1rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight:600
}
.services .btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #552772;
  border-radius: 15px;
  z-index: -2;
}
.services .btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #9fde59;
  transition: all 0.3s;
  border-radius: 15px;
  z-index: -1;
}
.services .btn:hover {
  color: #fff;
}
.services .btn:hover:before {
  width: 100%;
}


.emfp{
	padding-top:15px
}

.emfp1{
	margin-top:50px
}

.serv-icon{
	  background: #552a70;
	    border-radius: 20%;
    height: 60px;
    width: 60px;
	 position:absolute;
	 top:-40px
}

.serv-icon img{
	max-height:40px;
	display:block;
	margin:10px auto 0px auto;
}


.serv-icon1{
	  background: #dddddd;
	    border-radius: 20%;
    height: 80px;
    width: 80px;
	 position:absolute;
	 top:-40px
}

.serv-icon1 img{
	max-height:45px;
	display:block;
	margin:10px auto 0px auto;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.t-banner {
      background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(../img/testimonials-bg.jpg);
  /* Set a specific height */
  min-height: 400px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 320px) {
	.t-banner {
      background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(../img/testimonials-bg.jpg);
  /* Set a specific height */
  min-height: 500px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
}


.testimonials  h1 {
    font-size: 32px;	
	font-weight:600;
	color:#fff
}

@media (max-width: 320px) {
.testimonials  h1 {
    font-size: 22px;	
	font-weight:600;
	color:#fff
}	
}

.testimonials h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    left: calc(50% - 20px);
    margin-top: 5px;
}

.testimonials p{
	margin-top:10px;
	color:#fff
}

.testimonials h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
	color: #9fde59;
	text-transform:uppercase
}

.tes-icon1{
    height: 70px;
    width: 70px;
	  display:block;
  margin:0 auto 0px auto
}

.tes-icon1 img{
	height:65px;
}

.list_carousel1.responsive {
width: auto;
margin-left:0;
}

.list_carousel1 ul {
margin: 0;
padding: 0;
list-style: none;
display: block;
}

.list_carousel1 li {
height: 200px;
display: block;
float: left;
margin-right:25px;
margin-left:25px;
padding:5px
}
   
@media (max-width: 768px) {
.list_carousel1 li {
height: auto;
display: block;
float: left;
margin-right:25px;
margin-left:25px;
padding:5px
}	
}


   
.list_carousel1 li span{
	font-size: 17px;
    letter-spacing: 4px;
    color: #596277;
	display:block
}

.list_carousel1 .pager{
	position:absolute;
	left: calc(50% - 20px);
}

.list_carousel1 .pager a {
margin:2px;
overflow: hidden;
text-indent: -999px;
border-radius:20%;
background:none;
color:#9fde59 important;
display:inline-block;
border:2px solid #9fde59;
width:12px;
height:12px;
}

.list_carousel1 .pager a:hover{
color:#552772
}


.list_carousel1 .pager a.selected {
border:2px solid #9fde59;
background:#9fde59
}



/*************************
***Inner Page Title CSS****
**************************/



.page-title {
  position: relative;
  padding: 50px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-title:before {
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
}

.page-title .title-text h1 {
  position: relative;
  font-size: 45px;
  color: #ffffff;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  margin-top:100px
}

.page-title .title-text h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: #000;
    left: calc(50% - 20px);
    margin-top: 5px;
	display:none
}


.page-title .title-text .title-menu {
  padding-left: 0;
  margin-bottom: 0;
}

.page-title .title-text .title-menu li {
  position: relative;
  color: #fff;
  font-size: 18px;
  display: inline-block;
  line-height: 30px;
  text-transform:uppercase;
}

@media (max-width: 478px) {
	.page-title .title-text .title-menu li {
  position: relative;
  color: #fff;
  font-size: 16px;
  display: inline-block;
  line-height: 30px;
  text-transform:uppercase;
}
}


@media (max-width: 320px) {
	.page-title .title-text .title-menu li {
  position: relative;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  line-height: 30px;
  text-transform:uppercase;
}
}

.theone span{
	  color:#191970;
	  font-weight: 500;
    transition: all 500ms ease;
}

.page-title .title-text .title-menu li a {
  margin-right: 8px;
  color: #ffffff;
  font-weight: 500;
  transition: all 500ms ease;
}

.page-title .title-text .title-menu li a:hover {
  color: #191970;
  transition: all 500ms ease;
}




/*************************
******Tabs CSS************
**************************/


#tabs1 ul {
  margin: 0;
  padding: 0;
}

@media (max-width:767px){
	#tabs1 ul {
  margin: 0 0 50px 0;
  padding: 0;
}
}

#tabs1 ul li {
  margin-bottom:10px;
  display: inline-block;
  width: 100%;
  }


#tabs1 ul li:last-child {
  margin-bottom: 0px;
}
#tabs1 ul li a {
  width: 100%;
  text-transform: uppercase;
   padding:11px 20px 11px 20px;
  display: inline-block;
    font-size:16px;
    line-height: 24px;
      color:#552772;
    font-weight:600;
    transition: all 0.3s;
	letter-spacing:1px;
}



#tabs1 ul li:hover a {
   background:#552772;
  color:#fff
}

@media (max-width:893px){
	#tabs1 ul li a {
  width: 100%;
  text-transform: uppercase;
   padding:11px 20px 11px 20px;
  display: inline-block;
    font-size:16px;
    line-height: 24px;
      color:#552772;
    font-weight:600;
    transition: all 0.3s;
	letter-spacing:1px;
}
}

@media (max-width:768px){
	#tabs1 ul li a {
  width: 100%;
  text-transform: uppercase;
   padding:7px 30px 7px 10px;
  display: inline-block;
    font-size:16px;
    line-height: 24px;
      color:#552772;
    font-weight:600;
    transition: all 0.3s;
	letter-spacing:1px;
}
}

@media (max-width:320px){
	#tabs1 ul li a {
  width: 100%;
  text-transform: uppercase;
   padding:7px 10px 7px 10px;
  display: inline-block;
    font-size:16px;
    line-height: 24px;
      color:#552772;
    font-weight:600;
    transition: all 0.3s;
	letter-spacing:1px;
}
}




/*************************
*****Platforms Tabs CSS****
**************************/


.platforms{
    background:#fff;
    overflow: hidden;
}


.platforms  h1 {
    font-size: 28px;
	font-weight:600;
	text-transform:uppercase;
	margin-bottom:0px
}

.platforms h1::after {
display:none
	
}

.platforms .line3 {
    border-top: 3px solid #7d7d7d;
    padding-top: 0px;
    padding-bottom: 5px;
    margin: 0 auto 10px 0;
    width: 30px;
    position: relative;
}


.platforms p {
	margin-bottom:0rem;
	line-height:1.8em
}

.platforms .st{
	color:#552772;
	font-weight:700
}

.platforms .bg-pl{
	background:#dddddd
}

.platforms .tabs .col-xl-3 {
    margin: 0px !important;
    padding: 0px !important;
}

@media (max-width: 1024px) {
.platforms .tabs .col-xl-3 {
    margin: 0px !important;
    padding: 0px !important;
}

}

.platforms img{
	box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}


.platforms .ic i {
    font-size: 24px;
    color: rgba(81, 38, 110) !important;
}

.plat-box p{
	font-weight:500;
	text-align:center
}

.plat-box-img{
	position:relative;
}

@media (max-width:893px){
	.plat-box-img{
	position:relative;
	margin-top:20px
}
}

.plat-box{
		position:absolute;
		bottom:0px;
		width:100%;
		left:0px;
		background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
		height:50%
}


.plat-box-text{
		position:absolute;
		bottom:10px;
		left:10px;
}

.plat-box .head{
	font-size:28px;
	font-weight:600;
	color:#9fde59;
}

.plat-box .sub-head{
	font-size:21px;
	font-weight:600;
	color:#fff !important;
}

@media (max-width:1024px){

.plat-box .head{
	font-size:24px;
	font-weight:600;
	color:#9fde59;
}

.plat-box .sub-head{
	font-size:17px;
	font-weight:600;
	color:#fff !important;
}
	
}



@media (max-width:893px){
	
	.plat-box{
		position:relative;
		background:#000;
		 padding: 15px 10px 5px 10px;
}

.plat-box-text{
		position:relative;
}

.plat-box .head{
	font-size:24px;
	font-weight:600;
	color:#9fde59;
		position:relative;
}

.plat-box .sub-head{
	font-size:19px;
	font-weight:600;
	color:#fff !important;
		position:relative;
		width:95%
}
}	

@media (max-width:478px){
	
	.plat-box{
		position:relative;
		background:#000;
		 padding: 15px 0px 5px 10px;
}

.plat-box-text{
		position:relative;
}


.plat-box .head{
	font-size:20px;
	font-weight:600;
	color:#9fde59;
		position:relative;
		width:90%
}

.plat-box .sub-head{
	font-size:17px;
	font-weight:600;
	color:#fff !important;
		position:relative;
		width:90%
}
}	


@media (max-width:320px){
	
	.plat-box{
		position:relative;
		background:#000;
		 padding: 15px 0px 5px 10px;
}

.plat-box-text{
		position:relative;
}

.plat-box .head{
	font-size:18px;
	font-weight:600;
	color:#9fde59;
		position:relative;
}

.plat-box .sub-head{
	font-size:13px;
	font-weight:600;
	color:#fff !important;
		position:relative;
}
}	


#tabs1 ul li a i {
  float: right;
  padding-top:4px
}

#tabs1 ul .ui-tabs-active span {
  background: #fff;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#tabs1 ul .ui-tabs-active a {
  background:#552772;
  color:#fff !important
}




#tabs1 ul .ui-tabs-active span {
  color:#454545;
}

#tabs1 .tabs-content1 .icon {
    max-height: 60px;
	display:block;
	margin:auto
}

.tabs-content1 .tick{
max-height:30px;
border:none
}	


.tabs-content1 {
  margin-left: 30px;
  text-align: left;
  display: inline-block;
  position: relative;
    transition: all 0.5s;
}


@media (max-width:893px){
.tabs-content1 {
  margin-left: 0px;
  text-align: left;
  display: inline-block;
  position: relative;
    transition: all 0.5s;
}


}


@media (max-width:768px){
.platforms .tabs .col-md-9 {
    margin: 0px !important;
    padding: 0px !important;
}

.tabs-content1 {
  margin-left: 0px;
  text-align: left;
  display: inline-block;
  position: relative;
    transition: all 0.5s;
}

	
}

@media (max-width:478px){
.tabs-content1 {
  margin-left: 0px;
  text-align: left;
  display: inline-block;
  position: relative;
    transition: all 0.5s;
}	
	
}

.tabs-content1 p {
text-align:justify	
}

.tabs-content1 h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.25px;
  margin-bottom:5px;
  text-transform:inherit;
}


.tabs-content1 h3 {
    font-weight: 600;
    font-size: 26px;
    color: #408107;
	text-align:center
}


.line-abt {
    border-top: 3px solid #bc8b24;
    padding-top: 0px;
    padding-bottom: 5px;
    margin: 0px auto;
    width: 30px;
    position: relative;
}


.tabs-content1 a{
color:#ff9c3c;	
}


.tabs-content1 a:hover{
  background:#552772;
  color:#fff
}


/*************************
*****Platforms1 Tabs CSS****
**************************/

.platforms1{
    background:#fff;
    overflow: hidden;
	position:relative
}


.platforms1 h1 {
    font-size: 28px;
	font-weight:600;
	text-transform:uppercase
}


.platforms1 .line3 {
    border-top: 3px solid #7d7d7d;
    padding-top: 0px;
    padding-bottom: 5px;
    margin: 0 auto 10px 0;
    width: 30px;
    position: relative;
}

.platforms1 p {
	margin-bottom:0rem;
	line-height:1.8em
}

.platforms1 .st{
	color:#552772;
	font-weight:700
}

.platforms1 i{
	font-size:22px;
}

.platforms1 img{
	box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.22) 0px 2px 16px 0px;
	display:block;
	margin:10px auto 10px auto
}

@media (max-width:893px){
	.platforms1 img{
	box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.22) 0px 2px 16px 0px;
	display:block;
	margin:0px auto 0px auto
}
}

.platforms1 h1::after {
display:none !important
}

.platforms1 i {
    font-size: 24px;
    color: rgba(81, 38, 110);
}


.plat-box1 p{
	font-weight:500;
	text-align:center
}

.plat-box-img1{
	position:relative;
}

.plat-box1{
		position:absolute;
		bottom:0px;
		width:100%;
		left:0px;
		background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
		height:50%
}


.plat-box1 .head{
	font-size:28px;
	font-weight:600;
	color:#9fde59;
	left:20px;
		position:absolute;
		bottom:30%;
		text-transform:uppercase
		}

.plat-box1 .sub-head{
	font-size:21px;
	font-weight:600;
	color:#fff !important;
	left:20px;
		position:absolute;
		bottom:12%;
		}
		
		
		@media (max-width:893px){
			
			.plat-box1{
		position:relative;
		background:#000;
		padding:10px 10px
}



.plat-box1 .head{
	font-size:24px;
	font-weight:600;
	color:#9fde59;
		position:relative;
		text-transform:uppercase
		}

.plat-box1 .sub-head{
	font-size:19px;
	font-weight:600;
	color:#fff !important;
		position:relative;
		width:95%
		}
	
}	

@media (max-width:478px){
		
			.plat-box1{
		position:relative;
		background:#000;
		padding:10px 10px
}



.plat-box1 .head{
	font-size:20px;
	font-weight:600;
	color:#9fde59;
		position:relative;
		text-transform:uppercase;
				width:90%
		}

.plat-box1 .sub-head{
	font-size:17px;
	font-weight:600;
	color:#fff !important;
		position:relative;
				width:90%
		}
		
}


@media (max-width:320px){
		
			.plat-box1{
		position:relative;
		background:#000;
		padding:10px 25px 10px 0px
}


.plat-box1 .head{
	font-size:20px;
	font-weight:600;
	color:#9fde59;
		position:relative;
		text-transform:uppercase
		}

.plat-box1 .sub-head{
	font-size:17px;
	font-weight:600;
	color:#fff !important;
		position:relative;
		}
		
}



/*************************
*****Services Page CSS****
**************************/

.services-lp {
    background:#f7f7f7;
    overflow: hidden;
	position:relative
}

.services-lp .st{
	color: #552772;
    font-weight: 700;
}

.services-lp p{
	margin-bottom:0rem;
	line-height: 1.8em;
}


.servi-img1  {
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
	width:100%
}


.services-lp .s-icon{
	height:20px;
	width:20px;
	display:block;
	margin-top:5px
}

.services-lp .bg-lg {
    padding: 40px 40px 10px 40px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2);
	background:#fff
}


@media (max-width: 478px) {
.services-lp .bg-lg {
    padding: 10px 10px 10px 10px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2);
	background:#fff
}	
	
}

.services-lp .sv-icon1{
	  background: #552a70;
    height: 60px;
    width: 60px;
	 position:absolute;
	 bottom:10px;
	 left:10px
}

.services-lp .sv-icon1 img{
	max-height:40px;
	display:block;
	margin:10px auto 0px auto;
}

.services-lp i {
    font-size: 24px;
    color: rgba(81, 38, 110);
}


.sv-box p{
	font-weight:500;
	text-align:center
}

.sv-box-img{
	position:relative;
}

.sv-box{
		position:absolute;
		bottom:0px;
		width:100%;
		left:0px;
		background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
		height:50%;
}


.sv-box .head{
	font-size:28px;
	font-weight:600;
	color:#9fde59;
	left:20px;
		position:absolute;
		bottom:30%;
		text-transform:uppercase
		}
		
.sv-box h1::after {
display:none
	
}		

.sv-box .sub-head{
	font-size:21px;
	font-weight:600;
	color:#fff !important;
	left:20px;
		position:absolute;
		bottom:12%;
		}
		
@media (max-width:893px){
	
	.sv-box-img{
	position:relative;
	background:#000;
}
	
	.sv-box{
		position:relative;
		width:95%;
			padding:20px 5px;
}
.sv-box .head{
	font-size:22px;
	font-weight:600;
	color:#9fde59;
		position:relative;
		text-transform:uppercase
		}

.sv-box .sub-head{
	font-size:19px;
	font-weight:600;
	color:#fff !important;
		position:relative;
		}
}	

@media (max-width:478px){
		.sv-box{
		position:relative;
		background:#000;
		padding:15px 15px 15px 0px;
		display:block;
}

.sv-box .head{
	font-size:20px;
	font-weight:600;
	color:#9fde59;
		position:relative;
		text-transform:uppercase;
		width:90%
		}

.sv-box .sub-head{
	font-size:17px;
	font-weight:600;
	color:#fff !important;
		position:relative;
		width:90%
		}
}	

@media (max-width:320px){
		.sv-box{
		position:relative;
		background:#000;
		padding:10px 25px 10px 0px
}
.sv-box .head{
	font-size:20px;
	font-weight:600;
	color:#9fde59;
		position:relative;
		text-transform:uppercase
		}

.sv-box .sub-head{
	font-size:17px;
	font-weight:600;
	color:#fff !important;
		position:relative;
		}
}	


@media (max-width:600px){
	
.sv-box .head{
	font-size:22px;
	font-weight:600;
	color:#9fde59;
		position:relative;
		text-transform:uppercase
		}

.}





/*************************
*About Page First Part CSS*
**************************/

.about-up {
    overflow: hidden;
	position:relative;
    background: url(../img/about-bg.png) left center no-repeat;
    background-size: cover;
	min-height:600px
}

.about-up .st{
	color: #552772;
    font-weight: 700;
}

.about-up h1{
	font-weight:700
}


.about-up h4{
	font-weight:600
}

.about-up .fix-w{
	width:90%
}

.about-up h1::after{
display:none	
}


.about-up p{
	margin-bottom:0rem;
	line-height: 1.8em;
}

.abt-img{
	display:none
}	




@media (max-width: 893px) {
	
	
.abt-img{
	display:block
}	
	
}	


/*************************
*About Page Second Part CSS*
**************************/

.about-sec {
    overflow: hidden;
	position:relative;
    background: #f7f7f7
}

.about-sec .st{
	color: #552772;
    font-weight: 700;
}

.about-sec h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: #000;
    left: calc(50% - 20px);
    margin-top: 5px;
}

.about-sec h1{
	font-weight:600
}


.about-sec tr td{
	background:#f7f7f7
}

.about-sec img{
	max-height:300px;
	 box-shadow: 0px 45px 40px -45px #111;  
}

.about-sec .pep {
	padding-left:20px
}

.about-sec i {
    font-size: 24px;
    color: rgba(81, 38, 110);
}

.about-sec p {
    margin-bottom: 0rem;
    line-height: 1.8em;
}



/*************************
*About Page Third Part CSS*
**************************/

.about-thir {
    overflow: hidden;
	position:relative;
    background: #fff
}

.about-thir .st{
	color: #552772;
    font-weight: 700;
}

.about-thir h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: #000;
    left: calc(50% - 20px);
    margin-top: 5px;
}

.about-thir h1{
	font-size: 32px;
    font-weight: 600;
}


.about-thir tr td{
	background:#f7f7f7
}


.about-sec i {
    font-size: 24px;
    color: rgba(81, 38, 110);
}

.about-thir-item{
	background:#dddddd;
	display:flex;
	height:220px;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 8px 18px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.about-thir-item h4{
	font-weight:700;
	font-size:20px
}

.about-thir-item img{
	width:100%;
	height:100%;
	width:220px
}

.about-thir-item .right-item {
	padding:20px 10px 0px 20px
}

.left-item{
	display:block
}

.left-item-ss{
	display:none
}

.left-item-ss img{
		width:100%;
	height:100%;
}

 @media screen and (max-width: 1024px) {
.about-thir-item{
	background:#dddddd;
	display:block;
	height:500px
}

.left-item{
	display:none
}

.left-item-ss{
	display:block
}
}

 @media screen and (max-width: 893px) {
.about-thir-item{
	background:#dddddd;
	display:block;
	height:460px
}

.left-item{
	display:none
}

.left-item-ss{
	display:block
}

 }
 
 
 @media screen and (max-width: 768px) {
.about-thir-item{
	background:#dddddd;
	display:block;
	height:auto;
	padding-bottom:10px
}

.am{
	margin-top:50px !important
}

.left-item{
	display:none
}

.left-item-ss{
	display:block
}

 }
 
 
 @media screen and (max-width: 600px) {
	.left-item{
	display:none
}

.left-item-ss{
	display:block
} 
 }
 
 @media screen and (max-width: 478px) {
	.left-item{
	display:none
}

.left-item-ss{
	display:block
} 
 }
 
 @media screen and (max-width: 300px) {
	.left-item{
	display:none
}

.left-item-ss{
	display:block
} 
 }
 

 
 
/*************************
*About Page Fourth Part CSS*
**************************/

.about-fou {
    background:#f7f7f7;
    overflow: hidden;
	position:relative
}

.about-fou .st{
	color: #552772;
    font-weight: 700;
}

.about-fou p{
	margin-bottom:0rem;
	line-height: 1.8em;
}

.about-fou h1{
	font-size: 32px;
    font-weight: 600;
}


.about-fou i {
    font-size: 24px;
    color: rgba(81, 38, 110);
}
.about-fou .bg-lg {
    padding: 20px 20px 20px 20px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2);
	background:#fff
}

.about-fou img{
	height:100%;
	max-height:300px;
	display:block;
	margin:0 auto;
	box-shadow: 0px 25px 20px -15px #111;
}


 
 
/*************************
*About Page Fifth Part CSS*
**************************/

.about-fif {
    background:#fff;
    overflow: hidden;
	position:relative
}

.about-fif .st{
	color: #552772;
    font-weight: 700;
}

.about-fif p{
	margin-bottom:0rem;
	color:#fff;
	line-height: 1.8em;
	text-align:center
}

.about-fif h1{
	font-size: 32px;
    font-weight: 600;
}


.about-fif i {
    font-size: 20px;
    color: #fff
}


.vision {
    padding:30px 20px;
    margin: 20px 0 0 0; 
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)), url('../img/our-vision.jpg') no-repeat center center;
	background-size: cover;
	height:300px;
	text-align:center;
  color:#fff;
  }


.vision h4 {
	font-family:'Raleway', sans-serif;
    font-size: 22px;
    color: #fff;
       font-weight: 500;
	text-transform:uppercase;
}

.vision img{
text-align:center
}

.vision .line{
    border-top: 1px solid #fff;
    padding-top: 0px;
    padding-bottom: 5px;
    margin: 10px auto 10px auto;
    width: 10%;
    position: relative;
}

.vision .icons{
	max-height:50px;
	margin-bottom:10px
}


.promise {
    padding:30px 20px;
    margin: 20px 0 0 0; 
	background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url('../img/our-promise.jpg') no-repeat center center;
	background-size: cover;
	height:300px;
  color:#fff;
  }
  
  .promise tr td{
	background:none
}



.promise h4 {
	font-family:'Raleway', sans-serif;
    font-size: 22px;
    color: #fff;
       font-weight: 500;
	text-transform:uppercase;
}

.promise img{
text-align:center
}

.promise .line{
    border-top: 1px solid #fff;
    padding-top: 0px;
    padding-bottom: 5px;
    margin: 10px auto 10px auto;
    width: 10%;
    position: relative;
}

.promise .icons{
	max-height:50px;
	margin-bottom:10px
}





/*************************
******Contact Us CSS****
**************************/

.contact {
    background:#fff;
    overflow: hidden;
	position:relative
}

.contact .st{
	color: #552772;
    font-weight: 700;
	font-size:22px;
	line-height:2em
}



.contact .st1{
	color: #552772;
    font-weight: 700;
}



.contact h1{
	font-size: 32px;
    font-weight: 600;
}

.contact .rig-img {
	max-height:400px;
	width:100%;
	margin-top:20px
}


.contact i {
    font-size: 24px;
    color: rgba(81, 38, 110);
}

.contact .cs{
	display:flex
}

.contact .cs .pem{
	margin-top:12px !important;
	margin-right:5px
}

.contact .cs i {
    font-size:32px;
    color: rgba(81, 38, 110);
	margin-left:5px
}

.contact .bg-lg {
    padding: 20px 20px 20px 20px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2);
	background:#fff
}



.contact h2 {
    color:#fff;
	margin-bottom:14px;
	font-family: 'Raleway', sans-serif;
	margin-top:10px;
	font-size:28px;
	font-weight:400;
	text-transform:inherit
	}


.cont-icon{
max-width:50px !important
}

.cont-box {
    padding:50px 60px;
	background: linear-gradient(rgba(58,178,194,.7), rgba(26,70,119,.7));
	background-size: cover;
	height:100%;
	width:100%;
	text-align:center;
}



.cont-box i.fa{
	height: 46px;
    width: 46px;
    border-radius: 50%;
    display: table-cell;
	color:#fff;
	font-size:24px;
	padding-top:10px;
}


.cont-box-text {
	font-family:'Raleway', sans-serif;
    font-size: 20px;
    color: #fff;
    line-height: 2em;
    font-weight: 500;
}

.cont-box-text a {
	font-family:'Raleway', sans-serif;
    font-size: 20px;
    color: #fff;
    line-height: 2em;
    font-weight: 500;
}