/* Fonts */
body,
input,
textarea,
select {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-display: swap;
}

h1 {
  font-size: clamp(2.5rem, 1.792rem + 1.4749vw, 3.125rem);
  font-weight: 600;
  line-height: 104%;
}

h2, h3 {
  font-size: clamp(1.25rem, 0.9668rem + 0.59vw, 1.5rem);
  font-weight: 600;
  line-height: 104%;
}

.big {
  font-size: clamp(2.5rem, 0.3571rem + 4.4643vw, 4.375rem);
}

p,
li,
label {
  font-size: 0.9375rem;
  line-height: 20px;
}

.smallTxt {
  font-size: 0.5rem;
  text-align: center;
}

/*--------------RESPONSIVE----------*/
/* extra Small Devices*/
/*Small Devices*/
/*Medium devices*/
/*Large Devices*/
/*scroll bar*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #01284F;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

::-moz-selection {
  background-color: #EAEAEA;
  color: #0053C6;
}

::selection {
  background-color: #EAEAEA;
  color: #0053C6;
}

/* Resets */
.img-fluid {
  width: 100%;
}

.noPadding {
  padding: 0;
}

.row {
  padding: 0 !important;
  margin: 0 !important;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^=col-],
.row.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

section.noPadding {
  padding: 0em 0;
}

/* General */
body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background-color: #fff;
}

.text-italic {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-style: italic;
}

.text-primary {
  color: #0053C6;
}

.text-dark {
  color: #01284F !important;
}

/* links */
a {
  color: #0053C6;
  text-decoration: underline;
  transition: color 0.3s;
}
a:hover, a:active, a:focus {
  color: #0053C6;
}

/* Buttons */
.btn {
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.4s, border 0.3s;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 0;
  width: 100%;
}
@media only screen and (min-width: 0px) {
  .btn {
    max-width: 196px;
  }
}
@media only screen and (min-width: 991px) {
  .btn {
    max-width: 458px;
  }
}
.btn.btn-cta {
  font-weight: bold;
  color: #fff;
  background-color: #0053C6;
}
.btn.btn-cta:hover, .btn.btn-cta:focus, .btn.btn-cta:active {
  border-color: #01284F;
  background-color: #01284F;
}
.btn.btn-cta.is-light {
  color: #0053C6;
  background-color: #fff;
}
.btn.btn-cta.is-light:hover, .btn.btn-cta.is-light:focus, .btn.btn-cta.is-light:active {
  color: #fff;
  border-color: #01284F;
  background-color: #01284F;
}
.btn.is-small {
  max-width: 196px;
}

/* Background */
.bg-dark {
  background-color: #0053C6 !important;
}

.bg-blue {
  background-color: #0053C6;
}

.bg-blue-light {
  background-color: #54C0E8;
}

.bg-gray-light {
  background-color: #EAEAEA;
}

.titleSnipet {
  display: block;
  color: #fff;
  background-color: #212121;
}

html[data-theme=dark] .btn.btn-cta {
  color: #0053C6;
  background-color: #fff;
  border-color: #fff;
}
html[data-theme=dark] .btn.btn-cta:hover, html[data-theme=dark] .btn.btn-cta:focus, html[data-theme=dark] .btn.btn-cta:active {
  color: #0053C6;
  background-color: #fff;
  border-color: #fff;
}

header {
  padding: 24px;
  background-color: #fff;
}
header .logo {
  max-width: 145px;
  width: 100%;
  height: auto;
}
header ul {
  display: flex;
  list-style-type: none;
  gap: 0 10px;
  margin: 0;
}
header ul li a {
  color: #0053C6;
  text-decoration: none;
}
header ul li a:hover, header ul li a:focus, header ul li a:active {
  color: #0053C6;
}
header ul li a.active {
  text-decoration: underline;
}
header ul svg {
  width: 1.2rem;
  height: auto;
  vertical-align: text-top;
}
@media only screen and (min-width: 0px) {
  header {
    padding: 24px 10px;
  }
}
@media only screen and (min-width: 991px) {
  header {
    padding: 24px;
  }
}

@media only screen and (min-width: 0px) {
  .cs-tec-header-001 p {
    text-align: right;
    padding-right: 0;
  }
  .cs-tec-header-001 p::before {
    display: none;
  }
}
@media only screen and (min-width: 991px) {
  .cs-tec-header-001 p {
    text-align: inherit;
    padding-right: 1rem;
  }
  .cs-tec-header-001 p::before {
    display: block;
  }
}

html[data-theme=dark] header {
  background-color: #0053C6;
}
html[data-theme=dark] header svg path {
  fill: #fff;
}
html[data-theme=dark] header ul li a {
  color: #fff;
}
html[data-theme=dark] header ul li a:hover, html[data-theme=dark] header ul li a:focus, html[data-theme=dark] header ul li a:active {
  color: #0053C6;
}

footer {
  position: relative;
  color: #0053C6;
  background-color: #fff;
  padding: clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem);
}
footer .logo {
  max-width: inherit;
}
@media only screen and (min-width: 0px) {
  footer .logo {
    display: block;
    text-align: center;
    margin: 0 auto 25px;
  }
}
@media only screen and (min-width: 991px) {
  footer .logo {
    display: inline-block;
    text-align: start;
  }
}
footer #theme-switch {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 6px 10px;
  margin: auto 15px 15px 0;
  width: 70px;
  border: 1px solid #0053C6;
  border-radius: 50px;
  color: #0053C6;
}
footer p {
  font-size: 10px;
  padding: 0 10px;
}
footer hr {
  opacity: 1;
  color: #0053C6;
}
footer .nav p {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.14px;
  padding: 0;
}
footer .nav ul {
  display: block;
}
@media only screen and (min-width: 0px) {
  footer .nav ul {
    margin: 0 auto 25px;
    text-align: center;
  }
}
@media only screen and (min-width: 991px) {
  footer .nav ul {
    margin: 0;
    text-align: left;
  }
}
footer .nav li {
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent;
}
footer .nav li:not(:last-child) {
  margin-bottom: 5px;
}
footer .nav li:hover {
  top: inherit;
}
footer .nav li a {
  display: block;
  position: relative;
  top: inherit;
  left: 0;
  font-size: 0.9375rem;
  color: #0053C6;
  transform: inherit;
  text-decoration: none;
}
footer .nav li a:hover, footer .nav li a:focus, footer .nav li a:active {
  color: #01284F !important;
  top: inherit;
  text-decoration: underline;
}
footer .nav.justify-content-center a {
  font-size: 12px;
  font-weight: bold;
  text-decoration: underline;
}
footer .redes li {
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent;
}
footer .redes li:hover {
  top: inherit;
}
footer .redes p {
  font-size: 12px;
  line-height: 2.5;
}
footer .redes a {
  display: block;
  position: relative;
  top: inherit;
  left: 0;
  font-size: 1.2rem;
  color: #0053C6;
  transform: inherit;
  text-decoration: none;
}
footer .redes a:hover, footer .redes a:focus, footer .redes a:active {
  color: #fff !important;
  top: inherit;
}

html[data-theme=dark] body {
  background-color: #01284F;
}
html[data-theme=dark] footer {
  color: #fff;
  background-color: #01284F;
}
html[data-theme=dark] footer svg path {
  fill: #fff;
}
html[data-theme=dark] footer hr,
html[data-theme=dark] footer .nav li a,
html[data-theme=dark] footer .redes li a,
html[data-theme=dark] footer ul li a {
  color: #fff;
}
html[data-theme=dark] footer .nav li a:hover, html[data-theme=dark] footer .nav li a:focus, html[data-theme=dark] footer .nav li a:active {
  color: #fff !important;
}
html[data-theme=dark] footer #theme-switch {
  color: #fff;
  border-color: #54C0E8;
  background-color: #54C0E8;
}

section[class^=cs-tec-hero] h1 + h2,
section[class^=cs-tec-hero] h1 + .btn,
section[class^=cs-tec-hero] h2 + .btn {
  margin-top: 24px;
}
section[class^=cs-tec-hero] .tec-box {
  padding: clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem);
}
@media only screen and (min-width: 0px) {
  section[class^=cs-tec-hero] img {
    height: 90vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (min-width: 991px) {
  section[class^=cs-tec-hero] img {
    max-height: 85vh;
    height: auto;
  }
}
@media only screen and (min-width: 1367px) {
  section[class^=cs-tec-hero] img {
    max-height: 85vh;
    height: auto;
  }
}

.cover .mask {
  position: relative;
}
.cover .mask::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
}
.cover.herostyle-1 {
  background-image: url("https://image.comunicaciones.tec.mx/lib/fe241174736404757d1276/m/1/dd0ff89a-62ff-4c83-9411-e63fecdf1649.png");
  background-position: left center;
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-color: #54C0E8;
}
.cover.herostyle-2 {
  background-image: url("https://image.comunicaciones.tec.mx/lib/fe241174736404757d1276/m/1/dd0ff89a-62ff-4c83-9411-e63fecdf1649.png");
  background-position: left center;
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-color: #01284F;
}
@media only screen and (min-width: 0px) {
  .cover.herostyle-1 .mask {
    -webkit-clip-path: polygon(100% 0, 100% 30%, 50% 40%, 0 30%, 0 0);
            clip-path: polygon(100% 0, 100% 30%, 50% 40%, 0 30%, 0 0);
  }
  .cover.herostyle-1 .hero-column {
    padding-top: 37vh;
    padding-bottom: 20px;
  }
  .cover.herostyle-2 .mask {
    -webkit-clip-path: polygon(0 40%, 0 0, 100% 0, 100% 40%, 50% 23%);
            clip-path: polygon(0 40%, 0 0, 100% 0, 100% 40%, 50% 23%);
  }
  .cover.herostyle-2 .mask::before {
    background-image: url("https://image.comunicaciones.tec.mx/lib/fe241174736404757d1276/m/1/59581ab5-83e0-4208-912e-3333cd15c2df.png");
    background-size: 100% 75%;
    left: 0;
    height: 26%;
    top: 15%;
    width: 100%;
    background-position: center;
  }
  .cover.herostyle-2 .hero-column {
    padding-top: 5vh;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 991px) {
  .cover.herostyle-1 .mask {
    -webkit-clip-path: polygon(24% 0, 100% 0, 100% 100%, 24% 100%, 0 50%);
            clip-path: polygon(24% 0, 100% 0, 100% 100%, 24% 100%, 0 50%);
    width: 50%;
    margin-left: auto;
  }
  .cover.herostyle-1 .hero-column {
    padding-top: 30px;
  }
  .cover.herostyle-2 .mask {
    width: 50%;
    margin-left: auto;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 24% 50%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 24% 50%);
  }
  .cover.herostyle-2 .mask::before {
    top: 0;
    left: 0%;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url('data:image/svg+xml,<svg width="277" height="722" viewBox="0 0 277 722" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M34.485 721.133L-3.05176e-05 721.133L242.476 360.633L9.98333e-07 0.133289L34.4851 0.13329L277 360.633L34.485 721.133Z" fill="%230053C6"/></svg>');
  }
  .cover.herostyle-2 .hero-column {
    padding-top: 30px;
  }
}

.carousel-caption {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.carousel .owl-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
}

.owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: transparent;
  border: 1px solid #EAEAEA;
}
.owl-theme .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 8px;
  width: 8px;
  border-radius: 50%;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  border: 1px solid #EAEAEA;
  background-color: transparent;
}
.owl-theme .owl-dots .owl-dot.active span::before, .owl-theme .owl-dots .owl-dot:hover span::before {
  background-color: #EAEAEA;
}

/*CS-HERO-002*/
.cs-tec-hero-002 {
  min-height: 85vh;
  background-image: url("https://fakeimg.pl/1280x460");
  background-size: cover;
  background-position: center center;
}

html[data-theme=dark] section[class^=cs-tec-hero] .text-dark {
  color: #fff !important;
}
html[data-theme=dark] section[class^=cs-tec-hero] .cover.herostyle-1 {
  background-color: #0053C6;
  background-image: url("https://image.comunicaciones.tec.mx/lib/fe241174736404757d1276/m/1/7775e833-cdca-413e-bee4-a594fba70e2e.png");
}
html[data-theme=dark] section[class^=cs-tec-hero] .cover.herostyle-2 {
  background-color: #54C0E8;
}

section[class^=cs-tec-content] {
  padding: clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem);
}
section[class^=cs-tec-content] h1 + p {
  margin-top: 24px;
}
@media only screen and (min-width: 0px) {
  section[class^=cs-tec-content] h1 + p {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 991px) {
  section[class^=cs-tec-content] h1 + p {
    margin-bottom: 1rem;
  }
}
section[class^=cs-tec-content] img.h-100 {
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 0px) {
  section[class^=cs-tec-content] img.h-100 {
    height: 310px !important;
  }
}
@media only screen and (min-width: 991px) {
  section[class^=cs-tec-content] img.h-100 {
    height: 100% !important;
  }
}

.tec-content-bg {
  background-image: url("https://fakeimg.pl/650x400/");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 400px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
.tec-content-bg .tec-content-info {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 34px 34px;
}

.cs-tec-content-007 .bg-gray-light,
.cs-tec-content-004 .bg-gray-light,
.cs-tec-content-003 .bg-gray-light {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}

section.cs-tec-content-006 p {
  padding: 0 1rem;
}
section.cs-tec-content-006 .bg-gray-light {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.cs-tec-content-008 {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, #fff 80%, #EAEAEA 80.01%);
}

section.cs-tec-content-003,
section.cs-tec-content-004,
section.cs-tec-content-005,
section.cs-tec-content-007 {
  padding-bottom: 75px;
}

section.cs-tec-content-007 img {
  max-height: 570px;
}

html[data-theme=dark] section[class^=cs-tec-content] {
  background-color: #01284F;
}
html[data-theme=dark] section[class^=cs-tec-content].bg-gray-light {
  background-color: #0053C6;
}
html[data-theme=dark] section[class^=cs-tec-content].bg-white {
  background-color: #01284F !important;
}
html[data-theme=dark] section[class^=cs-tec-content] .text-dark {
  color: #fff !important;
}
html[data-theme=dark] section[class^=cs-tec-content] .bg-gray-light {
  background-color: #0053C6;
}
html[data-theme=dark] .cs-tec-content-008 {
  background: linear-gradient(180deg, #01284F 80%, #0053C6 80.01%);
}
html[data-theme=dark] .cs-tec-content-008 .btn.btn-cta {
  color: #01284F;
}

section[class^=cs-tec-card] {
  padding: clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem);
}
section[class^=cs-tec-card] h1 + p, section[class^=cs-tec-card] h2 + p {
  margin-top: 24px;
}
section[class^=cs-tec-card] span[class^=material-symbols-] {
  font-size: 80px;
  margin-bottom: 50px;
  color: #0053C6;
}

@media only screen and (min-width: 0px) {
  .cs-tec-card-001 .tec-card {
    padding: 30px 12px 20px;
  }
}
@media only screen and (min-width: 991px) {
  .cs-tec-card-001 .tec-card {
    padding: 45px 2.5rem 10px;
  }
}

@media only screen and (min-width: 0px) {
  .cs-tec-card-002 .tec-card {
    padding: 20px 12px;
  }
}
@media only screen and (min-width: 991px) {
  .cs-tec-card-002 .tec-card {
    padding: 50px 2.5rem;
  }
}

html[data-theme=dark] section[class^=cs-tec-card] {
  background-color: #0053C6;
  color: #fff;
}
html[data-theme=dark] section[class^=cs-tec-card] span[class^=material-symbols-] {
  color: #fff;
}
html[data-theme=dark] section[class^=cs-tec-card] .text-dark {
  color: #fff !important;
}

@media only screen and (min-width: 0px) {
  section[class^=cs-tec-carousel] {
    padding: clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem) clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem) 24px;
  }
}
@media only screen and (min-width: 991px) {
  section[class^=cs-tec-carousel] {
    padding: clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem) 0 50px;
  }
}
section[class^=cs-tec-carousel] h1 + p {
  margin-top: 24px;
}
section[class^=cs-tec-carousel] .owl-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 992px) {
  section[class^=cs-tec-carousel] .carousel-inner {
    display: flex;
    flex-direction: row;
    gap: 0 20px;
  }
  section[class^=cs-tec-carousel] .carousel-item {
    display: block;
    flex: 1 0 calc(25.35% - 20px);
    width: auto;
    float: none;
    margin: 0;
  }
  section[class^=cs-tec-carousel] .carousel-item img {
    width: 100%;
    height: auto;
  }
  section[class^=cs-tec-carousel] .carousel-indicators {
    display: none;
  }
}
html[data-theme=dark] section[class^=cs-tec-carousel] {
  background-color: #0053C6;
}

section[class^=cs-tec-form] {
  position: relative;
}
@media only screen and (min-width: 0px) {
  section[class^=cs-tec-form] {
    padding: 50px clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem) 50px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 991px) {
  section[class^=cs-tec-form] {
    padding: 50px clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem) 50px;
    margin-bottom: 0;
  }
}
section[class^=cs-tec-form] .bg-white {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
section[class^=cs-tec-form] p.text-dark {
  font-size: clamp(0.9375rem, 0.7946rem + 0.2976vw, 1.0625rem);
  font-weight: 600;
}
section[class^=cs-tec-form] .d-md-flex img {
  -o-object-fit: cover;
     object-fit: cover;
}
section[class^=cs-tec-form] .link-generarcaptcha {
  display: inline-block;
  font-size: 0.75rem;
  color: #B1B1B1;
  text-decoration: underline;
  text-transform: capitalize;
  padding: 0;
  text-align: left;
}
@media only screen and (min-width: 0px) {
  section[class^=cs-tec-form] .img-catpcha {
    position: relative;
    text-align: right;
    margin-top: -50px;
  }
}
@media only screen and (min-width: 991px) {
  section[class^=cs-tec-form] .img-catpcha {
    margin-top: 0;
    text-align: inherit;
  }
}
section[class^=cs-tec-form] .img-catpcha img {
  max-width: 115px;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 0px) {
  section[class^=cs-tec-form] .tec-cintillo {
    margin: 50px auto 0;
  }
}
@media only screen and (min-width: 991px) {
  section[class^=cs-tec-form] .tec-cintillo {
    margin: auto auto;
    padding: 50px 0;
  }
}
section[class^=cs-tec-form] .tec-cintillo p {
  font-weight: normal;
}

@media only screen and (min-width: 0px) {
  form .form {
    padding: 0;
  }
}
@media only screen and (min-width: 991px) {
  form .form {
    padding: 35px 25px;
  }
}
form .form-group {
  position: relative;
}
form .label_input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0%);
  font-size: 0.813rem;
  line-height: 2;
  color: #B1B1B1;
  pointer-events: none;
  transition: 0.25s ease all;
}
form .form-control {
  font-size: 0.813rem;
  height: 2.75rem;
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid #EAEAEA;
  border-radius: 0;
  padding-left: 0;
}
form .form-control::-moz-placeholder {
  font-size: 0.813rem;
  color: #B1B1B1;
}
form .form-control::placeholder {
  font-size: 0.813rem;
  color: #B1B1B1;
}
form .form-control:not(:-moz-placeholder-shown) + label {
  top: -1rem;
}
form .form-control:focus + label, form .form-control:not(:placeholder-shown) + label {
  top: -1rem;
}
form .form-control:focus {
  box-shadow: none;
  border-bottom-color: #212121;
}
form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23B1B1B1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  color: #B1B1B1;
}
form textarea.form-control {
  border: 1px solid #EAEAEA;
}
form .form-check-label {
  font-size: 0.9375rem;
  line-height: 2;
  vertical-align: sub;
}
form .form-check-label a {
  color: #212121;
}
form .form-check-input {
  border-color: #0053C6;
}
form .form-check-input:checked {
  background-color: #0053C6;
  border-color: #0053C6;
}
form .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
form .form-check.terms .form-check-label {
  font-size: 0.813rem;
  color: #B1B1B1;
}
form .form-check.terms .form-check-label a {
  color: #B1B1B1;
}

html[data-theme=dark] section[class^=cs-tec-form] {
  background-color: #0053C6;
}
html[data-theme=dark] section[class^=cs-tec-form] .bg-dark {
  background-color: #01284F !important;
}
html[data-theme=dark] section[class^=cs-tec-form] .bg-white {
  background-color: #01284F !important;
}
html[data-theme=dark] section[class^=cs-tec-form] .link-generarcaptcha,
html[data-theme=dark] section[class^=cs-tec-form] .text-dark {
  color: #fff !important;
}
html[data-theme=dark] section[class^=cs-tec-form] .form-control {
  color: #fff;
}
html[data-theme=dark] section[class^=cs-tec-form] .form-control::-moz-placeholder {
  color: #fff;
}
html[data-theme=dark] section[class^=cs-tec-form] .form-control::placeholder {
  color: #fff;
}
html[data-theme=dark] section[class^=cs-tec-form] .form-control:focus {
  border-bottom-color: #fff;
}

@media only screen and (min-width: 0px) {
  section[class^=cs-tec-video] {
    padding: clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem);
  }
}
@media only screen and (min-width: 991px) {
  section[class^=cs-tec-video] {
    padding: clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem) clamp(0.75rem, 0.3661rem + 0.9449vw, 1.5rem) 85px;
  }
}
section[class^=cs-tec-video] h1 + p {
  margin-top: 24px;
}
section[class^=cs-tec-video] video, section[class^=cs-tec-video] iframe {
  max-width: 100%;
  width: 100%;
}

html[data-theme=dark] section[class^=cs-tec-video] {
  background-color: #0053C6;
}
html[data-theme=dark] section[class^=cs-tec-video] .bg-gray-light {
  background-color: #0053C6;
}/*# sourceMappingURL=main.css.map */