/*  
 *  CITI Main Stylesheet
 *  October, 2022
 *  All rights reserved.
 *
 *  
 *  Index (Open search -> c+p to go there):

 *      - Definition: Body;
 *      - Definition: Estructure;
 *      - Definition: Typography;
 *      - Definition: Buttons;
 *      - Definition: Main menu;
 *      - Definition: Action button;
 *      - Definition: Footer;

 *      - Page: Index;
 *      - Page: Development;
 *      - Page: Operation;
 *      - Page: Resident;
 *      - Page: Industries;
 *      - Page: Industry detail;
 *      - Page: About Us;
 *      - Page: Contact;
 *      - Page: Blog;
 *      - Page: Blog entry;
 *      - Page: Privacy;
*/

:root {
    --main: #0071FF;
    --secondary: #2E60AB;
    --contrast: #03C591;
    --optional1: #6CBAE2;
    --optional2: #792A8F;

    --white: #FFFFFF;
    --black: #343434;
    --gray: #D7D7D7;
    --bg_gray: #F9F9F9;
    --bg_blue: #EAF3FF;
    
    --green: #26B14B;
    --yellow: #F8C631;
    --red: #F03E3E;

    --main_font: 'Inter', sans-serif;
}

/* Abandon all hope, ye who enter here */


/* ==========================================
 * Definition: Body;
 * ========================================== */
html {
    position: relative;
    height: 100%!important;
    padding: 0;
    margin: 0;
    scroll-padding-top: 70px;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%!important;
    margin: 0;
    width: 100%;
    cursor: default;
    color: var(--black);
    font-size: 16px;
    line-height: 22px;
    font-family: var(--main_font);
    font-weight: 400;
    background-color: var(--white);
}
.page_content {
    flex-shrink: 0;
}
/*
@media (max-width: 1199px) {
    body { padding-top: 58px; }
}*/


/* ==========================================
 * Definition: Estructure;
 * ========================================== */
/* ---- Margin ---- */
.mt-8 { margin-top: 4.5rem !important; }
.mt-10 { margin-top: 6rem !important; }

.mb-8 { margin-bottom: 4rem !important; }
.mb-10 { margin-bottom: 6rem !important; }

.my-8 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.my-10 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}
@media (max-width: 991px) {
    .mt-8 { margin-top: 3rem !important; }
    .mb-8 { margin-bottom: 3rem !important; }
    .my-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    .mt-10 { margin-top: 3.5rem !important; }
    .mb-10 { margin-bottom: 3.5rem !important; }
    .my-10 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }
}

/* ---- Padding ---- */
.pt-8 { padding-top: 4.5rem !important; }
.pt-10 { padding-top: 6rem !important; }
.pt-15 { padding-top: 14rem !important; }

.pb-8 { padding-bottom: 4.5rem !important; }
.pb-10 { padding-bottom: 6rem !important; }
.pb-15 { padding-bottom: 14rem !important; }

.py-8 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}
.py-10 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
@media (max-width: 991px) {
    .pt-8 { padding-top: 3rem !important; }
    .pb-8 { padding-bottom: 3rem !important; }
    .py-8 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .pt-10 { padding-top: 3.5rem !important; }
    .pb-10 { padding-bottom: 3.5rem !important; }
    .py-10 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
}

/* ---- Text color ---- */
.text-dark { color: var(--black)!important; }
.text-primary { color: var(--main)!important; }
.text-secondary { color: var(--secondary)!important; }
.text-info { color: var(--gray)!important; }

/* ---- Background color ---- *//
.bg-primary { background-color: var(--main)!important; }
.bg-secondary { background-color: var(--black)!important; }
.bg-light { background-color: var(--bg_gray)!important; }
.bg-white { background-color: var(--white)!important; }

/* ---- Background image ---- */
.bg-img-cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-img-fixed {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
    .bg-img-fixed { background-attachment: scroll; }
}

/* ---- Opacity ---- */
.opacity-50 { opacity: .5 !important; }

/* ---- Bootstrap card ---- */
.card {
    transition: 0.3s;
    border: none;
    border-radius: 0;
    box-shadow: 0px 3px 8px rgba(0,0,0,.16);
}
.card-body { padding: 16px; }
.card .icon img { height: 50px; }
.card-title {
    margin-top: 0;
    margin-bottom: .5rem;
}
.card.bt_line {
    padding: 8px 0 16px;
    border-top: 8px solid transparent;
}
.card.bt_line.lineB { border-top-color: var(--main); }
.card.bt_line.lineG { border-top-color: var(--gray); }



/* ==========================================
 * Definition: Typography;
 * ========================================== */
h1 {
    margin: 24px 0;
    font-size: 72px;
    line-height: 86px;
    font-weight: 700;
    font-family: var(--main_font);
}
@media (max-width: 991px) {
    h1 { font-size: 56px; line-height: 72px; }
}
@media (max-width: 576px) {
    h1 { font-size: 52px; line-height: 60px; }
}
h2 {
    margin: 24px 0;
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
    font-family: var(--main_font);
}
@media (max-width: 575px) {
    h2 { font-size: 32px; line-height: 42px; }
}
h3 {
    margin: 16px 0;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    font-family: var(--main_font);
}
h4 {
    margin: 16px 0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    font-family: var(--main_font);
}
h5 {
    margin: 16px 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--main_font);
}
h6 {
    margin: 16px 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--main_font);
}
p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: var(--main_font);
}
.text-small {
    font-size: 12px!important;
    line-height: 16px;
}
.fw-semibold { font-weight: 500!important; }


/* ==========================================
 * Definition: Buttons;
 * ========================================== */
/* ---- SECTION: ANCHORS; ---- */
a:not(.button),
a:not(.button):visited {
    display: inline-block;
    margin: 0;
    padding: 4px 8px;
    color: var(--main);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
a:not(.button):not(.disabled):active,
a:not(.button):not(.disabled):hover {
    color: var(--secondary)!important;
    text-decoration: none;
}
a:focus,
a:focus-visible {
    outline: var(--secondary) auto 1px !important;
    box-shadow: 0px 3px 6px rgba(46,96,171, .50) !important;
}
a.disabled {
    opacity: .5;
    cursor: not-allowed;
}
a:not(.button) i {
    margin-top: -2px;
    vertical-align: middle;
    font-size: 14px;
}
a:not(.button).icon_left i { margin-right: 4px; }
a:not(.button).icon_right i { margin-left: 4px; }

/* ---- SECTION: BUTTONS; ---- */
.button {
    position: relative;
    display: inline-block;
    margin: 0;
    min-width: 40px;
    padding: 12px 20px;

    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--main_font);
    text-align: center;
    text-decoration: none;

    border: 1px solid transparent;
    border-radius: 8px;
    transition: 0.3s;
}
.button:not(:disabled):hover {
    box-shadow: 0 3px 8px rgba(0,0,0,.12);
}
.button:disabled { opacity: .5; cursor: not-allowed; }

.btn_info {
    color: var(--black);
    font-weight: 400;
    background-color: var(--bg_blue);
}
.btn_info:active,
.btn_info:hover {
    color: var(--black);
    background-color: #DCE6F4;
}
.btn_primary {
    color: var(--white);
    background-color: var(--main);
}
.btn_primary:active,
.btn_primary:hover {
    color: var(--white);
    background-color: var(--secondary);
}


/* ==========================================
 * Definition: Main menu;
 * ========================================== */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    z-index: 100;
}
header.scrolling {
    position: fixed;
    background: var(--white)!important;
    box-shadow: 0 2px 6px rgba(0,0,0,.16);
}

/* ---- SECTION: MAIN LOGO; ---- */
.navbar-brand {
  padding: 0 !important;
}

.navbar-brand img {
  height: 80px; 
  padding: 0 !important;
}

header.scrolling .navbar-brand img  { height: 42px; }

@media (max-width: 991px) {
    .navbar-brand {
        position: absolute;
        top: 14px;
        left: 0;
        padding: 0 !important;
    }
    .navbar-brand img { height: 70px; }
    header.scrolling .navbar-brand  { top: 2px; }
}


/* ---- SECTION: CONTACT INFO; ---- */
.navbar-contact { list-style-type: none; }
header.scrolling .navbar-contact { display: none; }
.navbar-contact .nav-item { display: inline-block; vertical-align: middle; }
.navbar-contact .nav-item:nth-child(2) { position: relative; margin: 0 4px; }
.navbar-contact .nav-item:nth-child(2):before,
.navbar-contact .nav-item:nth-child(2):after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -9px;
    height: 18px;
    width: 1px;
    background-color: rgba(165,183,210,.5);
}
.navbar-contact .nav-item:nth-child(2):before { left: -8px; }
.navbar-contact .nav-item:nth-child(2):after { right: -4px; }

a.social-link i { font-size: 16px; }
.navbar-contact .button { padding: 4px 12px; }

@media (max-width: 991px) {
    .navbar-contact { 
      width: 75%; margin-left: 25%; 
      /*border-bottom: 1px solid rgba(165,183,210,.3);*/
      border-bottom: none;
  }
    .navbar-contact .nav-item:not(:last-child) { display: none; }
}
@media (max-width: 575px) {
    .navbar-contact { 
      width: 70%; margin-left: 30%; 
      border-bottom: none;
  }
}

/* ---- SECTION: MENU TOGGLER; ---- */
.navbar .navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 5px;
    margin: 4px;
    color: var(--black);
    font-size: 24px;
    border-radius: 8px;
}
.navbar .navbar-toggler:hover,
.navbar .navbar-toggler:active,
.navbar .navbar-toggler:focus {
    color: var(--secondary);
    box-shadow: none;
    background-color: var(--bg_blue);
}

/* ---- SECTION: MENU OPTIONS; ---- */
.navbar-nav .nav-item:not(:last-child) {
    position: relative;
    padding: 8px 4px 4px;
    margin: 0 8px;
    border-bottom: 3px solid transparent;
}

header.scrolling .navbar-nav .nav-item:not(:last-child) {
    padding: 12px 0;
}
.navbar-nav .nav-item.dropdown {
    padding-left: 0;
    padding-right: 12px !important;
}
.navbar-nav .nav-link { color: var(--black)!important; }
.navbar-nav .nav-item.active { border-bottom-color: var(--main); }
.navbar-nav .nav-item:hover,
.navbar-nav .nav-item:active,
.navbar-nav .nav-item.active,
.navbar-nav .nav-item:hover a.nav-link,
.navbar-nav .nav-item:active a.nav-link,
.navbar-nav .nav-item.active a.nav-link {
    color: var(--main)!important;
}
.navbar-nav .dropdown-toggle::after { display: none; }
.navbar-nav .nav-item > i[class^='fa'] {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.navbar-nav .button { margin-left: 16px; padding: 8px 20px; }
@media (max-width: 991px) {
    .navbar-nav .button {
        margin: 8px 0 16px;
        padding: 8px 24px;
    }
}

/* ---- Submenu style ---- */
.navbar-nav .dropdown-menu {
    padding: 4px 0;
    border: none;
    border-radius:0px;
    box-shadow: 0px 3px 8px rgba(0,0,0,.16);
}
.navbar-nav .dropdown-menu .dropdown-item {
    padding: 12px 16px;
    color: var(--black);
}
.navbar-nav .dropdown-menu li i[class^='fa'] {
    display: inline-block;
    margin-left: 4px;
}
.navbar-nav .dropdown-menu li.active .dropdown-item,
.navbar-nav .dropdown-menu .dropdown-item:hover {
    color: var(--secondary)!important;
    background-color: var(--bg_gray);
}

@media (min-width: 992px) {
    .navbar-nav { border-top: 1px solid rgba(165,183,210,.3); }
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    /* ---- Main options style ---- */
    .navbar-nav .nav-item:not(:last-child):before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 51%;
        right: 51%;
        height: 4px;
        background-color: var(--blue);
        -webkit-transition-property: left,right;
        transition-property: left,right;
        -webkit-transition-duration: .3s;
        transition-duration: .3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }
    .navbar-nav .nav-item.active:before,
    .navbar-nav .nav-item:not(:last-child):hover:before {
        right: 0;
        left: 0;
    }
}
@media (max-width: 991px) {
    header { background-color: rgba(255,255,255,.9); }
    .navbar-nav { align-items: start!important; }
    .navbar-nav .nav-item {
        width: 100%;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left;
    }
    .navbar-nav .nav-item:not(:nth-last-child(-n+2)) {
        border-bottom: 1px solid rgba(165,183,210,.15);
    }
    .navbar-nav .nav-item a.nav-link {
        display: block;
        padding: 16px 0;
    }
    a#menu_wedo > i[class^='fa'] {
        position: absolute;
        top: 22px;
        right: 20px;
    }
    .navbar-nav .nav-item .dropdown-toggle::after {
        position: absolute;
        top: 26px;
        right: 0;
    }
    /* ---- Submenu style ---- */
    .navbar-nav .dropdown-menu { border-bottom: none; }
    .navbar-nav .nav-item > i[class^='fa'] {
        top: 28px;
        padding: 16px;
    }
}


/* ==========================================
 * Definition: Footer;
 * ========================================== */
.bp_final { border-bottom: 24px solid var(--bg_gray); }
footer {
    margin-top: auto;
    color: var(--gray);
    font-size: 14px;
    background-color: #262626;
    border-top: 24px solid var(--black);
}
img.footer-brand { width: 90%; max-width: 100px; }

footer a:not(.button),
footer a:not(.button):visited {
    padding: 4px 0 !important;
    color: #A8A8A8!important;
    font-weight: 400;
}
footer a:not(.button):not(.disabled):active,
footer a:not(.button):not(.disabled):hover {
    color: #A8A8A8!important;
    text-decoration: underline!important;
}
footer a.social-link,
footer a.social-link:active,
footer a.social-link:hover,
footer a.social-link:visited {
    color: var(--main)!important;
}
footer a.social-link:not(:last-child) { margin-right: 12px; }
footer .button { padding: 6px 10px; font-size: 14px; }

@media (min-width: 992px) and (max-width: 1199px) {
    footer .button { font-size: 12px; }
}


/* ==========================================
 * Page: Index;
 * ========================================== */
/* ---- SECTION: DATA; ---- */
#index_data .container {
    position: relative;
    top: -80px;
    margin-bottom: -80px;
}
#index_data .list .card {
    box-shadow: none;
    color: var(--white);
    background-color: transparent;
}
#index_data .list .card .card-header {
    position: relative;
    padding: 12px 16px 12px 80px;
    background-color: var(--main);
    border: none;
    border-radius: 0;
}
#index_data .list .card .card-header i[class^='fa'] {
    position: absolute;
    top: 50%;
    left: 24px;
    font-size: 32px;
    transform: translateY(-50%);
}
#index_data .list .card h2 { margin: 0; }
#index_data .list .card .card-body {
    padding: 24px 16px 104px 80px;
}
#index_data .list .card h5 { margin: 0 0 8px; font-weight: 700; }
#index_data .list .card p { margin: 0; }

@media (max-width: 1199px) {
    #index_data .list .card .card-header,
    #index_data .list .card .card-body {
        padding-left: 72px;
    }
    #index_data .list .card .card-header i[class^='fa'] {
        left: 16px;
        font-size: 32px;
    }
    #index_data .list .card h2 { font-size: 40px; }
    #index_data .list .card h5 { margin: 0 0 4px; font-size: 18px; }
}
@media (max-width: 991px) {
    #index_data .list .card .card-body {
        padding: 24px 16px 24px 80px;
        background-color: rgba(0,0,0,.4);
    }
}

/* ---- SECTION: SERVICES; ---- */
#index_services .card-footer {
    border: none;
    background-color: transparent;
    padding-bottom: 0;
}
#index_services img { margin: 8px 0; }

@media (min-width: 992px) {
    #index_services .card { min-height: 270px; margin: 8px 0; }
}
@media (min-width: 577px) {
    #index_services div[class^='col'] {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ---- SECTION: SUCCESS CASES; ---- */
#index_cases div[class^='col'] {
    padding-top: 16px;
    padding-bottom: 16px;
}
#index_cases .card-body { padding-bottom: 0; }
#index_cases .card-footer {
    border: none;
    background-color: transparent;
    padding-bottom: 0;
}
#index_cases .card .client_photo {
    margin-top: 24px;
    width: 100px;
}

@media screen and (max-width: 576px){
  #index_cases .card .client_photo {
    margin-top: 0px;
    width: 100px;
  }
}



#index_cases .card h5 { font-weight: 700; }
#index_cases .card .client_title {
    margin: 0 16px;
    color: #A8A8A8;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}
#index_cases .card .client_desc {
    position: relative;
    margin: 16px 0 0;
    padding: 24px 0;
    text-align: left;
}
#index_cases .card .client_desc:before,
#index_cases .card .client_desc:after {
    display: block;
    position: absolute;
    font-size: 24px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
#index_cases .card .client_desc:before {
    content: "\f10d";
    top: 0;
    left: 0;
}
#index_cases .card .client_desc:after {
    content: "\f10e";
    bottom: 0;
    right: 0;
}
#index_cases .card .client_company {
    display: block;
    margin: 0 auto;
    width: 140px;
}
#index_cases .card .button {
    margin: 16px 0;
    color: var(--main);
    font-size: 16px;
    background-color: var(--bg_blue);
    border-radius: 8px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    #index_cases div[class^='col'] {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* ==========================================
 * Page: Development;
 * ========================================== */
/* ---- SECTION: BG HEADER; ---- */
.repse {
    margin-bottom: 0;
    font-weight: bold;
}
.repse span {
    display: inline-block;
    vertical-align: middle;
}
.repse img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}
.bg-img-text {
    min-height: 360px;
    padding: 30px 0;
}
.bg-img-text, .bg-img-text > div * { position: relative; }
@media (min-width: 992px) {
    .bg-img-text { padding: 30px 50px; }
    .bg-img-text:before { width: calc(50% + 50px); }
}
@media (min-width: 1200px) {
    .bg-img-text:before { width: calc(41.66666667% + 50px); }
}

/* ---- SECTION: SERVICES; ---- */
#services .container {
    position: relative;
    top: -124px;
    margin-bottom: -124px;
}
#services .card i[class^='fa'] {
    display: block;
    margin: 16px auto;
    text-align: center;
    color: var(--main);
    font-size: 40px;
}
#services .card h3 { margin: 24px 0 32px; }

@media (max-width: 991px) {
    #services .card { padding: 8px 0 0; }
    #services .card i[class^='fa'] { font-size: 28px; }
    #services .card h3 {
        margin: 24px 0;
        font-size: 24px;
        line-height: 28px;
    }
}
@media (max-width: 767px) {
    #services .card { padding: 0; }
    #services .card i[class^='fa'] { margin: 8px 0 0; }
}

/* ---- SECTION: PRODUCTS; ---- */
/*
#products p { max-width: 75%; font-size: 16px; line-height: 22px; }
#products .card {
    border: none;
    border-radius: 0;
    box-shadow: 0px 3px 8px rgba(0,0,0,.16);
}
.product_logo img { max-height: 60px; max-width: 180px; }
#products .card-footer {
    padding: .5rem 26px;
    background-color: transparent;
    border-top: none;
}
#products a.button { padding: 12px 24px; }*/

/* ---- SECTION: CLIENTS CAROUSEL; ---- */
.clients_list .slick-slide { padding: 0 16px; }

/* ---- SECTION: SERVICE DETAILS; ---- */
#dev-service_ux ul.fa-ul,
#dev-service_dev ul.fa-ul,
#dev-service_int ul.fa-ul {
    margin: 32px 0 0 24px !important;
}

@media (min-width: 1200px) {
    .img-stick { height: 480px; }

    .img-content img {
        position: absolute;
        top: 50%;
        height: 100%;
        transform: translateY(-50%);
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .img-content img {
        position: absolute;
        top: 50%;
        width: 100%;
        transform: translateY(-50%);
    }
}
@media (min-width: 992px) {
    #dev-service_ux:after {
        content: "";
        display: block;
        position: absolute;
        bottom: -100px;
        left: 50%;
        width: 80px;
        height: 200px;
        background-color: var(--main);
        box-shadow: 0px 6px 12px rgba(0, 0, 0, .16);
        transform: translateX(-50%);
        z-index: 1;
    }
    #dev-service_dev .order-0 { padding-left: 72px; }
    .img-stick {
        height: 440px;
        overflow: hidden;
    }
    .img-content {
        position: absolute;
        top: 0;
        width: 50%;
        height: 100%;
        overflow: hidden;
    }
    .img-content.left { left: 0; }
    .img-content.right { right: 0; }
    
    .img-content.left img { right: 0; }
    .img-content.right img { left: 0; }
}
@media (max-width: 991px) {
    #dev-service_ux,
    #dev-service_dev {
        margin-bottom: 56px;
    }
    .img-content img {
        margin-top: 24px;
        width: 100%;
    }
}

/* ---- SECTION: METHODOLOGIES; ---- */
@media (max-width: 991px) {
    #dev-methodologies h2 { text-align: center; }
}


/* ==========================================
 * Page: Operation;
 * ========================================== */
/* ---- SECTION: GENERAL SERVICES; ---- */
#op-services ul {
    list-style: none; /* Remove default bullets */
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: var(--main_font);
}
#op-services ul li::before {
    content: "\2022";
    color: var(--main);
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
#op-services .row {
    position: relative;
    text-align: right;
}
#op-services .row:before,
#op-services .row:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--gray);
}
#op-services .row:before { left: 1%; }
#op-services .row:after { left: 51%; }
#op-services .col-md-6 {
    position: relative;
    text-align: right;
}
#op-services .col-md-6 .card {
    position: relative;
    display: inline-block;
    margin: 16px 0;
    padding-left: 64px;
    width: 90%;
    text-align: left;
    box-shadow: none;
}
#op-services .col-md-6 .card:first-child { margin-top: 48px; }
#op-services .col-md-6 .card:last-child { margin-bottom: 48px; }
#op-services .col-md-6 .card:before {
    content: "";
    display: block;
    position: absolute;
    top: 28px;
    width: 18px;
    height: 18px;
    border: 4px solid var(--main);
    border-radius: 50%;
    z-index: 1;
}
#op-services .col-md-6 .card:after {
    content: "";
    display: block;
    position: absolute;
    top: 26px;
    left: -16px;
    border-top: 10px solid transparent;
    border-left: 16px solid var(--white);
    border-bottom: 10px solid transparent;
    transform: rotate(-180deg);
}
#op-services .col-md-6 .card i[class^='fa'] {
    position: absolute;
    top: 26px;
    left: 16px;
    color: var(--main);
    font-size: 40px;
}
#op-services .col-md-6 .card h4 { margin: 10px 0 16px; }

@media (min-width: 1400px) {
    #op-services .col-md-6 .card:before { left: -71px; }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    #op-services .col-md-6 .card:before { left: -63px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
    #op-services .col-md-6 .card:before { left: -56px; }
}
@media (min-width: 768px) and (max-width: 991px) {
    #op-services .col-md-6 .card:before { left: -45px; }
}
@media all and (max-width: 991px) {
    #op-services .col-md-6 .card { padding-left: 48px; }
    #op-services .col-md-6 .card i[class^='fa'] {
        font-size: 32px;
    }
    #op-services .col-md-6 .card h4 {
        font-size: 20px;
        line-height: 28px;
    }
    #op-services .col-md-6:first-child .card:last-child { margin-bottom: 16px; }
    #op-services .col-md-6:last-child .card:first-child { margin-top: 16px; }
}
@media all and (max-width: 768px) {
    #op-services .row:after { display: none; }
    #op-services .col-md-6 .card:before { left: -64px; }
    #op-services .col-md-6 .card i[class^='fa'] {
        font-size: 28px;
    }
}
@media all and (max-width: 576px) {
    #op-services .col-md-6 .card:before { left: -14.4%; }
}

/* ---- SECTION: CLOUD SERVICES; ---- */
#cloud-services .cloud_icons {
    position: absolute;
    display: inline-block;
    width: auto;
    text-align: right;
    background-color: var(--main);
    box-shadow: 0 6px 12px rgba(0,0,0,.16);
}
#cloud-services .cloud_icons i[class^='fa'] {
    color: var(--white);
}

@media (min-width: 992px) {
    #cloud-services h4.subtitle { max-width: 90%; }
    #cloud-services .row:first-child img.img-fluid { max-width: calc(100% + 12px); }
    #cloud-services .row:first-child div[class^='col']:last-child { padding-left: 80px; }
    #cloud-services .cloud_icons {
        top: 45%;
        right: -34px;
        transform: translateY(-50%);
        padding: 128px 12px 8px;
    }
    #cloud-services .cloud_icons i[class^='fa'] {
        display: block;
        margin: 24px 8px;
        font-size: 28px;
    }
}
@media (max-width: 991px) {
    #cloud-services h4 { max-width: 90%; }
    #cloud-services .row:first-child div[class^='col']:last-child {
        padding-top: 48px;
    }
    #cloud-services .cloud_icons {
        width: 90%;
        max-width: 320px;
        bottom: -28px;
        left: -5%;
        padding: 8px 12px;
    }
    #cloud-services .cloud_icons i[class^='fa'] {
        display: inline-block;
        margin: 8px 16px;
        font-size: 24px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    #cloud-services .row:first-child div[class^='col']:last-child {
        padding-left: 80px;
    }
}

/* ---- SECTION: CLOUD SERVICES LIST; ---- */
@media (min-width: 992px) {
    #cloud-serv-list .card {
        position: relative;
        display: block;
        text-align: right;
    }
    #cloud-serv-list .card .card-body {
        display: inline-block;
        text-align: left;
        width: 80%;
    }
    #cloud-serv-list .card .card-body img {
        position: absolute;
        display: block;
        top: 50%;
        left: 16px;
        width: 80px;
        transform: translateY(-50%);
    }
}

@media (max-width: 991px) {
    #cloud-serv-list .card .card-body img {
        display: block;
        width: 56px;
    }
}

/* ---- SECTION: AWS TECHNOLOGIES; ---- */
#aws-technology .card-body { padding: 16px 15px; }
.cloud_list img,
.cloud_list span { display: inline-block; vertical-align: middle; }
.cloud_list img { margin-right: 5px; width: 36px; }
.cloud_list span { width: 74%; }

.cloud_list .list-group-item { padding: 8px 0; }
.cloud_list .list-group-item:first-child { padding-top: 0; }
.cloud_list .list-group-item:last-child { padding-bottom: 0; }

@media (max-width: 991px) {
    .cloud_list { padding-left: 0; }
}


/* ==========================================
 * Page: Resident;
 * ========================================== */
/* ---- SECTION: STAFF AUGMENTATION; ---- */
#service_staff .staff_list i[class^='fa'] {
    font-size: 32px;
}
#service_staff .staff_list h5 {
    line-height: 24px;
    font-weight: 700;
}
#service_staff .staff_list p { margin: 4px 0; }

@media (max-width: 991px) {
    #service_staff2 { padding-top: 3rem; margin-bottom: 0!important; }
    #service_staff img { margin-top: 24px; }
}

/* ---- SECTION: OUTSOURCING; ---- */
#service_out p { margin: 0; }
#service_out .card-body { position: relative; padding: 80px 22px 22px; }
#service_out .card-body i[class^='fa'] {
    position: absolute;
    top: 24px;
    left: 22px;
    color: var(--main);
    font-size: 32px;
}
#service_out .card-body h4 {
    margin: 0 0 24px;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
}
#service_out .card:hover i[class^='fa'] {
    color: var(--main);
    font-size: 44px;
}
#service_out .card:hover h4 {
    color: var(--main);
}

@media (min-width: 1200px) {
    #service_out .card-body { padding: 104px 40px 40px; }
    #service_out .card-body i[class^='fa'] {
        top: 40px;
        left: 40px;
    }
}

/* ---- SECTION: PROGRAM; ---- */
#program_info ul li:not(:last-child) { margin-bottom: 36px; }
#program_info ul i[class^='fa'] {
    margin-right: 8px;
    font-size: 24px;
}
#program_info ul h6 { margin: 0 0 8px; font-weight: 700; }
#program_info ul p { margin: 0; }

@media (max-width: 991px) {
    #program_info ul li:last-child { margin-bottom: 36px; }
}


/* ==========================================
 * Page: Industries;
 * ========================================== */
/* ---- SECTION: LIST TABS; ---- */
#industry_tabs.nav-tabs .nav-link {
    padding: 16px 28px;
    margin: 0;
    color: var(--black);
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    border: none;
    border-radius: 32px;
    transition: 0.3s;
 
}
#industry_tabs.nav-tabs .nav-item.show .nav-link,
#industry_tabs.nav-tabs .nav-link.active {
    color: var(--white);
    background-color: var(--main);
    border: none;
}
#industry_tabs.nav-tabs .nav-link:not(.active):hover {
    background-color: var(--bg_blue);
    border: none;
}
#industry_tabs.nav-tabs .nav-link:focus,
#industry_tabs.nav-tabs .nav-link:active,
#industry_tabs.nav-tabs .nav-link:focus-visible {
    outline: var(--secondary) auto 1px !important;
    box-shadow: 0px 3px 6px rgba(46,96,171, .50) !important;
    border: none;
}

@media (min-width: 768px) {
    .tab_scroll { padding: 0 0 40px 0; }
    #industry_tabs { 
        margin: 8px auto;
        width: fit-content;
        border: none;
        background-color: var(--white);
        box-shadow: 0 6px 12px rgba(51,51,51,.12);
        border-radius: 32px;
       /*background: hotpink;*/
      display: flex;
      justify-content: center;
    }
}
@media (max-width: 767px) {
    .tab_scroll {
        position: relative;
        display: block;
        margin: 0 0 28px;
       
        background-color: var(--white);
        box-shadow: 0 6px 12px rgba(51,51,51,.12);
      /* background: yellow; */
   
    }
    #industry_tabs {
        padding: 16px 0;
        width: 100%;
        border: none;
       
        flex-wrap: nowrap;
         flex-direction: column;
      justify-content: center;
    }
  
  #industry_tabs.nav-tabs .nav-link{
       width: 100% !important;
  }
  

  
    #industry_tabs .nav-item:first-child {
        margin: 0;
    }
    #industry_tabs .nav-item:last-child {
        margin: 0;
    }
}

/* ---- SECTION: LIST OPTIONS; ---- */
#industry_list .tab-pane.fade {
  transition: all 0.3s;
  transform: translateY(1rem);
}
#industry_list .tab-pane.fade.show {
  transform: translateY(0rem);
}
#industry_list .industry_option {
    position: relative;
    display: block;
    padding: 0;
    color: var(--black);
}
#industry_list .industry_option .bg-img-cover {
    width: 100%;
    height: 200px;
}
#industry_list .industry_option .opt_content {
    position: absolute;
    bottom: -25px;
    margin: 0;
    padding: 4px 12px;
    width: 80%;
    min-height: 50px;
    background-color: var(--bg_gray);
    transition: 0.3s;
}
#industry_list .industry_option .opt_content h6 {
    margin: 11px 0 8px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}
#industry_list .industry_option .opt_content .opt_link {
    position: absolute;
    top: 50%;
    right: 12px;
    opacity: 0;
    padding: 0;
    color: var(--white)!important;
    text-align: right;
    transform: translateY(-50%);
    transition-duration: 0s;
    transition-delay: 0s;
}


#industry_list .industry_option:hover,
#industry_list .industry_option:active {
    color: var(--white)!important;
    box-shadow: 0 6px 12px rgba(51,51,51,.24);
    transition: box-shadow 0.3s ease-in-out;
}
#industry_list .industry_option:hover .opt_content {
    padding-right: 124px;
    width: 100%;
    background-color: var(--main);
    box-shadow: 0 6px 12px rgba(51,51,51,.24);
}
#industry_list .industry_option:hover .opt_content .opt_link {
    opacity: 1;
    transition-property: opacity;
    transition-duration: 0.3s;
    transition-delay: 0.2s;
}



/* ==========================================
 * Page: Industry detail;
 * ========================================== */
/* ---- SECTION: LIST TABS; ---- */
#industry_header { padding-top: 7rem !important; }
#industry_header nav a { font-weight: 400; }
#industry_header nav p {
    display: inline-block;
    margin: 0;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 400;
}
#industry_header nav a:not(:last-child) {
    position: relative;
    margin-right: 8px;
    color: var(--black);
}
#industry_header nav a:not(:last-child):after {
    content: "/";
    position: absolute;
    top: 50%;
    right: -8px;
    display: block;
    transform: translateY(-50%);
}
#industry_header nav a:hover:after { color: var(--black); }
#industry_header nav a:focus:after,
#industry_header nav a:focus-visible:after {
    outline: none;
    box-shadow: none;
}

/* ---- SECTION: HEADER; ---- */
#industry_cover .pf_cover_logo {
    position: absolute;
    bottom: 72px;
    right: 0;
    padding: 12px 36px 12px 24px;
    background-color: rgba(255,255,255,.85);
}
#industry_cover .pf_cover_logo img { max-height: 56px; max-width: 200px; }
#industry_data .list_dataCard { background-color: var(--main); }
#industry_data .list_dataCard .card h5 { margin: 0; }
#industry_data .list_dataCard .card p { font-size: 14px; }

@media (min-width: 992px) {
    #industry_cover { height: 480px; }
    #industry_data { margin-top: -57px }
    #industry_data .list_dataCard .card .card-header {
        padding: 32px 16px 32px 72px;
    }
}
@media (min-width: 576px) and (max-width: 991px) {
    #industry_cover { height: 320px; }
    #industry_cover .pf_cover_logo { bottom: 16px; }
    #industry_data .list_dataCard .card .card-header i[class^='fa'] {
        position: inherit;
        top: auto;
        left: auto;
        margin-bottom: 8px;
        font-size: 24px;
        transform: translateY(0);
    }
    #industry_data .list_dataCard .card .card-header {
        padding: 24px;
    }
}
@media (max-width: 575px) {
    #industry_cover { height: 280px; }
    #industry_cover .pf_cover_logo { bottom: 16px; }
    #industry_data .list_dataCard .card .card-header {
        padding: 24px 16px 24px 64px;
    }
    #industry_data .list_dataCard .card .card-header i[class^='fa'] {
        font-size: 24px;
    }
}

/* ---- SECTION: SOLUTIONS; ---- */
#industry_solution a {
    display: block;
    padding: 0;
    color: var(--black);
}
#industry_solution a .card { padding: 16px 0 16px 64px; }
#industry_solution a h6 { margin: 0; }
#industry_solution a i[class^='fa'] {
    position: absolute;
    padding: 12px 4px 4px;
    top: 50%;
    left: 16px;
    width: 48px;
    height: 48px;
    color: var(--white);
    text-align: center;
    font-size: 24px;
    background-color: var(--main);
    border-radius: 40px;
    transform: translateY(-50%);
}
#industry_solution a:hover .card {
    color: var(--black);
    background-color: var(--bg_blue);
    cursor: pointer;
}

@media (min-width: 768px) and (max-width: 991px) {
    #industry_solution div[class^='col'] { padding: 0 16px; }
    #industry_solution a .card { padding-left: 50px; }
    #industry_solution a .card .card-body { padding: 16px 8px; }
    #industry_solution a i[class^='fa'] {
        left: 12px;
        padding: 9px 4px 4px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* ---- Vector success case ---- */
#vector_01 i[class^='fa'],
#vector_02 i[class^='fa'],
#vector_03 i[class^='fa'],
#prime_01 i[class^='fa'],
#prime_02 i[class^='fa'] { color: var(--main); }

@media (max-width: 991px){
    #vector_03 { padding-top: 3rem!important; }
}


/* ==========================================
 * Page: About Us;
 * ========================================== */
/* ---- SECTION: HISTORY CAROUSEL; ---- */
/* ---- Carousel component ---- */
.events_list { margin-top: 40px; padding: 0 56px; }
.events_list .slick-slide { padding: 0 12px; }
.events_list .slick-track {
    display: flex !important;
    padding: 16px 0;
}

#timeline .events_list .slick-track {
    display: flex !important;
    padding: 16px 0;
}
.events_list .slick-slide { height: inherit !important; }

.events_list .slick-dots {
    padding: 0;
    list-style-type: none;
    text-align: center;
}
.events_list .slick-dots li {
    display: inline-block;
    margin: 4px 8px;
}
.events_list .slick-dots li button {
    padding: 0;
    width: 12px;
    height: 12px;
    color: var(--gray);
    font-size: 0px;
    background-color: var(--gray);
    border: none;
    border-radius: 50px;
}
.events_list .slick-dots li:not(.slick-active) button:hover,
.events_list .slick-dots li:not(.slick-active) button:active {
    background-color: var(--bg_blue);
}
.events_list .slick-dots li.slick-active button {
    background-color: var(--main);
}
.events_list .slick-arrow {
    position: absolute;
    top: 50%;
    padding: 32px 16px;
    color: var(--white);
    background-color: var(--main);
    transform: translateY(-50%);
    transition: 0.3s;
    z-index: 1;
}
.events_list a.slick-arrow:hover,
.events_list a.slick-arrow:active {
    color: var(--white)!important;
    background-color: var(--secondary);
}
.events_list .slick-arrow.slick-next { right: 0; }
.events_list .slick-arrow.slick-prev { left: 0; }
.events_list .slick-arrow i[class^='fa'] {
    font-size: 20px;
}
@media (min-width: 576px) and (max-width: 991px) {
    .events_list { padding: 0; }
    .events_list .slick-slide { padding: 0 8px; }
    .events_list .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    .events_list .slick-arrow { padding: 24px 12px; }
    .events_list .slick-arrow.slick-next { right: -40px; }
    .events_list .slick-arrow.slick-prev { left: -40px; }
}

/* ---- Card content ---- */
.events_list .card { height: 100%; text-align: left; }
.events_list .card .card-img-top { border-radius: 0; }
.events_list .card p { margin: 16px 0 0; font-size: 14px; line-height: 22px; }
.events_list .card .card_date {
    display: inline-block;
    padding: 4px 20px;
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    background-color: var(--gray);
    border-radius: 40px;
    box-shadow: 0 3px 12px rgba(51,51,51,.16);
}

/* ---- SECTION: US; ---- */
#about_us ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#about_us ul li {
    position: relative;
    padding: 4px 8px 4px 72px;
}
#about_us ul li:not(:last-child) {
    margin-bottom: 24px;
}
#about_us ul li i[class^='fa'] {
    position: absolute;
    top: 50%;
    left: 0;
    padding: 12px;
    color: var(--main);
    font-size: 24px;
    background-color: var(--bg_gray);
    border-radius: 50px;
    transform: translateY(-50%);
}
#about_us ul li h6 { margin: 0 0 8px; }
#about_us ul li p { margin: 0; }

@media (min-width: 992px) {
    #about_us .img-stick { height: 360px; }
    #about_us .img-stick .img-content { width: 28%; }
}
@media (min-width: 992px) and (max-width: 1199px) {
    #about_us ul li:last-child {
        margin-bottom: 24px;
    }
    #about_us .img-stick { height: 420px; }
    #about_us .img-stick .img-content { width: 45%; }
}
@media (max-width: 991px) {
    #about_us ul li:last-child {
        margin-bottom: 24px;
    }
}

/* ---- SECTION: DATA; ---- */
.list_dataCard div[class^='col'] { padding: 0; }
.list_dataCard .card { box-shadow: none; }
.list_dataCard .card .card-header {
    position: relative;
    padding: 16px 16px 16px 80px;
    color: var(--white);
    background-color: var(--main);
    border: none;
    border-radius: 0;
}
.list_dataCard .card .card-header i[class^='fa'] {
    position: absolute;
    top: 50%;
    left: 24px;
    color: var(--white);
    font-size: 32px;
    transform: translateY(-50%);
}
.list_dataCard .card h2 { margin: 0; }
.list_dataCard .card .card-body {
    padding: 24px 16px 24px 80px;
}
.list_dataCard .card h5 { margin: 0 0 8px; font-weight: 700; }
.list_dataCard .card p { margin: 0; }

@media (max-width: 1199px) {
    .list_dataCard .card .card-header,
    .list_dataCard .card .card-body {
        padding-left: 72px;
    }
    .list_dataCard .card .card-header i[class^='fa'] {
        left: 16px;
        font-size: 32px;
    }
    .list_dataCard .card h2 { font-size: 40px; }
    .list_dataCard .card h5 { margin: 0 0 4px; font-size: 18px; }
}

/* ---- SECTION: OUR GOAL; ---- */
#our_goal { position: relative; }
#our_goal:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #212121;
  opacity: 0.75;
}
#our_goal img { width: auto; max-width: 60px; }

/* ---- SECTION: OUR CERTIFICATIONS; ---- */
#our_cert .card { position: relative; box-shadow: none; }
#our_cert .cert_list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
#our_cert .cert_list li {
    padding: 24px 0;
    display: inline-block;
    width: calc(98% / 3);
    text-align: center;
}
#our_cert .cert_list li img {
    max-width: 90%;
    max-height: 100px;
}
#our_cert .card_collapse {
    margin: 24px 0;
    border-right: 8px solid var(--gray);
}
#our_cert .card_collapse .card-body { padding: 0 16px 12px; }
#our_cert .card_collapse .btn_collapse {
    position: relative;
    left: -16px;
    width: calc(100% + 32px);
    padding: 24px 16px 0;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    background-color: transparent;
    border: none;
}
#our_cert .card_collapse .btn_collapse:hover,
#our_cert .card_collapse .btn_collapse:active {
    color: var(--deep_gray);
}
#our_cert .card_collapse .btn_collapse[aria-expanded="true"] {
    color: var(--main);
}
#our_cert .card_collapse .btn_collapse i[class^='fa'] {
    position: absolute;
    top: 57%;
    right: 16px;
}
#our_cert .card_collapse .card-body p { font-size: 14px; }

@media (min-width: 992px) {
    #our_cert:not(.index_cert) .card:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100%;
        background-color: var(--white);
    }
    #our_cert:not(.index_cert) .card:first-child:before {
        top: -8px;
        height: calc(100% + 8px);
        border-top: 8px solid var(--gray);
    }
}
@media (max-width: 576px) {
    #our_cert .cert_list li {
        width: calc(98% / 2);
    }
}
@media (max-width: 299px) {
    #our_cert .cert_list li {
        width: calc(96% / 2);
    }
}

/* ---- SECTION: OUR HISTORY; ---- */
#our_history { position: relative; }
#our_history .history_shots div[class^='col'] { padding: 0; }
#our_history .main_text p { max-width: 90%; }
#our_history .helper01,
#our_history .helper02 {
    position: absolute;
    padding: 32px 16px;
    font-size: 24px;
    color: var(--white);
    background-color: var(--main);
    z-index: 10;
}
#our_history .helper01 {
    top: 25%;
    left: -56px;
    transform: translateY(-35%);
}
#our_history .helper02 {
    bottom: -44px;
    left: 50%;
    transform: translateX(-70%);
}

@media (max-width: 1199px) {
    #our_history .history_shots:nth-child(1) .bg-img-cover:nth-child(2) {
        background-position: center right;
    }
}
@media (max-width: 991px) {
    #our_history .main_text { padding-bottom: 64px; }
    #our_history .history_shots { padding: 0 24px !important; }
    #our_history .helper01,
    #our_history .helper02 {
        position: absolute;
        padding: 16px 32px;
        transform: none;
    }
    #our_history .helper01:before,
    #our_history .helper02:before { content: "\f103"; }
    #our_history .helper01 {
        top: -56px;
        left: 38px;
    }
    #our_history .helper02 {
        bottom: -29px;
        left: inherit;
        right: 38px;
    }
}
@media (max-width: 767px) {
    #our_history .history_shots .bg-img-cover { height: 240px; }
    #our_history .history_shots .bg-img-cover.sp_img {
        display: none;
    }
}


/* ==========================================
 * Page: Contact;
 * ========================================== */
/* ---- SECTION: CONTACT FORM; ---- */
form {
    position: relative; 
    text-align: left;
    margin-top: 94px;
    padding: 48px 20px 24px 24px;
    background-color: var(--white);
    box-shadow: 0px 3px 8px rgba(0,0,0,.16);
}
form img {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
}

/* ---- Labels ---- */
form label {
    display: block;
    margin: 0;
    color: var(--black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
form .hs-form-required { padding-left: 4px; color: var(--red); }

/* ---- Main input style and textbox ---- */
form .input .hs-input:not(.hs-fieldtype-intl-phone) {
    min-width: 95%;
    margin: 4px 0;
    height: 42px;
    padding: 4px 8px;

    color: var(--black);
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    background-color: var(--bg_gray);
    border: 1px solid var(--gray);
    border-radius: 4px;
}
form .input textarea.hs-input {
    padding: 16px;
    min-height: 140px;
    resize: none;
}
form .input .hs-input::placeholder {
    color: #B5B5B5;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}
form .input .hs-input:not(:disabled):focus,
form .input .hs-input:not(:disabled):active {
    border-color: var(--main);
    outline: 0;
    box-shadow: none;
}
form .input .hs-input:disabled,
form .input input.hs-input:read-only,
form .input .hs-input:read-only:focus,
form .input .hs-input:read-only:active {
    border-color: var(--gray);
    outline: 0;
    cursor: default;
}

/* ---- Select style ---- */
form .input select.hs-input {
    display: block;
    margin: 4px 0;
    height: 42px;
    padding: 4px 36px 4px 8px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    background-color: var(--bg_gray);
    border: 1px solid var(--gray);
    border-radius: 4px;
}
form select.hs-input:focus, form select.hs-input:focus-visible {
    border-color: var(--main);
    outline: var(--secondary) auto 1px !important;
    box-shadow: 0px 3px 6px rgba(46,96,171, .50) !important;
}

/* ---- Phone input style ---- */
form .hs-input.hs-fieldtype-intl-phone { position: relative; }
form .hs-input.hs-fieldtype-intl-phone select.hs-input {
    position: absolute; 
    bottom: 8px;
    left: 1px;
    min-width: 120px!important;
    max-width: 120px!important;
    margin: 0;
    height: 34px;
    border: none!important;
    border-right: 1px solid var(--gray)!important;
    border-radius: 4px 0 0 4px;
}
form .hs-input.hs-fieldtype-intl-phone input.hs-input {
    padding-left: 128px!important;
    width: 100%!important;
}

/* ---- Button ---- */
form .button { padding: 12px 16px; min-width: 220px; }

/* ---- Error style ---- */
form .input .hs-input.error,
form .input .hs-input.error:not(:disabled):active,
form .input .hs-input.error:not(:disabled):focus {
    border-color: var(--red);
}
form .hs-error-msgs {
    padding: 0;
    margin-bottom: 4px;
    list-style-type: none;
}
form .hs-error-msgs label {
    color: var(--red);
    font-size: 12px;
    line-height: 18px;
}

/* ---- Submit button ---- */
form .actions { text-align: center; }
form input[type="submit"] {
    position: relative;
    display: inline-block;
    margin: 0;
    min-width: 40px;
    padding: 12px 20px;

    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--main_font);
    text-align: center;
    text-decoration: none;

    color: var(--white);
    background-color: var(--main);
    border: 1px solid transparent;
    border-radius: 8px;
    transition: 0.3s;
}
form input[type="submit"]:hover,
form input[type="submit"]:active {
    color: var(--white);
    background-color: var(--secondary);
    box-shadow: 0 3px 8px rgba(0,0,0,.12);
}

#contact form .field { margin: 8px 0;}
#contact form input[type="submit"] { margin-top: 16px; }

@media (max-width: 767px) {
    #contact form .field { width: 100%; }
    form .input .hs-input:not(.hs-fieldtype-intl-phone) {
      min-width: 100%;
    }
}

/* ---- SECTION: ADDRESSES; ---- */
#address h3 { margin: 0 0 40px; }
#address h6 {
    margin: 0 0 4px;
    font-weight: 700;
}
#address .bg-primary { color: var(--white); }
#address .bg-primary a {
    padding: 4px 0;
    color: var(--white)!important;
}
#address .bg-primary i[class^='fa'] {
    padding: 12px;
    color: var(--main);
    font-size: 24px;
    background-color: var(--white);
    border-radius: 50px;
}
#address .card-header,
#address .card-footer {
    padding: 0;
    background-color: var(--white);
    border: none;
}
#address .card-footer {
    padding: 0 8px 8px;
}
#address .card-body p { margin: 4px 0 0; }

@media (min-width: 1199px) {
    #address .bg-primary { padding: 24px 48px; }
}

/* ---- SECTION: JOIN THE TEAM; ---- */
#join_us ul {
    list-style-type: none;
    margin: 40px 0 36px;
    padding: 0;
    max-width: 90%;
}
#join_us ul li {
    display: block;
    padding: 12px 16px;
    background-color: var(--white);
    border-left: 8px solid var(--gray);
}
#join_us h5 {
    position: absolute;
    top: 54%;
    left: 0;
    transform: translateY(-50%);
    margin: 0;
    padding-left: 12%;
    width: 70%;
    color: var(--white);
    z-index: 10;
}
#join_us .img-stick { height: auto!important; }

@media (max-width: 1399px) {
    #join_us h5 {
        padding-left: 15%;
        width: 85%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    #join_us h5 {
        padding-left: 11%;
        width: 70%;
    }
}
@media (max-width: 991px) {
    #join_us { padding-bottom: 0!important;  }
    #join_us .img-content { position: relative; padding-top: 24px; }
    #join_us h5 {
        padding-left: 13%;
        width: 65%;
    }
}


/* ==========================================
 * Page: Blog;
 * ========================================== */
/* ---- SECTION: ENTRY HEADER; ---- */
.blog_subtitle a {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}
#blog .container {
    position: relative;
    top: -104px;
    margin-bottom: -104px;
}

/* ---- SECTION: ENTRY LIST; ---- */
.item_cover {
    margin-left: -16px;
    height: 220px;
    width: calc(100% + 32px);
}
.blog_list a {
    display: block;
    padding: 0 16px 6px 16px;
    color: var(--black);
    transition: 0.3s;
}
#blog .blog_list a:visited { color: var(--black); }
#blog .blog_list a:hover,
#blog .blog_list a:active {
    color: var(--black)!important;
    box-shadow: 0px 3px 8px rgba(0,0,0,.16);
}

/* ---- Entry content ---- */
.entry_title { transition: 0.3s; }
#blog .blog_list a:hover .entry_title,
#blog .blog_list a:active .entry_title {
    color: var(--main);
}
.entry_date {
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: 12px;
}

/* ---- Newest entry style ---- */
@media (min-width: 992px){
    #blog .blog_list div.new_entry a {
        padding: 0 16px;
    }
    #blog .blog_list div.new_entry .item_cover {
        display: inline-block;
        vertical-align: bottom;
        margin-left: -16px;
        margin-right: 24px;
        height: 280px;
        width: 50%;
    }
    #blog .blog_list div.new_entry .content {
        display: inline-block;
        vertical-align: bottom;
        width: 44%;
    }
}

/* ---- Pagination ---- */
.blog_pagination .blog-pagination__link {
    display: inline-block;
    margin: 0 4px;
    width: 40px;
    height: 40px;
    padding: 8px 0;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid transparent;
    border-radius: 4px;
}
.blog_pagination a.blog-pagination__link:hover,
.blog_pagination a.blog-pagination__link:active {
    background-color: var(--bg_blue);
}
.blog_pagination .blog-pagination__link.blog-pagination__prev-link--disabled {
    color: var(--gray);
    cursor: not-allowed;
    background-color: transparent;
}
.blog_pagination a.blog-pagination__number-link {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    border-color: var(--bg_blue);
    transition: 0.3s;
}
.blog_pagination a.blog-pagination__link--active,
.blog_pagination a.blog-pagination__number-link:hover,
.blog_pagination a.blog-pagination__number-link:active {
    color: var(--secondary)!important;
    background-color: var(--bg_blue);
}


/* ==========================================
 * Page: Blog entry;
 * ========================================== */
/* ---- SECTION: COVER; ---- */
#blog_entry_cover { position: relative; height: 360px; }
#blog_entry_cover p {
    position: absolute;
    bottom: 24px;
    right: 0;
    padding: 12px 36px 12px 24px;
    background-color: rgba(255,255,255,.85);
}
#blog_entry_cover p a { padding: 2px; }

#blog_entry .entry_content p { margin: 16px 0; }
#blog_entry .entry_content p:first-child { margin-top: 0; }
#blog_entry .entry_content a {
  padding: 2px;
  font-size: 16px;
  line-height: 22px;
}

/* ---- SECTION: AUTHOR CARD; ---- */
#blog_author.card {
    text-align: center;
    transition: 0s;
}
#blog_author .card-body { padding: 16px 48px; }
#blog_author.card .bg-img-cover {
    margin: 0 auto 24px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* ---- SECTION: PRODUCT CARD; ---- */
.product_card a { padding: 0; }
.product_card .card-body { position: relative; overflow: hidden; }
.product_card.type1 .card-body { padding: 32px 32px 50px 24px; }
.product_card.type2 .card-body { padding: 40px 32px 40px 24px; }
.product_card.type2 .card-body {
    background-position: right bottom;
    background-size: auto 190px;
    background-repeat: no-repeat;
}
.product_card .card-body img {
    width: 80%;
    max-width: 140px;
}
.product_card .card-body h6 {
    margin: 24px 0 16px;
    font-weight: 500;
}
.product_card .card-body p.arrow {
    position: absolute;
    margin: 0;
    color: var(--white);
}
.product_card.type1 .card-body p.arrow {
    bottom: 0;
    right: 0;
    width: 60px;
    height: 50px;
    text-align: center;
}
.product_card.type1 .card-body p.arrow i[class^='fa'] { margin-top: 14px; font-size: 20px; }
.product_card.type2 .card-body p.arrow {
    bottom: -58px;
    right: -36px;
    width: 200px;
    height: 110px;
    transform: rotate(-28deg);
    text-align: right;
}
.product_card.type2 .card-body p.arrow i[class^='fa'] {
    margin-top: 22px;
    margin-right: 55px;
    font-size: 22px;
    transform: rotate(28deg);
}

.product_card .card-body p.arrow.gold { background-color: #f0a500; }
.product_card .card-body p.arrow.green { background-color: #26b14b; }
.product_card .card-body p.arrow.aqua { background-color: #35D0BA; }

.product_card a:hover p.arrow.gold,
.product_card a:active p.arrow.gold { color: var(--white); background-color: #CE8E00; }
.product_card a:hover p.arrow.green,
.product_card a:active p.arrow.green { color: var(--white); background-color: #1FA242; }
.product_card a:hover p.arrow.aqua,
.product_card a:active p.arrow.aqua { color: var(--white); background-color: #27B29E; }

/* ---- SECTION: MORE ENTRIES CARD; ---- */
#blog_entry .card.entry_card { margin: 16px 0; padding-left: 100px; }
#blog_entry .card.entry_card .card-body { padding: 16px 8px; }
#blog_entry .card.entry_card .card-img-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    overflow: hidden;
}
#blog_entry .card.entry_card .card-img-left img {
    position: absolute;
    top: -5%;
    left: 50%;
    width: auto;
    min-height: 110%;
    transform: translateX(-50%);
}
#blog_entry .card.entry_card h6 { margin: 16px 0 0; font-size: 16px; }
#blog_entry .card.entry_card p { margin: 0; font-size: 14px; }

#blog_entry .card.entry_card a,
#blog_entry .card.entry_card a:visited,
#blog_entry .card.entry_card a:hover .card-text,
#blog_entry .card.entry_card a:active .card-text { color: var(--black); }

@media (max-width: 991px){
    #blog_entry .pe-5 { padding-left: 12px!important; }
    
    /* ---- Author card ---- */
    #blog_author.card {
        text-align: left;
        transition: 0s;
    }
    #blog_author.card .card-body { padding: 24px 16px 24px 110px; }
    #blog_author.card .bg-img-cover {
        position: absolute;
        top: 50%;
        left: 16px;
        width: 80px;
        height: 80px;
        transform: translateY(-50%);
    }
}


/* ==========================================
 * Page: Privacy;
 * ========================================== */
/* ---- SECTION: CARD INFO; ---- */
#priv_main .container {
    position: relative;
    top: -124px;
    margin-bottom: -124px;
}
#priv_content p { margin: 16px 0; }
#priv_content i[class^='fa'] { color: var(--main); }
#priv_content a {
    padding: 0 4px;
    font-size: 16px;
}




 /*=============================================
 =            NEW STYLES 19-06-2023            =
 =============================================*/ 

.flex {
  display: flex;
}

.flex__x-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



 /*=============================================
 =            SECTION: HOME - INDEX            =
 =============================================*/ 

.grid-services{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: minmax(375px, auto) minmax(375px, auto) minmax(272px, auto) ;
  gap: 24px 16px;
  grid-auto-flow: row;
  padding-top: 25px;
  padding-bottom: 52px;
  
}

@media screen and (max-width: 992px) {
  .grid-services {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(375px, auto) minmax(375px, auto) minmax(375px, auto) minmax(272px, auto) ;
  }
}

@media screen and (max-width: 768px) {
  .grid-services {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(272px, auto) minmax(375px, auto) minmax(272px, auto) minmax(375px, auto) minmax(272px, auto) minmax(272px, auto) minmax(272px, auto) minmax(272px, auto) ;
  }
}

@media screen and (max-width: 576px) {
  
}


.card-service{
  margin: 0 !important;
  padding: 40px !important;
  box-sizing: border-box !important;

  transition: .3s !important;
}

.card-service h3{
  margin-top: 0 !important;
}

.card-service__body{
  margin: 0 !important;
  padding: 0 !important;
}

.card-service__footer{
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

.card-service--medium {
  min-height: 375px !important;
}

.card-service--small {
  min-height: 272px !important;
}

.card-image-service {
  margin: 0 !important;
  width: 100%;
  height: calc(100% );
  
  object-fit:cover;
  
}

.card-360 {
  perspective: 150rem;
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0;
}

.card-side {
  height: 35rem;
  border-radius: 15px;
  transition: all .7s cubic-bezier(0.25, 0.68, 0.35, 1.05) 0s;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px 40px 40px 40px;
  color: white;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  box-shadow: 0px 3px 8px rgba(0,0,0,.16);
}

.card-side .services{
  margin-left: 0px !important;
}

.card-side__back {
  transform: rotateY(-180deg);
  padding: 30px 40px 40px 40px;
  color: #343434;
}

.card-side__front {
  background-color: white;
}

.card-360:hover .card-side__front {
  transform: rotateY(180deg);
}

.card-360:hover .card-side__back {
  transform: rotateY(0deg);
}

.card-side__image{
  height: 31px;
}

.card-side__subtitle{
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #343434;
  margin-top: 0px;
  margin-bottom: 24px;
}

.card-side__title{
  font-size: 32px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #343434;
  margin-top: 32px;
}

.card-side__button{
  position: absolute;
  bottom: 40px; 
  right: 40px;
  width: 48px;
  height: 40px;
  
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.75;
  letter-spacing: normal;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0071ff;
}

.card-flex{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}


/* ---- Success Stories ---- */

.grid-panel--1{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 296px 378px;
  gap: 16px;
  grid-template-areas:
    "A  A A B B B C C C D D D"
    "A  A A E E E E E E F F F";
}

.grid-panel--1-5{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 296px 378px;
  gap: 16px;
  grid-template-areas:
    "A  A A B B B C C C D D D"
    "A  A A E E E E E E F F F";
}

.grid-panel--2{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 378px 296px;
  gap: 16px;
  grid-template-areas:
    "A  A A E E E E E E D D D"
    "A  A A B B B C C C F F F";
}

.grid-panel--3{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 378px 296px;
  gap: 16px;
  grid-template-areas:
    "A  A A A B B B B C C C C"
    "A  A A A B B B B C C C C";
}

.grid-panel--4{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 378px 296px;
  gap: 16px;
  grid-template-areas:
    "A  A A B B B C C C D D D"
    "A  A A E E E F F F G G G";
}

.grid-panel--5{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 378px 296px;
  gap: 16px;
  grid-template-areas:
    "A  A A A B B B B C C C C"
    "A  A A A B B B B C C C C";
}

@media screen and (max-width: 1200px) {
  .grid-panel--1{
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 296px 378px 378px;
    gap: 16px;
    grid-template-areas:
      "A  A A A B B B B C C C C"
      "A  A A A D D D D F F F F"
      "E  E E E E E E E E E E E";
  }
  
  .grid-panel--1-5{
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 296px 378px 378px;
    gap: 16px;
    grid-template-areas:
      "A  A A A D D D D C C C C"
      "A  A A A B B B B F F F F"
      "E  E E E E E E E E E E E";
  }
  
  .grid-panel--2{
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 378px 296px 378px;
    gap: 16px;
    grid-template-areas:
      "E  E E E E E E E E E E E"
      "A  A A A B B B B C C C C"
      "A  A A A D D D D F F F F";
  }
  
  .grid-panel--3{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 378px 296px;
    gap: 16px;
    grid-template-areas:
      "A  A A A B B B B C C C C"
      "A  A A A B B B B C C C C";
  }
}

@media screen and (max-width: 992px) {
  .grid-panel--1{
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 378px 296px 378px 378px;
    gap: 16px;
    grid-template-areas:
      "A  A A A A A A A A A A A"
      "B B B B  B B C C C C C C"
      "D D D D  D D F F F F F F"
      "E  E E E E E E E E E E E";
      
  }
  
  .grid-panel--1-5{
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 296px 378px 378px 378px;
    gap: 16px;
        grid-template-areas:
      "A  A A A A A A A A A A A"
      "B B B B  B B C C C C C C"
      "D D D D  D D F F F F F F"
      "E  E E E E E E E E E E E";
  }
  
  .grid-panel--2{
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 378px 378px 296px  378px;
    gap: 16px;
    grid-template-areas:
      "A  A A A A A A A A A A A"
      "B B B B  B B C C C C C C"
      "D D D D  D D F F F F F F"
      "E  E E E E E E E E E E E";
      
  }
  
  .grid-panel--5{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 378px 296px;
    gap: 16px;
    grid-template-areas:
      "A  A A A A A B B B B B B"
      "A  A A A A A B B B B B B";
  }
}

@media screen and (max-width: 768px) {
  /*
  .grid-panel--1{
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows:  378px 296px 378px 378px;
    gap: 16px;
    grid-template-areas:
      "A  A A A A A A A A A A A"
      "B B B B  B B C C C C C C"
      "D D D D  D D F F F F F F"
      "E  E E E E E E E E E E E";
  }
  */
  .grid-panel--1-5{
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 296px 378px 378px 378px;
    gap: 16px;
    gap: 16px;
        grid-template-areas:
      "A  A A A A A A A A A A A"
      "B B B B  B B C C C C C C"
      "D D D D  D D F F F F F F"
      "E  E E E E E E E E E E E";
  }
  
  .grid-panel--3{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 378px 378px 378px;
    gap: 16px;
    grid-template-areas:
       "A  A A A A A A A A A A A"
      "B  B B B B B B B B B B B"
      "C  C C C C C C C C C C C";
  }
  
  .grid-panel--5{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 296px 296px;
    gap: 16px;
    grid-template-areas:
      "A  A A A A A A A A A A A"
      "B  B B B B B B B B B B B";
  }
}

@media screen and (max-width: 580px) {
  .grid-panel--1{
    grid-template-columns: repeat(12, 1fr);
     grid-auto-rows:  378px 296px 296px 378px 678px 378px;
    gap: 16px;
     grid-template-areas:
      "A  A A A A A A A A A A A"
      "B  B B B B B B B B B B B"
      "C  C C C C C C C C C C C"
      "D  D D D D D D D D D D D"
      "E  E E E E E E E E E E E"
      "F  F F F F F F F F F F F"
  }
  
  .grid-panel--1-5{
    grid-template-columns: repeat(12, 1fr);
     grid-auto-rows:  550px 296px 296px 378px 378px 378px;
    gap: 16px;
     grid-template-areas:
      "A  A A A A A A A A A A A"
      "B  B B B B B B B B B B B"
      "C  C C C C C C C C C C C"
      "D  D D D D D D D D D D D"
      "E  E E E E E E E E E E E"
      "F  F F F F F F F F F F F"
  }
  
  .grid-panel--2{
    grid-template-columns: repeat(12, 1fr);
     grid-auto-rows:  378px 378px 378px 296px 296px 296pX;
    gap: 16px;
     grid-template-areas:
      "A  A A A A A A A A A A A"
      "E  E E E E E E E E E E E"
      "B  B B B B B B B B B B B"
      "C  C C C C C C C C C C C"
      "D  D D D D D D D D D D D"
      "F  F F F F F F F F F F F"
  }
}

.grid-panel__itemA {
  grid-area: A;
}

.grid-panel__itemB {
  grid-area: B;
}

.grid-panel__itemC {
  grid-area: C;
}

.grid-panel__itemD {
  grid-area: D;
}

.grid-panel__itemE {
  grid-area: E;
}

.grid-panel__itemF {
  grid-area: F;
}




 /*=============================================
 =              SECTION: HISTORY               =
 =============================================*/ 

.history__description {

  width: 70%;
  height: auto;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500 !important;
  font-stretch: normal;
  font-style: normal;
  line-height: 26px !important;
  letter-spacing: normal;
  text-align: center;
  color: #343434;
  
  line-height: 10.38;
  letter-spacing: normal;
  text-align: center;
  color: #343434;
}


p.history__description {
  line-height: 26px !important;
}

.citi-reasons{
  padding-top: 72px;
  padding-right: 20px;
}

.list-reasons{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows:  1fr;
  gap: 26px 16px;
}

.citi-reasons__item{
  display: flex;
  align-items: flex-start;
  padding: 0 !important;
  padding-bottom: 0px !important;
  margin: 0 !important;
}

.citi-reasons__container-icon{
  min-width: 62px !important;
  height: auto;
  flex-basis: 0;
}


.citi-reasons__container-icon > i[class^='fa'] {
    position: relative !important;
    padding: 0px !important;
    color: var(--main) !important;
    font-size: 40px !important;
    background-color: transparent !important;
    border-radius: 0px !important;
    transform: translateY(0%) !important;
}

.citi-reasons__container-list{
  width: 100%;
  flex: 1;
}


@media screen and (max-width: 1200px) {
  .citi-reasons{
    padding-top: 0px;
    padding-right: 50px;
  }
  
  .list-reasons{
    grid-auto-rows:  auto;
  }
}

@media screen and (max-width: 992px) {
  .history__description {
    width: 80%;
  }
  
  .citi-reasons{
    padding: 0px;
  }
}

@media screen and (max-width: 768px) {
  .history__description {
    width: 100%;
  }
  
  .list-reasons{
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows:  auto;
  }
  
}

@media screen and (max-width: 576px) {
  .history__description {
    width: 100%;
  }
}


/*------------------LISTS ul li  GENERAL-------------------*/

.services {
  list-style: none !important;
  margin-left: 0 !important;
  padding-left: 16px !important;
  text-indent: -16px;
}

.services__element {
  font-size: 16px;
  line-height: 22px;
}

.services__element::before {
  content: "\2022" !important;
  color: #1c78ef !important;
  font-weight: bold !important;
  margin-right: 4.25px;
  font-size: 26px;
  vertical-align: text-bottom;
}

.services span{
  font-weight: bold;
  color: #0e75f7;
}

/*------------------LISTS ul li  VARIATION numbers-------------------*/

.ordered-list {
  list-style: none;
  margin-left: 0;
  padding-left: 24px;
  text-indent: -23px;
}

.ordered-list__element {
  font-size: 14px;
  line-height: 22px;
}

.ordered-list__element-1::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cg data-name='Grupo 2623' transform='translate(1 1)'%3E%3Ccircle data-name='Elipse 138' cx='7' cy='7' r='7' transform='translate(-1 -1)' style='fill:%23ebf3fe'/%3E%3Ctext data-name='1' style='fill:%231c78ef;font-size:10px;font-family:Arial;font-weight:800'%3E%3Ctspan x='3.013' y='10'%3E1%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E%0A") ;
  margin-right: 8.58px;
  font-size: 26px;
  vertical-align: text-bottom;
}

.ordered-list__element-2::before {
  content: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cg data-name='Grupo 2622' transform='translate(1 1)'%3E%3Ccircle data-name='Elipse 138' cx='7' cy='7' r='7' transform='translate(-1 -1)' style='fill:%23ebf3fe'/%3E%3Ctext data-name='2' style='fill:%231c78ef;font-size:10px;font-family:Arial;font-weight:800'%3E%3Ctspan x='2.81' y='10'%3E2%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E%0A");
  margin-right: 8.58px;
  font-size: 26px;
  vertical-align: text-bottom;
}

.ordered-list__element-3::before {
  content: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cg data-name='Grupo 2624' transform='translate(1 1)'%3E%3Ccircle data-name='Elipse 138' cx='7' cy='7' r='7' transform='translate(-1 -1)' style='fill:%23ebf3fe'/%3E%3Ctext data-name='3' style='fill:%231c78ef;font-size:10px;font-family:Arial;font-weight:800'%3E%3Ctspan x='2.665' y='10'%3E3%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E%0A");
  margin-right: 8.58px;
  font-size: 26px;
  vertical-align: text-bottom;
}

.ordered-list span{
  font-weight: bold;
  color: #0e75f7;
}

/*------------------TAGS-------------------*/

.container-tag{
  display: flex;
  gap: 16px;
  color: white;
  align-items: flex-end;
}

.container-tag--column{
  flex-direction: column;
}

.container-tag--row{
  
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  flex-flow: row wrap;
}

.tag{
  max-height: 29px;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 14.5px;
  display:flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  flex-basis: max-content;
}

.tag--color-1{
    background-color: #5d9ac1;
}

.tag--color-2{
    background-color: #1c78ef;
}

.tag--color-3{
    background-color: #3762a1;
}

.tag--color-4{
    background-color: #354a9c;
}

/*------------------TESTIMONIALS-------------------*/

.grid-testimonials{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 8px;
  grid-auto-flow: row;
}

@media screen and (max-width: 992px) {
  .grid-testimonials {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}

@media screen and (max-width: 768px) {
  .grid-testimonials {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
  }
}

@media screen and (max-width: 576px) {
  
}

.card-testimonials{
  width: 100%;
  height: auto;
  min-height: 381px;
  margin: 0 !important;
  padding: 40px !important;
  box-sizing: border-box;
}

.card-testimonials__body{
  display: flex !important;
  flex-direction: column !important;
  padding:0 !important;
   justify-content: space-between !important;
  box-sizing: border-box;
}

.card-testimonials__title{
  font-family: Inter;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center;
  color: #343434;
  margin: 0;
  margin-bottom: 8px;
}

.card-testimonials__subtitle{
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  text-align: center;
  color: #a8a8a8;
  margin: 0;
  margin-bottom: 27px;
  flex: 1;
}

.card-testimonials__video{
  width: 100%;
  min-height: 195px;
  height: auto;
  flex: 1;
}

/*------------------STAFF AUGMENTATION-------------------*/

.fa-ul li{
  display: flex !important;
 
}
.fa-li{
  min-width: 40px;
   flex-basis: 0;
  position: relative;
  left: 0;
  display: flex;
  justify-content: flex-star;
}

.fa-li i{
  font-size: 24px;
}

/*------------------DIGITAL SOLUTIONS-------------------*/

.section__digital-solutions{
 padding-bottom: 115px; 
 
}

.section__digital-solutions--2{
 padding: 64px 43px 80px 43px !important; 
   text-align: center;
}

.grid-digital-solutions{
  display: flex;
  padding: 0 90px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  background: transparent;
   gap: 196px 16px !important;
}


@media screen and (max-width: 1200px) {
  .grid-digital-solutions{
      padding: 0 100px;
  }

}


@media screen and (max-width: 768px) {
  .grid-digital-solutions{
     gap: 196px 16px !important;
      padding: 0 100px;
  }
  
  .section__digital-solutions--2{
   padding: 64px 25px 80px 25px !important; 
     text-align: center;
  }

}


@media screen and (max-width: 576px) {
    .grid-digital-solutions{
       gap: 196px 16px !important;
       padding: 0 0px;
       gap: 156px 16px !important;
    }
  .card-solutions{
    width: 100% !important;
    height: auto !important;

  }
}


.card-solutions{
  width: 324px !important;
  height: 369px;
  margin: 0 !important;
  padding: 48px 30px !important;
  box-sizing: border-box !important;
    margin-top: -134px !important;
  transition: .3s !important;
  
}

.card-solutions h3{
  margin-top: 0 !important;
}


.card-solutions__body{
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  gap: 24px !important;

}

.card-solutions__body span{
 height: 100%;
  flex-basis: 0;
  flex:1;
}

.card-solutions__body i[class^='fa']{

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 !important;
  text-align: center;
  color: var(--main);
  font-size: 40px;
}

.card-solutions__text{ 
  height: 100%;
  flex-basis: 0;
  flex:1;
  display: flex;
  flex-direction: column;
}


.card-solutions__text > *{ 
  height: 100%;
  flex-basis: 0;
  flex:1;
}


.card-ts{
  height: 650px !important;
  padding: 30px 40px !important;
}

.card-ts .client_title{ 
margin-bottom: 32px !important;
}



.card-ts__footer{
  width: 100%;
  display: flex;
  align-items: flex-end;
    flex-direction: row-reverse;
}

.card-ts__logo{
  height: 30px
}

.digital-solutions__contact{
 
  padding: 88px 0 124px 0 !important;
}


/*------------------ Managed IT Services -------------------*/


@media screen and (max-width: 576px) {
    .main__title{
      font-size: 40px;
    }
}


.it-services__container{
 
  padding-top: 10px;
}

.it-service__subtitle-legend{
  padding: 88px 259px; 
}


@media screen and (max-width: 1200px) {
   .it-service__subtitle-legend{
      padding: 88px 150px; 
    }
}


@media screen and (max-width: 768px) {
  .it-service__subtitle-legend{
      padding: 88px 80px; 
    }
  
  .it-service__subtitle-legend  h3{
      font-size: 24px;
  }
}


@media screen and (max-width: 576px) {
   .it-service__subtitle-legend{
      padding: 40px 40px; 
    }
}

.card-tooltip__footer{
  width: 100%;
  padding: 0 25px 25px 0;
}

.card-tooltip__footer a{
   display:flex !important;
  justify-content: flex-end !important;
  align-items: center !important; 
  gap: 6px !important;
  
}


.card-tooltip__footer a i[class^='fa'] {
  margin: 0 !important;
  padding:0 !important;
  top:0 !important;
  left:0 !important;
    position: relative !important;
    color: var(--main) !important;
    font-size: 14px !important;
}


.service__description{
  display: flex;
  flex-direction: column;
  gap: 40px;
}




.grid-description-service {

  display:flex;
  padding: 64px 0px 0 0px;
    gap: 0px;
}


.grid-description-service--02 {
  padding: 64px 0px 35px 0px;
}


.grid-description-service > *{
  flex: 50%;
  box-sizing: border-box;
  position:relative;
}


.title-it-description{
  margin: 0;
 margin-bottom: 47px !important; 
  width:75% !important;
}


.container-img-it-description{
  position: relative;
  height: 100%;
}

.container-text-it-description{
  padding: 0 0 0 90px;
}

.container-text-it-description--left{
  padding: 0px 45px 0px 0px!important;
}


.img-it-description--01{
  width: 100%;
  height: auto;
  position: relative;
   display:flex;
  flex-direction: column;
}

.img-it-description--02, .img-it-description--03{
  display: flex;
}



.img-it-description--01::after{
  position: absolute;
  content: " ";
  top:-99px;
  right:-48px;
  
  width: 96px;
  height: 261px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
  background-color: #0071ff;
}


.img-it-description--02::before{
  position: absolute;
  content: " ";
  top:-42px;
  right:0px;
  
  width: 96px;
  height: 100px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
  background-color: #0071ff;
}


.img-it-description--02::after{
  position: absolute;
  content: " ";
  bottom:-21px;
  left:-56px;
  
  width: 96px;
  height: 100px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
  background-color: #0071ff;
}


.img-it-description--03::before{
  position: absolute;
  content: " ";
  top:79px;
  right:-56px;
  
  width: 96px;
  height: 152px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
  background-color: #0071ff;
}


.img-it-description--03::after{
  position: absolute;
  content: " ";
  bottom:-66px;
  left:0px;
  
  width: 96px;
  height: 100px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
  background-color: #0071ff;
}




.description__title{
  font-family: Inter;
  font-size: 32px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #646262;
}


.description__list{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
    
.description__list-item{
   

  display: flex;
  justify-content: center;
}


.description__list-item i[class^='fa'] {
  width: 60px;
  font-size: 32px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #306ff6;
  text-align: left;
}


.description__list-item p{
   font-family: Inter;
  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #343434;
  flex:1;
  margin-top: 0px;

}


.service-it__slot-card {
  padding: 90px 113px 64px;
  display: flex !important;
  justify-content: center !important;
  align-items: stretch;
  gap: 40px;
}

.service-it__slot-card--02 {
  padding: 51px 0px 61px 0px;
  gap: 16px;
}

.service-it__slot-card--03 {
  padding-top: 0px;
  gap: 40px;
}


.service-it-card{
  width: 100% !important;
  min-height: 212px !important;
  background: white;
  box-shadow: 0px 3px 8px rgba(0,0,0,.16);
}

.service-it-card__body{
  width: 100%;
  height: inherit;
  display: flex !important;

  justify-content: space-betweeen;
  gap: 40px;
  box-sizing: border-box;
   padding: 24px 32px;
}

.service-it-card__body--02{
  flex-direction: column;
  padding: 40px ;
}


.service-it__slot-image {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.service-it__slot-image--02 {
  justify-content: flex-start;
}


.service-it__slot-image-box {
  width: 88px;
  height: 88px;
 
  background-color: #f9f9f9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}



.service-it__slot-image  i[class^='fa'] {
    
    font-size: 40px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #306ff6;
}

.service-it__slot-text{
  
}

.service-it__slot-text h4{
  margin: 0;
  margin-bottom: 10px;
}



@media screen and (max-width: 1200px) {
  .service-it__slot-card {
  padding: 90px 64px 64px;
  }
  
 .description__list{
  display: flex;
  flex-direction: column;
  gap: 20px;
  }
  
  .service-it-card__body{
    padding: 25px !important;
  } 
  
  .service-it-card__body--02{
    padding: 40px !important;
  } 
  
  .img-it-description--03::after{
    bottom:-10px;
    left:0px;
  }

}


@media screen and (max-width: 992px) {
  .grid-description-service {
    display: flex;
    padding: 64px 20px 64px 20px;
    gap: 0px;
    flex-direction: column;
  }
  
  .service-it__slot-card--02 {
    padding: 51px 40px 61px 40px;
    gap: 16px;
    flex-direction:column;
  }
  
  .service-it__slot-card--03 {
    padding-top: 0px;
  }

  
  .container-text-it-description{
    padding: 0 0 0 0px;
  }
  


  .service-it-card__body{
    flex-direction: column;
    gap: 20px;
  }


}


@media screen and (max-width: 768px) {
  .description__list-item p{
    font-size: 20px;
  }
  
  .service-it__slot-card {
    padding: 90px 40px 64px;
  }
  
  .service-it__slot-card--03 {
    padding-top: 0px;
  }

}


@media screen and (max-width: 576px) {
 .grid-description-service {
    display: flex;
    padding: 64px 25px;
    gap: 0px;
    flex-direction: column;
}
  

  .img-it-description--01::after{
    display: none;
  }
  
  .img-it-description--02::after, .img-it-description--02::before{
    display: none;
  }
  
  
  
   .service-it__slot-card {
     padding: 64px 25px;
     flex-direction: column;
    }
  
  .service-it__slot-card--03 {
    padding-top: 0px;
  }
  
  .img-it-description--03::after, .img-it-description--03::before{
    display: none;
  }

}


/*ASOCIACIONES SECTION*/
.partnerships__container{
  padding: 64px 0px 92px 0px !important;
}


.partnerships__title{

  font-family: Inter;
  font-size: 48px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center;
  color: #000;
  margin:0;
  margin-bottom: 40px;
}


.partnerships__legend{
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: center;
    color: #646262;
  margin:0;
  margin-bottom: 45px;
  }


.partnerships__slot{
  display: flex;
  gap: 64px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.partnerships__item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  gap: 36px;
}


.partnerships__title-card{
   margin:0;
}

.partnerships__card {
  width: 100%;
  max-height: 302px;
  padding: 20px 38px 18px 32px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
}



@media screen and (max-width: 1200px) {
   
}

@media screen and (max-width: 992px) {
   
}


@media screen and (max-width: 768px) {

  .partnerships__slot{
    flex-direction: column;
  }

}


@media screen and (max-width: 576px) {
   .partnerships__container{
      padding: 64px 25px 92px 25px !important;
    }

  .partnerships__title{ 
    font-size: 36px;
  }
}

/* SECTION - TESTIMONIAL */

.testimonial__container{
  padding: 34px 0 103px 0;

  position:relative;
}


.testimonial__slot{
 display: flex;
  gap: 30px;
  padding: 0 250px;
  
}

.testimonial__card{
  display: flex;
  gap:35px;
}

.testimonial__card > *{
  width: 50%;
}

.testimonial__box-image-perfil{
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial__box-image-perfil img{
  width: 128px;
}


.testimonial__name {
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  text-align: center;
  color: #343434;
}


.testimonial__rol{
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: normal;
  text-align: center;
  color: #a8a8a8;
}

.testimonial__logo{
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial__logo img{
  width: 106px;
}


.testimonial__phrase{
  display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  position:relative;
  padding:35px;
  
}

.testimonial__phrase:before {
    position:absolute;
    content: "\f10d";
    top: 0;
    left: 0;
    font-size: 35px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.testimonial__phrase:after {
  position:absolute;
    content: "\f10e";
    bottom: 0;
    right: 0;
  font-size: 35px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}


.testimonial__decoration::before{
  position: absolute;
  content: " ";
  top:-67px;
  left:0;
  
  width: 178px;
  height: 172px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
  background-color: #0071ff;
}


.testimonial__decoration::after{
  position: absolute;
  content: " ";
  bottom:-41px;
  right:0px;
  
  width: 399px;
  height: 100px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
  background-color: #0071ff;
}


@media screen and (max-width: 1200px) {
   .testimonial__slot{
    padding: 0 100px;
  }
}

@media screen and (max-width: 992px) {
  .testimonial__slot{
   display: flex;
    gap: 30px;
    padding: 0 50px;
  }
  
   .testimonial__card{
    flex-direction:column;
     justify-content: center;
    align-items: center;
  }
}


@media screen and (max-width: 768px) {
  .testimonial__card > *{
    width: 80%;
  }
  
  .testimonial__decoration::after,  .testimonial__decoration::before {
    display:none;
  }

}

@media screen and (max-width: 576px) {
  .testimonial__slot{
   display: flex;
    gap: 30px;
    padding: 0 25px;
  }
}

/*SECTION TECH STACK*/

.tech-stack__container{
  padding: 88px 0px 159px 0px;
  width: inherit;
}

.tech-stack-digital__container{
  padding: 64px 0px 69px 0px !important;
}

.tech-stack-home__container{
  padding: 88px 0px 94px 0px;
  width: inherit;
}


.tech-stack__title-section{
  margin: 0 25px 88px 25px;
  font-family: Inter;
  font-size: 48px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center;
  color: #343434;
}

.tech-stack__title-section {
  margin: 0;
  margin-bottom: 32px;
}

.tech-stack-home__subtitle{
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #646262;
  margin:0;
  margin-bottom: 50px;
  padding: 0 310px; 
}

.tech-stack__grid-slot{
  width: inherit;
  height: auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(448px, auto) minmax(200px, auto);
  gap: 48px 16px;
  grid-template-areas:
    "A  A A B C D"
    "E  E E F F F";
}

.tech-stack-ds__grid-slot{
  width: inherit;
  height: auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: minmax(448px, auto) minmax(200px, auto);
  gap: 48px 16px;
  grid-template-areas:
    "A B C  D E E E";
}

.tech-stack-home__grid-slot{
  width: inherit;
  height: auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: minmax(448px, auto) minmax(88px, auto) minmax(200px, auto);
  gap: 30px 16px;
  grid-template-areas:
    "A B C C C D E"
    "F F F F F F F";
}

.tech-stack-home__subgrid-slot{
  width: inherit;
  height: auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 100px minmax(200px, auto);
  gap: 30px 16px;
  grid-template-areas:
    "A A"
    "B C";
}


.tech__card--A{
  grid-area: A;
}

.tech__card--B{
  grid-area: B;
}

.tech__card--C{
  grid-area: C;
}

.tech__card--D{
  grid-area: D;
}


.tech__card--E{
  grid-area: E;
}

.tech__card--F{
  grid-area: F;
}

.tech__card--G{
  grid-area: G;
}

.tech__card--H{
  grid-area: H;
}


.tech__card--SUB-A{
  grid-area: A;
}

.tech__card--SUB-B{
  grid-area: B;
}

.tech__card--SUB-C{
  grid-area: C;
}

.border__top--blue{
  border-top: 8px solid #0e75f7;
}

.border__top--grey{
   border-top: 8px solid #d7d7d7;
}

.border__left--blue{
  border-left: 8px solid #0e75f7;
}

.border__left--grey{
  border-left: 8px solid #d7d7d7;
}

.tech__card{
  box-shadow: 0 6px 12px 0 rgba(52, 52, 52, 0.12);
  background-color: white;
  display: flex;
  box-sizing: border-box !important;
}

.tech__card--padding-01{
  padding: 40px 64px 48px 64px;
}

.tech__card--padding-02{
  padding: 40px 25px 48px 25px;
}

.tech__card--padding-03{
  padding: 40px 64px 48px 64px;
}

.tech__card--padding-04{
  padding: 40px 14px 48px 14px;
}

.tech__card--padding-05{
  padding: 14px;
  box-sizing: border-box !important;
  gap: 20px !important;
}


.tech__card--column{
  flex-direction: column;
}

.tech__card--row{
  flex-direction: row;
  gap:70px;
}

.tech__card--row--02{
  flex-direction: row;
  gap:70px;
}


.tech-card__title {
  min-height: 64px;
}

.tech-card__title--center-x {
  display: flex;
  justify-content: center;
}

.tech-card__title--center-full {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.tech-card__title h3{
  margin: 0;
  font-family: Inter;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  text-align: center;
  color: #343434;
}

.tech-card__image {
 display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; 
}


.tech-card__image img{
  width: 100%;
  aspect-ratio: auto;
}


.tech-card__row-double-image{
 display: flex;
  flex-direction: row;
  flex-wrap: no-wrap;
}


.tech-card__row-double-image img {
   width:45%
}



@media screen and (max-width: 1200px) {
    .tech-stack-home__subtitle{
      padding: 0 100px; 
    }
  
   .tech__card--row{
      flex-direction: row;
      gap:30px;
    }
  
  .tech-stack-ds__grid-slot{
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: repeat(2, minmax(448px, auto));
    grid-template-areas:
       "A A B B C C D D"
       "E E E E E E E E "
  }
}

@media screen and (max-width: 992px) {
  .tech-stack__grid-slot{
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(448px, auto) minmax(448px, auto) minmax(200px, auto) minmax(200px, auto);
    gap: 48px 16px;
    grid-template-areas:
      "A  A A A A A"
      "B  B C C D D"
      "E  E E E E E"
      "F  F F F F F";
    
  }
  
  .tech-stack-ds__grid-slot{
    grid-template-columns: repeat(6, 1fr) !important;
    grid-auto-rows: auto auto auto !important;
     grid-template-areas:
      "A A B B C C"
      "D D E E E E"!important;
  }
  
  .tech-stack-home__grid-slot{
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(448px, auto) minmax(448px, auto) auto;
    gap: 30px 16px;
    grid-template-areas:
      "A B D E"
      "C C C C"
      "F F F F";
  }

  .tech__card--row{
    flex-direction: row;
    gap:30px;
  }
  
  .tech-stack-home__subgrid-slot{
    width: inherit;
    height: auto;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto minmax(200px, auto);
    gap: 30px 16px;
    grid-template-areas:
      "A A"
      "B C";
  }
  .tech__card--row--02{
    flex-direction: column!important;
    gap:70px;
  }
  .tech-card__row-double-image{
    flex-direction: column;
  }
  .tech-card__row-double-image img{
    width:100%;
  }
  
}


@media screen and (max-width: 768px) {
   .tech-stack-home__subtitle{
      padding: 0 25px; 
    }
  
  .tech-stack-ds__grid-slot{
      grid-template-columns: repeat(4, 1fr) !important;
    grid-auto-rows: auto auto auto !important;
    grid-template-areas:
      "A A B B"
      "C C D D"
      "E E E E" !important;
  }

}

@media screen and (max-width: 576px) {
  .tech-stack__container{
    padding: 40px 25px 40px 25px;
  }
  
  .tech-stack-digital__container{
    padding: 40px 25px 40px 25px !important;
  }
  
  .tech-stack__title-section{
    margin: 0 25px 48px 25px;
    font-family: Inter;
    font-size: 40px;

  }
  
  .tech-stack__grid-slot{
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto minmax(448px, auto) minmax(448px, auto) minmax(448px, auto) minmax(200px, auto) minmax(200px, auto);
    gap: 48px 16px;
    grid-template-areas:
      "A  A A A A A"
      "B  B B B B B"
      "C  C C C C C"
      "D  D D D D D"
      "E  E E E E E"
      "F  F F F F F";
    
  }
  
  .tech-stack-home__grid-slot{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto auto auto auto;
    gap: 30px 16px;
    grid-template-areas:
      "A B"
      "D E"
      "C C"
      "F F";
  }
  
  .tech__card--padding-01{
    padding: 40px 25px 48px 25px;
  }

  .tech__card--padding-02{
    padding: 40px 25px 48px 25px;
  }

  .tech__card--padding-03{
    padding: 40px 25px 48px 25px;
  }
  
  
  .tech__card--row{
      flex-direction: column;
      gap:30px;
    }
  
  .border__left--blue{
    border-left: none;
    border-top: 8px solid #0e75f7;
  }

  .border__left--grey{
    border-left: none;
    border-top: 8px solid #0e75f7;
  }
}

/* Partnership */
.partnership__container{
 padding: 80px 0 0 0;
  
  /* resolucion pequeña solamente */
  /* padding: 80px 25px 0 25px;  */
}

.partnership__slot{
  display:flex;
  justify-content:center;
  align-items: center;
  flex-direction: column;
}

.partnership__title{
  font-family: Inter;
  font-size: 48px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center;
  color: #343434;
  margin:0;
  margin-bottom: 22px;
}

.partnership__subtitle{
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #646262;
  margin:0;
  margin-bottom: 33px;
}

.partnership__box-images{
  width:100%;
  height: 180px;
  padding: 48px 25px;
  box-sizing:border-box;
  display:flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  
  flex-flow: row wrap;
  /*space between*/
  
}

.partnership__box-images img{
  width: auto;
  height: 100%;
  max-height: 60px;
}




/* Certifications */
.certifications__container{
 padding:85px 0 81px 0;
}

.certifications__slot{
  display:flex;
  gap:20px;
}

.certifications__item{
  
}

.certifications__title{
  font-family: Inter;
  font-size: 48px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  color: #343434;
  margin:0;
  margin-bottom: 36px;
}

.certifications__subtitle{
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #646262;
 
}

.certification__card{
  padding: 60px 90px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
}



@media screen and (max-width: 1200px) {
   
}

@media screen and (max-width: 992px) {
   

    .certifications__slot{
      display:flex;
      gap:20px;
      flex-direction: column;
    }
  
  .certifications__title{
     text-align: center;
  }

  .certifications__subtitle{
     text-align: center;

  }
}


#clients .clients_list .slick-track img{
    width: auto;
     height: 50px !important;

  }

@media screen and (max-width: 768px) {
  .certification__card{
    padding: 40px 15px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
  }

  /*THIS IS FOR SLIDER CLASS*/
  #clients .clients_list .slick-track img{
    width: auto;
    height: 30px !important;

  }
  
  .partnership__box-images img{
    width: auto;
    height: 100%;
    max-height: 40px;
  }

}


@media screen and (max-width: 576px) {
  .partnership__box-images{
    width:100%;
    height: auto;

  }
  .partnership__container{
     padding:45px 25px 0px 25px;
    }
  .certifications__container{
     padding:40px 25px 40px 25px;
    }
  
  
  .partnership__title, .certifications__title{
    font-size: 40px;
  }

  .partnership__subtitle, .certifications__subtitle{
    font-size: 20px;
      margin-bottom:25px;

  }
}