@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap');

body {
    font-family: 'Rubik', sans-serif !important;
}

:root {
    --primary: #007bff;
    --lightPrimary: #4da3ff;
    --primaryAction: #0d4989;
    --secondary: #fafafa;
    --light: #fff;
    --darkBlue: #041c3c;
    --dark: #182333;
    --dark2: #0e141d;
    --black: #000;
    --red: #fd474d;
    --s: 100px; /* size  */
    --m: 4px; /* margin */
    --f: calc(1.732 * var(--s) + 4 * var(--m) - 1px);
}

::selection {
    background: var(--primaryAction);
    color: #fff;
}

::-webkit-scrollbar-track {
    background-color: #F4F4F4;
}

::-webkit-scrollbar {
    width: 10px;
    background: #F4F4F4;
}

::-webkit-scrollbar-thumb {
    background: var(--primaryAction);
}

a {
    color: var(--light);
}

    a:hover {
        color: var(--primary);
    }

.small {
    color: var(--light) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

    .btn-primary:hover {
        background-color: var(--red);
        border-color: var(--red);
    }

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.bg-darkblue {
    background: #041c3c !important
}

.logobox {
    max-width: 180px;
}


/*** Button ***/

.scroll-down {
    opacity: 1;
    -webkit-transition: all .5s ease-in 3s;
    transition: all .5s ease-in 3s;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -16px;
    display: block;
    width: 32px;
    height: 32px;
    border: 2px solid #FFF;
    background-size: 14px auto;
    border-radius: 50%;
    z-index: 2;
    -webkit-animation: bounce 2s infinite 2s;
    animation: bounce 2s infinite 2s;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

    .scroll-down:before {
        position: absolute;
        top: calc(50% - 8px);
        left: calc(50% - 6px);
        transform: rotate(-45deg);
        display: block;
        width: 12px;
        height: 12px;
        content: "";
        border: 2px solid white;
        border-width: 0px 0 2px 2px;
    }

@keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.btn {
    font-weight: 500;
    transition: 0.5s;
}

    .btn.btn-primary,
    .btn.btn-outline-primary:hover {
        color: #ffffff;
    }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/

.navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
    margin-top: -0.1px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #eeeeee;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        z-index: 9999 !important;
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .countitemSMT {
        margin-bottom: 3em;
    }

    .countitemSMB {
        margin-bottom: 3em;
    }

    .infoitem {
        margin-bottom: 3em;
    }
}

@media (max-width:768px) {
    .infoitem {
        margin-top: 3em;
    }
}


.dropdown-item:focus, .dropdown-item::selection, .dropdown-item:active, .dropdown-item:hover {
    background: var(--primary);
}

.homeslider {
    display: none;
}

.bg-menu {
    background: rgba(0, 0, 0, 0.30);
}

@media (max-width:992px) {
    .bg-menu {
        background:var(--darkBlue)
    }
}


/* ########## VIDEO SECTION ########## */
header {
    margin-top:-90px;
    background: #000;
    position: relative;
    background-color: black;
    height: 60vh;
    min-height: 40rem;
    width: 100%;
    z-index: -1;
}

    header video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: 0;
        -ms-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    header .container {
        position: relative;
        z-index: 2;
    }


/* Media Query for devices withi coarse pointers and no hover functionality */

/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media (pointer: coarse) and (hover: none) {
    header {
        background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
        display: none;
    }

        header video {
            display: none;
        }

    .homeslider {
        display: block;
    }
}

/* ########## END VIDEO SECTION ########## */


.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 15px solid transparent;
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item + .breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

.footerfim-sm {
    display: none;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }

    .footerfim {
        display: none;
    }

    .footerfim-sm {
        display: block
    }

    .imgmainphrase {
        margin-top: 20px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

    .page-header .breadcrumb-item + .breadcrumb-item::before {
        color: #999999;
    }

.infoicon {
    font-size: 2.4em;
    margin-bottom: 0.5em;
    color: var(--red);
}

.info-title {
    font-family: 'Rubik', sans-serif;
}

.divider {
    border-top: 6px solid var(--primary);
    width: 120px;
    margin: 1em auto;
    margin-bottom: 2em;
}


/*

.homeslider {
  border-bottom: 20px solid #007bff;
}

.infos{
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url('~/Assets/img/white-tech.jpg');
}*/

.infoitem > img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
    margin-bottom: 20px;
    margin-top: 5px;
}

.infoitem {
    font-size: 0.9em;
}

.maincall {
    background: rgb(7, 7, 77);
    background: linear-gradient( 90deg, rgba(7, 7, 77, 1) 1%, rgba(0, 84, 173, 1) 100%);
}

.maincall-num,
.maincall-desc,
.maincall-num-sm {
    color: var(--light);
}

.maincall-num {
    font-family: 'Rubik', sans-serif;
    font-size: 3.2em;
    font-weight: 700;
}

.maincall-num-sm {
    font-family: 'Rubik', sans-serif;
    font-size: 3em;
    font-weight: 700;
}

.maincall-desc {
    font-size: 1.2em;
}

.countitem i {
    font-size: 2.2em;
    color: var(--red);
    padding-right: 10px;
}

.boldlow {
    font-weight: 700;
}

.homeslider h1,
h2,
h3,
h3 {
    font-family: 'Rubik', sans-serif;
}

.infoitem h5 {
    font-family: 'Rubik', sans-serif;
}

.mainphrase {
    background:var(--dark)
}

@media (max-width: 1400px) {
    .mainphrase {
    }
}


.mainphrase .mainphrase-title,
.mainphrase-text {
    color: var(--light);
}

.servicescard {
    padding: 30px;
    box-shadow: 0px 0 5px rgb(1 41 112 / 8%);
    -webkit-box-shadow: 8px 6px 17px 3px rgba(0, 0, 0, 0.35);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    background-color: var(--light);
    border-radius: 15px;
}

    .servicescard:hover {
        cursor: pointer;
        padding: 30px;
        box-shadow: 0px 0 5px rgb(1 41 112 / 14%);
        -webkit-box-shadow: 8px 6px 17px 3px rgba(0, 0, 0, 0.55);
        background-color: var(--red);
        color: #fff !important;
    }

        .servicescard:hover .infoicon {
            color: #fff;
        }

        .servicescard:hover h4 {
            color: #fff;
        }

.clients .clients-slider .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
}

    .clients .clients-slider .swiper-slide img:hover {
        opacity: 1;
    }

.clients .clients-slider .swiper-pagination {
    margin-top: 100px;
    position: relative;
}

    .clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid #4154f1;
    }

    .clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #4154f1;
    }

.mainphrase-title {
    font-family: 'Rubik', sans-serif;
}

.valoresimg img {
    float: right;
    max-width: 80%;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.valorestext h1 {
    font-size: 2.7em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 900;
}

.chamada {
    /*background-color: var(--darkBlue);*/
    background-image: url(../img/chamada-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.chamadatext .titlelastcall {
    color: var(--light);
    font-family: "proxima-nova", sans-serif;
}

.fw-900 {
    font-weight: 900;
}

.fw-500 {
    font-weight: 500;
}

footer {
    background-color: var(--dark);
}

.footerfim {
    background-color: var(--dark2);
}

.footerfim-sm {
    background-color: #111;
}

.list-unstyled li i {
    color: var(--light);
}

@media (max-width: 1218px) {
    .navbar .navbar-nav .nav-link {
        font-size: 14px;
    }

    .logobox {
        max-width: 110px;
    }
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    background: none !important;
    color: #fff !important;
    border-bottom: 5px solid var(--lightPrimary);
}

/* COOKIES */

.subcontainer {
    width: 85%;
    margin: auto;
}

#cookies {
    width: 500px;
    position: fixed;
    right: 0;
    bottom: 0;
    color: var(--dark);
    background: #fff;
    z-index: 999;
    display: none;
    margin-right: 30px;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 20px 10px 20px 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.cookies {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .cookies a {
        color: var(--lightPrimary);
        font-weight: 500;
        text-decoration: none;
    }

    .cookies .titleCookies {
        color: #000;
    }


#cookies-btn {
    background: #000;
    border-radius: 5px;
    padding: 8px 12px 8px 12px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    color: var(--light);
}

    #cookies-btn:hover {
        background: #555;
        border-radius: 5px;
        padding: 8px 12px 8px 12px;
        font-size: 1rem;
        cursor: pointer;
        border: none;
        color: var(--light);
    }

@media (max-width: 992px) {
    .subcontainer {
        width: 100%;
        margin: auto;
    }

    #cookies {
        width: 100%;
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        color: var(--dark);
        background: #fff;
        z-index: 999;
        display: none;
        margin-right: 0;
        margin-bottom: 0;
        border-radius: 0;
        padding: 20px 10px 20px 10px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .cookies {
        min-height: 70px;
        display: flex;
        justify-content: space-between;
        align-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* FIM COOKIES */


/* RESPONSIVE VIDEO */

.smallVideo {
    display: none;
}

@media (max-width:800px) {
    /*
    header {
        display: none;
    }

    .homeslider {
        display: block;
    }

    */

    header {
        position: relative;
        background-color: black;
        height: 50vh;
        min-height: 25rem;
        width: 100%;
    }

    .smallVideo {
        display: block;
    }

    .bigVideo {
        display: none;
    }
}

/* END RESPONSIVE VIDEO */


.aws {
    background: url(../img/awsbgazul.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat-x;
}

@media (max-width: 800px) {
    .aws {
        background-image: none;
        background-color: #00264d;
    }
}

.imglogoaws {
    max-width: 500px;
}

.aws-title {
    color: var(--light);
    font-family: 'Rubik', sans-serif;
    font-size: 1.3em;
}

.btn-aws {
    min-width: 250px;
}

    .btn-aws:hover {
        background-color: #FDA12B;
        border-color: #FDA12B;
    }

@media (max-width:640px) {
    .imglogoaws {
        max-width: 330px;
    }
}

@media (max-width:992px) {
    .imgmainphrase {
        max-width: 200px;
        margin-top: 20px;
    }

    .mainphrase {
        text-align: center !important;
    }
}

.servicescard h1, h2, h3, h4 {
    color: var(--dark)
}

.item-card {
    background: #fff;
    -webkit-box-shadow: 0px 0px 11px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 11px -1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 11px -1px rgba(0,0,0,0.75);
    padding: 0;
}

.img-card {
    width: 100%;
}

.item-texto {
    padding-left: 1em;
    padding-right: 1em;
}

.cta {
    text-align: center;
}

.btn-fale {
    text-transform: uppercase;
    background: var(--darkBlue) !important;
    border-radius: 10px;
    padding-top: 12px;
    border: none;
    width: 320px;
    padding-bottom: 12px;
    transition: .3s ease-in;
}

    .btn-fale:hover {
        background: var(--red) !important;
        color: var(--darkBlue) !important;
    }


#back-top-button {
    display: inline-block;
    background: var(--primary);
    width: 47px;
    height: 55px;
    text-align: center;
    border-radius: 20%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
}

    #back-top-button::after {
        content: "\f077";
        font-family: FontAwesome;
        font-weight: normal;
        font-size: 2em;
        line-height: 55px;
        color: #fff;
    }

    #back-top-button:hover {
        cursor: pointer;
        background: var(--primaryAction);
    }

    #back-top-button:active {
        background-color: #555;
    }

    #back-top-button.show {
        opacity: 1;
        visibility: visible;
    }


.artigo-nome a{
    color:var(--darkBlue);
    font-weight:700;
}