/*

TemplateMo 590 topic listing

https://templatemo.com/tm-590-topic-listing

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #13547a;
  --secondary-color:              #80d0c7;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #80d0c7;
  --custom-btn-bg-hover-color:    #13547a;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #13547a;

  --body-font-family:             'Open Sans', sans-serif;
  --title-font-family:            'Montserrat', sans-serif;

  --h1-font-size:                 54px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px;
  --menu-font-size:               13px;
  --btn-font-size:                13px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family); 
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: 18px;
  font-weight: 700;
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  /*color: var(--p-color);*/
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.container{
	/*width:1160px;
	padding:0 20px;*/
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.custom-border-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #5e57ac;
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 50;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
      background: linear-gradient(90deg, rgba(16,213,102,0.85) 0%, rgba(84,78,154,0.85) 100%);
      /*padding: 5px 0px;*/
      transition: all 0.2s ease;
}

.navbar {
  background: transparent;
  /*border-bottom: 1px solid rgba(128, 208, 199, 0.35);*/
  z-index: 9;
  /*padding:25px 0px;*/
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 0 20px 0 0;
  padding: 0px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: rgba(255,255,255,0.75);
  font-family: var(--bod-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: #ffffff;
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px !important;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  
}
.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  margin-top: 0;
  pointer-events: auto;
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  /*background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);*/
  background-image:url(../images/banner-principal.jpg);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
  height:650px;
  z-index:1;
  background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.hero-section:before{
	content:"";
	width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(16, 213, 102, 0.85) 0%, rgba(84, 78, 154, 0.85) 100%);
    top: 0;
    left: 0;
	position:absolute;
	z-index:-1;
}

.hero-section:after{
	content:"";
	width: 101%;
    height: 110px;
    background-image: url(../images/wave.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -1px;
    left: -1px;
	position:absolute;
	z-index:-1;
}

.hero-section .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 5px;
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type="search"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 20px;
}

.hero-section button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}


/*---------------------------------------
  TOPICS              
-----------------------------------------*/
.featured-section {
  background-color: var(--secondary-color);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block > a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}

.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}

.custom-block-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
}

.custom-block-overlay > a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.bg-design {
  background-color: #00B0FF;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: #536DFE;
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #00BFA6;
}


/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}


/*---------------------------------------
  PAGINATION              
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active>.page-link, .page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--primary-color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary-color);
}


/*---------------------------------------
  FAQs              
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

/*---------------------------------------
  NEWSLETTER               
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size:15px;
  padding-left: 20px;
  outline: none;
  margin-left:0px !important;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: #5e57ac;
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: #12d469;
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-bottom: 10px solid var(--secondary-color);
  position: relative;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer .dropdown-menu {
  padding: 0;
}

.site-footer .dropdown-item {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding: 4px 18px;
}

.site-footer .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.site-footer .dropdown-menu li:first-child .dropdown-item {
  padding-top: 10px;
}

.site-footer .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 12px;
}

.site-footer .dropdown-toggle {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.site-footer .dropdown-toggle:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: var(--secondary-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {

  .bg-video{
    margin: 0px !important;
  }

  .img-cta-d{
    display: none !important;
  }

  .img-cta-m{
    display: block !important;
  }

  .img-tarjeta{
    flex-direction: column;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    /*font-size: 28px;*/
  }

  h5 {
    /*font-size: 20px;*/
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 24px;
    padding-bottom: 100px;
  }
  
  .navbar {
    /*background-color: var(--secondary-color);*/
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
	height:100vh;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 10px 20px;
	color:#ffffff;
	display:block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	border-radius:0px;
	font-weight: var(--font-weight-semibold);
  }
  
  .navbar-nav .nav-link:hover {
  color: #12d469;
}

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing > .d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }
  
  .navbar-collapse{
	  position:fixed;
	  width:100px;
	  left:0px;
	  background:#5e57ac;
	  top:74px;
	  width:300px;
	  padding:20px;
	  box-shadow: -10px 0 20px rgba(0,0,0,0.15);
  }
  

}


@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    /*font-size: 22px;*/
  }

  h5 {
    font-size: 20px;
  }
}

/*TABS*/

.tabs-new{
	justify-content: center;
  display: inline-flex;
  padding: 5px;
  border-radius: 50px;
  border: 2px solid #5e57ac;
  gap: 10px;
}

.tabs-new .nav-link.active {
  color: var(--bs-nav-pills-link-active-color);
  background-color: #12D469;
  border-radius: 50px;

}

.tabs-new .nav-link{
  border-radius: 50px;
  color: #5e57ac;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 600;
}

.block-tabs-new {
  border-radius: 8px;
  border: 1px solid #ccc;
  position: relative;
  overflow: hidden;
  padding: 40px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  margin-top: 10px;
}

.block-tabs-new h5{
  font-size: 27px;
}

.b-recomendado{
  position: absolute;
    width: 70%;
    z-index: 999;
    /* top: -10px; */
    top: -10px;
    left: 0;
    right: 0;
    /* bottom: 0; */
    margin: auto;
    display: flex;
    justify-content: center;
    background: #1454d5;
    border-radius: 0px 0px 8px 8px;
}

.b-recomendado span{
  padding: 5px 45px;
  color: #ffffff;
  
}

.b-recomendado span::before{
  content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    border-right: 9px solid transparent;
    border-top: 9px solid transparent;
    border-left: 9px solid #083da7;
    border-bottom: 9px solid #083da7;
    top: 0px;
    right: -18px;
}

.b-recomendado span::after{
  content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    border-left: 9px solid transparent;
    border-top: 9px solid transparent;
    border-right: 9px solid #083da7;
    border-bottom: 9px solid #083da7;
    top: 0px;
    left: -18px;
}

.block-tabs-new:hover{
  border-color: #5e57ac;
  background-color: rgba(94,87,172,0.05);
  box-shadow: 0px 15px 25px 5px rgb(94 87 172 / 13%);
    -webkit-box-shadow: 0px 15px 25px 5px rgb(94 87 172 / 13%);
    -moz-box-shadow: 0px 15px 25px 5px rgb(94 87 172 / 13%);
}

.block-tabs-new:hover h5{
  color: #352e81;
}

.block-tabs-new {
  background-color: #ffffff;
  transform: translateY(-3px);
}

.dscto-host{
  padding: 4px 8px;
  background: #f3cf00;
  font-size: 14px;
  color: #000000;
  border-radius: 4px;
  font-weight: 600;
}

.precio-dscto-host{
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  border-radius: 4px;
  text-decoration: line-through;
}

.precio-host{
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  color: #3026a5;
}

.detalle-precio{
  font-size: 12px;
  color: #222;
  line-height: 15px;
  display: block;
}

.info-host{
  padding-top: 15px;
  border-top: 1px solid #3026a5;
}

.btn-primary {
	color: #fff;
	background-color: #12D469;
	border-color: #12D469;
  border-radius: 50px;
  transition: all 300ms;
  padding: 8px 20px;
  font-weight: 600;
}
.btn-primary:hover,.btn-primary:active, .btn-primary:focus-visible  {
	color: #fff !important;
	background-color: #09b556 !important;
	border-color: #09b556 !important;
  box-shadow: none;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
	color: #fff;
	background-color: #09b556;
	border-color: #09b556;
	
}
.btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #09b556;
	border-color: #09b556
}
.btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show>.btn-primary.dropdown-toggle:focus {
	
}
.btn-primary.disabled, .btn-primary:disabled {
	color: #fff;
	background-color: #12D469;
	border-color: #12D469
}
/**/

.btn-secondary {
	color: #fff;
	background-color: #5e57ac;
	border-color: #5e57ac;
  border-radius: 50px;
  transition: all 300ms;
  padding: 8px 20px;
  font-weight: 600;
}
.btn-secondary:hover,.btn-secondary:active, .btn-secondary:focus-visible  {
	color: #fff !important;
	background-color: #5e57ac !important;
	border-color: #5e57ac !important;
  box-shadow: none;
}
.btn-check:focus+.btn-secondary, .btn-secondary:focus {
	color: #fff;
	background-color: #5e57ac;
	border-color: #5e57ac;
	
}
.btn-check:active+.btn-secondary, .btn-check:checked+.btn-secondary, .btn-secondary.active, .btn-secondary:active, .show>.btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #5e57ac;
	border-color: #5e57ac
}
.btn-check:active+.btn-secondary:focus, .btn-check:checked+.btn-secondary:focus, .btn-secondary.active:focus, .btn-secondary:active:focus, .show>.btn-secondary.dropdown-toggle:focus {
	
}
.btn-secondary.disabled, .btn-secondary:disabled {
	color: #fff;
	background-color: #5e57ac;
	border-color: #5e57ac
}

/**/

/**/

.btn-danger {
	color: #fff;
	background-color: #E91E63;
	border-color: #E91E63;
  border-radius: 50px;
  transition: all 300ms;
  padding: 8px 20px;
  font-weight: 600;
}
.btn-danger:hover,.btn-danger:active, .btn-danger:focus-visible  {
	color: #fff !important;
	background-color: #E91E63 !important;
	border-color: #E91E63 !important;
  box-shadow: none;
}
.btn-check:focus+.btn-danger, .btn-danger:focus {
	color: #fff;
	background-color: #E91E63;
	border-color: #E91E63;
	
}
.btn-check:active+.btn-danger, .btn-check:checked+.btn-danger, .btn-danger.active, .btn-danger:active, .show>.btn-danger.dropdown-toggle {
	color: #fff;
	background-color: #E91E63;
	border-color: #E91E63
}
.btn-check:active+.btn-danger:focus, .btn-check:checked+.btn-danger:focus, .btn-danger.active:focus, .btn-danger:active:focus, .show>.btn-danger.dropdown-toggle:focus {
	
}
.btn-danger.disabled, .btn-danger:disabled {
	color: #fff;
	background-color: #E91E63;
	border-color: #E91E63
}

/**/




.lista-specs{
    padding: 0px;
    list-style: none;
}

.specs-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  margin-bottom: 8px;
  text-align: left;
}

.specs-item .icon-specs{
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #aaa;
    border-radius: 5px;
    padding: 2px;
}

.navbar .dropdown-menu::after{
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  top: -20px;
}

.b-icon{
  color: rgba(255,255,255,0.75);
  position: relative;
}

.b-icon:hover{
  color: #ffffff;
}

.b-icon:hover .info-icon .items{
  background-color: #ffffff;
}

.b-icon i{
  font-size: 30px;
}

.info-icon{
  font-size: 12px;
  position: absolute;
  top: 0px;
  right: -5px;
}

.info-icon .items{
  padding: 3px 8px;
  background-color: rgb(215 215 215);
  color: #352e81;
  line-height: 12px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-block;
}

.info-icon .nombre-icon{
  display: block;
}

.btn-link {
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  background-color: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-link:hover {
  color: #ffffff;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
  text-decoration: none;
}

.btn-link.focus,.btn-link:focus {
  text-decoration: none;
  border-color: transparent;
  box-shadow: none
}

.btn-link.disabled,.btn-link:disabled {
  color: #6c757d
}

.dropdown:hover .btn-link{
  color: #ffffff;
}

.dropdown .btn.show{
  color: rgba(255,255,255,0.75);
}

.btn-link i{
  font-size: 30px;
  height: 30px;
  width: 30px;
  line-height: 30px;
}

.info-right{
  margin-left: 40px;
  /*border-left: 1px solid rgba(255,255,255,0.75);*/
}

@media (min-width: 576px) {
  .container,.container-sm {
      max-width:540px
  }

  

}

@media (max-width: 576px) {
 

  .fecha-pago{
    text-align: left !important;
  }

}

@media (min-width: 768px) {
  .container,.container-md,.container-sm {
      max-width:720px
  }
}

@media (min-width: 992px) {
  .container,.container-lg,.container-md,.container-sm {
      max-width:960px
  }

  
  
}

@media (min-width: 1200px) {
  .container,.container-lg,.container-md,.container-sm,.container-xl {
      max-width:1140px
  }
}

@media (min-width: 1400px) {
  .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
      max-width:1320px
  }
}


/*SWIPER*/
.swiper {
  width: 100%;
  height: 100%;
  padding:20px 0px 20px 0px !important ;
}

.swiper-slide {
  
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-info i{
  font-size: 50px;
  margin-bottom: 15px;
}

.block-info p{
  font-size: 14px;
}

.btn-comprar {
	color: #fff;
	background-color: #3026a5;
	border-color: #3026a5;
  border-radius: 50px;
  transition: all 300ms;
  padding: 6px 20px;
}
.btn-comprar:hover,.btn-comprar:active, .btn-comprar:focus-visible  {
	color: #fff !important;
	background-color: #09b556 !important;
	border-color: #09b556 !important;
  box-shadow: none;
}
.btn-check:focus+.btn-comprar, .btn-comprar:focus {
	color: #fff;
	background-color: #09b556;
	border-color: #09b556;
	
}
.btn-check:active+.btn-comprar, .btn-check:checked+.btn-comprar, .btn-comprar.active, .btn-comprar:active, .show>.btn-comprar.dropdown-toggle {
	color: #fff;
	background-color: #09b556;
	border-color: #09b556
}
.btn-check:active+.btn-comprar:focus, .btn-check:checked+.btn-comprar:focus, .btn-comprar.active:focus, .btn-comprar:active:focus, .show>.btn-comprar.dropdown-toggle:focus {
	
}
.btn-comprar.disabled, .btn-comprar:disabled {
	color: #fff;
	background-color: #12D469;
	border-color: #12D469
}


.text-right{
  text-align: right !important;
}

.text-left{
  text-align: left !important;
}

.link-mas{
  color: #352e81;
  font-weight: 600;
}

.link-mas i{
  color: #09b556;
  margin-left: 8px;
}

.link-mas:hover{
  color: #352e81;
}

@media only screen and (max-width: 639px){
  .card{
    width: 100% !important;
  }
}

@media only screen and (max-width: 767px){
  .detalle-compra .resumen-compra .btn-resumen a{
    display: none;
  }

  .bg-video{
    height: 640px;
    background-image: url(../images/bg-img-phone.jpg) !important;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    display: grid;
    margin: 0px 120px;
  }

}

@media only screen and (max-width: 575px){
  
  .items-delete{
    display: inline-block !important;
    color: #dc3545;
  }

  .item-producto .icon-producto{
    display: none !important;
  }

  .item-producto .detalle-producto{
    width: calc(100% - 0px) !important;
    float: left;
    margin-left: 0px !important; 
  }



  

}

@media only screen and (max-width: 450px){
  .cuerpo-productos .item-precio{
    display: block !important;
  }

  .content-resumen .producto-precio, .content-resumen .producto-cuota, .content-resumen .info-adic-item{
    text-align: left !important;
  }
}


@media only screen and (max-width: 380px){
  .mas-opciones .precio-dominio-dto, .precio-dominio-dto{
    flex-direction: column;
    align-items: start !important;
    gap: 4px !important;
  }

  .precio-dominio{
    margin-top: 4px !important;
  }
  
}

@media only screen and (max-width: 505px) {

  .detalle-plan-host{
    flex-direction: column;
  }



  .block-detalle{
    /*padding: 10px !important;*/
  }

  .vaciar-carro span{
    display: none;
  }

  .tab-host-min .nav-link{
    font-size: 12px !important;
    padding: 10px !important;
  }

  .tabs-new{
    display: flex;
    flex-wrap: nowrap;
    gap: 0px;
  }

  .txt-none{
    display: none;
  }

  .tabs-new .nav-link{
    padding-left:23px;
    padding-right: 23px;
    font-size: 15px;
  }

  .logo-mobile{
    display: inline-block !important;
    height: 50px;
  }

  .logo-desktop{
    display: none;
  }

  .info-right{
    margin: 0px;
  }

  .navbar{
    /*padding: 15px 0px;*/
  }
  
  .hero-section button[type="submit"]{
    max-width: fit-content;
  }

}

.logo-mobile{
  display: none;
}

.content-slider{
  position: relative;
}

.btn-mas{
    position: absolute;
    right: -30px;
    /* padding: 5px; */
    top: 40%;
    background: #12d469;
    z-index: 999;
    width: 60px;
    border-radius: 50%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
}

.btn-mas:hover{
    background: #079b4a;
    color: #ffffff;
}


/*burbuja*/
.bubble-container i,
            .notifications {
                display: flex;
                align-items: center;
                justify-content: center;
                height: 100%;
            }
            .notifications {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.2);
                flex-flow: column;
                z-index: 999999999;
                display: none;
            }
            .bubble-container {
                position: fixed;
                bottom: 30px;
                right: 30px;
                z-index: 5;
            }
            .bubble-container i {
                color: #fff;
                font-size: 14px;
            }
            .bubble-button-open {
                background-color: #12d469;
                margin: 0 0 0 auto;
                position: relative;
                box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
                color: #fff;
                padding: 10px 0;
                border-radius: 30px;
                letter-spacing: 0.01em;
                width: 170px;
                height: 46px;
            }
            .bubble-button-open:not(.bubble-button-active):before {
                content: "";
                width: 175px;
                height: 56px;
                position: absolute;
                top: -5px;
                left: -5px;
                background-color: #0c8d46;
                border-radius: 30px;
                z-index: -1;
            }
            .bubble-button-open i {
                font-size: 22px;
                margin: 0 10px 0 0;
            }
            .bubble-information {
                width: 300px;
                margin: 0 0 20px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
                border-radius: 10px;
                display: none;
                transform: scale(0);
                transform-origin: 90% 105%;
            }

            .icon-bubble:before {
              content: "\e927";
          }
          

          @media (max-width: 768px) {
            .bubble-container {
                bottom: 15px;
                right: 15px;
            }

            .block-resumen{
              margin-top: 10px !important;
            }
          

        }

        @media (max-width: 425px) {
          .bubble-information {
              position: fixed;
              bottom: 0;
              margin: 0;
              left: 0;
              width: 100%;
              z-index: 10;
              transform-origin: 70% 70%;
          }
        }

        .bubble-container {
          position: fixed;
          bottom: 30px;
          right: 30px;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none;
          z-index: 5;
          transition: all 0.5s cubic-bezier(1, -0.5, 0.5, 1);
      }
      @media (min-width: 426px) {
          .bubble-container.on-bottom {
              bottom: 60px;
          }
      }
      @media (max-width: 768px) {
          .bubble-container {
              bottom: 15px;
              right: 15px;
          }
      }
      .bubble-container i {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 100%;
          color: #fff;
          font-size: 14px;
      }
      .bubble-button-open {
          background-color: #12d469;
          margin: 0 0 0 auto;
          cursor: pointer;
          position: relative;
          box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
          color: #fff;
          padding: 10px 0;
          border-radius: 30px;
          letter-spacing: 0.01em;
          width: 170px;
          height: 46px;
      }
      .bubble-button-open:not(.bubble-button-active):before {
          content: "";
          width: 175px;
          height: 56px;
          position: absolute;
          top: -5px;
          left: -5px;
          background-color: #0c8d46;
          border-radius: 30px;
          z-index: -1;
          -webkit-animation: scaleout 0.9s infinite ease;
          animation: scaleout 0.9s infinite ease;
      }
      .bubble-button-open i {
          font-size: 22px;
          margin: 0 10px 0 0;
      }
      .bubble-button-close {
          width: 30px;
          height: 30px;
          background-color: #4b458b;
          display: block;
          position: absolute;
          top: -40px;
          right: 5px;
          border-radius: 50%;
          cursor: pointer;
      }
      @media (max-width: 425px) {
          .bubble-button-close {
              right: 10px;
          }
      }
      .bubble-information {
          width: 300px;
          margin: 0 0 20px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          border-radius: 10px;
          display: none;
          transform: scale(0);
          transform-origin: 90% 105%;
          transition: all ease-in-out 0.15s;
      }
      .bubble-active .bubble-information {
          transform: scale(1);
      }
      @media (max-width: 425px) {
          .bubble-information {
              position: fixed;
              bottom: 0;
              margin: 0;
              left: 0;
              width: 100%;
              z-index: 10;
              transform-origin: 70% 70%;
          }
          .bubble-information .bubble-title,
          .bubble-information .bubble-options {
              border-radius: 0;
          }
          .bubble-information .bubble-options {
              padding: 5px 0;
          }
          .bubble-information .bubble-options ul li:not(:last-child) a {
              border-bottom: 1px dashed #ccc;
          }
          .bubble-information .bubble-options ul li a {
              padding: 8px 12px;
          }
      }
      .bubble-title {
          background-color: #5e57ac;
          padding: 15px;
          border-radius: 10px 10px 0 0;
      }
      .bubble-title strong {
          color: #fff;
          font-size: 15px;
          line-height: 1.4;
          display: block;
          font-weight: 500;
          letter-spacing: 0.01em;
      }
      @media (max-width: 425px) {
          .bubble-title {
              padding: 10px 15px;
          }
          .bubble-title strong {
              font-size: 14px;
              letter-spacing: 0.02em;
          }
      }
      .bubble-options {
          padding: 10px 0;
          background-color: #fff;
          border-radius: 0 0 10px 10px;
          position: relative;
      }
      .bubble-options:after {
          content: "";
          position: absolute;
          bottom: -10px;
          right: 20px;
          border-left: 10px solid transparent;
          border-right: 10px solid transparent;
          border-top: 10px solid #fff;
      }
      .bubble-options ul {
          padding: 0;
          margin: 0;
      }
      .bubble-options ul li {
          margin: 0;
          list-style-type: none;
      }
      .bubble-options ul li a {
          display: flex;
          align-items: center;
          padding: 7px 15px;
          font-size: 14px;
          color: #3b3b3b;
          text-decoration: none;
          line-height: 1;
      }
      .bubble-options ul li a i {
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background-color: #eee;
          margin: 0 12px 0 0;
      }
      .bubble-options ul li a i.bi-envelope {
          background-color: #66b5ff;
          font-size: 19px;
      }
      .bubble-options ul li a i.bi-envelope:before {
          position: relative;
          top: -1px;
      }
      .bubble-options ul li a i.bi-whatsapp {
          background-color: #21bd5b;
          font-size: 24px;
      }
      .bubble-options ul li a i.bi-telephone {
          background-color: #ffcb3c;
          font-size: 17px;
          transform: rotateY(180deg);
      }
      .bubble-options ul li a:hover {
          background-color: #f5f5f5;
      }

      @-webkit-keyframes scaleout {
        0% {
            transform: scale(0);
        }
        to {
            transform: scale(1.2);
            opacity: 0;
        }
    }
    @keyframes scaleout {
        0% {
            transform: scale(0);
        }
        to {
            transform: scale(1.2);
            opacity: 0;
        }
    }

    .align-v {
      display: flex;
      align-items: center
  }
  
  .align-h {
      display: flex;
      justify-content: center
  }

  .jc-center {
    justify-content: center
}

/*interna*/

.pag-interna .hero-section{
  padding-top: 74px;
  padding-bottom: 0px;
  height: auto;
  background-image:none;
}

.pag-interna .hero-section:after{
  content: none;
}

.block-resumen{
  background: #f5f7f8;
  padding: 20px;
  border-radius: 4px;
 
}

.block-resumen h6{
  color: #673AB7;
}

.block-resumen h4{
  border-bottom: 1px solid #ccc ;
  padding-bottom: 10px;
}

.block-resumen .cant-articulos,.block-resumen .subtotal, .block-resumen .total-carrito{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.block-resumen .cant-articulos p{
  margin-bottom: 0px;
}

.block-resumen .total-carrito, .block-resumen .cant-articulos{
  border-bottom:none;
}

.block-resumen .total-carrito .tit-total{
  font-size: 25px;
  font-weight: 600;
}

.txt-adicional{
  display: block;
  text-align: right;  
}

.block-resumen .total-carrito .precio-total{
  color: #12d469;
  font-weight: 600;
  font-size: 25px;
}

.block-detalle{
  
  border-radius: 4px;
  /*padding: 20px;
  border: 1px solid #ccc;*/
  margin-bottom: 15px;
}

.block-detalle .tit-fact h4{
  color: #3026a5;
}

.block-detalle .block-detalle-item h3{
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.b-planes{
  display: flex;
  overflow-x: scroll;
  flex-wrap: nowrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.b-planes .plan-detalle{
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  margin: 0px 5px;
  min-width: 250px;
  border-radius: 8px;
}

.b-planes .plan-detalle .tit-plan{
  font-size: 18px;
}

.b-planes .plan-detalle .precio-plan{
  font-weight: 600;
  font-size: 16px;
}

.spec-plan ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-align: center;
  margin: 15px 0px;
}

.spec-plan ul li{
  border-bottom: 1px solid #e5e7e8;
  padding: 5px 0px;
  text-align: left;
}

.b-planes .plan-detalle .form-check{
  display: flex;
  justify-content: center;
}

.b-planes .plan-detalle .form-check .form-check-input{
  width: 30px;
  height: 30px;
}

.tab-host-min{
  justify-content: start;
}

.tab-host-min .nav-link{
  font-size: 16px;
  color: #3026a5;
  padding: 10px 20px;
  background: #e5e7e8;
  font-weight: 600;
  border-radius: 8px 8px 0px 0px;
}

.tab-host-min .nav-link.active{
  background: #12D469;
  color: #ffffff;
  border-bottom-color:#12D469;
}

.tab-host-min .nav-link:hover{
  border-bottom-color:#12D469;
}

.tab-host-min .nav-link:first-child{
  margin-right: 5px;
}

/*scroll*/
/* width */
.b-planes::-webkit-scrollbar {
  width: 3px;
}

/* Track */
.b-planes::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 8px;
}
 
/* Handle */
.b-planes::-webkit-scrollbar-thumb {
  background: #3026a5; 
  border-radius: 8px;
}

/* Handle on hover */
.b-planes::-webkit-scrollbar-thumb:hover {
  background: #3026a5; 
}

.info-dominio{
  background: #f5f7f8;
  padding: 20px;
  border-radius: 4px;
}

.tabs-dominios{
  margin-bottom: 15px;
}

.tabs-dominios .accordion-button::after{
  position: absolute;
}

.tabs-dominios .accordion-button span{
  display: inline-block;
  margin-left: 30px;
}

.tabs-dominios .accordion-button::after{
  content: "\F28A" ;
  font-family: bootstrap-icons !important;
  background-image: none;
}

.tabs-dominios .accordion-button::after{
  content: "\F28A" ;
  font-family: bootstrap-icons !important;
  background-image: none;
  transition: none;
}

.tabs-dominios .accordion-button{
  font-size: 16px !important;
}

.tabs-dominios .accordion-button:not(.collapsed){
      color: #3026a5 !important;
    background-color: #dfddff !important;
}

.tabs-dominios .accordion-item{
  margin-top: 0px !important;
}

.tabs-dominios .accordion-button:focus, .acordeon-gral .accordion-button:focus{
  box-shadow: none;
}

.tabs-dominios .accordion-button:not(.collapsed) span{
  font-weight: 600;
}

.tabs-dominios .accordion-button:not(.collapsed)::after{
  content: "\F26A";
  font-family: bootstrap-icons !important;
  background-image: none;
  transform: none;
}



.result-positivo{
  padding: 20px;
  background: #dffeed;
  border: 1px solid #09b556;
  margin-top: 20px;
  word-break: break-word;
  text-align: center;
}

.result-positivo h4{
  font-size: 18px;
  font-weight: normal;
}

.result-positivo h4 span, .result-positivo p span{
  color: #083da7;
  font-weight: 700;
  font-size: 24px;
}

.result-positivo p,.result-negativo p{
 margin-bottom: 5px;
}

.result-negativo{
  padding: 20px;
  background: #ffefef;
  border: 1px solid #dc3545;
  margin-top: 20px;
}

.result-negativo h4{
  font-size: 18px;
  font-weight: normal;
}

.result-negativo h4 span{
  color: #dc3545;
  font-weight: 700;
  font-size: 24px;
}

.acordeon-gral .accordion-button{
  font-size: 22px;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
}

.acordeon-gral .accordion-button:not(.collapsed){
  background-color: #e9e9e9;
  color: #3026a5;
  font-weight: 600;
}

.acordeon-gral .accordion-button::after{
  content: none;
}

.acordeon-gral .accordion-item{
  margin-top: 10px;
}

.acordeon-gral .accordion-item:not(:first-of-type){
  border-top:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.acordeon-gral .accordion-item:first-of-type, .acordeon-gral .accordion-item:first-of-type .accordion-button{
  border-radius: 0px;
}

.link-acordeon{
  font-size: 14px;
  text-decoration: underline;
  color: #079b4a;
  font-weight: 500;
}

/*steps*/

.step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  color: #3026a5;
  border: 2px solid #12d469;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.progress-step{
  --bs-progress-bar-bg: #12d469;
}

.step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #007bff;
  z-index: -1;
}

#multi-step-form{
overflow-x: hidden;
}

.header-item{
  padding: 8px 12px;
  background-color: #5e57ac;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border-radius: 8px 8px 0px 0px;
}

.body-item{
  padding:20px 12px 0px 12px;
  background-color: #fff;
}

.cabecera-producto{
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  /* border: 1px solid #e2e2e2; */
  padding: 8px 12px;
  background: #f5f7f8;
  border-radius: 12px 12px 0px 0px;
}

.cuerpo-productos{
  /*padding: 8px 12px;*/
}

.cuerpo-productos .item-precio{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 16px 16px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  position: relative;
}

.cuerpo-productos .item-precio .item-delete{
  position: absolute;
  right: 8px;
  top: 8px;
  width: 24px;
  height: 24px;
  text-align: center;
  color:#E91E63;
}

.item-producto{
  /*display: flex;
  gap: 12px;
  align-items: start;
  border: 1px solid #dddddd;
  border-radius: 12px;*/
}

.item-producto .icon-producto{
  display: none;
  /*
  background: #f4fff9;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px; 
    font-size: 30px;
    border: 1px solid #079b4a;
    border-radius: 8px;
    float: left;*/
}

.item-producto .detalle-producto{
  /*width: calc(100% - 72px);
  float: left;
  margin-left: 12px;*/
}

.item-producto .tit-producto span{
  font-size: 20px;
  font-weight: 600;
  margin-right: 12px;
}
.item-producto .tit-producto{
  font-size: 14px;
  font-weight: 500;
}

.item-producto .tit-producto i{
  margin-right: 8px;
}

.item-producto .detalle-producto .n-host, .item-producto .detalle-producto .n-domin, .item-producto .detalle-producto .n-rdominio{
  display: block;
}

.item-producto .detalle-producto .n-domin{
  font-size: 15px;
  color: #079b4a;
}

.content-resumen{
  /*margin-bottom: 15px;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 15px;*/
}

.content-resumen .producto-precio{
  font-weight: 600;
  display: block;
  text-align: right;
  font-size: 20px;
  line-height: 20px;
}

.tit-item strong{
  
}

.tit-item strong a{
  font-weight: normal;
  display: inline-block;
  margin-left: 4px;
  color: #673AB7;
}

.tit-item .fecha-vence{
  font-size: 14px;
}

.tit-item .item-dom{
  display: block;
  color: #12d469;
  margin-bottom: 8px;
}

.tit-item .item-dom span{
  color: #808080;
}

.content-resumen .info-adic-item{
  font-weight: 500;
  display: block;
  text-align: right;
  font-size: 14px;
  color: #787878;
}

.content-resumen .producto-cuota{
  font-weight: 600;
  display: block;
  text-align: right;
  font-size: 14px;
}

.icon-close{
display: flex;
justify-content: center;
width: 30px;
height: 30px;
align-items: center;
overflow: hidden;

}

.icon-close:hover i{
  color: #b7202f;
}

.icon-close i{
  font-size: 25px;
  color: #dc3545;
  transition: 0.2ms all;
}

.opciones-agregar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 10px;
}

.vaciar-carro{
  padding: 7px 15px;
  border-radius: 50px;
  background: #e2e2e2;
}

.seguir-comprando{
  display: inline-block;
  color: #673AB7;
}

.seguir-comprando:hover{
  text-decoration: underline;
}

.tit-fact{
  display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #dddddd;
      margin-bottom: 8px;
}

.tit-fact h4{
  font-weight: 600;
  color: #3026a5;
}

.info-fact{
  display: flex;
  flex-direction: column;
}

/*card*/
.payment-title {
    width: 100%;
    text-align: center;
}

.form-container .field-container:first-of-type {
    grid-area: name;
}

.form-container .field-container:nth-of-type(2) {
    grid-area: number;
}

.form-container .field-container:nth-of-type(3) {
    grid-area: expiration;
}

.form-container .field-container:nth-of-type(4) {
    grid-area: security;
}

.field-container input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.field-container {
    position: relative;
}

.form-container {
    display: grid;
    grid-column-gap: 10px;
    grid-template-columns: auto auto;
    grid-template-rows: 90px 90px 90px;
    grid-template-areas: "name name""number number""expiration security";
    /*max-width: 400px;*/
    color: #707070;
}

label {
    padding-bottom: 5px;
    font-size: 13px;
}

input {
    /*margin-top: 3px;*/
    padding: 10px 15px;
    font-size: 16px;
    width: 100%;
    border-radius: 3px;
    border: 1px solid #dcdcdc;
}

.ccicon {
    height: 38px;
    position: absolute;
    right: 6px;
    top: calc(50% - 17px);
    width: 60px;
}

/* CREDIT CARD IMAGE STYLING */
.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

.tarjeta {
    width: 100%;
    max-width: 400px;
    max-height: 251px;
    height: 54vw;
    /*padding: 20px;*/
}

#ccsingle {
    position: absolute;
    right: 15px;
    top: 20px;
}

#ccsingle svg {
    width: 100px;
    max-height: 60px;
}

.creditcard svg#cardfront,
.creditcard svg#cardback {
    width: 100%;
    border-radius: 22px;
    /*box-shadow: 0 20px 60px 0 #adb5bd;*/
}

#generatecard{
    cursor: pointer;
    float: right;
    font-size: 12px;
    color: #fff;
    padding: 2px 4px;
    background-color: #909090;
    border-radius: 4px;
    cursor: pointer;
    float:right;
}

/* CHANGEABLE CARD ELEMENTS */
.creditcard .lightcolor,
.creditcard .darkcolor {
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.creditcard .lightblue {
    fill: #03A9F4;
}

.creditcard .lightbluedark {
    fill: #0288D1;
}

.creditcard .red {
    fill: #ef5350;
}

.creditcard .reddark {
    fill: #d32f2f;
}

.creditcard .purple {
    fill: #ab47bc;
}

.creditcard .purpledark {
    fill: #7b1fa2;
}

.creditcard .cyan {
    fill: #26c6da;
}

.creditcard .cyandark {
    fill: #0097a7;
}

.creditcard .green {
    fill: #66bb6a;
}

.creditcard .greendark {
    fill: #388e3c;
}

.creditcard .lime {
    fill: #d4e157;
}

.creditcard .limedark {
    fill: #afb42b;
}

.creditcard .yellow {
    fill: #ffeb3b;
}

.creditcard .yellowdark {
    fill: #f9a825;
}

.creditcard .orange {
    fill: #ff9800;
}

.creditcard .orangedark {
    fill: #ef6c00;
}

.creditcard .grey {
    fill: #bdbdbd;
}

.creditcard .greydark {
    fill: #616161;
}

/* FRONT OF CARD */
#svgname {
    text-transform: uppercase;
}

#cardfront .st2 {
    fill: #FFFFFF;
}

#cardfront .st3 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
}

#cardfront .st4 {
    font-size: 54.7817px;
}

#cardfront .st5 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardfront .st6 {
    font-size: 33.1112px;
}

#cardfront .st7 {
    opacity: 0.6;
    fill: #FFFFFF;
}

#cardfront .st8 {
    font-size: 24px;
}

#cardfront .st9 {
    font-size: 36.5498px;
}

#cardfront .st10 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 300;
}

#cardfront .st11 {
    font-size: 16.1716px;
}

#cardfront .st12 {
    fill: #4C4C4C;
}

/* BACK OF CARD */
#cardback .st0 {
    fill: none;
    stroke: #0F0F0F;
    stroke-miterlimit: 10;
}

#cardback .st2 {
    fill: #111111;
}

#cardback .st3 {
    fill: #F2F2F2;
}

#cardback .st4 {
    fill: #D8D2DB;
}

#cardback .st5 {
    fill: #C4C4C4;
}

#cardback .st6 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardback .st7 {
    font-size: 27px;
}

#cardback .st8 {
    opacity: 0.6;
}

#cardback .st9 {
    fill: #FFFFFF;
}

#cardback .st10 {
    font-size: 24px;
}

#cardback .st11 {
    fill: #EAEAEA;
}

#cardback .st12 {
    /*font-family: 'Rock Salt', cursive;*/
}

#cardback .st13 {
    font-size: 37.769px;
}

/* FLIP ANIMATION */
.tarjeta {
    perspective: 1000px;
}

.creditcard {
    width: 100%;
    max-width: 400px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: -webkit-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    cursor: pointer;
}

.creditcard .front,
.creditcard .back {
    position: absolute;
    width: 100%;
    max-width: 400px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    color: #47525d;
}

.creditcard .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.creditcard.flipped {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.tit-producto{
  display: flex;
  align-items: center;
}

.tit-producto .opciones-items{
  display: flex;
  gap:8px;
}

.items-delete{
  display: none;
  
}

.img-tarjeta{
  display: flex;
  align-items: center;
  gap:20px
}

/*radio buttom*/
.card{
  /*height: 320px;*/
  width: 100%;
  position: relative;
  border: none;
  margin:0px;
}
.card input[type="radio"]{
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  box-shadow: 7px 7px 15px rgba(2,28,53,0.08);
  cursor: pointer;
  border: 2px solid #ccc;
  transition: 0.3s;
  
}
.card input[type="radio"]:before{
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  background-color: #e9ebf2;
  border: 1px solid #c3c9de;
  border-radius: 50%;
  top: 35px;
  right: 20px;
}
.card input[type="radio"]:after{
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border-radius: 50%;
  top: 37.5px;
  right: 23.5px;
}
.card label{
  /*position: absolute;*/
  z-index: 2;
  margin: 20px 35px;
  cursor: pointer;
}
.card h5{
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin: 15px 0 20px 0;
}
.card h2{
  font-size: 28px;
}
.card h2 span{
  font-weight: 400;
  font-size: 18px;
  color: #7b7b93;
}
.card input[type="radio"]:hover{
  /*transform: scale(1.05);*/
}
.card input[type="radio"]:checked{
  border: 2px solid #12D469;
}
.card input[type="radio"]:checked:after{
  background-color: #5e57ac;
}

.slider-he .swiper-button-prev, .slider-hn .swiper-button-prev, .mySwiperabc2 .swiper-button-prev, .mySwiperabc .swiper-button-prev{
  left: 0px;
}

.slider-he .swiper-button-prev:after, .slider-hn .swiper-button-prev:after, .mySwiperabc2 .swiper-button-prev:after, .mySwiperabc .swiper-button-prev:after{
  font-size: 24px;
  background: #12d469;
  padding: 10px;
  color: #fff;
  border-radius: 0px 8px 8px 0px;
}

.slider-he .swiper-button-next, .slider-hn .swiper-button-next, .mySwiperabc2 .swiper-button-next, .mySwiperabc .swiper-button-next{
  right: 0px;
}

.slider-he .swiper-button-next:after, .slider-hn .swiper-button-next:after, .mySwiperabc2 .swiper-button-next:after, .mySwiperabc .swiper-button-next:after{
  font-size: 24px;
  background: #12d469;
  padding: 10px;
  color: #fff;
  border-radius: 8px 0px 0px 8px;
}

.input-numeral{
  width: 150px !important;
}

.detalle-precio-ciclo{
  display: flex;
  flex-direction: column;
  align-items: end;
}

.b-menu-logo{
  display: flex;
  align-items: center;
  gap: 20px;
}

.b-cta{
  background-color: #317650;
  text-align: center;
}

.img-cta-d{
  display: block;
}

.img-cta-m{
  display: none;
}

.detalle-plan-host{
  display: flex;
    align-items: start;
    background: #f5f5f5;
    justify-content: center;
    padding: 15px 0px;
    margin-bottom: 15px;
    border: 1px solid #d8d8d8;
    gap:10px;
    align-items: center;
}

.nombre-plan-host{

}

.precio-plan-host b{
  color: #079b4a;
  font-size: 20px;
}

.preloader-search .text-buscar{
  color: #12D469;
}


/**/

.detalle-compra{
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #f5f5f5;
  z-index: 2;
  padding: 16px 0px;
  border-top: 2px solid #d6d6d6;
  box-shadow: 0px 1px 12px 0 #CCC;
}

.detalle-compra .resumen-compra{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.detalle-compra .resumen-compra .resumen-articulos h5{
  font-size: 18px;
} 

.detalle-compra .resumen-compra .resumen-articulos h6{
  font-size: 16px;
  color: #3b3b3b;
} 

.detalle-compra .resumen-compra .resumen-articulos h6 span{
  color: #079b4a;
}

.detalle-compra .resumen-compra .btn-resumen{
  display: flex;
  align-items: center;
  gap:16px;
} 

.detalle-compra .resumen-compra .btn-resumen a{
  text-decoration: underline;
  color: #673AB7;
} 

.footer{
	background: #524e84;
  padding: 60px 0px 20px 0px;
}

.footer p{
	color:#ccccd1;
}

.footer h5{
	color:#fff;
  font-size: 20px;
}

.footer ul{
	display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0px;
  padding: 0px;
  gap: 4px;

}

.footer ul li a{
	color:#ccccd1;
  font-size: 16px;
}

.footer ul li a:hover{
	color:#fff;
  
}

.footer .footer-contacto a{
  padding-left: 30px;
  position: relative;
}

.footer .footer-contacto span{
  position: absolute;
  left: 0px;
}

.link-reclamaciones{
  padding-left: 80px;
  position: relative;
  color: #ccccd1;
  padding: 8px 12px 8px 60px;
  border: 1px solid #ccccd1;
  border-radius: 8px;
}

.link-reclamaciones:hover{
  color:#fff;
  border: 1px solid #fff;
}

.link-reclamaciones img{
  width: 40px;
  position: absolute;
  left: 8px;
}

.rrss{
  display: flex;
  gap: 8px;
}

.rrss a{
  color: #ccccd1;
  font-size: 24px;
}

.rrss a:hover{
  color: #fff;
  
}

.footer-copy{
  padding: 20px 0px;
  border-top: 1px solid #6c689d;
  margin-top: 10px;
  text-align: center;
  color: #ccccd1;
}

.block-section{
  padding: 32px 24px;
  background: #fff;
  border: 2px solid #5e57ac;
  border-radius: 8px;
}

.block-section .detalle-dominio{
  display: flex;
 
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.tag-info{
  background: #5E57AC;
  padding: 4px 16px;
  color: #fff;
  margin-bottom: 8px;
  display: inline-block;
  font-weight: 500;
  border-radius: 50px;
}

.block-section{
  margin-bottom: 20px;
}

.block-section h3{
  font-weight: 700;
}

.block-section h3 span{
  color:#12D469;
}

.precio-dominio-dto{
  text-align: right;
  font-family: var(--title-font-family);
  display: flex;
      align-items: center;
      gap: 16px;
      justify-content: end;
}

.precio-dominio{
  font-weight: 700;
  margin-top:12px;
  margin-bottom: 4px;
  font-size: 32px;
  display: block;
  line-height: 32px;
}

.precio-dominio span{
  font-weight: 500;
  font-size: 20px;
 
}

.precio-dominio-antes{
  color: #A3A3A3;
  font-size: 16px;
}

.precio-dominio-antes span{
  text-decoration: line-through;
}

.tiempo .input-group{
  max-width: 140px;
    margin: 0 auto;
}


.mas-opciones .nombre-dominio h3{
  font-size: 26px;
  font-weight: 600
}

.mas-opciones .precio-dominio{
  font-size: 24px;
}

.mas-opciones .precio-dominio-dto{
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: end;
}

.btn-outline-primary{
    color: #000000;
    background-color: #ffffff;
    border-color: #12D469;
    border-radius: 50px;
    transition: all 300ms;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
}

.btn-outline-primary i{
  font-size: 20px;
}

.btn-outline-primary:hover,.btn-outline-primary:active, .btn-outline-primary:focus-visible  {
	color: #fff !important;
	background-color: #09b556 !important;
	border-color: #09b556 !important;
  box-shadow: none;
}

.btn-outline-primary.active{
  color: #fff !important;
	background-color: #09b556 !important;
	border-color: #09b556 !important;
  box-shadow: none;
}

.block-section h5{
  color:#5E57AC;
}

@media screen and (max-width: 768px){
  .block-section h3, .mas-opciones .nombre-dominio h3{
    font-size: 20px;
  }

  .tiempo {
    text-align: left !important;
    margin: 8px 0;
  }
  .tiempo .input-group{
    margin: inherit;
  }

  .mas-opciones .precio-dominio{
    font-size: 20px;
  }
}

.bg-violet{
  background: rgb(94 87 172 / 8%);
}

.fail-dominio .nombre-dominio{
  display: flex;
  align-items: center;
  gap: 12px;

}

.fail-dominio .nombre-dominio span{
  color: #FF003D;

}

.fail-dominio .nombre-dominio h3{
  color: #AAAAAA;
}

/**/
/*
.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
  grid-template-rows: auto; 
}

@media (max-width: 900px) {
  .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 600px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
  }
}*/

.form-registro, .b-nota-pago{
  border: 1px solid #dddddd;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.monto-total{
  background: rgb(18 212 105 / 0.1);
  padding: 16px;
  margin-bottom: 12px;
  
}

.monto-total h5{
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
  color:#155724;
}

.monto-total h5 strong{
  font-weight: 700;
}

.si-registrado {
  display: none; /* Se oculta inicialmente */
}

.nav-tabs .nav-link img{
  width: 60px;

}

.nav-tabs .nav-link {
  opacity: 0.5;
}

.nav-tabs .nav-link.active{
  opacity: 1;
}

.forma-pago{
  display: flex;
      align-items: center;
      flex-direction: column;
      font-weight: 600;
      color: #3026a5;
}

.tab-content-pagos{
  padding: 20px;
    background: #f5f5f5;
    border-radius: 0px;
}

.img-tarjetas{
  width: 300px;
}


@media screen and (max-width: 1199px) {
  .forma-pago img{
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .precio-dominio-dto{
    justify-content: start !important;
    text-align: left !important;
  }
}
.logo-yape {

  width: 80px ;
}

@media (max-width: 991px) {
  .nav-tabs { display: none; }
  .select-tabs{ display: block; }
  .tab-content-pagos{margin-top: 12px;}
  
}

@media (min-width: 992px) {
  .nav-tabs { display: flex; }
  .select-tabs{ display: none; }
}

.fecha-pago{
    display: flex;
    flex-direction: column;
    text-align: end;
}

.table-pago th{
  text-align: right;
}

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

.forma-pagar{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.forma-pagar img{
  width: 40px;
}

/**/
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-item {
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Cambiar a 2 columnas en pantallas pequeñas */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

/* Cambiar a 1 columna en pantallas muy pequeñas */
@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .b-btn{
    text-align: left !important;
  }

  
}

.b-btn{
  text-align: right;
}



.form-block{
  padding: 60px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
border-radius: 8px;
}

.info-contacto{
  margin-left: 80px;;
}

.list-contact{
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-contact li{
  display: flex;
  align-items: center;
}

.list-contact li i{
  font-size: 32px;
  margin-right: 16px;
  color:#3026a5;
}

.list-contact li h6{
  font-size: 16px;
  color: var(--p-color);
  padding-bottom: 4px;
}

.list-contact li a{
  font-size: 24px;
  color:#000;
  line-height: 32px;
  display: list-item;
  font-weight: 600;
}

.info-contacto .rrss a{
   font-size: 32px;
   color:#3026a5;
}

.info-contacto .rrss a:hover{
  color:#12D469;
}

.info-contacto .rrss{
  gap: 20px;
}

.block-sla{
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.block-sla .sla-img{
  margin-right: 16px;
  max-width: 150px;
  overflow: hidden;
  width: 25%;
}

.block-sla .sla-info{
  flex: 1;
}

.form-buscar{
  padding: 12px 0px;
  background: #fff;
  margin-bottom: 12px;
}

.form-buscar .input-group{
  background-color: #f5f5f5;
    border-radius: var(--border-radius-large);
    padding: 5px;
    border: 1px solid #ccc;
}

.form-buscar .input-group .input-search{
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 20px;
  background: none;
}

.form-buscar .input-group  button[type="submit"]{
  max-width: 44px;
  border-radius: 50% !important;
  padding-left: 15px;
}

.form-buscar.scrolled {

  left: 0;
    position: fixed;
    right: 0;
    top: 77px;
    z-index: 100;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(212,212,212,1);
-moz-box-shadow: 0px 5px 5px 0px rgba(212,212,212,1);
box-shadow: 0px 5px 5px 0px rgba(212,212,212,1);
}

.block-opciones{
  margin-top: 20px;
    border-top: 1px solid #ccc;
    padding: 0px 12px;
}

.block-opciones .mas-opciones{
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 16px 12px;
}

.block-opciones .mas-opciones:hover{
  color:#3026a5;
  background: rgb(94 87 172 / 8%);
}

.block-opciones .mas-opciones:hover .nombre-dominio h3{
  color:#3026a5;
  
}

.add-to-cart-btn.btn-success{
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--title-font-family);
}

.add-to-cart-btn.btn-success i{
  font-size: 20px;
  
}

.bg-video{
  height: 640px;
  background-image: url(../images/bg-img.jpg);
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  display: grid;
  margin: 0px 120px;
}



.bg-video .info-video{
  /*max-width: 550px;*/
  text-align: left; 
  margin-left: 60px;
}

.bg-video .info-video .btn i{
  color: #fff;
}

.bg-video h3{
    color: #fff;
    font-size: 32px;
    
}



.bg-video figure img{
  border-radius: 20px;
}


/**/

/* Modal */
.modal-video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content-video {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  width: 100%;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Botón de cerrar */
.close-btn {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  z-index: 1001;
}

/* Media Query para pantallas pequeñas */
@media (max-width: 600px) {
  .modal-content-video {
      width: 95%;
  }

  .close-btn {
      top: -10px;
      right: -10px;
      width: 30px;
      height: 30px;
      font-size: 18px;
  }
}

.accordion-button{
  font-weight: 600;
}

.accordion-button:not(.collapsed){
  color: #3026a5;
  background-color: rgb(94 87 172 / 8%);
}

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

.b-contacto{
  border-radius: 16px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  display: flex; /* Flexbox dentro del contenedor */
  flex-direction: column; /* Alinear contenido verticalmente */
  justify-content: space-between; /* Distribuir espacio entre los elementos */
  height: 100%; /* Asegurarse de que tome todo el alto de su contenedor */
  padding: 24px; /* Espaciado interno opcional */
  box-sizing: border-box; /* Incluir padding en el cálculo de height */
  margin-bottom: 20px;
  transition: 0.5s all;
}

.b-contacto a{
  width: fit-content;
}
.b-contacto:hover{
  background-color: rgb(94 87 172 / 8%);
  border: 1px solid #3026a5;
}

.b-contacto span i{
  font-size: 32px;
  transition: 0.5s all;
}

.b-contacto:hover span i{
  color: #12d469;
}

.accordion-faq .accordion-item{
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
}

.accordion-faq .accordion-item .accordion-button{
  background-color: transparent;
  box-shadow: none;
}

.accordion-faq .accordion-item .accordion-body{
  padding-top: 0px;
  padding-bottom: 0px;
}

.mySwiperMarcas .swiper-slide{
  background: none;
}

.pago-tarjeta-yape .btn{
 
}