/* 
    @authors    Fabian Cano <facanor@unal.edu.co>, Jully Gonzalez <jpgonzalezh@unal.edu.co>
    @version    Sept 5 2023
    @since      1.0 
*/

@import url("https://fonts.googleapis.com/css2?family=Rokkitt:wght@400;500;600;700&family=Ubuntu:wght@300;400;500;700&display=swap");

/* ------ CENTRALIZED CSS VARIABLES (TEMA: MEDIA VISUAL IDENTITY) ------ */
:root {
    /* ── Paleta principal ── */
    --primary-color:  #2846f0;          /* Azul eléctrico principal MEDia */
    --dark-neutral:   #1a1e29;          /* Neutro oscuro (logos, textos, footer) */
    --light-neutral:  #cedee0;          /* Neutro claro (fondos suaves) */

    /* ── Paleta secundaria (proyectos) ── */
    --pathia-color:     #a028f0;        /* Morado — Pathia */
    --gastrovar-color:  #f07c28;        /* Naranja — Gastrovar */
    --autocardia-color: #ffda28;        /* Amarillo — Autocardia */
    --confia-color:     #28f0a0;        /* Verde — Confia */
    --nexoia-color:     #8aa2ff;        /* Azul claro — Nexoia */

    /* ── Alias de uso ── */
    --accent-teal:         #28f0a0;     /* Verde acento (era teal) */
    --accent-cyan:         #2846f0;     /* Principal interactivo */
    --dark-blue-text:      #1a1e29;     /* Texto oscuro principal */
    --dark-bg:             #1a1e29;     /* Fondo oscuro (footer, etc.) */
    --text-gray:           #51545f;     /* Párrafos y textos secundarios */
    --border-gray:         #cedee0;     /* Bordes y líneas divisorias */
    --white:               #ffffff;
    --scrollbar-thumb-hover: #2846f0;

    /* ── Tipografía ── */
    --font-headline: 'Rokkitt', serif;   /* Titulares 24–50px */
    --font-body:     'Ubuntu', sans-serif; /* Texto corrido, botones, UI 7–16px */
}
/* ------------------------------------------------------ */

/* ------ GLOBAL STYLES ------ */

html {
    min-width: 100% !important;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 0.8rem;
}

html::-webkit-scrollbar-track {
    background: var(--white);
    opacity: 0.7;
}

html::-webkit-scrollbar-thumb {
    background: var(--dark-bg);
    opacity: 0.7;
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
    opacity: 0.7;
}

html::-webkit-scrollbar-thumb:active {
    background: var(--dark-bg);
    opacity: 0.7;
}

body {
    line-height: 26px;
    font-size: 14px;
    font-family: var(--font-body);
}

/* ── TIPOGRAFÍA GLOBAL UNIFICADA ────────────────────────────────────────
   Titulares  : Rokkitt  24–50 px  (--font-headline)
   Texto / UI : Ubuntu   7–16 px   (--font-body)
────────────────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
}

h1 { font-size: clamp(32px, 4vw, 50px); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 600; line-height: 1.25; }
h4 { font-size: clamp(18px, 2vw, 26px); font-weight: 600; line-height: 1.3; }
h5 { font-size: clamp(16px, 1.5vw, 22px); font-weight: 600; line-height: 1.35; }
h6 { font-size: clamp(14px, 1.2vw, 18px); font-weight: 600; line-height: 1.4; }

p, span, a, li, label, input, textarea, button, select {
    font-family: var(--font-body);
}

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

a {
    text-decoration: none;
}

a:hover, 
a:focus {
    text-decoration: none;
    outline: none;
}

/* ------ END GLOBAL STYLES ------ */


/* ------ HEADER STYLES ------ */

.header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 70px;
    padding: 0px 75px;
    background-color: var(--white) !important;
    border-bottom: 1px solid var(--border-gray);
    z-index: 9999999;
}

.header.fixed {
    position: fixed;
    width: 100%;
    top: -70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: translateY(70px);
    -ms-transform: translateY(70px);
    transform: translateY(70px);
    -webkit-transition: background 500ms ease, -webkit-transform 500ms ease;
    transition: background 500ms ease, -webkit-transform 500ms ease;
    -o-transition: transform 500ms ease, background 500ms ease;
    transition: transform 500ms ease, background 500ms ease;
    transition: transform 500ms ease, background 500ms ease, -webkit-transform 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
}

.header .navbar {
    padding: 0px;
    height: inherit;
    background-color: var(--white) !important;
    border-bottom: 1px solid var(--border-gray);
}

.header .navbar .navbar-brand {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.header .navbar .navbar-brand div {
    display: flex;
    flex-direction: column;
    margin-left: 0.8rem;
}

.header .navbar .navbar-brand img {
    display: inline-block;
    height: 40px;
    width: auto;
    aspect-ratio: 1 / 1;
}

.header .navbar .navbar-brand h1 {
    color: var(--dark-blue-text);
    font-size: 1.1rem;
}

.header .navbar .navbar-collapse {
    text-align: right;
}

.header .navbar .navbar-collapse .navbar-nav {
    background-color: var(--white);
}

.header .navbar .navbar-nav {
    display: inline-block;
}

.header .navbar .navbar-nav li {
    display: inline-block;
    margin-right: 50px;
}

.header .navbar .navbar-nav li a {
    padding: 0px;
    line-height: 99px;
    color: var(--dark-blue-text);
    font-weight: 500;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.header .navbar .navbar-nav li:last-child {
    margin-right: 0px;
}

.header .navbar .navbar-nav li:hover a,
.header .navbar .navbar-nav li.active a {
    color: var(--primary-color);
    font-weight: 700;
}

/* ------ END HEADER STYLES ------ */


/* ------ FOOTER STYLES ------ */

/* footer {
    position: absolute;
    bottom: 0;
} */

.lg-view{
    display:flex;
 }
 
 .sm-view{
    display:none;
 }

.footer-brand {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.footer-content {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 40px;
    padding: 0px;
    bottom: 0;
    overflow: hidden;
    color: #fff;
    background-color: var(--primary-color, #2846f0);
}

.footer-common {
    position: static;
    height: auto;
    padding: 20px 0;
}

.footer-sponsors {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sponsors-horizontal-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap; /* allows wrapping on mobile screen */
    gap: 30px;
    width: 100%;
}

.sponsors-horizontal-list a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsors-horizontal-list img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes logos white to contrast with blue background */
    opacity: 0.85;
    transition: all 0.3s ease;
}

.sponsors-horizontal-list img:hover {
    opacity: 1;
    transform: scale(1.08);
}

.footer-bottom-bar {
    width: 100%;
    padding: 0 20px;
}

.footer-common .footer-copy ul {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    margin: 0 !important;
    margin-bottom: 10px !important;
}

.footer-common .footer-copy div,
.footer-common .footer-copy p {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    text-align: end;
}

.footer-content .footer-copy {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-content .footer-copy img {
    width: 1.3rem;
    height: auto;
}

.footer-content .footer-copy ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.footer-content .footer-copy ul li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 1.8rem;
    height: 1.8rem;
    background-color: #fff;
    text-align: center;
    line-height: 1.8rem;
    font-size: 0.85rem;
    margin: 0 0.4rem;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
}

.footer-content .footer-copy ul li a i {
    position: relative;
    color: #131627;
    transition: 0.5s;
    z-index: 3;
}

.footer-content .footer-copy ul li a:hover i {
    color: #fff;
    transform: rotateY(360deg);
}

.footer-content .footer-copy ul li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transition: 0.5s;
    z-index: 2;
}

.footer-content .footer-copy ul li a:hover:before {
    top: 0;
}

.footer-content .footer-copy ul li:nth-child(1) a:before {
    background: #3b5999;
}

.footer-content .footer-copy ul li:nth-child(2) a:before {
    background: #55acee;
}

.footer-content .footer-copy ul li:nth-child(3) a:before {
    background: #dd4b39;
}

.footer-content .footer-copy p {
    display: block;
    padding: 0 0.75rem;
}

.footer-content .footer-copy span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
}

/* ------ END FOOTER STYLES ------ */


























.row.m0 {
    margin: 0px;
}

.p0 {
    padding: 0px;
}



body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
}

#success {
    display: none;
}

#error {
    display: none;
}

.display_table {
    display: table;
    width: 100%;
}

.display_table_row {
    display: table-row;
}

.display_table_cell {
    display: table-cell;
    float: none !important;
}

.p_100 {
    padding: 100px 0px;
}

iframe {
    border: none;
}

i:before {
    margin-left: 0px !important;
}



/* Container Custome Code css
============================================================================================ */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* End Container Custome Code css
============================================================================================ */
/* Main title css
============================================================================================ */
.main_title h2 {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--font-headline);
    color: var(--dark-neutral);
    font-weight: 600;
}

.main_title:has(.project-title) {
    margin-top: 3rem;
    margin-left: 8vw;
    margin-bottom: 1.8rem;
}

.main_title:has(.right-title) {
    margin-top: 3rem;
    margin-right: 8vw;
    margin-bottom: 1.8rem;
}

.main_title h1 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.main_title p {
    font-size: 16px;
    color: var(--text-gray);
    font-family: var(--font-body);
    line-height: 26px;
    padding-top: 15px;
}

.center_title {
    color: #fff;
    text-align: center;
    padding-bottom: 40px;
}

.center_title h2 {
    font-size: 40px;
    font-family: var(--font-headline);
    font-weight: 600;
}

.center_title p {
    font-size: 16px;
    color: #fff;
    font-family: var(--font-body);
    line-height: 26px;
    padding-top: 10px;
}

.b_center_title {
    text-align: center;
    /* padding-bottom: 50px; */
    word-wrap: break-word;
}

.b_center_title hr {
    width: 50%;
    margin-bottom: 2rem;
    color: #000;
}

.b_center_title h3 {
    font-size: 2rem;
}

.b_center_title h2 {
    font-size: 40px;
    font-family: var(--font-headline);
    font-weight: 600;
    color: var(--dark-neutral);
}

.b_center_title p {
    font-size: 16px;
    color: #fff;
    font-family: var(--font-body);
    line-height: 26px;
    padding-top: 10px;
    color: #51545f;
}

/* Main title css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Main Menu Area css
============================================================================================ */




/* End Main Menu Area css
============================================================================================ */
/* End Main Menu Area css
============================================================================================ */
.search_area {
    position: fixed;
    top: -100px;
    left: 0px;
    width: 100%;
    z-index: 40;
    background: #fff;
    padding: 0px 110px;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.search_area .search_inner {
    position: relative;
}

.search_area .search_inner:before {
    content: "";
    height: 34px;
    width: 4px;
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--primary-color);
}

.search_area .search_inner input {
    border: none;
    border-radius: 0px;
    width: 100%;
    padding: 0px 32px 0px 10px;
    height: 98px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 36px;
    color: #b5aec4;
    font-family: var(--font-body);
    line-height: 98px;
    font-weight: normal;
}

.search_area .search_inner input.placeholder {
    font-size: 36px;
    color: #b5aec4;
    font-family: var(--font-body);
    line-height: 98px;
    font-weight: normal;
}

.search_area .search_inner input:-moz-placeholder {
    font-size: 36px;
    color: #b5aec4;
    font-family: var(--font-body);
    line-height: 98px;
    font-weight: normal;
}

.search_area .search_inner input::-moz-placeholder {
    font-size: 36px;
    color: #b5aec4;
    font-family: var(--font-body);
    line-height: 98px;
    font-weight: normal;
}

.search_area .search_inner input::-webkit-input-placeholder {
    font-size: 36px;
    color: #b5aec4;
    font-family: var(--font-body);
    line-height: 98px;
    font-weight: normal;
}

.search_area .search_inner i {
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 30px;
    cursor: pointer;
}

.search_area.open {
    top: 0px;
}

/* End Main Menu Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Banner Area css
============================================================================================ */
.banner_area {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("../assets/img/endoscopia.png") no-repeat scroll center center;
    background-size: cover;
    min-height: 500px;
}

.banner_area .container {
    margin: 0;
}

.banner_text_inner {
    position: relative;
    padding-top: 170px;
    padding-left: 135px;
}

.banner_text_inner h4 {
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    font-family: var(--font-headline);
}

.banner_text_inner ul li {
    display: inline-block;
    margin-right: 15px;
}

.banner_text_inner ul li a {
    color: #fff;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.banner_text_inner ul li a i {
    position: relative;
    left: -10px;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.banner_text_inner ul li:hover a {
    color: #2bc0a4;
}

.banner_text_inner h5 {
    font-size: 18px;
    color: #fff;
    font-family: var(--font-body);
}

/* End Banner Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Slider Area css
============================================================================================ */

.colombia-vector img {
    width: 6%;
    height: auto;
    position: absolute;
    bottom: 40px;
    right: 0;
    margin: 0 26px 20px 0;
}

#tsparticles {
    position: absolute;
    top: 70px;
    bottom: 40px;
    width: 100%;
    height: calc(100% - 110px);
    background-color: #323031;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
}

.slider #slider {
    height: 100% !important;
}

.slider #slider #tsparticles img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.slider #slider .slider_text_box {
    word-break: break-word;
    text-transform: uppercase;
    pointer-events: none;
}

.slider #slider .slider_text_box div {
    font-size: 3.3rem !important;
    line-height: 4rem !important;
}

.slider #slider .slider_text_box .tp-parallax-wrap {
    top: 42% !important;
    width: 80% !important;
    min-width: 80% !important;
}

.slider
    #slider
    .slider_text_box
    .tp-parallax-wrap
    .tp-loop-wrap
    .tp-mask-wrap
    div {
        pointer-events: none;
        font-size: 60px !important;
        line-height: 70px !important;
        z-index: 0; 
        font-family: var(--font-body); 
        font-weight: 600 !important; 
        color: #131627;
}


.slider
    #slider
    .slider_text_box
    .tp-parallax-wrap
    .tp-loop-wrap
    .tp-mask-wrap
    div span {
        display: block;
        font-size: 40px !important;
        line-height: 50px !important;
}

.slider #slider ul li .slider_button .bg_btn {
    display: inline-block;
    line-height: 46px !important;
    font-size: 13px;
    text-transform: uppercase;
    margin-right: 7px;
}

.slider #slider ul li .slider_button .tp_btn {
    display: inline-block;
    text-transform: uppercase;
}

/* End Slider Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Creative Feature Area css
============================================================================================ */
.creative_feature_area {
    /* background: #f7f7f7; */
    display: flex;
    align-items: center;
    flex-direction: column;
}

.creative_feature_area .container {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.about {
    background: #f7f7f7;
    /* background: linear-gradient(to bottom, #cedee0, #ffffff); */
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 0px;
    padding-top: 150px;
    padding-bottom: 80px;
}

.about .container {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.c_feature_box {
    -webkit-box-shadow: 0px 25px 49px 0px rgba(58, 74, 88, 0.1);
    box-shadow: 0px 25px 49px 0px rgba(58, 74, 88, 0.1);
    border-radius: 2px;
    background: #fff;
    padding: 45px 0px;
    margin-top: -100px;
    z-index: 22;
    position: relative;
}

.c_feature_box .col-lg-4:last-child .c_box_item:before {
    display: none;
}

.c_box_item {
    padding: 0px 35px 0px 40px;
    position: relative;
}

.c_box_item:before {
    content: "";
    background: #e5e5e5;
    height: 145px;
    width: 1px;
    position: absolute;
    right: -15px;
    top: 0px;
}

.c_box_item h4 {
    font-size: 20px;
    color: #232d37;
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 36px;
    padding-bottom: 10px;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.c_box_item h4 i {
    padding-right: 10px;
    color: #2bc0a4;
}

.c_box_item h4:hover {
    color: #2bc0a4;
}

.c_box_item p {
    font-size: 14px;
    line-height: 26px;
    color: #51545f;
    font-family: var(--font-body);
}

.service_item_inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    margin: 0;
}

.service_item_inner .obj-img {
    padding: 0;
}

.service_item_inner .obj-img img {
    height: auto;
    max-height: 380px;
    width: 100%;
    object-fit: cover;
}

.service_item_inner .service-col {
    margin: 2rem 0;
}

.service_item_inner .d_feature_text {
    /* margin: 2rem 0; */
    margin-left: 8vw;
}

.service_item_inner .df_right {
    /* margin: 2rem 0; */
    margin-right: 8vw;
    margin-left: 0;
}

.service_item_inner .df_project {
    margin-bottom: 3rem;
}

.service_item_inner .d_feature_text .main_title {
    /* padding-bottom: 1rem; */
    margin-bottom: 1rem;
    font-weight: 500;
}

.service_item_inner .d_feature_text p {
    font-size: 1.2rem;
    color: #51545f;
    font-family: var(--font-body);
    line-height: 26px;
}

/* .d_feature_text p {
    font-size: 1.2rem;
    color: #51545f;
    font-family: var(--font-body);
    line-height: 26px;
    padding-bottom: 12px;
} */

/* .d_feature_text p + p {
    padding-bottom: 0px;
} */

.d_feature_text .read_btn {
    margin-top: 34px;
}

.col-md:has(> .d_feature_img) {
    padding: 0;
    height: 100%;
    width: 100%;
}

.d_feature_img {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-left: 60px;
    padding-right: 4vw;
}

.left_feat_img {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-left: 4vw;
    padding-right: 60px;
}

.d_feature_img video {
    height: auto;
    width: 100%;
    max-height: inherit;
    object-fit: cover;
}

.left_feat_img video {
    height: auto;
    width: 100%;
    max-height: inherit;
}

/* End Creative Feature Area css
============================================================================================ */
/* Industries Area css
============================================================================================ */
.industries_area {
    overflow: hidden;
    /* padding-top: 100px; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/* .left_indus {
    width: calc(50% + 85px);
    float: left;
    text-align: right;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.right_indus {
    width: calc(50% - 85px);
    float: right;
} */
.right_indus {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 100%;
    margin-left: 15px;
    margin-right: 20px;
}

/* .indus_img {
    text-align: right;
    padding-right: 85px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
} */

.indus_img img {
    height: 100%;
    max-height: 400px;
    width: auto;
    object-fit: cover;
}

.indus_text {
    padding: 0 40px;
    padding-top: 0 !important;
}

.indus_text h3 {
    font-size: 2.1rem;
    font-weight: 600;
    padding-bottom: 2rem;
}

.indus_text ol li {
    font-size: 1.7rem;
    line-height: 2.2rem;
}

.indus_text ol li:not(:last-child) {
    margin-bottom: 1rem;
}

.indus_text ol li span {
    color: #3b5999;
    font-weight: 600;
}

@media (min-width: 1500px) {
    .indus_text {
        padding-top: 80px;
    }
}

.indus_text .read_btn {
    width: 180px;
    margin-top: 60px;
}

.our_skill_inner {
    margin-top: 45px;
}

.our_skill_inner .single_skill {
    margin-bottom: 30px;
}

.our_skill_inner .single_skill h3 {
    color: #232d37;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    padding-bottom: 6px;
}

.our_skill_inner .single_skill .progress {
    height: 8px;
    border-radius: 0px;
    background: #e5e5e5;
    overflow: visible;
}

.our_skill_inner .single_skill .progress .progress-bar {
    background-image: -webkit-linear-gradient(180deg, #20d497 0%, #744fff 100%);
    background-image: -moz-linear-gradient(180deg, #20d497 0%, #744fff 100%);
    background-image: -ms-linear-gradient(180deg, #20d497 0%, #744fff 100%);
    position: relative;
    overflow: visible;
    background-color: transparent;
}

.our_skill_inner .single_skill .progress .progress-bar .progress_parcent {
    position: absolute;
    right: 0px;
    top: -25px;
    color: #232d37;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 500;
}

.our_skill_inner .single_skill:last-child {
    margin-bottom: 0px;
}

/* End Industries Area css
============================================================================================ */
/* Project Area css
============================================================================================ */
.project_area {
    background: url(../img/project-bg.jpg) no-repeat fixed center center;
    background-size: cover;
    position: relative;
    z-index: 3;
    padding: 115px 0px;
}

.project_area:before {
    content: "";
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
    position: absolute;
    z-index: -1;
    background: rgba(4, 8, 29, 0.7);
}

.project_inner .tp_btn {
    margin-top: 5px;
}

/* End Project Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Border Button Area css
============================================================================================ */
.read_btn {
    height: 46px;
    width: 160px;
    line-height: 48px;
    color: #232d37;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#744fff),
        color-stop(51%, #21d397),
        to(#744fff)
    );
    background-image: -webkit-linear-gradient(
        left,
        #744fff 0%,
        #21d397 51%,
        #744fff 100%
    );
    background-image: -o-linear-gradient(left, #744fff 0%, #21d397 51%, #744fff 100%);
    background-image: linear-gradient(to right, #744fff 0%, #21d397 51%, #744fff 100%);
    text-align: center;
    position: relative;
    background-size: 200% auto;
    z-index: 2;
    display: block;
    -webkit-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

.read_btn:before {
    content: "";
    background: #f7f7f7;
    position: absolute;
    left: 2px;
    top: 2px;
    width: 98%;
    height: 42px;
    z-index: -1;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.read_btn:hover {
    background-position: right center;
    color: #232d37;
}

.tp_btn {
    height: 46px;
    width: 165px;
    text-align: center;
    color: #fff;
    border-width: 2px;
    border-style: solid;
    border-image: -moz-linear-gradient(180deg, #20d497 0%, #744fff 100%);
    -webkit-border-image: -webkit-linear-gradient(180deg, #20d497 0%, #744fff 100%);
    border-image: -webkit-linear-gradient(180deg, #20d497 0%, #744fff 100%);
    border-image: -ms-linear-gradient(180deg, #20d497 0%, #744fff 100%);
    background-color: #131627;
    opacity: 0.8;
    border-image-slice: 1;
    display: block;
    line-height: 42px;
    -webkit-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 600;
    position: relative;
    z-index: 3;
    margin: auto;
}

.tp_btn:after {
    content: "";
    height: 46px;
    width: 165px;
    position: absolute;
    left: -2px;
    top: -2px;
    border-width: 2px;
    border-style: solid;
    border-image: -moz-linear-gradient(180deg, #744fff 0%, #20d497 100%);
    -webkit-border-image: -webkit-linear-gradient(180deg, #744fff 0%, #20d497 100%);
    border-image: -webkit-linear-gradient(180deg, #744fff 0%, #20d497 100%);
    border-image: -ms-linear-gradient(180deg, #744fff 0%, #20d497 100%);
    border-image-slice: 1;
    -webkit-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    z-index: -1;
    opacity: 0;
}

.tp_btn:hover {
    color: #fff;
}

.tp_btn:hover:after {
    opacity: 1;
}

.bg_btn {
    font-size: 13px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    color: #fff;
    text-align: center;
    width: 160px;
    height: 46px;
    line-height: 46px;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#744fff),
        color-stop(51%, #21d397),
        to(#744fff)
    );
    background-image: -webkit-linear-gradient(
        left,
        #744fff 0%,
        #21d397 51%,
        #744fff 100%
    );
    background-image: -o-linear-gradient(left, #744fff 0%, #21d397 51%, #744fff 100%);
    background-image: linear-gradient(to right, #744fff 0%, #21d397 51%, #744fff 100%);
    -webkit-transition: all 400ms ease-out !important;
    -o-transition: all 400ms ease-out !important;
    transition: all 400ms ease-out !important;
    background-size: 200% auto;
    border: none;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
}

.bg_btn:hover {
    background-position: right center;
    color: #fff;
}

.bg_btn:focus {
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#744fff),
        color-stop(51%, #21d397),
        to(#744fff)
    ) !important;
    background-image: -webkit-linear-gradient(
        left,
        #744fff 0%,
        #21d397 51%,
        #744fff 100%
    ) !important;
    background-image: -o-linear-gradient(
        left,
        #744fff 0%,
        #21d397 51%,
        #744fff 100%
    ) !important;
    background-image: linear-gradient(
        to right,
        #744fff 0%,
        #21d397 51%,
        #744fff 100%
    ) !important;
    -webkit-transition: all 400ms ease-out !important;
    -o-transition: all 400ms ease-out !important;
    transition: all 400ms ease-out !important;
    background-size: 200% auto;
}

.more_btn {
    color: #2bc0a4;
    font-size: 14px;
    font-family: var(--font-body);
    text-decoration: underline;
    line-height: 26px;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.more_btn:hover {
    text-decoration: none;
    color: #2bc0a4;
}

.submit_btn {
    font-size: 13px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    color: #fff;
    text-align: center;
    padding: 0px 10px;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#744fff),
        color-stop(51%, #21d397),
        to(#744fff)
    );
    background-image: -webkit-linear-gradient(
        left,
        #744fff 0%,
        #21d397 51%,
        #744fff 100%
    );
    background-image: -o-linear-gradient(left, #744fff 0%, #21d397 51%, #744fff 100%);
    background-image: linear-gradient(to right, #744fff 0%, #21d397 51%, #744fff 100%);
    -webkit-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    background-size: 200% auto;
    border: none;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 3px;
    cursor: pointer;
}

.submit_btn:hover {
    background-position: right center;
    color: #fff;
}

.submit_btn:focus {
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#744fff),
        color-stop(51%, #21d397),
        to(#744fff)
    ) !important;
    background-image: -webkit-linear-gradient(
        left,
        #744fff 0%,
        #21d397 51%,
        #744fff 100%
    ) !important;
    background-image: -o-linear-gradient(
        left,
        #744fff 0%,
        #21d397 51%,
        #744fff 100%
    ) !important;
    background-image: linear-gradient(
        to right,
        #744fff 0%,
        #21d397 51%,
        #744fff 100%
    ) !important;
    -webkit-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    background-size: 200% auto;
}

.submit_btn2 {
    height: 46px;
    width: 165px;
    line-height: 46px;
    color: #232d37;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#744fff),
        color-stop(51%, #21d397),
        to(#744fff)
    );
    background-image: -webkit-linear-gradient(
        left,
        #744fff 0%,
        #21d397 51%,
        #744fff 100%
    );
    background-image: -o-linear-gradient(left, #744fff 0%, #21d397 51%, #744fff 100%);
    background-image: linear-gradient(to right, #744fff 0%, #21d397 51%, #744fff 100%);
    text-align: center;
    position: relative;
    background-size: 200% auto;
    z-index: 2;
    display: block;
    -webkit-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    padding: 0px;
    border-radius: 2px;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: pointer;
}

.submit_btn2:before {
    content: "";
    background: #f7f7f7;
    position: absolute;
    left: 2px;
    top: 2px;
    width: 97.5%;
    height: 40px;
    z-index: -1;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.submit_btn2:hover {
    background-position: right center;
    color: #232d37;
}

/* End Border Button Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Our Service Area css
============================================================================================ */
/* .service_area {
    background: url(../img/service-bg.jpg) no-repeat fixed center center;
    background-size: cover;
    position: relative;
    z-index: 2;
    padding: 115px 0px;
} */

.service_area {
    background-position: 0 !important;
    min-width: 100% !important;
}

.service_area .service_item_inner {
    max-width: 100%;
    height: calc(100vh - 70px - 11.25rem);
}

.service_area .service_item_inner .project-col {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.service_area .service_item_inner .project-col .service_item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.service_area .service_item_inner .project-col .service_item .tp_btn {
    margin: 0;
}

.service_area:before {
    content: "";
    background: rgba(4, 8, 29, 0.7);
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.service_item {
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    text-align: center;
    color: #fff;
    height: 100%;
    /* width: calc(100% + 15px) !important; */
    width: 100%;
    padding: 100px 40px;
}

.service_item i {
    background-image: -moz-linear-gradient(180deg, #20d497 0%, #744fff 100%);
    background-image: -webkit-linear-gradient(180deg, #20d497 0%, #744fff 100%);
    background-image: -ms-linear-gradient(180deg, #20d497 0%, #744fff 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 40px;
}

.service_item h4 {
    font-size: 26px;
    font-family: var(--font-body);
    font-weight: 500;
    /* margin-bottom: 1rem; */
    padding: 20px 20px;
    color: #fff;
}

.service_item p {
    font-size: 14px;
    line-height: 26px;
    font-family: var(--font-body);
    max-width: 360px;
    margin: auto;
}

/* End Our Service Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Testimonials Area css
============================================================================================ */
.testimonials_slider .item img {
    width: auto !important;
}

.testimonials_slider .item .media {
    vertical-align: middle;
}

.testimonials_slider .item .media .d-flex {
    vertical-align: middle;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.testimonials_slider .item .media .media-body {
    padding-left: 100px;
    vertical-align: middle;
    padding-right: 40px;
}

.investigator {
    margin-top: 0.5rem;
}

.invest-title {
    font-size: 1.15rem;
    pointer-events: none;
    color: #52299b;
    font-weight: 600;
}

.testimonials_slider .item .media .media-body p {
    font-size: 18px;
    color: #51545f;
    line-height: 30px;
    font-family: var(--font-body);
    font-weight: 400;
    padding: 35px 0px 20px 0px;
}

.invest-uni {
    font-size: 0.9rem;
    line-height: 1rem;
}

.invest-uni span {
    display: block;
    font-weight: 600;
}

.testimonials_slider .item .media .media-body h4 {
    font-size: 14px;
    color: #b5aec4;
    font-family: var(--font-body);
    font-weight: 400;
}

.testimonials_slider .item .media .media-body h4 a {
    font-size: 16px;
    color: #232d37;
    font-family: var(--font-body);
    font-weight: 500;
}

.testimonials_slider .owl-prev,
.testimonials_slider .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 36px;
    color: #b5aec4;
    z-index: 4;
    cursor: pointer;
}

.testimonials_slider .owl-prev {
    left: -80px;
}

.testimonials_slider .owl-next {
    right: -80px;
}

/* End Testimonials Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Latest News Area css
============================================================================================ */
.l_news_item {
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.l_news_item .l_news_img {
    overflow: hidden;
}

.l_news_item .l_news_img a {
    display: block;
}

.l_news_item .l_news_img img {
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.l_news_item .l_news_img img:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.l_news_item .l_news_content {
    border: 1px solid #ebebeb;
    border-top: 0px;
    padding: 30px 35px;
}

.l_news_item .l_news_content h4 {
    font-size: 18px;
    color: #232d37;
    font-family: var(--font-body);
    font-weight: 500;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.l_news_item .l_news_content h4:hover {
    color: #2bc0a4;
}

.l_news_item .l_news_content p {
    font-size: 14px;
    line-height: 26px;
    color: #51545f;
    font-family: var(--font-body);
    font-weight: 400;
    padding: 15px 0px 10px 0px;
}

.l_news_item:hover {
    -webkit-box-shadow: 0px 25px 49px 0px rgba(58, 74, 88, 0.1);
    box-shadow: 0px 25px 49px 0px rgba(58, 74, 88, 0.1);
}

/* Latest News Area css
============================================================================================ */
/* Static Area css
============================================================================================ */
.static_area {
    padding: 100px 0px;
}

.static_main_content {
    position: relative;
}

.static_main_content .static_social {
    position: absolute;
    left: -60px;
    top: 0px;
}

.static_social ul li {
    margin-bottom: 20px;
}

.static_social ul li a {
    height: 30px;
    width: 30px;
    text-align: center;
    background: #4c65a8;
    color: #fff;
    display: block;
    border-radius: 50%;
    line-height: 30px;
}

.static_social ul li:nth-child(2) a {
    background: #41a1f6;
}

.static_social ul li:nth-child(3) a {
    background: #f43535;
}

.static_social ul li:nth-child(4) a {
    background: #8f6247;
}

.static_social ul li:nth-child(5) {
    margin-bottom: 0px;
}

.static_social ul li:nth-child(5) a {
    background: #f0c605;
}

/* .static_text {
    padding-top: 35px;
    padding-bottom: 15px;
} */

.static_text p {
    font-size: 1.1rem;
    line-height: 26px;
    color: #51545f;
    font-family: var(--font-body);
}

.static_text p:last-child {
    padding-top: 15px;
}

.static_text2 h3 {
    font-size: 24px;
    color: #1e1e27;
    font-family: var(--font-body);
    font-weight: 500;
}

.static_text2 p {
    font-size: 16px;
    line-height: 26px;
    color: #51545f;
    font-family: var(--font-body);
    padding-top: 13px;
}

.media {
    margin: 30px 0px;
}

.media .d-flex h6 {
    font-family: var(--font-headline);
    font-size: 100px;
    color: #2bc0a4;
    line-height: 75px;
}

.media .media-body {
    padding-left: 32px;
}

.media .media-body p {
    font-size: 18px;
    line-height: 26px;
    color: #1e1e27;
    font-family: var(--font-body);
}

.media .media-body h5 {
    font-size: 14px;
    color: #b5aec4;
    font-family: var(--font-body);
    padding-top: 15px;
}

.media .media-body h5 a {
    font-size: 16px;
    color: #232d37;
    font-family: var(--font-body);
    font-weight: 500;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.media .media-body h5 a:hover {
    color: #2bc0a4;
}

.right_sidebar_area {
    padding-left: 20px;
}

.right_widget {
    margin-bottom: 45px;
}

.r_w_title {
    padding-bottom: 20px;
}

.r_w_title h3 {
    font-size: 22px;
    color: #1e1e27;
    font-family: var(--font-body);
    font-weight: 500;
}

.r_news_widget .news_inner .news_item {
    border-bottom: 1px solid #eeeef0;
    padding-bottom: 14px;
    margin-bottom: 15px;
}

.r_news_widget .news_inner .news_item h4 {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--font-body);
    font-weight: 500;
    color: #1e1e27;
    padding-bottom: 7px;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.r_news_widget .news_inner .news_item h4:hover {
    color: #2bc0a4;
}

.r_news_widget .news_inner .news_item h6 {
    font-size: 14px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.r_news_widget .news_inner .news_item:last-child {
    margin-bottom: 0px;
}

.r_cat_widget ul li {
    margin-bottom: 12px;
}

.r_cat_widget ul li a {
    font-size: 16px;
    color: #1e1e27;
    font-family: var(--font-body);
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
    padding-left: 20px;
    position: relative;
}

.r_cat_widget ul li a:before {
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: #2bc0a4;
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.r_cat_widget ul li:hover a {
    color: #2bc0a4;
}

.r_cat_widget ul li:hover a:before {
    left: 5px;
}

.r_tag_widget ul {
    margin-right: -9px;
}

.r_tag_widget ul li {
    display: inline-block;
    margin-bottom: 9px;
    margin-right: 6px;
}

.r_tag_widget ul li a {
    font-size: 12px;
    color: #51545f;
    font-family: var(--font-body);
    background: #ebebeb;
    display: inline-block;
    padding: 0px 20px;
    text-transform: uppercase;
    line-height: 30px;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.r_tag_widget ul li:last-child {
    margin-bottom: 0px;
    margin-right: 0px;
}

.r_tag_widget ul li:hover a {
    color: #2bc0a4;
}

/* End Static Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Contact Us Area css
============================================================================================ */
.contact_us_area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* margin: 40px 0; */
    padding-top: 70px;
    height: calc(100vh - 11.25rem);
}

.contact_us_area .container {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    max-width: none;
}

.contact_us_area .main_title h2 {
    text-transform: uppercase;
    font-weight: 600;
}

.mapBox {
    min-height: 520px;
    -webkit-box-shadow: 0px 27px 51.33px 7.67px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 27px 51.33px 7.67px rgba(0, 0, 0, 0.15);
}

.contact_details_inner {
    padding-top: 75px;
}

.col_contact_text {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: calc(100% - 70px);
}

.col_contact_text .col_contact_img {
    height: 100%;
    width: 100%;
}

.col_contact_text .col_contact_img .contact-img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.col_contact_text .col_contact_img .contact-img img {
    object-fit: cover;
}

.col_contact_text .contact_text {
    margin-left: 100px;
}

.contact_text p {
    margin: 0;
    padding: 0;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.6rem;
}

.contact_text h2 {
    font-weight: 700 !important;
    font-size: 2.4rem !important;
}

.contact_text a {
    font-size: 1.3rem;
    line-height: 1.6rem;
}

.contact_text a i {
    margin-right: 0.5rem;
}

.contact_text .contact_d_list {
    margin-top: 40px;
}

.contact_text .contact_d_list .contact_d_list_item {
    margin-bottom: 22px;
}

.contact_text .contact_d_list .contact_d_list_item a {
    font-size: 16px;
    color: #51545f;
    font-family: var(--font-body);
    display: block;
}

.contact_text .contact_d_list .contact_d_list_item p {
    font-size: 16px;
    color: #51545f;
    font-family: var(--font-body);
    display: block;
    line-height: 24px;
}

.contact_text .contact_d_list .contact_d_list_item:last-child {
    margin-bottom: 0px;
}

.contact_text .static_social {
    margin-top: 40px;
}

.contact_text .static_social .main_title {
    padding-bottom: 25px;
}

.contact_text .static_social ul li {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 0px;
}

.contact_text .static_social ul li:last-child {
    margin-right: 0px;
}

.contact_form .main_title {
    padding-bottom: 40px;
}

.contact_us_form .form-group {
    margin-bottom: 20px;
}

.contact_us_form .form-group input {
    height: 50px;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    padding: 0px 20px;
    font-size: 16px;
    color: #7f7f7f;
    font-family: var(--font-body);
}

.contact_us_form .form-group input.placeholder {
    font-size: 16px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.contact_us_form .form-group input:-moz-placeholder {
    font-size: 16px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.contact_us_form .form-group input::-moz-placeholder {
    font-size: 16px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.contact_us_form .form-group input::-webkit-input-placeholder {
    font-size: 16px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.contact_us_form .form-group input:focus {
    border-color: #7f7f7f;
}

.contact_us_form .form-group textarea {
    height: 80px;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    padding: 15px 20px;
    font-size: 16px;
    color: #7f7f7f;
    font-family: var(--font-body);
    resize: none;
}

.contact_us_form .form-group textarea.placeholder {
    font-size: 16px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.contact_us_form .form-group textarea:-moz-placeholder {
    font-size: 16px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.contact_us_form .form-group textarea::-moz-placeholder {
    font-size: 16px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.contact_us_form .form-group textarea::-webkit-input-placeholder {
    font-size: 16px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.contact_us_form .form-group textarea:focus {
    border-color: #7f7f7f;
}

.contact_us_form .form-group:last-child {
    margin-bottom: 0px;
    margin-top: 10px;
}

/* End Contact Us Area css
============================================================================================ */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(600px) rotateX(0);
    -moz-transform: translateY(0) perspective(600px) rotateX(0);
    -ms-transform: translateY(0) perspective(600px) rotateX(0);
    -o-transform: translateY(0) perspective(600px) rotateX(0);
    transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;
    -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}

/* End Search Popup Area css
============================================================================================ */
/* Contact Success and error Area css
============================================================================================ */
.modal-message .modal-dialog {
    position: absolute;
    top: 36%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%) !important;
    -ms-transform: translateX(-50%) translateY(-50%) !important;
    transform: translateX(-50%) translateY(-50%) !important;
    margin: 0px;
    max-width: 500px;
    width: 100%;
}

.modal-message .modal-dialog .modal-content .modal-header {
    text-align: center;
    display: block;
    border-bottom: none;
    padding-top: 50px;
    padding-bottom: 50px;
}

.modal-message .modal-dialog .modal-content .modal-header .close {
    position: absolute;
    right: -15px;
    top: -15px;
    padding: 0px;
    color: #fff;
    opacity: 1;
    cursor: pointer;
}

.modal-message .modal-dialog .modal-content .modal-header h2 {
    display: block;
    text-align: center;
    color: #2bc0a4;
    padding-bottom: 10px;
}

.modal-message .modal-dialog .modal-content .modal-header p {
    display: block;
}

/* End Contact Success and error Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Footer Area css
============================================================================================ */


.f_w_title h3 {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
}

.subscribe_widget p {
    font-size: 14px;
    line-height: 26px;
    color: #b5aec4;
    font-weight: 300;
    font-family: var(--font-body);
    padding-bottom: 20px;
}

.subscribe_widget .input-group input {
    background: #2b2e3d;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 40px;
    border-radius: 3px;
    font-size: 12px;
    color: #b5aec4;
    font-family: var(--font-body);
    padding: 0px 15px;
}

.subscribe_widget .input-group input.placeholder {
    font-size: 12px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.subscribe_widget .input-group input:-moz-placeholder {
    font-size: 12px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.subscribe_widget .input-group input::-moz-placeholder {
    font-size: 12px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.subscribe_widget .input-group input::-webkit-input-placeholder {
    font-size: 12px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.subscribe_widget ul {
    padding-top: 30px;
}

.subscribe_widget ul li {
    display: inline-block;
    margin-right: 32px;
}

.subscribe_widget ul li a {
    font-size: 14px;
    color: #b5aec4;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.subscribe_widget ul li:hover a {
    color: #2bc0a4;
}

.subscribe_widget ul li:last-child {
    margin-right: 0px;
}

.twitter_widget {
    margin-left: 55px;
}

.twitter_widget .tweets_feed ul .owl-item .tw_content .tweet_text {
    font-size: 14px;
    line-height: 26px;
    color: #b5aec4;
    font-family: var(--font-body);
}

.twitter_widget .tweets_feed ul .owl-item .tw_content .tweet_text i {
    padding-right: 5px;
    color: #2bc0a4;
}

.twitter_widget .tweets_feed ul .owl-item .tw_content .tweet_text a {
    font-size: 14px;
    line-height: 26px;
    color: #b5aec4;
    font-family: var(--font-body);
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.twitter_widget .tweets_feed ul .owl-item .tw_content .tweet_text a:hover {
    color: #2bc0a4;
}

.twitter_widget .tweets_feed ul .owl-item .tw_content .tweet_date {
    font-size: 14px;
    line-height: 26px;
    color: #b5aec4;
    font-family: var(--font-body);
    padding-top: 15px;
}

.twitter_widget .tweets_feed ul .owl-item .footer .tweet_time.fright a {
    font-size: 14px;
    line-height: 26px;
    color: #2bc0a4;
    font-family: var(--font-body);
}

.categories_widget {
    margin-left: 70px;
}

.categories_widget ul {
    width: calc(100% / 2);
    float: left;
    margin-top: -4px;
}

.categories_widget ul li a {
    position: relative;
    font-size: 14px;
    color: #b5aec4;
    font-family: var(--font-body);
    line-height: 36px;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.categories_widget ul li a i {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.categories_widget ul li:hover a {
    padding-left: 15px;
    color: #2bc0a4;
}

.categories_widget ul li:hover a i {
    opacity: 1;
}

.contact_widget {
    margin-left: 50px;
}

.contact_widget a,
.contact_widget p,
.contact_widget h6 {
    font-size: 14px;
    color: #b5aec4;
    font-family: var(--font-body);
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.contact_widget a:hover,
.contact_widget p:hover,
.contact_widget h6:hover {
    color: #2bc0a4;
}

.contact_widget p {
    padding: 23px 0px;
}

.copy_right_area {
    background: #04081d;
    overflow: hidden;
}

.copy_right_area .float-md-left h5 {
    color: #51545f;
    font-size: 14px;
    font-family: var(--font-body);
    line-height: 50px;
}

.copy_right_area .float-md-left h5 a {
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
    color: #51545f;
    font-size: 14px;
    font-family: var(--font-body);
    line-height: 50px;
}

.copy_right_area .float-md-left h5 a:hover {
    color: #2bc0a4;
}

.copy_right_area .float-md-right .nav li {
    margin-right: 35px;
}

.copy_right_area .float-md-right .nav li a {
    padding: 0px;
    line-height: 50px;
    font-size: 14px;
    color: #51545f;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.copy_right_area .float-md-right .nav li:last-child {
    margin-right: 0px;
}

.copy_right_area .float-md-right .nav li:hover a {
    color: #2bc0a4;
}

/* End Footer Area css
============================================================================================ */
/*---------------------------------------------------- */

.sponsors {
    background-color: #f7f7f7;
    padding: 130px 0 60px 0;
}

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

.sponsors .container h1 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-size: 2.4rem;
    font-weight: 700;
}

.sponsors .container a img {
    height: 100px;
    width: auto;
    margin: 0.5rem 1rem;
}

.program-span {
    padding: 80px 0;
    /* border-top: 1px solid #000; */
    background: #f7f7f7;
}

.program-span h3 {
    color: #fff;
    font-size: 2.2rem;
}

.program-span h3 span {
    color: #3b5999;
    font-weight: 600;
}

.project1 {
    background-color: #fff;
    /* background: linear-gradient(to bottom, #cedee0, #ffffff); */
    padding: 3rem 0;
    margin: 0;
    width: 100%;
    max-width: 100% !important;
}

.project1 h2 {
    font-weight: 600;
    font-size: 3rem;
    color: #131627;
}

.obj-title {
    margin-left: 5vw !important;
    margin-right: 6vw !important;
}

.obj-title h3 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-img {
    margin-left: 80px;
    height: 100%;
    width: auto;
    object-fit: cover;
}

.contact-img img {
    height: auto;
    /* max-height: 600px; */
    width: 100%;
    object-fit: cover;
}

.team-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

.team-section h2 {
    font-weight: 600;
    font-size: 1.9rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #007bff;
}

@media screen and (max-width: 768px) {
    .team-members-row {
        gap: 72px 32px !important;
        margin-top: 100px !important;
    }
}

.team-title {
    margin-bottom: 1rem;
}

.team-title h1 {
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-size: 2.4rem;
    /* color: #52299b; */
}

.contact-footer {
    position: absolute;
    width: 100%;
}

.card {
    position: relative;
    width: 350px;
    height: 190px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.card:hover {
    height: 400px;
}

.imgBx {
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translate(-50% );
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: 0.5s;
}

.card:hover .imgBx {
    width: 250px;
    height: 250px;
}

.imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.card .content .details {
    padding: 40px;
    text-align: center;
    width: 100%;
    transition: 0.5s;
    transform:  translateY(100px);
}

.card:hover .content .details {
    transform:  translateY(0px);
}

.card .content .details h2 {
    font-size: 1.25em;
    font-weight: 600;
    color: #555;
    line-height: 1.2em;
}

.card .content .details h2 span {
    font-size: 0.75em;
    font-weight: 500;
    opacity: 0.5;
}

.card .content .details .data h3 {
    font-size: 1em;
    color: #555;
    line-height: 1.2em;
    font-weight: 600;
}

.card .content .details .data h3 span {
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.5;
}

.team-member-card {
    height: 176px;
}

.team-member-card:hover {
    height: 390px;
}

.team-member-card .content .details {
    padding: 12px 24px 10px;
    transform: translateY(0);
}

.team-member-card .content .details .member-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 0 0 6px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.team-member-card .content .details .member-name,
.team-member-card .content .details .member-role,
.team-member-card .content .details .data,
.team-member-card .content .details .data h3,
.team-member-card .content .details .data .link-button {
    max-width: 100%;
    min-width: 0;
}

.team-member-card .content .details .member-role {
    font-size: 0.75em;
    font-weight: 500;
    color: #007bff;
    opacity: 1;
}

.team-member-card .content .details .data {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.team-member-card .content .details .data h3 {
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.team-member-card .content .details .data .link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.team-member-card .content .details .data .link-button span {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-member-card .content .details .data .link-button .fa {
    flex-shrink: 0;
}

@media screen and (min-width: 769px) {
    .team-member-card .content .details .data {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(10px);
        pointer-events: none;
        margin-top: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, margin-top 0.35s ease;
    }

    .team-member-card:hover .content .details .data {
        max-height: 180px;
        opacity: 1;
        overflow: visible;
        transform: translateY(0);
        pointer-events: auto;
        margin-top: 2px;
    }
}

@media screen and (max-width: 768px) {
    .team-member-card {
        width: 300px;
    }

    .team-member-card:hover {
        height: 176px;
    }

    .team-member-card.is-expanded {
        height: 420px;
    }

    .team-member-card:hover .imgBx {
        width: 150px;
        height: 150px;
    }

    .team-member-card.is-expanded .imgBx {
        width: 250px;
        height: 250px;
    }

    .team-member-card.is-expanded:hover .imgBx {
        width: 250px;
        height: 250px;
    }

    .team-member-card .content .details {
        padding: 18px 20px 18px;
    }

    .team-member-card .content .details .member-heading {
        gap: 2px;
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.05;
    }

    .team-member-card .content .details .member-name,
    .team-member-card .content .details .member-role {
        display: block;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .team-member-card .content .details .member-name {
        font-size: 0.92em;
        font-weight: 600;
    }

    .team-member-card .content .details .member-role {
        font-size: 0.78em;
        color: #007bff;
    }

    .team-member-card:not(.is-expanded) .content .details .data {
        display: none;
    }

    .team-member-card.is-expanded .content .details .data {
        display: flex;
        max-height: none;
        opacity: 1;
        overflow: visible;
        transform: translateY(0);
        pointer-events: auto;
        margin-top: 10px;
    }

    .team-member-card .content {
        cursor: pointer;
    }
}

/* .card .content .details .actionBtn {
    display: flex;
    justify-content: space-between;
}

.card .content .details .actionBtn button {
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 1em;
    font-weight: 500;
    background: #52299b;
    color: #fff;
    cursor: pointer;
} */


.products {
    margin-top: 70px;
}

.products h2 {
    font-weight: 600;
    font-size: 1.9rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

* {
    box-sizing: border-box;
}

.blog-slider {
    width: 100%;
    /* position: absolute; */
    /* max-width: 700px; */
    margin: auto;
    background: #fff;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    max-height: 400px;
    transition: all 0.3s;
}

@media screen and (max-width: 992px) {
    .blog-slider {
      /* max-width: 480px; */
      max-height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .blog-slider {
      min-height: 500px;
      height: auto;
      margin: 180px auto;
    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider {
      max-height: 350px;
    }
}

.blog-slider__item {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .blog-slider__item {
      flex-direction: column;
    }
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > * {
    opacity: 1;
    transform: none;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
    transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
    transition-delay: 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
    transition-delay: 0.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
    transition-delay: 0.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
    transition-delay: 0.7s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
    transition-delay: 0.8s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
    transition-delay: 0.9s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
    transition-delay: 1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
    transition-delay: 1.1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
    transition-delay: 1.2s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
    transition-delay: 1.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
    transition-delay: 1.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
    transition-delay: 1.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
    transition-delay: 1.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
    transition-delay: 1.7s;
}

.blog-slider__img {
    width: 400px;
    flex-shrink: 0;
    height: auto;
    /* background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%); */
    /* box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2); */
    box-shadow: 4px 13px 30px 1px rgba(19, 22, 39, 0.2);
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
}

.blog-slider__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.8;
}

.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s;
}

@media screen and (max-width: 768px) {
    .blog-slider__img {
        transform: translateY(-50%);
        width: 90%;
    }
}

@media screen and (max-width: 576px) {
    .blog-slider__img {
        width: 95%;
    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider__img {
        height: 270px;
    }
}

.blog-slider__content {
    padding-right: 25px;
}

@media screen and (max-width: 768px) {
    .blog-slider__content {
        margin-top: -80px;
        text-align: center;
        padding: 0 30px;
    }
}

@media screen and (max-width: 576px) {
    .blog-slider__content {
        padding: 0;
    }
}

.blog-slider__content > * {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s;
}

.blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.blog-slider__title {
    font-size: 20px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
}

.blog-slider__text {
    color: #4e4a67;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5em;
}

.blog-slider__button {
    display: inline-flex;
    background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
    padding: 15px 35px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
}

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

.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .blog-slider__pagination {
        transform: translateX(-50%);
        left: 50% !important;
        top: 205px;
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
}

@media screen and (max-width: 768px) {
    .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px;
    }
}

.blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fd3838;
    height: 30px;
    box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

@media screen and (max-width: 768px) {
    .blog-slider__pagination .swiper-pagination-bullet-active {
        height: 11px;
        width: 30px;
    }
}


/* React-based Animations */
@keyframes slideUpFade {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.animate-entrance {
  animation: slideUpFade 1.5s ease-in-out forwards;
}

/* ── Typography enforcement: use only the MedIA system fonts ─────────────── */
body {
    font-family: var(--font-body) !important;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline) !important;
}

p, span, a, li, label, input, textarea, button, select, option, small, strong, em,
td, th, dt, dd, figcaption, blockquote {
    font-family: var(--font-body) !important;
}

.rev-btn,
.rev-btn:visited,
.rev-control-btn,
.tp-button,
.tp-button:visited {
    font-family: var(--font-body) !important;
}
