@font-face {
    font-family: Mulish;
    src: url(/fonts/Mulish.ttf);
}

/* ---------------------------------------------------------------------------------------------------------------------
            MAIN
--------------------------------------------------------------------------------------------------------------------- */
html,
body {
    background-image: linear-gradient(174.2deg,  rgba(255,244,228,1) 7.1%, rgba(240,246,238,1) 67.4% );
    background-attachment: fixed;
    font-family: 'Mulish', sans-serif;
    overflow-x: hidden;
}

a,
a:link,
a:visited,
a:active,
a:hover {
    cursor: pointer;
    text-decoration: none;
}

button {
    padding: 0;
    border: none;
    background: none;
}

/* ---------------------------------------------------------------------------------------------------------------------
            TEXT COLORS
--------------------------------------------------------------------------------------------------------------------- */
.color_white {
    color: white;
}

.color_black {
    color: black;
}

.color_gray {
    color: #757575;
}

.color_green {
    color: green;
}

.color_darkred {
    color: darkred;
}

.text_shadow {
    text-shadow: 0 0 3px black;
}

/* ---------------------------------------------------------------------------------------------------------------------
            BACKGROUND COLORS
--------------------------------------------------------------------------------------------------------------------- */
.bg_white {
    background: white;
}

.badge-brown {
    background-color:#1E0500
}

.badge-brown[href]:focus, .badge-brown[href]:hover {
    background-color: #130600
}

/* ---------------------------------------------------------------------------------------------------------------------
            HEADER
--------------------------------------------------------------------------------------------------------------------- */
.header {
    width: 100%;
    position: absolute;
    z-index: 99999;
}

.header_wrapper {
    width: 100%;
    margin: 0 auto;
    /*background-color: #070707;*/
}

.header_nav_block {
    width: 100%;
    height: 100px;
    padding: 5px 0;
    background: rgba(0, 0, 0, 0.25);
}

.header_in_wrapper {
    width: 60%;
    margin: 0 auto;
}

.header_logo {
    height: 90px;
    max-width: 440px;
    line-height: 90px;
    vertical-align: middle;
}

.header_search {
    height: 90px;
    line-height: 90px;
    vertical-align: middle;
}

.header_menu {
    height: 90px;
    line-height: 90px;
    vertical-align: middle;
}

.header_menu_item {
    font-family: 'Mulish', sans-serif;
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.header_menu_item a {
    color: inherit;
}

.dropdown-menu .dropdown-menu {
    top: auto;
    left: 100%;
    transform: translateY(-2rem);
}

.dropdown-item + .dropdown-menu {
    display: none;
}

.dropdown-item {
    height: 60px;
    line-height: 60px;
    vertical-align: middle;
}

.dropdown-item-sub {
    height: 45px;
    line-height: 45px;
    vertical-align: middle;
    font-size: 14px;
}

.dropdown-item.submenu::after {
    content: '▸';
    margin-left: 0.5rem;
}

.dropdown-item:hover + .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}


/* ---------------------------------------------------------------------------------------------------------------------
            CONTENT
--------------------------------------------------------------------------------------------------------------------- */
.content {
    min-height: 100vh;
}

.content_wrapper {
    margin: 0 auto;
    padding: 30px 0 0 0;
    max-width: 720px;
    min-width: 480px;
}

/* ---------------------------------------------------------------------------------------------------------------------
            IMAGE FIT
--------------------------------------------------------------------------------------------------------------------- */
.image-fit img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ---------------------------------------------------------------------------------------------------------------------
            MAIN CAROUSEL
--------------------------------------------------------------------------------------------------------------------- */
.index-carousel {
    width: 100%;
    margin: 120px auto 0 auto;
    padding: 0 50px;
    position: relative;
}

.index-carousel_item {
    margin: 50px 5px 5px 5px;
    padding: 10px;
}

.index-carousel img {
    width: 100%;
    -webkit-box-shadow: 0 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
    box-shadow: 0 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
}

.index-carousel_control-prev,
.index-carousel_control-next {
    top: 380px;
    text-align: center;
    cursor: pointer;
    color: #e57277;
    font-size: 22px;
    background: white;
    border: solid 4px #e57277;
    box-shadow: 0 0 0 5px rgba(255,255,255,1);
    border-radius: 50px;
    position: absolute;
    z-index: 999;
    transition: all .3s;
}

.index-carousel_control-prev {
    left: 90px;
    padding: 3px 13px 3px 10px;
}

.index-carousel_control-next {
    right: 90px;
    padding: 3px 10px 3px 13px;
}

.index-carousel_control-prev:hover {
    color: #ffffff;
    border: 4px solid #ffffff;
    background: #e57277;
    box-shadow: 0 0 0 5px #e57277;
}

.index-carousel_control-next:hover {
    color: #ffffff;
    border: 4px solid #ffffff;
    background: #e57277;
    box-shadow: 0 0 0 5px #e57277;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
    left: 10px;
}
.owl-nav button.owl-next {
    right: 10px;
}

.owl-nav button:hover {
    color: #363636;
    transition: all 0.3s ease-in-out;
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}
.owl-dots button.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}
.owl-dots button.owl-dot.active {
    background-color: #000;
}
.owl-dots button.owl-dot:focus {
    outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
}

.owl-nav button span {
    font-size: 70px;
    position: relative;
    top: -5px;
}
.owl-nav button:focus {
    outline: none;
}

/* ---------------------------------------------------------------------------------------------------------------------
            ARTICLES
--------------------------------------------------------------------------------------------------------------------- */
.article_card {
    width: 100%;
    position: relative;
    margin: 0 auto 30px auto;
    background-color: #fefefe;
    box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
    border-radius: 7px;
    z-index: 1;
}

.article_card_images .item img {
    width: 100%;
    border-radius: 7px 7px 0 0;
}

.article_card_title {
    width: 100%;
    font-size: 18px;
    color: #3e3e3e;
    padding: 25px 15px 10px 15px;
}

.article_card_text {
    width: 100%;
    font-size: 14px;
    color: #1d1d1d;
    padding: 15px;
}

.article_card_footer {
    width: 100%;
    font-size: 16px;
    color: #1d1d1d;
    padding: 20px 15px;
    text-align: right;
}

.article_card_mini {
    width: 100%;
    height: calc(100% - 25px);
    position: relative;
    margin: 0 auto 25px auto;
    background-color: #fefefe;
    box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
    border-radius: 7px;
    z-index: 1;
}

.article_card_mini_images .item img {
    width: 100%;
    height: 330px;
    border-radius: 7px 7px 0 0;
}

.article_card_mini_title {
    width: 100%;
    font-size: 14px;
    color: #3e3e3e;
    padding: 15px 10px 5px 10px;
    white-space: normal;
}

.article_card_mini_text {
    width: 100%;
    font-size: 12px;
    color: #1d1d1d;
    padding: 5px 10px 80px 10px;
}

.article_card_mini_footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    font-size: 13px;
    color: #1d1d1d;
    padding: 20px 15px;
    text-align: right;
}

.button_order_whatsapp {
    padding: 10px 15px;
    background: #25D366;
    border-radius: 25px;
    color: white !important;
}

.button_order_whatsapp:hover {
    background: #075E54;
    transition: all 0.3s ease-in-out;
}

.button_order_telegram {
    padding: 10px 15px;
    background: #0088cc;
    border-radius: 25px;
    color: white !important;
}

.button_order_telegram:hover {
    background: #005c87;
    transition: all 0.3s ease-in-out;
}

.section_card {
    width: 100%;
    height: 200px;
    position: relative;
    border-radius: 10px;
    margin-bottom: 25px;
}

.section_card img {
    border-radius: 10px;
}

.section_card_title {
    width: 100%;
    height: 140px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #2d2d2d;
    background: -webkit-gradient(linear, left top, left bottom, from(#1e0500), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, #1e0500, rgba(0, 0, 0, 0));
    background: linear-gradient(to top, #1e0500, rgba(0, 0, 0, 0));
}

.section_card_title--text {
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    color: white;
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    padding: 0 25px;
    text-shadow: 0 0 3px black;
}

/* ---------------------------------------------------------------------------------------------------------------------
            ARTICLE SEARCH
--------------------------------------------------------------------------------------------------------------------- */
#search, #search_btn {
    height: 46px;
    border: 0;
    position: relative;
}

#search {
    outline: 0;
    width: 100%;
    background: #fff;
    color: #111111;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all .3s cubic-bezier(0, 0, 0.43, 1.49);
    transition-property: width, border-radius;
    z-index: 1;
    position: relative;
}

#search_btn {
    display: none;
    position: absolute;
    top: 24px;
    right: 14px;
    width: 60px;
    color: #f6f6f6;
    font-size: 24px;
    font-weight: bold;
    background: #1E0500;
    border-radius: 0 5px 5px 0;
}

#search_btn i {
    display: none;
    position: absolute;
    top: 10px;
    left: 20px;
}

#search:not(:placeholder-shown) {
    border-radius: 5px 0 0 5px;
    width: calc(100% - 60px);
}

#search:not(:placeholder-shown) + #search_btn {
    display: block;
}

#search:not(:placeholder-shown) + #search_btn i {
    display: block;
}

/* ---------------------------------------------------------------------------------------------------------------------
            MEDIA & ANIMATIONS
--------------------------------------------------------------------------------------------------------------------- */
@media (max-width: 1460px) {
    .header_logo {
        text-align: center !important;
    }

    .header_menu {
        justify-content: center !important;
        flex-wrap: nowrap !important;
    }
}

@media (max-width: 1200px) {
    .header_nav_block {
        height: 200px;
    }
}

@media (max-width: 1020px) {
    .article_card {
        width: 95% !important;
    }
}

@media (max-width: 720px) {
    .header_logo {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .header_logo img {
        width: 100% !important;
    }

    .header_menu_item {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .header_logo {
        height: 90px !important;
        line-height: 90px !important;
    }

    .header_menu {
        height: 60px !important;
        line-height: 60px !important;
    }

    .header_menu_item {
        padding: 0 10px !important;
        font-size: 11px !important;
    }
}