:root {

    --dark-color: #090909;
    --white-color: #ffffff;
    --dark-gray-color: #585858;
    --gray-color: #8a8a8a;
    --ligth-gray-color: #cacaca;


    --dark-color-50: rgba(9,9,9,0.7);
    --white-color-50: rgba(255,255,255,0.85);
    --ligth-gray-color-50: rgba(202,202,202,0.7);


    --web-full-area: 100%;
    --web-work-area: 950px;
    --form-width: 650px;
    --mobile-work-area: 100%;
    --mobile-form-with: 320px;
}

@font-face {
	font-family: 'Jakarta';
	src: 
		url('fonts/PlusJakartaSans-VariableFont_wght.ttf') 
        format('opentype')
        ;
}


html, body {
    /* overscroll-behavior-y: contain; */
    --webkit-user-select: none;
    --webkit-tap-highlight-color: transparent;
    --webkit-touch-callout: none;
}

body {
    width: 100%;
    margin: 0px;
    font-family: Jakarta, Verdana;
    height: 100%;
    background: var(--white-color);
    color: var(--dark-color);
}

a, a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: inherit;
}

/* NOTIFICACIONES FIJAS */

.fix-message {
	width: 500px;
	min-height: 65px;
	color: var(--black-color);
	background: var(--white-color);
	right: -500px;
	border-radius: 10px 0px 0px 10px;
    text-align: justify;
    position: fixed;
    z-index: 11;
    margin-top: 0px;
    transition: all 300ms linear;
    display: grid;
    grid-template-columns: 10% 90%;
    box-shadow: 0.5px 0.5px 2px var(--dark-gray-color);
    top: 150px;
}

.active-notif {
	right: 0px;
}

.f-icon {
	display: inline-block;
	font-size: 25px;
	color: var(--white-color);
	padding: 50% 30%;
	border-radius: 10px 0px 0px 10px;
}

.f-msg { 
	display: inline-block;
	border-left: solid 1px var(--white);
    padding: 10px;
    margin: auto 10px;
}

.f-msg div {
	display: inline-block;
}

.alert {
    background: rgba(226, 252, 83, 0.99);
}

.info {
    background: rgba(83, 183, 250, 0.99);
}

.success {
    background: rgba(58, 238, 42, 0.99);
}

.error {
    background: rgba(209, 24, 0, 0.99);
}

/* <--NOTIFICACIONES FIJAS */

.full-container {
    margin: 0px auto;
    width: var(--web-full-area);
}

.top-menu-container {
    width: var(--web-full-area);
    position: fixed;
    top: 0;
    border-bottom: solid 1px var(--ligth-gray-color);
}

.sf-menu {
    width: var(--web-full-area);
    height: 90px;
    /* background: var(--dark-color); */
    color: var(--white-color);
}

.sf-icons-menu {
    display: grid;
    background: var(--white-color-50);
    grid-template-columns: 80px auto 80px;
    margin: auto auto;
    width: 100%;
    padding: 10px 0px 10px 0px;
}

.menu-c-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-c-title img {
    height: 70px;
}


.info-container {
    width: 100%;
    margin-top: 90px;
}

.section {
    width: 100%;
    height: 80vh;    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.section.cover {
    background-image: url("../assets/images/camera_01.jpg");
}

.cover.main-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: var(--dark-color-50);
}

.cover.main-img img {
    width: 400px;
}

.section.first-message {
    background-image: url("../assets/images/camera_02.jpg");
    display: grid;
    grid-template-rows: 70% 20% 10%;
}

.about-us-text {
    width: 60%;
    margin: 20px auto;
    background: var(--white-color-50);
    padding: 40px 20px;
    border-radius: 10px;
    font-weight: 300;
    font-size: 18px;
}

.first-message.empty {
    display: flex;
    justify-content: center;
    align-items: center;
}

.first-message.text-message {
    background: var(--gray-color) ;
    color: var(--ligth-gray-color);
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section.benefits {
    background-image: url("../assets/images/camera_03.jpg");
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-card {
    width: 60%;
    padding: 20px;
    background: var(--white-color-50);
    color: var(--dark-color);
    font-weight: 100;
    border-radius: 10px;
}

.benefits.title {
    font-size: 40px;
    text-align: center;
}

.benefits.list {
    width: 100%;
    font-size: 18px;
}

.benefits-icon {
    padding: 0px 5px;
}

.benefits.list-elem {
    padding: 10px 0px;
}

.section.join {
    background-image: url("../assets/images/camera_04.jpg");
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-card {
    width: 50%;
    padding: 20px 20px 50px 20px;
    background: var(--dark-color-50);
    color: var(--ligth-gray-color);
    font-weight: 100;
    border-radius: 10px;
    text-align: center;
}

.join.title {
    font-size: 40px;
    text-align: center;
    margin: 0px 0px 20px 0px;
}

.join.text {
    font-size: 18px;
    margin: 0px 0px 10px 0px;
}

.join.big-note {
    font-size: 20px;
    margin: 10px 0px 30px 0px;
}

.join.small-note {
    font-size: 14px;
}


.form-row {
    width: 100%;
}

.footer-container {
    padding: 20px 0px;
    background: var(--dark-color);
    color: var(--gray-color);
    padding: 50px 80px;
    /* bottom: 0px;
    position: fixed; */
    width: var(--web-full-area);
}

.footer-card {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    width: 80%;
    color: var(--ligth-gray-color);
    margin: 0px auto;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    width: 100px;
}

.footer-title {
    grid-column: 1 / span 3;
    text-align: center;
    font-size: 30px;
}


.footer-dev {
    grid-column: 1 / span 3;
    text-align: center;
    font-size: 14px;
}

.footer-version {
    font-size: 10px;
    font-weight: 100;
    padding: 0px 10px;
}

.resources-container {
    width: 100%;    
    height: 80vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url("../resources/resources_back.jpg");
}


.resources-card {
    width: 800px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 50% 50%;
    background: var(--dark-color-50);
    border-radius: 10px;
    padding: 30px 20px;
    height: inherit;
}

.resources-title {
    grid-column: 1 / span 2;
    margin: 30px 0px 30px 0px;
    text-align: center;
    font-size: 25px;
    color: var(--ligth-gray-color);
    
}

.resource-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.resource-image img {
    max-width: 80%;
    max-height: 100%;
}

.resource-buttons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--ligth-gray-color);
}



.btn {
    cursor: pointer;
}

.button {
    background: var(--dark-color);
    border: solid 1px var(--dark-gray-color);
    padding: 15px 25px;
    border-radius: 5px;
    margin: 0px 10px;
    width: 120px;
    color: var(--white-color);
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    text-align: center;
}

.button:hover {
    background-color: var(--dark-gray-color);
}

/* GENERALES */
.col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.bold {
    font-weight: 600;
}

.bolder {
    font-weight: 800;
}

@media only screen and (max-width:812px) {

    .fix-message {
        width: 100vw;
    }

    .full-container {
        width: var(--mobile-work-area);
    }

    .sf-menu {
        width: var(--mobile-work-area);
        height: 60px;
    }

    .sf-icons-menu {
        width: var(--mobile-work-area);
    }

    .menu-c-title img {
        height: 40px;
    }

    .info-container {
        margin-top: 60px;
    }

    .cover.main-img img {
        width: 350px;
    }

    .section.first-message {
        grid-template-rows: 85% 10% 5%;
    }

    .about-us-text {
        width: 80%;
        padding: 20px 20px;
        font-size: 16px;
    }

    .first-message.text-message {
        text-align: center;
        font-size: 18px;
    }

    .benefits-card {
        width: 80%;
        font-weight: 300;
    }

    .benefits.title {
        font-size: 25px;
    }

    .benefits.list {
        font-size: 14px;
    }

    .benefits.list-elem {
        padding: 0px 0px 5px 0px;
        font-size: 16px;
    }

    .join-card {
        width: 80%;
        font-weight: 300;
    }

    .join.title {
        font-size: 25px;
    }

    .join.text {
        font-size: 16px;
    }
    .footer-container {
        padding: 20px 0px;
    }

    .footer-card {
        width: 100%;
        grid-template-columns: 1fr;
        text-align: center;      
    }

    .footer-title {
        grid-column: 1 / span 1;
        font-size: 25px;
    }

    .footer-logo {
        margin: 10px 0px;
        margin: 20px 0px 20px 0px;
    }

    .social-elem {
        font-size: 14px;
    }

    .footer-dev {
        grid-column: 1 / span 1;
        margin: 20px 0px 10px 0px;
    }


    .resources-card {
        width: var(--mobile-work-area);
        grid-template-columns: 100%;
    }

    .resources-title {
        grid-column: 1 / span 1;
        font-size: 20px;
    }




}
