/* Master3 custom CSS */

.uk-section-default,
.uk-card-default {
    /*background: #cfdac8;*/
	background: #fff;
}

.uk-section-muted,
.uk-card-muted {
    /*background: #e8eae6;*/
	background: rgba(200,215,190,0.99);
}
.uk-card-muted.uk-card-hover.uk-card-body:hover {
    /*background: #e8eae6;*/
	background-color: rgba(200,215,190,0.69) !important;
}

.uk-section-primary,
.uk-card-primary {
    /*background: #cdd0cb;*/
	background: #9FB8AD;
    /*color: #fff;
    box-shadow: 0 5px 15px rgb(0 0 0 / 8%);*/
}
.uk-section-primary > * > * > * > * > .uk-h1 {
    color: #383E56 !important;
}

.uk-navbar-container:not(.uk-navbar-transparent),
.uk-section-secondary,
.uk-card-secondary {
    /*background: #7c9473;*/
	background: #383E56;
    /*color: #fff;
    box-shadow: 0 5px 15px rgb(0 0 0 / 8%);*/
}


/* uk-switcher */

.uk-tab-left::before {
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    border-left: 3px solid #e5e5e5 !important;
    border-bottom: none;
}
.uk-tab>.uk-active>a {
    color: #333;
    border-color: #FB743E !important;
	font-size: 1.7rem !important;
}
.uk-tab-left>*>a {
    text-align: left;
    border-right: 3px solid transparent;
    border-bottom: none;
	font-size: 1.7rem !important;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6, .uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6 {
    color: #383E56;
}

/* --- --- --- */
.my-header-1 {
    /*font-size: 32px;
    color: #111;
    text-transform: uppercase;*/
    text-align: center;
    /*font-weight: 700;*/
    position: relative;
	margin: 20px 0;
    padding-bottom: 7px;
}
.my-header-1::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 3px;
    background: #FB743E;
    bottom: 1px;
    left: calc(50% - 60px);
}

.my-header-2 {
    /*font-family: 'Raleway', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    color: #95c11f !important;*/
    position: relative;
}
.my-header-2::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    border-bottom: 3px solid #FB743E;
    width: 70px;
}

/* Ссылки */
.uk-link, a {
    color: #FB743E;
    text-decoration: none;
    cursor: pointer;
}
.uk-link:hover, a:hover,
.uk-link:focus, a:focus {
    color: #FB743E;
}

/* Выделение */
::selection {
    background: #FB743E;
    color: #fff;
    text-shadow: none;
}

/* Основное меню - изменение цвета */
#navbar {
  transition: background-color ease 250ms;
}
#navbar .uk-navbar-item,
#navbar .uk-navbar-nav > li > a,
#navbar .uk-navbar-toggle {
  transition: height ease 200ms;
}
#navbar.uk-active {
  background-color: #2980B9;
  backdrop-filter: blur(10px);
  background-color: rgba(56, 62, 86, 0.75);
}
#navbar.uk-active .uk-navbar-item,
#navbar.uk-active .uk-navbar-nav > li > a,
#navbar.uk-active .uk-navbar-toggle {
  color: #FFF;
  height: 40px;
}

/*
 * Items
 * 1. Center content vertically and horizontally
 * 2. Dimensions
 * 3. Style
 * 4. Required for `a`
 */
.uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
    /* 1 */
	color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 2 */
    box-sizing: border-box;
	min-height: 60px !important;
    height: 80px;
    padding: 0 15px;
    /* 3 */
    /*font-size: 1rem;*/
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    /* 4 */
    text-decoration: none;
}
/*
 * Nav items
 */
.uk-navbar-nav > li > a {
    color: rgba(255,255,255,0.8) !important;
	font-size: 1.1rem;
    /*font-weight: bold;*/
    text-transform: uppercase;
    transition: 0.1s ease-in-out;
    transition-property: color, background-color;

    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
}
/*
 * Hover
 * Apply hover style also to focus state and if dropdown is opened
 */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li > a.uk-open {
    color: #FB743E !important;
    outline: none;
    background-size: 100% 3px;
}
/* OnClick */
.uk-navbar-nav > li > a:active {
    color: #FB743E !important;
}
/* Active */
.uk-navbar-nav > li.uk-active > a {
    color: #FB743E !important;
}


/* Карточка галлереи */
.uk-card > .uk-card-header > h2 > a {
    font-size: 1.4rem;
    /*font-weight: bold;*/
    color: #fff;
    text-transform: uppercase;
    position: relative;
    /*padding-bottom: 12px;*/
    transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
}
.uk-card:hover > .uk-card-header > h2 > a {
    color: #FB743E !important;
}
.uk-card > .uk-card-header > h2 {
	line-height: 1.4rem;
}
.uk-card > .uk-card-header > h2 > a:hover {
	text-decoration: none;
}

.uk-button-text {
	color: #FB743E !important;
}

