:root {
  --aqua: #7ae7c7;
  --yellow: #f5a12d;
  --black-background: #212529;
  --font-title: "Lato";
  --font-sub-title: "MerriweatherSans-Semi";
  --body-font: "Lato-Regular.ttf";
}

/* font-family:  */
@font-face {
  font-family: "Lato";
  font-weight: 300;
  font-style: normal;
  src: local("Lato-Bold.ttf"),
    url("../assets/fonts/Lato/Lato-Bold.ttf") format("TrueType");
}
@font-face {
  font-family: "Lato-Regular.ttf";
  font-weight: normal;
  font-style: normal;
  src: local("Lato-Regular.ttf"),
    url("../assets/fonts/Lato/Lato-Regular.ttf") format("TrueType");
}
@font-face {
  font-family: "MerriweatherSans-Semi";
  font-weight: normal;
  font-style: normal;
  src: local("MerriweatherSans-SemiBold"),
    url("../assets/fonts/Merriweather_Sans/static/MerriweatherSans-BoldItalic.ttf")
      format("TrueType");
}
p {
  font-size: 15px;
  line-height: 25px;
}

section {
  padding: 25px 0 35px;
  background: #fff;
}

body {
  position: relative; /* we need this for the scrollspy */
  font-size: 14px;
  font-family: var(--body-font);
}

a {
  color: #fff;
}

a:hover {
  color: #ff0;
}

@media (max-width: 320px) {
  #totoni .baner-content h1 {
    font-size: 47px !important;
  }
  #totoni .first-content {
    top: 14rem;
    position: relative;
  }
}
@media (max-width: 375px) {
  #totoni .baner-content h1 {
    font-size: 50px;
  }
  #totoni .first-content {
    top: 20rem;
    position: relative;
  }
}

@media (max-width: 425px) {
  #totoni .baner-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 768px) {
  #totoni .baner-content h1 {
    font-size: 66px;
  }
  #totoni .first-content {
    top: 18rem;
    position: relative;
  }
  #altave .service-content .left-text .line-dec {
    width: 45px;
    height: 3px;
    background-color: #f5a12d;
    margin: 20px auto 20px auto;
  }
}

#altave .primary-button a {
  background-color: #f5a12d;
}

#altave .primary-button a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

#altave .projects-content {
  background-color: #00000087;
}

#altave .tabs-content {
  background-color: #f5a12d;
}

#altave .service-content .left-text h4 {
  color: #f5a12d;
}

#altave .service-content .service-item .line-dec {
  background-color: #f5a12d;
}

@media (max-width: 320px) {
  #chima .baner-content h1 {
    font-size: 47px !important;
  }
}
@media (max-width: 375px) {
  #chima .baner-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 425px) {
  #chima .baner-content h1 {
    font-size: 55px;
  }
}
/*//////////////////////////////////////////////////////////////////
////////////////////////// Navbar /////////////////////////////// 
///////////////////////////////////////////////////////////////////*/
.link-ojo a {
  font-size: 1.125rem;
}
.logo-img {
  width: 140px;
  height: auto;
}
.logo-especial {
  width: 90px;
}
.fixed-navbar-light {
  background-color: rgb(29, 29, 29);
  /* box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%); */
}

/* Animaciones  */
.fadeIn {
  opacity: 0;
  transform: translate(0, 2vh);
  transition: all 1s;
}

.fadeInLeft {
  opacity: 0;
  transform: translate(10vh, 0vh);
  transition: all 1s;
}

.fadeInRight {
  opacity: 0;
  transform: translate(10vh, 0vh);
  transition: all 1s;
}

.zoomIn {
  opacity: 0;
  transform: translate(-10vh, 0vh);
  transition: all 1s;
}

.visible {
  opacity: 1;
  transform: translate(0, 0);
}
/*----------
  NAV
----------*/

.fixed-side-navbar {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99999;
  margin-top: -100px;
  text-align: right;
  padding: 30px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fixed-side-navbar:hover {
  background: transparent;
}
.fixed-side-navbar:hover .nav > li > a > span {
  color: rgba(0, 0, 0, 0.5);
  display: block;
  background-color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  padding: 2px 12px;
  border-radius: 15px;
}
.fixed-side-navbar .nav > li a.active {
  background-color: transparent;
  color: black;
}
.fixed-side-navbar .nav > li a.active:after {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.fixed-side-navbar .nav > li a.active:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
}
.nav > li {
  position: relative;
  display: block;
}
.fixed-side-navbar .nav > li a {
  color: #fff;
  min-height: 32px;
  background: transparent;
  padding: 5px 45px 5px 25px;
  border-right: none;
}
.fixed-side-navbar .nav > li a span {
  display: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.fixed-side-navbar .nav > li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(250, 250, 250, 0.75);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}
.fixed-side-navbar .nav > li a:hover {
  background-color: transparent;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-color: black;
  boder-right: 0;
}
.fixed-side-navbar .nav > li a:hover > span {
  color: black;
  display: block;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.baner-content h1 {
  margin-top: 195px;
  font-size: 71px;
  font-family: var(--font-title);
  color: #d7d1c1;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.parallax-content {
  width: 100%;
  min-height: 75vh;
  background-size: cover;
}

.baner-content span {
  display: inline-block;
  margin-top: -20px;
  font-weight: 300;
  font-size: 48px;
  color: #fff;
}

.baner-content .primary-button {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .ari_pods,
  .beats,
  .apple_watch,
  .galaxy_buds {
    width: 100%;
    height: 100vh;
    padding: 1px 20px;
  }
  .baner-content h1 {
    margin-top: 0px;
    font-size: 128px;
    font-family: var(--font-title);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0px;
  }

  .baner-content h1 {
    font-size: 45px;
  }

  .baner-content span {
    font-size: 24px;
  }

  .baner-content .primary-button {
    margin-top: 15px;
  }

  .service-content {
    padding-top: 11vh;
    text-align: initial;
  }

  .service-content .left-text ul {
    text-align: left;
  }

  .service-content .service-item {
    font-family: var(--body-font);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px 0px;
    text-align: left;
    color: #fff;
    margin-bottom: 29px;
  }
}

.service-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15vh;
  background-color: #1d1d1d;
  background-attachment: fixed;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
}

.service-content .left-text h4 {
  font-size: 24px;
  font-weight: 500;
  color: #f5a12d;
  font-family: var(--font-sub-title);
}

.breadcrumb {
  background-color: #e9ecef00 !important;
}
#altave .baner-content {
  padding-top: 49vh;
  text-align: center;
  background-image: url("../img/img-alta-4.JPG");
}
.breadcrumb-item.active {
  color: #ecab0f !important;
}

h4,
.h4 {
  font-size: 18px;
}

.service-content .left-text .line-dec {
  width: 45px;
  height: 3px;
  background-color: #f5a12d;
  margin: 20px 0px 20px 0px;
}

.service-content .left-text p {
  color: #fff;
}

.service-content .left-text ul {
  padding: 0;
  margin-top: 30px;
  list-style: none;
}

.service-content .left-text ul li {
  margin: 15px 0px;
  font-weight: 600;
  color: #fff;
}

.service-content .left-text .primary-button {
  margin: 30px 0px;
}

.service-content .service-item {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 25px 30px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.service-content .service-item .line-dec {
  width: 45px;
  height: 3px;
  background-color: #f5a12d;
  margin: 20px auto 15px auto;
}

/*//////////////////////////////////////////////////////////////////
////////////////////////// Navbar /////////////////////////////// 
///////////////////////////////////////////////////////////////////*/
.link-ojo a {
  font-size: 1.125rem;
}
.logo-img {
  width: 140px;
  height: auto;
}
.logo-especial {
  width: 90px;
}
.fixed-navbar-light {
  background-color: rgb(29, 29, 29);
  /* box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%); */
}
@media screen and (max-width: 480px) and (min-width: 320px) {
  .fixed-navbar-light {
    background-color: rgb(29, 29, 29);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  }
  .logo-img {
    width: 6rem;
    height: auto;
  }
  .logo-especial {
    width: 6rem;
  }
}

.projects-content {
  padding-block: 8vh;
  background-color: #f5a12d;
}

.projects-content .item img {
  width: 100%;
}

.projects-content .item {
  margin: 15px;
}
.testimonials-item {
  border: solid #fff 18px;
}
.projects-content .item .text-content {
  background-color: #fff;
  text-align: inherit;
  padding: 20px;
}
.cifras {
  font-size: 24px;
  font-weight: 500;
  color: #f5a12d;
  font-family: var(--font-sub-title);
}
.projects-content .item .text-content h4 {
  margin-top: 0px;
  font-size: 19px;
  font-weight: 600;
}

.projects-content .item .text-content span {
  font-style: normal;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
}

.tabs-content {
  /* padding-left: 0px; */
  /* padding-right: 0px; */
  /* padding-top: 1vh; */
  background-color: #f5a12d;
  /* background-image: url(../img/4th-section.jpg); */
  background-attachment: fixed;
  /* min-height: 72vh; */
  background-size: cover;
  background-position: center center;
}
section {
  background-color: transparent;
  padding-bottom: 15px;
}

.wrapper {
  text-align: center;
}

.tabs {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.tabs li {
  display: inline-block;
  text-align: center;
  margin: 10px;
}

.tabs a {
  display: block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 15px;
  border: 4px solid #fff;
}

.tabs a:hover {
  color: var(--blue);
}

.tabs .active {
  border: 4px solid var(--blue);
}

.tabgroup div {
}

.tabgroup p {
  line-height: 13px;
  /* background-color: rgba(0, 0, 0, 0.5); */
  color: #252b30;
  padding: 7px;
  font-size: 11px;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.contact-form {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 25px;
  margin-bottom: 30px;
}

#contact input {
  border-radius: 3px;
  padding-left: 15px;
  font-size: 13px;
  color: #232323;
  background-color: rgba(250, 250, 250, 1);
  outline: none;
  border: none;
  box-shadow: none;
  line-height: 50px;
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
}

#contact textarea {
  border-radius: 3px;
  padding-left: 15px;
  padding-top: 10px;
  font-size: 13px;
  color: #232323;
  background-color: rgba(250, 250, 250, 1);
  outline: none;
  border: none;
  box-shadow: none;
  height: 165px;
  max-height: 220px;
  width: 100%;
  margin-bottom: 25px;
}

#contact button {
  display: inline-block;
  background-color: var(--blue);
  padding: 15px 24px;
  width: 100%;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.map {
  margin-bottom: 30px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
}

footer {
  text-align: center;
  background-color: #282b2f;
  padding: 70px 0px;
}

footer .primary-button {
  margin-bottom: 30px;
}

footer ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

footer ul li {
  display: inline-block;
  margin: 0px 4px;
}

footer ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background-color: var(--blue);
  color: #282b2f;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.5s;
  font-size: 17px;
}

footer ul li a:hover {
  color: #282b2f;
  background-color: #ff8e43;
}

footer p {
  font-size: 12px;
  color: #fff;
  margin-top: 15px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
}

footer em {
  color: #ff8e43;
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 767px) {
  .nav-link {
    font-size: 41px;
  }
  .service-content .left-text .line-dec {
    width: 45px;
    height: 3px;
    background-color: #f5a12d;
    margin: 20px auto 20px auto;
  }
  .baner-content {
    padding-top: 30vh;
  }

  .baner-content h1 {
    position: relative;
    font-size: 40px;
    top: -9rem;
  }

  .baner-content span {
    font-size: 24px;
  }

  .baner-content .primary-button {
    margin-top: 15px;
  }

  .service-content {
    padding-top: 11vh;
    text-align: initial;
  }

  .service-content .left-text ul {
    text-align: left;
  }

  .service-content .service-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px 0px;
    text-align: left;
    color: #fff;
    margin-bottom: 29px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
