.row {
  margin-right: 0px;
  margin-left: 0px;
}

/*
*************************************
        | COLORS
*************************************
*/
:root {
  --gray-light: #f4f5f9;
  --white-egg: #F5F5F5;
  --white: #fff;
}

body {
  color: #797979;
}

.p-tb {
  padding: 85px 0px 105px 0px;
}

h4 {
  font-family: 'open_sanssemibold';
  font-size: 1.286rem;
  line-height: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h3 {
  font-family: 'source_sans_proregular';
  font-size: 1.714rem;
  line-height: 2.5rem;
  color: #fff;
}

h2 {
  font-family: 'source_sans_probold';
  font-size: 2.571rem;
  line-height: 3rem;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-weight: 300;
  margin: 0;
}

h1 {
  font-family: 'open_sansbold';
  font-size: 5.143rem;
  line-height: 5.5rem;
  color: #fff;
  letter-spacing: .4rem;
}

p {
  font-family: 'source_sans_proregular';
}

a:hover {
  text-decoration: none;
  color: #F5F5F5;
}

.btn {
  display: inline-block;
  text-decoration: none;
  min-width: 150px;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 20px;
  font-size: 0.8125rem;
  border-radius: 0px;
  margin-top: 20px;
  -webkit-transition: .5s;
  transition: .5s;
  border: 1px solid #e74c3c;
  font-family: 'open_sansbold';
  padding: 0.8rem 3rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  border-radius: 2px;
}

.btn:hover {
  color: #fff;
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
}

.btn-secon {
  border: 1px solid #fff;
}

.btn-secon:hover {
  background: #e74c3c;
  color: #fff;
}

.btn-prima {
  background: #e74c3c;
}

.separador {
  background: #e74c3c;
  width: 10px;
  height: 10px;
  margin: 20px auto;
  border-radius: 50%;
  position: relative;
}

.separador::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 1px;
  background: #F5F5F5;
  top: 5px;
  left: 20px;
}

.separador::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 1px;
  background: #F5F5F5;
  top: 5px;
  right: 20px;
}

.separador2 {
  margin: 10px 50px;
  width: 50px;
  height: 3px;
  background: #F5F5F5;
}

.separador3 {
  width: 45px;
  height: 2px;
  margin: 20px auto;
  background: #6a6a6a;
}

/*
*************************************
        | HEADER
*************************************
*/
.header-area .main-menu,
.header-area .main-menu, .dropdown-menu {
  -webkit-box-shadow: 0 3px 16 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 16 0 rgba(0, 0, 0, 0.1);
}

.header-area .main-menu .navbar {
  height: 10vh;
}

.header-area .main-menu .navbar a {
  font-size: 14px;
  color: var(--white-egg);
  padding: 20px;
}

.header-area .main-menu .navbar a:hover {
  font-weight: 600;
  color: #e74c3c;
  -webkit-box-shadow: 0 -1px inset;
          box-shadow: 0 -1px inset;
}

.header-area .main-menu .navbar a:hover {
  font-weight: 600;
  color: #e74c3c;
  -webkit-box-shadow: 0 -1px inset;
          box-shadow: 0 -1px inset;
}

.scroll-header {
  background: rgba(106, 106, 106, 0.5);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.logo {
  position: relative;
  border: 1px solid var(--white-egg);
  font-size: 25px;
  color: var(--white-egg);
  padding: 8px;
  -webkit-box-shadow: 35px 0px inset;
          box-shadow: 35px 0px inset;
}

header p {
  line-height: 90%;
  margin-top: 0;
  margin-bottom: 0rem;
  letter-spacing: 7px;
  color: black;
}

header span {
  color: var(--white-egg);
}

.scroll-top {
  width: 20px;
  height: 45px;
  z-index: 10;
}

.scroll-top .up {
  padding: 0;
  font-size: 30px;
  color: rgba(121, 121, 121, 0.5);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #F5F5F5;
  margin: 5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@-webkit-keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.toggle .line1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
}

.nav-links li {
  list-style: none;
}

.nav-links ul {
  padding: 0px;
}

/*
*************************************
        | MAIN-BANNER
*************************************
*/
.main-banner {
  min-height: 95vh;
  width: 100%;
  background: url(../recursos/img/Background.png) no-repeat center center;
  background-size: cover;
  position: relative;
}

.home {
  height: 100%;
  padding-top: 200px;
  padding-bottom: 200px;
  display: block;
  color: white;
}

.scrooldown {
  position: absolute;
  right: 48%;
  bottom: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: whitesmoke;
  cursor: pointer;
}

.scrooldown a {
  margin: -40px;
  font-size: 25px;
  color: #e74c3c;
}

.text-home p {
  color: #fff;
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: 30px;
  font-size: 1.125rem;
}

/*
*************************************
        | Feature
*************************************
*/
.icon-feature {
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 20px auto;
  position: relative;
}

.icon-feature::before {
  content: "";
  position: absolute;
  border: 1px solid lightgrey;
  height: 100%;
  width: 100%;
  right: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.icon-feature:hover::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 1px solid #e74c3c;
}

.icon-feature i {
  color: #e74c3c;
}

.whoweare p {
  padding: 10px;
  line-height: 2rem;
  font-size: 0.875rem;
  font-family: 'open_sanssemibold';
}

/*
*************************************
        | section history
*************************************
*/
.title-history {
  border-left: 6px solid #e74c3c;
  padding: 0 30px;
  margin-bottom: 70px;
}

.img-history {
  width: 90%;
  margin: 20px;
}

/*
*************************************
        | section services
*************************************
*/
.services {
  background: #202020;
  position: relative;
}

.services .img-services {
  position: absolute;
  color: #e74c3c;
  width: 60px;
  height: 60px;
  border: 5px solid #797979;
  border-radius: 50%;
  font-size: 30px;
  background: #F5F5F5;
  left: 100%;
  z-index: 1;
}

.services .img-services i {
  margin: 10px;
}

.services h2 {
  color: #F5F5F5;
  margin-top: 30px;
}

.services h4 {
  color: #e74c3c;
}

.services p {
  color: #797979;
  font-family: 'source_sans_proregular';
  line-height: 2rem;
  font-size: 0.875rem;
  padding-bottom: 30px;
}

.services img {
  width: 100%;
  height: 100%;
}

.title-services {
  border-right: 6px solid #e74c3c;
  padding: 0 30px;
  margin-bottom: 50px;
}

/*
*************************************
        | section porfolio
*************************************
*/
.porfolio {
  color: #797979;
}

.porfolio h2 {
  padding-bottom: 25px;
}

.img-porfolio {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 85px;
  padding-bottom: 105px;
}

.img-porfolio img {
  width: 25%;
  height: 330px;
}

.links-porfolio {
  width: 100%;
  text-align: center;
}

.links-porfolio a {
  text-align: center;
  color: #797979;
  text-decoration: none;
  cursor: pointer;
  margin-right: 10px;
  font-family: 'montserratregular';
  font-size: 0.8125rem;
  letter-spacing: 1px;
  padding: 0px 15px;
}

.links-porfolio a::after {
  content: "/";
  margin-left: 40px;
}

/*
*************************************
        | section case study
*************************************
*/
.case-study {
  padding-bottom: 85px;
}

.case-study h2 {
  color: #797979;
}

.case.study p {
  color: #797979;
  font-family: 'source_sans_proregular';
  line-height: 2rem;
  font-size: 0.875rem;
  padding-bottom: 30px;
}

.icon-case {
  height: 120px;
  position: relative;
  line-height: 5;
  color: white;
  font-size: 18px;
}

.icon-case::before {
  content: "";
  position: absolute;
  left: 45%;
  top: 15%;
  width: 60px;
  height: 60px;
  background: #e74c3c;
  z-index: -1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.case-study p {
  color: #797979;
  font-family: 'source_sans_proregular';
  line-height: 2rem;
  font-size: 0.875rem;
  padding: 20px 100px;
}

.carousel-indicators li {
  width: 5px;
  height: 5px;
  margin-right: 10px;
  margin-left: 10px;
  background-color: #797979;
}

.carousel-indicators .active {
  background-color: #e74c3c;
}

.carousel-indicators {
  bottom: -40px;
}

.img-case {
  position: relative;
}

.img-case img {
  width: 100%;
  height: 700px;
}

.cases {
  background: #F5F5F5;
  position: absolute;
  padding: 50px 0;
  max-width: 600px;
  height: 600px;
  right: -25%;
  top: 5%;
  z-index: 3;
  -webkit-box-shadow: 0px 25px 42px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 25px 42px rgba(0, 0, 0, 0.2);
}

/*
*************************************
        | section status
*************************************
*/
.status {
  background: url(../recursos/img/PutYourImage3.png) no-repeat center center;
  height: 350px;
  background-size: cover;
}

.rect h2 {
  color: #F5F5F5;
}

.rect {
  width: 15%;
}

.icon-rect {
  margin: auto;
  border: 1px solid #F5F5F5;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  font-size: 30px;
  line-height: 2.2;
  color: #F5F5F5;
  margin-bottom: 30px;
}

.rect p {
  color: #F5F5F5;
  font-family: 'source_sans_proregular';
  line-height: 2rem;
  font-size: 0.775rem;
}

/*
*************************************
        | section pricing
*************************************
*/
.princing .separador {
  margin-bottom: 70px;
}

.cards {
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  max-width: 400px;
  position: relative;
  background: #f4f5f9;
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 25px 42px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 25px 42px rgba(0, 0, 0, 0.2);
}

.card:hover {
  -webkit-transform: translateY(-1%);
          transform: translateY(-1%);
}

.card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 200px;
  background: rgba(121, 121, 121, 0.7);
  z-index: -1;
}

.premiun .card::before {
  background: #e74c3c;
}

.precio {
  width: 150px;
  height: 150px;
  margin: 30px auto;
  border-radius: 50%;
  border: 1px solid rgba(121, 121, 121, 0.2);
  -webkit-box-shadow: 0px 0px 0px 10px rgba(244, 245, 249, 0.3);
          box-shadow: 0px 0px 0px 10px rgba(244, 245, 249, 0.3);
  background: white;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.precio:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.precio h2 {
  margin-top: 30px;
}

.premiun .precio h2 {
  color: #e74c3c;
}

.precio p {
  font-size: 0.941rem;
}

.card .card-text {
  line-height: 33px;
}

.card .btn-secondary {
  border: none;
}

/*
*************************************
        | section team
*************************************
*/
.team-first {
  background: url("../recursos/img/team.png");
  position: relative;
}

.team-first:before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background: url(../recursos/img/teambg2.png) no-repeat bottom center;
  background-size: cover;
}

.main-team ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-team ul li {
  text-align: center;
  font-size: 12px;
  font-family: 'open_sanssemibold';
}

.main-team ul li:nth-child(1) {
  position: absolute;
  left: 18%;
  top: 47%;
}

.main-team ul li:nth-child(2) {
  position: absolute;
  left: 33%;
  top: 45%;
}

.main-team ul li:nth-child(3) {
  position: absolute;
  left: 48%;
  top: 45%;
}

.main-team ul li:nth-child(4) {
  position: absolute;
  left: 63%;
  top: 50%;
}

.main-team ul li:nth-child(5) {
  position: absolute;
  left: 78%;
  top: 50%;
}

.img-team img {
  -webkit-box-shadow: 0px 0px 0px 5px rgba(231, 76, 60, 0.8);
          box-shadow: 0px 0px 0px 5px rgba(231, 76, 60, 0.8);
  border-radius: 50%;
  margin-bottom: 30px;
  cursor: pointer;
}

.text-team h4 {
  color: #e74c3c;
  text-transform: none;
}

.text-team {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  display: none;
  position: relative;
}

.img-team:hover + .text-team {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  position: absolute;
  display: block;
}

.others p {
  margin: 20px 0px 20px 0px;
  font-size: 0.941rem;
}

.others .img-others {
  height: 140px;
  padding: 0;
}

.others .img-others .inner {
  padding: 20px 0;
}

.img-others:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.img-others-in {
  width: 70%;
  height: 100px;
  padding: 20px;
  border: 1px solid #f4f5f9;
  -webkit-box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.25);
}

/*
*************************************
        | section Blog
*************************************
*/
.blog h2 {
  margin-bottom: 20px;
}

.blog-img {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.blog-img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.blog-text {
  height: 100%;
  padding: 0;
  background: #e74c3c;
  position: relative;
}

.eyelash::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  top: 40%;
  right: -25px;
  background: #e74c3c;
  z-index: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.blog-text p {
  padding: 10px 50px;
  font-size: 0.941rem;
  line-height: 2;
  color: #F5F5F5;
}

.blog-text p:first-child {
  padding-top: 50px;
}

.blog-text h3, a {
  padding: 0px 50px;
  color: #F5F5F5;
}

/*
*************************************
        | section contact
*************************************
*/
.contact h3 {
  color: #e74c3c;
  margin-bottom: 20px;
}

.contact p {
  margin-bottom: 40px;
}

.data-contact {
  width: 96%;
  height: 100%;
  background: #F5F5F5;
  margin: 0px 30px;
  padding: 80px;
}

.form-contact {
  width: 90%;
  height: 100%;
  background: #F5F5F5;
  padding: 80px;
}

.name {
  width: 100%;
  position: relative;
  height: 60px;
}

.name input {
  width: 100%;
  height: 100%;
  color: #6a6a6a;
  padding-top: 20px;
  border: none;
  outline: none;
  background: #f4f5f9;
}

.name label {
  position: absolute;
  margin-bottom: 0px;
  bottom: 0px;
  left: 0%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid #797979;
}

.name label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 100%;
  width: 0%;
  border-bottom: 2px solid #e74c3c;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-name {
  position: absolute;
  bottom: 5px;
  left: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.name input:focus + .label-name .content-name,
.name input:valid + .label-name .content-name {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  font-size: 14px;
  color: #e74c3c;
}

.name input:focus + .label-name::after,
.name input:valid + .label-name::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  width: 100%;
}

.email {
  width: 100%;
  position: relative;
  height: 60px;
}

.email input {
  width: 100%;
  height: 100%;
  color: #6a6a6a;
  padding-top: 20px;
  border: none;
  outline: none;
  background: #f4f5f9;
}

.email label {
  position: absolute;
  margin-bottom: 0px;
  bottom: 0px;
  left: 0%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid #797979;
}

.email label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 100%;
  width: 0%;
  border-bottom: 2px solid #e74c3c;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-email {
  position: absolute;
  bottom: 5px;
  left: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.email input:focus + .label-email .content-email,
.email input:valid + .label-email .content-email {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  font-size: 14px;
  color: #e74c3c;
}

.email input:focus + .label-email::after,
.email input:valid + .label-email::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  width: 100%;
}

.subjet {
  width: 100%;
  position: relative;
  height: 60px;
}

.subjet input {
  width: 100%;
  height: 100%;
  color: #6a6a6a;
  padding-top: 20px;
  border: none;
  outline: none;
  background: #f4f5f9;
}

.subjet label {
  position: absolute;
  margin-bottom: 0px;
  bottom: 0px;
  left: 0%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid #797979;
}

.subjet label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 100%;
  width: 0%;
  border-bottom: 2px solid #e74c3c;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-subjet {
  position: absolute;
  bottom: 5px;
  left: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.subjet input:focus + .label-subjet .content-subjet,
.subjet input:valid + .label-subjet .content-subjet {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  font-size: 14px;
  color: #e74c3c;
}

.subjet input:focus + .label-subjet::after,
.subjet input:valid + .label-subjet::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  width: 100%;
}

.message {
  width: 100%;
  position: relative;
  height: 200px;
}

.message textarea {
  width: 100%;
  height: 100%;
  color: #6a6a6a;
  padding-top: 20px;
  border: none;
  outline: none;
  background: #f4f5f9;
}

.message label {
  position: absolute;
  margin-bottom: 0px;
  bottom: 0px;
  left: 0%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid #797979;
}

.message label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 100%;
  width: 0%;
  border-bottom: 2px solid #e74c3c;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.content-message {
  position: absolute;
  bottom: 5px;
  left: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.message textarea:focus + .label-message .content-message,
.message textarea:valid + .label-message .content-message {
  -webkit-transform: translateY(-800%);
          transform: translateY(-800%);
  font-size: 14px;
  color: #e74c3c;
}

.message textarea:focus + .label-message::after,
.message textarea:valid + .label-message::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  width: 100%;
}

.form-contact .btn {
  width: 50%;
  margin: 20px auto;
}

/*
*************************************
        | trivial
*************************************
*/
.parallax {
  width: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.trivial {
  color: #F5F5F5;
  padding: 70px 0 0 0;
}

.trivial h2 {
  margin-bottom: 20px;
}

.img-trivial {
  position: absolute;
  width: 100%;
  height: 700px;
  top: -50%;
  left: 0;
  z-index: -1;
}

/*
*************************************
        | footer
*************************************
*/
footer {
  background: black;
}

.media {
  width: 100%;
  margin: 40px 30px;
}

.media a {
  padding: 0 15px;
}

.media a:hover {
  color: #e74c3c;
}

.copyright {
  padding: 40px 50px;
}

.copyright p i {
  padding: 0px 10px;
  color: #ff0000;
}

/*
*************************************
        | RESPOSIVE
*************************************
*/
@media screen and (max-width: 480px) {
  h1 {
    font-size: 2.143rem;
    line-height: 2.5rem;
    letter-spacing: 0.4rem;
  }
  h3 {
    font-size: 1.0rem;
    line-height: 2.5rem;
  }
  .text-home p {
    font-size: 0.7rem;
  }
  .scrooldown {
    right: 45%;
    bottom: -10px;
  }
  .img-porfolio img {
    width: 80%;
    height: 330px;
  }
  .home {
    padding-top: 100px;
  }
  .whoweare p {
    padding: 10px 35px;
  }
  .main-team ul li:nth-child(1) {
    position: absolute;
    left: 8%;
    top: 40%;
  }
  .img-history {
    width: 90%;
    margin: 20px;
  }
  .services .img-services {
    left: 75%;
  }
  .services h4 {
    margin-right: 70px;
  }
  .services p {
    margin-right: 70px;
  }
  .case-study .p-tb {
    padding: 85px 0px 15px 0px;
  }
  .cases {
    display: block;
    padding: 0px;
    max-width: 400px;
    height: 600px;
    position: relative;
    right: auto;
    left: auto;
    top: 0;
  }
  .img-case {
    display: block;
    margin-top: 20px;
  }
  .img-case img {
    width: 100%;
    height: 100%;
  }
  .case-study p {
    padding: 10px 40px;
  }
  .case-study h4 {
    font-size: 1rem;
  }
  .carousel-item {
    margin-top: 30px;
  }
  .card {
    margin-bottom: 30px;
  }
  .princing p {
    margin: 0 20px;
  }
  .others p {
    margin: 0 20px;
  }
  .status {
    height: 500px;
  }
  .rect {
    width: 30%;
  }
  .eyelash::after {
    display: none;
  }
  .blog-text {
    padding: 0 0 27px 0;
  }
  .trivial {
    font-size: 90%;
  }
  .trivial h2 {
    font-size: 2rem;
  }
  .media, .copyright {
    padding: 0;
    margin: 20px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer {
    font-size: 90%;
  }
}

@media screen and (max-width: 780px) {
  .nav-links {
    position: absolute;
    right: 0;
    height: 100vh;
    top: 10vh;
    background-color: rgba(106, 106, 106, 0.95);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s ease-in;
    transition: -webkit-transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
  }
  .burger {
    display: block;
  }
  .nav-links li {
    opacity: 0;
  }
  .nav-active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .img-porfolio img {
    width: 50%;
    height: 330px;
  }
  .img-history {
    width: 90%;
    margin: 20px;
  }
  .cases {
    max-width: 500px;
    height: 550px;
  }
  .case-study p {
    padding: 10px 35px;
  }
  .icon-case {
    height: 100px;
  }
  .data-contact, .form-contact {
    width: 90%;
    height: 100%;
    background: #F5F5F5;
    margin: 10px auto;
    padding: 50px;
  }
}
/*# sourceMappingURL=stylus.css.map */