
@font-face {
    font-family: 'moolish';
    src: url('../fonts/Mulish-Medium.ttf');
  }
  /* font-family: 'moolish';   */

body {
    font-size: 14px;
    font-family: 'moolish';
}

a {
    text-decoration: none;
}
.countrycodes{
    display: inline-block;
    width: 30%;
}
.phone{
    display: inline-block;
    width: 68%;
}


.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.cp-logo {
    height: 28px;
    margin: 2px 2px 2px 10px;
}
   
   @-webkit-keyframes slideInDown {
    0% {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
      visibility: visible;
    }
    80% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
   }
      
   .slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
   }
   

@-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.322, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.322, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.322, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.322, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-duration: 0.85s;
    animation-duration: 0.85s;
    -webkit-animation-name: bounceIn !important;
    animation-name: bounceIn !important;
}

/* Effects */
@keyframes rocking{
    0%{transform:rotate(0deg)}
    25%{transform:rotate(0deg)}
    50%{transform:rotate(2deg)}
    75%{transform:rotate(-2deg)}
    100%{transform:rotate(0deg)}
    }
    
    @-webkit-keyframes Gradient {
        0% {background-position: 0 50%}
        50% {background-position: 100% 50%}
        100% {background-position: 0 50%}
    }
    @-moz-keyframes Gradient {
        0% {background-position: 0 50%}
        50% {background-position: 100% 50%}
        100% {background-position: 0 50%}
    }
    @keyframes Gradient {
        0% {background-position: 0 50%}
        50% {background-position: 100% 50%}
        100% {background-position: 0 50%}
    }
    
    .effetMoveGradient, .effetMoveGradient:hover {
        /* text-shadow: 0px 3px 6px var(--colorLight); */
        background-color: var(--bgMain);
        background: linear-gradient(-45deg, var(--bgSecondary), var(--bgMain), var(--bgSecondary), var(--bgMain));
        background-size: 400% 400%;
        -webkit-animation: Gradient 7s ease infinite, rocking 7s ease infinite; animation-delay: 2s;
        -moz-animation: Gradient 7s ease infinite, rocking 7s ease infinite; animation-delay: 2s;
        animation: Gradient 7s ease infinite, rocking 7s ease infinite; animation-delay: 2s;
        color: var(--colorBtn);
        border: none;
    }
    
    .effetGradient, .effetGradient:hover {
        /* text-shadow: 0px 3px 6px var(--colorLight); */
        background-color: var(--bgMain);
        background: linear-gradient(-45deg, var(--bgSecondary), var(--bgMain), var(--bgSecondary), var(--bgMain));
        background-size: 400% 400%;
        -webkit-animation: Gradient 6s ease infinite;
        -moz-animation: Gradient 6s ease infinite;
        animation: Gradient 6s ease infinite;
        color: var(--colorLight);
        border: 1px solid #4a4848;
        font-size: 16px;
    }

    .effectScale{
        -webkit-transition: all .6s ease;
           -moz-transition: all .6s ease;
            -ms-transition: all .6s ease;
             -o-transition: all .6s ease;
                transition: all .6s ease;
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
            -ms-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
    }
    .effectScale:hover{
        -webkit-transition: all .3s ease;
           -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
             -o-transition: all .3s ease;
                transition: all .3s ease;
        -webkit-transform: scale(1.08);
           -moz-transform: scale(1.08);
            -ms-transform: scale(1.08);
             -o-transform: scale(1.08);
                transform: scale(1.08);
    }

.bg-light {
    background: #fff !important;
}

.main-logo {
    max-height: 42px;
}

.navbar .nav-link {
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-size: 17px;
    color: #000 !important;
    line-height: 18px !important;
}

.navbar {
    padding: 0;
}

.form-label-sm {
    font-size: 14px;
    line-height: 16px;
}

.card-header h4 {
    font-size: 18px;
    color: var(--colorMain);
    font-weight: 600 !important;
    text-transform: uppercase;
    border: 1px solid var(--colorMain);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
}

#carouselBanner .carousel-item img {    
    height: calc(100vh - 140px);
}

#rightSidebar {    
    position: fixed;
        height: calc(100vh);
        overflow-x: hidden;
}

.pr-status {
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 12px;
    margin: 0;
    text-transform: uppercase;
    overflow: hidden;
}
.pr-head {
    background: var(--colorMain);
    color: var(--colorLight);
    padding: 2px 10px;
}

.pr-detail {
    background: #212529;
    color: var(--colorLight);
    padding: 2px 10px;
    position: relative;
    left: -5px;
}

.social-col1 {
    background-color: #000;
    text-align: center;
}
.social-col2 {
    background-color: #000;
    text-align: center;
}

#rightSidebar .call-link {
    color: var(--colorLight);
    padding: 15px 4px;
    display: block;
}

#rightSidebar .whatsapp-link {
    color: #fff;
    padding: 15px 4px;
    display: block;    
    border-left: 1px solid #fff
}


.card-disclaimer {
    font-size: 12px;
}

.fs-10 {
    font-size: 10px;
}

.table th, .table td {
    font-size: 15px !important;
    line-height: 22px;
    padding: 6px 5px;
}

.plan-img {
    height: 180px;
    filter: blur(5px);
}

.am-img {
    height: 220px;
}

.gal-img {
    height: 220px;
}

.prera-qr {
    height: 100px;
    margin: 5px auto;
}

.fix-callback {
    position: fixed;
    bottom: 0;
    background: #000000;
    width: 100%;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #b1a9a9;
    padding: 10px;
}

.fix-callback a {
    color: var(--colorLight);
}

.iti {
    display: block;
}

.pr-highlight strong {
    display: inline-block;
    width: 42%;
    font-size: 16px;
    font-weight: 600;
    padding-left: 5px;
}

.pr-highlight span {
    display: inline-block;
    width: 56%;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--colorMain);
}

.common-card .card-header {
    background: #fff;
}

.navbar-light .navbar-toggler {
    border-color: transparent;
}

.navbar-toggler:focus {
    text-decoration: none;
    box-shadow: none;
}

.location-img {
    width: 100%;
    height: 260px;
}

.location-iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: auto;
    bottom: 30px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}

main {
    position: relative;
}

.section-highlight {
    position: absolute;
    width: 300px;
    top: 30px;
    left: 20px;
    background: #fff;
    border-radius: 5px;
    padding: 5px 8px;
}

.section-highlight .launch {
    text-transform: uppercase;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--colorMain);
}

.section-highlight .head {
    font-size: 26px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 2px;
    font-weight: 600;
}

.section-highlight .head2 {
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    /* color: var(--colorMain); */
}

.section-highlight .subhead {
    text-align: center;
    font-size: 16px;
    margin-bottom: 5px;
}

.section-highlight .offers {
    font-size: 14px;
    padding: 6px 10px;
    text-shadow: unset !important;
    text-align: center; 
    margin-bottom: 6px;
}

.section-highlight .price {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4px;
    color: #fff;
    background: #000;
}

.pricefrom, .prera{
    font-size: 13px;
    margin-bottom: 2px;
    text-align: center;
}

.offers ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 19px;
    font-weight: 500;
    color: #fff;
}
.prd-box{
    background-color: #ddd;
    padding: 5px 8px 0;
    margin-bottom: 5px;
}

.prd-box ul{
    list-style-type: none;
    margin-bottom: 0;
}
.prd-box ul span {
    display: inline-block;
    width: 44%;
}
.offers ul li {
    padding-bottom: 3px;
}
.offers ul li::before {
    /* content: url('../img/icons/arrow-right-circle.svg');
    position: relative;
    top: 3px; */
}

.virtual-img {
    max-height: 180px;
    width: 100%;
}

.virtual-wrapper {
    position: relative;
}

.overlay-plan {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 100%;
    padding: 40px 10px;
}

.overlay-plan a{
    margin-top: 30%;
    opacity: 0;
}

.overlay-plan:hover{    
    background-color: rgb(88 88 88 / 45%);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.overlay-plan:hover a{
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.overlay-virtual {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgb(88 88 88 / 45%);
    text-align: center;
    height: 100%;
    padding: 40px 10px;
}

.overlay-virtual img {
    height: 40px;
    margin-top: 15px;
}

.virtual-head {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.virtual-desc {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.virtual-wrapper:hover {
    cursor: pointer;
    box-shadow: 1px 1px 2px 1px #525050;
}

li.nav-item {
    border-right: 1px solid #ddd;
}


.btn-primary {
    background-color: var(--bgPrimary) !important;
    }

    .btn-primary:focus, .btn-primary:hover {
        background-color: var(--bgPrimary) !important;
        opacity: .8;
    }
    
.download-fix {
    position: fixed;
    top: 42%;
    transform: rotate(90deg);
    font-size: 12px !important;
    right: -50px;
    padding: 4px 12px !important;
}

.agentreraBtn {
    font-size: 12px;
    padding: 0px 4px;
    margin-left: 6px;
}
