/**
* Template MailEurope / eclipso Mail Europe
*/
/* font ubuntu */
@font-face {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/ubuntu-v15-latin-regular.eot');
	src: local('Ubuntu Regular'), local('Ubuntu-Regular'),
    url('../fonts/ubuntu-v15-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ubuntu-v15-latin-regular.woff2') format('woff2'),
    url('../fonts/ubuntu-v15-latin-regular.woff') format('woff'),
    url('../fonts/ubuntu-v15-latin-regular.ttf') format('truetype'),
    url('../fonts/ubuntu-v15-latin-regular.svg#Ubuntu') format('svg');
	font-display: swap
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Ubuntu", sans-serif;
  color: #111111;
}

/* Scrollbar that is currently Firefox-only */
* {
	scrollbar-width: thin;
	scrollbar-color: inset 0 0 6px rgba(0,0,0,0.3) !important;
  }
  /* Works on Chrome/Edge/Safari */
  		*::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	overflow: visible;
	cursor: pointer;
  } 
  	*::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
  }
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
	box-shadow: inset 0 0 6px rgba(0,0,0,0.5);  
  }
/* Handle on hover */
	*::-webkit-scrollbar-thumb:hover {
    background: #333331;
}
/* Corner */
	*::-webkit-scrollbar-corner {
    background: rgba(0,0,0,0.5);
} 

a {
  color: #111111;
  text-decoration: none;
}

a:hover {
  color: #00aab5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubuntu", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #17355E;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #00aab5;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: #ffffff;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #17355E;
  text-decoration: none;
}

#header .logo img {
	width: 268px;
	height: auto;
}

@media (max-width: 768px) {
  #header {
    padding: 25px 0 15px 0;
  }
  #header .logo img {
    max-height: 50px;
    margin-left: -40px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  background: #fff;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 14px;
  line-height: 0;
  margin-top: 1px;
  margin-left: 5px;
  color: #00aab5;
  font-weight: 700;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #17355E;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #00aab5;
  color: #fff;
  padding: 12px 25px;
  margin-left: 30px;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #17355E;
  color: #fff;
}

.navbar .signin,
.navbar .signin:focus {
  background: #fff;
  color: #00aab5;
  padding: 12px 25px;
  margin-left: 30px;
  border: 1px solid #00aab5;
  line-height: 1;
  border-radius: 50px;
}

.navbar .signin:hover,
.navbar .signin:focus:hover {
  background: #fff;
  color: #17355E;
  border: 1px solid #17355E;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: -14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 5px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 100px;
  text-align: left;
}

.navbar .dropdown ul a {
  padding: 5px 25px;
  font-size: 18px;
  text-transform: none;
  font-weight: normal;
}

.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: #17355E;
}

.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;
}
.navbar .dropdown .sub-menu li a {
  display: block;
	text-align: left;
}
.navbar .dropdown .sub-menu a::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	color: #00aab5;
	margin-right: 10px
}

.navbar .dropdown span.fi {
	margin-right: 10px
}



@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #17355E;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  border: 1px solid #17355E;
  border-radius: 3px;
  padding: 5px;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
  border-color: #fff;

}

@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(51, 60, 79, 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;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #17355E;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus,
.navbar-mobile .signin,
.navbar-mobile .signin:focus {
  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: #17355E;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 160px 0 30px 0;
}

#hero::before {
  content: "";
  position: absolute;
  right: -100%;
  top: 20%;
  width: 250%;
  height: 200%;
  z-index: -1;
  background-color: #f7fdff;
  transform: skewY(148deg);
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 56px;
  color: #17355E;
  font-family: "Ubuntu", sans-serif;
}

#hero h2 {
  color: #515f7d;
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 28px;
}

#hero .download-btn {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #17355E;
  position: relative;
}

#hero .download-btn:hover {
  background: #00aab5;
}

#hero .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 8.5px;
}

#hero .download-btn+.download-btn {
  margin-left: 20px;
}

#hero .signup-btn,
#hero .signup-btn:focus,
#details-1 .signup-btn,
#details-1 .signup-btn:focus,
#section2 .signup-btn,
#section2 .signup-btn:focus {
  background: #00aab5;
  color: #fff;
  font-size: 18px;
  padding: 12px 45px;
  margin: auto;
  line-height: 1.5em;
  border-radius: 50px;
  position: relative;
}

#details .signup-btn,
#details .signup-btn:focus {
  background: #00aab5;
  color: #fff;
  font-size: 18px;
  padding: 12px 45px;
  margin: auto;
  line-height: 1.5em;
  border-radius: 50px;
  position: relative;
}

#hero .signup-btn:hover,
#hero .signup-btn:focus:hover,
#details-1 .signup-btn:hover,
#details-1 .signup-btn:focus:hover,
#hero .signup-btn:hover,
#hero .signup-btn:focus:hover,
#section2 .signup-btn:hover,
#section2 .signup-btn:focus:hover
 {
  background: #17355E;
  color: #fff;
}

#details .signup-btn:hover,
#details .signup-btn:focus:hover
 {
  background: #49cfda;
  color: #fff;
}

#hero .signup-btn:first-child {
  margin-right: 20px;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .download-btn+.download-btn {
    margin: 0 10px;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  .signup-btn .btn-mr {
    margin-right: 20px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* Custom success color overrides für Bootstrap */
.bg-success {
    background-color: #00aab5 !important;
}

.text-success {
    color: #00aab5 !important;
}

/* Hover-Varianten falls nötig */
.bg-success:hover {
    background-color: #008a93 !important;
}

/* Custom primary color overrides für Bootstrap */
.bg-primary {
    background-color: #17355E !important;
}

.text-primary {
    color: #17355E !important;
}

/* Hover-Varianten falls nötig */
.bg-primary:hover {
    background-color: #008a93 !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-first {
  position: relative;
  margin-top: 80px;
}

.section-bg {
  background-color: #f7fdff;
}

.section-title {
  text-align: center;
  padding-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #17355E;
  font-family: "Ubuntu", sans-serif;
}

.section-title h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #17355E;
  font-family: "Ubuntu", sans-serif;
}

.section-title p {
  font-size: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.section-title h2 i,
.section-title h3 i {
  color: #00aab5;
}

#section2 {
  color: #8a8c95;
}

#section2 .divider {
  margin: auto;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  width: 60%;
  margin-bottom: 60px;
  margin-top: 30px;
}

#section2 .divider:before {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  border: 1px solid #f0f0f0;
  left: 50%;
  margin-left: -15px;
  top: 50%;
  background: #fff;
  margin-top: -5px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#section2 .divider:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #00aab5;
  left: 50%;
  margin-left: -10px;
  top: 50%;
  background: #00aab5;
  margin-top: 0px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
.features .content {
  padding: 30px 0;
}

.features .content .icon-box {
  margin-top: 25px;
}

.features .content .icon-box h3,
.features .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #00aab5;
}

.features .content .icon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 60px;
}

@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }

  .features .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details  {
  background: #17355E;
  color: #fff;
}

.details .content+.content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
  font-size: 18px;
}

.details .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: #17355E;
  line-height: 0;
}
.details .content ul li i.bx-check,
.details .content ul li i.bi-check {
  color: #00aab5 !important;
}

.details .content ul a {
  color: #00aab5;
}


.details .content p {
  padding: 20px 0;
  font-size: 18px;
}
.details .content p.btn {  
  width: 100%;
  text-align: center;
}

.details .content p:last-child {
  margin-bottom: 0;
}
.details img {
  margin: 40px auto;
  width: 100%;
}

.details .content p a {
  transition: 0.3s;
  color: #00aab5;
  font-weight: 700;
}

.details .content p a:hover {
  text-decoration: none;
  color: #49cfda;
}
.details {
  .fst-italic {color: #00aab5;}
}

@media (max-width: 991px) {
  .details img  {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px){
  .details img {
    max-width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Details-1
--------------------------------------------------------------*/

.details-1 .content+.content {
  margin-top: 100px;
}

.details-1 .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #17355E;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.details-1 .content ul {
  list-style: none;
  padding: 0;
}

.details-1 .content ul li {
  padding-bottom: 10px;
  font-size: 18px;
}

.details-1 .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: #17355E;
  line-height: 0;
}
.details-1 .content ul i.bx-check,
.details-1 .content ul i.bi-check {
  color: #00aab5;
}
.details-1 .content p {
  padding: 20px 0;
  font-size: 18px;
}
.details-1 .content p.btn {  
  width: 100%;
  text-align: center;
}

.details-1 .content p:last-child {
  margin-bottom: 0;
}
.details-1 img {
  margin: 40px auto;
  width: 100%;
}

.details-1 .content p a {
  transition: 0.3s;
  color: #17355E;
  font-weight: 700;
}

.details-1 .content p a:hover {
  text-decoration: none;
  color: #00aab5;
}
.details-1 {
  .fst-italic {color: #8a8c95;}
}
.details-1 {
  .fst-italic i {color: #00aab5;}
}

@media (max-width: 991px) {
  .details img  {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px){
  .details img {
    max-width: 100%;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Testimonials new
--------------------------------------------------------------*/
.testimonials .section-title {
  padding: 20px 30px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 10px 30px 50px;
  min-height: 200px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img,
.testimonials .testimonial-item i.img {
  width: 90px;
  border-radius: 10px;
  border: 25px solid #fff;
  background: #fff;
  color: #00aab5;
  position: absolute;
  left: -60px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(0, 170, 181, 0.4);  
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #17355E;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #17355E;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 36px;
}

.pricing h4 {
  font-size: 46px;
  color: #17355E;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
  margin-bottom: 25px;
  display:inline-block;
}

#pf,
#pc,
#pp,
#pb {
  font-size: 46px;
  color: #17355E;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
  float: left;
  margin-right: 10px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #17355E;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul i.bx-check,
.pricing ul i.bi-check {
  color: #00aab5;
}

.pricing ul i.bx-x,
.pricing ul i.bi-x {
  color: #ff554a;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  background: #17355E;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  padding: 12px 45px;
  margin: auto;
  line-height: 1.5em;
  border-radius: 50px;
  transition: none;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
  transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #00aab5;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .get-started-btn {
  background: #00aab5;
}

.pricing .featured .get-started-btn:hover {
  background: #17355E;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# payment-footer
--------------------------------------------------------------*/
#payment-footer {
  background: #00aab5;
  color: #fff;
}

#payment-footer .section-title h3 {
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

#payment-footer .section-title p {
	font-size: 18px;
  color: #fff;
}

#payment-footer .content .section-title ul li img {
	width: 140px;
	height: auto;
	vertical-align: middle;
	padding: 40px;
  background: #fff;
}


@media (max-width: 991px) {
  .payment-footer img  {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px){
  .payment-footer img {
    max-width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Sign in
-------------------------------------------------------------*/

.login-page {
    width: 100%;
    height: 100vh;
    display: inline-block;
    display: flex;
    align-items: center;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #111111;
  font-size: 14px;
  background: #f1f3f6;
}

#footer .footer-row {
  padding: 50px 0 0 0;
  background: #f6feff;
  text-align: center;
  font-size: 15px;
}

#footer .footer-row h3,
#footer .footer-row h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #111111;
}

#footer .footer-row .download-btn {
  margin: 30px auto;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #17355E;
  position: relative;
}

#footer .footer-row .download-btn:hover {
  background: #00aab5;
}

#footer .footer-row .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 12px;
}

#footer .footer-row .app {
  margin: 30px auto 0 auto;
  width: 400px;
  height: auto;
}

#footer .footer-row .download-btn+.download-btn {
  margin-left: 20px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 16px;
  font-weight: 700;
  color: #17355E;
}

#footer .footer-top .footer-contact h3 span,
.titlecolor {
  color: #00aab5;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #111111;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Ubuntu", sans-serif;
  color: #8a8c95;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #17355E;
  position: relative;
  padding-bottom: 12px;
}

#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: 2px;
  color: #9fb2d8;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #8a8c95;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #17355E;
}

#footer .footer-top .footer-links .widget-rightest {
  float:left;
  min-width: 140px;
  border-right: 0px solid #e8ecf5;
  margin-right: 10px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #17355E;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .py-4 .social-links a:hover {
  background: #00aab5;
  color: #fff;
  text-decoration: none;
}

#footer .copyright,
#footer .social-links {
  margin: 30px auto 10px auto;
  text-align: center;
  color: #111111;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #111111;
}

#footer button.btn-secondary {
  border: 1px solid #e8ecf5;
  background: #fff;
  color: #111111;
  transition: 0.3s;
  border-radius: 4px;
  text-align: left;
  width: 160px;
}

#footer .dropdown ul {
  border: 1px solid #e8ecf5;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

#footer .dropdown ul li {
  margin:0; padding: 2px;
}

#footer  button.dropdown-toggle::after {
  right: 0%;
}


@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 5px 0;
  }
}

/*--------------------------------------------------------------
# Security Trust Strip
--------------------------------------------------------------*/
.security-trust-strip {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background-color: #f8f9fa;
}

.security-trust-strip span {
  white-space: nowrap;
}

/*--------------------------------------------------------------
# Hero Badge (OpenPGP)
--------------------------------------------------------------*/
#hero .badge {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}