:root {
    --main-blue: #35C0ED;
    --main-blue-dark: #08376B;
    --secondary: #f0f0f0;
    --blue-dark: #08376B;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #F6F8FB;
    overflow-x: hidden;
}

p {
    color: #5d5d5d;
    line-height: 1.5;
}

ul {
    padding: 0;
    list-style: none;
}

h6 {
    margin-bottom: 0;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.btn-cta {
    color: #fff;
    padding: 15px;
    background: var(--main-blue);
    border-radius: 10px;
    width: 50%;
    margin-left: 25%;
    box-shadow: 5px 10px 40px -10px var(--main-blue);

    margin-bottom: 40px;
    justify-content: center;
    transition: background-color ease-in .2s;
}

.btn-cta:hover {
    color: #fff;
    background: var(--main-blue-dark);
}

.h1, h1 {
    font-size: 3.5rem;
    color: #5d5d5d;
}


.icone2 {
    display: block;
    position: absolute;
    right: 229px;
    top: 369px;
}

.icone {
    position: absolute;
    right: 229px;
    top: 369px;
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.text-blue {
    color: var(--main-blue);
}

.mt-10 {
    padding-top: 10vh;
}

/* NAVIGATION */
.navbar-dark .navbar-nav .nav-link {
    color: var(--main-blue-dark);
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: var(--main-blue);
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline-block;
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
    transition: all .5s;
}

nav ul li a:hover {
    color: #555;
}

/* stroke */
nav.stroke ul li a,
nav.fill ul li a {
    position: relative;
}

nav.stroke ul li a:after,
nav.fill ul li a:after {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: var(--main-blue);
    height: 3px;
}

nav.stroke ul li a:hover:after {
    width: 80%;
}

nav.fill ul li a {
    transition: all 2s;
}

nav.fill ul li a:after {
    text-align: left;
    content: '.';
    margin: 0;
    opacity: 0;
}

nav.fill ul li a:hover {
    color: red;
    z-index: 1;
}

nav.fill ul li a:hover:after {
    z-index: -10;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
    opacity: 1;
}

.btn-invite {
    border: 2px var(--main-blue) solid;
    border-radius: 6px;
}

.btn-invite:hover {
    background-color: var(--secondary);
    /* background-image: linear-gradient(to right, var(--main-blue) ,#0fb5ff)); */
    border: 2px var(--main-blue) solid;
}

.btn-invite a {
    color: var(--main-blue);
}

/* menu */
.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, 0);
    outline: none;
}

.icon {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 47px;
    height: 34px;
    border: none;
    cursor: pointer;
}

.hamburguer {
    margin-bottom: 5px;
    width: 30px;
    height: 2px;
    background: var(--main-blue);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
}

.hamburguer:before, .hamburguer:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--main-blue);
    box-shadow: 0 2px 5px (0, 0, 0, 0.2);
    transition: .5s;
    left: 0;
}

.hamburguer:before {
    top: -8px;
}

.hamburguer:after {
    top: 8px;
}

.icon.active .hamburguer {
    background: rgba(0, 0, 0, 0);
}

.icon.active .hamburguer:before {
    top: 0;
    transform: rotate(45deg);
}

.icon.active .hamburguer:after {
    top: 0;
    transform: rotate(135deg);
}

header {
    background-color: #fff;
    color: #0080ff !important;
    -webkit-box-shadow: 0px 8px 9px -9px rgba(219, 219, 219, 1);
    -moz-box-shadow: 0px 8px 9px -9px rgba(219, 219, 219, 1);
    box-shadow: 0px 8px 9px -9px rgba(219, 219, 219, 1);
}

/* section-1 */
.align-vertical {
    padding: 5vh 0 5vh 0;
}

.headerwrap {
    background: url(../img/likn.png) no-repeat;
    background-repeat: no-repeat;
    background-position-y: 6rem;
    background-position-x: 12em;
}



/* section-2  */
#section-2 {
    padding: 4vh 0 10vh 0;
    background-color: #fff;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--main-blue);
    border-color: var(--main-blue);
}

.nav-tabs .nav-link {
    border: solid transparent;
    border-width: 0 0 2px;
    border-radius: 0;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 500;
    font-size: 12px;
    color: rgba(0, 0, 0, .6);
    /* padding: 17px 29px 16px; */
}

.call {
    padding: 10px;
    background: var(--main-blue);
    border-radius: 10px;
    width: 50%;
    margin-left: 25%;
    box-shadow: 5px 10px 40px -10px var(--main-blue);
    border: solid 2px var(--main-blue);
    margin-bottom: 40px;
    justify-content: center;
}

.call h5 {
    margin-bottom: 0;
}

/* section-3 */
#section-3 {
    padding: 10vh 0 10vh 0;
}

.card-ipd {
    min-height: 250px;
    height: auto;
}

.card-ipd img {
    margin-top: -40px;
}

/* Section-4 */
#section-4 {
    padding: 10vh 0 10vh 0;
    background-color: #fff;
}

/*Section-5 */
#section-5 {
    padding: 10vh 0 10vh 0;
    background-image: linear-gradient(to right, var(--main-blue), #0fb5ff);
}

.box {
    background-color: var(--main-blue-dark);
    width: 80%;
    padding: 20px;
    border-radius: 10px;
    margin-left: 10%;
}

/* .swiper-pagination{
    display: none;
} */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 5px;
    background: #fff;
    opacity: .2;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

.btn-light {
    padding: 5px 50px 5px 50px !important;
}

element.style {
    width: 18rem;
}

.rounded {
    border-radius: .25rem !important;
}

.card {
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: .25rem;
}

.btn-pagination {
    background-color: transparent;
    padding: 20px;
    border-radius: 7px;
}

.swiper-container {
    padding-bottom: 50px !important;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    bottom: 0;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.badge-info {
    color: #fff;
    background-color: var(--main-blue);
}

.depoimentos {
    -webkit-box-shadow: 5px 10px 40px -10px var(--blue-dark);
    box-shadow: 5px 10px 40px -10px var(--blue-dark);
    border: solid 2px var(--blue-dark);
}


/* section-7 */
#section-7 {
    padding: 10vh 0 10vh 0;
}

footer {
    background-color: var(--main-blue-dark);
    padding: 50px 10px 10px 10px;
}

footer p {
    color: #f8f9fa;
}

footer a {
    color: #f8f9fa;
}

footer .nav-link {
    display: block;
    padding: 0rem 0rem;
}

.box-logo {
    background-color: aliceblue;
    padding: 11px;
    border-radius: 10px;
}

.whats {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0.9;
    padding: 13px;
    background-color: #25d366;
    border-radius: 50px;
    font-size: 10px;
}

/* mobile */
@media only screen and (max-width: 800px) {
    .btn-invite {
        width: 100%;
    }

    .icone2 {
        display: none;
        position: absolute;
        right: 24px;
        top: 90px;
    }

    .mob-mt {
        margin-top: 50px;
    }

    .card-ipd {
        height: auto;
    }

    .swiper-pagination {
        display: block;
    }

    .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
        right: 10px;
        left: auto;
    }

    .reverse {
        flex-direction: column-reverse !important;
    }

    .call {
        padding: 10px;
        background: var(--main-blue);
        border-radius: 10px;
        width: 90%;
        margin-left: 5%;
    }
}

/* animation */
.animation:hover {
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
}

@-webkit-keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}