/*
Theme Name: My Contino
Theme URI: https://www.creativepace.com/
Author: Pace Developers
Author URI: https://www.creativepace.com/
Description: Our default theme for 2023
Version: 1.0
Requires at least: 6.0
Tested up to: 6.0
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mycontino
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*==========================================================
* VARS
*==========================================================*/
@import url(fonts/stylesheet.css);

:root {
    /*Primary*/
    --blue: #0033A0;
    --charcoal: #D0D0CE;
    --Navy: #012169;
    --lightgrey: #9a9a9c;
    --lightgreycolumn: #F8F8F8;
    --lightgreycolumndark: #EFEFEF;    
    --white: #FFFFFF;
    --lightblue: #59CBE8;
    --lightbluewhite: #B9F1FF;   
    --green: #50FFD2;
    --black: #000;
    --bckblue : #EDF7F9;
    --tags : #2B2B2B;
    /*Background Colors */
    --lightskyblue: #ECF5F7;
    --skyblue: #CAEFFF;
    --lightgreybar: #F2F2F2;
    --blue-bg: #0171B9;
    /*Colors New*/
    --lettergray: #616E88;
    /*line border*/
    --lineborder : #BCBCBC;
    /*bolder*/
    --regular: 400;
    --semibold: 500;
    --bold: 600;
    /*Font-Size*/
    --fs54: 54px;
    --fs40: 40px;
    --fs32: 32px;
    --fs24: 24px;
    /*Line-height*/
    --lh64: 64px;
    --lh46: 46px;
    --lh45: 45px;
    --lh24: 24px;
    /*acc*/
    --titleAcc : #2C2A29;
    --borderAcc : #D0D0D0;
    /*acc*/
    --bordergreydark: #707070;
    --inputbck: #fafafa;
    --inputborder: #E8E8E8;

}

body {
    font-family: 'Urban Grotesk LiSe';
}
p {
    color: #2C2A29;
}
p, li {
    font-size: 18px;
}
a {
    cursor: pointer;
}
img{
    max-width: 100%;;
}
/*HTML tags*/
h1,
h2,
h3,
h4 {
    font-weight: var(--semibold);
}

.title-blue {
    color: var(--blue);
}

.title-white, .title-white p {
    color: var(--white);
}

.sep-light{
    border-top: 2px solid var(--lightskyblue) ;
}
/*Body*/
h1 {
    font-size: 54px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

.f20 {
    font-size: 20px;
}
.f22 {
    font-size: 22px;
}
.f32 {
    font-size: 32px;
}
.bold {
    font-weight: bold;
}
p{
    font-size: 18px;
}
/*Body*/
.body1,
.body2,
.body3 {
    font-weight: var(--regular);
}

.body-letter-gray {
    color: var(--lettergray);
}

.body-letter-white {
    color: var(--white);
}

.body1 {
    font-size: 18px;
    line-height: 28px;
}

.body2 {
    font-size: 20px;
    line-height: 30px;
}

.body3 {
    font-size: 22px;
    line-height: 31px;
}
.bck-cover{
    background-size: cover;
}
.arrow-blue-l {
    background: url(img/arrow-blue-l.svg) no-repeat center;
    background-size: auto;
    width: 85px;
    height: 34px;
    background-size: auto 100%;
}

.object-fit img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-50%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        /* Browser bug fix */
        -webkit-transform: translateX(100%);
        /* Browser bug fix */
        transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-50%);
        /* Browser bug fix */
        -webkit-transform: translateX(-50%);
        /* Browser bug fix */
        transform: translateX(-50%);
    }
}


@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.lightbluewhite{
    background-color: var(--lightbluewhite);
}
/*-------Buttons----------*/
button {
    border-radius: 50px;
    padding: 0 40px;
}

.btn {
    border-radius: 50px;
    padding: 17px 25px;
    display: inline-block;
    min-width: 290px;
    font-weight: 600;
}
.btn-width {
    min-width: 150px !important;
}
.btn-blue-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn-blue-to-blue-outline:hover {
    background-color: var(--blue);
    color: var(--white);
}

.btn-blue,
.btn-blue-to-white {
    color: var(--white);
    background: var(--blue);
    border: 2px solid var(--blue);
}

.btn-blue:hover,
.btn-white:hover,
.btn-transp-to-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-white,
.btn-transp-to-white:hover,
.btn-blue-to-white:hover {
    background: var(--white);
    color: var(--blue);
    border: 2px solid var(--white);
}
.btn-download{
    background-image: url(img/Arrow-circle.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
    display: block;
}
.btn-download:hover{
    background-image: url(img/Arrow-circle-blue-hover.png);
}
.btn-blue-to-blue-outline-transparent:hover{
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.border-rd-20 {
    border-radius: 20px;
}
.border-rd {
    border-radius: 40px;
}
.button-arrow {
    text-decoration: none;
    position: relative;
    /* padding-right: 35px; */
    padding-right: 30px;
    font-weight: 600;
    height: 22px;
    display: inline-block;
  }
.button-arrow-center {
    margin: 0 auto;
}

.button-arrow-blue,
.button-arrow--blue:hover {
    color: var(--blue) !important;
}

.button-arrow-white,
.button-arrow-white:hover {
    color: var(--white)
}

.button-arrow-blue::after,
.button-arrow-white::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-size: 100%;
    transform: translateY(-50%);
    right: 0;
    top: 50%;
}

.button-arrow-blue:after {
    background-image: url(img/Arrow-circle.svg);
}

.button-arrow-white::after {
    background-image: url(img/Arrow-circle-white.png);
}

.button-arrow-blue:hover::after {
    background: url(img/Arrow-circle-blue-hover.png);
    background-size: 100%;
}

.button-arrow-white:hover::after {
    background: url(img/Arrow-circle-white-hover.png);
    background-size: 100%;
}

.card {
    border:none;
}

.section-home-stories .card-body .btn-read-more {
    position: absolute;
    bottom: 40px;
}
.icon{
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: 100%;
    background-position: center;
    vertical-align: middle;
}
.icon-time{
    background-image: url(img/time.svg);
    margin-bottom: 4px;
}
.card-description {
    width: 100%;
}

.subtitle-black {
    color: var(--black);
    font-weight: var(--bold);
}
.position-left {
    border-right: 2px solid var(--blue);
    padding: 0 10px 0 0;
    display: inline-block;
    line-height: 100%;
    vertical-align: middle;
}
.term-links a {
    border-left: 2px solid var(--blue);
    padding: 0 5px 0 0;
    display: inline-block;
    margin-bottom: 20px;
}
.term-links a:first-child{
    border: none;
}
.term-links a:nth-child(n+2){
    padding-left: 5px;
}
.term-filter a:first-child {
    padding: 0 5px !important;
}
.position-right {
    padding: 0% 0% 0% 3%;
}
.hover-lightblue:hover {
    color: var(--lightblue);
}
.hover-lightblue-line{
    display: inline-block;
    vertical-align: middle;
    position: relative;

}
.hover-lightblue-line.current,
.hover-lightblue-line:hover{
    color: var(--lightblue);
}
.hover-lightblue-line.current::after,
.hover-lightblue-line:hover::after {
    color: var(--lightblue);
    border-bottom: 3px solid var(--lightblue);
    content: "";
    width: 93%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -10px;
  }
.bck-light {
    background-color: var(--lightskyblue);
}
.bg-lightskyblue {
  background: var(--lightskyblue);
}
.bg-blue{
    background-color:var(--blue-bg);
      height: 100%;
}
.bg-top-blue {
    background-color: var(--blue-bg);
}
.bg-light-blue {
    background: var(--lightblue);
}
.bg-dark-blue {
    background: var(--Navy);
}
/*img*/
.img-mask {
    max-width: 400px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 0 160px;
    display: inline-block;
}
.img-mask-fluid {
    max-width: 480px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 0 160px;
    display: inline-block;
}
.img-mask img,
.img-mask-fluid img {
    object-fit: cover;
    object-position: center;
}
.img-mask-circle{
    max-width: 228px;
    aspect-ratio: 228 / 228;
    overflow: hidden;
    display: inline-block;
}
/*list*/
.ul-marker {
    list-style: none;
}

.ul-marker li {
    padding-left: 20px;
    position: relative;
    padding-bottom: 10px;
    list-style: none;
}

.ul-marker li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--blue);
    display: block;
    border-radius: 100px;
}
.ul-marker-ok li{
    padding-left: 30px;
}
.ul-marker-ok li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 16px;
    height: 17px;
    background: url(img/icon-list.svg) no-repeat center;
    display: block;
    border-radius: 100px;
    background-size: 15px;
}
.box-white-img .box-img{
    background-size: cover;
    background-position: center;
}
/*video*/
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16/9 ratio */
    padding-top: 30px; /* IE6 workaround*/
    height: 0;
    overflow: hidden;
}
    
    .video-responsive iframe,
    .video-responsive object,
    .video-responsive embed, 
    .yt-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.yt-cover {
    background-color: black;
    z-index: 99;
    border: none;
    border-radius: 0;
}

.yt-play-button {
    height: 100px;
    width: 100px;
    background-color: white;
    border-radius: 50px;
}

.play-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 33.3px;
    border-color: transparent transparent transparent var(--lightblue);
    transform: translate(-35%, -50%);
}

/*-----------------*/
/*==========================================================
* TOP BAR
*==========================================================*/
.topbar {
    background-color: var(--lightgreybar) !important;
    font-size: 14px;
}
.navbar-top .navbar-nav__link{
    color: black;
    display: block;
    padding: .3rem 1rem;
    text-decoration: none;
    position: relative;
}
.topbar a::after {
    border-right: 1px solid;
    content: "";
    position: absolute;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.topbar li:last-child a::after {
    border: none;
} 
.topbar li:hover a {
    color: var(--blue);
}
/*==========================================================
* NAVBAR
*==========================================================*/
.contino-brand img {
    width: 200px;
}

.contino-navbar ul {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

.contino-navbar ul a {
    text-decoration: none;
    color: var(--blue);
    display: block;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 16px;
}

.contino-navbar .main-navigation>li {
    padding-right: 20px;
}

.contino-navbar .main-navigation>.menu-item-has-children>a {
    padding-right: 20px;
    background: url(img/drop-down.svg) no-repeat right 16px;
    background-size: auto;
    background-size: 13px auto;
}

.contino-navbar .has-children:hover>a {
    color: var(--lightblue);
}

.main-navigation .has-children ul {
    border: none;
    transition: visibility 0s, opacity 0.4s linear;
}

.main-navigation .has-children:hover ul {
    display: block;
    -webkit-animation: fadeIn 0.4s;
    animation: fadeIn 0.4s;
    width: 260px;
}

.main-navigation .has-children ul a {
    transition: all 0.2s;
    min-height: 34px;
    display: block;
    padding-left: 30px;
    position: relative;
}

.main-navigation .has-children ul a:hover {
    color: var(--lightblue);
}

.main-navigation .dropdown-menu {
    border-radius: 0 0 20px 20px;
    padding-bottom: 20px;
}

.menu-item-1185 a {
    color: white !important;
    border-radius: 50px;
    min-width: 180px;
    padding: 2.5% 2% 2%;
    display: inline-block;
    font-weight: 600;
    background-color: var(--blue);
    text-align: center;
    border: 2px solid var(--blue);
    transition: all 300ms ease-in-out;
}

.menu-item-1185 a:hover {
    background-color: white;
    color: var(--blue) !important;
}

li.wp-social-link {
    font-size: 24px;
}

/*==========================================================
* MAIN
*==========================================================*/
.main {
    min-height: 600px;
}

/*==========================================================
* FOOTER
*==========================================================*/
footer {
    background-color: var(--Navy);
    color: var(--white);
}

footer .menu li {
    padding-bottom: 10px;
}

footer a, footer p {
    color: var(--white);
    text-decoration: none;
    display: block;
    word-break: break-word;
}

footer a:hover {
    text-decoration: underline;
    color: var(--white);
}

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

footer h5 {
    font-size: 14px;
    font-weight: 600;
}

.footer-bar ul {
    display: flex;
    justify-content: center;
    align-content: center;
    list-style: none
}

.footer-bar .menu-company-container a {
    border-right: 1px solid #fff;
    padding: 0px 10px;
    display: block;
    line-height: 18px
}

.footer-bar li:last-child a {
    border-right: none;
}

.footer-area-4 li {
    display: inline-block;
}

.footer-area-4 li:nth-child(2n+1) {
    width: 60%;
}

.footer-area-4 li:nth-child(2n) {
    width: 38%;
}

.footer-area-1 h5,
.footer-area-2 h5,
.footer-area-3 h5,
.footer-area-4 h5 {
    font-size: 16px;
}

.footer-area-1,
.footer-area-2,
.footer-area-3 {
    max-width: 245px;
}
.footer-privacy {
    font-size: 14px;
  }
.footer-privacy a {
    display: inline-block;
    vertical-align: middle;
  }
.btn-header-cta a {
    background: var(--blue);
    color: var(--white) !important;
    border-radius: 20px;
    padding: 5px 13px !important;
    transition: all 0.15s;
    border: 1px solid var(--blue);
}

.btn-header-cta a:hover {
    background: transparent;
    color: var(--blue) !important;
    border: 1px solid var(--blue);
}

.footer .btn-mailing {
    text-decoration: none;
}

.footer .btn-mailing a:hover {
    background-color: var(--white) !important;
    ;
    color: var(--blue) !important;
    text-decoration: none;
    border-color: var(--white)
}
.wp-block-social-link a{
    color: var(--Navy) !important;
}
.wp-social-link-facebook a {
    background: url(img/icon-fb.psvg);
}
.wp-social-link-facebook a svg {
display: none;
}
.wp-social-link-facebook {
background-color: var(--Navy) !important;
}
.wp-social-link-facebook a {
background: url(img/icon-fb.svg) transparent;
width: 36px;
height: 36px;
}

#hbspt-form-9a485b30-b329-4500-a54a-c0101355de14 .hs-form-required {
display: none;
}

.hs-form-9aacf597-4f6e-4063-9363-50fefa456e9b_9a485b30-b329-4500-a54a-c0101355de14 .hs-form-field label:not(.hs-error-msg),
.hs-form-9aacf597-4f6e-4063-9363-50fefa456e9b_9a485b30-b329-4500-a54a-c0101355de14 .hs-button,
.hs-input {
    font-family: 'Urban Grotesk LiSe';
}
.hs-input {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}


/*slick slider*/
.slick .slick-prev::before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(img/arrow-left.svg) no-repeat center;
    display: block;
}

button.slick-prev {
    left: -60px;
}

.slick .slick-next::before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(img/arrow-right.svg) no-repeat center;
    display: block;
}

button.slick-next {
    right: -60px;
}



/*==========================================================
* HOME dev to depure
*==========================================================*/
.banner-home {
    min-height: 751px;
    background-color: var(--Navy);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    width: 100%;
    align-items: center;
    color: white;
}

.banner-home-text {
    text-align: center;
    width: 60%;
}

.banner-home-img {
    width: 40%;
}

.banner-middle {
    display: flex;
    width: 100%;
    align-items: center;
    min-height: 400px;
}

/* .two-home{
  display: flex;
  } */
.caja-icon-text {
    display: flex;
    align-items: center;
}

/* .icono{
    width:20%;
  } */
.icono img {
    width: 70px;
}

.text {
    font-weight: 600;
    color: var(--blue);
}

/*seccion 2 carrusel*/
.carousel-inner {
    min-height: 400px;
}
.carousel-inner.wo-bck {
    background: none;
}
.bck-contact-bottom .carousel-item {
    min-height: 30vh;
}
.carousel-item {
    text-align: center;
    vertical-align: middle !important;
    color: white;
}

h3.text-slider {
    width: 44%;
    margin: 0 auto;
}

.contact-form h3.text-slider {
    width: 90%;
}

.p-b {
    padding-bottom: 50px;
}

.p-t {
    padding-top: 50px;
}

/*card home*/
.card-home {
    background: var(--lightskyblue);
    /* height: 753px; */
    display: flex;
    justify-content: center;
}

.card-width {
    width: 55%;
}

/*home stories*/
.section-home-stories img.card-img-top {
    height: 320px;
    object-fit: cover;
}

.section-home-stories .card {
    min-height: 660px;
    overflow: hidden;
    margin: 0 auto;

}

.section-home-stories .card-body {
    background-color: var(--lightskyblue);
    position: relative;
    padding: 1rem 2rem 50px 1rem;
}

.slick div.card {
    width: 90%;
}

.storie-card-detail img {
    object-fit: cover;
    height: 280px;
    width: 100%;
}

/*banner video*/
.container-video {
    max-width: 1365px;
    display: flex;
    align-items: center;
    justify-content: center !IMPORTANT;
    margin: 0 auto;
}

.card-text-img {
    background: var(--lightskyblue);
    /* min-height: 750px; */
}

/* .card-text-img h3 {
    border-bottom: 1px solid;
    padding: 25px;
} */

/* .card-white {
    width: 600px;
} */


.banner-left {
    min-height: 530px !important;
    display: flex;
    width: 100%;
    align-items: center;
}

.banner-home-img {
    width: 40%;

}

.banner-home-img img {
    right: 0;
    position: relative;
}

.carrusel-contino {
    overflow: hidden;
}

.carrusel-contino-scroll {
    -webkit-animation: scroll-left 40s linear infinite; 
    animation: scroll-left 40s linear infinite;
    display: flex;
    min-width: 80vw;
}

.carousel-dark .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230033A0'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    filter: none !important;
  }
  .carousel-dark  .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230033A0'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: none !important;
  }
/*==========================================================
* CHART
*==========================================================*/

.banner-footer-blue {
    height: 394px !important;
    background: url(http://mycontino.pacecreative.ca/app/uploads/2023/05/banner-background-footer-scaled.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    width: 100%;
    align-items: center;

}
.chart-head > div{
    padding: 0 20px;
}
.chart-head h4 {
    margin: 0;
    font-weight: normal;
    padding: 3px 20px;
}
.chart-content h4 {
    padding: 15px 30px;
    border-bottom: 1px solid var(--lineborder);
    min-height: 91px;
    margin: 0;
}
.chart-content ul {
    list-style: none;
    padding: 20px 30px 0;
}
.chart-content li {
    list-style: none;
    padding: 0 0 20px;
}
.diagonales {
    background: #4FD1EB;
    position: relative;
    color: var(--white);
}
.diagonales-oscuro {
    background: #004AAB;
    clip-path: polygon(95% 0px, 98.08% 50.00%, 95% 100%, 0px 100%, 3.36% 50%, 0px 0px);
    color: var(--white);
    position: relative;
    transform: translateX(-8%);
    z-index: 100;
    width: 120%;
  }


.diagonales-azul {
  
    background: var(--Navy);
    color: white;
}

.Medical{
  padding: 0 !important;
}
.linea::before {
    content: "";
    width: 90%;
    background: var(--lightgrey);
    height: 2px;
    display: block;
    position: relative;
    top: 17px;
    left: 54px;
}
h4.severity{
    background-color: white;
    z-index: 6;
    position: relative;
    width: 31%;
    transform: translateX(103%);
}
/*==========================================================
* CONTACT
*==========================================================*/
.bck-contact{
    background: url(img/bck-contact-top.jpg) no-repeat top var(--bckblue);
    background-size: 100% auto;
}
.bck-contact-bottom{
    background: url(img/bck-contact-bottom.jpg?v1) no-repeat top var(--bckblue);
    background-size: cover; 
}
.form-contact form {
    background-color: var(--skyblue);
    border-radius: 50px;
    padding: 50px 90px;
    max-width: 600px;
    box-sizing: border-box;
    margin: 0 auto;
  }
.form-contact input[type="email"],
.form-contact input[type="text"],
.form-contact input[type="tel"],
.form-contact input[type="password"],
.form-contact textarea{
    border: 1px solid var(--white);
    background: var(--white);
    border-radius: 10px;
    width: 100%;
    padding: 3px 5px;
    height: 40px;
}
.form-contact textarea{
    height: 128px;
    resize: none;
}
ul.contact {
    padding-left: 1rem;
}
.form-contact label,
.form-contact label > span,
.form-contact span.wpcf7-form-control-wrap{
    display: block;
    padding-bottom: 0.5rem;
}
.form-contact label {
    color: var(--blue);
}
.form-contact .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -9px;
    font-size: 12px;
}
.form-contact input[type="submit"] {
    width: 100% !important;
    min-width: 100%;
    display: block !important;
    max-width: 100%;
    margin-top: 30px;
}
.wpcf7-submit:hover {
    background-color: var(--blue);
}
/*==========================================================
* XXXXXXXXXX
*==========================================================*/
.slider-trainers .card{
    width: 93%;
    margin: 0 auto;
    overflow: hidden;
}
.slider-trainers .card-body {
    padding: 1rem 2rem;
}
.slider-trainers .slick-dots li button::before {
    content: "";
    background-color: var(--blue);
    width: 13px;
    height: 13px;
    border-radius: 100px;
}
.compare-table .cell-compare {
    min-height: 30px;
    margin: 0;
    padding: 18px 12px;
  }
  .compare-table .cell-compare1 {
    min-height: 92px;
  }
  .compare-table .cell-compare2 {
    min-height: 92px;
  }
  .compare-table .cell-compare3 {
    min-height: 55px;
  }
  .compare-table .cell-compare4 {
    min-height: 82px;
  }
.compare-table .border-bottom{
    border-color: var(--lineborder) !important;
}


/*==========================================================
* integrated solution
*==========================================================*/
.integrated-solution .arrow-blue-l {
    position: relative;
    top: 35%;
}
.provider-resources .card img {
    width: 50%;
}
.provider-resources .card {
    min-height: 560px;
    overflow: hidden;
    width: 100% !important;
}
/*=========================================================
* WHY CONTINO
*==========================================================*/
.li-check {
    display: block;
    background-image: url(img/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    margin: 0 auto;
}
.li-uncheck {
    display: block;
    background-image: url(img/uncheck.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    margin: 0 auto;
  }
.img-min img{
    width: 92px;
}  
  

  
.sucess-stories .card-description {
    min-height: 130px;
}
.sucess-stories .card{
    overflow: hidden;
}

/*=========================================================
* BLOG
*==========================================================*/
.blog .section-home-stories .card {
    width: 100% !important;
  }
.banner-blue-blog{
    background: url(img/blog-bck.jpg);
}
.lastpost .img {
    width: 100%;
    overflow: hidden;
    border-radius: 40px;
}
.lastpost .img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.grid-blog .readmore,
.card .btn-read-more{
    position: absolute;
    bottom: 30px;
}
.paginator{
    padding-top: 50px;
}

.paginator a,
.paginator span {
    text-decoration: none;
    color: var(--blue);
    padding: 5px 7px;
    font-weight: 600;
    margin: 0 2rem;
    display: inline-block;
    vertical-align: middle;
    height: 26px;
    line-height: 20px;
}
.paginator span.current {
    background-color: var(--lightblue);
    color: var(--white);
    border-radius: 9px;    
  } 
.incontinence-treatments > div:nth-child(odd){
    background-color: var(--lightgreycolumn);
}
.incontinence-treatments > div:nth-child(even){
    background-color: var(--lightgreycolumndark);
}
.blog .card-title a{
    text-decoration: none;
    color: inherit;
}
.blog-content h1, 
.blog-content h2, 
.blog-content h3, 
.blog-content h4, 
.blog-content h5{
    color: var(--blue);
} 
.icon-share {
    display: inline-block;
    width: 38px;
    height: 38px;
    vertical-align: middle;
    background-position: center;
    background-size: 100%;
    border-radius: 50px;
}

.icon-share:hover {
    background-color: var(--lightskyblue) !important;
}

.icon-facebook{
    background-image: url(img/FB-Icon.svg);
}
.icon-twitter{
    background-image: url(img/Tweeter-Icon.svg);
}
.icon-linkedin{
    background-image: url(img/LinkedIn-Icon.svg);
}
.icon-location {
    background-image: url(img/Location.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left;
    margin-right: 5px;
  }

.blog-tags a{
    color: var(--tags);
    font-weight: normal;
}

.blog-tags a:hover {
    color: var(--blue);
}

.comment-form{
    position: relative;
    padding-left: 70px;
}
.comment-form-comment label,
.comment-form-author label,
.comment-form-author label,
.comment-form-email label{
    display: none;
}
.comment-form input[type="text"], 
.comment-form input[type="email"], 
.comment-form textarea {
    display: block;
    width: 100%;
    background-color: var(--inputbck);
    border: 1px solid var(--inputborder);
    font-size: 13px;
    padding: 10px 10px;
    height: 35px;
    resize: none;
  }
  .comment-form p {
    margin-bottom: 10px;
  }
  .comment-form-author {
    display: inline-block;
    width: 48%;
    margin-right: 1%;
  }
  .comment-form-email {
    display: inline-block;
    width: 50%;
  }
.comment-form-cookies-consent{
    display: flex;
}
.comment-form-cookies-consent label{
    font-size: 12px;
}
.comment-form-cookies-consent input{
    margin-right: 10px;
}
.comment-form .form-submit .submit {
    background: var(--blue);
    padding: 15px 40px;
    border-radius: 50px;
    color: var(--white);
    border: none
  }
.related-post a{
    text-decoration: none;
    color: inherit;
}

.related-post a:hover {
    color: var(--blue);
}

.comment-reply-title{
    border-bottom: 1px solid var(--borderAcc);
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.comment-respond{
    position: relative;
}
.comment-form:before{
    content: "";
    display: block;
    position: absolute;
    width: 52px;
    height: 52px;
    background-image: url(img/profile-commets.svg);
    background-size: 100%;
    left:0
}
/*=========================================================
* FINE PRINT PAGES
*==========================================================*/
.banner-blue-blog a {
    color: white;
}

.breadcrumbs-page p {
    color: var(--blue);
    font-weight: 600;
}

.breadcrumbs-page p a {
    color: var(--lightblue);
    font-weight: 600;
}

.breadcrumbs-page p a:hover {
    color: var(--blue);
}

.fine-print-card {
    background-color: var(--lightskyblue);
    border-radius: 30px;
}

a.fine-print-card {
    width: 30%;
    height: 18vw;
    color: var(--blue);
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 300ms ease-in-out;
}

div.fine-print-card {
    padding: 5% 2%;
    width: 30%;
}

a.fine-print-card:hover, a.fine-print-card:focus {
    border: 2px solid var(--blue);
}

a.fine-print-card img {
    width: 35%;
}

.h-line {
    height: 2px;
    background-color: var(--blue);
}

.return-instructions, .return-instructions img {
    height: 60px;
    color: var(--blue);
}

.sw-diagonal-round {
    border-radius: 0 50px 0 50px;
}

.return-title, .legal-title {
    color: var(--blue);
}

ol.legal-list-level-one {
    list-style-type: upper-roman;
    font-size: 18px;
}

ol.legal-list-level-two {
    list-style-type: upper-alpha;
}

.legal-content p, .legal-content ol, ol.legal-list-level-one li, ol.legal-list-level-two li {
    padding-bottom: 1%;
}

ol.legal-list-level-one ::marker, ol.legal-list-level-two ::marker {
    color: var(--blue);
    font-weight: 600;
}

.legal-docs h4 {
    font-size: 22px;
}
/*=========================================================
* 404 NOT FOUND
*==========================================================*/

.page-not-found {
    background-color: var(--lightskyblue);
    background-image: url(img/404-background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    width: 100vw;
}

.page-not-found h3, .page-not-found h1 {
    color: var(--blue);
}

.page-not-found h1 {
    font-size: 12vw;
}

.page-not-found a {
    color: white;
    text-decoration: none;
    background-color: var(--blue);
    border: 1px solid transparent;
}

.page-not-found a:hover, .page-not-found a:focus {
    border-color: var(--blue);
    color: var(--blue);
    background-color: var(--lightskyblue);
}
.bladder-leakage {
    margin-bottom: 13rem !important;
  }
.bladder-leakage img.card-img-top{
    height: 208px;
}
.bladder-leakage .card{
    min-height: 600px;
}
/*=========================================================
* DOWNLOADS
*==========================================================*/
.section-download-cards .img{  
    max-width: 218px;
    margin: auto;
}
.section-download-cards .content{
    min-height: 200px;
}
.section-download-cards h4{
    font-size: 22px;
}
/*=========================================================
* accordion
*==========================================================*/
.accordion-button {
    background: transparent !important;
    color: var(--titleAcc) !important;
    font-weight: 600;
}
.accordion-item:first-of-type .accordion-button {
    border: none !important;
    box-shadow: none;
}
.accordion .accordion-item{
    border:none;
    border-bottom: 1px solid var(--borderAcc);
}
button:focus:not(:focus-visible) {
    outline: 0;
    border: none;
    box-shadow: none;
  }
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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-.708z'/%3e%3c/svg%3e");
    background-color: var(--lightblue);
    border-radius: 100px;
    padding: 16px;
    background-position: center;
}

.resp-step-card { 
    width:  32%;
}

.step-card {
    padding: 5% 4% 10% 4%;
    height: 450px;
    border-radius: 30px;
}
@media (max-width: 1200px) {
    .resp-step-card {
        width: 100%;
    }
}


.card-hover {
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.card-hover:hover {
    opacity: 1;
}

.card-hover:hover {
    opacity: 1;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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-.708z'/%3e%3c/svg%3e");
    background-color: var(--blue);
    border-radius: 100px;
    padding: 16px;
    background-position: center;
}

/*=========================================================
* pres-release
*==========================================================*/

.pres-release .row{
    border-bottom:1px solid var(--bordergreydark);
}
.tag-time {
    border-color: var(--blue) !important;
    border-width: 2px !important;
  }

/*=========================================================
* Nurse
*==========================================================*/
  .title-position {
    color: var(--blue);
    font-style: italic;
    margin: 0;
  }
  .modal-nurses .modal-header {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 0;
  }

/*
===============================================================================================
===============================================================================================
===============================================================================================
===============================================================================================
===============================================================================================
===============================================================================================
===============================================================================================
RESPONSIVE
===============================================================================================
===============================================================================================
===============================================================================================
===============================================================================================
===============================================================================================
===============================================================================================
===============================================================================================
===============================================================================================
*/

@media only screen and (max-width: 1480px){
    .banner-home {
        min-height: 600px;
    }
}

@media only screen and (max-width: 1399px){
    .contino-navbar ul a{
        padding: 5px 0;
    }
    .contino-navbar .main-navigation > li {
        padding-right: 0px;
      }
}
@media only screen and (max-width: 1353px){
    .footer-area-4 li:nth-child(2n+1) {
        width: 50%;
      }
      .footer-area-4 li:nth-child(2n) {
        width: 48%;
      }

}
@media only screen and (max-width: 1293px){
    .footer-area-4 li:nth-child(2n+1),
    .footer-area-4 li:nth-child(2n) {
        width: 100%;
    }
    .banner-home {
        min-height: 450px;
    }


}
@media only screen and (max-width: 1200px){
    h1 {
        font-size: 45px;
      }
      h2 {
        font-size: 30px;
      }
      h3 {
        font-size: 25px;
    }
    
    h4 {
        font-size: 18px;
    }
    .section-home-stories .card {
        min-height: 550px;
    }
    .banner-home {
        min-height: 550px;
    }


    
}

@media only screen and (max-width: 1199px){
    .compare-table .overflow-x-scroll  {
        max-width:768px;
    overflow-x:scroll;
    }
    .compare-table .width-responsive{
        width:190px;
    }
    .compare-table .col {
        flex: none;
    }
    .compare-table .responsive-width{
    width:25%;  
    }
    .compare-table .responsive-width-scroll{
    width:75%;  
   }
   .compare-table .responsive-width-title{
   width:100%;  
   }
}

@media only screen and (max-width: 991px){
    .footer .container {
        max-width: 100%;
      }
}
@media only screen and (min-width: 768px){
    .list.list-stack-up {
        display:table;
        width:100%;
      }
      .list.list-stack-up ul {
        display:table-row;
      }
      
      .list.list-stack-up ul:first-child li {
        color:var(--blue);
        font-weight: 600;
        vertical-align: middle;
      }
      .list.list-stack-up ul > li {
        display:table-cell;
      }
      .list.list-stack-up ul > li:not(:first-child){
        padding:.5em 1em;
        text-align: center
      }
       .list.list-stack-up ul:not(:last-child):not(:first-child) > li{
         border-bottom: 1px solid var(--lightgrey);
      }
      .list-stack-up li.title-list {
        min-width: 290px;
    }  
    .list-stack-up .cost{
        color: var(--lettergray);
        font-weight: var(--semibold);
      }
     .list.list-stack-up:hover ul li:nth-child(2){
      background: var(--grayhover);
    }

}

@media only screen and (max-width: 768px){
    .wp-block-social-links.wp-container-2 {
        justify-content: center;
    }
    .img-sm-width-price {
        margin: 30px auto;
        max-width: 300px;
        display: block;
    }
    .footer-area-7 .wp-block-buttons {
        flex-direction: column;
    }
    .footer-area-8 {
        display: flex;
        justify-content: center;
    }
    .arrow-blue-l {
        transform: translateX(-20%);
    }
    a.fine-print-card, div.fine-print-card {
        width: 90%;
        height: auto;
    }
}



  /* small */
@media screen and (max-width:767px) {
    .list.list-stack-up ul {
        border:solid 1px #ccc;
        display:block;
        list-style:none;
        margin:1em;
        padding:.5em 1em;
    }
    .list.list-stack-up ul:first-child {
        display:none;
    }
    .list.list-stack-up ul > li {
        display:block;
        padding:.25em 0;
    }
    .list.list-stack-up ul > li:first-child {
        display: flex;
        justify-content: center;
    }
    .list.list-stack-up ul:nth-child(odd) > li + li {
        border-top:solid 1px #ccc;
    }
    .list.list-stack-up ul:nth-child(even) > li + li {
        border-top:solid 1px #eee;
    }
    .list.list-stack-up ul > li:not(:first-child):before {
        color:var(--black);
        content:attr(data-label);
        display:inline-block;
        font-size:75%;
        font-weight:600;
        text-transform:capitalize;
        vertical-align:top;
        width:50%;
    }

    .footer-area .menu-company-container ul {
        flex-direction: column;
        text-align: center;
    }

    .footer-area .menu-company-container ul a {
        border: none;
    }
    .navbar-nav.navbar-top {
        flex-direction: column;
    }
    .navbar-nav.navbar-top li a::after {
        border: none;
    }
    .navbar-nav.navbar-top .navbar-nav__link{
        padding: 1% 0;
    }
    .form-contact form {
        padding: 5%;
        border-radius: 30px;
    }

}



@media screen and (max-width:480px) {
    .banner-home {
        background-position: left;
    }
    .banner-left {
        background-position: 65% center;
    }
    .navbar-top .navbar-nav__link {
        padding: .5rem 10px;
    }

}

.provider_row--img {
    width: 32% !important;
}
@media (max-width: 800px) {
    .provider_row--img {
        width: 100% !important;
    }
}

.provider_row--content {
    width: 66% !important;
}

@media (max-width: 800px) {
    .provider_row--content {
        width: 100% !important;
        padding-top: 24px;
        text-align: center;
    }
}

.history-timeline .wrapper {
    height: 943px;
    width: 70%;
    overflow: auto;
    position: relative;
    display: flex;
    margin: 0 auto;
    overflow-y: hidden;
}

@media (max-width: 1790px) {
    .history-timeline .wrapper {
        height: 743px;
    }
}

@media (max-width: 1540px) {
    .history-timeline .wrapper {
        height: 643px;
    }
}

@media (max-width: 1304px) {
    .history-timeline .wrapper {
        height: 523px;
    }
}

@media (max-width: 1080px) {
    .history-timeline .wrapper {
        height: 493px;
        width: 90%;
    }
}

@media (max-width: 800px) {
    .history-timeline .wrapper {
        height: 390px;
    }
}

.history-timeline .middle {
    height: 100%;
    width: 80%;
    float: left;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.history-timeline .middleInner {
    display: inline-block;
}

.history-timeline .middleInner img {
    width: 3000px;
    display: block;
    position: absolute;
    right: -440px;
    transform: scale(1.7);
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    top: 20%;
}

@media (max-width: 1790px) {
    .history-timeline .middleInner img {
        right: -340px;
    }
}

@media (max-width: 1540px) {
    .history-timeline .middleInner img {
        right: -270px;
    }
}

@media (max-width: 1304px) {
    .history-timeline .middleInner img {
        right: -200px;
    }
}

@media (max-width: 1080px) {
    .history-timeline .middleInner img {
        right: -250px;
    }
}

@media (max-width: 800px) {
    .history-timeline .middleInner img {
        height: auto;
        right: -430px;
        width: 900px !important;
        transform: scale(3.7);
    }
}

.history-timeline .wrapper::-webkit-scrollbar {
    width: 10px;
    background-color: #e0e0e0 !important;
    /* Grey background color */
    background-color: #e0e0e0;
    border: #e0e0e0;
    height: 8px;
    box-shadow: none !important;
}

.history-timeline .wrapper::-webkit-scrollbar-thumb {
    background-color: #0033a0;
    /* Blue scroll color */
    height: 8px;
    box-shadow: none !important;
}

.vid-card {
    width: 30%;
}
.resp-step-card img.card-top-img {
    width: 25%;
}

@media (max-width: 768px) {
    .vid-card {
        width: 100%;
        margin-bottom: 5%;
    }
    .resp-step-card img.card-top-img {
        width:60%;
    }
}


