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

:root {
  --bzr-deep-blue: hsla(228, 90%, 19%, 1);
  --bzr-light-green:hsla(87, 57%, 54%, 1);
  --bzr-white:hsla(0, 0%, 100%, 1);
}


body {
    background-color: var(--bzr-white);
    margin: 0;
    padding: 0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  font-optical-sizing: auto;
}

p, a {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 0.9rem;
  color:#616b74;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}


h1, h2,h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}


span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--bzr-light-green);
}

h2 {
  font-size: 2.8rem;
  line-height: 1.25;
}

.section-title-left {
  font-size: 2.8rem;
  margin-bottom: 24px;
  text-align: left;
}

.section-title-center {
  margin-bottom: 56px;
  text-align: center;
  color: #000;
}

.text-links-primary {
  color: #5AC9E4;
}

.text-links-primary:hover {
  color: #48A1B6;
}

.text-links-secondary {
  color: #ffffff;
}

.text-links-secondary:hover {
  opacity: 0.5;
}

.section {
  position: relative;
  padding: 120px 10%;
  margin: 90px 0;
  max-width: 100%;
}

.privacy-section p {
  font-size: 16px;
  line-height: 1.5;
}

.privacy-section strong {
  font-weight: 600;
  color: #000;
}

.privacy-section a {
  color: var(--bzr-deep-blue);
  text-decoration: underline;
}

.privacy-section ol {
  list-style-type: none;
}

.whatsapp {
  position:fixed;
  width:60px;
  height:60px;
  bottom:72px;
  right:24px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:40px;
  z-index:80;
}

.whatsapp-icon {
  margin-top:13px;
}



/*Navbar*/
.nav {
  width: 100%;
  height: 72px;
  position: fixed;
  line-height: 72px;
  text-align: center;
  z-index: 90;
}

.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  padding-left: 3rem;
}

.nav div.logo img {
  display: block;
  margin-top: 11px;
  height: 50px;
}

.nav div.main_list {
  height: 65px;
  float: right;
}

.nav div.main_list ul {
  width: 100%;
  height: 72px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav div.main_list ul li {
  width: auto;
  height: 72px;
  padding: 0;
  padding-right: 3rem;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: var(--bzr-white);
  font-size: 16px;
}

.nav div.main_list ul li a:hover {
  color: #5AC9E4;
}

.navTrigger {
  display: none;
}

.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: background-color 0.4s ease, padding 0.4s ease;
}

/*animación*/
.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
}

.navTrigger i {
  background-color: #fff;
  border-radius: 2px;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
}

.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
      -webkit-transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
      -webkit-transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(9px) rotate(0deg);
  }
  100% {
      transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(9px) rotate(0deg);
  }
  100% {
      transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-9px) rotate(0deg);
  }
  100% {
      transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-9px) rotate(0deg);
  }
  100% {
      transform: translateY(-9px) rotate(135deg);
  }
}

.affix {
  padding-top: 0px;
  background-color: var(--bzr-deep-blue);
  transition: background-color 0.4s ease, padding 0.4s ease;
}

.myH2 {
text-align:center;
font-size: 4rem;
}
.myP {
text-align: justify;
padding-left:15%;
padding-right:15%;
font-size: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .nav-container {
      margin: 0;
  }
}

@media screen and (max-width:768px) {
  .navTrigger {
      display: block;
  }
  .nav div.logo {
      margin-left: 15px;
  }
  .nav div.main_list {
      width: 100%;
      height: 0;
      overflow: hidden;
  }
  .nav div.show_list {
      height: auto;
      display: none;
  }
  .nav div.main_list ul {
      flex-direction: column;
      width: 100%;
      height: 100vh;
      right: 0;
      left: 0;
      bottom: 0;
      background-color: var(--bzr-deep-blue);
      /*same background color of navbar*/
      background-position: center top;
      padding-top: 90px;
  }

  .nav div.main_list ul li {
      width: 100%;
      text-align: right;
  }
  .nav div.main_list ul li a {
      text-align: center;
      width: 100%;
      font-size: 3rem;
      padding: 20px;
  }
  .nav div.media_button {
      display: block;
  }
}

/*End Navbar*/

/*Hero slider*/
.content {
  width: 100%;
    height: 100%;
}

.hero-section {
  width: 100%;
  height: 620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
  background: url('img/BRAND-EMPATHY.png') no-repeat;
  background-size: cover;
  background-position: center;
}

.header{
  position: absolute;
  top: 55%;
  width: 100%;
  transform: translate(0%, -50%);
  text-align: center;
}

.whitefont {
color: #ffffff !important;
}

#hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  
}

#hero-title span {
  color: var(--bzr-white);
}
/*button-style */
.theme-btn-s1{
    background-color: var(--bzr-light-green) ;
    color: var(--bzr-white);
    border: 0;
    padding: 20px 24px;
    text-transform: uppercase;
    font-weight: 600;
}
.theme-btn-s1:hover {
    background-color: var(--bzr-deep-blue);
    cursor: pointer;
}

.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-transform: uppercase;
}

.theme-btn-s3:hover {
  opacity: 0.5;
  cursor: pointer;
}

/*End hero slider*/

/*About section*/
.about-container {
  text-align: center;
}

.text {
  text-align: center; 
  margin-bottom: 71px;
}

.text p {
  font-size: 1.4rem; 
}

/*End about section*/

/*video*/
.video-section {
  display: flex;
  justify-content: center;
  padding: 120px 0;
}


/*Services section*/
.services-section {
  display: flex;
  justify-content: center;
}

.services-title {
  text-align: center;
  font-size: 39px;
  margin-bottom: 50px;
}

.features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px 40px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.feature img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.feature h3 {
  margin-top: 20px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.services-button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
/*End services section*/


/*logo slider*/
.logo-slider {
  overflow: hidden;
  padding: 30px 0 0 0;
  white-space: nowrap;
  position: relative;
}

.logo-slider:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 45s slide infinite linear;
}

.logos-slide img {
  width: 183px;
  height: auto;
  margin: 0 40px;
}

@keyframes slide {
  from {
      transform: translateX(0);
  }

  to {
      transform: translateX(-100%);
  }
}
/*End logo slider*/

/*Contact form*/
.contact-section{
  display: grid;
}
.contact-container {
  justify-self: center;
  align-self: center;
}

.left-col {
  margin-bottom: 56px;
}

.left-col p {
  text-align: center;
}

.contact-list {
  list-style: none;
  padding-top: 20px;
}

.contact-list li i {
  margin: 8px 10px 8px 0;
}

label, .description {
  font-size: 0.9rem;
  font-weight: 400;
  font-family: poppins;
  color: #616b74;
}

input, textarea, label {
  width: 100%;
  display: block;
}

input::placeholder, textarea::placeholder {
  color: #212121;
}

input, textarea {
  color: #212121;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #212121;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  outline: none;
}

textarea {
  resize: none;
}

input:hover, textarea:hover {
  opacity: 0.5;
}

#submit {
  margin-top: 40px;
}

#error {
  width: 40vw;
  margin: 1rem 0;
  font-size: 0.75rem;
  color: red;
}

#success-msg {
  width: 40vw;
  margin: 1rem 0;
  font-size: 0.75rem;
  color: green;
  transition-delay: 3s;
}
/*End contact form*/

/*Footer*/
.footer-section {
  background-color: var(--bzr-deep-blue);
  position: relative;
  overflow: hidden;
}
.footer-top {
  padding: 96px 32px 8px;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
}
.footer-logo {
  justify-self: center;
}

.footer-top p {
  color: #ffffff;
  text-align: center;
}

.footer-redes-list {
  margin-top: 20px;
  list-style-type: none;
  display: flex;
  justify-content: center;
}

.footer-redes-list li i {
  margin-right: 10px;
  font-size: 18px;
  display: inline-block;
}
.footer-info-container {
  justify-self: center;
  text-align: center;
}

.widget {
  justify-self: center;
  text-align: center;
}

.footer-redes-list {
  justify-self: center;
  text-align: center;
}

.footer-logo {
    display: block;
    max-width: 60px;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.newsletter-container {
  justify-self: right;
  align-self: center;
}

.widget-title {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

.news-letter-form {
  margin-top: 15px;
}
.news-letter-form input {
  padding: 12px 25px;
  border-radius: 3px;
  border: none;
}

.input-mail-newletter {
  background-color: rgba(255, 255, 255, 0.149);
}

.footer-bottom {
  padding: 13px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.149);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 12px;
}

.footer-bottom a {
 font-size: 12px;
}

.terms-privacy {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.terms-privacy li+li {
  margin-left: 30px;
}
.terms-privacy li a {
  position: relative;
  font-size: 12px;
}
.terms-privacy li a:after {
  position: absolute;
  content: '-';
  color: #ffffff;
  display: inline-block;
  top: 0;
  right: -18px;
}
.terms-privacy li+li a:after {
  display: none;
}

.video-frame {
  width: 100%;
  height: 560px;
}


@media (max-width: 768px) {
  .nav div.logo {
    padding-left: 0;
  }

  .nav {
    padding-top: 0;
  }

  .nav div.logo img {
    margin-top: 11px;
  }

  #hero-title {
    font-size: 40px;
  }

  .theme-btn, .theme-btn-s1{
    padding: 13px 20px;
    font-size: 12px;
  }

  .section {
    margin: 0;
  }

  .services-section, .about-section, .brand-slider-section,  .contact-section {
    padding: 80px 32px;
    max-width: 100%;
  }

  .video-section{
    padding: 0px 32px;
  }
  .video-frame {
    height: 250px;
  }

  /*Contacto*/
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    gap: 56px;
  }

  .terms-privacy li a {
    font-size: 10px;
}

.copy-right-text p {
  font-size: 10px;
}  

.copy-right-text a {
  font-size: 10px;
}  

#soluciones {
  margin-top: -24px;
}

}

@media (max-width: 991px) {
  h2 {
    font-size: 42px;
  }

  .theme-btn, .theme-btn-s1, .theme-btn-s3 {
    font-size: 13px;
    padding: 15px 25px;
  }
}

@media screen and (max-width: 600px) {
	.wrapper .carousel {
		grid-auto-columns: 100%;
	}

  #about-title {
    font-size: 17px;
  }

  .text p  {
    font-size: 14px;
  }


	.features-container {
    gap: 48px 24px;
  }

  .feature h3 {
    font-size: 16px;
  }
}
