@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
/** Diseño general de scroll **/

/* width */
::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #188cd0;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #186ad0;
    width: 1px !important;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #186ad0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

#home {
    min-height: 100vh;
}

#home header #logo {
    text-decoration: none;
    background: #188cd0;
    background: linear-gradient(to right, #188cd0 24%, #186ad0 69%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2em;
    font-weight: 900;
}

#home header ul {
    display: flex;
}

#home header ul li {
    list-style: none;
}

#home header ul li a {
    /* display: inline-block; */
    color: #fff;
    font-weight: 400;
    margin-left: 40px;
    text-decoration: none;
    position: relative;
}

#home header ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 120%;
    height: 2px;

    background-image: linear-gradient(
        90deg,
        rgb(255, 255, 255) 0%,
        rgb(255, 255, 255) 26%,
        rgb(166, 201, 245) 100%
    );
    transform: scaleX(0);
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
}

#home header ul li a:hover:after {
    color: #fff;
    transform: scaleX(1.2);
    -webkit-transform: scaleX(1.2);
    -moz-transform: scaleX(1.2);
    -ms-transform: scaleX(1.2);
    -o-transform: scaleX(1.2);
}
#home header ul li a:hover {
    color: #fff;
}
#main-header.scrolled ul li a:hover {
    color: #333;
}

#main-header {
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}

#main-header.scrolled {
    background-color: #ffffff;
    border-bottom: 2px solid #188cd0;
}

#main-header.scrolled ul li a {
    color: #333;
}

#main-header.scrolled ul li a:after {
    background: linear-gradient(to right, #188cd0 64%, #186ad0 89%);
}
#home .content {
    height: 100vh;
}
#home .textBox h1 {
    color: #333;
    font-size: 3em;
    line-height: 1.4em;
    font-weight: 500;
}

#home .textBox h1 span {
    background: #188cd0;
    background: linear-gradient(to right, #188cd0 24%, #186ad0 69%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2em;
    font-weight: 900;
}

#home .textBox p {
    color: #333;
}

#home .textBox a {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #188cd0;
    background: linear-gradient(to right, #188cd0 24%, #186ad0 69%);
    color: #fff;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
}

#home .social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#home .social li {
    list-style: none;
    font-size: 50px;
}

#home .social li a {
    display: inline-block;
    margin: 5px 0;
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

#home .social li a:hover {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

#home .instagram-icon {
    /* color: #e4405f; */
    color: #fff;
}

#home .facebook-icon {
    /* color: #1877f2; */
    color: #fff;
}

#home .twitter-icon {
    /* color: #1da1f2; */
    color: #fff;
}

#home .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #188cd0 64%, #186ad0 89%);
    clip-path: circle(65% at right 20%);
    z-index: -1;
}

@media (max-width: 768px) {
    #home .circle {
        background: linear-gradient(to right, #188cd0 7%, #186ad0 83%);
        clip-path: circle(58% at right 5%);
    }
}

/***** benefits */
#benefits .benefits-title {
    color: #333;
    font-size: 2.5em;
    line-height: 1.4em;
    font-weight: 500;
}

#benefits .custom-card:hover .bg-blue {
    color: #fff;
}

#benefits .custom-card {
    border-top: 7px solid #188cd0;
}

#benefits .custom-card:hover {
    background: linear-gradient(to right, #188cd0 24%, #186ad0 69%);
}
#benefits .textBox h1 {
    color: #333;
    font-size: 3em;
    line-height: 1.4em;
    font-weight: 500;
}

#benefits .custom-card h2 {
    color: #333;
    font-size: 1em;
    line-height: 1.4em;
    font-weight: 600;
}

#benefits .custom-card:hover h2 {
    color: #fff;
}

#benefits .custom-card span {
    color: #333;
    font-size: 0.8em;
    line-height: 1.4em;
    font-weight: 400;
}

#benefits .custom-card:hover span,
#price .custom-card:hover li {
    color: #fff;
}

#benefits .custom-card a {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #188cd0;
    background: linear-gradient(to right, #188cd0 24%, #186ad0 69%);
    color: #fff;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
}
#benefits .custom-card:hover a {
    background: linear-gradient(to right, #a9d1e8 24%, #6c9edb 69%);
    color: #fff;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    padding: 100px;
}
.swiper-slide {
    text-align: center;
    font-size: 0.8em;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*** price **/

#price .price-title {
    color: #333;
    font-size: 2.5em;
    line-height: 1.4em;
    font-weight: 500;
}

#price .price-description {
    color: #333;
    font-size: 1.5em;
    line-height: 1.4em;
    font-weight: 500;
}

#price li {
    list-style: none;
}

#price .bg-blue {
    color: rgb(24, 140, 208);
}
#price .custom-card:hover .bg-blue {
    color: #fff;
}

#price .custom-card {
    border-top: 7px solid #188cd0;
    border-bottom: 2px solid #188cd0;
}

#price .custom-card:hover {
    background: linear-gradient(to right, #188cd0 24%, #186ad0 69%);
}

#price .custom-card h2 {
    color: #333;
    font-size: 1.5em;
    line-height: 1.4em;
    font-weight: 500;
}

#price .custom-card:hover h2 {
    color: #fff;
}

#price .custom-card h3 {
    color: rgb(24, 140, 208);
    font-size: 1.5em;
    line-height: 1.4em;
    font-weight: 500;
}

#price .custom-card:hover h3,
#price .custom-card:hover li {
    color: #fff;
}

#price .custom-card a {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #188cd0;
    background: linear-gradient(to right, #188cd0 24%, #186ad0 69%);
    color: #fff;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
}
#price .custom-card:hover a {
    background: linear-gradient(to right, #a9d1e8 24%, #6c9edb 69%);
    color: #fff;
}

#footer {
    background: linear-gradient(to right, #188cd0 14%, #186ad0 49%);
    color: #fff;
}

#footer ul {
    padding: 0;
    margin: 0;
}

#footer ul li {
    list-style: none;
}

#footer ul li a {
    text-decoration: none;
    font-size: 12px;
}

#main-header #menu li .menu-toggle {
    display: none;
}

.displayNone {
    display: none;
}

.displayBlock {
    display: inline-block;
}

@media (max-width: 768px) {
    #main-header #menu li .menu-toggle {
        display: block;
        font-size: 22px;
        text-align: end;
    }

    #main-header ul li .menu-toggle:after,
    #main-header.scrolled ul li .menu-toggle:after {
        background-image: linear-gradient(
            90deg,
            rgb(255, 255, 255) 0%,
            rgb(255, 255, 255) 26%,
            rgb(166, 201, 245) 100%
        );
    }

    #menu.open {
        display: block;
        line-height: 50px;
        padding: 0;
    }
    #menu.open .link {
        display: block;
        text-align: center;
    }
    #menu.open .link a {
        color: #333;
    }

    #menu .link {
        display: none;
    }

    #home header #logo {
        background: #fff;
        background: linear-gradient(to right, #c9c7c7 24%, #a8a8a8 69%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    #home header #logo-responsive {
        text-decoration: none;
        background: #188cd0;
        background: linear-gradient(to right, #188cd0 24%, #186ad0 69%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 1.2em;
        font-weight: 900;
    }

    #home .content {
        height: 100%;
    }

    .swiper-wrapper {
        padding: 30px;
    }

    #benefits .custom-card {
        height: 450px;
    }

    #benefits .custom-card h2 {
        font-size: 1.1em;
    }

    #benefits .custom-card span {
        font-size: 1em;
        font-weight: 500;
    }

    #price .custom-card h3 {
        font-size: 1em;
    }

}
