/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: 'Open Sans', sans-serif;
    color: #444444;
}

a {
    text-decoration: none;
    color: #3366cc;
}

a:hover {
    color: #2b99f8;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/

section {
    padding: 0px 0;
    overflow: hidden;
    background-color: #fff;
    background-size: cover;
    background-attachment: fixed;
}

.sections-bg {
    background-color: #f6f6f6;
}

.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 230px;
    height: 3px;
    background: #99cc01;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-header p {
    margin-bottom: 0;
    color: #6f6f6f;
}

@media (max-width: 575px) {
    .section-header h2 {
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    border: 6px solid #99cc00;
    border-top-color: #f6f6f6;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: animate-preloader 1s linear infinite;
    -webkit-animation: animate-preloader 1s linear infinite;
}

#preloader .image {
    width: 100px;
    height: 90px;
    position: relative;
    top: calc(50% - 45px);
    left: calc(50% - 49px);
    animation: latidos 1s infinite;
    -webkit-animation: latidos 1s infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes latidos {
    from {
        transform: none;
    }

    50% {
        transform: scale(.8);
        opacity: .5;
        -webkit-transform: scale(.8);
        -moz-transform: scale(.8);
        -ms-transform: scale(.8);
        -o-transform: scale(.8);
    }

    to {
        transform: none;
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1977cc;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #298ce5;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  position: fixed;
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    height: 45px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
    overflow: hidden;
    background: #3366cc;
    color: #fff;
    z-index: 996;
}

#topbar .contact-info a {
    line-height: 1;
    color: #fff;
    transition: 0.3s;
    font-size: 14px;
    margin-right: 8px;
}

#topbar .contact-info a:hover {
     text-decoration: none;
     font-size: 18px;
     transition: 0.3s;
     -webkit-transition: 0.3s;
     -moz-transition: 0.3s;
     -ms-transition: 0.3s;
     -o-transition: 0.3s;
}

#topbar .contact-info i {
    color: #fff;
    line-height: 0;
    font-style: normal;
}


#topbar .contact-info .phone-icon {
    margin-left: 15px;
}

#topbar .cta {
    background: transparent;
}

#topbar .cta a {
    color: #fff;
    background: #99cc01;
    padding: 6px 24px 8px 24px;
    display: inline-block;
    transition: 0.3s;
    border-radius: 50px;
}

#topbar .cta a:hover {
    background: #fff;
    color: #3366cc;
}

#topbar.topbar-scrolled {
    top: -60px;
}

@media (max-width:992px) {
    #topbar {
        font-size: 12px;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #99cc00;
    transition: all 0.5s;
    font-weight: 700;
    z-index: 997;
    height: 70px;
    top: 44px;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    width: 85%;
    max-height: 100px;
}

#header.header-scrolled {
    background: rgba(51, 102, 204, 0.9);
    top: 0;
}

.header-inner-pages {
    background: rgba(51, 102, 204, 0.9) !important;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.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.7);
    transition: 0.3s;
    border-radius: 8px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #032e54;

    .navbar .dropdown ul a i {
        font-size: 12px;
    }
}

.navbar .dropdowm .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #99cc01;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #302f2f;
    ;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #0880e8;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #f6b024;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(5, 74, 133, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile a,
a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #0665b7;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.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 .getstarted,
.getstarted:focus {
    margin: 15px;
}


.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile.active,
.navbar-mobile li:hover>a {
    color: #f6b024;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #f6b024;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*-------------------------------------
                SWIPER
---------------------------------------*/

#hero-slider {
    margin-top: 114px;
}

#hero-slider img {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center center;
}

#hero-slider .img-bg .img-bg-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    position: relative;
    padding-left: 100px;
    padding-right: 100px;
    margin-bottom: 50px;
}

#hero-slider .img-bg:before {
    position: absolute;
    content: "";
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.5;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    top: 0;
}

@media (max-width: 768px) {
    .img-bg {
        height: 400px;
    }

    .img-bg .img-bg-inner {
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 50px;
    }

    .img-bg .img-bg-inner h2,
    .img-bg .img-bg-inner p {
        color: var(--color-white);
    }
}

@media (max-width: 500px) {
    .img-bg .img-bg-inner p {
        display: none;
    }
}

.custom-swiper-button-next,
.custom-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.custom-swiper-button-next,
.custom-swiper-button-prev span {
    font-size: 20px;
    color: rgba(153, 204, 1, 0.7);
    transition: 0.3s all ease;
}

.custom-swiper-button-next,
.custom-swiper-button-prev:hover span,
.custom-swiper-button-next,
.custom-swiper-button-prev:focus span {
    color: rgba(var(--color-white-rgb), 1);
}

@media (max-width: 768px) {

    .custom-swiper-button-next,
    .custom-swiper-button-prev {
        display: none;
    }
}

.custom-swiper-button-next {
    right: 40px;
}

.custom-swiper-button-prev {
    left: 40px;
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.7);
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgba(153, 204, 1, 1);
}


/*--------------------------------------------------------------
# planes Section
--------------------------------------------------------------*/

.planes .container {
    margin: 0px;
    padding: 0px;
}

.planes .plan-wrap {
    padding-left: 2px;
}

.planes .plan-wrap .plan-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;
}

.planes .plan-wrap .plan-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid rgba(51, 102, 204, 0.2);
    border-left: 3px solid rgba(51, 102, 204, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.planes .plan-wrap .plan-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid rgba(51, 102, 204, 0.2);
    border-right: 3px solid rgba(51, 102, 204, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.planes .plan-wrap .plan-info p {
    color: #3366cc;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    padding: 0 30px;
    margin: 1px 0px 50px 0px;
}

.planes .plan-wrap .plan-info .plan-links {
    text-align: center;
    z-index: 4;
}

.planes .plan-wrap .plan-info .plan-links a {
    color: #fff;
    background: #4154f1;
    margin: 10px 2px;
    width: 150px;
    height: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.planes .plan-wrap .plan-info .plan-links a i {
    font-size: 24px;
    line-height: 0;
}

.planes .plan-wrap .plan-info .plan-links a:hover {
    background: #5969f3;
}

.planes .plan-wrap .plan-info h4 {
    color: #3366cc;
    padding-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
}

.planes .plan-wrap:hover img {
    opacity: 0.1;
}

.planes .plan-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.planes .plan-wrap:hover .plan-info {
    opacity: 1;
}

.planes .plan-wrap:hover .plan-info::before {
    top: 15px;
    left: 15px;
}

.planes .plan-wrap:hover .plan-info::after {
    bottom: 15px;
    right: 15px;
}

.planes .plan-item {
    box-sizing: content-box;
    position: relative;
    background: #fff;
    padding: 0px;
    margin: 0px 0px;
}

.planes .plan-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.planes .plan-item .plan-img {
    width: 100%;
}

.planes .plan-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #000;
}

.planes .plan-item .stars {
    margin: 10px 0;
}

.planes .plan-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.planes .swiper-pagination {
    margin-top: -24px;
    position: relative;
}

.planes .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.planes .swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgba(51, 102, 204, 0.8);
}

.planes ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: left;
    line-height: 20px;
    font-size: 20px;
}

.planes ul li {
    padding-bottom: 16px;
}

.planes ul i {
    color: #0880e8;
    font-size: 18px;
    padding-right: 4px;
}

@media only screen and (max-width:768px) and (min-width:320px) {
    .planes .plan-wrap {
        padding-left: 0;
    }

    .planes .plan-item {
        padding: 2px;
        margin: 2px;
    }

    .planes .plan-item .plan-img {
        position: static;
        left: auto;
    }
}


/*-------------------------------------------------------------
#VENTAS
--------------------------------------------------------------*/

.ventas {
    background-color: #3366cc;
    padding: 40px 0px;
}

.ventas .section-header {
    color: #fff !important;
}

.ventas .ventas-list {
    padding: 0;
    list-style: none;
}

.ventas .ventas-list li {
    padding: 20px 20px 0px 20px;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.ventas .ventas-list h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 15px 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #05579e;
    background: #f8f8f8;
}

.ventas .ventas-list h4 {
    font-size: 22px;
    color: #79a003;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.ventas .ventas-list h4 sup {
    font-size: 14px;
    top: -15px;
    left: -3px;
}

.ventas .ventas-list h4 span {
    font-size: 16px;
}

.ventas .ventas-list .item {
    display: block;
    position: relative;
    font-family: #106eea;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    color: #0d58ba;
    transition: 0.3s;
}

.ventas .ventas-list .item .advanced {
    width: 200px;
    position: absolute;
    top: 17px;
    right: -89px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 12px;
    padding: 1px 0 1px 0;
    background: #99cc01;
    color: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.ventas .ventas-list .item .advanced-i {
    width: 200px;
    position: absolute;
    top: 17px;
    right: -89px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 12px;
    padding: 1px 0 1px 0;
    background: #ed9702;
    color: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.ventas .ventas-list .item .advanced-h {
    width: 200px;
    position: absolute;
    top: 17px;
    right: -89px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 12px;
    padding: 1px 0 1px 0;
    background: #3366cc;
    color: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.ventas .ventas-list .body-collapse ul {
    padding: 0;
    color: #444444;
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 5px;
}

.ventas .ventas-list .body-collapse ul li {
    text-align: left;
    list-style: none;

}

.ventas .ventas-list .body-collapse ul li span {
    color: #0880e8;
    font-size: 18px;
    padding-right: 4px;
}

.ventas .ventas-list .body-collapse .btn-wrap {
    padding: 8px 15px;
    background: #f8f8f8;
    text-align: center;
    font-size: 12px;
}

.ventas .ventas-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
}

.ventas .container .cta-btn {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    border-radius: 50px;
    border: 2px solid #99cc01;
    background: #99cc01;
    color: #fff;
}

.ventas .container .cta-btn:hover {
    background: none;
}


/*--------------------------------------------------------------
# COBERTURAS
--------------------------------------------------------------*/

#coberturas {
    padding: 40px 0px;
}

.coberturas h2 {
    color: #3366cc;
}

.coberturas h3{
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #99cc00;
    text-transform: uppercase;
    margin-top: 10px;
}

.coberturas .border-list{
    border-right: 2px solid #ebf1f6;
}

.coberturas .accordion-collapse {
    border: 0;
}

.coberturas .accordion-button {
    padding: 15px 15px 15px 15;
    font-weight: 600;
    border: 0;
    font-size: 20px;
    color: #444444;
    text-align: left;
}

.coberturas .accordion-button:focus {
    box-shadow: none;
}

.coberturas .accordion-button:not(.collapsed) {
    background: none;
    color: #3366cc;
    border-bottom: 0;
}

.coberturas .accordion-body {
    padding: 0 0 25px 0;
    border: 0;
}

.coberturas .zonas-box {
    padding: 2px 2px;
    transition: 0.3s;
    height: 100%;
}

.coberturas .zonas-box i {
    line-height: 0;
    padding: 2px;
    margin-right: 5px;
    font-size: 22px;
    border-radius: 3px;
    transition: 0.3s;
    color: #99cc01;
}

.coberturas .zonas-box h3 {
    font-size: 13px;
    color: #3366cc;
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.coberturas .zonas-box:hover i {
    background: #3366cc;
    color: #fff;
}

.coberturas .zonas-icons {
    margin-top: 120px;
}

.coberturas .zonas-icons h3 {
    color: #3366cc;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.coberturas .zonas-icons .content .icon-box {
    display: flex;
}

.coberturas .zonas-icons .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #3366cc;
}

.coberturas .zonas-icons .content .icon-box i {
    font-size: 44px;
    line-height: 44px;
    color: #0245bc;
    margin-right: 15px;
}

.coberturas .zonas-icons .content .icon-box p {
    font-size: 15px;
    color: #848484;
}

@media (max-width: 768px) {
    .coberturas .zonas-icons h3 {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
#faq {
    background: url('../img/faq/faq.jpg');
    background-size: cover;
    margin-top: 40px;
}

.faq .section-header {
    text-transform: uppercase;
    color: #3366cc;
    padding: 2px;
}


.faq .row{
    margin: 60px 10px 60px 0px ;
}
    
.faq .faq-item img{
    width: 80%;
    cursor: pointer;;
}
.faq .faq-item img:hover{
    filter: grayscale(80%);
}

.faq .faq-item .popover-body{
    background-color: red !important;
}


@media (min-width:320px) and (max-width: 992px) {
    
    .faq .row{
        margin: 0px;
    }
    
    .faq .faq-item img{
        width: 30%;
    }
    .faq .faq-item img:hover{
        filter: grayscale(80%);
    }
}




/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/

.about {
    overflow: hidden;
    padding: 130px 0px 150px 0px;
    background: url('../img/m3.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.about .section-header h2 {
    color: #3366cc !important;
}

.about .nav-tabs {
    border: 0;
}

.about .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: #2c4964;
    border-radius: 0;
    border-right: 2px solid #ebf1f6;
    font-weight: 600;
    font-size: 15px;
}

.about .nav-link:hover {
    color: #1977cc;
}

.about .nav-link.active {
    color: #99cc01;
    border-color: #99cc01;
    background: none;
}

.about .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.about .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c4964;
}

.about .details p {
    color: #000;
    font-weight: 500;
    line-height: 3;
}

.about .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .about .nav-link {
        border: 0;
        padding: 15px;
    }

    .about .nav-link.active {
        color: #fff;
        background: #1977cc;
    }
}


/*--------------------------------------------------------------
# datacenter Section
--------------------------------------------------------------*/

.datacenter .container {
    margin: 0px;
}

.datacenter .data-item {
    box-sizing: content-box;
    position: relative;
    background: #fff;
}

.datacenter .data-item .data-img {
    width: 100%;
}

.datacenter .data-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #000;
}

.datacenter .data-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.datacenter .data-item .stars {
    margin: 10px 0;
}

.datacenter .data-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.datacenter .data-item .quote-icon-left,
.quote-icon-right {
    color: #009d8b;
    font-size: 26px;
    line-height: 0;
}

.datacenter .data-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.datacenter .data-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(1, -1);
}

.datacenter .data-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.datacenter .swiper-pagination {
    margin-top: -45px;
    position: relative;
}

.datacenter .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.datacenter .swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgba(153, 204, 1, 0.8);
}

.datacenter .data-wrap .data-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;
}

.datacenter .data-wrap .data-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid rgba(51, 102, 204, 0.2);
    border-left: 3px solid rgba(51, 102, 204, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.datacenter .data-wrap .data-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid rgba(51, 102, 204, 0.2);
    border-right: 3px solid rgba(51, 102, 204, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.datacenter .data-wrap .data-info h4 {
    font-size: 18px;
    color: #3366cc;
    font-weight: 700;
}

.datacenter .data-wrap .data-info p {
    color: #3366cc;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    padding: 32px;
    margin: 0;
}

.datacenter .data-wrap .data-links {
    text-align: center;
    z-index: 4;
}

.datacenter .data-wrap .data-links a {
    color: #fff;
    background: #218838;
    margin: 10px 2px;
    width: 130px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: 0.3s;
}

.datacenter .data-wrap .data-links a:hover {
    background: #5969f3;
}

.datacenter .data-wrap .data-links i {
    font-size: 24px;
    line-height: 0;
}

.datacenter .data-wrap:hover img {
    opacity: 0.1;
}

.datacenter .data-wrap:hover img .data-info::before {
    top: 15px;
    left: 15px;
}

.datacenter .data-wrap:hover img .data-info::after {
    bottom: 15px;
    right: 15px;
}

.datacenter .data-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.datacenter .data-wrap:hover .data-info {
    opacity: 1;
}

.datacenter ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: left;
    line-height: 20px;
    font-size: 20px;
}

.datacenter ul li {
    padding: 0px 32px 16px 32px;
    color: #3366cc;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}

.datacenter ul i {
    color: #0880e8;
    font-size: 18px;
    padding-right: 4px;
}

@media only screen and (max-width:1024px) and (min-width:768px) {
    .datacenter .data-wrap .data-info h4 {
        font-size: 14px;
        font-weight: 500;
    }

    .datacenter .data-wrap .data-info p {
        font-size: 14px;
        font-weight: 400;
        padding: 15px 32px;
    }

    .datacenter .data-wrap .data-links a {
        width: 140px;
        height: 60px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .datacenter .data-item {
        padding: 2px;
        margin: 2px;
    }
}

@media only screen and (max-width:425px) and (min-width:320px) {
    #datacenter {
        padding-bottom: 10px;
    }

    .datacenter .data-wrap {
        padding-left: 0;
    }

    .datacenter .data-wrap .data-info {
        font-weight: 700;
    }

    .datacenter .data-wrap .data-info h4 {
        font-size: 11px;
    }



    .datacenter .data-wrap .data-info p {
        font-size: 10px;
        font-weight: 700;
        padding: 15px 32px;
    }

    .datacenter .data-wrap .data-links a {
        width: 84px;
        height: 23px;
        font-size: 12px
    }

    .datacenter .data-item {
        padding: 2px;
        margin: 2px;
    }

    .datacenter .data-item .data-img {
        position: static;
        left: auto;
    }
}


/*--------------------------------------------------------------
# planes-completos
--------------------------------------------------------------*/

.planes-completos {
    overflow: hidden;
    margin-top: 200px;
    margin-bottom: 70px;
}

.planes-completos h2 {
    color: #3366cc;
    margin-bottom: 60px;
}

.planes-completos .nav-tabs {
  border: 0;
}

.planes-completos .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #2c4964;
  border-radius: 0;
  border-right: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 15px;
}

.planes-completos .nav-link:hover {
  color: #1977cc;
}

.planes-completos .nav-link.active {
  color: #1977cc;
  border-color: #99cc00;
}

.planes-completos .nav-link.active span{
    margin: 0;
}

.planes-completos .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.planes-completos .tab-title h3 {
    font-weight: 700;
    font-size: 18px;
    color: #05579e;
    background: none;
    text-align: center;
}

.planes-completos .planes-completos-list {
    padding: 0;
    list-style: none;
}

.planes-completos .planes-completos-list li {
    padding: 20px 20px 0px 20px;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(127, 137, 161, 0.7);
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.planes-completos .planes-completos-list h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 10px 70px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: #05579e;
    background: #f8f8f8;
}

.planes-completos .planes-completos-list h4 {
    font-size: 20px;
    color: #79a003;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.planes-completos .planes-completos-list h4 sup {
    font-size: 14px;
    top: -15px;
    left: -3px;
}

.planes-completos .planes-completos-list h4 span {
    font-size: 16px;
}

.planes-completos .planes-completos-list h5 {
    font-size: 14px;
    color: #79a003;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.planes-completos .planes-completos-list .item {
    display: block;
    position: relative;
    font-family: #106eea;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    color: #0d58ba;
    transition: 0.3s;
}

.planes-completos .planes-completos-list .item .advanced {
    width: 200px;
    position: absolute;
    top: 15px;
    right: -89px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 12px;
    padding: 0px 0 0px 0;
    background: #99cc01;
    color: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.planes-completos .planes-completos-list .item .advanced-i {
    width: 200px;
    position: absolute;
    top: 17px;
    right: -89px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 12px;
    padding: 1px 0 1px 0;
    background: #ed9702;
    color: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.planes-completos .planes-completos-list .item .advanced-h {
    width: 200px;
    position: absolute;
    top: 17px;
    right: -89px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 12px;
    padding: 1px 0 1px 0;
    background: #3366cc;
    color: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.planes-completos .planes-completos-list .body-collapse ul {
    padding: 0;
    color: #444444;
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 5px;
}

.planes-completos .planes-completos-list .body-collapse ul li {
    text-align: left;
    list-style: none;
    box-shadow: none !important;
}

.planes-completos .planes-completos-list .body-collapse ul li span {
    color: #0880e8;
    font-size: 18px;
    padding-right: 4px;
}

.planes-completos .planes-completos-list .body-collapse .btn-wrap {
    padding: 8px 15px;
    text-align: center;
    font-size: 12px;
}

.planes-completos .planes-completos-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
}

.planes-completos .planes-completos-list .separador-tecnologia {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.planes-completos .planes-completos-list .separador-tecnologia:after {
    content: "";
    position: absolute;
    display: block;
    width: 500px;
    height: 2px;
    background: rgba(188, 188, 188, 0.7);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@media (max-width: 992px) {
  .planes-completos .nav-link {
    border: 0;
    padding: 15px;
  }

  .planes-completos .nav-link.active {
    color: #fff;
    background: #1977cc;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    font-size: 14px;
    background-color: #302f2f;
    padding: 30px 0;
    color: white;
}

.footer .footer-info .logo {
    line-height: 0;
    margin-bottom: 25px;
}

.footer .footer-info .logo img {
    width: 50%;
    max-height: 50%;
}

.footer .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    font-family: var(--font-primary);
}

.footer .footer-info .logo p {
    font-size: 14px;
    font-family: var(--font-primary);
}

.footer .social-links {
    margin-bottom: 30px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;


}

.footer .social-links a:hover {
    color: #fff;
    border-color: #fff;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    color: rgba(0, 131, 116, 0.8);
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: #fff;
}

.footer .footer-contact p {
    line-height: 26px;
    color: #fff
}

.footer .copyright {
    text-align: center;
}

.footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
}

.footer .credits a {
    color: #fff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: #000;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 80%;
}

.close {
    color: #aaa;
    float: right;
    text-align: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}