:root {
  --color-dark: #000000;
  --color-light: #ffffff;
  --color-grey: #666666;
  --color-light-grey: #f2f2f2;
  --color-blue: #000b8c;
  --color-green: #6abf4b;
}
body {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  background-color: var(--color-light);
  color: var(--color-grey);
  letter-spacing: 0.05rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  color: var(--color-blue) !important;
}
.h1,
h1 {
  font-size: 2.5rem;
  line-height: normal !important;
  margin-bottom: 2.5rem;
}
.h2,
h2 {
  font-size: 2rem;
  line-height: normal !important;
  margin-bottom: 2rem;
}
.h3,
h3 {
  font-size: 1.75rem;
  line-height: normal !important;
  margin-bottom: 1.75rem;
}
.h4,
h4 {
  font-size: 1.5rem;
  line-height: normal !important;
  margin-bottom: 1.5rem;
}
.h5,
h5 {
  font-size: 1.25rem;
  line-height: normal !important;
  margin-bottom: 1.25rem;
}
.h6,
h6 {
  font-size: 1rem;
  line-height: normal !important;
  margin-bottom: 1rem;
}

/* ----- NAVBAR ----- */
.navbar {
  background-color: #ffffff;
  min-height: 4.375rem;
  z-index: 999999;
}
.navbar-nav li:hover .dropdown-menu {
  display: block;
}
.dropdown-menu {
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--color-blue) !important;
  text-align: left;
  list-style: none;
  background-color: var(--color-light);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-top: 5px solid var(--color-green) !important;
}
.dropdown-item {
  color: var(--color-blue) !important;
}
.dropdown-item:hover,
.dropdown-item:active {
  color: rgba(0, 11, 140, 0.5) !important;
  background-color: var(--color-light-grey);
}

.img-fluid {
    max-width: 70%;
    height: auto;
}


.nav-link {
  color: var(--color-blue);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: normal;
}
.nav-link:hover {
  color: rgba(0, 11, 140, 0.5);
}
.logo-brand {
  min-height: 40px;
  max-height: 50px;
}
.navbar-toggler {
  font-size: 25px;
  color: var(--color-green);
}
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}
/* ----- END NAVBAR ----- */

/* ----- TOP BAR ----- */
.container-fluid-topbar {
  background-color: var(--color-blue) !important;
}
.text-company {
  color: var(--color-light) !important;
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 0;
}
.private-access {
  width: 100%;
  background-color: var(--color-green) !important;
}
.btn-private-access {
  display: block;
  color: var(--color-light) !important;
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-weight: 400;
  text-align: center;
  padding: 0.5rem;
  border: 0;
}
.btn-private-access:hover {
  color: var(--color-light) !important;
  text-decoration: none;
  border: 0;
  opacity: 0.75;
}
/* ----- END TOP BAR ----- */

/* ----- SECTION SLIDER ----- */
#slider-inicio {
  padding: 0 0;
}
.carousel-inner img {
  width: 100%;
  max-height: 580px;
}
.vertical-align {
  width: 1140px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  bottom: unset;
}
.carousel-caption h2 {
  font-size: 2.875rem;
  color: var(--color-light) !important;
  padding-bottom: 0.625rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.carousel-caption p {
  width: 60%;
  font-size: 1.125rem;
  line-height: 1.3125rem;
  color: var(--color-light) !important;
  padding-bottom: 0.625rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn-carousel {
  background-color: var(--color-green);
  color: var(--color-light) !important;
  border: 0;
  border-radius: 0.4rem;
  font-size: 1rem;
  padding: 0.4rem 1rem;
}
.btn-carousel:hover {
  background-color: var(--color-light) !important;
  color: var(--color-green) !important;
  border: 0;
  opacity: 0.8;
}
.carousel-indicators li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px;
}
.carousel-control-next,
.carousel-control-prev {
  width: 5%;
}
/* ----- END SECTION SLIDER ----- */
section {
  padding: 3.75rem 0;
}
.bg-light {
  background-color: #f2f2f2 !important;
}
hr {
  display: inline-block;
  margin-top: 0rem;
  margin-bottom: 1rem;
  width: 10%;
  left: 0;
  border-top: 3px solid var(--color-green);
}
hr.grey {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 10%;
  left: 0;
  border-top: 1px solid var(--color-grey) !important;
}

/* ----- FOOTER ----- */
footer {
  background-color: var(--color-blue);
  color: var(--color-light);
  text-align: left;
}
.logo-footer img {
  max-width: 65% !important;
}
footer i {
  font-size: 2rem;
  line-height: 2rem;
  color: var(--color-light);
  cursor: pointer;
}
footer i:hover {
  color: var(--color-green) !important;
}
footer h6 {
  color: var(--color-light) !important;
}
footer p i {
  font-size: 1rem;
  line-height: 1rem;
  color: var(--color-green) !important;
  letter-spacing: 0 !important;
}
footer p a {
  color: var(--color-light) !important;
  text-decoration: none !important;
}
.container-fluid-footerbar {
  background-color: var(--color-green) !important;
}
.text-copyright {
  color: var(--color-light) !important;
  font-size: 0.75rem;
  line-height: 0.75rem;
  font-weight: 400;
  opacity: 1;
}
/* ----- END FOOTER ----- */

/* ----- ON TOP ----- */
.simplescrollup__button {
  position: fixed;
  bottom: 3.75rem;
  right: 3rem;
  transition: 1s all;
  z-index: 10000;
  cursor: pointer;
}
.simplescrollup__button--show {
  transform: translateX(0);
}
.simplescrollup__button--hide {
  transform: translateX(100px);
}
/* ----- END ON TOP ----- */

/* ----- WHATSAPP ----- */
.whatsapp {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 50px;
  right: 15px;
  background-color: #25d366;
  color: var(--color-light);
  border-radius: 25px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
}
.whatsapp:hover {
  background-color: #25d366;
  color: var(--color-light);
  opacity: 0.8;
}
.whatsapp-icon {
  margin: auto;
}
/* ----- END WHATSAPP ----- */

/* ----- BREADCRUMB ----- */
.bgnd-breadcrumb {
  background-image: url(../images/breadcrumb-bgnd.jpg);
  height: 80px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bgnd-breadcrumb p {
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  color: var(--color-light);
}
.bgnd-breadcrumb .lead {
  font-size: 1.5rem;
  line-height: 1.5rem !important;
}
/* ----- END BREADCRUMB ----- */

/* ----- SLIDERS UNIFY ----- */
.unify-xl .carousel-indicators li {
  background-color: var(--color-green) !important;
}
.unify-lg .carousel-indicators li {
  background-color: var(--color-green) !important;
}
.unify-md .carousel-indicators li {
  background-color: var(--color-green) !important;
}
.unify-sm .carousel-indicators li {
  background-color: var(--color-green) !important;
}
/* ----- END SLIDERS UNIFY ----- */

/* ----- PRODUCTS UNIFY ----- */
.swiper-container {
  width: 100%;
  padding-top: 0px !important;
  padding-bottom: 50px !important;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 290px;
  height: 400px;
  background: var(--color-light);
  border: 1px solid #2a3136;
}
.swiper-slide .imgBx {
  width: 100%;
  height: 290px;
  overflow: hidden;
}
.swiper-slide .imgBx img {
  width: 100%;
}
.swiper-slide .details {
  box-sizing: border-box;
  height: 110px;
  background:#2a3136;
  font-size: 1rem;
  padding: 20px;
}
.swiper-slide .details h4 {
  color: var(--color-light) !important;
  font-size: 1.0625rem;
  margin: 0;
  padding: 0;
  text-align: left;
  line-height: normal;
}
.swiper-slide .details p {
  color: #88c540;
  font-size: 0.875rem;
  margin: 0;
  padding-top: 10px;
  text-align: left;
  line-height: normal;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: var(--color-green) !important; 
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-green) !important; 
}


/* ----- END PRODUCTS UNIFY ----- */

/* ----- SECTION SOLUTION CATEGORY ----- */
.icon-unify img {
  max-width: 80px;
}
.icon-unify p {
  padding-right: 15px;
  padding-left: 15px;
}
/* ----- END SECTION SOLUTION CATEGORY ----- */

/* ----- SECTION NET & SECURITY ----- */
.icon-net-security {
  background-color: var(--color-light);
  height: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.icon-net-security img {
  max-width: 70px;
}
.icon-net-security p {
  margin-bottom: 0;
  line-height: normal;
}
/* ----- END NET & SECURITY ----- */

/* ----- CONTACT FORM ----- */
.form-control {
  background-color: var(--color-light-grey) !important;
  border: 0 !important;
  height: calc(2em + 1rem + 2px) !important;
  padding: 0.5rem 1rem !important;
}
.btn-form {
  background-color: var(--color-green);
  color: var(--color-light);
  border: 1px solid var(--color-green);
  border-radius: 0.4rem;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}
.btn-form:hover {
  background-color: var(--color-light);
  color: var(--color-green);
  border: 1px solid var(--color-green);
  opacity: 0.8;
}


/* ----- END CONTACT FORM ----- */

/* ----- MEDIA QUERIES SLIDER ----- */

/* Small devices (phones, 320px and up) */
@media (min-width: 320px) {
  .carousel-inner img {
    width: auto !important;
    position: relative;
    right: 35%;
    height: 220px;
  }
  .vertical-align {
    width: 280px !important;
  }
  .carousel-caption h2 {
    font-size: 1.625rem;
    color: var(--color-light) !important;
    padding-bottom: 0.625rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  #slider-client-xl,
  #slider-client-lg,
  #slider-client-md {
    display: none !important;
  }
  section {
    padding: 1.5rem 0;
  }
  .logo-footer img {
    max-width: 50% !important;
  }
  .bgnd-breadcrumb {
    background-image: url(../images/breadcrumb-bgnd.jpg);
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .bgnd-breadcrumb p {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    color: var(--color-light);
  }
  .bgnd-breadcrumb .lead {
    font-size: 1.25rem;
    line-height: 1.25rem !important;
  }
  .unify-xl,
  .unify-lg,
  .unify-md {
    display: none !important;
  }
  .unify-sm {
    display: block !important;
  }
}
/* Small devices (phones, 425px and up) */
@media (min-width: 425px) {
  .carousel-inner img {
    width: auto !important;
    position: relative;
    right: 65%;
    height: 280px;
  }
  .vertical-align {
    width: 280px !important;
  }
  .carousel-caption h2 {
    font-size: 1.625rem;
    color: var(--color-light) !important;
    padding-bottom: 0.625rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  #slider-client-xl,
  #slider-client-lg,
  #slider-client-md {
    display: none !important;
  }
  section {
    padding: 1.5rem 0;
  }
  .logo-footer img {
    max-width: 50% !important;
  }
  .bgnd-breadcrumb {
    background-image: url(../images/breadcrumb-bgnd.jpg);
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .bgnd-breadcrumb p {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    color: var(--color-light);
  }
  .bgnd-breadcrumb .lead {
    font-size: 1.25rem;
    line-height: 1.25rem !important;
  }
  .unify-xl,
  .unify-lg,
  .unify-md {
    display: none !important;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .carousel-inner img {
    width: auto !important;
    position: relative;
    right: 23%;
    height: 280px;
  }
  .vertical-align {
    width: 420px !important;
  }
  #slider-client-xl,
  #slider-client-lg,
  #slider-client-md {
    display: none !important;
  }
  #slider-client-sm {
    display: block !important;
  }
  section {
    padding: 1.5rem 0;
  }
  .logo-footer img {
    max-width: 30% !important;
  }
  .bgnd-breadcrumb {
    background-image: url(../images/breadcrumb-bgnd.jpg);
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .bgnd-breadcrumb p {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    color: var(--color-light);
  }
  .bgnd-breadcrumb .lead {
    font-size: 1.5rem;
    line-height: 1.5rem !important;
  }
  .unify-xl,
  .unify-lg,
  .unify-md {
    display: none !important;
  }
  .unify-sm {
    display: block !important;
  }
}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .carousel-inner img {
    width: auto !important;
    position: relative;
    right: 35%;
    height: 420px;
  }
  .vertical-align {
    width: 540px !important;
  }
  .carousel-caption h2 {
    font-size: 1.875rem;
    color: var(--color-light) !important;
    padding-bottom: 0.625rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  .carousel-caption p {
    width: 90%;
    font-size: 1rem;
    line-height: 1.125rem;
    color: var(--color-light) !important;
    padding-bottom: 0.625rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  #slider-client-xl,
  #slider-client-lg,
  #slider-client-sm {
    display: none !important;
  }
  #slider-client-md {
    display: block !important;
  }
  section {
    padding: 2.5rem 0;
  }
  .logo-footer img {
    max-width: 50% !important;
  }
  .bgnd-breadcrumb {
    background-image: url(../images/breadcrumb-bgnd.jpg);
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .bgnd-breadcrumb p {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    color: var(--color-light);
  }
  .bgnd-breadcrumb .lead {
    font-size: 1.25rem;
    line-height: 1.25rem !important;
  }
  .unify-xl,
  .unify-lg,
  .unify-sm {
    display: none !important;
  }
  .unify-md {
    display: block !important;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .carousel-inner img {
    width: auto !important;
    position: relative;
    right: 35%;
    height: 480px;
  }
  .vertical-align {
    width: 720px !important;
  }
  .carousel-caption h2 {
    font-size: 2.25rem;
    color: var(--color-light) !important;
    padding-bottom: 0.625rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  .carousel-caption p {
    width: 82%;
    font-size: 1rem;
    line-height: 1.125rem;
    color: var(--color-light) !important;
    padding-bottom: 0.625rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  #slider-client-xl,
  #slider-client-md,
  #slider-client-sm {
    display: none !important;
  }
  #slider-client-lg {
    display: block !important;
  }
  section {
    padding: 2.5rem 0;
  }
  .logo-footer img {
    max-width: 65% !important;
  }
  .bgnd-breadcrumb {
    background-image: url(../images/breadcrumb-bgnd.jpg);
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .bgnd-breadcrumb p {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    color: var(--color-light);
  }
  .bgnd-breadcrumb .lead {
    font-size: 1.5rem;
    line-height: 1.5rem !important;
  }
  .unify-xl,
  .unify-md,
  .unify-sm {
    display: none !important;
  }
  .unify-lg {
    display: block !important;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .carousel-inner img {
    width: 100% !important;
    right: 0;
    height: 580px;
  }
  .vertical-align {
    width: 1140px !important;
  }
  .carousel-caption h2 {
    font-size: 2.875rem;
    color: var(--color-light) !important;
    padding-bottom: 0.625rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  .carousel-caption p {
    width: 50%;
    font-size: 1.125rem;
    line-height: 1.3125rem;
    color: var(--color-light) !important;
    padding-bottom: 0.625rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  #slider-client-sm,
  #slider-client-lg,
  #slider-client-md {
    display: none !important;
  }
  #slider-client-xl {
    display: block !important;
  }
  section {
    padding: 3.75rem 0;
  }
  .logo-footer img {
    max-width: 65% !important;
  }
  .bgnd-breadcrumb {
    background-image: url(../images/breadcrumb-bgnd.jpg);
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .bgnd-breadcrumb p {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    color: var(--color-light);
  }
  .bgnd-breadcrumb .lead {
    font-size: 1.5rem;
    line-height: 1.5rem !important;
  }
  .unify-sm,
  .unify-lg,
  .unify-md {
    display: none !important;
  }
  .unify-xl {
    display: block !important;
  }
}
