@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}


body {
  background: #ffffff;
  /* background: #141c26; */
  color: var(--grey);
  padding-top: 0px;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
  font-smoothing: antialiased;
  overflow-x: hidden;
}

:root {
  --white: #ffffff;
  --blue: #0f2754;
  --light-blue: #008ec9;
  --dark-grey: #1b1f2e;
  --grey: #54595f;
  --light-grey: #e9e9e9;
  --black:#474444;
}



button:focus {outline:0;}
.dropdown-idioma {
	cursor: pointer;
}
strong, .strong, b {
  font-family: "Roboto", sans-serif; font-weight: 700}


h1 {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  letter-spacing: -1px;
  text-align: center;
  line-height: .9;

}


h2 {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

h2 span {
  font-size: 1rem;
  color: var(--blue);
  display: block;
  margin-bottom: .5rem;
}


h3 {
  color: var(--dark-grey);
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 0.5rem;

}


h4 {
  color: var(--dark-grey);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.1;

}
a {
  color: var(--grey);
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: var(--light-blue);
  text-decoration: none;
}

a.btn {
  color: var(--white);
  background: var(--light-blue);
  text-decoration: none;
  display: inline-flex;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 35px 9px;
  border-radius: 8px;
  border: none;
  margin: 10px auto ;
}

a.btn:hover, a.btn:focus, a.btn:active {
  color: var(--white);
  background: var(--blue);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

a.btn-w {
  color: var(--blue);
  background: var(--white);
  text-decoration: none;
  display: inline-flex;
  text-align: center;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 5px;
  margin: 10px auto ;
}

a.btn-w:hover, a.btn-w:focus, a.btn-w:active {
  color: var(--white);
  background: var(--dark-grey);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn {
  font-size: .875rem;
  color: var(--white);
  background: #007afc;
  border-color: #007afc;
  text-decoration: none;
  display: inline-flex;
  text-align: center;
  font-weight: 600;
  padding: 9px 30px;
  border-radius: 5px;
}

.home .btn {
  border-radius: 25px;
}

.btn:hover, .btn:focus, .btn:active {
  color: var(--white);
  background: var(--blue);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.home .btn:hover, .home .btn:focus, .home .btn:active {
  color: var(--blue);
  background:var(--light-grey) !important;
}


p {
  font-family: "Roboto", sans-serif;
  line-height: 1.5
}

p.lead {  font-size: 1.5rem; color: var(--blue); font-weight: 400; }

.text-white { color: var(--white);}
.text-blue { color: var(--blue);}
.bg-blue { background-color: var(--blue);}
.bg-radial-blue {
  background-image: radial-gradient(
    farthest-corner at 10px 500px,
    #074fa4 0%,
    var(--blue) 40%
  );
}
.bg-gray { background: #dadce0; }
.border-radius { border-radius: 11px;}

.img-center {display: block; margin: 0 auto;}



/* === +++ === +++ === +++ === +++ === +++  */
/* === +++ === +++ === +++ === +++ === +++  */

.mainlogo {
  background: url(../img/logo-cln.svg) center center no-repeat;

  width: 200px;
  height: 50px;
}


nav {
  font-size: 1rem;
}

nav a {
  font-weight: 600;
  letter-spacing: -.5px;
  color: var(--grey) !important;
  background: rgba(211, 19, 51, 0);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  color: var(--blue) !important;
  padding: 15px 30px !important;
}

nav a:hover,
nav a.active {
  color: var(--blue) !important;
  background: transparent;
}
/* nav highlight animado */
nav li {
  display: inline-block;
  position: relative;
}

.nav-link.active {
  display: block;
  color: var(--blue) !important;
  background-color: var(--light-grey) !important;
  border-radius: 30px;
}




.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-toggler {
  color: var(--white);
  border-color: rgba(0, 0, 0, 0);
  background: transparent;
  border-radius: 0;

  right: 15px;
}

.nav-link {
  padding: 0 1rem;
  margin: 0 1rem;
}

.fixed-top.scrolled {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.navbar {
  background: #fff;
}

.navbar-light .navbar-toggler {
  color: var(--blue);
  border-color: rgba(0, 0, 0,0);
}

.fixed-top.scrolled {
  transition: background-color 200ms linear;
}

.navbar-gradient {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 50px;
  background: rgb(10, 13, 29);
  background: linear-gradient(180deg, rgba(10, 13, 29, 0.8) 0%, rgba(10, 13, 29, 0.6) 20%, rgba(10, 13, 29, 0.4) 40%, rgba(10, 13, 29, 0.2) 60%, rgba(10, 13, 29, 0.1) 79%, rgba(10, 13, 29, 0) 100%);
}

.navbar-brand img {
  height: 90px;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: flex-end;
  }
}










  .header {
    position: relative;
    background: url(../img/home/slider-1-d.jpg) no-repeat center white;
    background-size: cover;
    height: 600px;
    width: 100%;
    overflow: hidden;
    align-items: center;
  }


  .header.nosotros {
    position: relative;
    background: url(../img/nosotros/nosotros-d.jpg) no-repeat center top ;
    background-size: cover;
    height: 600px;
    width: 100%;
    overflow: hidden;
    align-items: center;
  }

  .header.soluciones {
    position: relative;
    background: url(../img/soluciones/soluciones-d.jpg) no-repeat center top ;
    background-size: cover;
    height: 600px;
    width: 100%;
    overflow: hidden;
    align-items: center;
  }
  .header.clientes {
    position: relative;
    background: url(../img/clientes/clientes-d.jpg) no-repeat center top ;
    background-size: cover;
    height: 600px;
    width: 100%;
  overflow: hidden;
  align-items: center;
  }
  .header.contacto {
    position: relative;
    background: url(../img/contacto/contacto-d.jpg) no-repeat center top ;
    background-size: cover;
    height: 600px;
    width: 100%;
    overflow: hidden;
    align-items: center;
  }
  .header.success {
    position: relative;
    background: url(../img/success.jpg) no-repeat center top ;
    background-size: cover;
    height: 600px;
    width: 100%;
  overflow: hidden;
  align-items: center;
  }
  .header.calculadora {
    position: relative;
    background: url(../img/calculadora-d.jpg) no-repeat center top ;
    background-size: cover;
    height: 600px;
    width: 100%;
    overflow: hidden;
    align-items: center;
  }


 .header .container {    z-index: 2;}
 .header  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(15,39,82,1) 0%, rgba(0,122,252,0) 100%);
    opacity: 0.75;
    margin: 0;
    z-index: 1;
  }

  .header .post-heading {
    text-align: left;
    display: block;
    max-width: 100%;
    z-index: 99;
    margin-bottom: 15px;
  }

  .header .post-heading h1.main-title {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    color: #fff;
    padding: 0;
    display: inline;
  }

  .header .post-heading h1.main-title.sub {
    position: relative;
    top: 6px;
  }

  .header h2 {font-size: 1.5rem;line-height: 1.4; font-weight: 400;}








/* === +++ === +++ === +++ === +++ === +++  */
/* === +++ === +++ MOOD ONE === +++ === +++ === +++  */




/* owl carousel*/


.owl-carousel .owl-stage-outer {
  padding: 0;
}

.owl-carousel a picture {
  display: block; margin-bottom: 1rem;overflow: hidden; object-fit: cover;width: 100%;
  height: 220px;
  max-width: 320px;}

.owl-carousel a picture img {  transition: transform 1s ease; }


.owl-carousel a:hover picture img {  transform: scale(1.05);}




.owl-carousel a span {color: var(--blue); font-size: 1rem; display: block; font-weight: 700; margin-top: .5rem; }
.owl-carousel a span i{ background: url(../img/flecha.svg) center center no-repeat;width: 30px; height: 15px; display: inline-block; position: relative; bottom: -2px;}


.owl-carousel a {
  color: var(--dark-grey);
  font-size: 1.5rem;
  line-height: 1.2;
  text-decoration: none;
  display: inline-block;
  text-align: left;
  background: transparent;
  padding: 0;
  border-radius: 5px;
}



.owl-carousel a:hover, .owl-carousel a:focus, .owl-carousel a:active {
  color: var(--black);

  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.owl-carousel a:hover span i{
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  margin-left: 5px;

}


a .arrow {
  width: 10%;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  bottom: 5px;
}

a:hover .arrow {
  width: 13%;
}


.arrow{
  margin-top: 1em;
  margin-right: 2em;
  border: 1px solid var(--blue);
  position: relative;
  background: var(--blue);
  left: 5px;
}

.arrow .head,
.arrow .head:after {
  border: 1px solid var(--blue);

  width: 8px;
  position: absolute;
  right: -4px;
  top: 1px;
  transform: rotate(-45deg);
}

.arrow .head:after {
  content: "";
  border-color: var(--blue);
  right: -4px;
  top: -4px;
  transform: rotate(90deg);
}


.owl-theme .owl-nav {

  width: 100px;
  position: relative;
  margin: 0 auto;

  height: 45px;
}


.owl-prev {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0;
  margin-left: 0 !important;
  display: block !IMPORTANT;
  border: 0px solid black;
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -ms-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  opacity: 1
}

.owl-next {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0;
  right: 0;
  display: block !IMPORTANT;
  border: 0px solid black;
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -ms-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  opacity: 1
}

.owl-next:hover,
.owl-prev:hover {
  opacity: .5
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent !important;
  color: #FFF;
  text-decoration: none
}

.owl-prev i,
.owl-next i {
  transform: scale(1, 6);
  color: #ccc
}
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot
{
display:inline-block;
  zoom:1;
  margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span
{
width:10px;
height:10px;
margin:5px 7px;
background:#D6D6D6;
display:block;
-webkit-backface-visibility:visible;
transition:opacity .2s ease;
border-radius:30px
}

.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span
{
background:#869791
}







/* owl carousel*/


.accordion {
  --bs-accordion-color: #212529;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 0px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #212529;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%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");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%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);
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #fff;
  --bs-accordion-active-bg: #e7f1ff;
}
.accordion-body {
  padding: 1.5rem;
}
.accordion img {display: block; margin: 0 auto;max-width: 100%;
  height: auto;}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/menos.svg) ;transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-item {
  color: var(--grey);
  background-color: var(--white);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--grey);
  box-shadow: transparent;
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--dark-grey);
  text-align: left;
  font-weight: 700;
  background-color: var(--light-grey);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}


.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  border-top-color: ;
  border-right-color: ;
  border-bottom-color: ;
  border-left-color: ;
  outline: 0;
  box-shadow: transparent;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
  content: "";
  background: var(--light-blue);
  border-radius: 50%;
  background-image: url(../img/mas.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: transform .2s ease-in-out;
}
*, ::after, ::before {
  box-sizing: border-box;
}


.radius-top {

  border-top-left-radius: 15px !important;
  border-top-right-radius: 15px !important;


}

.radius-bottom {

  border-bottom-left-radius: 15px !important;
  border-bottom-right-radius: 15px !important;


}

.home-lead {

  display: flex;
  flex-direction: column;
  justify-content: center;
}





.spacer {height: 60px;}

section.content {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

picture.right {
  overflow: hidden;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 40px;
  display: flex;
  width: 50%;
  height: 300px;
  border-radius: 20px 0 0 20px;
}

  picture.left {
    background: red;
    overflow: hidden;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 40px;
    display: flex;
    width: 50%;
    height: 300px;
    border-radius: 0 20px 20px 0;
  }

   picture img {
      width: 100%;
      object-fit: cover;
    }




/* form */


.form-label {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5;
}
.form-select {

  line-height: 2.5;

}


/* banner */


  .card-link a picture {
    display: block;
    margin-bottom: 1rem;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 320px;
  margin-bottom: 2rem;}



     .card-link a picture img {  transition: transform 1s ease;

      max-width: 100%;
      height: auto;
    }


     .card-link a:hover picture img {  transform: scale(1.05);}



.card-link a:hover h2, .card-link a:focus h2, .card-link a:active h2 {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  color: var(--grey);
}



.banner {
  background: url(../img/banner.jpg) center center no-repeat;
  background-size: cover;
  position: relative;

}


.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  mix-blend-mode: multiply;
  background: rgba(0,142,201,1);
  margin: 0;
  z-index: 1;
}


.banner h2 {color: var(--white);}
.banner h2 span {color: var(--white);}

.z99 {  z-index: 99;}




.banner-calculadora {border: 2px solid var(--light-blue);
border-radius: 15px;
padding: 2rem 2rem;
margin-bottom: 3rem;

}

.banner-calculadora img {max-width: 110px; margin-bottom: 1rem;}

.banner-calculadora h3 {

  font-size: 1.5rem;
  line-height: 1.5;
}


/* ==========================================================================
   Footer Style
   ========================================================================== */


   footer {
    background:#eaeaea;
    padding: 3rem 0;
   }
   footer .footer-content {

    padding: 100px 0 ;
   }


  .textwidget {
    line-height: 24px;
    margin-bottom: 10px;
  }

  footer  p {
    font-size: 1rem;
    color: var(--grey);
    margin-bottom: 5px;
  }

  footer  p b {
color: var(--dark-grey);
  }


  footer .menu {
    padding-left: 0;
  }

  footer .menu li {
    display:inline-block;
    margin-right:20px;
    margin-bottom: 1rem;
  }

  footer .menu li a {
    color: var(--dark-grey);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
  }

  footer img.logo {
    height: 90px;
    margin-bottom: 2rem;
  }

  .footer-social {
  float: right;
      margin-bottom: 15px;
  }

  .footer-social li {
    display: inline-block;
    margin-right: 15px;
  }

  .footer-social li a {
    color: var(--dark-grey);
    font-size: 18px;
    display: inline-block;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }

  .footer-social li a:hover,
  footer .menu li a:hover {
    color: var(--light-blue);
  }

  p.copy  {
    font-size:0.75rem;
    color: var(--grey);
  }

  .btn-outline-secondary {
    color: #fff;
    background-color: var(--light-blue);
    border-color: var(--light-blue);
}


  .btn-outline-secondary:hover {
    color: #fff;
    background-color: var(--blue);
    border-color: var(--blue);
}


  ul {
    margin: 0;
    padding: 0;
  }

  ul li {
    list-style: none;
  }





 footer .form-control {
    border: 0px solid #ced4da;
    line-height: 2;
    margin-top: 1rem;
  }
  footer button.btn {
    margin-top: 1rem;
    line-height: 2 !important;
  }

  .text-left {
    text-align: left;
  }

  .profesionalidad h1 {
    font-size: 2rem;
  }

  .profesionalidad h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
  }

  .profesionalidad p {
    font-weight: 400;
    font-size: 1rem;
  }

  .prof-box {
    margin-bottom: 5%;
  }

  .prof-box div {
    border: 1px solid #008ec9;
    border-radius: 6px;
    margin: 0 2%;
    padding: 20px 30px;
    height: 100%;
  }

  .prof-box img {
    width: 60px;
    margin-bottom: 10px;
  }

  .clients-list img {
    border-radius: 5px;
    margin: 0 5px 19px;
  }

  .modal-header {
    border: none;
  }

  .modal-body h5 {
    margin: 0 0 20px;
    line-height: 120%;
    font-weight: 600;
    color: var(--blue);
  }

  .modal-body .btn-close {
    right: 30px;
  }

  .modal-content {
    border-radius: 20px;
  }

  .modal-content li,
  .list-default li {
    position: relative;
    font-size: .875rem;
    line-height: 140%;
    margin-bottom: 5px;
    padding-left: 16px;
  }

  .modal-content li::after,
  .list-default li::after {
    display: block;
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: #008ec9;
    top: 7px;
    left: 0;
    border-radius: 100%;
  }

  .hide { display: none;}