@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-BlackOblique.otf") format("opentype");
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-Book.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-BookOblique.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-Heavy.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-HeavyOblique.otf") format("opentype");
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-LightOblique.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-MediumOblique.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-Oblique.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/AvenirLTStd-Roman.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "Avenir", sans-serif;
    font-weight: 400;
    background: #111523;
}

.wide {
    overflow: hidden;
    width: auto;
    margin: 20px 0 20px 15px;
    display: flex;
    flex-wrap: wrap;
    max-width: none;
}

@media (min-width: 576px) {
    .wide {
        margin-left: calc((100% - 540px) / 2);
    }
}

@media (min-width: 768px) {
    .wide {
        margin-left: calc((100% - 720px) / 2);
    }
}

@media (min-width: 992px) {
    .wide {
        margin-left: calc((100% - 960px) / 2);
    }
}

@media (min-width: 1200px) {
    .wide {
        margin-left: calc((100% - 1140px) / 2);
    }
}

@media (min-width: 1400px) {
    .wide {
        margin-left: calc((100% - 1320px) / 2);
    }
}

.bg-dark {
    background-color: #111523 !important;
}

.bg-white{
    color: #FFFFFF;
}

.btn.btn-primary {
    background-color: #26a9e0 !important;
    color: #111523 !important;
    border-color: #26a9e0 !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn.btn-primary:hover {
    background-color: #229bce !important;
    border-color: #229bce !important;
}

.btn.btn-light {
    background-color: white !important;
    color: #111523 !important;
    border-color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn.btn-light:hover {
    background-color: rgb(239, 239, 239) !important;
    border-color: rgb(239, 239, 239) !important;
}

/* Navbar */

.navbar {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.btn-navbar a {
    margin-left: auto;
}

.navbar-collapse {
    width: 100%;
}

.navbar .navbar-desktop {
    border: 1px solid white;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 30px;
    display: none;
}

.logo-desktop {
    display: none;
}

.navbar .nav-link {
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.7rem 1rem !important;
    font-weight: 300;
}

.navbar .nav-link.active {
    font-weight: 600;
}

@media screen and (min-width: 1200px) {
    .logo-mobile {
        display: none;
    }

    .logo-desktop {
        display: block;
    }
}

@media screen and (min-width: 992px) {
    .navbar .navbar-toggler,
    .navbar .navbar-mobile {
        display: none;
    }

    .navbar .navbar-desktop {
        display: flex;
    }
}

@media screen and (max-width: 992px) {
    .collapse:not(.show) {
        display: block;
        flex-basis: content;
        flex-grow: inherit;
        order: 3;
    }

    button.navbar-toggler {
        border: transparent !important;
        padding: 0px;
    }

    .logo-mobile {
        width: 60px;
        margin-left: 1.5rem;
    }

    a.navbar-brand.text-uppercase {
        order: 2;
        margin-right: auto;
    }
}

@media screen and (max-width: 400px) {
    .logo-mobile {
        width: 50px;
        margin-left: 1rem;
    }
}

@media screen and (max-width: 340px) {
    .logo-mobile {
        width: 35px;
        margin-left: 0.5rem;
    }
}

/* Banner */

#header {
    margin-top: 107px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#header .bg-header {
    /* background-image: url(../images/banner/banner.png); */
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 700px;
    border-radius: 15px;
    position: absolute;
    width: 100%;
   
}

#header .bg-header::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(17, 21, 35);
    background: -moz-linear-gradient(
        0deg,
        rgba(17, 21, 35, 1) 0%,
        rgba(17, 21, 35, 0) 100%
    );
    background: -webkit-linear-gradient(
        0deg,
        rgba(17, 21, 35, 1) 0%,
        rgba(17, 21, 35, 0) 100%
    );
    background: linear-gradient(
        0deg,
        rgba(17, 21, 35, 1) 0%,
        rgba(17, 21, 35, 0) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111523",endColorstr="#111523",GradientType=1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.banner {
    margin-top: 8rem;
    position: relative;
}

.banner h1 {
    color: white;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner .title img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 2rem;
    width: 100px;
}

.areas-list {
    position: relative;
}

#header h2 {
    text-align: center;
    text-transform: uppercase;
    color: white;
    margin-top: 10rem;
    font-weight: 800;
}

#header .area {
    padding: 1.5rem;
    border-radius: 15px;
    background-image: url(../images/background/bg-1.png);
    background-position: -150px -500px;
    background-repeat: no-repeat;
    background-size: 1200px;
    display: flex;
    position: relative;
    min-height: 100%;
}

#header .area.dark:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #1f2541a1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    mix-blend-mode: darken;
    border-radius: 15px;
}

#header .area.light:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #095e8282;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    mix-blend-mode: darken;
    border-radius: 15px;
}

#header .area h3 {
    text-transform: uppercase;
    font-size: 1rem;
    color: white;
    font-weight: 700;
    /* letter-spacing: 1px; */
    position: relative;
    margin-bottom: 1rem;
    white-space: break-spaces;
    word-wrap: break-word;
}

#header .area img {
    width: 50px;
    position: relative;
    align-self: center;
}

#header .area a {
    padding: 0.4rem 1.5rem;
    position: relative;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.8rem;
}

@media screen and (max-width: 992px) {
    #header .dark-bg-mobile:before {
        background-color: #1f2541a1 !important;
    }

    #header .light-bg-mobile:before {
        background-color: #095e8282 !important;
    }

    #header .area {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .area .ms-3 {
        margin-left: 0px !important;
    }

    #header .area img {
        margin-bottom: 1rem;
    }

    #header h1 {
        font-size: 1.6rem !important;
    }

    h2 {
        font-size: 1.3rem !important;
    }
}

@media screen and (max-width: 768px) {
    #header h2 {
        margin-top: 5rem;
    }
}

.mt-100 {
    margin-top: 100px;
}

@media screen and (max-width: 768px) {
    .mt-100 {
        margin-top: 70px;
    }
}

/* Vision */

#vision img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    position: relative;
    display: block;
}

#vision .img-vision {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(17, 21, 35);
    background: -moz-linear-gradient(
        0deg,
        rgba(17, 21, 35, 1) 0%,
        rgba(17, 21, 35, 0) 100%
    );
    background: -webkit-linear-gradient(
        0deg,
        rgba(17, 21, 35, 1) 0%,
        rgba(17, 21, 35, 0) 100%
    );
    background: linear-gradient(
        0deg,
        rgba(17, 21, 35, 1) 0%,
        rgba(17, 21, 35, 0) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111523",endColorstr="#111523",GradientType=1);
    z-index: 1;
}

#vision .accordion-item,
#vision .accordion-button {
    background: transparent;
    border: none;
    box-shadow: none !important;
    color: white;
    font-weight: 300;
}

#vision .accordion-button {
    border-bottom: 1px solid rgba(255, 255, 255, 0.666);
    font-size: 1.1rem;
}

#vision .accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4'/%3E%3C/svg%3E");
}

#vision .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8'/%3E%3C/svg%3E");
}

@media screen and (max-width: 992px) {
    #vision img {
        margin-bottom: 1.5rem;
        height: 250px;
    }

    #vision a {
        display: block;
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }

    #vision .img-vision {
        width: 97%;
    }

    #vision .collapse:not(.show) {
        display: none;
    }
}

/* blog */

.blog-slider .blog {
    background-color: #1f2541;
    width: 330px;
    border-radius: 8px;
}

.blog-slider .blog .img-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0px 0px;
}

.blog-slider .blog .img-container .bg-blog {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(31, 37, 65);
    background: -moz-linear-gradient(
        0deg,
        rgba(31, 37, 65, 1) 0%,
        rgba(31, 37, 65, 0) 43%
    );
    background: -webkit-linear-gradient(
        0deg,
        rgba(31, 37, 65, 1) 0%,
        rgba(31, 37, 65, 0) 43%
    );
    background: linear-gradient(
        0deg,
        rgba(31, 37, 65, 1) 0%,
        rgba(31, 37, 65, 0) 43%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f2541",endColorstr="#1f2541",GradientType=1);
}

.blog-slider .blog img {
    border-radius: 8px 8px 0px 0px;
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease-out;
}

.blog-slider .blog:hover img {
    transform: scale(1.1);
    transition: ease-out 0.5s;
}

.blog-slider .blog-body {
    padding: 1rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
}

.blog-slider.owl-drag .owl-item {
    margin-right: 40px !important;
}

.blog-slider .date {
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 1rem 0rem;
    display: block;
}

.blog-slider .content {
    padding-top: 1rem;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    margin-bottom: 1.5rem;
}

.blog-slider .blog-body h3 {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 700;
}

.blog-slider .content p {
    font-size: 0.8rem;
    font-weight: 300;
}

.blog-slider .blog-body a{
    width: max-content;
}

@media screen and (max-width: 992px){
    .blog-slider .owl-dots.disabled {
        display: block;
        margin-top: 1rem !important;
    }
}

@media screen and (max-width: 450px){
    .blog-slider .blog-body a{
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 400px) {
    .blog-slider .blog {
        width: 300px;
    }

    .blog-slider .blog img {
        height: 170px;
    }

    .blog-slider .blog-body h3 {
        font-size: 1.1rem;
    }

}

/* Contact Form Home */
#contact-form {
    color: white;
}

#contact-form ul {
    list-style: none;
    padding: 1.5rem 0px;
    margin: 1.5rem 0px 1rem 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.74);
    border-bottom: 1px solid rgba(255, 255, 255, 0.74);
}

#contact-form ul li {
    margin-bottom: 1rem;
    font-weight: 300;
}

#contact-form ul li i {
    color: #26a9e0;
}

#contact-form ul li a {
    color: white;
    text-decoration: none;
    font-weight: 300;
}

#contact-form .form-control {
    border-radius: 30px;
    border: none !important;
    padding: 0.5rem 1rem;
}

#contact-form textarea {
    border-radius: 15px !important;
    height: 150px;
}

#contact-form label {
    font-weight: 300;
}

#contact-form .form-control::placeholder {
    color: gainsboro;
    font-weight: 300;
}

#contact-form form a {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    text-transform: uppercase;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    #contact-form h2,
    #contact-form p,
    #contact-form li {
        text-align: center;
    }

    #contact-form form button, #contact-form form a {
        padding: 0.6rem 3rem;
        margin-bottom: 1.5rem;
    }
}



/* Footer */

footer {
    background-color: #1f2541;
}

footer .social-media {
    padding-top: 3rem;
    padding-bottom: 1rem;
}

footer .social-media img {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}

footer .social-media ul,
footer .quick-links ul {
    display: flex;
    padding-left: 0px;
    list-style: none;
}

footer .social-media ul li a,
footer .quick-links ul a {
    color: white;
    text-decoration: none;
}

footer .social-media .fb svg {
    width: 0.7rem;
    margin-bottom: 5px;
    fill: white;
}

footer .social-media .linkedin svg {
    width: 1.2rem;
    margin-bottom: 5px;
    fill: white;
}

footer .quick-links {
    padding: 1rem 0rem;
    border-top: 1px solid rgba(255, 255, 255, 0.762);
    border-bottom: 1px solid rgba(255, 255, 255, 0.762);
}

footer .quick-links ul {
    justify-content: space-between;
    margin-bottom: 0px;
}

footer .quick-links ul a {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.7rem;
    margin-bottom: 0px;
}

footer .copyrights {
    padding: 1.5rem 0px;
}

footer .copyrights p {
    color: white;
    margin-bottom: 0px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 300;
}

@media screen and (max-width: 575px) {
    footer .quick-links ul li {
        font-size: 0.6rem;
        width: 100%;
        display: block;
        margin-bottom: 1rem;
        text-align: center;
    }

    footer .quick-links ul {
        flex-wrap: wrap;
        margin-top: 1rem;
    }
}

/* Contact page */

.contact-container {
    color: white;
    text-align: center;
}

.contact-banner {
    background-image: url(../images/banner/banner_superior.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    border-radius: 15px;
    position: absolute;
    width: 100%;
    top: 5rem;
    z-index: -1;
    
}



.contact-banner .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.contact-banner .banner-text h1 {
    font-size: 2.5rem;
    margin: 0;
}

.contact-banner .banner-text p {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.contact-banner .banner-text span {
    font-size: 1rem;
    font-style: italic;
}

.contact-info {
 
    padding: 0;
    font-size: 1.2rem;
    color: #fff;
}

.icon-color {
    color: #26a9e0;
    font-size: 1.5rem;
}

.contact-form {
    max-width: 1250px;
    margin: 0 auto;
}



.form-card {
    background: linear-gradient(180deg, #27304f 0%, #1a1a2e 100%);
    border-radius: 20px;
    padding: 2rem 1rem;
    margin: 1rem auto;
}

.form-card input{
    border-radius: 30px;
}

.form-card input::placeholder{
    color: gainsboro;
}

.form-card label{
    color: white;
}



.reason-card {
     width: 100%;
    border-radius: 25px;
    background-color: transparent;
    border-color: #fff;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #fff;
    transition: border-color 0.3s;
    text-align: left;
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 1rem 1.5rem;
    min-height: 100%;
}

.reason-card span {
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    align-self: center;
}

.reason-card img.reason-icon {
    width: 40px;
    margin-right: 1rem;
    height: auto;
    align-self: center;
}

.reason-card:hover {
    border-color: #26a9e0;
}

.reason-card.active {
    border-color: #293fcd;
}

@media screen and (max-width: 992px){
    .reason-card {
       min-height: auto;
       margin-bottom: 0.5rem;
   }
}


.form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

.form-control-contact {
    border-radius: 12px;
    width: 100%;
    border: none;
}

.form-control-contact::placeholder {
    color: #cccccc;
    opacity: 1;
}

.info-item {
    font-size: 1rem;
    color: white;
    display: flex;
    justify-content: center;
    text-align: left;
    padding: 0 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.515);
    align-items: center;
    font-weight: 300;
}

.info-item:last-of-type{
    border-right: none;
}

.info-item a{
    color: white;
    text-decoration: none;
}

.info-item img{
    width: 30px;
    height: 30px;
    margin-right: 0.7rem;
}

@media screen and (max-width: 1200px){
    .info-item {
        padding: 0 1rem;
    }
}

@media screen and (max-width:992px){
    .info-item {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.475);
        width: 100%;
        border-right: none;
        justify-content: flex-start;
    }

    .info-item br{
        display: none;
    }

    .contact-info-container{
        flex-wrap: wrap;
        flex-direction: column;
    }

}


/* Areas page */

.nav-areas h1 {
    text-align: center;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.6rem;
}

.nav-areas .nav {
    justify-content: center;
    border-bottom: none;
}

.nav-areas .nav li {
    border-right: 1px solid rgba(255, 255, 255, 0.663);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.nav-areas .nav li:last-of-type {
    border-right: 0px;
}

.nav-areas .nav button {
    text-transform: uppercase;
    font-size: 0.75rem;
    border: none;
    background: transparent !important;
    border-radius: 0px;
    color: white;
    font-weight: 300;
    padding-top: 0px;
    padding-bottom: 0px;
}

.nav-areas .nav button.active {
    color: #26a9e0;
}

.areas {
    color: white;
    margin-top: 4rem;
    scroll-behavior: auto;
}

.areas .header-area {
    margin-bottom: 3rem;
}

.areas .header-area h2 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.areas .header-area p {
    font-weight: 300;
    text-align: center;
}

.areas .card-area {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgb(17,21,35);
    background: linear-gradient(0deg, rgba(17,21,35,1) 0%, rgba(39,48,79,1) 43%);
}

.areas .card-header-area{
    padding: 1rem;
    border-radius: 8px;
    background-color: #111523;
    display: flex;
    position: relative;
}

.areas .card-header-area .bg-card-area {
    height: 100%;
    width: 90px;
    background-color: #67bef980;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 8px 0px 0px 8px;
    z-index: 0;
    mix-blend-mode: hard-light;
}

.areas .icon-area-container, .areas .card-title{
    position: relative;
}

.areas .icon-area-container{
    padding: 1rem;
    background: linear-gradient(180deg, #1F2541 0%, #181835 100%);
    margin-right: 1.5rem;
    border-radius: 8px;
    height: 90px;
    width: 90px;
    align-self: center;
    display: flex;
    justify-content: center;
}

.areas .icon-area-container .round {
    width: 60px;
    height: 60px;
    padding: 0.5rem;
    background: linear-gradient(180deg, #1F2541 0%, #070724 100%);
    border-radius: 50%;
}

.areas .icon-area-container img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.areas .card-title {
    align-self: center;
}

.areas .card-title h3{
    font-size: 1.3rem;
    font-weight: 700;
}

.areas .card-title p{
    font-weight: 300;
    font-size: 0.9rem;
    margin-bottom: 0px;
}

.areas .card-body-area ul{
    padding-left: 0px;
    list-style: none;
    text-align: center;
    margin-top: 3rem;
}

.areas .card-body-area ul li{
    margin-bottom: 2rem;
}

.areas .card-body-area ul li img{
    width: 35px;
    margin-bottom: 0.7rem;
}

.areas .card-body-area ul li h4{
    font-weight: 800;
    font-size: 1.2rem;
}

.areas .card-body-area ul li p{
    font-weight: 300;
    font-size: 1rem;
}

.areas .banner-litigio-civil h2 strong{
    font-weight: 800;
}

.areas .banner-litigio-civil h2 {
    margin-top: 6rem;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.banner-litigio-civil{
    background-image: url(../images/banner/banner-2.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 3rem 2rem;
    border-radius: 15px 15px 0px 0px;
}
.banner-litigio-civil.banner-litigio-civil-custom{
    background-image: url(../images/banner/banner-1.jpg);
    background-position: 100% 17%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 10rem 2rem 13rem;
    border-radius: 15px 15px 0px 0px;
}

.banner-litigio-civil::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(17,21,35);
    background: linear-gradient(0deg, rgba(17,21,35,1) 15%, rgba(39,48,79,0.17237456506039917) 100%);
    bottom: 0px;
    left: 0;
    position: absolute;
}

.fs-08{
    font-size: 0.8rem;
}

#tab-selector {
    background-color: transparent;
    border: 1px solid #26A9E0;
    color: #26A9E0;
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 30px;
    text-transform: uppercase;
    background-image: url(../images/icons/chevron-down.svg);
    background-position: 97% center;
    background-size: 24px;
    background-repeat: no-repeat;
    font-size: 0.9rem;
}

#tab-selector option{
    color: #111523;
    text-transform: none;
}

.slider-civil {
    border-bottom: 1px solid #ffffffa1;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    border-top: 1px solid #ffffffa1;
    margin-top: 2rem;
}

.slider-civil .owl-item{
    margin-right: 10px !important;
    text-align: center;
    padding: 2rem;
}

.slider-civil .item img {
    width: 35px;
    margin-left: auto;
    margin-right: auto;
}

 .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
    background: #26A9E0 !important;
}



@media (max-width: 992px) {
    .nav-tabs {
        display: none;
    }

    .nav-areas h1{
        color: #26A9E0;
    }

    .areas .card-body-area ul{
        display: none;
    }

    .areas .card-header-area {
        flex-direction: column;
        justify-content: center;
    }

    .areas .card-header-area .bg-card-area {
        width: 100%;
        border-radius: 8px;
        background-image: url(../images/background/bg-3.png);
        background-color: transparent;
        mix-blend-mode: normal;
        background-size: cover;
        height: 85px;
    }

    .areas .card-title {
        text-align: center;
        padding: 1rem;
    }

    .areas .icon-area-container {
        margin-right: 0rem;
    }

    .slider-civil {
        border-top: none;
        margin-top: 0rem;
        padding-bottom: 1rem !important;
    }

    .text-card-body-area {
        border-top: 1px solid #ffffffa1;
        padding-top: 1.5rem;
        font-weight: 700;
    }

    .slider-civil .item img {
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 993px) {
    #tab-selector, .slider-civil{
        display: none !important;
    }

}


@media screen and (max-width: 768px){
    .banner-litigio-text p{
        text-align: justify !important;
    }

    .slider-civil .owl-item {
        padding: 2rem 0rem;
    }
}

.tab-content > .active:focus-visible {
    outline: none !important;
}

#litigio-civil:target {
    scroll-margin-top: 400px;
  }

/* Area - Contrato seguro y Accidentes de tránsito */

#seguro-cubierta .service, #accidentes-transito .service {
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    margin-bottom: 2.5rem;
}

#seguro-cubierta .service.left img, #accidentes-transito .service.left img{
    height: 100%;
    width: 40%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    border-radius: 15px 0px 0px 15px;
}

#seguro-cubierta .service.left .bg-service, #accidentes-transito .service.left .bg-service{
    width: 75%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0px 15px 15px 0px;
    background: rgb(39,48,79);
    background: linear-gradient(270deg, rgba(39,48,79,1) 88%, rgba(39,48,79,0) 100%);
}

#seguro-cubierta .service.left .services-content, #accidentes-transito .service.left .services-content {
    position: relative;
    max-width: 70%;
    margin-left: auto;
    padding: 2rem;
    background: #111523;
    border-radius: 15px;
}

#seguro-cubierta .service h3, #accidentes-transito .service h3{
    font-size: 1.5rem;
    font-weight: 800;
}

#seguro-cubierta .service p, #accidentes-transito .service p{
    font-weight: 300;
    margin-bottom: 0px;
}

#seguro-cubierta .service.right img, #accidentes-transito .service.right img{
    height: 100%;
    width: 40%;
    position: absolute;
    right: 0;
    top: 0;
    object-fit: cover;
    border-radius: 0px 15px 15px 0px;
}

#seguro-cubierta .service.right .bg-service, #accidentes-transito .service.right .bg-service{
    width: 75%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 15px 0px 0px 15px;
    background: rgb(39,48,79);
    background: linear-gradient(90deg, rgba(39,48,79,1) 88%, rgba(39,48,79,0) 100%);
}

#seguro-cubierta .service.right .services-content, #accidentes-transito .service.right .services-content {
    position: relative;
    max-width: 70%;
    margin-right: auto;
    padding: 2rem;
    background: #111523;
    border-radius: 15px;
}

.slider-contrato .owl-item {
    margin-right: 10px !important;
}

@media screen and (max-width: 992px) {
    #seguro-cubierta .service img, #accidentes-transito .service img{
        height: 50%;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        border-radius: 15px 15px 0px 0px;
    }

    #seguro-cubierta .service .bg-service, #accidentes-transito .service .bg-service{
        display: none;
    }

    #seguro-cubierta .service, #accidentes-transito .service {
        background-color: #27304F;
        border-radius: 15px;
        padding: 1rem;
        position: relative;
        overflow: hidden;

    }

    #seguro-cubierta .service .services-content, #accidentes-transito .service .services-content {
        position: relative;
        max-width: 100%;
        margin-left: 0;
        padding: 2rem;
        background: #111523;
        border-radius: 15px;
        margin-top: 10rem;
    }

    #seguro-cubierta .service  h3, #accidentes-transito .service  h3{
        text-align: center;
        margin-bottom: 2rem;
        font-size: 1.4rem;
        min-height: 53px;
        align-content: center;
    }

    #accidentes-transito .service  h3{
        min-height: 80px;
    }

    #seguro-cubierta .service p, #accidentes-transito .service p{
        text-align: justify;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 1.5rem;
    }

    .btn-expand {
        background: transparent;
        color: #fff;
        border: none;
        padding: 5px 10px;
        font-size: 14px;
        cursor: pointer;
        position: relative;
        border-radius: 5px;
        display: block;
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-expand i{
        margin-left: 0.5rem;
        vertical-align: middle;
    }
}

@media screen and (max-width: 557px){
    #accidentes-transito .service  h3{
        min-height: 110px;
        font-size: 1.2rem;
    }

}

/* Areas - Impericia medica */

.general-principle h3, .faq-container h3{
    text-transform: uppercase;
    text-align: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 3rem;
}

.principle, .faq{
    padding: 3rem 2.5rem;
    border-radius: 15px;
    background: rgb(39,48,79);
    background: linear-gradient(360deg, rgba(39,48,79,0) 0%, rgba(39,48,79,1) 76%);
    margin-top: 3rem;
}

.principle .content-item {
    display: none;
    padding: 1rem 0px;
    margin-top: 2.5rem;
    text-align: center;
}

.principle .item {
    padding: 1rem;
    text-align: center;
    background-color: transparent;
    border: 1px solid #ffffff82;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 8px;
    height: 100%;
    align-content: center;
    font-weight: 300;
}

.principle .item:hover {
    border-color: white;
    transition: border-color 0.3s;
}

.principle .item.active {
    background-color: transparent;
    background-image: url(../images/background/bg-3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    border-color: #3a4f6c;
    transition: background-color 0.3s;
}

.principle .content-item h4 {
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 31px;
}

.principle .content-item ul{
    list-style: none;
    padding-left: 0px;
}

.principle .content-item p, .principle .content-item ul, .principle .content-item ol{
    font-weight: 300;
    font-size: 0.9rem;
    text-align: left;
}

.principle-select-container{
    background-image: url(../images/background/bg-3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.principle-select {
    white-space: break-spaces;
    padding: 1rem 2.5rem 1rem 1rem;
    background-color: transparent;
    border: 0px;
    color: white;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='white' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");;
}

.principle-select option{
    color: #070724;
}

.faq .accordion-button {
    border-bottom: 1px solid rgba(255, 255, 255, 0.493) !important;
    font-size: 1.1rem !important;
    padding-left: 0px;
    padding-right: 0px;
}

.faq .accordion-item, .faq .accordion-button {
    background: transparent;
    border: none;
    box-shadow: none !important;
    color: white;
    font-weight: 300;
}

.faq .accordion-body {
    padding-left: 0px;
    padding-right: 0px;
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8'/%3E%3C/svg%3E");
}

.faq .accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4'/%3E%3C/svg%3E");
}


@media (max-width: 992px) {
    .tab-content .content-item {
        display: none;
    }
    .tab-content .content-item.active {
        display: block;
    }

    .faq .collapse:not(.show) {
        display: none;
    }

    #perjuicios .principle .content-item p, #perjuicios .principle .content-item ul {
        text-align: justify !important;
    }
}

@media screen and (max-width: 768px){
    .banner-impericia{
        padding: 3rem 1rem;
    }

    .banner-impericia h2{
       font-size: 1.1rem !important;
    }
}

@media screen and (max-width: 575px){
    .principle, .faq {
        padding: 1rem;
    }

    .general-principle h3, .faq-container h3{
        font-size: 1.2rem;
    }

    .general-principle-impericia h3 {
        font-size: 1.4rem;
        margin-top: 1rem;
    }
}

/* Area - Daños y perjuicio */

@media screen and (min-width: 992px){
    #perjuicios .general-principle h3, #perjuicios .general-principle strong{
        width: 65%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width:992px){
    .short-text-mobile {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .damage-general-principle .principle .content-item h4 {
        display: none;
    }

    .damage-general-principle .principle .content-item {
        margin-top: 1rem;
    }

    .hidden-text-mobile{
        display: none !important;
    }
}

.w-max-content{
    width: max-content !important;
}

.text-justify{
    text-align: justify !important;
}

/* Blog */

#list-blog .blog, #blog-details .blog {
    border-bottom: 1px solid rgba(255, 255, 255, 0.532);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

#list-blog .blog img, #blog-details .blog img{
    width: 100%;
    border-radius: 15px 15px 0px 0px;
    height: 250px;
    object-fit: cover;
}

#list-blog .img-container-blog, #blog-details .img-container-blog{
    position: relative;
}

#list-blog .img-container-blog p, #blog-details .img-container-blog p{
    display: flex;
    flex-direction: column;
    border-radius: 7px;
    background-color: white;
    width: max-content;
    text-transform: uppercase;
    text-align: center;
    font-weight: 800;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

#list-blog .img-container-blog .bg-blog, #blog-details .img-container-blog .bg-blog{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(17,21,35);
    background: linear-gradient(180deg, rgba(17,21,35,0) 35%, rgba(17,21,35,1) 100%);
    z-index: 1;
}

#list-blog .img-container-blog .day, #blog-details .img-container-blog .day{
    color: white;
    background-color: #26A9E0;
    border-radius: 7px;
    padding: 0.2rem 1rem;

}

#list-blog .info-blog ul, #blog-details .info-blog ul{
    color: white;
    display: flex;
    list-style: none;
    padding-left: 0px;
    margin-top: 3rem;
    font-size: 0.9rem;
    font-weight: 300;
}

#list-blog .info-blog ul i, #blog-details .info-blog ul i{
    color: #229bce;
    margin-right: 0.2rem;
}

#list-blog .info-blog h2 a, #blog-details .info-blog h2{
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
}

#list-blog .info-blog p{
    font-weight: 300;
    color: white;
}

#list-blog .page-link {
    background: transparent;
    border: 0px;
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 0.5rem;
    color: white;
    box-shadow: none !important;
}

#list-blog .page-link.active, .active > .page-link {
    background-color: #1F2541 !important;
    border-color: #1F2541 !important;
    border-radius: 50%;
}

#list-blog .page-item.disabled{
    display: none;
}

.filters .bg-aside, .blog-filters{
    padding: 1.5rem;
    border-radius: 15px;
    background: rgb(39,48,79);
    background: linear-gradient(0deg, rgba(39,48,79,0) 0%, rgba(39,48,79,1) 100%);
    color: white;
}

.filters h2, .blog-filters h2{
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: white;
}

/* .filters .search input, .blog-filters input{
    border-radius: 30px;
    background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20d%3D%22M11.742%2010.344a6.5%206.5%200%201%200-1.397%201.398h-.001q.044.06.098.115l3.85%203.85a1%201%200%200%200%201.415-1.414l-3.85-3.85a1%201%200%200%200-.115-.1zM12%206.5a5.5%205.5%200%201%201-11%200%205.5%205.5%200%200%201%2011%200%22/%3E%3C/svg%3E');
    background-position: 96% center;
    background-repeat: no-repeat;
    padding-right: 2.5rem;
} */

/* Contenedor Principal */
.blog-search {
    margin-bottom: 1.5rem;
    background-color: var(--aside-bg-color, #f8f9fa); /* Color de fondo ajustable */
    padding: 1rem;
    border-radius: 8px;
}

.blog-search-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

/* Formulario */
.blog-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-search-input-group {
    position: relative;
    width: 100%;
}

/* Input */
.blog-search-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 30px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.blog-search-input:focus {
    border-color: var(--primary-color, #007bff);
    outline: none;
}

/* Botón */
.blog-search-button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-search-button i {
    font-size: 1.25rem;
    color: var(--primary-color, #229bce);
    transition: color 0.3s ease;
}

.blog-search-button:hover i {
    color: var(--hover-color, #0056b3);
}

.filters .search input::placeholder, .blog-filters input::placeholder{
    color: gainsboro;
}

.filters .last-blogs article{
    margin-bottom: 1.5rem;
}

.filters .last-blogs article a{
    text-decoration: none;
    color: white;
    display: flex;
}

.filters .last-blogs article img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
    align-self: center;
}

.filters .last-blogs article .info{
    align-self: center;
}

.filters .last-blogs article h3{
    font-size: 1.1rem;
    font-weight: 300;
    padding-right: 2rem;
    text-transform: capitalize;
}

.filters .last-blogs article p{
    font-size: 0.7rem;
    font-weight: 300;
    margin-bottom: 4px;
}

.filters .last-blogs article i{
    color: #229bce;
    margin-right: 0.1rem;
}

.filters .categories ul{
    padding-left: 0px;
    list-style: none;
}

.filters .categories ul li.active a{
    font-weight: 800;
}

.filters .categories ul a{
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
}

.filters .tags ul{
    display: flex;
    flex-wrap: wrap;
    padding-left: 0px;
    list-style: none;
}


.filters .tags ul li{
    margin-right: 0.5rem;
}
.filters .tags ul li a {
    padding: 0.5rem;
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-decoration: none;
    display: inline-block;
}
.filters .tags ul li.active a{
    padding: 0.5rem 1rem;
    background: #FFFFFF1A;
}

.filters .comments ul{
    padding-left: 0px;
    list-style: none;
}

.filters .comments li{
    display: flex;
    margin-bottom: 1rem;
}

.filters .comments li .icon-container{
    padding: 1rem;
    border-radius: 50%;
    background-color: #229bce;
    color: #111523;
    width: 50px;
    height: 50px;
    align-self: center;
    margin-right: 1rem;
}

.filters .comments li p{
    margin-bottom: 0px;
    align-self: center;
    font-weight: 300;
    text-transform: capitalize;
}

.blog-filters form{
    width: calc(100% - 48px);
}

.btn-filter{
    width: 40px;
    height: 40px;
    font-size: 0px;
    display: block;
    background-image: url(../images/icons/action_key.svg);
    background-position: center;
    background-repeat: no-repeat;
    align-self: center;
}

#blog-details .blog {
    border-bottom: none;
}

#blog-details .blog .blog-body {
    color: white;
}

#blog-details .blog .blog-body ul {
    list-style: disc;
    display: inline-block;
    padding-left: 1rem;
}

#blog-details .blog-categories{
    border-top: 1px solid rgba(255, 255, 255, 0.553);
    border-bottom: 1px solid rgba(255, 255, 255, 0.553);
    padding: 1.5rem 0px;
}

#blog-details .blog-categories span{
    text-transform: uppercase;
    color: white;
    font-size: 0.8rem;
    align-self: center;
}

#blog-details .blog-categories ul {
    display: flex;
    list-style: none;
    color: white;
    padding-left: 0.5rem;
    margin-bottom: 0px;
    align-self: center;
    flex-wrap: wrap;
}

#blog-details .blog-categories .cat li{
    margin-right: 0.5rem;
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: 30px;
    background-color: #1F2541;
    text-transform: capitalize;
}

#blog-details .blog-categories .tag li{
    margin-left: 0.5rem;
    font-size: 0.8rem;
    align-content: center;
    text-transform: capitalize;
}

#blog-details .blog-categories .tag li:first-of-type{
    margin-left: 0px;
}

.comments-list{
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: white;
    padding-bottom: 1rem;
}

.comments-list .list{
    padding-left: 0px;
    list-style: none;
}

.comments-list .comment-item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.456);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.comments-list .comment-item img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
}

.comments-list .reply-form {
    width: 100%;
}

.comments-list .reply-form textarea{
    border-radius: 30px;
}

.comment-info {
    width: 100%;
}

.comment-info h2{
    font-size: 1.4rem;
}

.comment-info .date, .comment-info .msg{
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0px;
}

.comment-info .msg{
    margin-top: 1rem;
}

.comment-info button{
    align-self: center;
}

.comments-list .reply-form textarea {
    border-radius: 8px;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem !important;
    margin-top: 2rem;
}

.cancel-reply{
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.373);
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
}

.replies-list .comment-item {
    margin-top: 1.5rem;
    width: 100%;
    border: 0px;
    margin-bottom: 1rem;
    padding-bottom: 0px;
}

.replies-list .comment-item img {
    width: 50px;
    height: 50px;
}

.replies-list .comment-info h2 {
    font-size: 1.2rem;
}

.replies-list .comment-info{
    width: 100%;
}

.replies-list  .comment-info .date{
    font-size: 0.8rem;
}

.replies-list {
    padding-left: 2rem;
}

#send-comment .form-control {
    border-radius: 30px;
    border: none !important;
    padding: 0.5rem 1rem;
}

#send-comment .form-control::placeholder {
    color: gainsboro;
}

#send-comment  textarea {
    border-radius: 15px !important;
    height: 150px;
}

@media screen and (max-width: 992px){
    .comments-list .post-comment{
        display: block;
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px){
    #list-blog .info-blog p {
        text-align: justify;
    }

    #list-blog .info-blog .btn{
        display: block;
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 575px){
    .filters .tags ul li a {
        font-size: 0.8rem;
    }

    .filters .tags ul li {
        margin-right: 0.5rem;
    }

    .filters .tags ul{
        justify-content: center;
    }

    .filters .bg-aside, .blog-filters {
        padding: 1.5rem 1rem;
    }

    .blog-categories .tag{
        display: none !important;
    }
}
/* About us page */
.banner-about-us{
    background-image: url(../images/banner/about_us_banner.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    border-radius: 15px;
    position: absolute;
    width: 100%;
    top: 5rem;
    z-index: -1;
}

.banner-about-us::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(17,21,35);
    background: linear-gradient(0deg, rgba(17,21,35,1) 15%, rgba(39,48,79,0.17237456506039917) 100%);
    bottom: 0px;
    left: 0;
    position: absolute;
}
 .banner-title {
   margin-top: 1.3rem;
   font-weight: bold;
   text-transform: uppercase;
   color: white;
}

.banner-about-us-text p{
    width: 75%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.about-us-history-background {
    background: linear-gradient(to bottom,#27304F, #27304F00 );
    border-radius: 15px;
    color: white;
    font-family: "Avenir";
    font-weight: 300;
}



 .about-us-stat-number h2{
    
    font-size: 3rem !important;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    
}
.about-us-stat-number p{
    font-size: 2rem;
    color: white;
    font-weight: 200; 
    
}

.about-us-team-card {
    background-color: #1F2541;
    text-align: start;
}
.about-us-team-card .card-body img{
   width: 1.5rem;
   height: 1.5rem;
   display: inline;
   

}
.about-us-team-card p{
    color: white;
    font-family: "Avenir";
    font-weight: 350;
    font-size: 1rem;

}
.about-us-testimony-card {
     background-color: #1F2541;
     padding: 12px;
     border-radius: 13px;
     background-color: #229bce;
     text-align: start;
    
}
.about-us-testimony-card p{
    font-weight: 200;
    font-size: 16px;
    font-style: italic;
    color: white;
    
   
}

.about-us-testimony-card span{
    font-weight: 300;
    font-size: 1.2rem;
  
    color: white;
    
   
}

.about-us-testimony-card .card-body img{
    width: 30%;
    height: 30%;
    display: inline;
}

@media screen and (max-width: 992px){
    .banner-about-us-text p{
        width: 100%;
    }
}

@media only screen and (max-width: 450px) {
    div.owl-carousel {
      padding:0;
      text-align:center;
    }
  }
  .about-us-team-card-img-container{
    position:relative;
  }

  .about-us-team-card-gradient {
    position:absolute;
    height:100%; 
    width:100%; 
    top:0; 
    left:0; 
    background: rgb(31, 37, 65);
    background: -moz-linear-gradient(
        0deg,
        rgba(31, 37, 65, 1) 0%,
        rgba(31, 37, 65, 0) 43%
    );
    background: -webkit-linear-gradient(
        0deg,
        rgba(31, 37, 65, 1) 0%,
        rgba(31, 37, 65, 0) 43%
    );
    background: linear-gradient(
        0deg,
        rgba(31, 37, 65, 1) 0%,
        rgba(31, 37, 65, 0) 43%
    );

}

@media screen and (max-width: 992px){
    .about-us-history{
        text-align: justify;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 1.5rem;
        max-height: 309px;
        overflow: hidden;
    }
    .about-us-history .completed{
        max-height: unset;
    }

    .btn-expand-history {
        background: white;
        color: rgb(31, 37, 65);
        border: none;
        padding: 5px 10px;
        font-size: 1.0rem;
        cursor: pointer;
        font-weight: bold;
        position: relative;
        border-radius: 20px;
        display: block;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-expand-history i{
        margin-left: 0.5rem;
        vertical-align: middle;
    }
}



/* end about us page */

.divider {
    color: white;
    border-radius: 5px;
    height: 1.5px;
}

.fs-09 {
    font-size: 0.9rem;
}

a.twitter-x {
    margin-top: 1px;
    display: block;
}

.about-us-testimony-card.blue {
    background-color: #171959;
}

@media screen and (max-width: 1400px) and (min-width: 992px){
    .navbar .nav-link {
        padding: 0.7rem 0.5rem !important;
    }
}

@media screen and (max-width: 992px) and (min-width: 768px){
    .navbar-nav .dropdown-menu {
        position: absolute;
    }
}

@media screen and (min-width: 992px){
    #perjuicios .tab-content {
        order:0;
    }

    #perjuicios .principle {
        display: flex;
        flex-direction: column;
    }

    #perjuicios .perjuicios-tabs{
        order: 1;
    }

    #perjuicios .principle .content-item {
        margin-top: 0rem;
    }
}

/* Landing */

@media screen and (max-width: 450px){
    .navbar-landing .logo-mobile{
        width: 45px !important;
    }

    .navbar-landing .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.70rem;
    }
}


.landing-content #header .bg-header {
    height: 580px;
}

.landing-content #header .reason{
    background: rgb(37,45,85);
    background: linear-gradient(180deg, rgba(37,45,85,1) 0%, rgba(29,36,69,1) 100%);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    color: white;
    text-align: center;
    height: 100%;
}

.landing-content #header .reason .circle{
    width: 70px;
    height: 70px;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.landing-content #header .reason img{
    max-width: 35px;
}

.landing-content #header .reason h3{
    font-size: 1.4rem;
}

.landing-content #header .reason p{
    font-weight: 200;
    font-size: 0.9rem;
}

.landing-content h1{
    font-size: 2rem !important;
}

.landing-content .header-area h2{
    font-size: 1.6rem !important;
}

.btn-outline-blue{
    display: block;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    color: white;
    border: 1px solid #26A9E0;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    background: transparent;
}

.mt-60{
    margin-top: 60px;
}

.landing-content .nav-areas .nav {
    border: 1px solid rgba(255, 255, 255, 0.732);
    border-radius: 30px;
}

#about-us-team .card-body p{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 1.5rem;
    line-height: 1.5rem;
    font-size: 0.9rem;
}
#about-us-history .card-body p{
    line-height: 2rem;
    font-size: 1.1rem;
}


@media screen and (max-width: 992px){
    #about-us-history .card-body {
        max-height: 309px;
        overflow: hidden;
        transition: max-height 0.8s ease;
    }
    #about-us-history .card-body.completed {
        max-height: 2500px; 
    }
    
    
}



#about-us-history .btn-expandteam {
    background: transparent;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    border-radius: 5px;
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}
#about-us-team .btn-expand {
    background: transparent;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    border-radius: 5px;
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

#principle-list, .landing-content #contact-form {
    scroll-margin-top: 100px;
}

#principle-list-2, #principle-list-3 {
    scroll-margin-top: 250px;
}

@media screen and (max-width: 360px) {
    .navbar .btn-navbar .btn-primary{
        padding: 0.6rem 0.8rem;
    }
}

.principle .no-select{
    cursor:auto;
    background: transparent !important;
    border: white 1px solid !important;
}