:root{
  --bs-blue: #275c8e;
  --bs-primary-rgb: 39,92,142;
  --bs-primary: #275c8e;
}
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap");
body {
  font-size: 16px;
  /*line-height: 32px;*/
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  font-family: "Kumbh Sans", sans-serif;
  margin: 0;
}
.text-justify {
  text-align: justify;
  text-justify: inter-word;
}
/*nav*/
.navbar-brand img {
  width: 95px;
}
.navbar-nav {
  align-items: center;
}
.navbar .navbar-nav .nav-link {
  color: #fff;
  font-size: 1.1em;
  padding: 0.5em 1em;
}
@media screen and (min-width: 768px) {
  .navbar-brand img {
    width: 110px;
  }
  .navbar-brand {
    margin-right: 0;
    padding: 0 1em;
  }
}
/*end*/
.flag-icon{
  position: relative;
  display: inline-block;
  width: 1.33333333em;
  line-height: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
}

.flag-icon:before {
  content: "\00a0";
}

.flag-icon-mx {
  background-image: url(../img/mx.svg);
}

.flag-icon-us {
  background-image: url(../img/us.svg);
}

.flag-icon-cn {
  background-image: url(../img/cn.svg);
}

/* hovver effect*/

.logo-list img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}
.logo-list img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* parallax*/

.parallax{
  /* The image used */
  background-image: url("../img/pexels-nc-farm-bureau-mark-21711154.jpg");

  /* Full height */
  height: 100%;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-overlay{
  background-color: #000000;
  opacity: 0.5;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;

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

.with-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* contact */
.contact-left{
    background-image: url(../img/px_contact_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position:relative;
}

.contact-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Superposición oscura */
  z-index: 1;
}

.contact-overlay{
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  background-color: #000000;
  opacity: 0.7;
  height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.contact-form input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.contact-form input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* Footer BG*/
.footer-bg{
  background-image: url('../img/untitled-design.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.footer-bg-padding{
  padding: 80px 0px 40px 0px;
}

.footer-overlay{
  background-color: #FFF8EE;
  opacity: 0.48;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;

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

/* effect */
/* Link2 */
.underline-effect {
  position: relative;
}
.underline-effect:after {
  content: "";
  position: absolute;
  bottom: -0.4em;
  left: 50%;
  right: 50%;
  height: 1px;
  background: currentColor;
  transition: all ease 0.2s;
}
.underline-effect:hover:after {
  left: 0;
  right: 0;
  height: 2px;
}
.underline-effect:before {
  position: absolute;
  transform: translateX(-100%);
  left: -10px;
  color: #eee;
  opacity: 0.3;
  font-weight: 100;
  font-size: 0.8em;
}