* {
  margin: 0px;
  padding: 0px;
  font-family: "Inter";
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
*:focus {
  outline: none;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}
ul {
  margin: 0px;
  padding: 0px;
}
li {
  list-style: none;
  display: inline-block;
}
a {
  text-decoration: none;
}
p {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 300;
}
body {
  background-color: #fbfbfb;
}

.border-b {
  border-bottom: 1px solid #000;
}
.ph-10 {
  padding: 0px 10px;
}
.pv-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}
.pv-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.pv-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}
.pvb-240 {
  padding: 240px 0px;
}
.pvb-150 {
  padding: 150px 0px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-20 {
  padding-left: 20px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pl-50 {
  padding-left: 50px;
}
.pr-50 {
  padding-right: 50px;
}
.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-40 {
  margin-right: 40px;
}
.mr-50 {
  margin-right: 50px;
}
.ml-50 {
  margin-left: 50px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-80 {
  margin-top: 80px;
}
.mr-50 {
  margin-right: 50px;
}

.mr--200 {
  margin-right: -200px;
}
.mr--200.mr-50 {
  margin-right: 50px;
}
.ml-50 {
  margin-left: 50px;
}
.ml--200 {
  margin-left: -200px;
}
.ml--200.ml-50 {
  margin-left: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-20 {
  margin-bottom: 20px;
}
.w-33 {
  width: 32.5%;
}
.w-100 {
  width: 100%;
}
.w-70 {
  width: 70%;
}
.w-60 {
  width: 60%;
}
.w-50 {
  width: 49.5%;
}
.w-48 {
  width: 48%;
}

.header {
  width: 100%;
  transition: all 0.5s linear;
}

.header--hidden {
  top: -70px;
  position: fixed;
  left: 0px;
  z-index: 10;
}

.header--fixed {
  top: 0px;
  position: fixed;
  z-index: 10;
  left: 0px;
}
.box--p {
  padding: 30px 70px;
  border-radius: 5px;
}
.box--inline-block {
  display: inline-block;
}
.inline-block {
  display: inline-block;
}
.align-top {
  vertical-align: top;
}
.align-auto {
  margin: 0 auto;
}

.box--p--160 {
  padding: 160px 70px;
  border-radius: 5px;
}

.box--p--220 {
  padding: 220px 70px;
  border-radius: 5px;
}

.box--p--280 {
  padding: 280px 0px;
  border-radius: 5px;
}

.box--p--280-b-0 {
  padding: 280px 0px 0px;
  border-radius: 5px;
}

.sizer {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}

.sizer--inner {
  width: 80%;
  margin: 0 auto;
}
.btn {
  width: 190px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid;
  color: #000;
  transition: all 0.5s linear;
  cursor: pointer;
}
.btn.btn--wAuto {
  width: auto;
}

.btn.btn--wAuto i {
  font-size: 20px;
  padding: 10px;
}

.btn:hover {
  background-color: black;
  color: white;
  border-color: black;
}

.logo--small img {
  height: 85px;
  width: auto;
}
.btn--primary {
  color: white;
}
.btn--primary__purple {
  border-color: #423874;
  background-color: #423874;
}

.btn--primary__pastelMagent {
  border-color: #f8d0c5;
  background-color: #f8d0c5;
}

.btn--primary__greenDark {
  border-color: #1898a5;
  background-color: #1898a5;
}

.btn--primary__purpleLight {
  border-color: #5221e5;
  background-color: #5221e5;
}

.btn--primary__greenPastel {
  border-color: #1898a5;
  background-color: #1898a5;
}

.btn--secondary {
  background-color: transparent;
}
.btn--secondary__purple {
  border-color: #423874;
}
header {
  height: 70px;
  background-color: white;
}
header nav {
  position: relative;
  z-index: 5;
}
header nav li {
  position: relative;
}

header nav li:first-child a::after {
  display: none;
}
header nav li a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 2px;
  background-color: #4f1de6;
  transition: all 0.5s linear;
}
header nav li:hover a::after {
  width: 100%;
}
header nav li a {
  font-size: 14px;
  line-height: 70px;
  padding: 0px 20px;
  color: black;
  display: inline-block;
  height: 70px;
  position: relative;
  cursor: pointer;
}

header nav li a img {
  width: 100px;
  height: auto;
  margin-bottom: -5px;
}
.logo--header {
  vertical-align: sub;
}

.content-- {
  position: relative;
}
.content-- h4 {
  font-size: 36px;
}

.content--blue {
  background-color: #65a9f9;
}

.content--blue-t {
  background-color: #3364b0;
}

.content--white {
  background-color: white;
}
.content--purple {
  background-color: #c4b6ff;
}
.content--pastel--green {
  background-color: #b7e3e7;
}

.content--greenDark {
  background-color: #45beb3;
}

.content--pastel--greenFooter {
  background-color: #b7f1cf;
}

.content--purple {
  background-color: #c4b6ff;
}
.content--banner--img {
  width: 50%;
  background-image: url(../img/banner.png);
  background-repeat: no-repeat;
  position: absolute;
  background-position-x: right;
  background-size: contain;
  top: 0px;
  right: 0px;
  height: 604px;
}
.color--ow--green {
  background-color: rgba(0, 149, 60, 0.61);
}
.color--hr--green {
  background-color: #42cea9;
}
.color--flip--black {
  background-color: #000;
}
.color--vision--light {
  background-color: #8de3dc;
}
.color--pastelGreen {
  background-color: #b7f1cf;
}
.color--magent {
  background-color: #e6005b;
}
.color--pastelOrange {
  background-color: rgba(246, 165, 144, 0.5);
}
.color--pastelGrey {
  background-color: #ddd;
}
.color__greenDark {
  background-color: #1898a5;
}
.content--banner {
  height: 534px;
}
.content--banner h3 {
  font-size: 41px;
  margin-bottom: 40px;
}
.content--banner h3 span {
  color: #423874;
}

.title--big {
  font-size: 160px;
}
.text--color__pastelMagent {
  color: #f8d0c5;
}

.text--color__magent {
  color: #e6005b;
}
.text--color__greenDark {
  color: #1898a5;
}
.text--color--white {
  color: white;
}
.text--color__greenLight {
  color: #b7f1cf;
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}

.content--banner h3 span:first-child {
  font-size: 48px;
}
.content--banner__flex,
.content--generic__flex {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 100%;
}
.content--generic__flex--right {
  justify-content: right;
}
.content--generic__flex--right--selfend {
  align-items: self-end;
}
.bk-white {
  background-color: white;
}
.portafolio--apps {
  height: auto;
}
.portafolio--apps__movil_1 {
  margin-right: -480px;
  right: 50%;
  top: 0px;
  z-index: 3;
  transition: all 0.5s linear;
}
.portafolio--apps__movil_1.portafolio--apps__movil_1--on {
  top: -100px;
}
.portafolio--apps__movil_1 img {
  width: 697px;
  height: auto;
}
.portafolio--apps__movil_2 img {
  width: 697px;
  height: auto;
}
.portafolio--apps__movil_2.portafolio--apps__movil_2--on {
  top: 215px;
}
.portafolio--apps__movil_2 {
  right: 50%;
  margin-right: -800px;
  top: 130px;
  transition: all 0.5s linear;
  z-index: 2;
}

h4 span {
  height: auto;
  color: #4f1de6;
}
.portafolio--apps--others {
  height: auto;
}
.circle--wrapper {
  text-align: center;
  width: 100%;
}
.circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.5s linear;
}
.circle:hover {
  background-color: #ccc;
  transition: all 1s linear;
}
.circle a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.circle img {
  padding: 0px 20px;
  max-width: 185px;
}
.circle--white {
  background-color: white;
}
.circle--purple {
  background-color: #7d5be2;
}

.aboutMeActive .circle--static--big {
  width: 800px;
  transition: all 0.5s linear;
}

.circle--static--big {
  width: 2000px;
  height: 800px;
  border-radius: 50%;
  left: 50%;
  margin-left: -860px;
  top: 80px;
  transition: all 0.5s linear;
}
.circle--static--small {
  margin-right: 0px;
  top: 100px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  right: 50%;
  transition: all 0.5s linear;
}

.aboutMeActive .circle--static--small {
  margin-right: -600px;
  top: 500px;
}

.portafolio--web {
  background-image: url("../img/bk_web.png");
  height: 978px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.bk_ow {
  right: 0px;
  top: 50%;
  margin-top: -245px;
}

.skills--description li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  font-weight: 300;
}
.skills--description li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f6a590;
  position: absolute;
  left: 0px;
  top: 3px;
}

.skills--tools--rating .rating--item {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}

.skills--tools > li {
  padding-left: 60px;
  position: relative;
}

.skills--tools > li::before {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0px;
  top: 0px;
  background-size: contain;
  background-repeat: no-repeat;
}
.skills--tools--figma::before {
  background-image: url("../img/logo_figma.svg");
}
.skills--tools--ilustrator::before {
  background-image: url("../img/logo_ilustrator.svg");
}
.skills--tools--sketch::before {
  background-image: url("../img/logo_sketch.svg");
}
.skills--tools--photoshop::before {
  background-image: url("../img/logo_photoshop.svg");
}
.skills--tools--invision::before {
  background-image: url("../img/logo_invision.svg");
}
.skills--tools--marvel::before {
  background-image: url("../img/logo_marvel.svg");
}
.skills--tools--zeplin::before {
  background-image: url("../img/logo_zeplin.svg");
}

.border-r {
  border-right: 1px solid #d9d9d9;
}
.border-l {
  border-left: 1px solid #d9d9d9;
}

footer span {
  font-size: 14px;
}

footer span i {
  font-size: 14px;
  width: 25px;
  height: 25px;
  background-color: #333;
  color: #b7f1cf;
  border-radius: 50%;
  padding-top: 5px;
}

.color--xpert--dark {
  background-color: #7d5be2;
}
.color--plustv--light {
  background-color: #4598fb;
}

/* ------------------------xpert */

.banner--web--img {
  right: 50%;
  bottom: -160px;
  margin-right: -600px;
}

.banner--web--img img {
  width: 490px;
}

.banner--xpert--img {
  right: 50%;
  bottom: -160px;
  margin-right: -685px;
}

.banner--xpert--img img {
  width: 905px;
  height: auto;
}
.content--flowChart-list > div {
  vertical-align: top;
}
.content--flowChart-list strong {
  display: block;
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.show_mob {
  display: none;
}
#banner--ow--img {
  right: 0%;
  margin-right: 0px;
  width: 50%;
  bottom: -50px;
}
#banner--ow--img img {
  width: 700px;
}
.logo_fixed img {
  width: 300px;
}

@media only screen and (max-width: 1046px) {
  nav ul.sizer--inner {
    width: 100%;
  }
  nav.sizer {
    width: 100%;
  }
  .sizer {
    width: 100%;
    padding: 0px 20px;
  }
  .circle {
    width: 200px;
    height: 200px;
  }
  header nav li a {
    padding: 0 10px;
  }

  .content--generic__flex.sizer {
    padding: 40px 20px;
  }

  article .sizer {
    padding: 0 20px;
  }
  .portafolio--apps__movil_2 img {
    width: 597px;
    height: auto;
  }
  .portafolio--apps__movil_1 img {
    width: 497px;
    height: auto;
  }
  .w-50 {
    width: 80%;
  }
  .color--xpert--dark .w-50,
  .color--flip--black .w-50,
  .color--vision--light .w-50,
  .color--plustv--light .w-50 {
    width: 50%;
  }
  .letstalk--items {
    padding: 0px 20px;
  }
  .title--big {
    padding: 0px 10px;
  }
  .banner--xpert--img img,
  .banner--web--img img {
    width: 600px;
    height: auto;
  }

  .banner--web--img img {
    width: 350px;
    height: auto;
  }

  .banner--xpert--img {
    right: 50%;
    bottom: -125px;
    margin-right: -450px;
  }

  .banner--web--img {
    right: 50%;
    bottom: -148px;
    margin-right: -445px;
  }
  .color--xpert--dark,
  .color--flip--black,
  .color--vision--light,
  .color--plustv--light {
    padding-top: 100px;
  }
  footer {
    padding: 20px;
  }
  .flex-column {
    flex-direction: column;
  }
  #samsung img[src="./img/banner_ow_c_.webp"] {
    width: 100%;
  }
}

@media only screen and (max-width: 1132px) {
  .letstalk--items li {
    display: block;
    margin: 20px 0px;
    padding: 0px;
    border: 0px;
  }
}

@media only screen and (max-width: 825px) {
  #Prototype h3 {
    font-size: 5.5em;
  }
  .color--hr--green.banner,
  .color--ow--green.banner {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 790px) {
  nav {
    background-color: white;
  }
  .hide_mob {
    display: none;
  }
  .show_mob {
    display: block;
  }
  .btn_menu_mob {
    top: 10px;
    right: 20px;
    font-size: 35px;
    border: 0px;
    background-color: transparent;
  }
  .sizer--inner.content--banner__flex {
    width: 100%;
  }
  .sizer--inner.content--banner__flex > article {
    width: 100% !important;
  }
  .circle {
    margin: 20px auto !important;
    display: block;
  }
  .portafolio--apps__movil_1.portafolio--apps__movil_1--on {
    top: -305px;
  }
  .mob_box_content_wrapper .mob_box_content {
    width: 100%;
    padding: 30px;
  }
  .block {
    display: block !important;
  }
  #bk_otherWorks {
    position: relative;
    margin: 10px auto;
  }

  #bk_otherWorks img {
    width: 90%;
    margin: 55px auto;
    display: block;
  }
  .portafolio--aboutMe_content {
    padding: 0px;
  }
  .portafolio--aboutMe_content > article {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mob-100 {
    width: 100%;
  }
  .letstalk--items li {
    display: block;
    margin: 20px 0px;
    padding: 0px;
    border: 0px;
  }
  .mob_menu {
    overflow: hidden;
    height: 0px;
    transition: all 0.5s linear;
  }
  .mob_menu_on {
    height: 70px;
  }
  .hide {
    display: none !important;
  }
}

@media only screen and (max-width: 475px) {
  header nav li a {
    padding: 0 5px;
    font-size: 12px;
  }
  nav.sizer {
    padding: 5px;
  }
  .title--big {
    font-size: 120px;
  }
  #Prototype h3 {
    font-size: 4em;
    text-align: center;
  }
  #Prototype button {
    width: 100%;
  }
  .content--flowChart-list > div,
  .Usability--list > div {
    width: 100%;
  }
  .mob-block {
    display: block !important;
  }
  .banner-box {
    width: 100% !important;
  }
  .mob_mt-20 {
    margin-top: 20px;
  }
  .banner-img {
    display: block;
    position: relative;
    margin: 0 auto;
    right: auto;
    bottom: 0;
  }
  .banner-img img {
    width: 160%;
    height: auto;
    margin-left: -80%;
    left: 50%;
    position: relative;
    margin-bottom: -155px;
  }
  .mob-none {
    display: none;
  }
}
