﻿
@font-face {
    font-family: 'Krub-Regular';
    src: url('../plugins/font/Krub/Krub-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'CSPraJad';
    src: url('../plugins/font/CS_PraJadV.2/CSPraJad.ttf') format('truetype');
}

:root {
    --first-color: #E87722;
    --first-color-alt: #FAE4D3;
    --first-white: #FFF;
    --first-white-alt: #F1F2F7;
    --first-dark: #333;
}

body {
    font-family: 'CSPraJad';
    margin: 0;
    position: relative;
}

ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

#header {
    width: 100%;
    border-bottom: 1px solid #EDF2F9;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: 100;
}

.scroll-header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-tnw {
    height: 5rem;
    display: flex;
    padding-left: 1rem;
    justify-content: space-between;
    align-items: center;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: #000;
}

.text-tnw__first {
    color: var(--first-color);
}

.text-tnw__green {
    color: #40BF07;
}

.nav-tnw__menu a {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.nav-tnw__menu a:hover {
    color: var(--first-color);
}

.nav-tnw__menu__link {

}

.nav-item a:hover, .nav-tnw__link.active, .nav-item.active:focus, .nav-item li:hover > a, .nav-link:hover, .nav-link.active {
    color: var(--first-color);
}

.alert-tnw__message.active:hover {
    color: #FFF;
    background-color: #E86A00;
}

.alert-tnw__message.active {
    color: #FFF;
    background-color: var(--first-color);
}

.getstarted-user, .getstarted-user:hover {
    color: #333;
    transition: 0.3s;
    font-size: .955rem;
}

.nav-tnw__toggle {
    display: inline-flex;
    font-size: 1.25rem;
    cursor: pointer;
}

/*@media screen and (max-width: 996px) {
    .nav-tnw__menu {
        position: fixed;
        background-color: #FFF;
        width: 80%;
        height: 100%;
        top: 0;
        right: -100%;
        box-shadow: -2px 0 4px hsla(152, 24%, 15%, .1);
        padding: 4rem 0 0 3rem;
        border-radius: 1rem 0 0 1rem;
        transition: .3s;
        z-index: 100;
    }
}*/
/*
@media screen and (max-width: 400px) {
    .nav-tnw__menu {
        padding: 4rem 0 0 1rem;
    }
}*/

.nav-tnw__close {
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    cursor: pointer;
}

.nav-tnw__list {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.nav-tnw__link {
    color: #333;
    font-weight: 500;
    transition: .3s;
}

.nav-tnw__link:hover {
    color: var(--first-color);
}

.show-menu {
    right: 0;
}

@media screen and (min-width: 996px) {
    .nav-tnw {
        height: calc(3.5rem + 1.5rem);
    }

    .nav-tnw__toggle,
    .nav-tnw__close {
        display: none;
    }

    .nav-tnw__list {
        flex-direction: row;
        column-gap: .88rem;
    }

    .nav-tnw__menu {
        margin-left: auto;
    }
}

.content {
    padding: 80px 0 0 0;
}

/* --------------------------------------------------------------------------------
----- FOOTER
-------------------------------------------------------------------------------- */

.footer {
    padding: 40px 0;
    color: var(--first-white);
    background-color: var(--first-dark);
}

.footer hr {
    margin: 2rem 0;
}

.footer p {
    font-size: .875rem;
    color: var(--first-white);
    margin-bottom: 0;
}

.footer h6 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer a {
    font-size: .955rem;
    color: #6C86A3;
}

.footer a:hover {
   color: var(--first-color);
}

@media screen and (max-width: 575px) {
    .footer .footer-tnw__list {
        margin-bottom: 1.5rem;
    }
}

/* ================================================================================
 ======= dropdown menu
 =============================================================================== */


.dropdown {
    position: relative;
}

@media screen and (min-width: 996px) {
    .dropdown__content {
        box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
    }

    .dropdown__content-end {
        box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
    }
}

/* Hide the dropdown's content by default */
.dropdown__content {
    display: none;
    /* Position it right below the trigger element */
    left: 0;
    padding-top: 4px;
    position: absolute;
    top: 100%;
    /* It should be on the top of other elements */
    background-color: #fff;
    z-index: 1000;
    /* Size */
    width: 200px;
}

/* Hide the dropdown's content by default */
.dropdown__content-end {
    display: none;
    /* Position it right below the trigger element */
    right: 0;
    padding-top: 4px;
    position: absolute;
    top: 100%;
    /* It should be on the top of other elements */
    background-color: #fff;
    z-index: 1000;
    /* Size */
    width: 200px;
}

    .dropdown__content a, .dropdown__content-end a {
        font-size: .955rem;
        color: #333;
    }

.dropdown-tnw__menusub {
    padding: 30px 0 0 0;
}

@media screen and (max-width: 996px) {
    .dropdown.show-dropdown .dropdown__content {
        display: block;
    }
    /* Hide the dropdown's content by default */
    .dropdown__content {
        position: relative;
        width: 100%;
        border-left: 2px solid #F1F2F7;
    }

    .dropdown.show-dropdown .dropdown__content-end {
        display: block;
    }
    /* Hide the dropdown's content by default */
    .dropdown__content-end {
        position: relative;
        width: 100%;
        border-left: 2px solid #F1F2F7;
    }

    .dropdown-tnw__menusub {
        padding: 10px 0 0 0;
    }
}


@media screen and (min-width: 996px) {
    /* Show the content when hover on the container */
    .dropdown:hover .dropdown__content, .dropdown:hover .dropdown__content-end {
        display: block;
    }
}

.alert-tnw__message {
    padding: .3rem .6rem .3rem .6rem;
    border-radius: 7px;
    background-color: #E8E8E9;
    z-index: 2000;
}

@media screen and (max-width: 996px) {
    .alert-tnw__message {
        display: block;
        width: 90%;
    }
}

/* ================================================================================
   ======= content
   ================================================================================
*/
.section {
    padding: 60px 0;
}

.validat-tnw___text {
    font-size: .775rem;
    color: #FF0000;
}

.text-tnw__success {
    --bs-text-opacity: 1;
    color: #40BF07 !important;
}

.text-tnw__row {
    margin-top: auto;
    margin-bottom: auto;
}

.text-tnw__note {
    font-size: .775rem;
}

@media screen and (min-width: 400px) {
    .text-tnw__note {
        font-size: .875rem;
    }
}


/*.box-tnw__load {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: none;
}

.loading1 {
    width: 283px;
    height: 287px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}*/

/* ================================================================================
   ======= breadcrumb
   ================================================================================
*/
.breadcrumb-item {
    font-size: 1rem;
}

.breadcrumb-item a {
    color: var(--first-color);
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dim_button_line {
    display: inline-block;
    font-size: 12px;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    padding-top: 6px;
    background: #40BF07;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 20px;
}

.createSegment_line a {
    margin-bottom: 0;
    background: #40BF07;
    border: 1px solid #40BF07;
    color: #FFF;
    transition: all .4s ease;
}


.login {
    margin-top: 100px;
}
.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
    padding: .8rem 1rem;
    font-size: 0.875rem;
}




