@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&amp;family=Quicksand:wght@300;400;500;600;700&amp;display=swap');

:root {
    --color1: #707788;
    /* --color1: #6c91fc; */
    --color2: #004D8A;
    --color3: #004D8A;
    --color4: #00BB77;
    --blanco: #ffff;
    --negro: #000;
    --gradient1: linear-gradient(to bottom, #00a6d6, #009ed4, #0096d1, #008ecd, #0d86c9);
    --gradiente2: linear-gradient(to bottom, #62d352, #4fcd5d, #3bc867, #25c170, #00bb77);
    --gradiente3: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
    --titulos: 'Open Sans', sans-serif;
    --parrafos: 'Lato', sans-serif;
    --clr-theme-extra: #49D8EF;
    --clr-theme-gray: #F4F4F4;
    --clr-bg-white: #ffffff;
    --dorado: #EFB810;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: var(--parrafos);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
    color: var(--negro);
}

img {
    max-width: 100%;
}

a,
a:hover,
a:focus {
    cursor: pointer !important;
    outline: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--titulos);
    font-weight: 700;
    color: var(--negro);
    margin: 0;
    padding: 0;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

strong {
    font-weight: 700;
}

h1 {
    font-size: 65px;
    line-height: 75px;
}

h2 {
    font-size: 34px;
    line-height: 1.5;
}

h3 {
    font-size: 24px;
    line-height: 30px;
}

h4 {
    font-size: 20px;
    line-height: 1.5;
}

h5 {
    font-size: 16px;
    line-height: 26px;
}

h6 {
    font-size: 14px;
    line-height: 14px;
}

p {
    font-size: 16px;
    line-height: 26px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.px-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.px-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mx-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.sec-title h3 {
    color: var(--color1);
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 18px;
    font-family: var(--titulos);
    font-weight: 400;
}

.sec-title h3 .tb {
    width: 33px;
    display: inline-block;
    overflow: hidden;
    margin-right: 10px;
}

.sec-title h3 .tb span:first-child {
    width: 16px;
    height: 12px;
    background: var(--color2);
    display: inline-block;
    border-radius: 10px 0 0 10px;
}

.sec-title h3 .tb span:last-child {
    width: 16px;
    height: 12px;
    background: var(--color1);
    display: inline-block;
    border-radius: 0 10px 10px 0;
}

.sec-title h3 .tb.clr3 span:first-child {
    background: var(--clr-theme-extra);
}

.btn {
    position: relative;
    display: inline-block;
    z-index: 1;
    border: 2px solid var(--blanco) !important;
    padding: 17px 34px;
    border-radius: 100px;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: var(--blanco);
    background: var(--color1);
}
.btn i{
    margin-right: 10px;
}
.btn:hover {
    color: var(--blanco);
    background: var(--color1);
}

.btn:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-image: var(--gradiente2);
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    z-index: -1;
    border-radius: 100px;
    /* border: 1px solid #fff; */
}

.btn:hover:before {
    height: 0%;
}

.no-js #loader {
    display: none;
}

.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
}

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background: url(../img/logos/logo-fjr-preloader.webp) center no-repeat #fff;
}

.container {
    max-width: 1470px;
}

.header-style-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 12;
}

.top_nav_soc {
    background: var(--blanco);
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
    z-index: 99999;
}

.top_nav_soc:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0;
    background-color: var(--color2);
    /* background-image: var(--gradiente2); */
    z-index: -1;
}

.left-content-top li {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    padding-right: 10px;
    position: relative;
}

.left-content-top li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.left-content-top li a {
    font-weight: 400;
    font-size: 1em;
    line-height: 24px;
    color: var(--blanco);
}

.left-content-top li i {
    vertical-align: middle;
    font-size: 16px;
    color: var(--blanco);
    margin-right: 5px;
}

.right-content-top {
    text-align: right;
}

.right-content-top li {
    display: inline-block;
}

.right-content-top li .btn2 {
    background: transparent;
    border: 0;
    padding: 0;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    font-family: 'Nunito', sans-serif;
    position: relative;
    padding-right: 15px;
}

.flagstrap-icon.flagstrap-gb {
    vertical-align: middle;
}

.dropdown-toggle::after {
    border: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    content: "\f078";
    vertical-align: middle;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.flagstrap-icon {
    vertical-align: middle;
}

.right-content-top li:first-child {
    padding-right: 10px;
    padding-left: 0;
    margin-left: 0;
}

.right-content-top li a {
    color: var(--clr-theme-extra);
    font-size: 16px;
    vertical-align: middle;
    transition: 0.3s all ease;
}

.right-content-top li a:hover {
    color: var(--blanco);
}

.right-content-top li {
    position: relative;
    padding-left: 15px;
    margin-left: 15px;
}

.right-content-top li:after {
    content: '';
    width: 1px;
    height: 100%;
    background: var(--clr-theme-extra);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.4;
}

.right-content-top li:first-child:after {
    display: none;
}

.right-content-top li .dropdown-menu a {
    font-size: 12px;
    line-height: 14px;
}

.right-content-top li .dropdown-menu {
    padding-left: 5px;
    padding-right: 5px;
}

.main-responsive-nav {
    display: none
}

.navbar-area .others-option-for-responsive {
    display: none
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 15px;
    margin-right: 15px
}

@media (min-width:992px) {
    .navbar-nav .nav-item .dropdown-menu {
        border: none;
        top: 65px;
        left: 0;
        z-index: 1050;
        opacity: 0;
        width: 460px;
        display: inline-block;
        border-radius: 0;
        padding: 10px 0;
        position: absolute;
        visibility: hidden;
        -webkit-box-shadow: rgba(17, 17, 26, .1) 0 0 16px;
        box-shadow: rgba(17, 17, 26, .1) 0 0 16px;
        background-color: var(--color1);
        -webkit-transition: all ease 0.8s;
        transition: all ease 0.8s;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
        border-radius: 10px;
    }

    .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: rotateX(0);
        transform: rotateX(0)
    }

    .navbar-nav .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: rotateX(0);
        transform: rotateX(0)
    }
}

.main-navbar {
    position: relative;
    z-index: 1;
    /* background-color: #fff; */
}

.navbar-brand {
    margin: 0;
    padding: 0;
    max-height: 80px;
}

.navbar-brand img {
    max-height: 80px;
    display: block;
}

.navbar-expand-md .navbar-nav .nav-link {
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: var(--blanco);
}

.navbar-expand-md .navbar-nav .nav-link i {
    font-size: 12px;
    margin-left: 4px;
}

.navbar-expand-md .navbar-nav .nav-link.active {
    color: var(--color2);
}

.navbar-nav .nav-item .dropdown-menu {
    top: 35px;
}

.navbar-expand-md .navbar-nav .nav-link .bx {
    vertical-align: middle;
}

.navbar-nav .nav-item .dropdown-menu .nav-item {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color2);
}

.navbar-expand-md .navbar-nav .nav-link:hover {
    color: var(--color2);
}

.mean-container .mean-nav ul li a.active {
    color: var(--color2);
}

.others-options .btn i {
    vertical-align: middle;
    font-size: 21px;
    line-height: 21px;
}

.others-options {
    margin-left: 35px;
}

.others-options .option-item {
    margin-left: 25px;
}

.others-options .option-item .opt {
    display: inline-block;
    width: 56px;
    height: 56px;
    border: 1px solid var(--color1);
    border-radius: 5px;
    text-align: center;
    line-height: 56px;
    position: relative;
    color: var(--color1);
    font-size: 20px;
}

.others-options .option-item .btn {
    padding: 16px 29px;
    max-height: 56px;
}

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 9999;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: var(--color1);
    border: 0;
    outline: 0;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    background-color: var(--color1);
    border-color: var(--color1);
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

@media (max-width:1280px) {
    .others-options {
        margin-left: 10px;
    }

    .navbar-nav .nav-item {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .main-responsive-nav {
        display: block
    }

    .main-responsive-nav .main-responsive-menu {
        position: relative
    }

    .main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
        overflow-y: scroll;
        height: 100vh;
        -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .1);
        box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .1);
        background-color: #fff
    }

    .main-responsive-nav .mean-container a.meanmenu-reveal {
        padding: 11px 0 0;
        color: red
    }

    .main-responsive-nav .mean-container a.meanmenu-reveal span {
        display: block;
        background: red;
        height: 2px;
        margin-top: -6px;
        border-radius: 5px;
        position: relative;
        top: 8px
    }

    .main-navbar {
        display: none
    }

    .main-responsive-nav .logo {
        position: relative;
        z-index: 999;
        max-width: 50%
    }

    .main-responsive-nav .others-options {
        position: absolute;
        right: 60px;
        top: 7px;
        z-index: 9999;
    }

    .main-responsive-nav {
        padding-top: 18px;
        padding-bottom: 18px
    }

    .main-responsive-nav .mean-container a.meanmenu-reveal {
        top: 18px;
        padding: 0;
        color: var(--color1)
    }

    .main-responsive-nav .mean-container a.meanmenu-reveal span {
        background: var(--color1)
    }

    .main-responsive-nav .logo a {
        display: inline-block
    }

    .main-responsive-nav .logo img {
        vertical-align: middle;
        max-height: 60px
    }

    .mean-container .mean-nav {
        margin-top: 60px
    }

    .navbar-nav .nav-item {
        margin: 0
    }

    .mean-container .mean-bar {
        border: 0;
        background: transparent;
    }

    .mean-container .mean-nav ul li a i {
        display: none
    }

    .navbar-nav .nav-item .dropdown-menu .nav-item {
        padding: 0
    }

    .others-options .option-item .opt {
        height: 46px;
        font-size: 16px;
        width: 46px;
        line-height: 46px;
    }

    .others-options .option-item .btn {
        max-height: 46px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

.hero-banner-style1 {
    position: relative;
    padding-top: 140px;
    z-index: 1;
    background: var(--color1);
}

.hero-banner-style1:after {
    content: '';
    background: var(--blanco);
    border-radius: 0px 0px 0px 0px;
    width: 35%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -11;
}

.hero-banner-style1:before {
    content: '';
    background-image: url(../img/sections/shape-fjr.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
    width: 35%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.hero-inner-content {
    position: relative;
    max-width: calc(100% - 113px);
    margin-left: 113px;
    border-radius: 5px 0px 0px 5px;
    padding: 80px 80px;
}

.hero-inner-content .inner {
    margin-left: -58px;
    z-index: 12;
    position: relative;
}

.hero-inner-content .hero-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center;
    border-radius: 5px 0px 0px 5px;
    z-index: 1;
}

.hero-inner-content .inner h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--negro);
}

.hero-inner-content .inner h1 {
    color: var(--blanco);
    max-width: 617px;
}

.hero-inner-content .inner h1 span {
    color: var(--color2);
}

.hero-inner-content .inner p {
    margin-top: 15px;
    max-width: 550px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: var(--negro);
}

.hero-inner-content .inner .btn {
    margin-top: 52px;
}

.hero-inner-content .inner .hero-icon {
    position: absolute;
    top: 50%;
    left: 12%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}

.left-hero-details {
    max-width: 100%;
    padding: 20px;
}

.left-hero-details .imgs {
    background: var(--color2);
    width: 66px;
    height: 66px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.left-hero-details .imgs i{
    font-size: 2em;
    color: var(--blanco);
}
.left-hero-details h4 {
    line-height: 36px;
    color: var(--blanco);
    font-size: 16px;
    font-weight: 400;
}

.left-hero-details .flex-grow-1 a {
    color: var(--blanco);
    font-size: 20px;
    line-height: 36px;
    font-weight: 700;
}

.left-hero-details p {
    margin-top: 30px;
    color: var(--blanco);
}

.left-hero-details .btn {
    margin-top: 34px;
}

.btn.st2 {
    border: 1px solid var(--color2) !important;
}

.btn.st2:hover {
    color: var(--color2);
}

.btn.st2:before {
    background-color: var(--color2);
}

.hero-apply-appointment-wrap {
    padding: 40px;
    padding-top: 30px;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin: 20px 0px;
}

.hero-apply-appointment-wrap:after {
    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0px 5px 5px 0px;
    z-index: 1;
    background: var(--color1);
}

.hero-apply-appointment-wrap h3 {
    margin-bottom: 20px;
}

.form-control {
    background: var(--clr-theme-gray) !important;
    border-radius: 5px;
    padding: 14px 26px;
    border: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    box-shadow: unset !important;
}

.form-select {
    background-color: var(--clr-theme-gray) !important;
    border-radius: 5px;
    padding: 14px 26px;
    border: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    box-shadow: unset !important;
}

.hero-apply-appointment-wrap .gj-datepicker .btn:before {
    display: none;
}

.hero-apply-appointment-wrap .gj-datepicker .btn {
    background: var(--color2);
    padding: 0;
    width: 46px;
    height: 46px;
    border-radius: 5px !important;
    position: absolute;
    right: 5px;
    top: 5px;
    border: 0 !important;
    color: var(--blanco) !important;
    z-index: 12;
    font-size: 24px;
}

.hero-apply-appointment-wrap .select-cstm label {
    width: 46px;
    height: 46px;
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--color2);
    text-align: center;
    line-height: 46px;
    border-radius: 5px;
    color: var(--blanco);
    z-index: 1;
}

.hero-apply-appointment-wrap .select-cstm {
    position: relative;
    background-color: var(--clr-theme-gray);
}

.hero-apply-appointment-wrap .select-cstm .form-select {
    background: transparent !important;
    z-index: 12;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
}

.hero-apply-appointment-wrap .btn.nw {
    width: 100%;
    padding: 16px;
    font-weight: 400;
    padding-top: 15px;
}

.gj-unselectable.mb-3 {
    margin: 0 !important;
}

@media (max-width:1600px) {

    .hero-banner-style1:before,
    .hero-banner-style1:after {
        width: 33%;
    }
}

@media (max-width:1199px) {
    .left-content-top li {
        margin-right: 5px;
        padding-right: 10px;
    }
}

@media (max-width:991px) {

    .hero-banner-style1:before,
    .hero-banner-style1:after {
        width: 33%;
    }

    .hero-inner-content {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-inner-content .inner .hero-icon {
        max-width: 50%;
    }
}

@media (max-width:767px) {
    .hero-inner-content {
        padding-left: 0;
        padding-right: 0;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .hero-inner-content .inner {
        margin: 0;
    }

    .hero-inner-content .inner .btn {
        margin-top: 30px;
    }

    .hero-banner-style1:before,
    .hero-banner-style1:after {
        width: 60%;
        height: 200px;
    }

    .hero-banner-style1 {
        padding-top: 80px;
    }

    .left-hero-details .imgs {
        box-shadow: 0px 0px 35px rgb(0 0 0 / 8%);
    }

    .left-hero-details {
        max-width: 100%;
        margin-top: 30px;
    }

    .left-hero-details p,
    .left-hero-details .flex-grow-1 a,
    .left-hero-details h4 {
        color: var(--negro);
    }
}

.about-sec-medifest .about-shape {
    position: absolute;
    left: 0px;
    opacity: 0.1;
    bottom: 20%;
}

.about-left-content .sec-title {
    max-width: 635px;
}

.about-left-content .sec-title h2 {
    max-width: 568px;
}

.about-left-content .sec-title p {
    margin-top: 27px;
    margin-bottom: 10px;
}

.bullet-list-all li {
    margin-top: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: var(--negro);
    padding-left: 18px;
    position: relative;
}

.bullet-list-all li:after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 3.3px;
    background-color: var(--color1);
}

.about-left-content .btn {
    margin-top: 56px;
}

.right-content-about img {
    display: block;
    margin-left: auto;
    border-radius: 10px;
}

.right-content-about {
    position: relative;
    padding-bottom: 74px;
}

.video-poster {
    width: 153px;
    position: absolute;
    left: 0;
    top: auto;
    bottom: 140px;
    border-radius: 5px 5px 0px 0px;
    overflow: hidden;
    padding: 52px 29px;
    background-image: url(../img/about-video.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.video-poster:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--negro);
    opacity: 0.5;
    z-index: -1;
    border-radius: 5px 5px 0px 0px;
}

.video-poster p {
    color: var(--blanco);
}

.video-poster a {
    display: inline-block;
    border: 1px solid var(--blanco);
    width: 70px;
    height: 70px;
    text-align: center;
    margin: auto;
    margin-top: 172px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-poster a span {
    width: 56px;
    height: 56px;
    background: var(--blanco);
    display: inline-block;
    border-radius: 50%;
    line-height: 56px;
    font-size: 20px;
    color: var(--color1);
}

.right-content-about .exp {
    box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.08);
    border-radius: 0px 5px 5px 5px;
    display: inline-block;
    max-width: 443px;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 34px 10px;
    position: absolute;
    bottom: 2px;
    left: 0;
}

.right-content-about .exp .icons {
    width: 71px;
    height: 71px;
    background: var(--blanco);
    border-radius: 50%;
    font-size: 40px;
    color: var(--color1);
    line-height: 71px;
}

.right-content-about .exp h2 {
    font-size: 46px;
    color: var(--color1);
    vertical-align: middle;
    display: flex;
    align-items: center;
    margin-left: 24px;
}

.right-content-about .exp h2 small {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: var(--negro);
    margin-left: 20px;
}

@media (max-width:1100px) {
    .video-poster a {
        margin-top: 100px;
    }

    .right-content-about {
        max-width: 744px;
        margin: auto;
    }

    .about-left-content .sec-title {
        margin: auto;
    }
}

@media (max-width:991px) {
    .right-content-about {
        margin-top: 30px;
    }

    .video-poster a {
        margin-top: 160px;
    }
}

@media (max-width:767px) {
    .video-poster {
        border-radius: 20px;
    }

    .video-poster a {
        margin-top: 0px;
    }

    .video-poster p {
        display: none;
    }

    .right-content-about .exp h2 {
        font-size: 36px;
    }

    .right-content-about .exp h2 small {
        font-size: 20px;
    }

    .right-content-about .exp .icons {
        width: 50px;
        height: 50px;
        font-size: 20px;
        line-height: 50px;
    }

    .video-poster {
        bottom: 120px;
    }
}

.pricing-plan-sec {
    background-color: var(--blanco);
    background-image: url(../img/price-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-change-sim {
    background: var(--clr-bg-white);
}

.package-single-wrap {
    background: var(--clr-bg-white);
    border-radius: 5px;
    padding: 15px;
    padding-bottom: 40px;
}

.package-single-wrap .price-head {
    width: 100%;
    background-image: url(../img/price-head-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 27px 10px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.package-single-wrap .price-head:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: var(--color1);
    opacity: 0.6;
}

.package-single-wrap .price-head .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--clr-bg-white);
    text-align: center;
    line-height: 80px;
}

.package-single-wrap .price-head .icon svg path,
.package-single-wrap .price-head .icon svg {
    fill: var(--color1);
}

.package-single-wrap .price-head h2 {
    font-weight: 700;
    font-size: 46px;
    line-height: 46px;
    color: var(--blanco);
    padding-left: 20px;
}

.package-single-wrap .price-head sup {
    font-size: 20px;
    line-height: 20px;
}

.package-single-wrap .price-head sub {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.package-single-wrap .price-head .rec-badge {
    background: var(--color2);
    display: inline-block;
    position: absolute;
    right: -31px;
    top: 12px;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: var(--blanco);
    padding: 0 25px;
    -webkit-transform: rotate(46deg);
    -moz-transform: rotate(46deg);
    transform: rotate(46deg);
}

.price-body-pck {
    text-align: center;
    padding-top: 42px;
}

.price-body-pck h3 {
    padding-bottom: 18px;
}

.price-body-pck li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: var(--negro);
}

.price-body-pck li.dis {
    color: #A7A7A7;
}

.price-body-pck .btn {
    margin-top: 25px;
}

.btn.st3 {
    color: var(--negro);
}

.btn.st3:before {
    background: transparent;
    height: 0;
}

.btn.st3:hover:before {
    background: var(--color1);
    height: 100%;
}

.btn.st3:hover {
    color: var(--blanco);
}

.package-single-wrap.featured h3 {
    color: var(--color1);
}

.package-single-wrap.featured .btn {
    color: var(--blanco);
}

.package-single-wrap.featured .btn:before {
    background: var(--color1);
    height: 100%;
}

.package-single-wrap.v2.featured,
.package-single-wrap.v2 {
    background: var(--blanco);
    border-radius: 5px;
}

@media (max-width:767px) {
    .package-single-wrap .price-head h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .package-single-wrap .price-head .icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

.services-sec {
    background-color: var(--color1);
    background-image: url(../img/services-bg-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sec-title h3 .tb.clr2 span:first-child {
    background: var(--color2);
}

.services-mp-wraps {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 420px;
}

.service-single-inner .icons img {
    vertical-align: middle;
}

.service-single-inner .icons {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--clr-bg-white);
    text-align: center;
    line-height: 60px;
    border: 6px solid var(--color2);
    cursor: pointer;
}

.service-single-inner .hidden-content img {
    display: block;
    max-width: 76px;
    max-height: 76px;
    border-radius: 5px;
}

.service-single-inner .hidden-content h4 {
    margin-left: 20px;
    line-height: 150%;
}

.service-single-inner .hidden-content:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 21px 18.5px 0 18.5px;
    border-color: var(--clr-bg-white) transparent transparent transparent;
    position: absolute;
    left: 50%;
    bottom: -16px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.service-single-inner .hidden-content {
    background: var(--clr-bg-white);
    max-width: 320px;
    padding: 14px;
    border-radius: 5px;
    position: absolute;
    width: 423px;
    left: -125px;
    top: -125px;
    opacity: 0;
    z-index: -1;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.service-single-inner:hover .hidden-content {
    z-index: 12;
    opacity: 1;
}

.service-single-inner {
    position: absolute;
}

.service-single-inner.v1 {
    left: 5%;
    top: 15%;
}

.service-single-inner.v2 {
    left: 17%;
    bottom: 0;
}

.service-single-inner.v3 {
    left: 30%;
    top: 37%;
}

.service-single-inner.v4 {
    left: 52%;
    top: 67%;
}

.service-single-inner.v5 {
    left: 62%;
    top: 0;
}

.service-single-inner.v6 {
    left: 80%;
    bottom: 1%;
}

.service-single-inner.v7 {
    right: 0;
    top: 39%;
}

@media (max-width:1740px) {
    .service-single-inner.v7 .hidden-content {
        left: auto;
        right: 0;
    }

    .service-single-inner.v7 .hidden-content:after {
        right: 0;
        left: auto;
    }
}

@media (max-width:1600px) {
    .service-single-inner.v1 .hidden-content {
        left: 0;
    }

    .service-single-inner.v1 .hidden-content:after {
        left: 20px;
    }
}

@media (max-width:991px) {
    .service-single-inner .hidden-content {
        width: 320px;
    }

    .service-single-inner.v6 .hidden-content {
        left: auto;
        right: 0;
    }

    .service-single-inner.v6 .hidden-content:after {
        left: 90%;
    }
}

@media (max-width:767px) {
    .service-single-inner .hidden-content {
        width: 280px;
    }

    .services-mp-wraps {
        height: 300px;
    }

    .service-single-inner.v3 .hidden-content {
        left: 0;
    }

    .service-single-inner.v3 .hidden-content:after {
        left: 10%;
    }

    .service-single-inner .hidden-content img {
        max-width: 50px;
        max-height: 50px;
    }

    .service-single-inner .hidden-content {
        top: -100px;
    }

    .service-single-inner.v2 .hidden-content {
        left: -50%;
    }

    .service-single-inner.v2 .hidden-content:after {
        left: 24%;
    }
}

.portfolio-inner-wrap {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio-inner-wrap img {
    border-radius: 10px;
    display: block;
}

.portfolio-inner-wrap .inner-content {
    opacity: 0.9;
    border-radius: 10px;
    background: var(--clr-bg-white);
    position: absolute;
    left: 30px;
    padding: 18px 20px;
    bottom: -100px;
    opacity: 0;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.portfolio-inner-wrap:hover .inner-content {
    opacity: 1;
    bottom: 30px;
}

.portfolio-inner-wrap .plus-sign {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--clr-bg-white);
    display: inline-block;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    line-height: 60px;
    color: var(--color4);
    font-size: 29px;
    top: -50px;
    opacity: 0;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.portfolio-inner-wrap:hover .plus-sign {
    opacity: 1;
    top: 30px;
}

.portfolio-inner-wrap .inner-content p {
    padding-top: 10px;
    color: var(--color1);
}

.why-us-sec {
    position: relative;
    z-index: 1;
    background: var(--blanco);
    padding-bottom: 258px;
}

.why-us-sec .container {
    z-index: 12;
    position: relative;
}

.why-us-sec:after {
    content: '';
    width: 100%;
    height: 100%;
    max-width: 820px;
    max-height: 575px;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../img/slider/hexagonos2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

.why-us-sec:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/slider/);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    opacity: 0.5;
}

.why-us-sec .doc-top {
    position: absolute;
    right: 45px;
    top: 64px;
    z-index: 1;
}

.list-with-icon li {
    position: relative;
    padding-left: 100px;
}

.list-with-icon li .icon {
    background: var(--clr-bg-white);
    display: inline-block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    text-align: center;
    line-height: 74px;
}

.list-with-icon li .icon img {
    vertical-align: middle;
}

.list-with-icon li p {
    margin-top: 16px;
}

.list-with-icon li h3 {
    color: var(--color1);
}

.list-with-icon.row {
    margin-left: 0;
}

@media (max-width:1400px) {
    .why-us-sec .doc-top {
        max-width: 500px;
    }
}

@media (max-width:1199px) {
    .why-us-sec .doc-top {
        max-width: 280px;
    }
}

@media (max-width:767px) {
    .why-us-sec .doc-top {
        display: none;
    }
}

.fun-fact-sec {
    position: relative;
    margin-top: -162px;
    z-index: 12;
}

.fun-fact-inner {
    background-color: var(--color1);
    border-radius: 10px;
    border: 10px solid var(--clr-bg-white);
    padding: 50px 0;
}

.single-fact-in .icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    text-align: center;
    margin: auto;
    background: var(--color2);
    line-height: 80px;
    border-radius: 50%;
}

.single-fact-in {
    text-align: center;
}

.single-fact-in .icon img {
    vertical-align: middle;
}

.single-fact-in .cont {
    padding-top: 30px;
}

.single-fact-in .cont h2 {
    color: var(--blanco);
    font-size: 40px;
    line-height: 46px;
}

.fun-fact-inner {
    border-radius: 20px;
}

.single-fact-in .cont p {
    color: var(--blanco);
    line-height: 28px;
}

@media (max-width:767px) {
    .single-fact-in .cont h2 {
        font-size: 36px;
        line-height: 36px;
    }
}

.meet-doc-sec .doc-shape-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.1;
}

.single-doc-wrap .imgs img {
    border-radius: 10px;
    display: block;
    width: 100%;
}

.single-doc-wrap .imgs {
    position: relative;
}

.single-doc-wrap .imgs ul {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    background: var(--clr-bg-white);
    border-radius: 10px 0px;
    padding: 14px;
    min-width: 70px;
    text-align: right;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
}

.single-doc-wrap:hover .imgs ul {
    min-width: 238px;
}

.single-doc-wrap .imgs ul li {
    display: inline-block;
}

.single-doc-wrap:hover .imgs ul li.p-m .fa-plus:before {
    content: "\f068";
}

.single-doc-wrap .imgs ul li.p-m {
    width: 42px;
    height: 42px;
    background: var(--color4);
    text-align: center;
    color: var(--blanco);
    border-radius: 50%;
    line-height: 45px;
    font-size: 23px;
    opacity: 0.9;
    cursor: pointer;
}

.single-doc-wrap .imgs ul li a {
    display: inline-block;
    width: 42px;
    height: 42px;
    background: var(--blanco);
    text-align: center;
    border-radius: 50%;
    line-height: 42px;
    font-size: 24px;
    color: var(--color4);
}

.single-doc-wrap .imgs ul li:not(.p-m) {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    right: 0;
    opacity: 0;
}

.single-doc-wrap:hover .imgs ul li:nth-last-of-type(2) {
    right: 76px;
    opacity: 1;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.single-doc-wrap:hover .imgs ul li:nth-last-of-type(3) {
    right: 130px;
    opacity: 1;
    -webkit-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
}

.single-doc-wrap:hover .imgs ul li:nth-last-of-type(4) {
    right: 182px;
    opacity: 1;
    -webkit-transition: 0.8s all ease-in-out;
    transition: 0.8s all ease-in-out;
}

.single-doc-wrap .cont {
    padding-top: 26px;
}

.single-doc-wrap .cont p {
    line-height: 28px;
    color: var(--color1);
}

.single-blog-inner {
    background: var(--clr-bg-white);
    border: 1px solid var(--blanco);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
}

.single-blog-inner .imgs {
    position: relative;
    z-index: 1;
    padding-top: 435px;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
}

.single-blog-inner .imgs .hidden-link {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 12;
    cursor: pointer;
    text-indent: -999px;
}

.single-blog-inner .imgs img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
    border-radius: 5px 5px 0px 0px;
    object-fit: cover;
}

.single-blog-inner:hover .imgs img {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -moz-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
}

.single-blog-inner .imgs .tag {
    background: var(--color2);
    border-radius: 5px 5px 0px 0px;
    position: absolute;
    left: 35px;
    bottom: 0;
    padding: 12px 20px;
    color: var(--blanco);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.single-blog-inner .cont {
    padding: 28px 35px;
}

.single-blog-inner .cont li {
    display: inline-block;
}

.single-blog-inner .cont li:not(:first-child) {
    padding-left: 20px;
}

.single-blog-inner .cont li i {
    color: var(--color1);
    margin-right: 5px;
}

.single-blog-inner .cont h4 {
    line-height: 150%;
    margin-top: 14px;
}

.single-blog-inner .cont h4 a {
    color: var(--negro);
    text-transform: capitalize;
}

.single-blog-inner .cont h4:hover a {
    color: var(--color1);
}

.single-blog-inner .cont .readM {
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--negro);
    margin-top: 37px;
}

.single-blog-inner .cont .readM:hover {
    color: var(--color1);
}

@media (max-width:1200px) {
    .single-blog-inner .imgs {
        padding-top: 300px;
    }
}

@media (max-width:767px) {
    .single-blog-inner .imgs .tag {
        left: 20px;
    }

    .single-blog-inner .cont {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.footer-above-sec {
    position: relative;
    z-index: 11;
}

.inner-ftr-info {
    /* background-image: var(--gradiente2); */
    background-color: var(--color2);
    border: 10px solid var(--blanco);
    border-radius: 20px;
    padding: 37px;
}

.inner-ftr-info .row .border-right,
.inner-ftr-info .row .col-lg-4 {
    border-right: 1px solid var(--blanco);
}

.ftr-info-wrap {
    position: relative;
    padding-left: 105px;
    min-height: 80px;
}

.ftr-info-wrap .icon {
    width: 80px;
    height: 80px;
    background: var(--color2);
    text-align: center;
    border-radius: 50%;
    line-height: 80px;
    position: absolute;
    left: 0;
    top: 0;
}

.ftr-info-wrap .icon img {
    vertical-align: middle;
}

.ftr-info-wrap h4 {
    color: var(--blanco);
    margin-bottom: 20px;
}

.ftr-info-wrap p {
    max-width: 190px;
    color: var(--blanco);
}

.ftr-info-wrap p a {
    color: var(--blanco);
    word-break: break-all;
}

.footers {
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 210px;
    margin-top: -90px;
}

.footers:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--color3);
}

.ftr-widget h2 {
    color: var(--blanco);
    padding-bottom: 14px;
    position: relative;
    margin-bottom: 23px;
    font-size: 1.2em;
    line-height: 1.5;
}

.ftr-widget p {
    color: var(--color2);
}

.ftr-widget.about p {
    padding-top: 1px;
}

.ftr-widget .socials {
    margin-top: 22px
}

.ftr-widget .socials li {
    display: inline-block;
    padding-right: 10px
}

.ftr-widget .socials li a {
    background: var(--clr-bg-white);
    box-shadow: 0 4px 8px 2px rgba(0, 124, 251, .16);
    display: inline-block;
    width: 33px;
    height: 33px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    vertical-align: middle;
    color: #3661fc;
    margin: 5px;
}

.ftr-widget .navs li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #B8B8B8;
    position: relative;
    padding-left: 17px
}

.ftr-widget .navs li a:after {
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: .3s ease-in;
    font-size: 12px;
}

.ftr-widget .navs li a:hover:after {
    left: 4px
}

.ftr-widget .navs li a:hover {
    color: var(--color1);
}

.ftr-widget .recent-posts li {
    display: inline-block;
    width: 100%;
    padding-bottom: 28px
}

.ftr-widget .recent-posts li img {
    max-width: 70px;
    border-radius: 5px;
    display: block;
    max-height: 70px;
    margin-right: 20px;
    width: 70px;
    height: 70px;
    object-fit: cover
}

.ftr-widget .recent-posts li i {
    color: var(--color1);
}

.ftr-widget .recent-posts li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #d9d9d9;
    display: inline-block
}

.ftr-widget .recent-posts li p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #d9d9d9;
    padding-top: 10px
}

.ftr-widget.schedule table {
    width: 100%;
    min-width: 300px;
}

.ftr-widget.schedule table tr td {
    color: #B8B8B8;
    line-height: 36px;
}

.ftr-widget.schedule table tr td i {
    margin-right: 5px;
}

.ftr-widget.schedule table tr td:last-child {
    text-align: right;
}

.ftr-widget.schedule table tr td span {
    color: var(--color1);
}

#return-to-top {
    width: 56px;
    height: 56px;
    background: var(--color1);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 27px;
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 922;
    transition: .3s;
    line-height: 60px;
    display: none;
    z-index: 999;
}

.copyright-conts {
    background: var(--color2);
    display: inline-block;
    width: 100%;
    padding: 22px 0
}

.copyright-conts p {
    color: var(--blanco);
}

.copyright-conts ul {
    text-align: right;
}

.copyright-conts li {
    display: inline-block;
    position: relative;
    padding-left: 10px;
    margin-left: 10px
}

.copyright-conts li:after {
    content: '';
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0
}

.copyright-conts li:first-child {
    padding-left: 0;
    margin-left: 0
}

.copyright-conts li a {
    color: var(--blanco);
}

.copyright-conts li:first-child:after {
    display: none;
}

@media (max-width:1100px) {
    .ftr-info-wrap {
        padding-left: 80px;
    }

    .ftr-info-wrap .icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

@media (max-width:767px) {

    .inner-ftr-info .row .border-right,
    .inner-ftr-info .row .col-lg-4 {
        border: 0;
    }

    .copyright-conts p {
        text-align: center;
    }

    .copyright-conts ul {
        text-align: center;
    }
}

@media (max-width:767px) {
    h1 {
        font-size: 52px;
        line-height: 65px;
    }

    h2 {
        font-size: 30px;
        line-height: 40px;
    }

    h3 {
        font-size: 20px;
        line-height: 26px;
    }

    h4 {
        font-size: 18px;
        line-height: 20px;
    }

    h5 {
        font-size: 16px;
        line-height: 26px;
    }

    h6 {
        font-size: 14px;
        line-height: 14px;
    }

    p {
        font-size: 14px;
        line-height: 20px;
    }

    .pt-120 {
        padding-top: 80px;
    }

    .pb-120 {
        padding-bottom: 80px;
    }

    .px-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .btn {
        font-size: 16px;
        line-height: 20px;
        padding: 15px 30px;
    }
}

.hero-banner-v2 {
    width: 100%;
    background-image: url(../img/home2/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding-top: 42px;
    padding-bottom: 70px;
}

.hero-banner-v2:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color1);
    opacity: 0.75;
    z-index: -1;
}

.hero-content-inner-v2 {
    max-width: 678px;
}

.hero-content-inner-v2 h4 {
    color: var(--blanco);
    font-size: 24px;
    text-transform: uppercase;
}

.hero-content-inner-v2 h1 {
    margin-top: 18px;
    color: var(--blanco);
    font-weight: 700;
    font-size: 65px;
    line-height: 75px;
}

.hero-content-inner-v2 p {
    color: var(--blanco);
    margin-top: 15px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Quicksand', sans-serif;
}

.hero-content-inner-v2 .btn {
    margin-top: 52px;
}

.btn.v2 {
    border: 1px solid var(--clr-theme-extra) !important;
}

.btn.v2:hover {
    color: var(--clr-theme-extra);
}

.btn.v2:before {
    background-color: var(--clr-theme-extra);
}

.right-img-banner-v2 {
    text-align: right;
}

.about-sec-medifest.v2 {
    padding-top: 180px;
    padding-bottom: 180px;
}

.about-sec-medifest.v3 {
    padding-top: 180px;
    padding-bottom: 180px;
}

.left-img-about-v2 {
    width: 50%;
    position: absolute;
    left: 150px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-align: center;
    z-index: 1;
    min-height: 580px;
}

.left-img-about-v2:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: -160px;
    top: 0;
    z-index: -1;
    background-image: url(../img/slider/hexagonos.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    opacity: 0.8;
}

.about-right-content-v2 {
    max-width: 635px;
    margin-left: auto;
}

.about-right-content-v2 p {
    margin-top: 27px;
}

.bullet-list-icon li {
    padding-left: 75px;
    position: relative;
}

.bullet-list-icon li .icon {
    width: 50px;
    height: 50px;
    background: var(--clr-theme-extra);
    box-shadow: 5px 5px 20px rgba(54, 97, 252, 0.15);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.bullet-list-icon li .icon img {
    vertical-align: middle;
}

.bullet-list-icon li p {
    max-width: 170px;
    margin-top: 11px;
}

.about-right-content-v2 .bullet-list-icon {
    margin-top: 28px;
}

.about-right-content-v2 .btn {
    margin-top: 56px;
}

.bullet-list-icon.style2 li {
    padding-left: 100px;
}

.bullet-list-icon.style2 p {
    max-width: 402px;
}

.bullet-list-icon.style2 .icon {
    width: 80px;
    height: 80px;
    background: var(--color1);
    line-height: 80px;
}

.services-sec-v2 {
    width: 100%;
    background-image: url(../img/home2/services-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #f1f1f1;
}

.service-inner-v2 {
    background: var(--clr-bg-white);
    border-radius: 10px;
    text-align: center;
    padding: 40px;
}

.service-inner-v2 .imgs {
    position: relative;
}

.service-inner-v2 .imgs img {
    display: block;
    margin: auto;
    border-radius: 10px;
}

.service-inner-v2 .imgs .icon {
    border: 8px solid var(--blanco);
    border-radius: 500px 500px 0px 500px;
    background: var(--color2);
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    bottom: -42px;
    transform: translate(-50%, 0);
    line-height: 85px;
    transition: .5s;
}

.service-inner-v2:hover .imgs .icon {
    background: var(--color1);
    transition: .5s;
}

.service-inner-v2 .imgs .icon img {
    vertical-align: middle;
    display: inline-block;
}

.service-inner-v2 h3 {
    margin-top: 20px;
    color: var(--color1);
    transition: .5s;
}

.service-inner-v2:hover h3 {
    color: var(--color2);
    transition: .5s;
}

.service-inner-v2 p {
    padding-top: 13px;
    max-width: 384px;
    margin: auto;
}

.service-inner-v2 a {
    display: inline-block;
    margin-top: 25px;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: var(--negro);
}

.service-inner-v2 a i {
    transform: rotate(45deg);
    margin-left: 10px;
}

.service-inner-v2:hover a {
    color: var(--color1);
}

.appointment-sec-v2 {
    background-image: url(../img/home2/appointment-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.appointment-sec-v2:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--color1);
    opacity: 0.8;
}

.left-img-appt-dm {
    max-width: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
}

.left-img-appt-dm img {
    display: block;
    margin: auto;
}

.hero-apply-appointment-wrap.v2 {
    padding: 0;
    margin: 0;
    box-shadow: unset;
}

.hero-apply-appointment-wrap.v2:after {
    display: none;
}

.hero-apply-appointment-wrap.v2 h3 {
    color: var(--blanco);
    margin: 0;
    padding: 0;
}

.hero-apply-appointment-wrap.v2 h2 {
    color: var(--blanco);
    line-height: 135%;
}

.v2.hero-apply-appointment-wrap .gj-datepicker .btn,
.v2.hero-apply-appointment-wrap .select-cstm label {
    background: var(--clr-theme-extra);
}

.v2.hero-apply-appointment-wrap .sec-title {
    margin-bottom: 40px;
}

.work-steps-inner {
    text-align: center;
}

.work-steps-inner .imgs {
    max-width: 214px;
    margin: auto;
    position: relative;
    border-radius: 500px;
}

.work-steps-inner .imgs img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.work-steps-inner .imgs:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0px;
    bottom: 0px;
    /* border: 1px solid var(--color2);
    border-radius: 500px; */
    z-index: -1;
}

.work-steps-inner .imgs .num {
    width: 48px;
    height: 48px;
    position: absolute;
    left: 1px;
    bottom: 8px;
    background: var(--color1);
    border: 4px solid var(--blanco);
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    font-weight: 500;
    font-size: 20px;
    color: var(--blanco);
}

.work-steps-inner .cont {
    margin-top: 50px;
    max-width: 244px;
    margin: auto;
    margin-top: 50px;
}

.work-steps-inner .cont p {
    padding-top: 20px;
}

.shape-left-proc {
    position: absolute;
    top: 130px;
    left: 47px;
    z-index: -1;
    opacity: 0.5;
}

.shape-right-proc {
    position: absolute;
    right: 0;
    bottom: 120px;
    z-index: -1;
    opacity: 0.5;
}

.testimonial-sec {
    background-color: var(--clr-bg-white);
    background-image: url(../img/home2/testi-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.testimonial-slider-slick .slick-slide {
    margin-left: 24px;
}

.testimonial-slider-slick .slick-list {
    margin-left: -24px;
}

.testimonial-inner-wrap {
    background: var(--clr-bg-white);
    border-radius: 10px;
    padding: 40px;
    margin: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.testimonial-inner-wrap img {
    border-radius: 500px 500px 0px 500px;
    width: 90px;
    height: 90px;
    opacity: 0.9;
}

.testimonial-inner-wrap .flex-grow-1 {
    margin-left: 35px;
}

.testimonial-inner-wrap .flex-grow-1 h4 {
    line-height: 125%;
}

.testimonial-inner-wrap .flex-grow-1 p {
    line-height: 30px;
}

.testimonial-inner-wrap .d-flex {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color1);
    position: relative;
}

.testimonial-inner-wrap .d-flex svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    margin-top: -15px;
}

.testimonial-inner-wrap>p {
    padding-top: 22px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--negro);
}

.slick-dots li button {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    text-indent: -9999px;
    border: 0;
    background: transparent;
    padding: 0;
}

.slick-dots li {
    background: var(--color1);
    width: 35px;
    height: 20px;
    margin: 0px 5px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s all ease;
    opacity: 0.3;
    border-radius: 10px;
}

.slick-dots {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.slick-dots li.slick-active {
    opacity: 1;
}

@media (max-width:991px) {
    .left-img-about-v2 {
        top: 80px;
        transform: translate(0);
        width: 100%;
        min-height: 300px;
    }

    .left-img-about-v2 img {
        max-height: 300px;
        margin: auto;
    }

    .about-sec-medifest.v3,
    .about-sec-medifest.v2 {
        padding-top: 400px;
        padding-bottom: 80px;
    }

    .about-right-content-v2 {
        margin: auto;
        margin-top: 30px;
    }

    .testimonial-inner-wrap {
        padding: 20px;
    }

    .testimonial-inner-wrap .d-flex {
        padding-right: 58px;
    }

    .testimonial-inner-wrap .flex-grow-1 {
        margin-left: 15px;
    }
}

@media (max-width:767px) {
    .hero-content-inner-v2 h1 {
        font-size: 45px;
        line-height: 120%;
    }

    .hero-content-inner-v2 h4 {
        font-size: 20px;
    }

    .hero-content-inner-v2 .btn {
        margin-top: 30px;
    }

    .right-img-banner-v2 {
        text-align: center;
        margin-top: 30px;
    }

    .hero-banner-v2 {
        padding-top: 80px;
    }

    .about-right-content-v2 .bullet-list-icon li {
        margin-top: 30px;
    }
}

.hero-sec-v3 {
    width: 100%;
    position: relative;
    z-index: 1;
    background-image: url(../img/home3/banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 105px;
    padding-bottom: 350px;
}

.hero-sec-v3:after {
    content: '';
    background-color: #091932E5;
    background: rgb(9, 25, 50);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: -1;
    mix-blend-mode: normal;
}

.left-content-hero-v3 h3 {
    text-transform: uppercase;
    font-weight: 500;
    color: var(--blanco);
    margin-bottom: 18px;
}

.left-content-hero-v3 h1 {
    font-size: 65px;
    line-height: 75px;
    color: var(--blanco);
}

.left-content-hero-v3 {
    max-width: 617px;
}

.left-content-hero-v3 h1 span {
    color: #2AC28E;
}

.left-content-hero-v3 p {
    margin-top: 15px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--blanco);
}

.left-content-hero-v3 .btn {
    margin-top: 50px;
}

.hero-apply-appointment-wrap.v3 {
    background: var(--clr-bg-white);
    max-width: 582px;
    margin-left: auto;
    margin-top: 0;
}

.features-sec-v3 {
    position: relative;
    z-index: 12;
    margin-top: -250px;
}

.inner-features-wrap {
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 1;
    background-image: url(../img/home3/features-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.inner-features-wrap .btn-group {
    position: absolute;
    left: 13%;
    bottom: 13%;
}

.inner-features-wrap .dropdown-toggle {
    width: 82px;
    height: 82px;
    border: 0;
    background: transparent;
    font-size: 23px;
    padding: 0;
}

.inner-features-wrap .dropdown-toggle i {
    background: var(--color1);
    border-radius: 50%;
    text-align: center;
    color: var(--blanco);
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

.inner-features-wrap .dropdown-toggle:after {
    display: none;
}

.inner-features-wrap .dropdown-toggle:before {
    width: 70px;
    height: 70px;
    content: '';
    background: var(--color1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.inner-features-wrap .dropup .dropdown-menu {
    -webkit-transform: translate(0, -90px) !important;
    -moz-transform: translate(0, -90px) !important;
    transform: translate(0, -90px) !important;
}

.inner-features-wrap .dropdown-menu {
    min-width: 262px;
    margin-left: -74px !important;
    background: var(--clr-bg-white);
    border-radius: 5px;
    border: 0;
    box-shadow: unset;
    padding: 20px 28px;
}

.inner-features-wrap .dropdown-menu:after {
    content: '';
    display: inline-block;
    margin-left: 0;
    vertical-align: 0.255em;
    content: "";
    border-top: 10px solid var(--clr-bg-white);
    border-right: 10px solid transparent;
    border-bottom: 0;
    border-left: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    left: 40%;
}

.inner-features-wrap .dropup .dropdown-menu[data-popper-placement="bottom-start"] {
    inset: auto auto 0px 0px !important;
}

.inner-features-wrap .dropdown-menu li {
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    display: flex;
    align-items: center;
}

.inner-features-wrap .dropdown-menu li i {
    margin-right: 8px;
    color: var(--color2);
    font-size: 13px;
}

.inner-features-wrap .ftr2 {
    top: 26%;
    bottom: auto;
    left: 31%;
}

.inner-features-wrap .dropdown .dropdown-menu:after {
    border-top: 0;
    border-bottom: 10px solid var(--clr-bg-white);
    top: -8px;
    bottom: auto;
}

.inner-features-wrap .dropdown .dropdown-menu[data-popper-placement="top-start"] {
    inset: 0px auto auto 0px !important;
    -webkit-transform: translate(0px, 84px) !important;
    transform: translate(0px, 84px) !important;
}

.inner-features-wrap .btn-group.ftr3 {
    left: 60%;
    bottom: 13%;
}

.inner-features-wrap .btn-group.ftr4 {
    left: auto;
    right: 11%;
    bottom: 50%;
}

.our-service-v3-sec {
    width: 100%;
    background-image: url(../img/home3/service-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--color1);
    background-attachment: fixed;
}

.custom-tabs .nav-link {
    background: var(--clr-bg-white);
    border-radius: 500px;
    text-align: left;
    height: 80px;
    line-height: 80px;
    padding: 0;
    padding-right: 8px;
    padding-left: 88px;
    position: relative;
    font-weight: 700;
    font-size: 20px;
    color: var(--negro);
}

.custom-tabs .nav-link span {
    display: inline-block;
    background: var(--color2);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 13px;
    top: 13px;
    line-height: 51px;
}

.custom-tabs .nav-link span img {
    vertical-align: middle;
}

.custom-tabs .nav-link.active {
    color: var(--color1);
}

.custom-tabs .nav-link.active span {
    background: var(--color1);
}

.our-service-v3-sec .tab-content {
    margin-top: 30px;
}

.service-tabs-content-inner {
    background: var(--clr-bg-white);
    border-radius: 30px;
    padding: 25px;
}

.service-tabs-content-inner .left-content {
    max-width: 600px;
    margin: auto;
}

.service-tabs-content-inner .left-content p {
    margin-top: 18px;
}

.service-tabs-content-inner .left-content ul {
    margin-top: 18px;
}

.service-tabs-content-inner .bullet-list-all li:after {
    background: var(--negro);
}

.service-tabs-content-inner .left-content .btn {
    margin-top: 40px;
}

.service-tabs-content-inner .right-img {
    border-radius: 20px;
}

.service-tabs-content-inner .right-img img {
    display: block;
    margin: auto;
}

.single-progress {
    overflow: hidden;
}

.single-progress label {
    padding-bottom: 9px;
    align-items: center;
    color: var(--negro);
}

.single-progress .progress {
    height: 10px;
    background: rgba(54, 97, 252, .15);
    overflow: unset
}

.single-progress .progress-bar {
    background: var(--color1);
    height: 4px;
    margin-top: 3px;
    margin-left: 2px;
    border-radius: 500px;
    overflow: unset
}

.single-progress .progress-bar:after {
    content: '';
    position: absolute;
    top: -12px;
    right: -4px;
    vertical-align: 0.255em;
    content: "";
    border-top: 10px solid var(--color1);
    border-right: 6px solid transparent;
    border-bottom: 0;
    border-left: 6px solid transparent;
    line-height: 1;
    display: inline-block;
    color: #3661fc
}

.single-progress .st2 .progress-bar {
    background: var(--color2);
}

.single-progress .st2 .progress-bar:after {
    border-top: 10px solid var(--color2);
}

.single-progress .st3 .progress-bar {
    background: var(--clr-theme-extra);
}

.single-progress .st3 .progress-bar:after {
    border-top: 10px solid var(--clr-theme-extra);
}

.left-content-who {
    max-width: 635px;
}

.left-content-who p {
    margin-top: 27px;
}

.single-progress {
    margin-top: 20px;
}

.left-content-who .sec-title {
    padding-bottom: 10px;
}

.right-imgs-who {
    position: relative;
}

.right-imgs-who .left-img {
    border-radius: 500px;
    max-width: 178px;
}

.right-imgs-who .right-imgs {
    max-width: 445px;
    position: absolute;
    top: 0;
    left: 210px;
    text-align: right;
    width: 100%;
    z-index: 1;
    padding-top: 50px;
    height: 100%;
}

.right-imgs-who .right-imgs img {
    border-radius: 30px;
}

.right-imgs-who .right-imgs:after {
    content: '';
    background: var(--color1);
    opacity: 0.1;
    border-radius: 68px 0 0px 0px;
    width: 252px;
    height: 198px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.right-imgs-who .right-imgs .tr {
    position: absolute;
    left: 0;
    bottom: 20px;
}

.right-imgs-who .right-imgs:before {
    content: '';
    background: var(--color2);
    opacity: 0.1;
    border-radius: 0px 70px;
    width: 191px;
    height: 181px;
    position: absolute;
    right: -50px;
    bottom: 50px;
    z-index: -1;
}

.faq-sec {
    /* background-color: var(--color2); */
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.faq-sec:after {
    content: '';
    width: 55%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/home3/faq-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    z-index: -1;
}

.faq-sec:before {
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../img/home3/faq-icons.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}

.faq-sec .fq-img {
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 50%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: end;
}

.faq-sec .fq-img img {
    display: block;
    margin: auto;
    margin-bottom: 0;
}

.accordion {
    border: 0;
    background: transparent;
}

.accordion-item {
    margin-top: 24px;
    background: var(--clr-bg-white);
    border: 1px solid var(--blanco);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border: 0;
    padding: 21px 25px;
    border-radius: 5px !important;
}

.accordion-button {
    padding: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--negro);
    padding-right: 40px;
    position: relative;
    background: transparent !important;
}

.accordion-button::before {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    color: var(--negro);
}

.accordion-button::after {
    display: none;
}

.accordion-button:not(.collapsed) {
    color: var(--color1);
    box-shadow: unset !important;
    outline: 0 !important;
}

.accordion-button:focus {
    box-shadow: unset;
}

.accordion-button:not(.collapsed):before {
    content: "\f068";
    color: var(--color1);
}

.accordion-body {
    padding: 0;
    padding-top: 20px;
    border-top: 1px solid var(--blanco);
    margin-top: 20px;
    color: var(--negro);
}

.faq-sec.v2 {
    background-color: var(--clr-bg-white);
    margin-bottom: 120px;
}

.faq-sec.v2:after {
    display: none;
}

.faq-sec.v2 .fq-img img {
    max-height: 691px;
    padding: 10px;
}

.schedules-sec {
    width: 100%;
    background-color: var(--color1);
    background-image: url(../img/home3/schedule-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.schedules-sec .shape-left {
    position: absolute;
    left: 80px;
    top: 110px;
    z-index: -1;
}

.schedules-sec .shape-right {
    position: absolute;
    right: 0px;
    top: 30%;
    z-index: -1;
}

.table-appointment thead td {
    padding: 33px 0;
    color: var(--blanco);
    background: var(--color2);
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    max-width: 180px;
    min-width: 180px;
}

.table-appointment thead td:nth-child(even) {
    background: var(--clr-theme-extra);
}

.table-appointment {
    padding: 0;
    margin: 0;
    box-shadow: unset;
}

.table-appointment tbody td:first-child {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.table-appointment tbody td {
    padding: 0;
    color: var(--blanco);
    background: #1F70F0;
    border-radius: 5px;
    text-align: center;
    height: 86px;
    max-height: 86px;
    vertical-align: middle;
}

.table-appointment tbody td:nth-child(even) {
    background: #2277FF;
}

.table-appointment tbody .has {
    background: #004DC7 !important;
}

.table-appointment tbody tr:nth-child(even) td {
    background: #2277FF;
}

.table-appointment tbody tr:nth-child(even) td:nth-child(even) {
    background: #1F70F0;
}

.table-appointment tbody tr h5 {
    color: var(--blanco);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.table-appointment tbody td.has {
    position: relative;
}

.table-appointment tbody .pop-info {
    position: absolute;
    background: var(--clr-bg-white);
    width: 370px;
    padding: 25px;
    border-radius: 10px;
    z-index: 1;
    opacity: 0;
    display: none;
    top: -173px;
    left: 0;
}

.table-appointment tbody tr:first-child .pop-info {
    bottom: -186px;
    top: auto;
    left: -50%;
}

.table-appointment tbody td.has:hover .pop-info {
    display: inline-block;
    opacity: 1;
}

.table-appointment tbody tr:first-child .pop-info:after {
    content: '';
    position: absolute;
    left: 50%;
    top: -8px;
    bottom: auto;
    border-top: 0;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--clr-bg-white);
    border-left: 10px solid transparent;
}

.table-appointment tbody tr .pop-info:after {
    content: '';
    position: absolute;
    border-top: 10px solid var(--clr-bg-white);
    border-right: 10px solid transparent;
    border-bottom: 0;
    border-left: 10px solid transparent;
    left: 20%;
    top: auto;
    bottom: -7px;
}

.table-appointment tbody .pop-info img {
    display: block;
    max-height: 124px;
    max-width: 100px;
}

.table-appointment tbody .pop-info .flex-grow-1 {
    text-align: left;
    padding-left: 25px;
}

.table-appointment tbody .pop-info .flex-grow-1 h4 {
    font-size: 24px;
    line-height: 24px;
}

.table-appointment tbody .pop-info .flex-grow-1 p {
    color: var(--negro);
}

.table-appointment tbody .pop-info .flex-grow-1 .btn {
    margin-top: 25px;
    padding: 15px 25px;
}

.table-appointment tbody td.has:last-child .pop-info {
    left: auto;
    right: 102%;
    bottom: -50%;
    z-index: 12;
    top: auto;
}

.table-appointment tbody td.has:last-child .pop-info:after {
    content: '';
    position: absolute;
    border-top: 10px solid var(--clr-bg-white);
    border-right: 10px solid transparent;
    border-bottom: 0;
    border-left: 10px solid transparent;
    left: 20%;
    top: auto;
    bottom: 50%;
    left: auto;
    right: -9px;
    top: auto;
    border-top: 10px solid transparent;
    border-right: 0;
    border-bottom: 10px solid transparent;
    border-left: 10px solid;
}

.table-appointment tbody tr:last-child td.has:last-child .pop-info {
    bottom: 0;
}

.table-appointment tbody tr:last-child td.has:last-child .pop-info:after {
    bottom: 20%;
}

.table-appointment tbody tr td.has:nth-child(7) .pop-info {
    right: 0;
    left: auto;
}

.table-appointment tbody tr td.has:nth-child(7) .pop-info:after {
    left: 70%;
}

.table-appointment tbody tr:last-child td.has:last-child .pop-info:after {
    bottom: 20%;
}

.team-member-inner {
    overflow: hidden;
    padding: 0;
    border-radius: 10px;
    position: relative;
    padding-bottom: 20px;
    z-index: 1;
}

.team-member-inner:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 72px;
    background: var(--blanco);
    border-radius: 10px;
    z-index: -1;
}

.team-member-inner .inner {
    border-radius: 10px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.team-member-inner .imgs {
    position: relative;
    z-index: 12;
    padding-top: 10px;
}

.team-member-inner .imgs:before {
    content: '';
    width: 75%;
    height: 80%;
    position: absolute;
    left: 50%;
    top: 40%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: var(--color1);
    z-index: -1;
    border-radius: 10px;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.team-member-inner:hover .imgs:before {
    background: var(--color2);
}

.team-member-inner .imgs img {
    display: block;
    margin: auto;
    border-radius: 100px;
}

.team-member-inner .cont {
    text-align: center;
    margin-top: 20px;
    min-height: 60px;
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.team-member-inner .cont .name,
.team-member-inner .cont .socials {
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
    width: 100%;
}

.team-member-inner:hover .cont .socials {
    top: 50%;
    opacity: 1;
}

.team-member-inner .cont .name {
    padding-top: 0px;
}

.team-member-inner .cont .name p {
    color: var(--color1);
}

.team-member-inner .cont .socials li {
    display: inline-block;
    padding: 6px;
}

.team-member-inner .cont .socials li a {
    display: inline-block;
    width: 42px;
    height: 42px;
    background: var(--color2);
    text-align: center;
    border-radius: 50%;
    color: var(--blanco);
    
    line-height: 45px;
    transition: 0.3s all ease;
}
.team-member-inner .cont .socials li a  i{
    font-size: 1.5em;
}
.team-member-inner .cont .socials li a:hover {
    background: var(--color1);
    color: #fff;
}

.appointment-ftr-sec {
    background-color: var(--blanco);
    background-image: url(../img/home3/appointment-ftr-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 110px 0;
}

.appt-title {
    max-width: 695px;
}

.appt-title h3 {
    padding: 0;
}

.appt-title p {
    margin-top: 30px;
}

.appt-title .btn {
    margin-top: 45px;
}

.video-right-ftr {
    position: relative;
    z-index: 1;
    background-image: url(../img/home3/video-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 104px 0;
    border-radius: 10px;
    overflow: hidden;
    max-width: 520px;
    margin-left: auto;
}

.video-right-ftr:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: #000000;
    opacity: 0.5;
}

.video-right-ftr a {
    display: inline-block;
    border: 1px solid var(--blanco);
    width: 70px;
    height: 70px;
    text-align: center;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-right-ftr a span {
    width: 56px;
    height: 56px;
    background: var(--blanco);
    display: inline-block;
    border-radius: 50%;
    line-height: 56px;
    font-size: 20px;
    color: var(--color1);
}

@media (max-width:991px) {
    .hero-apply-appointment-wrap.v3 {
        max-width: 100%;
    }

    .inner-features-wrap .ftr4 .dropdown-menu:after {
        left: 80%;
    }

    .left-content-who {
        margin: auto;
    }

    .right-imgs-who {
        margin-top: 50px;
    }
}

@media (max-width:767px) {
    .left-content-hero-v3 h1 {
        font-size: 45px;
        line-height: 120%;
    }

    .left-content-hero-v3 h3 {
        font-size: 20px;
    }

    .right-imgs-who .right-imgs {
        max-width: 100%;
        text-align: left;
    }

    .right-imgs-who .right-imgs img.tr {
        max-width: 50%;
    }

    .right-imgs-who .right-imgs img.tw {
        max-width: 60%;
    }

    .faq-sec {
        padding-bottom: 0;
    }

    .faq-sec .fq-img {
        position: relative;
    }
}

@media (max-width:520px) {
    .right-imgs-who .left-img {
        display: none;
    }

    .right-imgs-who .right-imgs {
        position: relative;
        left: 0;
    }

    .right-imgs-who .right-imgs img.tr {
        max-width: 50%;
    }

    .right-imgs-who .right-imgs img.tw {
        max-width: 100%;
    }
}

.header-breadcrumb {
    width: 100%;
    background-image: url(../img/slider/slider-cirujano-general-en-guadalajara.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.header-breadcrumb:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    /* background-color: var(--color1); */
    opacity: 0.75;
}

.inner-bread-cont h2 {
    color: var(--blanco);
}

.breadcrumb a {
    color: var(--blanco);
}

.breadcrumb .active {
    color: var(--color2);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '-';
    color: var(--blanco);
}

.single-box-doc {
    background: var(--clr-bg-white);
    border: 1px solid #E2EDFF;
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    height: 100%;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.single-box-doc:hover {
    border: 1px solid var(--color1);
}

.single-box-doc table {
    width: 100%;
    min-width: 282px;
}

.single-box-doc h3 {
    text-align: center;
    color: var(--negro);
    margin-bottom: 23px;
}

.single-box-doc tr td:last-child {
    text-align: right;
}

.single-box-doc td {
    text-align: left;
    line-height: 36px;
    padding: 0;
}

.single-box-doc td span {
    color: var(--color1);
}

.single-box-doc .btn {
    margin-top: 38px;
    padding: 11px 24px;
}

.single-box-doc .btn span {
    vertical-align: middle;
}

.left-sidebar-srv li {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.left-sidebar-srv li a {
    display: inline-block;
    width: 100%;
    background: var(--clr-bg-white);
    border: 1px solid var(--blanco);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 23px 30px;
    position: relative;
    padding-right: 40px;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--negro);
}

.left-sidebar-srv li a i {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.left-sidebar-srv li a:hover {
    color: var(--color1);
}

.left-sidebar-srv .dwn-brcho {
    margin-top: 30px;
    padding: 40px 30px;
    background: var(--clr-bg-white);
    border: 1px solid var(--blanco);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
}

.left-sidebar-srv .dwn-brcho h4 {
    margin-bottom: 11px;
}

.left-sidebar-srv .dwn-brcho a {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    background: var(--blanco);
    border-radius: 5px;
    padding: 23px 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #18100F;
    padding-right: 70px;
    position: relative;
}

.left-sidebar-srv .dwn-brcho a svg {
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.right-details-srv img {
    border-radius: 10px;
    width: 100%;
}

.right-details-srv .mn-title {
    margin-top: 40px;
}

.right-details-srv p {
    padding-top: 17px;
}

.service-lists li .inner {
    background: var(--clr-bg-white);
    border: 1px solid var(--blanco);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 28px 30px;
    padding-left: 138px;
    position: relative;
}

.service-lists li .icon {
    background: var(--blanco);
    width: 81px;
    height: 81px;
    border-radius: 50%;
    position: absolute;
    left: 30px;
    top: 30px;
    text-align: center;
    line-height: 81px;
}

.service-lists li .icon img {
    width: auto;
    margin: auto;
    vertical-align: middle;
    border-radius: 0;
}

.list-items-serv li {
    width: 50%;
    position: relative;
    padding-left: 38px;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: var(--negro);
    margin-top: 18px;
}

.list-items-serv li:after {
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    color: var(--color1);
}

@media (max-width:480px) {
    .list-items-serv li {
        width: 100%;
    }
}

.left-sidebar-doc-dt {
    background: var(--clr-bg-white);
    border: 1px solid var(--blanco);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    padding: 20px;
}

.left-sidebar-doc-dt .imgs {
    text-align: center;
    background: var(--blanco);
    border-radius: 5px;
    padding: 0 20px;
    padding-top: 20px;
}

.left-sidebar-doc-dt .imgs img {
    display: block;
    margin: auto;
}

.left-sidebar-doc-dt .d-nm {
    margin-top: 30px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--blanco);
}

.left-sidebar-doc-dt .d-nm h5 {
    color: var(--color1);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    padding: 5px 0;
    padding-top: 0;
}

.left-sidebar-doc-dt .d-nm h3 {
    padding-bottom: 16px;
}

.left-sidebar-doc-dt .d-social {
    margin-top: 36px;
}

.left-sidebar-doc-dt .d-social h3 {
    text-transform: capitalize;
}

.left-sidebar-doc-dt .d-social li {
    display: inline-block;
    padding-top: 12px;
}

.left-sidebar-doc-dt .d-social ul {
    margin-top: 10px;
}

.left-sidebar-doc-dt .d-social li a {
    display: inline-block;
    background: var(--blanco);
    width: 41px;
    height: 41px;
    text-align: center;
    line-height: 41px;
    border-radius: 50%;
    margin-right: 10px;
}

.left-sidebar-doc-dt .d-social li a:hover {
    background: var(--color1);
    color: var(--blanco);
}

.left-sidebar-doc-dt .d-emr {
    margin-top: 40px;
    background: var(--blanco);
    border-radius: 5px;
    padding: 16px;
}

.left-sidebar-doc-dt .d-emr .icon {
    background: var(--color1);
    border-radius: 5px;
    width: 88px;
    height: 88px;
    text-align: center;
    line-height: 88px;
}

.left-sidebar-doc-dt .d-emr .icon img {
    vertical-align: middle;
}

.left-sidebar-doc-dt .d-emr p {
    color: var(--color1);
    padding-top: 5px;
}

.left-sidebar-doc-dt .d-emr .flex-grow-1 {
    padding-left: 30px;
}

.left-sidebar-doc-dt .d-emr .flex-grow-1 h3 {
    word-break: break-all;
}

.right-content-dDetails {
    background: var(--clr-bg-white);
    border: 1px solid var(--blanco);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    padding: 40px 50px;
}

.right-content-dDetails p {
    padding-top: 17px;
}

.right-content-dDetails hr {
    opacity: 1;
    margin: 24px 0;
    border-top: 1px solid var(--blanco);
}

.right-content-dDetails table {
    width: 100%;
    margin: 0;
    margin-top: 20px;
    min-width: 350px;
}

.right-content-dDetails table thead td {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--negro);
}

.right-content-dDetails table td {
    padding: 5px 0;
}

.list-bullet-icon {
    margin-top: 16px;
}

.list-bullet-icon li {
    width: 100%;
    position: relative;
    padding-left: 38px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--negro);
}

.list-bullet-icon li:after {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    color: var(--color1);
}

.appnt-schdules-doc {
    background: var(--clr-bg-white);
    border: 1px solid var(--blanco);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    margin-top: 24px;
    padding: 50px;
    padding-top: 40px;
}

.appnt-schdules-doc table {
    width: 100%;
    margin: 0;
    margin-top: 20px;
    min-width: 530px;
}

.appnt-schdules-doc table thead td {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--negro);
    padding-left: 0;
}

.appnt-schdules-doc table tbody tr td {
    padding: 0;
}

.appnt-schdules-doc table tbody tr td.h-15 {
    height: 15px;
}

.appnt-schdules-doc table tbody tr td:not(:last-child) {
    background: #E6EFFF;
    padding: 15px 30px;
    height: 57px;
    color: var(--negro);
}

.appnt-schdules-doc table tbody tr td:first-child {
    border-radius: 5px 0 0 5px;
}

.appnt-schdules-doc table tbody tr td:nth-child(2) {
    border-radius: 0 5px 5px 0;
    padding-left: 0;
}

.appnt-schdules-doc table tbody tr td:last-child {
    margin-left: auto;
    text-align: right;
}

@media (max-width:767px) {
    .right-content-dDetails {
        padding: 20px 25px;
    }

    .appnt-schdules-doc {
        padding: 20px;
    }
}

.appointment-sec-v3 .inject-appt {
    position: absolute;
    left: 0;
    bottom: 120px;
    z-index: -1;
    opacity: 0.1;
}

.hero-apply-appointment-wrap.v2.inners h3 {
    color: var(--color1);
}

.hero-apply-appointment-wrap.v2.inners h2 {
    color: var(--negro);
}

.hero-apply-appointment-wrap.v2.inners .form-control {
    background: var(--blanco) !important;
    color: #A6A6A6;
}

.hero-apply-appointment-wrap.inners .select-cstm {
    background-color: var(--blanco);
}

.v2.hero-apply-appointment-wrap.inners .gj-datepicker .btn,
.v2.hero-apply-appointment-wrap.inners .select-cstm label {
    background: var(--color1);
}

.appointment-sec-v3 .left-img-appt-dm img {
    max-height: 750px;
    margin-left: auto;
    margin-right: 0;
}

.appointment-sec-v3 .left-img-appt-dm {
    bottom: 120px;
}

.appointment-sec-v3 .left-img-appt-dm {
    max-width: 45%;
}

.appointment-sec-v3 .left-img-appt-dm:after {
    content: '';
    width: 100%;
    height: 140px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180.6deg, rgba(255, 255, 255, 0) -7.49%, #FFFFFF 48.23%, #FFFFFF 99.48%);
}

.inner-wrap-emr {
    border-radius: 10px;
    background: var(--clr-bg-white);
    border: 1px solid var(--blanco);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    padding: 30px;
}

.inner-wrap-emr img {
    border-radius: 5px;
}

.inner-wrap-emr h4 {
    color: var(--color1);
}

.inner-wrap-emr h2 {
    margin-top: 25px;
    font-weight: 700;
    font-size: 56px;
    line-height: 56px;
    word-break: break-all;
}

.inner-wrap-emr h3 {
    max-width: 744px;
    margin-top: 30px;
    font-weight: 700;
    font-size: 34px;
    line-height: 46px;
}

.inner-wrap-emr h3 span {
    color: var(--color1);
    text-transform: capitalize;
}

.project-info-right {
    background: var(--clr-bg-white);
    border: 1px solid #E2EDFF;
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    padding: 37px 40px;
}

.project-info-right h3 {
    margin-bottom: 16px;
}

.project-info-right>p {
    margin-bottom: 20px;
}

.project-info-right div p {
    line-height: 40px;
}

.project-info-right div p strong {
    font-weight: 500;
    color: var(--negro);
}

.project-info-right .social li {
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 5px;
}

.project-info-right .social li a {
    width: 37px;
    height: 37px;
    display: inline-block;
    background: var(--color1);
    color: var(--blanco);
    text-align: center;
    line-height: 37px;
    border-radius: 50%;
}

.project-img-dts img {
    border-radius: 10px;
    width: 100%;
    display: block;
}

.project-img-dts {
    position: relative;
}

.project-img-dts .tg {
    background: var(--clr-bg-white);
    border-radius: 0px 10px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px 27px;
    color: var(--color1);
}

.project-details-inner h2 {
    text-transform: capitalize;
}

.project-details-inner .col-12 p {
    padding-top: 20px;
}

.project-details-inner .list-bullet-icon li {
    width: 50%;
}

@media (max-width:767px) {
    .project-details-inner .list-bullet-icon li {
        width: 100%;
    }
}

.faq-ask-que {
    background: var(--blanco);
    margin-bottom: -92px;
    padding-bottom: 200px;
}

.left-img-ask img {
    border-radius: 5px;
}

.right-content-ask h2 {
    padding-bottom: 15px;
}

.right-content-ask p {
    margin-bottom: 30px;
}

.right-content-ask .form-control {
    background: var(--clr-bg-white) !important;
}

.right-content-ask .hero-apply-appointment-wrap .select-cstm {
    background: var(--clr-bg-white);
}

.right-content-ask .v2.hero-apply-appointment-wrap .select-cstm label {
    background: var(--color1);
}

.single-widg {
    background: var(--clr-bg-white);
    border: 1px solid #E2EDFF;
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    padding: 37px 40px;
    margin-bottom: 50px;
}

.single-widg>h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: var(--color2);
}

.single-widg>h3:after {
    content: '';
    background: var(--color1);
    width: 78px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.single-widg .search-wid {
    position: relative;
    width: 100%;
}

.single-widg .search-wid .form-control {
    background: var(--blanco) !important;
    border-radius: 5px;
}

.single-widg .search-wid i {
    color: var(--color1);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 20px;
}

.single-widg .about-wid img {
    border-radius: 5px;
    max-width: 100%;
    display: block;
}

.single-widg .about-wid .flex-grow-1 {
    padding-left: 30px;
}

.single-widg .about-wid .flex-grow-1 h6 {
    color: var(--negro);
    padding-top: 5px;
}

.single-widg .about-wid .flex-grow-1 p {
    margin-top: 14px;
}

.single-widg .posts-wid img {
    border-radius: 5px;
    max-width: 92px;
    max-height: 92px;
    display: block;
}

.single-widg .posts-wid .flex-grow-1 {
    padding-left: 20px;
}

.single-widg .posts-wid .flex-grow-1 h5 a {
    color: var(--negro);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}

.single-widg .posts-wid .flex-grow-1 p {
    margin-top: 15px;
}

.single-widg .posts-wid .flex-grow-1 p i {
    color: var(--color1);
}

.single-widg .posts-wid>div {
    margin-bottom: 30px;
}

.single-widg .posts-wid>div:last-child {
    margin: 0;
}

.single-widg .cats-wid a {
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: var(--negro);
    position: relative;
    display: inline-block;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.single-widg .cats-wid a:hover {
    color: var(--color1);
}

.single-widg .cats-wid a span {
    background: var(--clr-bg-white);
    position: relative;
    z-index: 12;
    display: inline-block;
}

.single-widg .cats-wid a .dots {
    width: 100%;
    height: 1px;
    border-top: 1px dashed #C7DAFD;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
}

.single-widg .cats-wid a span:nth-child(2) {
    padding-right: 20px;
}

.single-widg .cats-wid a span:nth-child(3) {
    padding-left: 20px;
}

.single-widg .tags-wid li {
    display: inline-block;
}

.single-widg .tags-wid li a {
    border: 1px solid var(--color1);
    border-radius: 5px;
    display: inline-block;
    padding: 7px 20px;
    color: var(--negro);
}

.single-widg .tags-wid li a:hover {
    background: var(--color1);
    color: var(--blanco);
}

.single-blog-inner.big .imgs {
    padding-top: 480px;
}

.big.single-blog-inner .imgs .tag {
    bottom: 20px;
    left: 20px;
}

.big.single-blog-inner .meta {
    padding-bottom: 20px;
    border-bottom: 1px solid #E6EFFF;
}

.pagination .page-link {
    margin: 0 10px !important;
    border: 1px solid var(--blanco);
    border-radius: 50px !important;
    padding: 12px 0px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--negro);
    width: 50px;
    height: 50px;
    text-align: center;
}

.pagination .page-link.active {
    background: var(--color1);
    font-weight: 500;
    color: var(--blanco);
}

.pagination .page-link:hover {
    background: var(--color1);
    color: var(--blanco);
}

.pagination .page-link i {
    font-size: 20px;
    line-height: 25px;
}

.blog .page-item:first-child .page-link {
    margin-left: 0 !important;
}

@media (max-width:991px) {
    .single-blog-inner.big .imgs {
        padding-top: 350px;
    }

    .single-widg .about-wid img {
        max-width: 100%;
    }

    .single-widg {
        padding: 25px 27px;
    }
}

.blog-details-pg-wrap {
    background: var(--clr-bg-white);
    border: 1px solid var(--blanco);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    padding: 25px;
}

.article-img-title .p-img {
    position: relative;
}

.article-img-title .p-img img {
    width: 100%;
    /* border-radius: 15px; */
    display: block;
    margin-top: 10px;
}

.article-img-title .p-img .cat {
    background: var(--color2);
    border-radius: 5px;
    padding: 12px 20px;
    color: var(--blanco);
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.article-img-title .meta {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--blanco);
    margin-top: 20px;
}

.article-img-title .meta li {
    display: inline-block;
}

.article-img-title .meta li i {
    color: var(--color1);
    margin-right: 5px;
}

.article-img-title .meta li:not(:first-child) {
    padding-left: 20px;
}

.article-img-title h4 {
    margin-top: 24px;
    color: var(--color1);
}

.article-img-title p {
    padding-top: 11px;
    margin-bottom: 20px;
}

.article-img-title blockquote {
    background: var(--blanco);
    border-radius: 5px;
    margin-top: 25px;
    padding: 32px 40px;
    position: relative;
    z-index: 1;
    border: 5px solid var(--color2);
}
.article-img-title blockquote h2{
    color: var(--color1);
}
.article-img-title blockquote p {
    color: var(--negro);
}

.article-img-title blockquote h4 {
    color: var(--color2);
    position: relative;
    padding-left: 80px;
    padding-right: 80px;
    display: inline-block;
}

.article-img-title blockquote h4:after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--color1);
    position: absolute;
    left: 0;
    bottom: 2px;
}

.article-img-title blockquote h4:before {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--color1);
    position: absolute;
    right: 0;
    bottom: 2px;
}

.article-img-title .list-bullet-icon li {
    width: 50%;
}

.tags-share-cont {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--blanco);
}

.tags-share-cont li {
    display: inline-block;
    padding-right: 20px;
    vertical-align: middle;
    line-height: 30px;
}

.tags-share-cont li:last-child {
    padding-right: 0;
}

.tags-share-cont li a {
    color: var(--negro);
}

.tags-share-cont li a:hover {
    color: var(--color1);
}

.tags-share-cont .socials li a {
    display: inline-block;
    background: var(--blanco);
    box-shadow: 0px 4px 8px rgba(4, 99, 250, 0.1);
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    line-height: 34px;
    color: var(--color1);
    position: relative;
}

.next-prev-posts {
    margin-top: 60px;
    border: 1px solid var(--blanco);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 40px;
}

.next-prev-posts img {
    max-width: 92px;
    max-height: 92px;
    display: block;
}

.next-prev-posts h4 {
    font-size: 18px;
}

.next-prev-posts p {
    padding-top: 14px;
    font-size: 14px;
}

.next-prev-posts .icons-go {
    padding-bottom: 70px;
    position: relative;
}

.next-prev-posts .icons-go .btn {
    position: absolute;
    bottom: 0;
    padding: 10px 18px;
    vertical-align: middle;
    left: 0;
}

.next-prev-posts .icons-go .btn.dis {
    background: var(--blanco);
    border-radius: 3px;
    border: 0 !important;
    color: var(--color1);
}

.next-prev-posts .icons-go .btn.dis:before {
    display: none;
}

.next-prev-posts .icons-go .btn i {
    padding-right: 9px;
}

.next-prev-posts .text-end.icons-go .btn {
    left: auto;
    right: 0;
}

.next-prev-posts .text-end.icons-go .btn i {
    padding-right: 0;
    padding-left: 9px;
}

.reviews-content-tab {
    border: 1px solid #E6EFFF;
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 40px;
}

.reviews-content-tab h3 {
    padding-bottom: 7px;
}

.single-cmnt-show {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6EFFF;
    position: relative;
    padding-right: 100px;
}

.single-cmnt-show .btn {
    position: absolute;
    bottom: 20px;
    right: 0;
    padding: 12px 25px;
}

.single-cmnt-show img {
    display: block;
}

.single-cmnt-show .flex-grow-1 {
    padding-left: 25px;
}

.single-cmnt-show .flex-grow-1 h5 {
    color: #636363;
    font-weight: 500;
    padding-top: 10px;
}

.single-cmnt-show .flex-grow-1 p {
    padding-top: 7px;
}

.single-cmnt-show.replied {
    padding-left: 40px;
}

.reviews-box-added {
    margin-top: 60px;
    border: 1px solid #E6EFFF;
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 40px;
}

.reviews-box-added h3 {
    padding-bottom: 27px;
}

.reviews-box-added .form-control {
    background: #E6EFFF !important;
    border-radius: 5px;
}

@media (max-width:767px) {
    .article-img-title .list-bullet-icon li {
        width: 100%;
    }

    .article-img-title blockquote {
        padding: 25px;
    }

    .single-cmnt-show .btn {
        position: unset;
        margin-top: 10px;
    }

    .single-cmnt-show {
        padding-right: 0;
    }

    .article-img-title blockquote h4 {
        padding: 0 30px;
    }

    .article-img-title blockquote h4:after,
    .article-img-title blockquote h4:before {
        width: 25px;
    }
}

.left0-map-cont {
    max-width: 654px;
    width: 100%;
    border: 1px solid #E6EFFF;
    box-shadow: 8px 8px 16px rgba(27, 126, 248, 0.08);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
}

.left0-map-cont iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.contact-info-right {
    border: 1px solid #E6EFFF;
    box-shadow: 8px 8px 16px rgba(32, 129, 249, 0.08);
    border-radius: 10px;
    padding: 30px 40px;
}

.contact-info-right h2 {
    margin-bottom: 18px;
}

.contact-info-right h4 {
    padding-bottom: 15px;
}

.contact-info-right .row p {
    max-width: 265px;
}

.contact-info-right p strong {
    color: var(--negro);
    font-weight: 400;
    padding-left: 4px;
}

.contact-info-right p a {
    color: var(--negro);
}

.contact-form-sec {
    background: #E6EFFF;
    margin-bottom: -95px;
    padding-bottom: 198px;
    background-image: url(../img/contact-form-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.con-title {
    margin-bottom: 45px;
}

.con-title p {
    padding-top: 18px;
}

.left-contact-wrap .form-control {
    background: #FFFFFF !important;
    border-radius: 5px;
}

.left-contact-wrap .btn {
    width: 100%;
}

.right-img-contact {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.right-img-contact img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:991px) {
    .contact-form-sec {
        padding-bottom: 400px;
    }

    .right-img-contact {
        width: 100%;
    }

    .right-img-contact img {
        max-height: 350px;
    }
}
.navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu{
    transform: scale(0);
    left: 235px;
    top: -10px;
}
.navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu{
    transform: scale(1);
}
.navbar-area{
    transition: .5s ease;
}
.navbar-area.sticky {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, .95);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    width: 100%;
    transition: .5s ease;
}
.navbar-expand-md .navbar-nav .nav-item{
    padding: 5px 10px;
    transition: .5s;
    margin: 0px;
}
.sticky .navbar-expand-md .navbar-nav .nav-link{
    color: var(--negro);
}
.sticky .navbar-expand-md .navbar-nav .nav-item:hover{
    background: var(--color1);
    transition: .5s;
    color: var(--blanco);
}
.sticky .navbar-expand-md .navbar-nav .nav-link:hover{
    color: var(--color2);
    
}
.sticky .navbar-nav .nav-item .dropdown-menu{
    background: var(--blanco);
}
.ftr-widget ul li a{
    color: var(--blanco) ;
}
.ftr-widget ul li i{
    color: var(--blanco);
}
.sec-title h2{
    color: var(--color1);
    font-size: 1.9em;
}
.sec-title h3{
    color: var(--color2);
    font-size: 1em;
    font-weight: 600;
    line-height: 1.5;
}
.navbar-light .navbar-brand{
    width: 33%;
}
.navbar-brand img{
    margin-left: auto;
    margin-right: auto;
}
.left-hero-details h2{
    color: var(--blanco);
    font-size: 1.5em;
}
.left-hero-details ul{
    margin-top: 20px;
}
.left-hero-details ul li a{
    color: var(--blanco);
    font-size: 1em;
}
.left-hero-details ul li i{
    font-size: 1.5em;
    color: var(--color2);
}
.left-hero-details2 h2{
    color: var(--color1);
}
.left-hero-details2 ul li a{
    color: var(--negro);
}
.neopad{
    padding: 120px 0px !important;
}
.team-member-inner h3{
    color: var(--color1);
}
.team-member-inner strong{
    color: var(--color2);
}
.team-member-inner .cont .name p{
    color: var(--negro);
}
.team-member-inner .cont .name p i{
    color: var(--color1);
}
.btn-whatsapp {
    display: block;
    width: 75px;
    height: 75px;
    color: #333;
    position: fixed;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    text-align: center;
    z-index: 999;
    font-size: 50px;
    background-image: var(--gradiente2);
    border: 2px solid var(--blanco);
}

.icono,
.icono:hover {
    background-image: var(--gradiente1)
}

.btn-whatsapp i {
    color: var(--blanco);
    transition: .5s;
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.btn-whatsapp span {
    font-size: .2em;
    position: absolute;
    padding-left: 7px;
    padding-right: 7px;
    right: 0;
    top: -20px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #de2f36;
    color: #fff;
    border-radius: 100px;
    line-height: 20px;
    transform: scale(0);
}

.icono span,
.icono span p {
    color: var(--blanco) !important;
    margin: auto
}

@keyframes iconw {

    0%,
    100% {
        transform: scale(.8)
    }

    50% {
        transform: scale(1)
    }
}

.btn-whatsapp p {
    background: #f1f1f1;
    position: absolute;
    bottom: 0;
    padding: 10px;
    right: 20px;
    font-size: 14px;
    border: 4px solid rgba(255, 255, 255, .5);
    border-radius: 20px 20px 0;
    box-shadow: rgba(0, 0, 0, .1) 0 10px 15px -3px, rgba(0, 0, 0, .05) 0 4px 6px -2px;
    line-height: normal;
    -webkit-animation: 1s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
    animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
    width: 200px
}

.btn-whatsapp .close {
    font-size: .25em;
    position: absolute;
    color: #95a0a8;
    border-radius: 100px;
    -webkit-animation: 1s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
    animation: 1s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
    background-color: #f1f1f1;
    bottom: 60px;
    right: 20px;
    z-index: 999;
    padding: 1px;
    padding-right: 3px;
    padding-left: 3px;
    border: 1px solid #f1f1f1;
    line-height: 1
}

.wtext {
    transform: scale(0);
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 100;
    transition: .5s ease;
}
@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}
@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}
.social-bar {
    position: fixed;
    right: 2px;
    bottom: 140px;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100
}
.icono,
.icono span,
.icono:hover i {
    position: relative;
    transition: .5s
}
.icono {
    height: 50px;
    width: 50px;
    display: flex;
    margin-top: 5px;
    border: 2px solid var(--color2);
    border-radius: 10px;
    color: var(--blanco) !important;
    box-shadow: rgba(50, 50, 93, .25) 0 6px 12px -2px, rgba(0, 0, 0, .3) 0 3px 7px -3px;
    background: var(--color1);
}
.icono span {
    font-size: 16px;
    padding-right: 5px;
    transform: scale(0);
    width: max-content
}
.icono span p {
    opacity: 0;
    transition: .5s
}
.icono i {
    position: absolute;
    z-index: 2;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--blanco);
    transition: .5s
}
.icono:hover span {
    transition: .5s;
    transform: scale(1);
    color: var(--color1);
}
.icono:hover span p {
    opacity: 1;
    transition-delay: .5s;
    color: var(--color1);
}
.icono:hover {
    padding: 5px;
    border: 3px solid rgba(255, 255, 255, .5);
    transition: .5s;
    width: 100%;
    background: var(--color2);
}
.subscribe-one__inner .whatsapp-btn,
.telefono-btn:hover,
.whatsapp-btn:hover {
    background-image: var(--gradiente2);
    color: var(--negro)
}
.icono:hover i {
    top: 0;
    left: 0;
    color: var(--color1);
    transform: translate(0, 0);
    margin: auto 5px;
}
.doctorweb .doc2 {
    width: 120px
}
.doctorweb .doc1 {
    width: 25px;
    margin-right: 3px;
    margin-left: 5px;
    animation: 10s infinite doc
}
@keyframes doc {
    0%,
    10%,
    100%,
    90% {
        transform: rotate(0)
    }

    50% {
        transform: rotate(360deg)
    }
}
.responsive{
    display: none !important;
}
.show {
    transform: scale(1) !important;
    transition: .5s ease !important;
}
.inner-ftr-info h2{
	font-size: 1.2em;
	color: var(--blanco);
}
.inner-ftr-info h3{
    color: var(--blanco);
    font-size: 1em;
}
.inner-ftr-info a{
    margin-bottom: 10px;
}
.left-content-top{
    text-align: center;
}
::-webkit-scrollbar{
    width: 5px
}
::-webkit-scrollbar-track {
    background-color: var(--blanco);
}
::-webkit-scrollbar-thumb{
    border-radius: 5px;
    background-color: var(--color1);
}
.copyright-conts a{
    color: var(--blanco);
}
.neoimg{
    border-radius: 10%;
}
.inner-ftr-info .btn:before{
    background-image: var(--gradient1);
}
.inner-ftr-info .btn{
    background: var(--color3);
}
.meet-doctors-sec{
    background-color: #fff;
}
.header-breadcrumb h1{
    color: var(--blanco);
    font-size: 2.5em;
}
.contact-info-right .ftr-widget ul li a {
    color: var(--color1);
}
.galeria{
    padding: 5px;
}
.galeria a img{
    border-radius: 10px;
}
@media (min-width: 100px) and (max-width: 991px){
    .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu{
        transform: scale(1);
    }
    .main-responsive-nav{
        background: #fff;
    }
    .icono:hover span{
        display: none;
    }
    .fullwidth{
        display: none !important;
    }
    .responsive{
        display: block !important;
    }
    .wtext p {
        background: #f1f1f1;
        color: var(--negro) !important;
        position: absolute;
        bottom: 0px;
        padding: 10px;
        right: 30px;
        font-size: 12px;
        border-radius: 20px 20px 0;
        box-shadow: rgba(0, 0, 0, .1) 0 10px 15px -3px, rgba(0, 0, 0, .05) 0 4px 6px -2px;
        line-height: normal;
        -webkit-animation: 1s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
        animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
        width: 200px
    }
    .wtext .close {
        font-size: 1em;
        position: absolute;
        color: var(--negro);
        border-radius: 100px;
        -webkit-animation: 1s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
        animation: 1s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
        background-color: #f1f1f1;
        bottom: 30px;
        right: 30px;
        z-index: 999;
        padding: 1px;
        padding-right: 4px;
        padding-left: 4px;
        border: 1px solid #f1f1f1;
        line-height: 1
    }
    .wtext {
        display: none;
        transform: scale(0);
        right: 20px;
        bottom: 50px;
    }
    
    
    
    .btn-whatsapp {
        display: none !important;
    }
    .icono,
    .icono span,
    .icono:hover i {
        position: relative;
        transition: .5s
    }
    .icono {
        margin-top: 0px;
        border-radius: 10px;
        background: transparent;
        box-shadow: none !important;
        border: 0px !important;
    }
    .icono:hover {
        padding: 5px;
        border: 3px solid rgba(255, 255, 255, .5);
        transition: .5s;
        width: 50px;
        background: transparent;
    }
    .icono span {
        font-size: .3em;
        padding-right: 5px;
        transform: scale(0);
        width: max-content
    }
    .icono i {
        position: absolute;
        z-index: 2;
        margin: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--blanco);
        transition: .5s;
        font-size: 1em;
    }
    .icono:hover i {
        position: absolute;
        top: 55%;
        left: 40%;
        transform: translate(-50%, -55%);
    }
    .icono .notificacion {
        display: block;
        position: absolute;
        background: red;
        color: var(--blanco);
        top: 5px;
        right: -10px;
        padding: 3px 7px;
        border-radius: 100px;
        text-align: center;
        line-height: 1.5;
    }
    .social-bar {
        position: fixed;
        left: 0px;
        bottom: 0px;
        font-size: 2rem;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        z-index: 100;
        width: 100%;
        justify-content: space-around;
        flex-wrap: nowrap;
        background-image: var(--gradiente2);
        -webkit-animation: bounce-in-bottom 1.1s both;
                animation: bounce-in-bottom 1.1s both;
    }
    @-webkit-keyframes bounce-in-bottom {
    0% {
      -webkit-transform: translateY(500px);
              transform: translateY(500px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateY(65px);
              transform: translateY(65px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateY(28px);
              transform: translateY(28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateY(8px);
              transform: translateY(8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    }
    @keyframes bounce-in-bottom {
    0% {
      -webkit-transform: translateY(500px);
              transform: translateY(500px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateY(65px);
              transform: translateY(65px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateY(28px);
              transform: translateY(28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateY(8px);
              transform: translateY(8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    }
    .whatsapp-cta2{
        margin-bottom: 15px;
    }
    .show {
        transform: scale(1) !important;
        transition: .5s ease !important;
    }
    .copyright-conts a{
        display: block;
    }
    .top_nav_soc{
        display: none;
    }
    .left-hero-details{
        margin-top: 0px;
    }
    .left-img-about-v2{
        position: relative;
        top: 0px;
    }
    .copyright-conts{
        padding-bottom: 80px;
    }
    .left-hero-details2 h2{
        color: var(--blanco);
    }
    .left-hero-details2 ul li a{
        color: var(--blanco);
    }
    .hero-inner-content{
        text-align: center;
    }
    .hero-inner-content .inner h5{
        font-size: 1em;
    }
    .hero-inner-content .inner h1{
        font-size: 2em;
        line-height: 1;
    }
    .left-hero-details{
        text-align: center;
    }
    .left-hero-details ul li{
        background-color: rgba(0, 0, 0, .1);
        border-radius: 10px;
        margin-bottom: 10px;
        padding: 10px;
    }
    .left-hero-details ul{
        margin: 0px;
    }
    .left-hero-details .fa-li{
        left: 10px;
    }
    .left-hero-details h2{
        font-size: 1em;
        line-height: 1;
        margin-bottom: 10px;
    }
    .left-hero-details .imgs{
        margin-bottom: 10px;
    }
    .left-hero-details h2 br{
        display: none;
    }
    .hero-banner-style1:before{
        display: none;
    }
    .hero-banner-style1:after{
        width: 0px;
    }
    .hero-inner-content .hero-img{
        object-position: 80%;
        filter: grayscale(1);
        opacity: .95;
    }
    .hero-inner-content .inner .hero-icon{
        max-width: 100%;
        left: 0%;
    }
    .hero-inner-content{
        background: var(--blanco);
    }
    .about-right-content-v2 p,.list-with-icon li p,.ftr-widget.about p{
        text-align: left;
    }
    .sec-title h2,.inner-ftr-info h2,.inner-ftr-info h3,.header-breadcrumb h1{
        text-align: center;
        font-size: 1.2em;
        line-height: 1.5;
        padding-top: 60px;
    }
    .sec-title h3{
        justify-content: space-around;
    }
    .neopad{
        padding: 40px 0px !important;
    }
    .working-step-sec .sec-title h2{
        margin-top: 20px;
    }
    .header-breadcrumb{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/*seo*/
.seo a {
    color: var(--white);
  }
.seo {
   
    
    
      height: 340px !important;
      overflow-y: scroll !important;

    
}

.ubi{
    color: white; 
    font-size: 20px; 
    padding: 20px;
}
.tubi{
    margin-top: 35px;
}

/* ------ */
.inner__style-drw h1 {
    font-size: 38px;
    line-height: 1.2;
}
.display__copyright {
    display: flex;
}
@media (min-width:767px) {
    .cta__dresp {
        display: none;
    }
    .p-img img {
        padding: 60px;
    }
    .display-resposive-cta {
        display: none;
    }
}
@media (max-width:767px) {
    .ftr-widget h2 {
        text-align: center;
    }
    .spacing__mobile-drw {
        padding-bottom: 60px;
    }
    .cta__dresp {
        padding: 10px 0px;
        background-color: var(--color2);
    }
    .cta__dresp a {
        color: #fff;
    }
    .inner__style-drw h1 {
        font-size: 20px !important;
    }
    .inner__style-drw .inner__style-drw2 {
        font-size: 16px !important;
        line-height: 1.2 !important;
    }
    .display__copyright {
        display: inline-block;
        text-align: center !important;
    }
    .wtext p {
        display: none;
    }
    .wtext .close {
        display: none;
    }
    .copyright-conts {
        padding-bottom: 50px;
    }
    .ftr__widget-img img {
        width: 70%;
        display: block !important;
        margin: auto;
    }
    .logo__resposive-drw img {
        max-width: 140%;
        /* padding-top: 10px;
        padding-bottom: 10px; */
    }
    .left-img-about-v2 {
        left: 0px ;
    }
    .cta__drw-style4 h2 {
        font-size: 20px;
        line-height: 1.5;
    }
    .fq__img-imgsize img {
        max-width: 200% !important;
    }
    .fq__img-imgsize1 img {
        max-width: 200%;
    }
    .accordion-button {
        font-size: 16px;
    }
}
/* @media (min-width:767px) {
    .show__display-drw {
        display: none !important;
    }
} */
.flex-grow-1 i {
    color: var(--dorado);
}
.size__img-secc1 img {
    width: 50%;
}
.cta__drw-style {
    background-image: linear-gradient(to right top, #004d8a, #365d94, #536e9d, #6d80a7, #8592b0, #8b96b0, #919aaf, #979eaf, #8d94a5, #838a9b, #7a8192, #707788);
}
.cta__drw-style4 {
    padding: 100px 20px;
    margin: auto;
} 
.cta__drw-style4 h2 {
    text-align: center;
    color: #fff;
}
.service__inner-drw p {
    font-size: 14px;
}
.socials i {
    color: var(--color3) !important;
    font-size: 20px;
}
.iconw-drw i {
    color: #fff !important;
}
.pe-cancel {
    pointer-events: none !important;
}
.text__style-ns p {
    text-align: justify;
}
.article__img-title h2 {
    font-size: 26px;
    line-height: 1.5;
}
.text-jdrw {
    text-align: justify;
}
.sec__title-drwi p {
    text-align: justify;
}
.meet-doc-sec {
    background: linear-gradient(to right top, rgb(0, 77, 138), rgb(54, 93, 148), rgb(83, 110, 157), rgb(109, 128, 167), rgb(133, 146, 176), rgb(139, 150, 176), rgb(145, 154, 175), rgb(151, 158, 175), rgb(141, 148, 165), rgb(131, 138, 155), rgb(122, 129, 146), rgb(112, 119, 136));
}
.cont p {
    text-align: justify;
}
.name .name__size {
    font-size: 18px;
}
.text_jdrw {
    text-align: justify;
}


.tab{
    padding: 25px;
}