/*

Landing Page to MarketPlace Novaventa Company Medellin, Colombia
Author: MIGUEL ANGEL CANO FERNANDEZ
Medellin, Colombia

*/


/*ANIMATIONS*/

@keyframes Jumping {
    5%,
    50% {
        transform: scale(1);
    }
    10% {
        transform: scale(0.9);
    }
    15% {
        transform: scale(1.1);
    }
    20% {
        transform: scale(1.1) rotate(-2deg);
    }
    25% {
        transform: scale(1.1) rotate(2deg);
    }
    30% {
        transform: scale(1.1) rotate(-1deg);
    }
    35% {
        transform: scale(1.1) rotate(0deg);
    }
    40% {
        transform: scale(1.1) rotate(0);
    }
}

@keyframes ModalShow {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    40% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes BodyAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes CardsAppear {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}


/*END ANIMATIONS*/


/*ICONS*/

.far {
    font-family: "Font Awesome Pro" !important;
    font-weight: 400;
}

.fal {
    font-family: "Font Awesome Pro" !important;
    font-weight: 300;
}

.fab {
    font-family: "Font Awesome Brands" !important;
    font-weight: 900;
}


/*GLOBAL STYLES*/

* {
    margin: 0;
    padding: 0;
}

p {
    line-height: 24px;
    font-weight: 300;
}

*::after,
*::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "ProximaNova";
}

a {
    text-decoration: none;
}

.container {
    padding: 0 7%;
}

.margin_container {
    margin: 0 7%;
}

.button1 {
    background-color: #345EEA;
    text-align: center;
    color: white;
    border-radius: 6px;
    transition: all .2s;
}

.button1:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.button1:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

.bold {
    font-weight: bold;
}

.semi-bold {
    font-weight: 500;
}

.button2 {
    border: 2px solid #345EEA;
    border-radius: 6px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    max-width: 300px;
    color: #345EEA;
    font-weight: bold;
}

.title1 {
    color: #345EEA;
    font-size: 34px;
}

.owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 4;
    height: 0;
    margin: auto !important;
}

.hidden-lg {
    display: none;
}

.hidden-sm {
    display: none;
}

.hidden-xs {
    display: none;
}

.hidden-md {
    display: none;
}

@media (max-width:600px) {
    .container {
        padding: 0 4%;
    }
    .margin_container {
        margin: 0 4%;
    }
}

@media (max-width:450px) {
    .hidden-xs {
        display: block !important;
    }
}

@media (max-width:1000px) and (min-width:600px) {
    .hidden-sm {
        display: block !important;
    }
}

@media (max-width:1300px) and (min-width:1001px) {
    .hidden-md {
        display: block !important;
    }
}

@media (min-width:1350px) {
    .hidden-lg {
        display: block !important;
    }
}


/*END GLOBAL STYLES*/


/*ALERT*/

.alert {
    display: flex;
    height: 65px;
    justify-content: center;
    align-items: center;
    background: #EAEFFD;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #3F4B5F;
    font-size: 18px;
    margin-bottom: 30px;
}

@media (max-width:600px) {
    .alert {
        color: #879AB9;
        padding: 16px;
        font-size: 16px;
    }
}


/*MODAL DE MARCAS*/

.modal {
    display: none;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgb(31, 38, 53, 0.8);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    margin: 5% auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    height: 80%;
    border: 1px solid #707070;
    border-radius: 14px;
    animation-name: ModalShow;
    animation-duration: 1s;
}

.modal-content iframe {
    width: 100%;
    height: 100%;
}

.modal-header .close {
    color: #345EEA;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 20px;
}

.modal-header .close:hover,
.modal-header .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 30px 0 70px 70px;
    color: #345EEA;
    font-size: 34px;
    font-family: ProximaNova;
}

.modal-body {
    padding: 2px 16px;
    height: 60vh;
}

@media (max-width:450px) {
    .modal-header {
        padding-left: 20px;
        padding-top: 20px;
        font-size: 26px;
    }
}