
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Gotham A", "Gotham B";
  color: #000;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #6B0AEA;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, {
  font-family: "Gotham A", "Gotham B";
}

.cookiealert {
	position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 10;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #fff;
	font-size: 14px;
	background: rgba(40, 40, 40, 0.9);
    
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
.cookiealert .acceptcookies {
  position: left;
  font-family: "Yu Gothic UI", sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 32px 6px 32px;
  border-radius: 4px;
  margin-top: 0px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  text-transform: uppercase;
  border: 2px solid #6B0AEA;
  background: #6B0AEA;
}

.acceptcookies:hover {
  background: #3b0089;
  border-color: #3b0089;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #6B0AEA;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


#header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(40, 40, 40, 0.9);
}

#header .logo {
  font-size: 26px;
  margin-left: 15px;
  padding: 0;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.5px;
  
}


#header h2 {
  color: #fff;
}
#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 50px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 0px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #6B0AEA;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(40, 40, 40, 0.9);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #6B0AEA;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 600;
  color: #fff;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #6B0AEA;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}
.navbar-mobile p {
	color: #fff;
}
.navbar-mobile li i {
	color: #fff;
}


.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #000;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #fff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0px;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
}

#hero .carousel-container {
  display: flex;
  justify-content: left;
  align-items: left;
  
  position: left;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  width: 75%
  
}

#hero h2 {
  color: #fff;
  margin-top: 165px;
  margin-bottom: 25px;
  margin-left: 0px;
  width: 100%;
  font-size: 60px;
  font-weight: 700;
  font-family: "Gotham A", "Gotham B", sans-serif;
  letter-spacing: -4px;
  
}

#hero h3 {
  color: #fff;
  
  width: 80%;
  font-size: 45px;
  font-weight: lighter;
  margin-top: 120px;
  margin-bottom: -170px;
  margin-left: 0px;
  font-family: "Yu Gothic UI", sans-serif;
  
}

@media (min-width: 800px) {
  #hero h3 {
    width: 85%;
	
  }

#hero p {
  width: 75%;
  margin-left: 0px;
  font-weight: 500;
  margin: 0 auto 4px auto;
  color: #fff;
  font-size: 19px;
  letter-spacing: 0px;
  
}

@media (min-width: 1024px) {
  #hero p {
    width: 75%;
	margin-left: 0px;
	font-weight: 500;
	
  }
#hero .btn-get-started {
  position: left;
  font-family: "Yu Gothic UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  margin-top: 25px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  text-transform: uppercase;
  border: 2px solid #6B0AEA;
  background: #6B0AEA;
}

#hero .btn-get-started:hover {
  background: #3b0089;
  border-color: #3b0089;
  color: #fff;
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#hero .carousel-indicators li {
  cursor: pointer;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #6B0AEA;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/*Section with background
--------------------------------*/
.section-bg {
  background: #fff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

 /* Featured Services Section
--------------------------------*/
#featured-services {
   background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services i {
  color: #6B0AEA;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 20px;
}

#featured-services h4 a {
  color: #6B0AEA;
}

#featured-services h4 a:hover {
  color: #fff;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

 /* About Us Section
--------------------------------*/
#about {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
}

#about .container {
  position: relative;
  z-index: 10;
}

#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  text-align: center;
  position: absolute;
  background-color: #333;
  border-radius: 50%;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .about-col i {
  font-size: 28px;
  line-height: 0;
  color: #fff;
  transition: 0.3s;
}

/*#about .about-col:hover .icon {
  background-color: #fff;
}

#about .about-col:hover i {
  color: #6B0AEA;
}*/

#about .section-header h3 {
	color: #333;
		
}
#about .section-header p {
	color: #333;
	font-size: 19px;

	letter-spacing: 0px;
	font-weight: 700;
		
}
#about .about-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#about .about-col h2 a {
  color: #000;
}

#about .about-col h2 a:hover {
  color: #6B0AEA;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/


.features .nav-tabs {
  
  border: 0;
  
}

.features .nav-link {
  margin-top: 30px;
  border: 1px solid #d3d3d3;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  padding: 15px;
  transition: 0.3s;
  color: #000;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 44px;
}

.features .nav-link h4 {
  padding-top: 10px;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .nav-link:hover {
  color: #6B0AEA;
}

.features .nav-link.active {
  
  color: #6B0AEA;
  border-color: #6B0AEA;
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 22px;
  color: #6B0AEA;
}

.features .tab-pane p {
  
  font-size: 16px;
  color: #333;
}
.features .btn-get-started {
  position: left;
  font-family: "Yu Gothic UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  margin-top: 20px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  text-transform: uppercase;
  border: 2px solid #6B0AEA;
  background: #6B0AEA;
}

.features .btn-get-started:hover {
  background: #3b0089;
  border-color: #3b0089;
  color: #fff;
}
.features .tab-pane ul {
  list-style: none;
  padding: 0;
  color: #000;
  font-size: 16px;
}



.features .tab-pane ul li {
  padding-bottom: 5px;
}

.features .tab-pane ul i {
  font-size: 16px;
  
  padding-right: 4px;
  color: #6B0AEA;
  
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}



/* RSIEMM Section
--------------------------------*/
#RSIEMM {
  
 background: #F5F5F5;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#RSIEMM .box {
  margin-bottom: 30px;
}



#RSIEMM .title {
  margin-left: 0px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

#RSIEMM .title a {
  color: #6B0AEA;
}

#RSIEMM .box:hover .title a {
  color: #6B0AEA;
}



#RSIEMM .check-list  {
  list-style: none;
  font-weight: 500;
  color: #000;
  font-size: 16px;
  margin-bottom: 15px;
}


#RSIEMM i {
  font-size: 18px;
  padding-right: 4px;
  
  color: #6B0AEA;
}
*/
#RSIEMM li {
  font-size: 32px;
  color: #6B0AEA;
}

#RSIEMM .btn-get-started {
  position: left;
  font-family: "Yu Gothic UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  margin-top: 20px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  text-transform: uppercase;
  border: 2px solid #6B0AEA;
  background: #6B0AEA;
}

#RSIEMM .btn-get-started:hover {
  background: #3b0089;
  border-color: #3b0089;
  color: #fff;
}

/* RSIEMM Section1
--------------------------------*/
#CSS {
  background: #F5F5F5;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#CSS .box {
  margin-bottom: 30px;
}



#CSS .title {
  margin-left: 0px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

#CSS .title a {
  color: #6B0AEA;
}

#CSS .box:hover .title a {
  color: #6B0AEA;
}



#CSS .check-list  {
  list-style: none;
  font-weight: 500;
  color: #000;
  font-size: 16px;
  margin-bottom: 15px;
}


#CSS i {
  font-size: 18px;
  padding-right: 4px;
  
  color: #6B0AEA;
}
*/
#CSS li {
  font-size: 32px;
  color: #6B0AEA;
}

/* CSP Section1
--------------------------------*/
#CSP {
  background: #F5F5F5;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#CSP .box {
  margin-bottom: 30px;
}



#CSP .title {
  margin-left: 0px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

#CSP .title a {
  color: #6B0AEA;
}

#CSP .box:hover .title a {
  color: #6B0AEA;
}



#CSP .check-list  {
  list-style: none;
  font-weight: 500;
  color: #000;
  font-size: 16px;
  margin-bottom: 15px;
}


#CSP i {
  font-size: 18px;
  padding-right: 4px;
  
  color: #6B0AEA;
}
*/
#CSP li {
  font-size: 32px;
  color: #6B0AEA;
}

/* DataProtection Section1
--------------------------------*/
#DataProtection {
  background: #F5F5F5;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#DataProtection .box {
  margin-bottom: 30px;
}



#DataProtection .title {
  margin-left: 0px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

#DataProtection .title a {
  color: #6B0AEA;
}

#DataProtection .box:hover .title a {
  color: #6B0AEA;
}



#DataProtection .check-list  {
  list-style: none;
  font-weight: 500;
  color: #000;
  font-size: 16px;
  margin-bottom: 15px;
}


#DataProtection i {
  font-size: 18px;
  padding-right: 4px;
  
  color: #6B0AEA;
}
*/
#DataProtection li {
  font-size: 32px;
  color: #6B0AEA;
}


/* Clients Section
--------------------------------*/
#clients {
  padding: 50px 0;  
}


/*#clients img {
  opacity: 1;
  transition: 0.3s;
}

#clients img:hover {
  opacity: 1;
}

/*#clients .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #6B0AEA;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #6B0AEA;
}

 Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item {
  text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}



#testimonials .testimonial-item p {
  color: #000;
  margin: 0 auto 15px auto;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  
  opacity: 1;
  border: 1px solid #6B0AEA;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #6B0AEA;
}
/* partners Section
--------------------------------*/
#partners {
  padding: 60px 0;
}

#partners img {
  opacity: 1;
  transition: 0.3s;
}

#partners img:hover {
  opacity: 1;
}

#partners .swiper-pagination {
  margin-top: 30px;
  position: relative;
}



/* Contact Section
--------------------------------*/
.contact .info-box {
  color: #000;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #ff4a17;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact input {
  font-size: 14px;
  color: #000;
  
}

.contact textarea {
  font-size: 14px;
  color: #000;
}
.contact h6 {
  font-size: 32px;
  color: #000;
  font-weight: 700;
  text-align: center;
  margin-top: 150px;
}

.contact button {
  position: left;
  font-family: "Yu Gothic UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  margin-top: 40px;
  margin-bottom: 0px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  text-transform: uppercase;
  border: 2px solid #6B0AEA;
  background: #6B0AEA;
}

.contact button:hover {
  background: #3b0089;
  border-color: #3b0089;
  color: #fff;
}

/*
--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #111;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #6B0AEA;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  padding-left: 10px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #6B0AEA;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before, #footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #6B0AEA;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #6B0AEA;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #6B0AEA;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

/* Privacy Section
--------------------------------*/
#Privacy {
  background: url("../img/privacy-1.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
 
}

#Privacy::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 9;
}

#Privacy .container {
  position: relative;
  z-index: 10;
}
#Privacy h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-top: 300px;
}
/* Privacy-Content Section
--------------------------------*/
#Privacy-Content h3 {
  font-size: 32px;
  color: #333;
  font-weight: 500;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 40px;
}

#Privacy-Content p {
  font-size: 18px;
  color: #333;
  text-align: left;
  font-weight: lighter;
  font-family: "Yu Gothic UI", sans-serif;
  margin-bottom: 0px;
}
	
#Privacy-Content .btn-get-started {
  position: left;
  font-family: "Yu Gothic UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  margin-top: 20px;
  margin-bottom: 40px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  text-transform: uppercase;
  border: 2px solid #6B0AEA;
  background: #6B0AEA;
}

#Privacy-Content .btn-get-started:hover {
  background: #3b0089;
  border-color: #3b0089;
  color: #fff;
}
  
