/* -------- FONTS ---------- */
/* -------- FONTS2 ---------- */
/* -------- FONTS3 ---------- */

@font-face {
    font-family: harabara-light;
    src: url(assets/fonts/harabara-light.otf);
}
@font-face {
    font-family: harabara-bold;
    src: url(assets/fonts/harabara-bold.otf);
}
@font-face {
    font-family: harabara-regular;
    src: url(assets/fonts/harabara-regular.otf);
}
@font-face {
    font-family: roboto-regular;
    src: url(assets/fonts/Roboto-Regular.ttf);
}
@font-face {
    font-family: roboto-light;
    src: url(assets/fonts/Roboto-Light.ttf);
}
@font-face {
    font-family: gothic-medium;
    src: url(assets/fonts/bank-gothic-medium.ttf);
}

* {
    font-family: roboto-light;
}

/* GENERAL BUTTONS */

.red-btn {
    color: #fffffff0;
    padding: 15px 20px;
    border-radius: 22px;
    font-weight: bold;
    background-image: linear-gradient(#ed1c25, #b9030b);
    text-transform: capitalize;
    transition: all .5s;
    border: 1px solid transparent;
}
.red-btn:hover {
    text-decoration: none;
    background-image: linear-gradient(#b9030b, #b9030b);
    cursor: pointer;
    color: #fffffff0;
}
.white-btn {
    color: white;
    padding: 15px 20px;
    border-radius: 22px;
    font-weight: bold;
    background-color: transparent;
    text-transform: capitalize;
    transition: all .5s;
    border: 1px solid white;
}
.white-btn:hover {
    text-decoration: none;
    background-image: linear-gradient(#b9030b, #b9030b);
    cursor: pointer;
    color: #fffffff0;
    border: 1px solid transparent;
}

/* LANDING CONTACT PAGE  */
.header-main-title.landing-contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 17%;
    /* padding-left: 10%; */
    /* margin-left: 30px;*/
}
.header-pages.lading-contact-bg {
    background-image: url(assets/img/office-11.svg);
}
.landing-page-contact-form {
    padding: 70px 0;
}


/* GENERAL ASSETS */

.mg-tp-50 {
    margin-top: 50px;
}
.mt-large {
    margin-top: 70px;
}
/* black navbar(white bg) */
.black-nav-bar .nav-link {
    color: #2b2b2b;
}
.black-nav-bar .nav-link:hover {
    text-decoration: none;
    color: #2b2b2b;
    border:none;
    cursor: pointer;
}
.black-nav-bar .nav-link::after {
    content: '';
    position: absolute;
    width: 0px;
    height: 1px;
    left: 50%;
    bottom:0;
    background-color: #2b2b2b;
    transition: all ease-in-out .2s;
}

.black-nav-bar .nav-link:hover::after{
    width: 100%;
    left: 0;
}
/* headers */
.header-main-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-top: 35%;
    /* padding-left: 10%; */
    margin-left: 30px;
}
.header-main-title.header-title-hidden-page-1 {
    padding-top: 30%;
}

@media (min-width:1280px) and (max-width:1400px) {
    .margin-sides-card {
        margin: 0 20px;
    }
}

/* separators */
hr {
    border-top: 2px solid #ED1C25;
}

/* ------------- NAVBAR --------------- */

.container:before {
    display: unset;
    content: none;
}
.container::after {
    display: unset;
    content: none;
}

#mainNav {
    padding-top:40px;
    position:absolute;
    top:0;
    width:100%;
    z-index:1;
}

@media (max-width:576px) {
    #mainNav {
        display: none;
    }
}

#mainNav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-link {
    color: #ffffffa1;
    margin-right: 16px;
    transition: all .5s;
    padding: 10px 0;
    position: relative;
}

.nav-link.active::after {
    width: 100%;
    left: 0;
}
.nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0px;
    height: 1px;
    left: 50%;
    bottom:0;
    background-color: white;
    transition: all ease-in-out .2s;
}

.nav-link:hover::after{
    width: 100%;
    left: 0;
}

.nav-link:hover {
    text-decoration: none;
    color: white;
    border:none;
    cursor: pointer;
}

/* MOBILE NAV BAR */

@media (min-width:576px) {
    .topnav-mobile {
        display: none;
    }
} 
  
  .topnav-mobile {
    padding-top:40px;
    position:absolute;
    top:0;
    width:100%;
    z-index:1;
  }
  
  .topnav-mobile #nav-item-mobile {
    display: none;
    background: #2A2D30;
    /* padding: 40px; */
  }
  
  .topnav-mobile a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
  }
  
  .topnav-mobile a.icon {
    /* background: black; */
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 15px;
  }
  .topnav-mobile ion-icon {
      font-size: 40px;
  }
  
  .topnav-mobile a:hover {
    background-color: #616161;
    color: white;
  }
  .topnav-mobile a:hover ion-icon {
      color: white;
  }
  
  .active-link {
    background-color: #616161;
    color: white;
  }

  /*language section*/
  .flag-container {
    display: flex;
    background-color: transparent;
    border-radius: 100px;
    padding: 6px;
    border: 1px solid #ffffffa1;
    transition: .3s all ease;
  }
  .flag-container:hover div {
    text-decoration: none;
    color: #ED1C23;
  }
  .flag-container div:hover {
    text-decoration: none;
  }
  .flag-container:hover {
    background-color: white;
    text-decoration: none;
  }
  .flag-container img {
    width: 20px;
    border-radius: 20px;
    margin-right: 4px;
    text-decoration: none;
  }
  #myLinks {
    display: flex;
    align-items: center;
  }
  .flag-container div {
    color: #ffffffa1;
  }
  

/* ----------- MAIN BANNER ------------- */

header {
    overflow: hidden;
    height: 100vh;
}

/* video bg */
#dataworks-video {
    /* object-fit: cover; */
    width: 100vw;
    /* height: 100vh; */
    /* position: fixed; */
    top: 0;
    left: 0;
}

.main-header-box {
    padding-top: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-big-title{
    position: absolute;
    top: 0;
    width: 100%;
}

.main-header-box .main-title h1{
    font-size: 64px;
    color: #fffffff5;
    text-transform: uppercase;
    font-family: harabara-regular;
}


.main-header-box .sec-title {
    color: #ffffffd6;
    font-size: 18px;
    font-family: harabara-light;
    margin-top: 50px;
    line-height: 1.6;
}

/* ----------- ABOUT SECTION ------------- */

#about {
    background-image: url(assets/img/bg-1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#about .about-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
#about .about-container-box {
    padding: 120px 70px;
    overflow: hidden;
}
#about .about-container img {
    width: 600px;
    margin-left: -60px;
    margin-right: 50px;
}
#about .img-home-container {
    margin-right: 50px;
}
.small-title {
    color: #f91b24;
    letter-spacing: 1px;
    font-family: harabara-light;
    font-size: 12px;
}
#about .title-about {
    font-family: 'roboto-light';
    margin: 0;
    margin-top: 10px;
    font-size: 40px;
}
.description-text {
    font-family: roboto-light;
    line-height: 1.6;
    color: #636262;
    font-size: 15px;
    margin-top: 30px;
}
#about .btn-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/*------------ VALUES SECTION --------------- */

#values {
    background-image: url(assets/img/bg-3.svg);
    
}

/* ----------- SERVICES SECTION ------------- */

#services {
    background-image: url(assets/img/bg-3.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
/*    padding: 100px 0;*/
}
#services.cards-section {
    padding-top: 100px;
    .cards-container {
        padding: 100px 0;
        .row {
            display: flex;
            justify-content: center;
        }
    }
}
#services .row {
    /*display: flex;
    justify-content: space-between;*/
    margin-top: 60px;
}
.bullets-info-other {
    padding: 40px;
    box-shadow: 0 12px 50px 0 rgb(16 13 29 / 40%);
    border-radius: 15px;
    min-height: 540px;
    width: calc(100% * 1 / 3.001);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    background-size: cover;
    background-position: top;
    padding-top: 15%;
}
.bullets-info-other.da-card {
    background-image: url(assets/img/cloud-services.svg);
}
.bullets-info-other.aw-card {
    background-image: url(assets/img/bi.svg);
}
.bullets-info-other.cm-card {
    background-image: url(assets/img/financial-app.svg);
}
.bullets-info-other .card-title {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 20px;
    color: white;
}
.bullets-info-other .card-text {
    text-align: center;
    font-size: 15px;
    color: #ffffffd9;
    margin-top: 20px;
}
#services .cards-container {
    padding: 0 90px;
}
.mg-sides {
    margin: 0 50px;
}
.btn-container-services {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.services-home .bullets-info-other {
    padding-top: 0;
    justify-content: center;
}
#services.services-home {
    background-image: none;
    padding: 100px 0;
}

/* ----------- AWS SECTION ------------- */

#aws {
    overflow: hidden;
    height: 100vh;
    position: relative;
}
/* video bg */
.video-aws-container {
    /* top: -20%; */
    width: 200%;
    height: 200%;
    position: absolute;

}
.overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    background: black;
    opacity: 0.6;
}

.overlay-epipilot {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    background: black;
    opacity: 0.8;
}

.pdf-container-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}
.pdf-container-buttons .btn-container {
    margin-top: 0!important;
    margin-left: 24px;
}
@media (min-width:1200px) {
    #aws-video, .video-aws-container, #aws {
        height: 94vh; 
    }
    #aws.microstrategy-video-container {
        height: 70vh;
    }
}


@media (min-width:1200px) {
    #aws-video, .video-aws-container, #aws {
        height: 94vh; 
    }
    #aws.epipilot-video-container {
        height: 70vh;
    }
}
#aws-video {
    object-fit: cover;
    object-position: top;
    width: 100vw;
    /*height: 100vh; */
    /* position: fixed; */
    top: 0;
    left: 0;
}
#aws-badge {
    display: flex;
    justify-content: center;
}
.title-aws{
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 65px;
    z-index: 99;
    align-items: center;
}
.title-micro{
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 65px;
    z-index: 99;
    align-items: center;
}
.title-micro img {
 
    width: 235px;
}
.img-box-aws {
    padding: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-aws img {
    width: 250px;
}
#aws .text-aws {
    padding: 40px;
}
#aws .text-aws h1 {
    color: white;
}
#aws .text-aws div {
    margin-top: 30px;
    font-size: 15px;
}
#aws .aws-text-p {
    color: #a3a0a1;
}

/* ----------- GET STARTED SECTION ------------- */

#get-started .container {
    display: flex;
    justify-content: center;
    padding: 50px 0;
}
#get-started .container .row {
    width: 60%;
    padding: 60px;
    border-radius: 7px;
    box-shadow: 0 12px 50px 0 rgb(16 13 29 / 40%)
}
.desc-text-banner {
    margin-top: 30px;
}
#get-started .btn-container-services {
    margin-top: 20px;
}

/* ----------- CARDS SECTION ------------- */

.cards-section {
    background-image: url(assets/img/bg-5.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#services.cards-section .bullets-info-other.value-1 {
    background-image: url(assets/img/efficiency.png);
    min-height: 430px;
    width: calc(80% * 1 / 3.001);
    padding: 40px;
    justify-content: center;
    min-width: 375px;
}

#services.cards-section .bullets-info-other.value-2 {
    background-image: url(assets/img/commitment.png);
    min-height: 430px;
    width: calc(80% * 1 / 3.001);
    padding: 40px;
    justify-content: center;
    min-width: 375px;
}

#services.cards-section .bullets-info-other.value-3 {
    background-image: url(assets/img/expertise.png);
    min-height: 430px;
    width: calc(80% * 1 / 3.001);
    padding: 40px;
    justify-content: center;
     min-width: 375px;
}
#services.cards-section .bullets-info-other ion-icon {
    color: white;
    font-size: 80px;
    margin-bottom: 60px;
    padding: 20px;
    border-radius: 100%;
    background: #d34e4f;
}

/* ----------- PARTNERS SECTION ------------- */

#partners {
    padding: 90px 0;
}

#partners .row-logos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 60px;
}
#partners .row-logos .img-box-part {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#partners .row-logos .img-box-part img {
    width: 200px;
    object-fit: cover;
}
#partners .row-logos .img-box-part .aws-logo-small {
    width: 130px;
}

/* ----------- FOOTER SECTION ------------- */

#footer {
    background-image: url(assets/img/bg-footer.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 50px;
    color: #ffffffb3;
}
#footer img {
    width: 130px;
    margin-bottom: 30px;
}
#footer .row {
    display: flex;
    justify-content: space-between;
}
#footer .footer-title {
    font-size: 16px;
    font-family: roboto-regular;
    margin-bottom: 30px;
}
.footer-flex {
    display: flex;
    align-items: center;
}
#footer .find-col ion-icon {
    margin-right: 10px;
    font-size: 18px;
    padding: 7px;
    border-radius: 100%;
    background-color: #a093933d;
    color: #ED1C25;
}
#footer .find-col .footer-flex {
    margin-bottom: 10px;
}
#footer .social-icons-col .footer-flex {
    margin-top: 10px;
}
#footer .social-icons-col ion-icon {
    font-size: 26px;
    transition: all .3s;
    margin-right: 10px;
}
#footer .social-icons-col ion-icon:hover {
    color: #bd5559;
    cursor: pointer;
}
#footer a {
    color: #ffffffb3;
}

#about .about-container-box{
    display: flex;
    justify-content: center;
}

/* ----------- RESPONSIVE HOME PAGE ------------- */
    @media (min-width:968px) {
        #about .about-container {
            width: 50%;
        }
    }
/* mobile */
@media (max-width:576px) {

    /* NAV BAR */
    .topnav {
        display: none;
    }

    /* HEADER SECTION */

    .main-header-box {
        padding-top: 150px;
    }
    header {
        height: 70vh;
    }
    #dataworks-video {
        height: 100vh;
        width: unset;
    }
    .main-header-box .main-title h1 {
        font-size: 30px;
    }

    /* ABOUT SECTION */

    #about .about-container {
        display: block;
    }

    #about .about-container img {
        width: 100%;
        margin-left: unset;
        margin-right: unset;
        margin-bottom: 50px;
    }
    #about .about-container-box {
        padding: 60px 30px;
    }
    #about .img-home-container {
        margin-right: 0;
    }
    .bullets-info-other {
        justify-content: center;
    }

    /* SERVICES SECTION */

    #services .row {
        display: block;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        margin-left: 0;
    }
    #services .cards-container {
        padding: 0;
    }
    #services .bullets-info-other {
        width: 100%;
        margin-bottom: 20px;
    }
    .mg-sides {
        margin: 0;
    }
    #services .white-btn {
        color: #fffffff0;
        background-image: linear-gradient(#ed1c25, #b9030b);
        border: 1px solid transparent;
    }

    /* AMAZON SECTION */

    .title-aws {
        display: block;
        padding: 0;
    }
    #aws {
        height: 155vh;
    }
    .video-aws-container {
        height: 100%;
        top: 0%;
    }
    #aws-video {
        height: 175vh;
        width: unset;
    }
    .img-box-aws {
        padding: 70px 70px 10px;
    }
    .aws-text-p, .description-text {
        text-align: center;
    }

    /* GET STARTED BANNER */

    #get-started .container .row{
        width: 90%;
    }

    /* OUR VALUES SECTION */

    #services.cards-section .bullets-info-other {
        width: 100%;
    }

    #services.cards-section .row {
        flex-direction: column;
        padding: 0 16px;
    }

    /* PARTNERS SECTION */

    #partners .row-logos {
        display: block;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }
    #partners .row-logos .img-box-part {
        width: 100%;
    }
    #partners .row-logos .img-box-part img {
        margin-bottom: 40px;
    }
    #partners .title-about {
        margin-bottom: 70px;
    }
    #partners {
        padding: 90px 0 20px;
    }

    /* FOOTER SECTION */

    #footer .row {
        display: block;
    }
    #footer .social-icons-col {
        display: none;
    }
    #footer .footer-title {
        margin-top: 30px;
    }
}

/* 1200 breakpoint */

@media (min-width:1280px) and (max-width:1400px) {
    #about .about-container img {
        width: 500px;
    }
    #about .img-home-container {
        margin-right: 0;
    }
    #about .about-container-box {
        padding: 150px 70px;
    }
    .bullets-info-other {
        min-height: 490px;
    }
}

/* ------------------------- ABOUT US PAGE ---------------------------- */

.header-pages {
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    height: 90vh;
}
.header-main-title h1 {
    font-size: 46px;
    /* text-transform: uppercase; */
    font-family: gothic-medium;
}

/* ABOUT TEXT CONTENT */

.about-content {
    background-image: url(assets/img/bg-6.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 70px;
}
.about-content .row {
    display: flex;
}
.about-content .row .text-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-content .btn-container {
    margin-top: 40px;
}

/* VIDEO SECTION BANNER */

#aws.city-video-box {
    height: 64vh;
    .title-aws {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
#aws.city-video-box .text-about-video {
    font-size: 18px;
}
#aws .title-aws .btn-container-services {
    margin-top: 50px;
}
#aws .text-aws h1 {
    line-height: 60px;
}

/* BULLETS SERVICES SECTION */

#services.bullets-about {
    background-image: url(assets/img/bg-8.svg);
    background-size: auto;
    background-repeat: repeat-y;
}
.bullet-about-item .card-title {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 20px;
}
.bullet-about-item .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}
.bullet-about-item ion-icon {
    color: white;
    font-size: 80px;
    margin-bottom: 60px;
    padding: 20px;
    border-radius: 100%;
    background: #d34e4f;
}

/* RESPONSIVE ABOUT PAGE */

/* mobile */
@media (max-width:576px) {
    .about-content {
        padding: 50px 0;
    }
    .about-content .row {
        display: block;
    }
    #aws.city-video-box {
        height: 90vh;
    }
    #services.bullets-about {
        padding: 100px 10px;
    }
    #aws.oracle-section-home {
        height: 150vh;
    }
    #aws.microstrategy-video-container {
        height: 150vh;
    }
    #aws.microstrategy-video-container  .title-micro {
        flex-direction: column;
    }
    #aws.microstrategy-video-container  .title-micro >div {
        padding: 0;
    }
       #aws.epipilot-video-container {
        height: 125vh;
    }
    #aws.epipilot-video-container  .title-micro {
        flex-direction: column;
    }
    #aws.epipilot-video-container  .title-micro >div {
        padding: 0;
    }
}

/* 1200 breakpoint */
@media (min-width:1280px) and (max-width:1400px) {
    .header-main-title {
        padding-top: 41%;
        margin-left: 15px;
    }
}

/* ------------------------- SERVICES PAGE ---------------------------- */

.header-pages.services {
    background-image: url(assets/img/office-2.svg);
}
#services.services-page {
    background-image: url(assets/img/bg-9.svg);
}


  
/* CARD ANIMATION */
  
  .services-page article.card {
    width: 400px;
    max-height: 540px;
    border-radius: 15px;
    box-shadow: 0 12px 50px 0 rgb(16 13 29 / 40%);
    overflow: hidden;
  }
  .services-page article.card .thumb {
    width: auto;
    height: 100%;
    background-size: cover;
    background-position: top;
    border-radius: 3px;
    transition: all .4s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .services-page article.cloud-services .thumb {
      background-image: url(assets/img/cloud-services.svg);
  }
  .services-page article.finan-app .thumb {
    background-image: url(assets/img/financial-app.svg);
  }
  .services-page article.gen-account .thumb {
    background-image: url(assets/img/gen-account.svg);
  }
  .services-page article.bi .thumb {
    background-image: url(assets/img/bi.svg);
  }
  .services-page article.it-adv .thumb {
    background-image: url(assets/img/it-adv.svg);
  }
  .services-page article.emerg-tech .thumb {
    background-image: url(assets/img/emer-tech.svg);
    background-position: left;
  }
  .services-page article.dev-serv .thumb {
    background-image: url(assets/img/dev-serv.svg);
    background-position: right;
  }
  .services-page article.data-img .thumb {
    background-image: url(assets/img/data-img.svg);
  }
  .services-page article.man-it-serv .thumb {
    background-image: url(assets/img/man-it-serv.svg);
    background-position: right;
  }
  .services-page article.card .thumb .card-services-title {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 20px;
    color: white;
  }
  .services-page article.card .infos {
    width: auto;
    height: 540px;
    position: relative;
    padding: 70px 40px;
    background: #1d1d1dc7;
    border-radius: 15px;
    transition: 0.8s 0.20s cubic-bezier(0.17, 0.67, 0.5, 1.03);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .services-page article.card .infos .title {
    position: relative;
    margin: 10px 0;
    color: white;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .services-page article.card .infos .title h4 {
      font-size: 16px;
      text-align: center;
  }
  .services-page article.card .infos ion-icon {
      font-size: 50px;
      margin-bottom: 15px;
  }

  .services-page article.card:hover .infos {
    transform: translateY(-540px);
  }
  .services-page article.card:hover .thumb {
    filter: blur(8px);
  }
  .row-bullets {
      display: flex;
      justify-content: space-between;
      width: 100%;
  }
  .bullets-cards-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  #services.services-page .row {
      margin-top: 0;
  }

  /* RESPONSIVE */

  @media (max-width:576px) {
    .services-page article.card .thumb {
        height: 540px;
    }
    .services-page article.card {
        width: 100%;
        margin-bottom: 30px;
    }
    #services .cards-container {
        padding: 0 20px;
    }
  }



/* ------------------------- SERVICES HOME ---------------------------- */



  
/* CARD ANIMATION */
  
  .services-home article.card {
    width: 400px;
    max-height: 540px;
    border-radius: 15px;
    box-shadow: 0 12px 50px 0 rgb(16 13 29 / 40%);
    overflow: hidden;
  }
  .services-home article.card .thumb {
    width: auto;
    height: 100%;
    background-size: cover;
    background-position: top;
    border-radius: 3px;
    transition: all .4s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .services-home article.cloud-services .thumb {
      background-image: url(assets/img/cloud-services.svg);
  }
  .services-home article.finan-app .thumb {
    background-image: url(assets/img/financial-app.svg);
  }
  .services-home article.gen-account .thumb {
    background-image: url(assets/img/gen-account.svg);
  }
  .services-home article.bi .thumb {
    background-image: url(assets/img/bi.svg);
  }
  .services-home article.it-adv .thumb {
    background-image: url(assets/img/it-adv.svg);
  }
  .services-home article.emerg-tech .thumb {
    background-image: url(assets/img/emer-tech.svg);
    background-position: left;
  }
  .services-home article.dev-serv .thumb {
    background-image: url(assets/img/dev-serv.svg);
    background-position: right;
  }
  .services-home article.data-img .thumb {
    background-image: url(assets/img/data-img.svg);
  }
  .services-home article.man-it-serv .thumb {
    background-image: url(assets/img/man-it-serv.svg);
    background-position: right;
  }
  .services-home article.card .thumb .card-services-title {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 20px;
    color: white;
  }
  .services-home article.card .infos {
    width: auto;
    height: 540px;
    position: relative;
    padding: 70px 40px;
    background: #1d1d1dc7;
    border-radius: 15px;
    transition: 0.8s 0.20s cubic-bezier(0.17, 0.67, 0.5, 1.03);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .services-home article.card .infos .title {
    position: relative;
    margin: 10px 0;
    color: white;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .services-home article.card .infos .title h4 {
      font-size: 16px;
      text-align: center;
  }
  .services-home article.card .infos ion-icon {
      font-size: 50px;
      margin-bottom: 15px;
  }

  .services-home article.card:hover .infos {
    transform: translateY(-540px);
  }
  .services-home article.card:hover .thumb {
    filter: blur(8px);
  }
  .row-bullets {
      display: flex;
      justify-content: space-between;
      width: 100%;
  }
  .bullets-cards-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  #services.services-home .row {
      margin-top: 0;
  }

  /* RESPONSIVE */

  @media (max-width:576px) {
    .services-home article.card .thumb {
        height: 540px;
    }
    .services-home article.card {
        width: 100%;
        margin-bottom: 30px;
    }
    #services .cards-container {
        padding: 0 20px;
    }
  }







/* ------------------------- INDUSTRIES PAGE ---------------------------- */

.header-pages.industries {
    background-image: url(assets/img/office-4.svg);
}
#services.industries-page {
    background-image: url(assets/img/bg-9.svg);
}
.industries-page .bullets-info-other.finan-card {
    background-image: url(assets/img/financial-img.svg);
    background-position: right;
}
.industries-page .bullets-info-other.gov-card {
    background-image: url(assets/img/govern-img.svg);
}
.industries-page .bullets-info-other.insu-card {
    background-image: url(assets/img/insu-img.svg);
    background-position: left;
}
.industries-page .bullets-info-other.tech-card {
    background-image: url(assets/img/tech-img.svg);
}
.industries-page .bullets-info-other.enter-card {
    background-image: url(assets/img/enter-img.svg);
}
.industries-page .bullets-info-other.health-card {
    background-image: url(assets/img/healt-img.svg);
}
.industries-page .bullets-info-other.food-card {
    background-image: url(assets/img/food-img.svg);
}
.industries-page .bullets-info-other.trai-card {
    background-image: url(assets/img/trai-img.svg);
}

/* ------------------------- PARTNERS PAGE ---------------------------- */

.header-pages.partners-section {
    background-image: url(assets/img/office-5.svg);
}
#services.partners-page .thumb .card-services-title img {
    width: 150px;
}
#services.partners-page .bi .thumb .card-services-title img,
#services.partners-page .it-adv .thumb .card-services-title img,
#services.partners-page .emerg-tech .thumb .card-services-title img,
#services.partners-page .dev-serv .thumb .card-services-title img {
    width: 250px;
}
#services.partners-page .finan-app .thumb .card-services-title img {
    width: 350px;
}
#services.partners-page .infos h4 {
    line-height: 26px;
}
#services.partners-page article.bi .thumb{
    background-image: url(assets/img/oracle-bg.svg);
}
#services.partners-page article.it-adv .thumb{
    background-image: url(assets/img/ms-bg.svg);
}
#services.partners-page article.emerg-tech .thumb{
    background-image: url(assets/img/aba-bg.svg);
}
#services.partners-page article.dev-serv .thumb{
    background-image: url(assets/img/acams-bg.svg);
}

/* ------------------------- USE CASES PAGE ---------------------------- */

.header-pages.use-cases-section {
    background-image: url(assets/img/office-6.svg);
}
.use-cases-page article.card .infos .title a{
    font-size: 14px;
}
#services.use-cases-page article.sec-card .thumb{
    background-image: url(assets/img/sec-img.svg);
}
#services.use-cases-page article.workspace .thumb{
    background-image: url(assets/img/workspace-img.svg);
    background-position: right;
}
#services.use-cases-page article.iot .thumb{
    background-image: url(assets/img/iot-img.svg);
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: transparent;
    margin: 5% auto;
    /* padding: 20px; */
    /* border: 1px solid #888; */
    width: 50%;
    box-shadow: none;
    border: none;
  }
  .modal-content iframe {
      width: 100%;
      height: 500px;
      border: none;
      border-radius: 10px;
  }
  
  /* The Close Button */
  .close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    opacity: 0.7;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

/* ------------------------- AWS PAGE ---------------------------- */


#aws-page {
    padding-top: 70px;
    padding-bottom: 50px;
    background-image: url(assets/img/bg-8.svg);
}
#aws-page .aws-bullets-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#aws-page .aws-bullets-card img{
    height: 300px;
}


/* RESPONSIVE */

@media (max-width:576px) {
    #aws-page .container .row {
        margin-left: 0;
        margin-right: 0;
    }
    #aws-page .container .row .col-md-6 {
        margin-bottom: 30px;
    }
}

/* ------------------------- ORACLE PAGE ---------------------------- */

.header-pages.oracle-section {
    background-image: url(assets/img/office-12.svg);
}
.bullets-oracle-text {
    margin-top: 20px;
    margin-left: -40px;
}
.bullets-oracle-text li {
    font-family: roboto-light;
    line-height: 1.6;
    color: #636262;
    font-size: 15px;
}
@media (max-width:576px) {
    #aws-page.oracle-page .aws-bullets-card img {
        width: 100%;
    }
}


/* ------------------------- SUCCESS CASES PAGE ---------------------------- */
.header-pages.success-section {
    background-image: url(assets/img/office-8.svg);
}
.about-content.migration-content {
    background-image: url(assets/img/bg-10.svg);
}

/* RESPONSIVE USE CASES PAGE */
@media (max-width:576px) {
    .use-cases-page article.card {
        width: 100%;
        height: 540px;
        margin-bottom: 30px;
    }
    #services.use-cases-page {
        padding: 50px 10px;
    }
    .use-cases-page .bullets-cards-row {
        margin-right: 0;
        margin-left: 0;
    }
    .header-pages {
        height: 45vh;
    }
    .modal .modal-content {
        width: 90%;
        margin: 15% auto;
    }
}

/* ------------------------- TBB INTERNATIONAL BANK PAGE ---------------------------- */
.header-pages.inter-bank-section {
    background-image: url(assets/img/office-13.svg);
}

/* ------------------------- LEGAL CREDIT PAGE ---------------------------- */
.header-pages.legal-cred-section {
    background-image: url(assets/img/office-14.svg);
}

/* ------------------------- CONTACT PAGE ---------------------------- */

.contact-main-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    padding: 120px 40px!important;
}
#aws .text-aws.contact-main-title h1 {
    color: #FE5048;
    font-weight: bold;
    font-size: 42px;
}

#mainNav.contact-nav {
    z-index: 9999;
}
.contact-container-boxes {
    display: flex;
    justify-content: center;
    width: 85%;
}
.contact-container-boxes h2 {
    color: white;
}
.contact-container-boxes .contact-text {
    color: #a3a0a1;
}
.contact-container-boxes ion-icon {
    color: white;
    font-size: 22px;
    margin-right: 10px;
    transition: all .3s;
}
.contact-container-boxes a {
    color: #a3a0a1;
    margin-right: 20px;
}
.contact-container-boxes ion-icon:hover {
    color: #bd5559;
    cursor: pointer;
}
.contact-box-item {
    padding: 0 50px;
    width: 30%;

}
.contact-box-item:nth-child(2) {
    border-left: 1px solid #a3a0a1;
    border-right: 1px solid #a3a0a1;
}
.contact-text .social-media-contact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0!important;
}
.contact-text .social-media-contact >div {
    margin-top: 0!important;
    margin-right: 10px;
}

#contact-page .contact-form-map-container {
    padding: 40px;
    display: flex;
    justify-content: center;
}
#contact-page .contact-form-map-container iframe {
    border-radius: 10px;
    width: 100%;
}
#contact-page .contact-form-map-container >div{
    flex-basis: 50%;
}
#contact-page .contact-form-map-container >div:first-child{
    flex-basis: 60%;
}
.container-form {
    display: flex;
    align-items: center;
    justify-content: center;
}
.container-form  form {
    display: flex;
    flex-direction: column;
    width: 70%;
}
.container-form  form input[type=text], #empl-add {
    height: 40px;
    margin-bottom: 20px;
    border-radius: 5px;
    border:1px solid lightgrey;
    padding: 0 20px;
}
.container-form  form .message-box-area {
    margin-bottom: 20px;
    border-radius: 5px;
    border:1px solid lightgrey;
    padding: 10px 20px;
}
.container-form  form input[type=text]::placeholder,
.container-form  form .message-box-area::placeholder {
    color: lightgrey;
}

.container-form .red-btn {
    width: 30%;
    height: 40px;
    padding: 0;
}
.container-form .red-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;    
}

/* RESPONSIVE CONTACT PAGE */
@media (max-width:576px) {
    .contact-container-boxes {
        flex-direction: column;
        margin-top: 0!important;
    }
    .contact-box-item {
        width: 100%;
        padding: 50px 0;
        margin-top: 0!important;
    }
    .contact-box-item:nth-child(2) {
        border: none;
        border-bottom: 1px solid #a3a0a1;
        border-top: 1px solid #a3a0a1;
    }
    .topnav-mobile {
        z-index: 9999;
    }
    .container-form form {
        width: 100%;
    }
    #aws.contact-page-section {
        height: 130vh;
    }
    .iframe-container-contact {
        display: none;
    }
    .container-form {
        width: 100%;
    }
}

/* ----------- HIDDEN PAGES -------------- */

/* ASPECT DIALER PAGE */

#aspect-img-section {
    padding: 100px 0;
}
#aspect-img-section img {
    margin-top: 50px;
}
#aspect-img-section .title-hidden-page-img {
    margin-top: 40px;
}
.bullets-hidden-page {
    padding: 20px;
    border: 1px solid #EF5755;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin-bottom: 10px;
}
.bullets-box-hidden-page {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* PRACTICE PAGE */
#aspect-img-section.practice-page {
    padding: 100px 0 0 0;
}


/* ---------- NEW HEADER VIDEOS PAGES ---------- */

.video-header .video-aws-container,
.video-header  #aws-video,
.video-header#aws {
    height: 54vh;;
}

.video-header .title-aws {
    padding: 0!important;
}

.video-header .title-aws h1 {
    color: white!important;
    font-family: gothic-medium;
    font-size: 42px!important;
}

.video-aws-container.video-position video{
  object-position: top;
}


/* -------------   NEW YEAR PAGE   ---------------*/

.tarjeta-new-year {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    padding: 56px 0;
    padding: 56px 32px;
    background-color: cornsilk;
    box-shadow: 0 0 24px black;
}
.main-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-heading h1 {
    text-align: center;
    font-style: italic;
    font-family: cursive;
    font-size: 48px;
}
.tarjeta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(assets/img/new-year-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.new-year {
    display: flex;
    flex-direction: column;
}
.new-year button {
    height: 48px;
    border: none;
    border-radius: 8px;
    background-color: #b9030b;
    color: white;
    border: 1px solid transparent;
    transition: all ease .2s;
}
.new-year button:hover {
    background-color: transparent;
    border: 1px solid #b9030b;
    color: #b9030b;
}

.footer-tarjeta {
    margin-top: 40px;
    font-size: 12px;
    text-align: center;
    font-style: italic;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .tarjeta-new-year {
        width: 100%;
        padding: 56px 20px;
    }
}




