/*!
 * Main.css
 * Version - 2.0.1
 *
 * Copyright (c) 2023
 */

/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* @import url('../vendor/mdb/css/mdb.min.css'); */
@import url('../vendor/bootstrap/css/bootstrap.min.css');

* {
    font-family: 'Poppins', sans-serif;
}

/*
 * ======================================
 * ============= * HEADER * =============
 */
.header-transparent {
    background-color: transparent !important;
    transition-duration: 0.50s;
}

.header-transparent img {
    height: 90px !important;
    transition-duration: 0.50s;
}

.header-transparent #navmenu .nav-link {
    color: #fff !important;
    font-weight: 500 !important;
}

.header {
    /* background-color: #fff !important; */
    background-color: transparent !important;
    /* box-shadow: 0 0.015rem 0.05rem rgba(33, 37, 41, .15) !important; */
    transition-duration: 0.50s;
}

.header img {
    height: 60px !important;
    transition-duration: 0.50s;
}

.header #navmenu .nav-link {
    color: var(--primary-color) !important;
    font-weight: 500 !important;
}

.header #navmenu .nav-link:hover {
    border: none !important;
    border-bottom: 2px solid orange !important;
    color: orange !important;
    transition-duration: 0.20s;
}

/*
 * ======================================
 * ============= * --END HEADER-- * =============
 */

/*
 * ======================================
 * ============= * --STYLE-- * =============
 */
.text-justify {
    text-align: justify !important;
}

.text-blue {
    color: #000 !important;
}

.text-red {
    color: #d90909 !important;
}

.text-yellow {
    color: #dba51d !important;
}

/*
 * ======================================
 * ============= * --END STYLE-- * =============
 */

/*
 * ======================================
 * ============= * FOOTER * =============
 */
.footer {
    background-color: #000 !important;
}

.footer-social-networks {
    background-color: #EAEAEA !important;
}

.footer-copyright {
    background-color: #f5bf4d !important;
    color: #000 !important;
}

.footer-copyright a {
    text-decoration: none;
}

.footer-title {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 18px;
}

.footer-list-menu a {
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.footer-list-menu li {
    margin-top: 5px !important;
}

/* Social networks */
.button-facebook {
    background-color: #3b5998;
    border-color: #3b5998;
    color: #fff;
}

.button-twitter {
    background-color: #55acee;
    border-color: #55acee;
    color: #fff;
}

.button-linkedin {
    background-color: #0082ca;
    border-color: #0082ca;
}

.button-google {
    background-color: #dd4b39;
    border-color: #dd4b39;
}

/*
 * ======================================
 * ============= * --END FOOTER-- * =============
 */

/*
 * ======================================
 * ============= * --NAV MENU-- * =============
 */

.nav-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .9) !important;
    z-index: 99;
    cursor: pointer;
    animation: fade 1s linear;
}

#nav-list {
    height: 90vh;
    overflow: auto !important;
}


.nav-menu #nav-list li a.active {
    color: #dba51d !important;
    background-color: transparent;
}

.nav-menu #nav-list li a:hover {
    color: rgb(219, 165, 29) !important;
    transition: .4s;
}


@keyframes fade {

    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

/* Menu nav button */

#menu-btn {
    padding: 20px;
    position: relative;
    width: 64px;
    height: 64px;
    line-height: 62px;
    border-radius: 64px;
    -moz-border-radius: 64px;
    -webkit-border-radius: 64px;
    -khtml-border-radius: 64px
}

#menu-btn:before,
#menu-btn:after {
    content: '';
    position: absolute;
    top: 22px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #1f1f1f;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

#menu-btn:after {
    top: auto;
    bottom: 22px;
}

#menu-btn span {
    position: absolute;
    top: 50%;
    left: 25px;
    right: 25px;
    height: 2px;
    background: #1f1f1f;
    margin-top: -1px;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

/*
 * ======================================
 * ============= * --END NAV MENU-- * =============
 */

/*
 * ======================================
 * ============= * GENERAL * =============
 */

@media only screen and (min-width: 1200px) {
    .mje-h2 {
        color: #291c0c;
        font-size: 45px !important;
        font-weight: 900 !important;
        text-transform: uppercase;
        letter-spacing: .3px;
    }

    .mje-h2::before {
        position: absolute;
        content: '';
        margin-top: 50px;
        width: 100px;
        height: 5px;
        background: #F4B103;
    }

    .mje-h2.blue::before {
        background: #393737 !important;
    }

	.nav-menu #nav-list li {
      font-size: 50px;
      font-weight: bolder;
      color: rgba(0, 0, 0, 0.2);
      margin: 1px;
  	}

}

@media only screen and (max-width: 600px) {
    .mje-h2 {
        color: var(--primary-color) !important;
        font-size: 25px !important
    }
	
	.nav-menu #nav-list li {
      font-size: 25px;
      font-weight: bolder;
      color: rgba(0, 0, 0, 0.2);
	  padding: 10px 0px;
      margin: 1px;
  	}

}



/*
 * ======================================
 * ============= * --GENERAL-- * =============
 */

/** ================== Scrollbar ================== **/

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #f0f0f0;
    /* border-radius: 10px; */
    background-color: #F5F5F5;
}

*::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px #c7c6c2;
    background-color: #cfcfcf;
}

/* Medias queries */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    /* navmenu */
}

/* Medium devices (landscape tablets, 768px and up) */
/* @media only screen and (min-width: 768px) {} */

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
/* @media only screen and (min-width: 1200px) {} */


:root {
    --primary-color: #f29d41;
	--blue: #113d8f;
}