/* General */
:root {
    --corporative: #e7312a;
    --secondary: #1a1a1a;
    --third: #75817f;
    --corporative_img: rgba(231, 49, 42, 0.4);
    --corporative_menu: rgba(231, 49, 42, 0.8);
    --white: #fff;
    --gradiant: rgba(0, 0, 0, 0);
    --dark-gray: rgba(51, 51, 51, 0.5);
}

body {
	min-height: 100%;
    display: flex !important;
    flex-direction: column !important;
    background-color: #f5f5f5;
	font-family: 'Montserrat', sans-serif;
	color: var(--secondary);
	font-size: 16px;
	line-height: 30px;
    padding-right: 0!important;
}

* {
	box-sizing: border-box;
}

html {
    height: 100%!important;
    scroll-behavior: smooth;
    width: 100vw;
    overflow-x: hidden;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
}

::selection {
    color: #fff;
    background: var(--corporative);
}

a {
    text-decoration: none;
    transition: all linear 0.3s;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    transition: all linear 0.3s;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
}

h2 {
    font-size: 1.5em;
    max-width: 70%;
    color: #fff;
    font-weight: 300;
}

.button {
    padding: 10px 25px;
    background-color: var(--corporative);
    color: #fff!important;
    border-radius: 30px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid var(--corporative);
    transition: all linear 0.3s;
    width: fit-content;
    display: block;
}

.button:hover {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    transition: linear 0.3s;
    color: #fff!important;
}

.button_secondary {
    padding: 10px 25px;
    background-color: transparent;
    color: #fff;
    border-radius: 30px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid #fff;
    transition: linear 0.3s;
    width: fit-content;
}

.button_secondary:hover {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    transition: linear 0.3s;
    color: #fff!important;
}

.bg-dark .button_secondary:hover {
    background-color: var(--corporative);
    border: 1px solid var(--corporative);
    transition: linear 0.3s;
    color: #fff!important;
}

.button:focus, .button_secondary:focus {
    outline: none;
}

#about .button i, .close_gallery i {
    transition: all linear 0.2s;
}

#about .button:hover i, .close_gallery:hover i {
    transform: translateX(3px);
    transition: all linear 0.2s;
}

.lighted {
    font-weight: 600;
    color: var(--corporative);
}

.link {
    color: #acacac;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.link:hover {
    color: var(--secondary);
    transition: all 0.3s;
}

.link.active {
    background-color: var(--corporative);
    transition: all 0.3s;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
}

.shadowland {
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.title {
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.4em;
}

.title svg {
    fill: var(--corporative);
    height: 35px;
    margin-right: 15px;
}

.bg-corp .title svg {
    fill: var(--white);
}


.author {
    color: var(--corporative);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.bg-white {
    color: var(--secondary);
}

.bg-white .title, .bg-dark .title, .bg-grey .title {
    color: var(--corporative);
}

.bg-corp {
    background-color: var(--corporative);
    color: #fff;
}

.bg-dark {
    background-color: var(--secondary);
    color: #fff;
}

.bg-grey {
    background-color: #efefef;
}

.bg-green {
    background-color: var(--third);
    color: #fff;
}

.bg-light {
    background-color: #f5f5f5!important;
}

.one {
    position: fixed;
    height: 100vh;
    width: 100vw;
}

.two {
    position: relative;
    height: 100%;
    width: 100%;
}

.img-back {
    background-image: url(../img/client.jpg);
    background-position: center;
    background-size: cover;    
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.rounded-img {
    border-radius: 50%;
}

.flying {
    position: absolute;
    top: -15%;
    left: 15%;
    height: 65vh;
    width: 20vw;
    transition: all linear 0.7s;
    border-radius: 0px 0px 270px 270px!important;
}

.not_flying {
    position: absolute;
    top: -7vw;
    left: 45%;
    height: 10vw;
    width: 10%;
    transition: all linear 0.9s;
    border-radius: 50%!important;
}

.flying_2 {
    position: absolute;
    top: 145%;
    left: 15%;
    height: 20vw;
    width: 20vw;
    transition: all linear 0.7s;
    border-radius: 50%;
}

.gallery .card {
    cursor: pointer;
}

.card {
    background-color: #fff;
    color: var(--corporative);
    border-radius: 15px;
    height: 100%;
    min-height: 200px;
    display: flex;
    overflow: hidden;
    border: none;
    transition: all linear 0.3s;
}

.card:hover img {
    transition: all linear 0.3s;
    transform: translateX(10px);
}

.card:hover {
    transition: all linear 0.3s;
    transform: translateX(5px);
    color: var(--secondary);
}

.card_title {
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1em;
    z-index: 1;
}

.card_btn {
    padding: 5px 10px;
    background-color: var(--corporative);
    border-radius: 10px;
    color: #fff;
    z-index: 1;
    transition: all linear 0.3s;
}

.card:hover .card_btn {
    background-color: #000;
    border-radius: 10px;
    color: #fff;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    transition: all linear 0.3s;
}

.card img {
    height: 190px;
    width: 190px;
    border-radius: 50%;
    position: absolute;
    right: 45px;
    bottom: -50px;
    transition: all linear 0.3s;
}

.skills .card {
    background-color: #fff;
    color: var(--corporative);
    border-radius: 15px;
    padding: 12px 16px;
    height: 100%;
    min-height: 0;
    display: flex;
    overflow: hidden;
    border: solid 3px #fff;
    transition: all linear 0.3s;
    white-space: nowrap;
    cursor: default;
}

.grid-system .card {
    cursor: pointer!important;
}

.grid-system .card .img-container {
    height: 100%;
    width: 100%;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    transition: all linear 0.3s;
    background-size: cover;
    background-position: center;
}

.grid-system .card_title {
    font-size: 1.5em;
    line-height: 0;
    z-index: 1;
    text-align: center;
    color: var(--corporative);
    opacity: 0;
    color: rgba(255, 255, 255, 0.7);
    height: 100%;
    width: 100%;
    transition: all linear 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-system .card_btn {
    padding: 8px;
    transition: all linear 0.4s;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
}

.grid-system .card_btn:hover {
    transition: all linear 0.3s;
}

.grid-system .card:hover .img-container {
    transition: all linear 1.2s;
    transform: scale(1.3);
}

.grid-system .card:hover {
    transition: all linear 0.3s;
    transform: none;
}

.grid-system .card:hover .card_title {
    transition: all linear 0.6s;
    transform: none;
    opacity: 0.9;
    /* background-color: rgb(231, 49, 42, 0.3); */
}

.skills .card:hover {
    -webkit-box-shadow: inset 8px 8px 12px #f3f3f3;
    -moz-box-shadow: inset 8px 8px 12px #f3f3f3;
    box-shadow: inset 8px 8px 12px #f3f3f3;
    transform: none;
}

.blur {
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
}


#background {
    background-image: url(../img/fog.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}


.grid-system {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: calc(70vw/8);
    grid-auto-flow: dense;
    grid-gap: 8px;
}

.grid-system div:nth-child(5n) {
    grid-column-end: span 2;
    grid-row-end: span 2;
}

.grid-system :nth-child(3n+4) {
    grid-column-end: span 2;
    grid-row-end: span 1;
}

/* .grid-system :nth-child(7n+10) {
    grid-column-end: span 1;
    grid-row-end: span 2;
} */

.portfolio-item.active {
    display: block;
}

.portfolio-item {
    display: none;
}

.grid-system .card {
    border-radius: 0px;
    height: 100%;
    min-height: 0;
    display: flex;
    overflow: hidden;
    border: none;
    transition: all linear 0.3s;
    white-space: nowrap;
    cursor: default;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}

.grid-system .card:hover image {
    transform: scale(1.1);
}

.close_gallery {
    font-size: 1.2em;
    color: var(--third);
    font-weight: 700;
    display: block;
    width: fit-content;
    transition: all 0.3s;
}

.close_gallery:hover {
    color: var(--secondary);
    transition: all 0.3s;
}

.close_gallery i {
    transition: all 0.3s;
}

.close_gallery:hover i {
    color: var(--corporative);
    transform: translateX(3px);
}


/* Projects */

#sepie {
    background-image: url(../img/works/sepie_back.jpg);
}

#subjective {
    background-image: url(../img/works/subjective_2.jpg);
}

#diagonal {
    background-image: url(../img/works/diagonal_2.jpg);
}

#oleum {
    background-image: url(../img/works/oleum.jpg);
}

#nnw {
    background-image: url(../img/works/nnw.jpg);
}

#monegros {
    background-image: url(../img/works/monegros.jpg);
}

#violet {
    background-image: url(../img/works/violet-boxbig.jpg);
}

#maskot {
    background-image: url(../img/works/maskot_back.jpg);
}

#up {
    background-image: url(../img/works/up.jpg);
}

#localrock {
    background-image: url(../img/works/localrock_6.jpg);
}

#global {
    background-image: url(../img/works/global_income_3.jpg);
}

#drnieto {
    background-image: url(../img/works/drnieto.jpg);
}

#eventsroad {
    background-image: url(../img/works/eventsroad_back.jpg);
}

#growth {
    background-image: url(../img/works/growth_back.jpg);
}

#cepes {
    background-image: url(../img/works/cepes_back.jpg);
}

#coop {
    background-image: url(../img/works/coop_back.jpg);
}

#yoigo {
    background-image: url(../img/works/yoigo_back.jpg);
}

#townhalls {
    background-image: url(../img/works/townhalls_back.jpg);
}

#kingston {
    background-image: url(../img/works/kingston.jpg);
}

#unesco {
    background-image: url(../img/works/unesco.png);
}

#shameless {
    background-image: url(../img/works/shameless.jpg);
    background-position: right;
}

#cokeweiser {
    background-image: url(../img/works/cokeweiser_back.jpg);
}

#coke {
    background-image: url(../img/works/coke_back.jpg);
}

#alr {
    background-image: url(../img/works/alr_back.jpg);
}

#eros {
    background-image: url(../img/works/eros.png);
}

#virds {
    background-image: url(../img/works/virds.jpg);
}

#kugan {
    background-image: url(../img/works/kugan.jpg);
}

#amsy {
    background-image: url(../img/works/amsy.jpg);
}

#emt {
    background-image: url(../img/works/emt.jpg);
}

#peace {
    background-image: url(../img/works/love.jpg);
}

#animals {
    background-image: url(../img/works/rooster.jpg);
}

#stark {
    background-image: url(../img/works/stark_back.jpg);
}

#nimbus {
    background-image: url(../img/works/nimbus.jpg);
}

#myth {
    background-image: url(../img/works/poseidon.jpg);
}

#treed {
    background-image: url(../img/works/treed.jpg);
}

#marvel {
    background-image: url(../img/works/marvel.jpg);
}

#yoda {
    background-image: url(../img/works/yoda.jpg);
}

#heisenberg {
    background-image: url(../img/works/heisenberg_3.jpg);
}

#tiendarepsol {
    background-image: url(../img/works/tienda_back.jpg);
}


/* Efecto Hover Secciones */
.wrap-image {
    position: relative;
}

.wrap-image img {
    z-index: 1;
    border-radius: 10px;
}

.wrap-image::before,
.wrap-image::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    border: 2px solid #e7312a;
    transition: all .25s ease-out;
    border-radius: 10px;
}

.wrap-image::before {
    background-color: #e7312a;
    top: -5px;
    left: -5px;
}

.wrap-image::after {
    bottom: -5px;
    right: -5px;
}

.wrap-image:hover::before {
    top: 10px;
    left: 10px;
}

.wrap-image:hover::after {
    bottom: 10px;
    right: 10px;
}


/* Go top */
.ir-arriba {
    display: none;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
    font-size: 20px;
    color: var(--corporative);
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 15px;
    z-index: 998;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    transition: ease-in-out 0.3s;
}

.ir-arriba:hover {
    background: var(--secondary);
    color: #fff;
    transition: ease-in-out 0.3s;
}


/* Menu */
.main_menu {
    width: 80%;
    margin: 0 auto;
    top: 0;
    z-index: 999;
    position: fixed;
    left: 10%;
    font-size: 14px;
}

.main_menu img {
	max-height: 60px;
    transition: ease-in 0.3s;
    padding: 5px;
}

.menu {
    margin: 0 auto;
}

.menu_sin_color {
    box-shadow: none;
    transition: ease-in 0.3s;
	color: var(--secondary);
	padding-top: 20px!important;
    border-radius: 0px 0px 15px 15px;
}

.menu_sin_color .logo {
    display: none;
}

.menu_con_color .logo {
    display: inline;
}

.menu_con_color .navbar-collapse .nav-link {
    padding: 6px 8px;
    border-radius: 30px;
}

.main_menu a {
    color: var(--secondary);
}

.menu_sin_color .navbar-nav .nav-link:hover, .menu_sin_color .navbar-nav .nav-link.active {
    backdrop-filter: blur(5px);
    border-radius: 40px;
    padding: 7px 20px!important;
    font-weight: 500;
    color: #fff;
    background-color: var(--corporative);
}

.menu_sin_color .collapse .nav-link {
    backdrop-filter: blur(0px);
    border-radius: 30px;
    padding: 7px 20px!important;
    text-align: center;
    font-weight: 500;
    color: var(--third);
    background-color: rgba(255, 255, 255, 0.8);
}

.main_menu a:hover {
    color: var(--corporative);
    transition: ease-in 0.3s;
}

.menu_con_color {
    transition: all linear 0.3s;
	background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0px 0px 25px 25px;
}

.menu_con_color .navbar-nav .nav-link.active {
    border-radius: 40px;
    padding: 7px 20px!important;
    font-weight: 500;
    color: #fff;
    background-color: var(--corporative);
}

.menu_con_color a {
    color: var(--white);
    font-weight: 600;
}

.menu_con_color img {
	max-height: 50px;
    transition: ease-in 0.3s;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .35rem 1rem;
    border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--corporative);
    text-decoration: none;
    background-color: transparent;
}

.menu_con_color .navbar-toggler i {
    color: var(--corporative);
    font-size: 1.3em;
}

.menu_sin_color .navbar-toggler i {
    color: var(--third);
    font-size: 1.3em;
}

.navbar-toggler, .navbar-toggler:focus {
    padding: 0;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
}

button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
    border: none;
}



/* Modales */
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: hidden;
}

.modal .close {
    float: right;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary);
    text-shadow: none;
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 10px;
    font-size: 1.5em;
    transition: all linear 0.2s;
    cursor: pointer;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    padding: 5px 10px;
    background-color: rgba(255,255,255,0.2);
}

.modal-content {
    border-radius: 10px;
    overflow: hidden;
    background-color: transparent;
}

.modal .close:hover {
    transition: all linear 0.2s;
    color: var(--white);
    background-color: var(--secondary);
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: 1;
}

.modal .info {
    background-color:  var(--secondary);
    padding: 40px;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    font-size: 14px;
    line-height: 24px;
}

.modal .info .product_title {
    font-weight: 700;
    font-size: 1.5em;
    color: var(--corporative);
    margin-bottom: 10px;
}

.modal .info a {
    font-size: 1.2em;
    color: var(--third);
    margin-top: 10px;
    font-weight: 700;
    display: block;
    width: fit-content;
    transition: all 0.3s;
}

.modal .info a:hover {
    color: var(--white);
    transition: all 0.3s;
}

.modal .info a i {
    transition: all 0.3s;
}

.modal .info a:hover i {
    color: var(--corporative);
    transform: translateX(3px);
}

.fade {
    transition: all .15s linear;
    background-color: rgb(255 255 255 / 60%);
    backdrop-filter: blur(8px);
}

.web_btn {
    position: absolute;
    bottom: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.web_btn a {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, .2);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
}

.web_btn a:hover {
    padding: 10px 20px;
    background-color: var(--corporative);
    color: #fff;
    border: 1px solid var(--corporative);
    border-radius: 30px;
}

.modal_title {
    color: #fff;
    font-size: 1.3em;
}

.modal-body ul {
    list-style: none;
    padding: 5px 0px;
}

.modal-body ul li a {
    color: var(--corporative);
}

.modal-body ul li a:hover {
    color: var(--secondary);
    transition: linear 0.2s;
}

.linked {
    color: #7e7e7e;
}

.linked:hover {
    color: var(--corporative);
}

.modal-content {
    border: 0px solid rgba(0, 0, 0, .2);
}

#persona img {
    border-radius: 50%;
}

.datos_docs-bt {
    color: var(--corporative);
    font-size: 1.5em;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slick-dots {
    display: none;
}


/* Footer */
.footer {
    background-color: #000000;
    color: #7e7e7e;
    margin-top: auto;
}

.footer a {
    color: #7e7e7e;
}

.footer a:hover {
    color: #fff;
    transition: linear 0.3s;
}


/* Scroll */
body {
    overflow-y: scroll;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 0px;
    background-color: #000;
}

body::-webkit-scrollbar-track {
    background-color: #000;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--corporative);
    height: 200px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
}


/* Secciones */
.intro {
	min-height: 100%;
    height: 100vh;
    z-index: 99;
}

.intro .row {
    height: 100%;
}

.intro .claim {
	font-size: 5em;
	color: #fff;
	font-weight: 800;
	line-height: 1.1em;
    text-align: center;
    letter-spacing: 3px;
}

/* .intro h1 {
    text-shadow: red 0 0, cyan 0 0;
    transition: text-shadow 200ms;
}

.intro h1:hover {
	text-shadow: red -3px 0, cyan 3px 0;
} */

.arrow {
    animation-name: scrolldown;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-delay: 2;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: initial;
    bottom: 20px;
    color: #fff;
    font-size: 2em;
    position: absolute;
}

.arrow a {
    color: #fff;
}

.arrow a:hover {
    color: var(--corporative);
}

@keyframes scrolldown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    20%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(50px);
    }
}

#about {
	position: relative;
}

.works {
    overflow-x: hidden;
    position: relative;
}

#contact {
    color: #fff;
}

#contact i {
    font-size: 20px;
}

#soon{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    transition: all .3s;
    z-index: 998;
    flex-direction: row;
    background-color: var(--secondary);
}

.clients {
    background-color: #fff;
    background-image: url(../img/one.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

.slider_socios {
    overflow: hidden;
    width: 100%;
}

.animation {
    width: auto;
    height: 120px;
    font-size: 0px;
}

.animation div {
    display: inline-block;
    width: auto;
    float: none;
    padding: 0 10px;
}

.animation img {
    max-height: 120px;
}

.client_logo {
    filter: grayscale(1);
    transition: linear 0.2s;
}

.client_logo:hover {
    filter: grayscale(0);
    transition: linear 0.2s;
}

.carousel-indicators {
    position: relative;
    bottom: 0px;
    margin-bottom: 0;
}

.carousel-indicators .active {
    background-color: var(--corporative);
}

.carousel-indicators li {
    background-color: var(--corporative_img);
}

.carousel-control-next {
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.2));
}

.carousel-control-prev {
    background: linear-gradient(to left, transparent, rgba(0,0,0,0.2));
}



/* Slick Slider */
.slick-prev {
    left: -4.6% !important;
    z-index: 999;
    width: initial;
    height: initial;
}

.slick-next {
    right: -4.6% !important;
    z-index: 999;
    width: initial;
    height: initial;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 40px !important;
    line-height: 1;
    opacity: 1;
    color: var(--first) !important;
    -webkit-font-smoothing: antialiased;
}

.slick-prev:hover,
.slick-next:hover {
    color: var(--second) !important;
}

.slick-slide img {
    max-height: 120px;
}




/* Querys */

@media (max-width: 1080px) {
    .grid-system {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: calc(70vw/6);
    }
}

@media (max-width: 991px) {
    h2 {
        font-size: 1.2em;
        max-width: 100%;
    }

	.menu_sin_color {
		padding: .8rem 1rem;
	}

	.navbar {
		padding: .8rem 1rem;
	}

	.dropdown-menu {
		background-color: transparent;
		border: 0px;
		text-align: right;
        font-size: inherit;
        padding-bottom: 10px;
	}

    .dropdown-item {
        padding: .35rem 0rem;
        color: var(--corporative)!important;
    }

    .main_menu {
        width: 90%;
        left: 5%;
    }

    .item-1 {
        min-height: calc(100vw/4);
    }
    
    .item-2 {
        min-height: calc(100vw/8);
    }
    
    .item-3 {
        min-height: calc(100vw/8);
    }

    .flying {
        left: -50px;
        height: 70%;
        border-radius: 40px!important;
        width: 200px;
        top: 15%;
    }

    .not_flying {
        top: -110px;
        left: 40%;
        height: 20vw;
        width: 20%;
        border-radius: 50%!important;
    }

    .grid-system {
        grid-template-columns: repeat(5, 1fr);
        grid-auto-rows: calc(80vw/5);
    }

    .intro .claim {
        font-size: 2.5em;
    }

    h1 {
        font-size: 1.7em;
    }

    .title {
        font-size: 1.2em;
    }

    .link, .link.active {
        padding: 5px 12px;
    }

}

@media (max-width: 810px) {
    
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.5em;
        line-height: 1em;
    }

    h2 {
        font-size: 1.1em;
        max-width: 100%;
    }

    .item-1 {
        min-height: calc(100vw/2);
    }
    
    .item-2 {
        min-height: calc(100vw/4);
    }
    
    .item-3 {
        min-height: calc(100vw/4);
    }

    .card_title {
        font-size: 1.1em;
    }

    .flying {
        left: 75%;
        height: 150px;
        border-radius: 100px!important;
        width: 150px;
        top: 80%;
    }

    .intro .claim {
        font-size: 2.3em;
    }

    .navbar-collapse {
        position: absolute;
        right: 0px;
        top: 65px;
    }

    .menu_con_color {
        border-radius: 0px 0px 15px 15px;
    }

    .menu_con_color .navbar-collapse {
        border-radius: 15px;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 10px 20px;
        top: 65px;
    }

    .menu_con_color .navbar-nav .nav-link.active {
        border-radius: 0px;
        padding: 6px 8px!important;
        background-color: transparent;
    }

    .menu_con_color .navbar-nav .nav-link.active:hover {
        color: var(--corporative);
    }

    .main_menu {
        font-size: 16px;
    }

    .grid-system {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: calc(80vw/4);
    }
}

@media (max-width: 576px) {
    .slick-prev:before,
    .slick-next:before {
        display: none;
    }

    .item-1 {
        height: calc(100vw/6);
        min-height: calc(100vw/4);
    }
    
    .item-2 {
        height: calc(100vw/12);
        min-height: calc(100vw/4);
    }
    
    .item-3 {
        height: calc(100vw/12);
        min-height: calc(100vw/4);
    }

    .card {
        min-height: 100px;
    }

    .card img {
        right: -65px;
    }

    .skills .card {
        padding: 8px 12px!important;
        border-radius: 10px;
    }

    .grid-system {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: calc(70vw/3);
    }

    .modal .info {
        padding: 20px;
    }

    .title {
        font-size: 1.5em;
    }

}

@media (max-width: 450px) {
    h1 {
        font-size: 1.7em;
        line-height: 1em;
    }

    .intro .claim {
        font-size: 3em;
    }

    .grid-system {
        grid-auto-rows: calc(80vw/3);
    }
}

@media (min-width: 2200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1450px;
    }
}

@media (min-width: 2800px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1650px;
    }
}