@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Poppins:400,500,700&amp;display=swap");

* {
    margin: 0;
    padding: 0;
}

/* Hero animation background styles */
.first_section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    border-radius: 0px 0px 20px 20px;
}

.hero-animation-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: auto;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 15, 30, 0.5) 0%, rgba(0, 30, 60, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.first_section .row,
.first_section .continue-card {
    position: relative;
    z-index: 3;
    pointer-events: none;
}

/* Permitir clicks en los elementos interactivos dentro de continue-card */
.first_section .continue-card * {
    pointer-events: auto;
}

@media (max-width: 767px) {
    .first_section {
        min-height: auto;
        height: 75vh;
    }
}

html {
    font-size: 100%;
}

a {
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--bs-emphasis-color);
    cursor: default;
}

p {
    cursor: default;
}

h1 {
    font-size: 58px;
    font-weight: 700
}

h2 {
    font-size: 45px;
    font-weight: 700
}

h3 {
    font-size: 30px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 20px
}

h6 {
    font-size: 16px
}

@media (max-width: 767px) {
    h1 {
        font-size: 50px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 26px !important;
    }

    h4 {
        font-size: 22px !important;
    }
}

p {
    margin: 0;
    padding: 0
}

ul {
    margin: 0;
    padding: 0
}

ul li {
    list-style: none
}

input,
select,
textarea {
    display: inherit;
    border: none;
    outline: none
}

button {
    border: none;
    cursor: pointer
}

button {
    outline: none
}

button:hover,
button:focus {
    outline: none
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: var(--bs-secondary-color);
    font-weight: normal;
    overflow-x: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.bg_image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-img-principal {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(2px);
}

.continue-card {
    background-color: #0c274e;
    border-radius: 0px 0px 20px 20px;
    min-height: 600px;
}

.continue-card.bg-yes {
    background-image: url(../images/background.svg);
    background-size: cover;
}

.card-principal {
    padding: 20px;
    position: relative;
    color: #ffffff;
}

.continue-card h5 {
    line-height: 45px;
    font-size: 15px;
}

#logo-title {
    font-size: 30px;
    color: #ffffff;
    margin-left: 15px;
    line-height: 50px;
}

#logo-text {
    font-size: 15px;
    font-weight: 100;
    color: #ffffff;
    margin-left: 15px;
    line-height: 50px;
}

@media (max-width: 767px) {
    #logo-title {
        font-size: 24px;
        line-height: 2rem;
        margin-bottom: 2rem;
    }

    #logo-text {
        font-size: 14px;
        line-height: 2rem;
    }

    .card-principal {
        border-radius: 10px;
        padding: 20px;
        height: auto;
        color: #ffffff;
    }

    .card-principal h3 {
        font-size: 24px;
    }

    .card-principal h5 {
        font-size: 14px;
    }

    .continue-card h5 {
        line-height: 2rem;
    }
}

.section_title {
    padding-bottom: 40px;
    margin: auto;
}

.section_title h2 {
    margin-bottom: 14px;
    position: relative
}

@media (max-width: 767px) {
    .section_title h2 {
        font-size: 32px
    }

    .section_title {
        padding-bottom: 0px;
    }
}

.rtic_btn {
    color: #ffffff;
    text-decoration: none;
    background: #0a71bb;
    border-radius: 13px;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 15px 15px;
    transition: all .5s ease-out 0s;
    min-width: 300px;
}

.rtic_btn_secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    background: transparent !important;
    position: relative;
    padding: 0px 20px 0px 0px !important;
    font-size: 20px;
    min-width: 320px;
}

.rtic_btn_secondary::before {
    content: '';
    width: 95%;
    height: 1px;
    background: #ffffff;
    position: absolute;
    bottom: 20%;
}

.rtic_btn_secondary::after {
    content: '';
    clip-path: polygon(0 0, 0% 100%, 100% 49%);
    width: 10px;
    height: 10px;
    background: #ffffff;
    position: absolute;
    right: 0px;
}

@media (max-width: 767px) {

    .rtic_btn,
    .rtic_btn_secondary {
        max-width: 80%;
        margin-bottom: 18px;
        font-size: 18px;
        padding: 10px 10px;
    }

    .rtic_btn_secondary::before {
        width: 90%;
        bottom: 0;
    }

    .rtic_btn_secondary::after {
        right: 14px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .rtic_btn_secondary::before {
        width: 90%;
        bottom: 0;
    }
}

.rtic_btn:hover {
    color: #ffffff;
    background: #3389c7;
    box-shadow: 2.5px 4.33px 15px 0px rgba(9, 78, 99, 0.4)
}

.link_btn {
    color: #011a3e
}

.link_btn:after {
    display: inline-block;
    content: '\f04b';
    font-weight: 700;
    font-family: "Font Awesome 5 Free";
    margin-left: 10px;
    color: var(--bs-primary-text-emphasis);
}

.link_btn:hover,
.link_btn:focus {
    color: #0c274e
}

.form_control {
    width: 100%
}

input.form_control {
    height: 45px
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1200px
    }
}

@media (max-width: 767px) {
    .rtic_img img {
        width: 100%
    }

    .box {
        padding: 10px 0px !important;
    }
}

.preloader {
    background: var(--bs-body-bg);
    height: 100%;
    overflow: hidden;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 11000
}

.preloader .lds-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    box-sizing: border-box;
}

.preloader .lds-ripple div {
    position: absolute;
    box-sizing: border-box;
    width: 72px;
    height: 72px;
    border: 4px solid var(--bs-primary-text-emphasis);
    opacity: 1;
    border-radius: 50%;
    transform: scale(0);
    -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.preloader .lds-ripple div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s
}

@-webkit-keyframes lds-ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes lds-ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

.header_area {
    position: relative
}

@media (max-width: 767px) {
    .header_area .site_menu {
        display: none
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_area .site_menu {
        display: none
    }
}

.header_area .site_menu .primary_menu {
    float: right
}

.main_menu {
    border-radius: 6px;
    background-color: var(--bs-background-color);
}

.header_area .site_menu .primary_menu .main_menu ul li {
    position: relative;
    display: inline-block;
    margin-left: 40px
}

.header_area .site_menu .primary_menu .main_menu ul li:last-child {
    margin-right: 40px
}

.header_area .site_menu .primary_menu .main_menu ul li a {
    display: block;
    color: #ffffff;
    position: relative;
    font-size: large;
    text-transform: uppercase;
}

.header_area .site_menu .primary_menu .main_menu ul li a:hover {
    color: #ffffff;
}

li:nth-child(3) a::after {
    opacity: 1;
    transform: scale(0);
    transform-origin: center;
}

li:nth-child(3) a:hover::after,
li:nth-child(3) a:focus::after {
    transform: scale(1);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header_area .site_menu .primary_menu .main_menu ul li a {
        font-size: 14px
    }
}

.header_area .site_menu .primary_menu .main_menu ul li .rtic_btn {
    padding: 0;
    color: var(--bs-emphasis-color);
}

.header_area .site_menu .primary_menu .main_menu ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    padding: 10px 0;
    margin: 10px;
    text-align: left;
    background: var(--bs-light-bg-subtle);
    opacity: 0;
    border-radius: 8px;
    visibility: hidden;
    transform: scale(1, 0);
    transform-origin: 0% 0%;
    transition: all .2s ease-out 0s;
}

.header_area .site_menu .primary_menu .main_menu ul li ul.sub-menu p {
    cursor: pointer;
}

.header_area .site_menu .primary_menu .main_menu ul li ul.sub-menu li {
    position: relative;
    display: block;
    margin: 0
}

.header_area .site_menu .primary_menu .main_menu ul li ul.sub-menu li a {
    padding: 5px 20px;
    color: var(--bs-body-color);
}

.header_area .site_menu .primary_menu .main_menu ul li ul.sub-menu li a:hover {
    background-color: #99b5c125;
}

.menu-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 4px;
    background-color: #ffffff;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.menu-section:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.header_area .site_menu .primary_menu .main_menu ul li ul.sub-menu li:hover ul.sub-menu {
    visibility: visible;
    opacity: 1
}

.header_area .site_menu .primary_menu .main_menu ul li ul.sub-menu li:hover a {
    color: var(--bs-emphasis-color)
}

.header_area .site_menu .primary_menu .main_menu ul li ul.sub-menu li ul.sub-menu {
    top: 0;
    left: 100%;
    opacity: 0;
    visibility: hidden
}

.header_area .site_menu .primary_menu .main_menu ul li ul.sub-menu li ul.sub-menu li a {
    display: block;
    padding: 5px 20px;
    color: #545b69
}

.header_area .site_menu .primary_menu .main_menu ul li ul.sub-menu li ul.sub-menu li:hover a {
    color: #0c274e
}

.header_area .site_menu .primary_menu .main_menu ul li:hover ul.sub-menu {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.15)
}

.header_area .site_menu .primary_menu .main_menu ul .active_link:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 20px;
    height: 3px;
    background: #0c274e
}

.header_area .mobile_wrapper {
    display: none
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_area .mobile_wrapper {
        padding: 10px 0;
        display: block
    }
}

@media (max-width: 767px) {
    .header_area .mobile_wrapper {
        padding: 10px 0;
        display: block
    }
}

.header_area .mobile_wrapper .menu_button {
    float: right
}

.header_area .mobile_wrapper .menu_button .menu_icon span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    margin: 6px 0 2px;
    transition: all .5s ease-out 0s
}

.header_area .mobile_wrapper .menu_button .menu_icon span:nth-child(1) {
    margin-top: 0
}

.header_area .mobile_wrapper .menu_button .menu_icon span:nth-child(3) {
    width: 15px;
    margin-bottom: 0
}

.header_area .mobile_wrapper .menu_button .active span:nth-child(1) {
    width: 15px
}

.header_area .mobile_wrapper .menu_button .active span:nth-child(3) {
    width: 30px
}

.header_area .sidenav_menu {
    overflow: hidden;
    width: 80%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 50px 30px;
    z-index: 9999;
    background: #0f4c81;
    overflow: auto;
    transform: translateX(-100%);
    transition: all .5s ease-out 0s
}

.header_area .sidenav_menu .close_icon {
    position: absolute;
    top: 0;
    right: 0
}

.header_area .sidenav_menu .close_icon .close_btn {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #ffffff;
}

.header_area .sidenav_menu .sidebar-menu li {
    display: block;
    line-height: 40px
}

.header_area .sidenav_menu .sidebar-menu li a {
    text-transform: capitalize;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500
}

.sidebar-menu>li:hover>a,
.sidebar-menu>li.active>a {
    background-color: #65848f;
    border-left-color: #c7d3d6;
}

.sidebar-menu .sub-menu {
    background-color: #3c5863;
}

.header_area .sidenav_menu .sidebar-menu li a .rtic_btn {
    padding: 0
}

.header_area .active {
    transform: translateX(0)
}

.transparent_header {
    left: 0;
    width: 100%;
    z-index: 337;
    padding: 12px;
    background-color: #0C2948;
    color: var(--bs-body-bg);
}

.header_area.sticky {
    padding: 0px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bs-body-bg);
    z-index: 337;
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.15)
}

.header_area.sticky .site_menu {
    padding: 15px 0
}

.rtic_banner {
    overflow: hidden;
    position: relative;
    padding-top: 30px;
    padding-bottom: 80px
}

.logo-svg-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    opacity: 0;
}

@media (max-width: 576px) {
    .logo-svg-item {
        width: 100%;
        height: 100%;
    }
}

.icon_email_send {
    display: block;
}

@media(max-width: 767px) {
    .icon_email_send {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rtic_banner .hero_slider .signle_slider .banner_content {
        margin-bottom: 60px
    }
}

@media (max-width: 767px) {
    .rtic_banner .hero_slider .signle_slider .banner_content {
        margin-bottom: 60px
    }
}

.rtic_banner .hero_slider .signle_slider .banner_content h1 {
    font-weight: 500;
    margin-left: -2px;
    margin-bottom: 10px
}

@media (max-width: 767px) {
    .rtic_banner .hero_slider .signle_slider .banner_content h1 {
        font-size: 30px
    }
}

.rtic_banner .hero_slider .signle_slider .banner_content h1 span {
    font-weight: bold;
    color: #0c274e
}

.rtic_banner .hero_slider .signle_slider .banner_content h5 {
    font-weight: 500;
    margin-bottom: 15px
}

.rtic_banner .hero_slider .signle_slider .banner_content p {
    margin-bottom: 36px
}

.rtic_banner .hero_slider .signle_slider .rtic_img_box {
    position: relative;
    float: right;
    margin-right: 18px
}



@-webkit-keyframes glow {
    from {
        box-shadow: 0 0 3px -3px rgba(9, 78, 99, 0.4)
    }

    to {
        box-shadow: 0 0 3px 3px rgba(9, 78, 99, 0.4)
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 3px -3px rgba(9, 78, 99, 0.4)
    }

    to {
        box-shadow: 0 0 3px 3px rgba(9, 78, 99, 0.4)
    }
}

.rtic_service {
    position: relative
}

.rtic_service .grid_item {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    height: 500px;
}

@media (max-width: 1200px) {
    .rtic_service .grid_item {
        height: 550px;
    }
}

.svg-ctn svg {
    width: 100%;
    height: 150px;
}

.rtic_service .grid_item .icon {
    background-color: #ffffff;
    border-radius: 20px;
    margin-bottom: 30px
}

.rtic_service .grid_item .icon .svg-container,
.rtic_contact .svg-container {
    height: 200px !important;
    width: 200px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* SVG Animations */
.svg-animated {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.svg-animated path,
.svg-animated circle,
.svg-animated rect,
.svg-animated polygon {
    transition: all 0.3s ease;
}

/* Animación de drawing para SVG paths */
.svg-animated path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 2s ease forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Hover effects para cards */
.grid_item:hover .svg-animated {
    filter: drop-shadow(0 0 15px rgba(100, 180, 255, 0.6));
}

.grid_item {
    transition: transform 0.3s ease;
}

.rtic_service .grid_item .icon .svg-container svg,
.rtic_contact .svg-container svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.rtic_service .grid_item .info h4 {
    margin-bottom: 15px;
    font-weight: 600
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .rtic_service .grid_item .info h4 {
        font-size: 18px
    }
}

.rtic_service .grid_item .info h4 a {
    color: var(--bs-emphasis-color);
    font-weight: 600
}

.rtic_service .grid_item .info p {
    margin-bottom: 20px
}

.link_btn {
    font-weight: 500;
    color: var(--bs-primary-text-emphasis);
    text-transform: uppercase;
    outline: 1px solid var(--bs-primary-text-emphasis);
    padding: 6px 20px;
    border-radius: 6px;
    transition: all .5s ease-out 0s;
}

.link_btn:hover {
    background-color: var(--bs-primary-text-emphasis);
    color: #ffffff;
}

.link_btn:hover:after {
    color: #ffffff;
}

.service_v1 {
    padding-top: 70px;
}

@media (max-width: 767px) {
    .service_v1 {
        padding-top: 90px;
    }
}

.service_wrapper .service_tab_wrap .service_tab_nav {
    margin-bottom: 80px
}

.service_wrapper .service_tab_wrap .service_tab_nav .nav-tabs {
    justify-content: center;
    border: none
}

.service_wrapper .service_tab_wrap .service_tab_nav .nav-tabs .nav-item {
    margin-left: 12px;
    margin-right: 12px
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .service_wrapper .service_tab_wrap .service_tab_nav .nav-tabs .nav-item {
        margin-bottom: 20px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service_wrapper .service_tab_wrap .service_tab_nav .nav-tabs .nav-item {
        margin-bottom: 20px
    }
}

@media (max-width: 767px) {
    .service_wrapper .service_tab_wrap .service_tab_nav .nav-tabs .nav-item {
        margin-bottom: 20px
    }
}

.service_wrapper .service_tab_wrap .service_tab_nav .nav-tabs .nav-item .nav-link {
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #011a3e;
    width: 170px;
    height: 170px;
    background: #ffffff;
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 20px 25px;
    border: 3px dashed #ffffff;
    transition: all .5s ease-out 0s
}

.service_wrapper .service_tab_wrap .service_tab_nav .nav-tabs .nav-item .nav-link img {
    margin-bottom: 10px
}

.service_wrapper .service_tab_wrap .service_tab_nav .nav-tabs .nav-item .nav-link span {
    display: block
}

.service_wrapper .service_tab_wrap .service_tab_nav .nav-tabs .nav-item .nav-link.active {
    border-color: #0c274e;
    box-shadow: 5px 8.66px 27px 0px rgba(0, 0, 0, 0.15)
}

.service_wrapper .service_tab_wrap .service_tab_nav .nav-tabs .nav-item .nav-link:hover {
    border-color: #0c274e;
    box-shadow: 5px 8.66px 27px 0px rgba(0, 0, 0, 0.15)
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service_wrapper .service_tab_wrap .tab-content .rtic_content_box {
        margin-bottom: 60px
    }
}

.service_wrapper .service_tab_wrap .tab-content .rtic_content_box h2 {
    position: relative;
    margin-bottom: 30px
}

.service_wrapper .service_tab_wrap .tab-content .rtic_content_box p {
    margin-bottom: 20px
}

.service_wrapper .service_tab_wrap .tab-content .rtic_img_box {
    position: relative;
    z-index: 1
}

.service_wrapper .service_tab_wrap .tab-content .rtic_img_box img {
    border-radius: 8px;
    max-width: 540px;
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.3)
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .service_wrapper .service_tab_wrap .tab-content .rtic_img_box img {
        width: 100%
    }
}

@media (max-width: 767px) {
    .service_wrapper .service_tab_wrap .tab-content .rtic_img_box img {
        width: 100%
    }
}

.service_wrapper .service_tab_wrap .tab-content .rtic_img_box:after {
    position: absolute;
    right: 0;
    top: -30px;
    content: '';
    width: 94%;
    height: 397px;
    z-index: -1;
    border-radius: 8px;
    background-image: linear-gradient(0deg, #ffbd27 0%, #0c274e 100%);
    background-image: -ms-linear-gradient(0deg, #ffbd27 0%, #0c274e 100%)
}

@media (max-width: 767px) {
    .service_wrapper .service_tab_wrap .tab-content .rtic_img_box:after {
        display: none
    }
}

.service_wrapper .rtic_content_box h2 {
    position: relative
}

.service_feature .section_title h2 {
    position: relative
}

.service_feature .section_title h2:after {
    left: 70px
}

.service_feature {
    padding-bottom: 100px
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service_feature .feature_wrapper .single_feature .rtic_img_box {
        margin-bottom: 60px
    }
}

.service_feature .feature_wrapper .single_feature .rtic_content_box {
    max-width: 548px
}

.service_feature .feature_wrapper .single_feature .rtic_content_box .icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px
}

.service_feature .feature_wrapper .single_feature .rtic_content_box h3 {
    position: relative;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px
}

.service_feature .feature_wrapper .single_feature:nth-child(odd) .rtic_content_box {
    text-align: right
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service_feature .feature_wrapper .single_feature:nth-child(odd) .rtic_content_box {
        margin-bottom: 60px
    }
}

.service_v1 .section_title h2 {
    position: relative
}

.service_v1 .section_title h2:after {
    left: 120px
}

.service_v3 .grid_item {
    padding: 40px;
    text-align: left;
    box-shadow: 5px 8.66px 22px 0px rgba(0, 0, 0, 0.15)
}

.service-three h6 {
    text-transform: uppercase;
    color: #0c274e
}

.service-three h3 {
    font-size: 36px
}

.service-three p {
    font-size: 14px
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rtic_about .rtic_img_box {
        margin-bottom: 60px
    }
}

@media (max-width: 767px) {
    .rtic_about .rtic_img_box {
        margin-bottom: 60px
    }
}

.rtic_about .rtic_content_box h2 {
    margin-bottom: 40px
}

@media (max-width: 767px) {
    .rtic_about .rtic_content_box h2 {
        font-size: 28px
    }
}

.rtic_about .rtic_content_box p {
    padding-bottom: 20px
}

.rtic_about .rtic_content_box .rtic_btn {
    margin-top: 20px;
    min-width: 155px
}

.rtic_about .rtic_content_box h2 {
    position: relative
}

.right-arrow::after {
    position: absolute;
    content: '';
    top: 40%;
    right: -69px;
    width: 60px;
    height: 50px;
    background: url(../images/pointer.png) no-repeat
}

.left-arrow:before {
    position: absolute;
    content: '';
    top: 40%;
    left: -38px;
    right: 0;
    width: 60px;
    height: 50px;
    background: url(../images/pointer.png) no-repeat
}

.about-us-two img {
    border-radius: 4px
}

.about-us-two blockquote {
    padding: 30px;
    border-radius: 3px;
    margin-bottom: 30px;
    position: relative;
    background: #ffffff;
    border-left: 4px solid #0c274e;
    box-shadow: 0 23px 49px 0 rgba(59, 59, 152, 0.15);
    margin: 10px 0px 10px 18px
}

.about-us-two blockquote span,
.about-us-two blockquote strong {
    color: #0c274e
}

.about-three {
    background-color: #fbfbfe
}

.about-three h6 {
    color: #0c274e
}

.about-three h3 {
    font-size: 36px
}

.about-three h2 {
    color: #0c274e
}

.about-three .count {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px rgba(181, 181, 181, 0.2);
    transition: all 200ms ease-in-out
}

@media only screen and (min-width: 400px) and (max-width: 767px) {
    .about-three .count {
        margin: 10px 0px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-three .count {
        margin: 15px 0px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-three .img {
        margin-bottom: 40px
    }
}

@media only screen and (min-width: 400px) and (max-width: 767px) {
    .about-three .img {
        margin-bottom: 40px
    }
}

.team-area h6 {
    color: #0c274e;
    text-transform: uppercase
}

.team-area h3 {
    font-size: 36px
}

.team-area h5 {
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px
}

.team-area .team {
    height: 100%;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px var(--bs-border-color);
    transition: all 200ms ease-in-out
}

.team-area .row div {
    margin-bottom: 10px;
}

.team-area .team img {
    border-radius: 50%
}

.team-area .team ul li {
    display: inline;
    margin: 0px 10px
}

.team-area .team ul li a {
    color: #0c274e;
    font-size: 18px
}

.team-area .team:hover {
    box-shadow: 0px 0px 10px 0px #0f4c81a2;
}

.team-area .team img {
    width: 128px;
}


.project_v2 .grid_wrapper .grid_item {
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    transition: all .5s ease-out 0s
}

@media (max-width: 767px) {
    .project_v2 .grid_wrapper .grid_item {
        margin-bottom: 40px
    }
}

.project_v2 .grid_wrapper .grid_item:hover {
    box-shadow: 4px 6.928px 15px 0px rgba(0, 0, 0, 0.15)
}

.project_v2 .grid_wrapper .grid_item:hover .rtic_info h4 a {
    color: #0c274e
}

.project_v2 .grid_wrapper .grid_item .rtic_info {
    padding: 30px
}

.project_v2 .grid_wrapper .grid_item .rtic_info h4 {
    font-weight: 600
}

.project_v2 .grid_wrapper .grid_item .rtic_info h4 a {
    color: #011a3e
}

.rtic_project {
    overflow: hidden;
    position: relative;
    padding-bottom: 3em;
}

.rtic_project .section_title h2 {
    position: relative
}

.rtic_project .section_title h2:after {
    left: 30px
}

.project_v2 .grid_item {
    margin-bottom: 30px
}

.portfolio_area {
    padding-bottom: 110px
}

@media (max-width: 991px) {
    .portfolio_area {
        padding-bottom: 50px
    }
}

.portfolio_area .filters ul {
    padding-left: 0;
    margin-bottom: 30px
}

@media (max-width: 991px) {
    .portfolio_area .filters ul {
        margin-bottom: 20px
    }
}

.portfolio_area .filters ul li {
    display: inline-block;
    margin-right: 40px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #05364d;
    cursor: pointer;
    transition: all 0.4s ease 0s
}

.portfolio_area .filters ul li:hover,
.portfolio_area .filters ul li.active {
    color: #0c274e
}

@media (max-width: 767px) {
    .portfolio_area .filters ul li {
        margin-right: 20px
    }
}

.single_portfolio {
    position: relative;
    margin-bottom: 30px
}

@media (max-width: 767px) {
    .single_portfolio {
        margin-bottom: 35px
    }
}

.single_portfolio .overlay {
    transition: all 0.4s ease 0s
}

.single_portfolio .short_info {
    position: absolute;
    bottom: 44px;
    left: 80px;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease 0s
}

.single_portfolio .short_info h4 {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px
}

.single_portfolio .short_info h4 a {
    color: #ffffff
}

.single_portfolio .short_info p {
    margin-bottom: 0px
}

.single_portfolio:hover .overlay {
    top: 20px;
    left: 20px;
    background: #0c274e
}

.single_portfolio:hover .short_info {
    bottom: 24px;
    left: 60px;
    opacity: 1;
    visibility: visible
}

.portfolio_details_inner .row {
    margin-bottom: 35px
}

@media (max-width: 480px) {
    .portfolio_details_inner .row {
        margin-bottom: 30px
    }
}

.portfolio_details_inner p {
    margin-bottom: 30px;
    font-size: 16px
}

.portfolio_details_inner p:last-child {
    margin-bottom: 0px
}

.portfolio_details_inner .portfolio_right_text {
    padding: 30px;
    background: #f8faff;
    margin-top: 10px
}

.portfolio_details_inner .portfolio_right_text h4 {
    font-size: 20px;
    text-transform: capitalize !important;
    margin-bottom: 10px
}

.portfolio_details_inner .portfolio_right_text p {
    margin-bottom: 25px;
    font-size: 14px
}

.portfolio_details_inner .portfolio_right_text .list li {
    margin-bottom: 7px;
    font-weight: normal;
    font-size: 14px
}

.portfolio_details_inner .portfolio_right_text .list li span {
    font-family: "Roboto", sans-serif;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    width: 97px;
    display: inline-block
}

.portfolio_details_inner .portfolio_right_text .list li:last-child {
    margin-bottom: 0px
}

.portfolio_details_inner .portfolio_right_text .list li i {
    color: #f1cd09
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%
}

.portfolio-three h6 {
    text-transform: uppercase;
    color: #0c274e
}

.portfolio-three h3 {
    font-size: 36px
}

.clients img {
    margin: 10px 0px
}

@media only screen and (min-width: 400px) and (max-width: 767px) {
    .client {
        width: 50%;
        max-width: 50%
    }
}

.rtic_contact {
    padding-top: 80px;
    position: relative
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rtic_contact .section_title {
        margin: 0;
        margin-bottom: 60px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rtic_contact .rtic_img_box {
        margin-bottom: 60px
    }
}

@media (max-width: 767px) {
    .rtic_contact .rtic_img_box {
        margin-bottom: 60px
    }
}

.rtic_contact .contact_form .form_group {
    margin-bottom: 20px
}

.rtic_contact .contact_form .form_group label::after {
    content: '*';
    color: red;
    margin-left: 4px;
}

.rtic_contact .contact_form .form_group .form_control {
    border-radius: 13px;
    width: 100%;
    height: 45px;
    background: var(--bs-background-color);
    padding-left: 20px;
    -webkit-box-shadow: 2.5px 4.33px 15px 0px var(--bs-border-color);
    box-shadow: 2.5px 4.33px 15px 0px var(--bs-border-color);
    border: 0.1px groove;
    transition: all .3s ease-out 0s;
}

.rtic_contact .contact_form .form_group textarea {
    padding-top: 20px;
    min-height: 145px
}

.rtic_contact .contact_form .button_box .rtic_btn {
    min-width: 170px
}

.rtic_contact .section_title h2 {
    position: relative
}

.rtic_contact .section_title h2:after {
    left: -30px
}

.rtic_contact .section_title {
    margin: 0;
    margin-bottom: 40px
}

.rtic_contact .contact_form .form_group select {
    border-radius: 30px;
    width: 100%;
    height: 45px;
    background: #ffffff;
    padding-left: 20px;
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.15)
}

.rtic_contact .contact_form .form_group select option {
    max-width: 300px
}

.rtic_contact .contact_form .form_group .form_control:hover {
    box-shadow: 1px 1px 15px 0px #5a9bdc;
}

.rtic_map .map_box iframe {
    width: 100%;
    height: 540px;
    border: none;
    display: inherit;
}

@media (max-width: 767px) {
    .rtic_contact {
        padding-top: 100px;
    }

}

.rtic_map {
    text-align: -webkit-center;
}

.rtic_cta .cta_wrapper {
    padding: 45px 50px 42px;
    max-width: 970px;
    border-radius: 15px;
    margin: auto;
    margin-bottom: -135px;
    position: relative;
    background-image: linear-gradient(-30deg, var(--bs-primary-bg-subtle) -80%, #0f4c81 100%);
    background-image: -ms-linear-gradient(-30deg, #65848f -80%, #0F4C81 100%);
    box-shadow: 2.5px 4.33px 15px 0px #0F4C81;
    z-index: 1
}

.rtic_cta .cta_wrapper:after {
    content: '';
    background: url(../images/cta_shape.png) no-repeat;
    background-position: bottom;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 15px;
}

.rtic_cta .cta_wrapper .cta_content h3 {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 767px) {
    .rtic_cta .cta_wrapper .cta_content h3 {
        font-size: 24px
    }
}

.rtic_cta .cta_wrapper .cta_content h3:after {
    content: '';
    display: block;
    background: url(../images/line_2.png) no-repeat;
    max-width: 110px;
    height: 2px;
    margin-top: 13px;
    margin-bottom: 24px
}

.rtic_cta .cta_wrapper .cta_content p {
    color: #ffffff;
}

.rtic_cta .cta_wrapper .button_box {
    float: right
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rtic_cta .cta_wrapper .button_box {
        float: none;
        text-align: left;
        margin-top: 30px
    }
}

@media (max-width: 767px) {
    .rtic_cta .cta_wrapper .button_box {
        float: none;
        text-align: center;
        margin-top: 30px
    }
}

.rtic_cta .cta_wrapper .button_box .rtic_btn {
    background: #ffffff;
    color: #011a3e
}

.rtic_cta .cta_wrapper .button_box .rtic_btn:hover,
.rtic_cta .cta_wrapper .button_box .rtic_btn:focus {
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.15)
}

.rtic_breadcrumb {
    padding: 100px 0 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.breadcrumb_content h1 {
    font-weight: 500
}

@media (max-width: 767px) {
    .rtic_breadcrumb .breadcrumb_content h1 {
        font-size: 36px
    }
}

.rtic_breadcrumb .breadcrumb_content ul li {
    display: inline-block;
    color: var(--bs-secondary-color);
    text-transform: uppercase
}

.rtic_breadcrumb .breadcrumb_content ul li:after {
    content: '\f105';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    margin-left: 10px;
    margin-right: 10px
}

.rtic_breadcrumb .breadcrumb_content ul li:last-child:after {
    display: none
}

.rtic_breadcrumb .breadcrumb_content ul li a {
    text-transform: uppercase;
    color: var(--bs-secondary-color);
}

.rtic_breadcrumb_two {
    padding: 280px 0px 245px;
    background-position: top
}

.rtic_breadcrumb_two h1 {
    color: #ffffff;
}

.rtic_pagination ul li {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px
}

.rtic_pagination ul li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #eee;
    color: #545b69;
    font-size: 15px;
    font-weight: 500;
    transition: all .5s ease-out 0s
}

@media (max-width: 767px) {
    .rtic_pagination ul li a {
        width: 30px;
        height: 30px;
        line-height: 30px
    }
}

.rtic_pagination ul li a:hover,
.rtic_pagination ul li a:focus {
    color: #ffffff;
    background-image: linear-gradient(0deg, #ffbd27 0%, #0c274e 100%);
    background-image: -ms-linear-gradient(0deg, #ffbd27 0%, #0c274e 100%)
}

.rtic_pagination ul .prev a,
.rtic_pagination ul .next a {
    display: block;
    width: 85px;
    height: 40px;
    border-radius: 30px
}

@media (max-width: 767px) {

    .rtic_pagination ul .prev a,
    .rtic_pagination ul .next a {
        width: 45px;
        height: 30px
    }
}

.rtic_sidebar .widget {
    margin-bottom: 50px
}

.feature h2 {
    color: #0c274e
}

.counter .counter-box {
    border: 2px dashed #ffffff;
    transition: all 0.5s ease-out 0s;
    box-shadow: 5px 8.66px 22px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px
}

.counter .counter-box:hover {
    border: 2px dashed #0c274e
}

.rtic_footer .widget_wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 70px;
    padding-top: 5em;

}

@media (max-width: 767px) {
    .rtic_footer .widget_wrapper .widget {
        margin-bottom: 40px
    }
}

.rtic_footer .widget_wrapper .widget .widget_title {
    margin-bottom: 30px
}

.rtic_footer .widget_wrapper .widget .widget_title h4 {
    font-weight: bold
}

.rtic_footer .widget_wrapper .widget .widget_title h4:after {
    content: '';
    display: block;
    background: url(../images/line_1.png) no-repeat;
    max-width: 38px;
    height: 2px;
    margin-top: 5px
}

.rtic_footer .widget_wrapper .widegt_about p {
    margin-bottom: 20px
}

.rtic_footer .widget_wrapper .widget_link ul li {
    margin-bottom: 5px
}

.rtic_footer .widget_wrapper .widget_link ul li a {
    text-transform: capitalize;
    color: #545b69
}

.rtic_footer .widget_wrapper .widget_link ul li a:hover,
.rtic_footer .widget_wrapper .widget_link ul li a:focus {
    color: #0c274e
}

.rtic_footer .widget_wrapper .widget_contact .contact_info .single_info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px
}
.single_info a:hover > i{
    color: #0c274e;
    transition: all .5s ease-out 0s;
}

.rtic_footer .widget_wrapper .widget_contact .contact_info .single_info .icon {
    font-size: 12px;
    color: var(--bs-primary-text-emphasis);
    margin-right: 10px;
}

.rtic_footer .widget_wrapper .widget_contact .contact_info .single_info .info p a {
    color: #545b69
}

.rtic_footer .widget_wrapper .widget_contact .contact_info .single_info .info p span {
    display: block
}

.rtic_footer .copyright_area {
    padding: 10px 0;
}

.rtic_footer .copyright_area .copyright_text {
    text-align: center
}

.rtic_footer .copyright_area .copyright_text p {
    color: #011a3e
}

.rtic_footer .copyright_area .copyright_text p span {
    color: #0c274e
}

.footer {
    margin: 0px
}

.footer .footer-top {
    background-color: #f7f7fd
}

.footer .footer-top .widget_wrapper {
    background-repeat: no-repeat;
    background-size: cover
}

@media (max-width: 767px) {
    .footer .footer-top .widget_wrapper .widget {
        margin-bottom: 40px
    }
}

.footer .footer-top .widget_wrapper .widget .widget_title {
    margin-bottom: 30px
}

.footer .footer-top .widget_wrapper .widget .widget_title h4 {
    font-weight: bold
}

.footer .footer-top .widget_wrapper .widget .widget_title h4:after {
    content: '';
    display: block;
    background: url(../images/line_1.png) no-repeat;
    max-width: 38px;
    height: 2px;
    margin-top: 5px
}

.footer .footer-top .widget_wrapper .widegt_about p {
    margin-bottom: 20px
}

.footer .footer-top .widget_wrapper .widget_link ul li {
    margin-bottom: 5px
}

.footer .footer-top .widget_wrapper .widget_link ul li .far {
    font-size: 13px;
    color: #0c274e;
    margin-right: 10px
}

.footer .footer-top .widget_wrapper .widget_link ul li a {
    text-transform: capitalize;
    color: #545b69
}

.footer .footer-top .widget_wrapper .widget_link ul li a:hover,
.footer .footer-top .widget_wrapper .widget_link ul li a:focus {
    color: #0c274e
}

.footer .footer-top .widget_wrapper .widget_contact .contact_info .single_info {
    max-width: 250px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.footer .footer-top .widget_wrapper .widget_contact .contact_info .single_info .icon {
    font-size: 12px;
    color: #0c274e;
    margin-right: 10px
}

.footer .footer-top .widget_wrapper .widget_contact .contact_info .single_info .info p a {
    color: #545b69
}

.footer .footer-top .widget_wrapper .widget_contact .contact_info .single_info .info p span {
    display: block
}

.footer .footer-top .widget_wrapper .rtic_btn {
    width: 100%;
    box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.1)
}

.footer .copyright_area {
    background: #f1f1fd;
    padding: 10px 0
}

.footer .copyright_area .copyright_text {
    text-align: center
}

.footer .copyright_area .copyright_text p {
    color: #011a3e
}

.footer .copyright_area .copyright_text p span {
    color: #0c274e
}



/*ANIMACION BORDE*/

@property --angle {
    syntax: '<angle>';
    initial-value: 90deg;
    inherits: true;
}

@property --gradX {
    syntax: '<percentage>';
    initial-value: 50%;
    inherits: true;
}

@property --gradY {
    syntax: '<percentage>';
    initial-value: 0%;
    inherits: true;
}

:root {
    --d: 3000ms;
    --angle: 90deg;
    --gradX: 100%;
    --gradY: 50%;
    --c1: var(--bs-primary-text-emphasis);
    --c2: rgba(168, 239, 255, 0);
}

.box {
    padding: 40px 0px;
    border: 0.1rem solid;
    border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
    animation: borderRotate var(--d) linear infinite forwards;
    border-inline-end: none;
    border-inline-start: none;
}

.box:nth-child(2) {
    border-image: radial-gradient(ellipse at var(--gradX) var(--gradY), var(--c1), var(--c1) 10%, var(--c2) 40%) 30;
    animation: borderRadial var(--d) linear infinite forwards;

}

.slick-dots li button:before {
    color: var(--bs-body-color);
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: var(--bs-emphasis-color);
}

@keyframes borderRotate {
    100% {
        --angle: 420deg;
    }
}

@keyframes borderRadial {
    20% {
        --gradX: 100%;
        --gradY: 50%;
    }

    40% {
        --gradX: 100%;
        --gradY: 100%;
    }

    60% {
        --gradX: 50%;
        --gradY: 100%;
    }

    80% {
        --gradX: 0%;
        --gradY: 50%;
    }

    100% {
        --gradX: 50%;
        --gradY: 0%;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 1rem;
    right: 0.75rem;
    z-index: 1050;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4dabf7 0%, #0d6efd 100%);
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn .arrow-up {
    fill: #ffffff;
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
    }
}

.theme-switch {
    --color: var(--bs-secondary-color);
    --size: 30px;
    cursor: pointer;
    font-size: var(--size);
    user-select: none;
    fill: var(--color);
}

.theme-switch .moon {
    animation: keyframes-fill .5s;
}

.theme-switch .sun {
    display: none;
    animation: keyframes-fill .5s;
}

/* ------ On check event ------ */
.theme-switch input:checked~.moon {
    display: none;
}

.theme-switch input:checked~.sun {
    display: block;
}

/* ------ Hide the default checkbox ------ */
.theme-switch input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* ------ Animation ------ */
@keyframes keyframes-fill {
    0% {
        transform: rotate(-360deg) scale(0);
        opacity: 0;
    }

    75% {
        transform: rotate(25deg);
    }
}

.slick-next:before,
.slick-prev:before {
    content: '';
}

.list-clients {
    filter: grayscale();
}

.list-clients,
#stats-section {
    margin-top: 30px;
}

@media (max-width: 767px) {
    #stats-section {
        justify-content: center;
        align-items: center;
    }
}

.list-clients::after {
    content: '';
    width: 60px;
    height: 100%;
    top: 0;
    background-image: linear-gradient(270deg, rgb(255, 255, 255), rgba(237, 237, 237, 0));
    right: -1px;
    z-index: 10;
    position: absolute;
    display: block;
}

.list-clients::before {
    content: '';
    width: 60px;
    height: 100%;
    top: 0;
    background-image: linear-gradient(90deg, rgb(255, 255, 255), rgba(237, 237, 237, 0));
    left: -1px;
    z-index: 10;
    position: absolute;
    display: block;
}


.list-clients .slick-dots {
    display: none !important;
}

.rtic_nosotros {
    border-top: 0.1rem solid;
    border-bottom: 0.1rem solid;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 2rem;
}

.card-producto {
    padding: 2rem 0 0 0;
}

.producto_modulos h3 {
    padding-bottom: 3rem;
}

.producto_modulos img {
    width: 265px;
    height: 80px;
    margin-bottom: 1rem;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .producto_modulos img {
        width: 200px;
        height: 60px;
    }
}

.producto_modulos div:hover i {
    color: #6a8a99;
}

/*CARTA ANIMADA - SERVICIOS*/
.card-servicio {
    overflow: hidden;
}

.card-servicio img,
.card-servicio svg {
    transition: transform 0.3s ease-in-out;
}

.card-servicio:hover img,
.card-servicio:hover svg {
    transform: translateY(-10px);
}

.card-servicio .svg-ctn {
    height: 200px !important;
    width: 50% !important;
}

@media (max-width: 767px) {
    .card-servicio .svg-ctn {
        height: 150px !important;
        width: 100% !important;
    }

    .card-servicio:hover img,
    .card-servicio:hover svg {
        transform: scale(1) !important;
    }
}

.card-servicio img {
    max-width: 50%;
    height: 100%;
}

.card-servicio svg {
    max-width: 50%;
    height: 100%;
}

.card-servicio h5 {
    line-height: 40px;
}

.content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 300ms;
    box-shadow: 0px 0px 6px 1px #0f4c818a;
    border-radius: 5px;
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--bs-light-bg-subtle);
}

.back {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: auto;
}

.back::before {
    position: absolute;
    content: ' ';
    display: block;
    width: 160px;
    height: 160%;
}

.back-content {
    position: absolute;
    width: 99%;
    height: 99%;
    border-radius: 5px;
    color: var(--bs-body-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-bottom: 40px;
    padding-top: 35px;
}

.back-content h3 {
    font-weight: 600;
}

.card-servicio:hover .content {
    transform: rotateY(180deg);
}

@keyframes rotation_481 {
    0% {
        transform: rotateZ(0deg);
    }

    0% {
        transform: rotateZ(360deg);
    }
}

.front {
    transform: rotateY(180deg);
    color: var(--bs-body-color);
}

.front .front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.logo_nav {
    max-height: 40px;
}

/*RESPONSIVE*/
@media (max-width: 767px) {
    .list-clients {
        margin-bottom: 0px !important;
        margin-top: 50px !important;
    }

    .rtic_project {
        padding-bottom: 6em;
    }

    .rtic_footer .widget_wrapper {
        margin-top: 4em;
        padding-bottom: 0em;
    }

    .logo_iso {
        padding: 1rem !important;
        max-width: 50%;
    }

    .rtic_banner {
        padding: 15px;
        padding-top: 35px;
    }

    .rtic_map .map_box iframe {
        width: 100%;
        overflow: hidden;
    }

    .logo_nav {
        max-height: 30px;
    }
}

.rtic_footer {
    /*background: url("../images/fiestas-rtic-2024.png") repeat;*/
    background-size: 400px;
}

.description {
    font-size: 0.9em;
    margin-top: 5px;
    text-transform: capitalize;
}

[data-bs-theme="light"] {
    --bs-body-bg: #ffffff;
    --bs-body-color: #212529;
    --bs-emphasis-color: #000000;
    --bs-secondary-color: #6c757d;
    --bs-tertiary-bg: #f8f9fa;
    --bs-border-color: #dee2e6;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
}

[data-bs-theme="light"] .bd-mode-toggle,
[data-bs-theme="dark"] .bd-mode-toggle {
    position: fixed !important;
    bottom: 1.4rem;
    left: 0.75rem !important;
    z-index: 1050 !important;
}

[data-bs-theme="dark"] {
    --bs-body-bg: #0d1117;
    --bs-body-color: #e6edf3;
    --bs-emphasis-color: #ffffff;
    --bs-secondary-color: #7d8590;
    --bs-tertiary-bg: #161b22;
    --bs-border-color: #30363d;
    --bs-link-color: #4dabf7;
    --bs-link-hover-color: #339af0;
}

[data-bs-theme="dark"] .scroll-to-top-btn {
    background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
}

[data-bs-theme="dark"] .main_menu ul li a {
    color: var(--bs-body-color);
}

[data-bs-theme="dark"] .main_menu ul li a:hover {
    color: var(--bs-emphasis-color);
}

[data-bs-theme="dark"] .rtic_footer {
    background-color: var(--bs-tertiary-bg);
    color: var(--bs-body-color);
}

[data-bs-theme="dark"] .copyright_area {
    background-color: rgba(13, 17, 23, 0.8);
}

[data-bs-theme="dark"] .rtic_btn {
    background-color: var(--bs-link-color);
    border-color: var(--bs-link-color);
    color: #ffffff;
}

[data-bs-theme="dark"] .rtic_btn:hover {
    background-color: var(--bs-link-hover-color);
    border-color: var(--bs-link-hover-color);
}

[data-bs-theme="dark"] .card,
[data-bs-theme="dark"] .service_item,
[data-bs-theme="dark"] .widget {
    background-color: var(--bs-tertiary-bg);
    border-color: var(--bs-border-color);
}

[data-bs-theme="dark"] .preloader {
    background-color: var(--bs-body-bg);
}

[data-bs-theme="dark"] .sidenav_menu {
    background-color: var(--bs-tertiary-bg);
}

[data-bs-theme="dark"] .sidebar-menu li a {
    color: var(--bs-body-color);
}

[data-bs-theme="dark"] .sidebar-menu li a:hover {
    color: var(--bs-emphasis-color);
    background-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .rtic_service .grid_item .icon {
    background-color: #918f8f !important;
}

[data-bs-theme="dark"] .rtic_service .grid_item,
[data-bs-theme="dark"] .card-servicio {
    background-color: #03192F !important;
}

[data-bs-theme="dark"] .list-clients {
    background-color: #e1e1e1 !important;
    border-radius: 20px;
}

[data-bs-theme="dark"] .link_btn {
    color: #ffffff;
}

[data-bs-theme="dark"] .list-clients::after {
    content: '';
    width: 60px;
    height: 100%;
    top: 0;
    background-image: linear-gradient(270deg, rgb(0, 0, 0), rgba(237, 237, 237, 0));
    right: -1px;
    z-index: 10;
    position: absolute;
    border-radius: 0px 20px 20px 0px;
    display: none;
}

[data-bs-theme="dark"] .list-clients::before {
    content: '';
    width: 60px;
    height: 100%;
    top: 0;
    background-image: linear-gradient(90deg, rgb(0, 0, 0), rgba(237, 237, 237, 0));
    left: -1px;
    z-index: 10;
    position: absolute;
    border-radius: 20px 0px 0px 20px;
    display: none;
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.testimonial-card .card-body {
    padding: 2rem;
}

.testimonial-content {
    position: relative;
    font-style: italic;
    color: #545454;
    line-height: 1.8;
}

.testimonial-card .fa-quote-left {
    opacity: 0.2;
}

.testimonial-card h6 {
    color: var(--bs-emphasis-color);
    font-size: 1rem;
}

.testimonial-card img {
    object-fit: contain;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testimonial-card .card-body {
        padding: 1.5rem;
    }
}