/**
* Template Name: FlexStart - v1.1.1
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #444444;
}

a {
  color: #FF0074;
  text-decoration: none;
}

a:hover {
  color: #BBBCBC;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

p {
  color: #001A33;
  text-align: justify;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 34px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #FF0074;
  background: repeating-linear-gradient(to right, rgb(255 0 116 / 94%) 0%, rgb(0 145 246 / 94%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 10px 0px 10px;
  padding: 0;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #001A33;
  text-align: center;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 25px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #012970;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #8894f6;
  content: "/";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  background: #FF0074;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #FF0074;
  color: #fff;
  transform: translateY(-5px);
}

.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;
  padding: 0px;
  height: 49px;
  background: transparent;
}

.header.header-scrolled {
  background: #fff;
  padding: 0px;
  box-shadow: 0px 0 30px rgb(16, 24, 32, 40%);
}

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

.header .logo img {
  max-height: 70px;
  z-index: 99999;
  border-radius: 0px 0px 12px 12px;
  box-shadow: 0px 0 30px rgb(16, 24, 32, 40%);
  background-color: #fff;
  padding: 7px 13px;
}

.logo-img {
  visibility: hidden;
}


.logo-img.active {
  visibility: visible;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  -padding-bottom: 28px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 15px 3px 15px;
  font-size: 16px;
  font-weight: 400;
  color: #001A33;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
  color: #FF0074;
  border-bottom: solid;
  border-bottom-width: 2px;
}

.navbar .getstarted {
  background: #1d76ce;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #FF0074;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 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: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.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: #1d76ce;
}

.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: #FF0074;
  font-size: 34px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  padding-bottom: 18px;
}

.mobile-nav-toggle.bi-x {
  color: #FF0074;
}

@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: #fff;
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 85px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 22px;
  font-weight: 600;
  color: #001A33;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #FF0074;
  border-bottom: transparent;
}

.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: #001A33;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background: url(../img/hero-bg.webp) top center no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  color: #FF0074;
  background: repeating-linear-gradient(to right, rgb(255 0 116 / 94%) 0%, rgb(0 145 246 / 94%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h2 {
  color: #444444;
  margin: 15px 0 0 0;
  font-size: 26px;
}

.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 20px 40px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #001A33;
  box-shadow: 0px 5px 30px rgb(47, 46, 46, 50%);
}

.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(7px);
}

.hero .hero-img {
  text-align: right;
  padding: 7vh;
}

.hero .animated {
  animation: up-down 1.6s ease-in-out infinite alternate-reverse both;
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(7px);
  }

  100% {
    transform: translateY(-7px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(7px);
  }

  100% {
    transform: translateY(-7px);
  }
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    background: url(../img/hero-bg-medium.webp) top center no-repeat;
    background-size: cover;
    height: auto;
    padding: 120px 0 260px 0;
    text-align: center;
  }

  .hero .hero-img {
    text-align: center;
    -margin-top: 80px;
    padding: 3vh;
  }

  .hero .hero-img img {
    width: 58%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 25px;
  }

  .hero h2 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .hero {
    background: url(../img/hero-bg-mobile.webp) top center no-repeat;
    background-size: cover;
    height: auto;
    padding: 120px 0 260px 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero h2 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Hero 100x1000 Section
--------------------------------------------------------------*/

.hero100x1000 {
  width: 100%;
  height: 100vh;
  background: url(../img/hero-bg.jpg) top center no-repeat;
  background-size: cover;
}


.hero100x1000 h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  color: #FF0074;
}

.hero100x1000 h2 {
  color: #001A33;
  font-size: 40px;
  font-weight: 700;
}

.hero100x1000 .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 20px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #FF0074;
  box-shadow: 0px 5px 30px rgb(47, 46, 46, 50%);
}

.hero100x1000 .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero100x1000 .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero100x1000 .btn-get-started:hover i {
  transform: translateX(7px);
}

.hero100x1000 .hero-img {
  text-align: right;
}

.hero100x1000 .hero-img img {
  width: 20%;
}

.hero100x1000 .animated {
  animation: up-down 1.6s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  .hero100x1000 {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero100x1000 {
    background: url(../img/hero-bg-mobile.jpg) top center no-repeat;
    background-size: cover;
    height: auto;
    padding: 120px 0 260px 0;
  }

  .hero100x1000 .hero-img {
    text-align: center;
    -margin-top: 80px;
  }

  .hero100x1000 .hero-img img {
    width: 61%;
  }
}

@media (max-width: 768px) {
  .hero100x1000 {
    text-align: center;
  }

  .hero100x1000 h1 {
    font-size: 20px;
  }

  .hero100x1000 h2 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 30px 0px 30px 0px;
  box-shadow: 0px -52px 78px rgb(15, 23, 31, 16%);
}

.about .content {
  padding: 10px;
}

.about h3 {
  font-size: 40px;
  font-weight: 700;
  color: #FF0074;
  background: repeating-linear-gradient(to right, rgb(255 0 116 / 94%) 0%, rgb(0 145 246 / 94%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.about h2 {
  font-size: 22px;
  font-weight: 700;
  color: #001A33;
  text-align: justify;
}

.about p {
  margin: 15px 0 30px 0;
  line-height: 28px;
  font-size: 22px;
  color: #001A33;
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #1d76ce;
}

.about .btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .about h3 {
    font-size: 36px;
  }

  .about h2 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# About 100x1000
--------------------------------------------------------------*/
.about100x1000 {
  -box-shadow: 0px 0 30px rgb(15, 23, 31, 52%);
}

.about100x1000 h3 {
  font-size: 52px;
  font-weight: 700;
  color: #FF0074;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.about100x1000 h2 {
  font-size: 22px;
  font-weight: 600;
  color: #001A33;
  text-align: justify;
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values {
  padding: 80px 0px 0px 0px;
  box-shadow: 0px 0 30px rgb(15, 23, 31, 16%);
  background: url(../img/FondoItems.webp) top center;
  background-size: cover;
  background-color: #001A33;
}

.values .box {
  padding: 30px;
  box-shadow: 0px 0 30px rgb(1, 41, 112, 8%);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 7px;
}

.values .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .titulo h2 {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  text-align: right;
}

.values .section-header h2 strong {
  font-size: 94px;
  color: #FF0074;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}


.values h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: justify;
  padding: 10px 20px 0px 20px;
}

.values h3 strong {
  font-size: 34px;
  color: #FF0074;
  background: repeating-linear-gradient(to right, rgb(255 0 116 / 94%) 0%, rgb(0 145 246 / 94%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box p {
  font-size: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.values .box:hover img {
  transform: scale(1);
}

@media (max-width: 768px) {
  .values h3 {
    font-size: 20px;
  }

  .values h3 strong {
    font-size: 26px;
  }

}

/*--------------------------------------------------------------
# Values100x1000
--------------------------------------------------------------*/
.values100x1000 {
  padding: 80px 0px 0px 0px;
  box-shadow: 0px 0 30px rgb(15, 23, 31, 16%);
  background: url(../img/FondoItems.png) top center;
  background-size: contain;
  background-color: #001A33;
  margin: 0px 100px 0px 0px;
  border-radius: 0px 20px 20px 0px;
}

.values100x1000 .box {
  padding: 30px;
  box-shadow: 0px 0 30px rgb(1, 41, 112, 8%);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 7px;
}

.values100x1000 .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values100x1000 .section-header h2 {
  font-size: 60px;
  color: rgb(228, 0, 70, 70%);
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.values100x1000 .section-header h2 strong {
  font-size: 94px;
  color: rgb(228, 0, 70, 70%);
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}


.values100x1000 h3 {
  font-size: 26px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0px;
  text-align: justify;
  padding: 0px 20px 0px 20px;
}

.values100x1000 h3 strong {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}

.values100x1000 i {
  font-size: 28px;
  margin-right: 6px;
}

.values100x1000 .box p {
  font-size: 18px;
}

.values100x1000 .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.values100x1000 .box:hover img {
  transform: scale(1);
}

@media (max-width: 768px) {
  .values100x1000 h3 {
    font-size: 20px;
    text-align: center;
  }

  .values100x1000 h3 strong {
    font-size: 15px;
  }

  .values100x1000 .section-header h2 {
    font-size: 45px;

  }

}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: #FF0074;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #FF0074;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 100px;
}

.features h2 {
  color: #001A33;
}

.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  color: #012970;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  line-height: 0;
  background: #ecf3ff;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: #1d76ce;
  color: #fff;
}

.features .feture-tabs {
  margin-top: 120px;
}

.features .feture-tabs h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .features .feture-tabs h3 {
    font-size: 28px;
  }
}

.features .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}

.features .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #012970;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}

.features .feture-tabs .nav-link.active {
  color: #1d76ce;
  border-bottom: 3px solid #1d76ce;
}

.features .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #012970;
}

.features .feture-tabs .tab-content i {
  font-size: 24px;
  line-height: 0;
  margin-right: 8px;
  color: #1d76ce;
}

.features .feature-icons {
  margin-top: 30px;
}

.features .feature-icons h3 {
  color: #FF0074;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .features .feature-icons h3 {
    font-size: 28px;
  }
}

.features .feature-icons .content .icon-box {
  display: flex;
}

.features .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #BBBCBC;
  text-align: justify;
}

.features .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #BBBCBC;
  margin-right: 15px;
}

.features .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-top: 100px;
  padding-bottom: 100px;
}

.services h2 {
  color: #FF0074;
  background: repeating-linear-gradient(to right, rgb(255 0 116 / 94%) 0%, rgb(0 145 246 / 94%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 42px;
}

.services .service-box {
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0px 0 30px rgb(16, 24, 32, 13%);
  border-radius: 22px;
}

.services .service-box img {
  padding: 10px 60px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-box .icon {
  font-size: 60px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-box h3 {
  color: #FF0074;
  font-weight: 700;
  font-size: 24px;
}

.services .service-box p {
  text-align: center;
  font-size: 20px;
}

.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-box.blue {
  -border-bottom: 3px solid #1d76ce;
}

.services .service-box.blue .icon {
  color: #1d76ce;
}

.services .service-box.blue .read-more {
  color: #1d76ce;
}

.services .service-box.blue:hover {
  background: #1d76ce;
}

.services .service-box.green {
  -border-bottom: 3px solid #FF0074;
}

.services .service-box.green .icon {
  color: #FF0074;
}

.services .service-box.green .read-more {
  color: #FF0074;
}

.services .service-box.green:hover {
  background: #FF0074;
}

/*--------------------------------------------------------------
# services100x1000
--------------------------------------------------------------*/
.services100x1000 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.services100x1000 h2 {
  color: #001A33;
  font-size: 22px;
  text-align: justify;
  font-weight: 600;
}

.services100x1000 p {
  margin: 10px 0px 10px 0px;
  padding: 0;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #BBBCBC;
  text-align: justify;
}

.services100x1000 .service-box {
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
}

.services100x1000 .service-box img {
  padding: 10px 60px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services100x1000 .service-box .icon {
  font-size: 60px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services100x1000 .service-box h3 {
  color: #FF0074;
  font-weight: 700;
}

.services100x1000 .service-box p {
  text-align: center;
  font-size: 20px;
}

.services100x1000 .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services100x1000 .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services100x1000 .service-box.blue {
  -border-bottom: 3px solid #1d76ce;
}

.services100x1000 .service-box.blue .icon {
  color: #1d76ce;
}

.services100x1000 .service-box.blue .read-more {
  color: #1d76ce;
}

.services100x1000 .service-box.blue:hover {
  background: #1d76ce;
}

.services100x1000 .service-box.green {
  -border-bottom: 3px solid #FF0074;
}

.services100x1000 .service-box.green .icon {
  color: #FF0074;
}

.services100x1000 .service-box.green .read-more {
  color: #FF0074;
}

.services100x1000 .service-box.green:hover {
  background: #FF0074;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 40px 20px;
  background: #FF0074;
  background-image: repeating-linear-gradient(to top left, #FF0074 0%, #001A3340 100%);
  text-align: center;
  box-shadow: 0px 0 30px rgb(16, 24, 32, 70%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 1;
  margin: 10px;
}

.pricing .box-price {
  padding: 40px 20px;
  background: #001A33;
  text-align: center;
  box-shadow: 0px 0 30px rgb(16, 24, 32, 70%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  margin: -50px 10px 10px 10px;
  z-index: 0;
}

.pricing .box .icon-product {
  color: #fff;
  font-size: 40px;
}

.pricing .box .product {
  padding: 30px 0px 30px 0px;
}

.pricing .box:hover {
  transform: scale(1.06);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.pricing h3 {
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}

.pricing .box-price h3 {
  font-weight: 700;
  font-size: 28px;
  margin: 20px;
  color: #fff;
}

.pricing .box-price h3 strong {
  font-weight: 700;
  font-size: 32px;
  margin: 20px;
  color: #fff;
  text-transform: uppercase;
}

.pricing-personalizado {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 60px;
  color: #fff;
  text-align: center;
}

.pricing p {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #fff;
}



.pricing strong {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.pricing .price {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  line-height: 0.5;
  margin-bottom: 15px;
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}

.pricing img {
  padding: 30px 40px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
  color: #fff;
}

.pricing ul .na {
  color: #fff;
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: #1d76ce;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #1d76ce;
}

.pricing .btn-buy:hover {
  background: #1d76ce;
  color: #fff;
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 22px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 10px;
  padding: 1px 0 3px 0;
  background: #fff;
  color: #FF0074;
}

@media (max-width: 580px) {
  .pricing .box {
    margin: 10px;
  }
}

/*Pricing tabs*/
.pricing .feture-tabs {
  margin-top: 50px;
}

.pricing .feture-tabs h3 {
  color: #FF0074;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .pricing .feture-tabs h3 {
    font-size: 28px;
  }
}

.pricing .feture-tabs ul li {
  padding-bottom: 0px;
  color: #fff;
}

.pricing .feture-tabs p {
  font-weight: 600;
  font-size: 18px;
  text-align: justify;
  color: #001A33;
}

.pricing .feture-tabs .nav-pills {
  border-bottom: 1px solid #BBBCBC;
}

.pricing .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #001A33;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}

.pricing .feture-tabs .nav-link.active {
  color: #FF0074;
  border-bottom: 3px solid #FF0074;
}

.pricing .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #001A33;
}

.pricing .feture-tabs .tab-content h4 strong {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: #FF0074;
}

.pricing .feture-tabs .tab-content i {
  font-size: 24px;
  line-height: 0;
  margin-right: 8px;
  color: #001A33;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq h2 {
  color: #FF0074;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 10px 20px 10px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #BBBCBC;
  text-align: left;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #FF0074;
  border-bottom: 0;
  font-weight: 600;
}

.faq .accordion-body {
  padding: 0px 15px 25px 20px;
  border: 0;
  color: #FF0074;
}

@media (max-width: 400px) {
  .faq .accordion-button {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #444444;
  margin: 0 4px 8px 4px;
  transition: 0.3s;
  border-radius: 50px;
  border: 1px solid #fff;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #1d76ce;
  border-color: #1d76ce;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 1s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid rgba(1, 41, 112, 0.2);
  border-left: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid rgba(1, 41, 112, 0.2);
  border-right: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #012970;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  background: #1d76ce;
  margin: 10px 2px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  font-size: 24px;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #5969f3;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1d76ce;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1d76ce;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgb(16, 24, 32, 10%);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
  border-radius: 7px;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #FF0074;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #001A33;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #BBBCBC;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #BBBCBC;
  font-weight: 700;
}

.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 #FF0074;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF0074;
}

.testimonials .swiper-slide {
  opacity: .3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.team .member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.team .member .social a {
  transition: color 0.3s;
  color: rgba(1, 41, 112, 0.5);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .member .social a:hover {
  color: rgba(1, 41, 112, 0.8);
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #012970;
}

.team .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: #5e5e5e;
}

.team .member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.team .member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients h2 {
  color: #FF0074;
}

.clients .clients-slider .swiper-slide img {
  transition: 0.3s;
  padding: 20px;
}

.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}

.clients .clients-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #FF0074;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF0074;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  box-shadow: 0px 0 30px rgb(15, 23, 31, 52%);
  margin: 60px 0px 0px 40px;
  border-radius: 40px 0px 0px 0px;
}

.contact .section-header h2 {
  font-size: 34px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #FF0074;
  background: repeating-linear-gradient(to right, rgb(255 0 116 / 94%) 0%, rgb(0 145 246 / 94%) 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.contact .section-header p {
  margin: 10px 10px 0px 10px;
  padding: 0;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #001A33;
  text-align: center;
}

.contact .info-box {
  color: #444444;
  padding: 30px;
  text-align: center;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #FF0074;
}

.contact .info-box h3 {
  font-size: 25px;
  color: #FF0074;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .confirmacion h3 {
  font-size: 34px;
  color: #FF0074;
  font-weight: 700;
  padding: 30px 0px 0px 0px;
  margin: 20px 0 10px 0;
  text-align: center;
}

.contact .info-box a {
  color: #001A33;
}

.contact .info-box a:hover {
  color: #FF0074;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
  text-align: center;
  color: #001A33;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form .validate {
  display: none;
  color: #ed3c0d;
  text-align: justify;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  font-size: 18px;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 10px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 7px;
}

.contact .php-email-form .sent-message {
  display: none;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background: #001A33;
  padding: 10px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 7px;
}

.contact .php-email-form .sent-message strong {
  font-size: 22px;
}

/*Confirmacion */
.contact .php-email-form .error-confirmacion {
  display: none;
  font-size: 18px;
  text-align: justify;
  color: #fff;
  background: #ed3c0d;
  padding: 40px 40px 10px 40px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 7px;
  margin-top: 140px;
}

.contact .php-email-form .sent-confirmacion {
  display: none;
  font-size: 18px;
  text-align: justify;
  color: #001A33;
  background: #fff;
  padding: 40px 40px 10px 40px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 7px;
  margin-top: 140px;
}

.contact .php-email-form .sent-confirmacion strong {
  font-size: 22px;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #FF0074;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select {
  border-radius: 4px;
  box-shadow: none;
  font-size: 16px;
  border: solid;
  border-color: #fff;
  color: #BBBCBC;
  border-bottom: solid;
  border-bottom-width: 0.2px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  border-color: #FF0074;
}

.contact .php-email-form input {
  text-align: justify;
  padding: 10px 15px;
}

.contact .php-email-form .radios {
  text-align: center;
}

.contact .php-email-form .radios [type="radio"] {
  height: 1rem;
  width: 1rem;
}

.contact .php-email-form .form-group input [type="radio"] {
  text-align: justify;
}

.contact .php-email-form .checkAceptacion [type="checkbox"] {
  height: 1.3rem;
  width: 1.3rem;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form select {
  padding: 10px 15px;
}

.contact .php-email-form select option {
  padding: 10px 15px;
  color: #FF0074;
}


.contact .php-email-form button[type="submit"] {
  background: #FF0074;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #FF0074;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.foliocompra-title {
  font-size: 32px;
  color: #1d76ce;
  font-weight: 700;
  text-align: center;
}

.foliocompra-number {
  font-size: 58px;
  color: #FF0074;
  font-weight: 600;
  text-align: center;
  padding: 0px 20px 40px 20px;
}

.div-sombreado {
  box-shadow: 0 4px 16px rgb(0, 0, 0, 10%);
  border-radius: 7px;
  margin: 10px;
}

/*--------------------------------------------------------------
# terms
--------------------------------------------------------------*/
.terms {
  padding: 70px 0 20px 0;
}

.terms .entry {
  padding: 60px 60px 60px 60px;
  border-radius: 13px;
  box-shadow: 0px 0 30px rgb(15 23 31 / 34%);
}

.terms .entry .entry-img {
  max-height: 340px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.terms .entry .entry-title {
  font-size: 22px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: justify;
}

.terms .entry .entry-title a {
  color: #001A33;
  transition: 0.3s;
}

.terms .entry .entry-title a:hover {
  color: #FF0074;
}

.terms .entry .entry-meta {
  margin-bottom: 15px;
  color: #4084fd;
}

.terms .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.terms .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.terms .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.terms .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.terms .entry .entry-content p {
  text-align: justify;
  list-style: none;
  line-height: 24px;
  color: #001A33;
}

.terms .entry .entry-content li {
  text-align: justify;
  list-style: none;
  line-height: 24px;
  color: #001A33;
}

.terms .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.terms .entry .entry-content .read-more a {
  display: inline-block;
  background: #1d76ce;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.terms .entry .entry-content .read-more a:hover {
  background: #18d26e;
}

.terms .entry .entry-content h3 {
  font-size: 20px;
  margin-top: 30px;
  font-weight: bold;
  color: #FF0074;
  text-align: center;
}

.terms .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.terms .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.terms .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #012970;
  margin-top: 20px;
  margin-bottom: 20px;
}

.terms .entry-single {
  margin-bottom: 30px;
}

.logo-subpagina {
  width: 250px;
  margin-bottom: 50px;
  text-align: center;
}

@media (max-width: 768px) {
  .terms .entry {
    padding: 60px 30px 60px 30px;
  }

  .terms .entry .entry-title a {
    font-size: 18px;
  }

  .terms .entry .entry-content h3 {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #001A33;
  padding: 0 0 20px 0;
  font-size: 14px;
}

.footer .copyright {
  text-align: center;
  padding-top: 20px;
  color: #fff;
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.footer .avisoprivacidad {
  text-align: center;
  padding-top: 20px;
  color: #fff;
}

.footer .avisoprivacidad a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

.footer .avisoprivacidad a:hover {
  color: #FF0074;
}