@import url(https://fonts.googleapis.com/css?family=Lato:300:400);

body {
    margin: 0;
}

h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 48px;
}

p {
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
    color: #333333;
}

@import url(https://fonts.googleapis.com/css?family=Quattrocento+Sans);

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 9999;
}

.loading-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: 100%;
    height: 100px;
    line-height: 100px;
}

.loading-text span {
    display: inline-block;
    margin: 0 5px;
    color: #51ffff;
    font-family: "Quattrocento Sans", sans-serif;
}

.loading-text span:nth-child(1) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 0s infinite linear alternate;
    animation: blur-text 1.5s 0s infinite linear alternate;
}

.loading-text span:nth-child(2) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 0.2s infinite linear alternate;
    animation: blur-text 1.5s 0.2s infinite linear alternate;
}

.loading-text span:nth-child(3) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 0.4s infinite linear alternate;
    animation: blur-text 1.5s 0.4s infinite linear alternate;
}

.loading-text span:nth-child(4) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 0.6s infinite linear alternate;
    animation: blur-text 1.5s 0.6s infinite linear alternate;
}

.loading-text span:nth-child(5) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 0.8s infinite linear alternate;
    animation: blur-text 1.5s 0.8s infinite linear alternate;
}

.loading-text span:nth-child(6) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 1s infinite linear alternate;
    animation: blur-text 1.5s 1s infinite linear alternate;
}

.loading-text span:nth-child(7) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 1.2s infinite linear alternate;
    animation: blur-text 1.5s 1.2s infinite linear alternate;
}

@-webkit-keyframes blur-text {
    0% {
        filter: blur(0px);
    }

    100% {
        filter: blur(4px);
    }
}

@keyframes blur-text {
    0% {
        filter: blur(0px);
    }

    100% {
        filter: blur(4px);
    }
}

.header {
    position: relative;
    text-align: center;
    background: linear-gradient(60deg, rgba(84, 58, 183, 1) 0%, rgba(0, 172, 193, 1) 100%);
    color: white;
}

.logoHeader {
    width: 40vh;
}

#logoHeader {
    height: 60%;
    padding: 8% 0;
}

.inner-header {
    height: 80vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.flex {
    /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

.content {
    position: relative;
    text-align: center;
    background-color: white;
}

/* Animation */

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    .content {
        height: 30vh;
    }

    h1 {
        font-size: 24px;
    }
}

/*
NOTE > skip to "MAIN CSS" to see the navbar css.
*/

/*==================
MAIN CSS
===================*/
body {
    margin: 0;
    font-family: sans-serif;
}

/*--------------------
Mobile
--------------------*/

.top {
    position: fixed;
    top: 0;
    background-color: transparent;
    height: 60px;
    width: 100%;
    transition: background-color 0s;
}

.top--scrolling {
    background-color: #FFFFFF;
    transition: background-color .4s;
    z-index: 20;
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
}

.top--open {
    background-color: rgba(22, 22, 22, 0.85);
    transition: background-color .4s;
}

.navbar {
    display: flex;
    justify-content: center;
    max-width: 1250px;
    margin: 0 auto;
    font-size: 1.5em;
    height: 60px;
    padding: 0 15px;
}

.logo {
    margin-right: auto;
}

.navbar__item {
    color: #fff;
    text-decoration: none;
    line-height: 60px;
}

.top--scrolling .navbar__item {
    color: #000000;
}

.navbar__menu {
    opacity: 1;
    display: flex;
    flex-direction: row;
    position: relative;
    top: auto;

}

.navbar__link {
    margin-right: 60px;
    letter-spacing: 2px;
}

.navbar__link:last-child {
    margin-right: 0;
}

.navbar__menu--active {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: auto;
    height: auto;
    background: transparent;
}

.menuSeparator {
    font-size: 0.8em;
    margin-top: -1px;
    position: absolute;
    margin-left: -0.8em;
    color: #51ffff;
}

.main {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100vh;
    color: #fff;
    background: linear-gradient(90deg, rgb(243, 72, 104) 20.1814%, rgb(242, 71, 104) 20.1814%, rgb(158, 0, 236) 80.1832%);
}

.main h1 {
    font-size: 10vh;
    text-align: center;
    padding: 15%;
}

.paragraph {
    max-width: 1250px;
    margin: 100vh auto;
    text-align: justify;
}

.work-animation, .contacto {
    width: 100%;
    height: 500px;
    position: relative;
}

.work-animation img, .contacto img {
    height: 50%;
    position: absolute;
    top: 59%;
    left: 59%;
    transform: translate(-50%, -50%);
}

.svgwork {
    width: 15%;
    min-width: 165px;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    color: #231f20;
    z-index: 20;

    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Animation - credit to Florian Wirtz*/
.circle-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background: transparent;
    z-index: 10;
}

span.dot {
    position: absolute;
    width: 10px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -8px;
}

span.dot:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 10px;
    height: 10px;
    background-color: #1c75bc;
    border-radius: 50%;
}

.circle-animation {
    width: 300px;
    height: 300px;
    margin: -120px 0 0 -120px;

    -webkit-animation: animatedEight 30s linear infinite;
    -ms-animation: animatedEight 30s linear infinite;
    animation: animatedEight 30s linear infinite;
}

#contacto div {
    flex: 0 1 50%;
}

@-webkit-keyframes animatedEight {
    from {
        -webkit-transform: rotate(-45deg);
    }

    to {
        -webkit-transform: rotate(-405deg);
    }
}

@-ms-keyframes animatedEight {
    from {
        -webkit-transform: rotate(-45deg);
    }

    to {
        -webkit-transform: rotate(-405deg);
    }
}

@keyframes animatedEight {
    from {
        transform: rotate(-45deg);
    }

    to {
        transform: rotate(-405deg);
    }
}

span.dot.no1 {
    -webkit-animation: animatedDotOne 15s ease infinite;
    -ms-animation: animatedDotOne 15s ease infinite;
    animation: animatedDotOne 15s ease infinite;
}

@-webkit-keyframes animatedDotOne {

    0%,
    58%,
    100% {
        -webkit-transform: translate(0, 0);
    }

    8%,
    50% {
        -webkit-transform: translate(0, 224px);
    }
}

@-ms-keyframes animatedDotOne {

    0%,
    58%,
    100% {
        -webkit-transform: translate(0, 0);
    }

    8%,
    50% {
        -webkit-transform: translate(0, 224px);
    }
}

@keyframes animatedDotOne {

    0%,
    58%,
    100% {
        transform: translate(0, 0);
    }

    8%,
    50% {
        transform: translate(0, 224px);
    }
}

span.dot.no2 {
    -webkit-animation: animatedDotTwo 15s ease infinite;
    -ms-animation: animatedDotTwo 15s ease infinite;
    animation: animatedDotTwo 15s ease infinite;
}

@-webkit-keyframes animatedDotTwo {

    0%,
    2%,
    60%,
    100% {
        -webkit-transform: rotate(24deg) translate(0, 0);
    }

    10%,
    52% {
        -webkit-transform: rotate(24deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotTwo {

    0%,
    2%,
    60%,
    100% {
        -webkit-transform: rotate(24deg) translate(0, 0);
    }

    10%,
    52% {
        -webkit-transform: rotate(24deg) translate(0, 224px);
    }
}

@keyframes animatedDotTwo {

    0%,
    2%,
    60%,
    100% {
        transform: rotate(24deg) translate(0, 0);
    }

    10%,
    52% {
        transform: rotate(24deg) translate(0, 224px);
    }
}

span.dot.no3 {
    -webkit-animation: animatedDotThree 15s ease infinite;
    -ms-animation: animatedDotThree 15s ease infinite;
    animation: animatedDotThree 15s ease infinite;
}

@-webkit-keyframes animatedDotThree {

    0%,
    4%,
    62%,
    100% {
        -webkit-transform: rotate(48deg) translate(0, 0);
    }

    12%,
    54% {
        -webkit-transform: rotate(48deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotThree {

    0%,
    4%,
    62%,
    100% {
        -webkit-transform: rotate(48deg) translate(0, 0);
    }

    12%,
    54% {
        -webkit-transform: rotate(48deg) translate(0, 224px);
    }
}

@keyframes animatedDotThree {

    0%,
    4%,
    62%,
    100% {
        transform: rotate(48deg) translate(0, 0);
    }

    12%,
    54% {
        transform: rotate(48deg) translate(0, 224px);
    }
}

span.dot.no4 {
    -webkit-animation: animatedDotFour 15s ease infinite;
    -ms-animation: animatedDotFour 15s ease infinite;
    animation: animatedDotFour 15s ease infinite;
}

@-webkit-keyframes animatedDotFour {

    0%,
    6%,
    64%,
    100% {
        -webkit-transform: rotate(72deg) translate(0, 0);
    }

    14%,
    56% {
        -webkit-transform: rotate(72deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotFour {

    0%,
    6%,
    64%,
    100% {
        -webkit-transform: rotate(72deg) translate(0, 0);
    }

    14%,
    56% {
        -webkit-transform: rotate(72deg) translate(0, 224px);
    }
}

@keyframes animatedDotFour {

    0%,
    6%,
    64%,
    100% {
        transform: rotate(72deg) translate(0, 0);
    }

    14%,
    56% {
        transform: rotate(72deg) translate(0, 224px);
    }
}

span.dot.no5 {
    -webkit-animation: animatedDotFive 15s ease infinite;
    -ms-animation: animatedDotFive 15s ease infinite;
    animation: animatedDotFive 15s ease infinite;
}

@-webkit-keyframes animatedDotFive {

    0%,
    8%,
    66%,
    100% {
        -webkit-transform: rotate(96deg) translate(0, 0);
    }

    16%,
    58% {
        -webkit-transform: rotate(96deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotFive {

    0%,
    8%,
    66%,
    100% {
        -webkit-transform: rotate(96deg) translate(0, 0);
    }

    16%,
    58% {
        -webkit-transform: rotate(96deg) translate(0, 224px);
    }
}

@keyframes animatedDotFive {

    0%,
    8%,
    66%,
    100% {
        transform: rotate(96deg) translate(0, 0);
    }

    16%,
    58% {
        transform: rotate(96deg) translate(0, 224px);
    }
}

span.dot.no6 {
    -webkit-animation: animatedDotSix 15s ease infinite;
    -ms-animation: animatedDotSix 15s ease infinite;
    animation: animatedDotSix 15s ease infinite;
}

@-webkit-keyframes animatedDotSix {

    0%,
    10%,
    68%,
    100% {
        -webkit-transform: rotate(120deg) translate(0, 0);
    }

    18%,
    60% {
        -webkit-transform: rotate(120deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotSix {

    0%,
    10%,
    68%,
    100% {
        -webkit-transform: rotate(120deg) translate(0, 0);
    }

    18%,
    60% {
        -webkit-transform: rotate(120deg) translate(0, 224px);
    }
}

@keyframes animatedDotSix {

    0%,
    10%,
    68%,
    100% {
        transform: rotate(120deg) translate(0, 0);
    }

    18%,
    60% {
        transform: rotate(120deg) translate(0, 224px);
    }
}

span.dot.no7 {
    -webkit-animation: animatedDotSeven 15s ease infinite;
    -ms-animation: animatedDotSeven 15s ease infinite;
    animation: animatedDotSeven 15s ease infinite;
}

@-webkit-keyframes animatedDotSeven {

    0%,
    12%,
    70%,
    100% {
        -webkit-transform: rotate(144deg) translate(0, 0);
    }

    20%,
    62% {
        -webkit-transform: rotate(144deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotSeven {

    0%,
    12%,
    70%,
    100% {
        -webkit-transform: rotate(144deg) translate(0, 0);
    }

    20%,
    62% {
        -webkit-transform: rotate(144deg) translate(0, 224px);
    }
}

@keyframes animatedDotSeven {

    0%,
    12%,
    70%,
    100% {
        transform: rotate(144deg) translate(0, 0);
    }

    20%,
    62% {
        transform: rotate(144deg) translate(0, 224px);
    }
}

span.dot.no8 {
    -webkit-animation: animatedDotEight 15s ease infinite;
    -ms-animation: animatedDotEight 15s ease infinite;
    animation: animatedDotEight 15s ease infinite;
}

@-webkit-keyframes animatedDotEight {

    0%,
    14%,
    72%,
    100% {
        -webkit-transform: rotate(168deg) translate(0, 0);
    }

    22%,
    64% {
        -webkit-transform: rotate(168deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotEight {

    0%,
    14%,
    72%,
    100% {
        -webkit-transform: rotate(168deg) translate(0, 0);
    }

    22%,
    64% {
        -webkit-transform: rotate(168deg) translate(0, 224px);
    }
}

@keyframes animatedDotEight {

    0%,
    14%,
    72%,
    100% {
        transform: rotate(168deg) translate(0, 0);
    }

    22%,
    64% {
        transform: rotate(168deg) translate(0, 224px);
    }
}

span.dot.no9 {
    -webkit-animation: animatedDotNine 15s ease infinite;
    -ms-animation: animatedDotNine 15s ease infinite;
    animation: animatedDotNine 15s ease infinite;
}

@-webkit-keyframes animatedDotNine {

    0%,
    16%,
    74%,
    100% {
        -webkit-transform: rotate(192deg) translate(0, 0);
    }

    24%,
    66% {
        -webkit-transform: rotate(192deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotNine {

    0%,
    16%,
    74%,
    100% {
        -webkit-transform: rotate(192deg) translate(0, 0);
    }

    24%,
    66% {
        -webkit-transform: rotate(192deg) translate(0, 224px);
    }
}

@keyframes animatedDotNine {

    0%,
    16%,
    74%,
    100% {
        transform: rotate(192deg) translate(0, 0);
    }

    24%,
    66% {
        transform: rotate(192deg) translate(0, 224px);
    }
}

span.dot.no10 {
    -webkit-animation: animatedDotTen 15s ease infinite;
    -ms-animation: animatedDotTen 15s ease infinite;
    animation: animatedDotTen 15s ease infinite;
}

@-webkit-keyframes animatedDotTen {

    0%,
    18%,
    76%,
    100% {
        -webkit-transform: rotate(216deg) translate(0, 0);
    }

    26%,
    68% {
        -webkit-transform: rotate(216deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotTen {

    0%,
    18%,
    76%,
    100% {
        -webkit-transform: rotate(216deg) translate(0, 0);
    }

    26%,
    68% {
        -webkit-transform: rotate(216deg) translate(0, 224px);
    }
}

@keyframes animatedDotTen {

    0%,
    18%,
    76%,
    100% {
        transform: rotate(216deg) translate(0, 0);
    }

    26%,
    68% {
        transform: rotate(216deg) translate(0, 224px);
    }
}

span.dot.no11 {
    -webkit-animation: animatedDotEleven 15s ease infinite;
    -ms-animation: animatedDotEleven 15s ease infinite;
    animation: animatedDotEleven 15s ease infinite;
}

@-webkit-keyframes animatedDotEleven {

    0%,
    20%,
    78%,
    100% {
        -webkit-transform: rotate(240deg) translate(0, 0);
    }

    28%,
    70% {
        -webkit-transform: rotate(240deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotEleven {

    0%,
    20%,
    78%,
    100% {
        -webkit-transform: rotate(240deg) translate(0, 0);
    }

    28%,
    70% {
        -webkit-transform: rotate(240deg) translate(0, 224px);
    }
}

@keyframes animatedDotEleven {

    0%,
    20%,
    78%,
    100% {
        transform: rotate(240deg) translate(0, 0);
    }

    28%,
    70% {
        transform: rotate(240deg) translate(0, 224px);
    }
}

span.dot.no12 {
    -webkit-animation: animatedDotTwelve 15s ease infinite;
    -ms-animation: animatedDotTwelve 15s ease infinite;
    animation: animatedDotTwelve 15s ease infinite;
}

@-webkit-keyframes animatedDotTwelve {

    0%,
    22%,
    80%,
    100% {
        -webkit-transform: rotate(264deg) translate(0, 0);
    }

    30%,
    72% {
        -webkit-transform: rotate(264deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotTwelve {

    0%,
    22%,
    80%,
    100% {
        -webkit-transform: rotate(264deg) translate(0, 0);
    }

    30%,
    72% {
        -webkit-transform: rotate(264deg) translate(0, 224px);
    }
}

@keyframes animatedDotTwelve {

    0%,
    22%,
    80%,
    100% {
        transform: rotate(264deg) translate(0, 0);
    }

    30%,
    72% {
        transform: rotate(264deg) translate(0, 224px);
    }
}

span.dot.no13 {
    -webkit-animation: animatedDotThirteen 15s ease infinite;
    -ms-animation: animatedDotThirteen 15s ease infinite;
    animation: animatedDotThirteen 15s ease infinite;
}

@-webkit-keyframes animatedDotThirteen {

    0%,
    24%,
    82%,
    100% {
        -webkit-transform: rotate(288deg) translate(0, 0);
    }

    32%,
    74% {
        -webkit-transform: rotate(288deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotThirteen {

    0%,
    24%,
    82%,
    100% {
        -webkit-transform: rotate(288deg) translate(0, 0);
    }

    32%,
    74% {
        -webkit-transform: rotate(288deg) translate(0, 224px);
    }
}

@keyframes animatedDotThirteen {

    0%,
    24%,
    82%,
    100% {
        transform: rotate(288deg) translate(0, 0);
    }

    32%,
    74% {
        transform: rotate(288deg) translate(0, 224px);
    }
}

span.dot.no14 {
    -webkit-animation: animatedDotFourteen 15s ease infinite;
    -ms-animation: animatedDotFourteen 15s ease infinite;
    animation: animatedDotFourteen 15s ease infinite;
}

@-webkit-keyframes animatedDotFourteen {

    0%,
    26%,
    84%,
    100% {
        -webkit-transform: rotate(312deg) translate(0, 0);
    }

    34%,
    76% {
        -webkit-transform: rotate(312deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotFourteen {

    0%,
    26%,
    84%,
    100% {
        -webkit-transform: rotate(312deg) translate(0, 0);
    }

    34%,
    76% {
        -webkit-transform: rotate(312deg) translate(0, 224px);
    }
}

@keyframes animatedDotFourteen {

    0%,
    26%,
    84%,
    100% {
        transform: rotate(312deg) translate(0, 0);
    }

    34%,
    76% {
        transform: rotate(312deg) translate(0, 224px);
    }
}

span.dot.no15 {
    -webkit-animation: animatedDotFifteen 15s ease infinite;
    -ms-animation: animatedDotFifteen 15s ease infinite;
    animation: animatedDotFifteen 15s ease infinite;
}

@-webkit-keyframes animatedDotFifteen {

    0%,
    28%,
    86%,
    100% {
        -webkit-transform: rotate(336deg) translate(0, 0);
    }

    36%,
    78% {
        -webkit-transform: rotate(336deg) translate(0, 224px);
    }
}

@-ms-keyframes animatedDotFifteen {

    0%,
    28%,
    86%,
    100% {
        -webkit-transform: rotate(336deg) translate(0, 0);
    }

    36%,
    78% {
        -webkit-transform: rotate(336deg) translate(0, 224px);
    }
}

@keyframes animatedDotFifteen {

    0%,
    28%,
    86%,
    100% {
        transform: rotate(336deg) translate(0, 0);
    }

    36%,
    78% {
        transform: rotate(336deg) translate(0, 224px);
    }
}

@media screen and (max-width: 599px) {
    span.dot:after {
        background-color: #1c75bc;
    }
}

h2 {
    color: #000;
    text-align: left;
    margin: 20px;
    font-size: 45px;
}

h2::before {
    display: inline-block;
    margin: 0 1px 14px 0;
    height: 3px;
    content: " ";
    text-shadow: none;
    background-color: #51ffff;
    width: 20px;
}

p {
    padding: 0 60px;
    text-align: left;
}

.quienesSomos {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}

#unidades {
    background: linear-gradient(60deg, rgba(84, 58, 183, 1) 0%, rgba(0, 172, 193, 1) 100%);
    color: white;
    font-size: 1.2em;
    text-align: center;
    padding: 10% 30px;
}

#unidades p,
#unidades h2 {
    color: #FFFFFF;
}

.unidadesContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 92.8%;
    margin: auto;
    grid-auto-rows: 1fr
}

.unidadesContainer div {
    width: 33%;
    border: 1px solid #51ffff;
    border-radius: 5px;
    margin: 20px;
    padding: 40px;
    align-self: stretch;
}

ul {
    line-height: 0.8em;
    margin: 5px 0 15px;
    padding: 0;
}

li {
    list-style-type: square;
    position: relative;
    padding: 10px 0;
    text-align: left;
    font-size: 0.8em;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 600px) {
    #logoHeader {
        height: 65%;
        padding: 4% 0;
    }

    .top--scrolling .navbar__item {
        text-align: center;
        width: 100%;
    }

    .navbar {
        display: grid;
        text-align: center;
    }

    .navbar__item {
        line-height: 0;
    }

    .navbar__menu {
        display: block;
    }

    .top {
        height: 95px;
    }

    .navbar__link {
        margin-right: 20px;
        font-size: 0.7em;
    }

    .menuSeparator {
        margin-top: 16px;
    }
    .quienesSomos {
        display: block;
    }
    .quienesSomosText {
        padding-bottom: 40px;
    }
    .circle-animation {
        width: 200px;
        height: 200px;
    }
    .work-animation img, .contacto img {
        top: 46%;
        left: 46%;
    }
    h2 {
        font-size: 30px;
    }
    p {
        font-size: 22px;
    }
    .unidadesContainer {
        display: block;
    }
    .unidadesContainer div {
        width: 80%;
        margin: auto;
        margin-bottom: 40px;
    }
}
