/* RESET STYLES */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    box-shadow: none;
    line-height: 1.3;
}

div {
    line-height: 0;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-size: 16px;
    line-height: 22px;
    position: relative;
    width: 100%;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong,
b {
    font-weight: 700;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    margin-left: 0;
}

button {
    appearance: none;
}

img {
    max-width: 100%;
}

/* STYLES */

:root {
    --pink: #ff0066;
    --pink-secondary: #AA135F;
    --blue: #0000cc;
    --blue-secondary: #000033;
    --red: #FF0000;
}

::-moz-selection {
    /* Code for Firefox */
    color: white;
    background: var(--pink);
}

::selection {
    color: white;
    background: var(--pink);
}

.grecaptcha-badge {
    visibility: hidden;
}

.flaticon-whatsapp:before {
    margin-left: .2rem !important;
}

a,
a:hover {
    color: var(--pink);
    text-decoration: none;
}

p {
    margin-bottom: 1rem;
    font-size: 17px;
    line-height: 1.3;
}

.body-hidden {
    overflow: hidden;
    height: 100vh;
}

input,
textarea,
select {
    display: block;
    font-size: 1rem;
    font-family: inherit;
    appearance: none;
    color: black;
}

input[type="checkbox"] {
    display: inline-block;
    margin-right: .5rem;
    appearance: radio;
}


/* Styles */

h1, h2, h3, h4, h5 {
    font-weight: 700;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: black;
}

.box {
    width: 100%;
    padding: 0 1rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.box--secondary {
    max-width: 850px;
}

.section {
    margin: 60px 0;
    line-height: 1.2;
}

.mb {
    margin-bottom: 60px;
}

.mb-3 {
    margin-bottom: 2.5rem !important;
}

.mt {
    margin-top: 60px;
}

.pb {
    padding-bottom: 60px;
}

.pt {
    padding-top: 60px;
}

.center {
    text-align: center;
}

.pink {
    color: var(--pink);
}

.red {
    color: var(--red);
}

.title {
    font-size: 26px;
    margin-bottom: 1rem;
}

/* BUTTONS */

.button {
    padding: 1.5rem 2rem;
    line-height: 1.3;
    color: white;
    border-radius: 50px;
    background-color: var(--blue);
    display: inline-block;
    cursor: pointer;
    position: relative;
    font-weight: 700;
}

.button i {
    display: none;
    margin-left: 1rem;
    transform: scale(1.5) translateY(3px);
}

.button::before {
    content: '';
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    opacity: 0;
    transform-origin: center;
    z-index: -1;
}

.button:hover::before {
    animation: button 1.5s;
}

.button:hover {
    color: white;
}

.button--pink {
    background-color: var(--pink);
    background: linear-gradient(90deg, rgba(170, 19, 95, 1) 0%, rgba(255, 0, 102, 1) 100%);
    box-shadow: 0px 0px 19px 0px rgba(255, 0, 152, 0.5);
}

.button--pink::before {
    background-color: var(--pink);
}

.button--red {
    background-color: var(--red);
    background: linear-gradient(90deg, #aa0404 0%, #f00 100%);
    box-shadow: 0px 0px 19px 0px rgb(255 0 0 / 50%);
}

.button--red::before {
    background-color: var(--red);
}

/* Circles */

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 13s linear infinite;
    bottom: -100px;
    opacity: 0;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 1s;
    animation-duration: 8s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 3s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 2s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 100px;
    height: 100px;
    animation-delay: 5s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 10s;
    animation-duration: 15s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 1s;
    animation-duration: 15s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
    animation-duration: 11s;
}


/* Header */

.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-left: 7vmin;
    padding-right: 7vmin;
    align-items: center;
}

.header--custom {
    position: relative;
    padding-bottom: 1.5rem;
    box-shadow: 0px 4px 6px rgb(0 0 0 / 4%);
}

.header-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(0 0 0 / 95%);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
    transition: opacity 700ms step-end, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-end, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
    display: none;
}

.header-menu--active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition: opacity 700ms step-start, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-start, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
}

.header-menu__container {
    margin: 0 7vmin;
    position: relative;
    height: 100vh;
    padding: 2rem 0;
    font-size: 10vmin;
    display: flex;
    align-items: center;
}

.header-menu__lines {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 0.18;
    transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
}

.header-menu__line {
    border-left: 1px solid #888;
    flex: 1;
    height: 110%;
    display: none;
}

.header-menu__line--mobile {
    display: block;
}

.header-menu__line--mobile:nth-child(2) {
    border-right: 1px solid #888;
}

.header-menu__nav {
    position: relative;
}

.header__nav__item {
    margin-bottom: 1.5rem;
}

.header__nav__item a {
    color: white;
    font-weight: 700;
    transition: all .3s ease;
}

.header__nav__item a:hover {
    color: var(--pink);
    text-shadow: none;
}

.header__nav__item__link--active a {
    color: black;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.burguer-menu {
    width: 35px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 330ms ease-out;
    z-index: 100;
}

.burguer-menu.burguer-menu__line--open {
    transform: rotate(-45deg);
}

.burguer-menu__line {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    height: 4px;
}

.header--custom .burguer-menu__line {
    background-color: black;
    transition: all .5s ease;
}

.header--custom .burguer-menu__line--open .burguer-menu__line {
    background-color: white;
}

.burguer-menu__line--half {
    width: 50%;
}

.burguer-menu__line--start {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57), box-shadow .4s ease;
    transform-origin: right;
}

.burguer-menu__line--open .burguer-menu__line--start {
    transform: rotate(-90deg) translateX(3px);
}

.burguer-menu__line--end {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57), box-shadow .4s ease;
    transform-origin: left;
}

.burguer-menu__line--open .burguer-menu__line--end {
    transform: rotate(-90deg) translateX(-3px);
}

/* Hero */

.hero {
    background-image: url(../img/web/hero.jpg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 3rem;
    position: relative;
}

.hero__caption {
    text-align: center;
    color: white;
    font-weight: 700;
}

.hero__caption__subtitle {
    font-size: 22px;
    margin-bottom: 3.5rem;
}

.hero__caption__title {
    font-size: 32px;
    margin-bottom: 3.5rem;
}

/* Box info */

.box-info {
    text-align: center;
    margin-bottom: 4rem;
}

.box-info__text p {
    margin-bottom: 0;
}

.box-info__icon img {
    display: inline-block;
    margin-bottom: 1rem;
}

.box-info__text h3 {
    margin-bottom: 1rem;
    font-size: 20px;
}

.home-grid__right {
    position: relative;
    margin-top: 60px;
    padding-top: 50px;
    text-align: center;
}

.brush-bg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-width: 100%;
}

.bush-bg-opacity {
    opacity: 0.1;
}

.img-animated {
    position: relative;
}

/* Bloquote */

.section__bloquote {
    text-align: center;
    position: relative;
    line-height: 1.3;
    font-size: 22px;
    background-color: white;
    padding-top: 80px;
    padding-bottom: 50px;
    margin-bottom: -70px;
    font-style: italic;
}

.section__bloquote i {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    color: var(--blue);
    font-size: 2rem;
}

.section__bloquote__bg {
    background-image: url(../img/web/redes-sociales/bg.jpg);
    background-size: cover;
    height: 200px;
}


/* HOME STEPS */

.home-grid__step-text {
    text-align: center;
}

.home-grid__step-text h3 {
    color: var(--pink);
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.home-grid__step-text h2 {
    font-size: 23px;
    margin-bottom: 1rem;
}

.home-step {
    margin-bottom: 100px;
}

.home-step .home-grid__right {
    padding-top: 0;
}

.home-step .img-animated {
    max-width: 80%;
}

.banner-home {
    background-image: url(../img/web/redes-sociales/banner.jpg);
    background-size: cover;
    color: white;
    background-position: center;
}

.banner-home__desc {
    margin-bottom: 3rem;
}

/*
* POPUP
*/

.popup {
    z-index: 9999;
    justify-content: center;
    align-items: center;
    display: none;
    opacity: 0;
    transition: all .3s ease;
}

.popup--show {
    display: flex;
}

.popup,
.popup__bg {
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100vh;
    width: 100vw;
    padding: 1rem;
}

.popup__bg {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
}

.popup__container {
    position: relative;
    background-color: white;
    width: 100%;
    max-width: 850px;
    height: 540px;
    z-index: 2;
    border-radius: 10px;
    background-image: url(../img/bgimage.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.popup__container::-webkit-scrollbar {
    -webkit-appearance: none;
}

.popup__container::-webkit-scrollbar:vertical {
    width: 10px;
}

.popup__container::-webkit-scrollbar:horizontal {
    height: 8px;
}

.popup__container::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, .3);
}

.popup__container::-webkit-scrollbar-track {
    box-shadow: inset 0 0 1px grey;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.popup__content {
    display: none;
    flex-direction: column;
}

.popup__close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-weight: 700;
    cursor: pointer;
    opacity: .3;
    transition: all .3s ease;
}

.popup__close:hover {
    opacity: 1;
}

.popup__close i::before {
    font-size: 15px;
}

.popup__user {
    text-align: center;
}

.popup__user__name {
    font-weight: 600;
}

.popup__user__picture {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 1rem;
}

.popup__user p {
    margin-bottom: .3rem;
}

.popup__form {
    text-align: center;
    margin-top: 2rem;
}

.popup__form__title {
    color: var(--pink);
    font-weight: 700;
    font-size: 1.6rem;
}

.popup__form__text {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 1.5rem;
}

.popup__form input::placeholder,
.popup__form textarea::placeholder {
    font-weight: 700;
    opacity: .7;
}

.popup__form input[type="text"],
.popup__form textarea,
.popup__form input[type="tel"],
.popup__form input[type="email"] {
    width: 100%;
    background-color: #f6f6f6;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right-color: transparent;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.15);
}

.popup__input__container {
    display: flex;
    justify-content: space-between;
}


.popup__input__container .multiple-select {
    width: 100%;
}

.popup__input__button {
    background-color: var(--pink);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    transition: all .3s ease;
    font-size: 1.4rem;
}

.button--small {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.popup__input__button i::before {
    line-height: 1.6;
}

.popup__input__button:hover {
    background-color: var(--blue-secondary);
}

.popup__form label {
    display: inline-block;
    font-weight: 700;
}

.privacy__error {
    color: red;
    padding-left: 1.5rem;
    font-size: 14px;
    display: none;
}

.popup__input__container .input--text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.step {
    display: none;
}

.loader__step {
    margin-top: 1.5rem;
    text-align: center;
}

.popup__loader {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader {
    --path: #3b3663;
    --dot: #f44336;
    --duration: 3s;
    width: 44px;
    height: 44px;
    position: relative;
}

.loader:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    display: block;
    background: var(--dot);
    top: 37px;
    left: 19px;
    transform: translate(-18px, -18px);
    -webkit-animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
    animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg {
    display: block;
    width: 100%;
    height: 100%;
}

.loader svg rect,
.loader svg polygon,
.loader svg circle {
    fill: none;
    stroke: var(--path);
    stroke-width: 10px;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.loader svg polygon {
    stroke-dasharray: 145 76 145 76;
    stroke-dashoffset: 0;
    -webkit-animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
    animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg rect {
    stroke-dasharray: 192 64 192 64;
    stroke-dashoffset: 0;
    -webkit-animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
    animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg circle {
    stroke-dasharray: 150 50 150 50;
    stroke-dashoffset: 75;
    -webkit-animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
    animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader.triangle {
    width: 48px;
}

.loader.triangle:before {
    left: 21px;
    transform: translate(-10px, -18px);
    -webkit-animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
    animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}


.loader {
    display: inline-block;
    margin: 0 16px;
}

.loader__form {
    display: none;
}

.response {
    margin-top: 2.5rem;
}

.popup__input__container .multiple-select {
    width: 100%;
}

.multiple-select__placeholder {
    line-height: 1.2;
    position: relative;
    text-align: left;
    cursor: pointer;
    min-height: 70px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: .5rem 1rem;
}

.multiple-select__placeholder::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    right: 1rem;
    border-left: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none;
    transition: all .3s ease;
}

.multiple-select--open::before {
    transform: translateY(-50%) rotate(135deg);
}

.multiple-select__placeholder {
    line-height: 1.2;
}

.multiple-select__placeholder span {
    display: inline-block;
    background: rgba(228, 236, 250, 0.7);
    padding: .5rem;
    border-radius: 5px;
    margin: .5rem .5rem .5rem 0;
    font-size: .85rem;
}

.multiple-select__options {
    position: absolute;
    z-index: 2;
    background-color: white;
    left: 0;
    width: 100%;
    top: 110%;
    box-shadow: 0px 16px 24px 0px rgba(22, 42, 90, 0.3);
    border-radius: 5px;
    border: 1px solid #d7dde5;
    transition: all .3s;
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden;
    z-index: 3;
}

.multiple-select__options--active {
    transform: scaleY(1);
    visibility: visible;
}

.input--text {
    background-color: transparent;
    border: 1px solid #d7dde5;
    padding: 1rem;
    width: 100%;
    border-radius: 5px;
}

.input-col label {
    text-align: left;
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    transition: all .3s;
    cursor: pointer;
}

.input-col label:hover {
    color: white;
    background-color: var(--blue);
}


/*
* FOOTER
*/

footer {
    background-color: black;
}

.footer-col {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-col__title {
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: white;
}

footer p,
.footer__social a,
.privacy {
    color: #b6b7b8;
    font-size: 15px;
}

.footer__social a {
    display: inline-block;
    margin: 0 .5rem;
    font-size: 22px;
}

.footer__social a:hover {
    color: white;
}


.footer__social span::before {
    font-size: 1.7rem;
}

.privacy {
    text-align: center;
    margin-bottom: .5rem;
    display: block;
}

.alert {
    line-height: 1.2;
    padding: 20px;
    border-left: 5px solid;
    background-color: #F2D7D5;
    border-left-color: #C0392B;
    color: #C0392B;
    text-align: left;
    margin-bottom: 2rem;
}

#loader {
    margin-bottom: 2rem;
}


.red {
    color: red;
}

.copy {
    background-color: black;
    padding: 1rem;
    color: #aaabac;
    font-size: .8em;
    text-align: center;
    line-height: 1.2;
    border: 1px solid #232323;
}

/* PAGE */

.page-title {
    background-color: #ebebeb;
    text-align: center;
    position: relative;
    padding-bottom: 100px;
    overflow: hidden;
    z-index: 0;
}

.page-title svg {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 61px;
    z-index: 3;
}

.page-title .title {
    text-shadow: 0 3px 4px rgb(12 12 12 / 16%);
    position: relative;
    z-index: 4;
}

.shape {
    position: absolute;
    z-index: 1;
    max-width: 36px;
}

.shape--1 {
    top: 46px;
    right: 18%;
    animation: animationFramesOne 15s infinite linear alternate;
}

.shape--2 {
    top: 57px;
    left: 32%;
    animation: animationFramesTwo 12s infinite linear alternate;
}

.shape--3 {
    bottom: 70px;
    left: 11%;
    animation: animationFramesSix 12s infinite linear alternate;
}

/* BLOG */

.blog-list__item {
    border: 1px solid #e5edfc;
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    transition: all 300ms linear 0ms;
    -webkit-transition: all 300ms linear 0ms;
}

.blog-list__item:hover {
    -webkit-box-shadow: 0 27px 34px rgb(3 21 99 / 20%);
    box-shadow: 0 27px 34px rgb(3 21 99 / 20%);
}


.blog-list__item:hover img {
    transform: scale(1.1);
}

.blog-list__item__thumb {
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-list__item__thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 300ms linear 0ms;
    -webkit-transition: all 300ms linear 0ms;
}

.blog-list__item__desc {
    padding: 21px 30px 30px;
}

.blog-list__item__desc h2 {
    margin-bottom: 1.5rem;
    font-size: 20px;
}

.blog-list__item__desc h2 a:hover {
    color: #666;
}

.blog-list__item__desc h2 a {
    color: black;
    transition: all .3s ease;
}

.blog-list__item__desc__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #999;
    font-weight: 600;
    font-size: 16px;
}

.blog-list__item__author {
    margin-bottom: 0;
    flex-grow: 1;
    margin-right: 20px;
    font-size: 16px;
}

.blog-list__item .flaticon-fast-forward-double-right-arrows {
    font-size: 10px;
}

.read-more {
    color: var(--red);
}

.heading {
    text-align: center;
}

.heading__subtitle {
    position: relative;
    font-weight: 700;
    padding-bottom: 5px;
    padding-left: 67px;
    padding-right: 67px;
    display: inline-block;
}

.heading__subtitle::before, .heading__subtitle::after {
    content: '';
    width: 55px;
    height: 3px;
    background-color: var(--red);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    margin-top: -3px;
}

.heading__subtitle::before {
    left: 0;
}

.heading__subtitle::after {
    right: 0;
}

.heading__title {
    font-size: 28px;
    margin-bottom: 2rem;
}

/*
* SINGLE
*/

.single-content {
    max-width: 950px;
}

.single-content--secondary {
    padding-top: 0;
}


.single-content h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.single-content h3 {
    font-size: 25px;
    margin-top: 30px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.single-content h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.single-content p, .single-content div {
    line-height: 1.9;
}

.single-content p, .single-content li {
    font-size: 18px;
    margin-bottom: 2rem;
    word-break: break-word;
}

.single-content__title {
    font-weight: 900;
    font-size: 33px;
    margin-bottom: 1.6rem;
    line-height: 1.35;
}

.single-content li {
    margin-left: 30px;
    margin-bottom: 1rem;
    font-size: 18px;
    line-height: 1.5;
}

.single-content ul li {
    list-style: disc;
}

.single-content ul li::marker {
    font-size: 22px;
    font-weight: 900;
}

.single-content ol, .single-content ul {
    margin-bottom: 2rem;
}

.single-content ol {
    position: relative;
    counter-reset: li;
}

.single-content ol li {
    padding-left: 1.5rem;
}

.single-content ol>li::before {
    font-size: 18px;
    line-height: 32px;
    position: absolute;
    left: 0;
    display: inline-block;
    width: 32px;
    height: 32px;
    padding: 0;
    content: counter(li,decimal-leading-zero);
    counter-increment: li;
    text-align: center;
    color: white;
    background-color: var(--pink);
    margin-left: 8px;
    border-radius: 0;
    font-weight: 600;
}

.single-content img {
    max-width: 100%;
    height: auto;
}

.single-content figcaption {
    text-align: center;
    margin-top: .8rem;
    color: #9e9e9e;
}

.entry-meta {
    margin-bottom: 2rem;
}

.entry-meta span {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
}

.author-box {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.author-picture {
    border-radius: 100%;
    overflow: hidden;
    margin-right: 1rem;
    width: 48px;
    height: 48px;
}

.entry-meta .meta-sep {
    display: none;
}

.cat-links a, .entry-meta .cat-links {
    transition: all .3s ease;
}

.cat-links a:hover {
    color: var(--pink);
    opacity: 1;
}

.single-content figure, .attachment-post-thumbnail {
    margin-bottom: 2rem;
}

.single-content figure {
    margin-top: 2rem;
}

.box-text {
    padding: 2rem;
}

.box-text--gold {
    background-color: #EAE1D8;
}

.box-text--aqua {
    background-color: #C7D5D9;
}

.box-text--border-blue {
    border-left: 7px solid var(--blue);
    background-color: rgb(0 0 204 / 10%);
}

.box-text--border-pink {
    border-left: 7px solid var(--pink);
}

.mark {
    display: inline;
    padding: 0 .5rem;
    color: white;
}

.mark--pink {
    background-color: var(--pink);
}

.aligncenter {
    text-align: center;
}

em {
    font-style: italic;
}

/*
* TOC
*/

.lwptoc {
    margin: 32px 0;
}

.lwptoc_i {
    background-color: #f0f2f5;
    border: 1px solid #f0f2f5;
    padding: 30px;
    line-height: 1.75;
    font-size: 15px;
    border-radius: 6px;
}

.lwptoc_header {
    color: #2a2f37;
}

.lwptoc_item {
    margin-top: 2px;
}

.lwptoc_header {
    font-size: 18px;
}

.lwptoc_item {
    font-size: 17px;
}

.lwptoc_itemWrap .lwptoc_itemWrap {
    margin: 2px 0 0 14px;
}

.lwptoc_item_label {
    border-bottom: 1px dotted var(--pink);
}

/*
* SOCIAL
*/
.entry-content {
    position: relative;
}

.social-float {
    display: none;
}

/*
*   AUTHOR FOOTER
*/

.author-footer {
    background: rgba(236,239,243,0.8);
    padding: 2.5rem;
    border-radius: 6px;
    margin: 3rem 0;
    font-size: 17px;
}

.author-footer__picture {
    height: 72px;
    width: 72px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 1rem;
    display: inline-block;
}

.author-footer__name {
    font-weight: 700;
    font-size: 22px;
}

.author-footer__job {
    font-weight: 700;
    margin-bottom: 1rem;
}

.author-footer__social {
    margin-top: 1rem;
}

.author-footer__social a {
    color: black;
    display: inline-block;
    margin-right: 1rem;
}

.author-footer__social span::before {
    font-size: 1rem;
}

.pin-spacer {
    overflow:  hidden !important;
}

.link-back {
    margin-bottom: 1rem;
    display: inline-block;
    font-weight: 700;
}

.entry-meta .proyect__cat {
    display: inline-block;
    padding: .5rem 1rem;
    background-color: var(--blue);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
}

.box-shadow {
    box-shadow: 0 30px 60px -30px #000;
}

/*
* NOT FOUND
*/

.not-found {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.not-found img {
    max-width: 100%;
    display: inline-block;
    margin-bottom: 2rem;
}

.not-found i {
    display: inline-block;
    margin-right: 1rem;
}

.not-found h2 {
    margin-bottom: 3.5rem;
}

/*
** Portfolio
*/

.box--filter {
    text-align: center;
}

.filter {
    display: inline-block;
    background-color: white;
    box-shadow: 12px 19px 62px 0px rgba(13, 52, 79, 0.07);
    padding: 1rem;
    margin-bottom: 3.5rem;
}

.filter__option {
    display: inline-block;
    font-weight: 700;
    padding: .5rem 1rem;
    cursor: pointer;
    transition: all .3s ease;
}

.filter__option:hover {
    color: var(--pink);
}

.filter__option--active {
    color: var(--pink);
}

.bg-blue {
    background-color: #F8FBFC;
}

.portfolio__item {
    text-align: left;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 12px 19px 62px 0px rgba(13, 52, 79, 0.07);
    transition: transform .3s ease;
}

.portfolio__item__thumb {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: block;
}

.portfolio__item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .7s ease;
}

.portfolio__item__thumb:hover img {
    transform: scale(1.1);
}

.portfolio__item__desc {
    padding: 1rem 2rem;
}

.portfolio__item__category {
    margin-bottom: .5rem;
    font-size: 1rem;
}

.portfolio__item__desc h4 {
    font-size: 1.25rem;
}

/*
*   SINGLE PROJECT
*/

.hero-project {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    height: 185px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-project__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.single-project {
    max-width: 1300px;
}

.single-project figure {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 0;
}

.single-project__meta {
    margin-top: 2rem;
}

.single-project__meta h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.2rem;
}

.single-project__share__text {
    margin-right: 1rem;
    font-weight: 700;
}

.single-project__share {
    color: black;
    margin-left: 1rem;
}

.single-project__share:hover {
    color: black;
    opacity: .7;
}

.single-project__share span::before {
    font-size: 20px
}


.single-project__right {
    margin-top: 4rem;
}

.button--project {
    margin-top: 3rem;
    padding: 1rem !important;
    font-size: 1rem;
}

/*
* CONTACT
*/

.contact-line {
    display: inline-block;
    width: 110px;
    height: 5px;
    background-color: var(--pink);
    margin-bottom: 30px;
}

.contact__form {
    margin-top: 50px;
}

.page--contact .input-col label:hover {
    background-color: initial;
    color: initial;
}

.page--contact .input-col label {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: .5rem;
    cursor: default;
}

.page--contact .input-col {
    margin-bottom: 1.5rem;
}

.page--contact .input-col input, .page--contact .input-col textarea {
    border-width: 1px;
    border-color: #f0f0f0;
    background-color: #f0f0f0;
}

.page--contact .privacy {
    text-align: initial;
}

.section__contact-box__form {
    padding-bottom: 60px;
}

.section__contact-box__social__item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.section__contact-box__social__item__icon {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: var(--pink);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    margin-right: 1.5rem;
}

.section__contact-box__social__item__text p {
    margin-bottom: .5rem;
}

.section__contact-box__social__item__icon i {
    line-height: 0;
}

.section__contact-box__icon {
    display: inline-block;
    font-size: 22px;
    color: black;
    margin-right: 1rem;
}

.section__contact-box__social__second {
    margin-top: 50px;
}

.thanks {
    text-align: center;
}

.thanks img {
    max-width: 300px;
    display: inline-block;
    margin-bottom: 3rem;
}

.thanks p {
    margin-bottom: 3rem;
}


/* HOME STYLES */

.hero--home {
    background-image: url(../img/web/hero-home.jpg)
}

.hero__caption__home h1 {
    font-size: 3.8rem;
    line-height: 1.5;
    font-weight: 800;
}

.hero__caption__home__border {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.hero--home__cursor {
    position: absolute;
    bottom: 20px;
    left: 0;
    font-size: 3rem;
    animation-name: bounce-1;
    animation-timing-function: linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    width: 100%;
}

.section--home-1 {
    text-align: center;
    background-color: white;
}

.section__logos {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.section__logos img {
    width: 32%;
}

.section--home-services {
    background-image: url(../img/web/home-bg-.jpg);
    color: white;
    background-size: cover;
    background-repeat: no-repeat;
}

.home--services__container {
    position: relative;
}

.home--services__box {
    padding: 55px 30px;
    background-color: white;
    margin-bottom: 3rem;
    color: black;
}

.home--services__title {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.home--services__title h3 {
    font-size: 1.2rem;
}

.home--services__title img {
    min-width: 67px;
    display: inline-block;
    margin-right: 1rem;
}

.home--services__row {
    position: relative;
    z-index: 2;
}

.home--services__container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/web/home/section-bg.png);
    z-index: 1;
    background-repeat: repeat;
}

.section--portfolio, .section--testimonials {
    background-color: black;
    background-image: url(../img/web/home/bg-portfolio-.jpg);
    background-repeat: repeat;
    color: white;
}

#splide-portafolio {
    margin-top: 4rem;
}

.portafolio__item {
    width: 100%;
    height: 300px;
    position: relative;
    display: block;
    overflow: hidden;
}

.portafolio__item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s ease;
    display: inline-block;
}

.portafolio__item:hover img {
    transform: scale(1.1);
}

.portafolio__meta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.9)),to(rgba(0,0,0,0)));
    background-image: -webkit-linear-gradient(bottom,rgb(3 9 35 / 80%),rgba(0,0,0,0));
}

.portafolio__meta p {
    color: #faf6a2;
    font-weight: 600;
}

.portafolio__meta h3 {
    color: white;
}

#splide-portafolio .splide__arrow {
    background: #3c3c3c;
    width: 3.5rem;
    height: 3.5rem;
    opacity: 1;
}

#splide-portafolio .splide__arrow:hover {
    background: var(--pink);
}

#splide-portafolio .splide__arrow svg {
    fill: white;
}

.section--home__team {
    margin-top: 3rem;
}

.section--home__team__item {
    text-align: center;
    margin-bottom: 4rem;
}

.section--home__team__item img {
    margin-bottom: 1.5rem;
    max-width: 250px;
    width: 100%;
}

.section--home__team__item h3 {
    font-size: 1.3rem;
    margin-bottom: .5rem;
}

.brands {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.brand__item {
    text-align: center;
    padding: 1.5rem;
    max-width: 48%;
}

.brands .brand__item:last-child {
    display: none;
}

.testimonial__box {
    background-color: white;
    border-radius: 5px;
    padding: 26px 40px 40px 37px;
    margin-bottom: 4rem;
    color: black;
    background-image: url(../img/web/home/testimonial.png);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.testimonial__box--gold {
    background-color: #EAE1D8;
}

.testimonial__box--pink {
    background-color: var(--pink);
    color: white;
}

.testimonial__box--blue {
    background-color: var(--blue);
    color: white;
    background-image: url(../img/web/home/testimonial-2.png);
}

.testimonials__left {
    margin-bottom: 4rem;
}

#splide-testimonios .splide__pagination__page.is-active {
    background: var(--pink);
    opacity: 1;
}

#splide-testimonios .splide__pagination__page {
    background-color: var(--pink);
    width: 10px;
    height: 10px;
    margin: 7px;
}



@media (min-width: 768px) {

    .box {
        padding: 0 2.5rem;
    }

    .title {
        font-size: 36px;
    }

    .section {
        margin: 100px 0;
    }

    .mb {
        margin-bottom: 80px;
    }

    .mt {
        margin-top: 80px;
    }

    .pb {
        padding-bottom: 100px;
    }

    .pt {
        padding-top: 100px;
    }

    /* MENU */
    .header-menu__line {
        display: block;
    }

    .header-menu__lines .header-menu__line:last-child {
        border-right: 1px solid #888;
    }

    /* BUTTONS */
    .button {
        font-size: 20px;
        padding: 1.5rem 5rem;
    }

    .button i {
        display: inline-block;
    }

    /*
    * FOOTER
    */

    footer .box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-col {
        width: 45%;
        text-align: left;
    }

    .privacy {
        text-align: left;
    }

    .footer-col__title {
        margin-bottom: 2rem;
    }

    /* HERO */
    .hero__caption__title {
        font-size: 40px;
        margin-bottom: 4.5rem;
    }

    .hero__caption__subtitle {
        font-size: 24px;
        margin-bottom: 4rem;
    }

    /* Home GRID */
    .home-grid {
        display: flex;
        justify-content: space-between;
    }

    .home-grid__left,
    .home-grid__right {
        width: 48%;
        align-self: center;
    }

    .home-grid__left {
        width: 43%;
    }

    .home-grid__right {
        padding-top: 0;
        margin-top: 0;
    }

    .section-home-1__grid__left .box-info:last-child {
        margin-bottom: 0;
    }

    /* BLOQUOTE */
    .box__bloquote {
        background-color: white;
    }

    .section__bloquote {
        padding-top: 50px;
        font-size: 31px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .section__bloquote i {
        top: 0;
    }

    .section__bloquote__bg {
        height: 280px;
    }

    /* HOME STEPS */

    .home-step {
        margin-bottom: 80px;
    }

    .home-grid__step-text {
        text-align: left;
    }

    .home-step-reverse {
        flex-direction: row-reverse;
        align-items: center;
    }

    /*
    * POPUP
    */

    .popup__container {
        padding: 2rem;
        height: 450px;
    }

    .popup__content {
        justify-content: space-between;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .popup__form {
        text-align: left;
        width: calc(100% - 230px);
        margin-top: 0;
    }

    .page-title {
        padding-bottom: 110px;
    }

    /*
    * BLOG
    */

    .blog-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .blog-list__item {
        width: 47%;
    }

    .blog-list__item__desc h2 {
        font-size: 23px;
    }

    .blog-list__item__thumb {
        height: 250px;
    }

    .heading__subtitle {
        font-size: 21px;
    }

    .heading__title {
        font-size: 36px
    }

    /*
    * SINGLE
    */

    .single-content--secondary {
        padding-top: 0;
    }

    .single-content__title {
        font-size: 51px;
        margin-bottom: 25px;
    }
    
    .entry-meta {
        display: flex;
        align-items: center;
    }

    .author-box {
        margin-bottom: 0;
    }

    .entry-meta .meta-sep {
        display: inline-block;
        margin: 0 1rem;
        font-weight: 900;
        opacity: .4;
    }

    .cat-links a, .entry-meta .cat-links {
        color: var(--pink);
    }

    /*
    * AUTHOR FOOTER
    */

    .author-footer {
        display: flex;
    }

    .author-footer__picture {
        min-width: 72px;
        margin-right: 2rem;

    }

    /*
    * NOT FOUND
    */

    .not-found h1 {
        font-size: 8rem;
    }

    /*
    ** Portfolio
    */

    .filter__option {
        margin: 0 1rem;
    }

    .portfolio {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .portfolio__item {
        max-width: 46%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 4.5rem;
    }

    /*
    * CONTACT
    */

    .section__contact-box {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .section__contact-box__form {
        width: 50%;
        padding-bottom: 0;
    }

    .section__contact-box__social {
        width: 45%;
    }


    /*
    *  HOME STYLES
    */

    /* .hero__caption__home {
        text-align: left;
    } */

    .hero__caption__home h1 {
        font-size: 6rem;
    }

    /*.hero__caption__home h1 span:first-child{
        margin-left: -4rem;
    }

    .hero__caption__home h1 span:last-child{
        margin-left: 8rem;
    }*/

    .home--services__row {
        display: flex;
        justify-content: space-between;
    }

    .home--services__box {
        width: 47%;
    }

    .home--services__title h3 {
        font-size: 1.3rem;
    }

    .section--home__team {
        margin-top: 4rem;
    }

    .section--home__team {
        display: flex;
        justify-content: space-evenly;
    }

    .section--home__team__item {
        width: 30%;
    }

    .brands {
        margin-top: 4rem;
    }

    .brands .brand__item:last-child {
        display: block;
    }

    .brand__item {
        width: 30%;
        padding: 0 1.5rem;
        margin: 2rem 0;
    }

    .section--testimonials .box {
        display: flex;
        justify-content: space-between;
    }

    .testimonials__left {
        width: 40%;
        margin-bottom: 0;
    }

    .testimonials__right {
        width: 48%;
    }
}

@media (min-width: 992px) {
    /*
    ** Footer
    */

    .footer-col {
        width: 24%;
    }

    .footer-col:nth-child(1) {
        width: 20%;
    }

    .footer-col:nth-child(2) {
        width: 25%;
    }

    .footer-col {
        margin-bottom: 0;
    }

    /* BOX INFO */
    .box-info {
        display: flex;
        justify-content: space-between;
        text-align: left;
    }

    .box-info__text {
        width: calc(100% - 100px - 2rem);
        align-self: center;
    }

    /*Bloquote */
    .section__bloquote {
        padding-top: 20px;
    }

    .section__bloquote i {
        left: 0px;
    }

    /* STEPS */
    .home-step .home-grid__left {
        width: 40%;
    }

    .home-grid__step-text h2 {
        font-size: 30px;
    }

    .home-step .img-animated {
        max-width: 100%;
    }

    /*
    * Popup Form
    */

    .popup__container::-webkit-scrollbar {
        -webkit-appearance: none;
    }

    .popup__container::-webkit-scrollbar:vertical {
        width: 14px;
    }

    .popup__container::-webkit-scrollbar-thumb {
        border-radius: 8px;
        border: 3px solid white;
        /* should match background, can't be transparent */
        background-color: rgba(0, 0, 0, .3);
    }

     /*
    ** Portfolio
    */

    .portfolio__item {
        max-width: 30%;
    }

    /*
    * CONTACT
    */

    .page--contact .input-row {
        display: flex;
        justify-content: space-between;
    }

    .page--contact .input-row .input-col {
        width: 48%;
    }

    /*
    *  HOME STYLES
    */

    /* .hero__caption__home h1 span:first-child{
        margin-left: -8rem;
    }

    .hero__caption__home h1 span:last-child{
        margin-left: 8rem;
    }*/

    .section__logos img {
        width: initial;
        display: inline-block;
        margin: 0 2rem;
    }

    .home--services__container {
        display: flex;
        justify-content: space-between;
        margin-top: 4rem;
    }

    .home--services__container .home--services__row:nth-child(2) {
        margin-top: 5rem;
    }

    .home--services__container .home--services__row:nth-child(3) {
        margin-top: 10rem;
    }

    .home--services__row {
        display: initial;
        width: 31%;
    }

    .home--services__box {
        width: 100%;
        margin-bottom: 7rem;
    }

    .portafolio__item {
        height: 380px;
    }

    #splide-portafolio .splide__arrows {
        max-width: 1300px;
        position: relative;
        margin: 0 auto;
    }

    #splide-portafolio .splide__arrow {
        top: -6rem;
    }

    #splide-portafolio .splide__arrow--prev {
        right: 7em;
        left: initial;
    }

    .brand__item {
        width: 32%;
    }

    .brand__item:nth-child(3n+2) {
        border-left: 1px solid #eee;
        border-right: 1px solid #eee;
    }
}

@media (min-width: 1200px) {

    /* MENU */
    .header-menu__container {
        font-size: 8vmin;
    }

    .header--custom .burguer-menu:hover .burguer-menu__line {
        box-shadow: none;
    }

    .burguer-menu:hover .burguer-menu__line {
        box-shadow: 0px 0px 10px 0px rgb(255 0 152);
    }

    /* BLOQUOTE */
    .section__bloquote i {
        left: 0px;
    }

    /*
    * BLOG
    */

    .blog-list {
        justify-content: initial;
    }

    .blog-list__item {
        width: 32%;
    }

    .blog-list .blog-list__item:nth-child(2n+2) {
        margin-left: 2%;
        margin-right: 2%;
    }
    
    /*
    * SOCIAL
    */

    .social-float {
        position: absolute;
        top: 0;
        right: -130px;
        display: block;
        height: 100%;
    }
    
    .social-float__icon {
        transition-property: background-color;
        transition-duration: .3s;
        transition-timing-function: ease;
        color: black;
        z-index: 10;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ECEFF3;
        border-bottom: 1px solid #d2d2d2;
        text-align: center;
    }
    
    .social-float__icon:hover {
        color: white;
    }
    
    .social-float__icon span::before {
        font-size: 14px;
    }

    .social-float__icon.fb:hover {
        background-color: #3d5895;
    }

    .social-float__icon.tw:hover {
        background-color: #37aee8;
    }

    .social-float__icon.in:hover {
        background-color: #2379af;
    } 

    /*
    * NOT FOUND
    */

    .not-found h1 {
        font-size: 12rem;
    }

    /*
    *   Proyect Single
    */

    .single-project {
        display: flex;
        justify-content: space-between;
    }

    .single-project__left {
        width: 70%;
    }

    .single-project__right {
        width: 27%;
        height: auto;
        margin-top: 0;
    }

    /*
    * CONTACT
    */

    .section__contact-box__form {
        width: 60%;
    }

    .section__contact-box__social {
        width: 35%;
    }

    /*
    *  HOME STYLES
    */

    .hero__caption__home h1 {
        font-size: 8rem;
        line-height: 1.3;
    }

    /*.hero__caption__home h1 span:last-child{
        margin-left: 10rem;
    }*/

    .home--services__box {
        padding: 44px 55px 61px;
    }
}

@media (min-width: 1400px) {

    .box {
        padding: 0 1rem;
    }

    /* HERO */
    .hero__caption__title {
        font-size: 50px;
        margin-bottom: 5rem;
    }

    .hero__caption__subtitle {
        font-size: 28px;
        margin-bottom: 4rem;
    }

    /*
    *  HOME STYLES
    */

    .hero__caption__home h1 {
        font-size: 8.5rem;
    }
}

@media (min-width: 1600px) {
    .section--home-services {
        position: relative;
    }

    .section--home-services::before {
        content: 'Servicios';
        transform-origin: top left;
        -webkit-transform-origin: top left;
        -webkit-transform: translateY(100%) rotate(-90deg);
        transform: translateY(100%) rotate(-90deg);
        text-shadow: 0 20px 43px rgb(41 39 78 / 22%);
        position: absolute;
        bottom: 10px;
        left: 70px;
        font-size: 130px;
        font-weight: 800;
        z-index: 0;
    }
}

/* ANIMATIONS */

@keyframes button {
    from {
        opacity: .5;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scaleX(1.1) scaleY(1.7);
    }
}

@keyframes animate {
    0% {
        opacity: 0;
        border-radius: 10%;
    }

    10% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1500px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

@keyframes blinking {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    51% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes pathTriangle {
    33% {
        stroke-dashoffset: 74;
    }

    66% {
        stroke-dashoffset: 147;
    }

    100% {
        stroke-dashoffset: 221;
    }
}

@keyframes pathTriangle {
    33% {
        stroke-dashoffset: 74;
    }

    66% {
        stroke-dashoffset: 147;
    }

    100% {
        stroke-dashoffset: 221;
    }
}

@-webkit-keyframes dotTriangle {
    33% {
        transform: translate(0, 0);
    }

    66% {
        transform: translate(10px, -18px);
    }

    100% {
        transform: translate(-10px, -18px);
    }
}

@keyframes dotTriangle {
    33% {
        transform: translate(0, 0);
    }

    66% {
        transform: translate(10px, -18px);
    }

    100% {
        transform: translate(-10px, -18px);
    }
}

@-webkit-keyframes pathRect {
    25% {
        stroke-dashoffset: 64;
    }

    50% {
        stroke-dashoffset: 128;
    }

    75% {
        stroke-dashoffset: 192;
    }

    100% {
        stroke-dashoffset: 256;
    }
}

@keyframes pathRect {
    25% {
        stroke-dashoffset: 64;
    }

    50% {
        stroke-dashoffset: 128;
    }

    75% {
        stroke-dashoffset: 192;
    }

    100% {
        stroke-dashoffset: 256;
    }
}

@-webkit-keyframes dotRect {
    25% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(18px, -18px);
    }

    75% {
        transform: translate(0, -36px);
    }

    100% {
        transform: translate(-18px, -18px);
    }
}

@keyframes dotRect {
    25% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(18px, -18px);
    }

    75% {
        transform: translate(0, -36px);
    }

    100% {
        transform: translate(-18px, -18px);
    }
}

@-webkit-keyframes pathCircle {
    25% {
        stroke-dashoffset: 125;
    }

    50% {
        stroke-dashoffset: 175;
    }

    75% {
        stroke-dashoffset: 225;
    }

    100% {
        stroke-dashoffset: 275;
    }
}

@keyframes pathCircle {
    25% {
        stroke-dashoffset: 125;
    }

    50% {
        stroke-dashoffset: 175;
    }

    75% {
        stroke-dashoffset: 225;
    }

    100% {
        stroke-dashoffset: 275;
    }
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(111px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(93px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-70px, 72px) rotate(124deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@-webkit-keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        -webkit-transform: translate(111px, 72px) rotate(72deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(124deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes animationFramesTwo {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg) scale(1);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    }

    80% {
        transform: translate(-40px, 72px) rotate(104deg) scale(1.1);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

@-webkit-keyframes animationFramesTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(104deg) scale(1.1);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

@keyframes animationFramesThree {
    0% {
        transform: translate(165px, -179px);
    }

    100% {
        transform: translate(-346px, 617px);
    }
}

@-webkit-keyframes animationFramesThree {
    0% {
        -webkit-transform: translate(165px, -179px);
    }

    100% {
        -webkit-transform: translate(-346px, 617px);
    }
}

@keyframes animationFramesFour {
    0% {
        transform: translate(-300px, 151px) rotate(0deg);
    }

    100% {
        transform: translate(251px, -200px) rotate(180deg);
    }
}

@-webkit-keyframes animationFramesFour {
    0% {
        -webkit-transform: translate(-300px, 151px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(251px, -200px) rotate(180deg);
    }
}

@keyframes animationFramesFive {
    0% {
        transform: translate(61px, -99px) rotate(0deg);
    }

    21% {
        transform: translate(4px, -190px) rotate(38deg);
    }

    41% {
        transform: translate(-139px, -200px) rotate(74deg);
    }

    60% {
        transform: translate(-263px, -164px) rotate(108deg);
    }

    80% {
        transform: translate(-195px, -49px) rotate(144deg);
    }

    100% {
        transform: translate(-1px, 0px) rotate(180deg);
    }
}

@-webkit-keyframes animationFramesFive {
    0% {
        -webkit-transform: translate(61px, -99px) rotate(0deg);
    }

    21% {
        -webkit-transform: translate(4px, -190px) rotate(38deg);
    }

    41% {
        -webkit-transform: translate(-139px, -200px) rotate(74deg);
    }

    60% {
        -webkit-transform: translate(-263px, -164px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-195px, -49px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(-1px, 0px) rotate(180deg);
    }
}

@keyframes animationFramesSix {
    0% {
        transform: translate(31px, -45px) rotate(0deg);
    }

    21% {
        transform: translate(4px, -80px) rotate(19deg);
    }

    41% {
        transform: translate(-70px, -100px) rotate(36deg);
    }

    60% {
        transform: translate(-133px, -84px) rotate(54deg);
    }

    80% {
        transform: translate(-98px, -24px) rotate(72deg);
    }

    100% {
        transform: translate(-1px, 0px) rotate(180deg);
    }
}

@keyframes bounce-1 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}