/*------------------------------------------------------------------
[TABLE OF CONTENTS]
- GLOBAL
- GUI
  -- Fonts
  -- Titles
  -- Images
  -- Button
  -- List
  -- Forms
  -- Blockquote
  -- Pagination
  -- Alert
  -- Tooltip
  -- Sections
  -- Accordion
  -- Other
- COMPONENTS
- FOOTER
-------------------------------------------------------------------*/
:root
{
    --test-font: 'Poppins', sans-serif;
    --test-gray: #454644;
    /*--test-gray-rgb: 117, 120, 115;*/
    --test-white: #ffffff;
    --test-white-rgb: 255, 255, 255;
    --test-base: #2365a9;
    --test-blue: #2b4aa1;
    --test-base-rgb: 146, 187, 83;
    --test-black: #0A1108;
    --test-black-rgb: 14, 34, 7;
    --test-primary: #e39a0e;
    --test-green:#66b000;
    --test-orange:#ff6344;
    --test-cream:#edddcd;
    /* --test-pista:#e9e9cd; */
    --test-primary-rgb: 255, 205, 30;
    --test-extra: #f8f6f1;
    --test-extra-rgb: 248, 246, 241;
    --test-bdr-radius: 10px;
    --font-heading:35px;
    --font-para:16px;
}
html,
body {
    color: #040404;
    font-family:var(--test-font);
    font-size: var(--font-para);
    font-weight: 400;
    line-height: 1.67;
}
body {
    min-width: 320px;
}
a,
a:hover
{
    text-decoration: none;
}
section
{
    padding: 60px 0;
}
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
.uk-heading-2xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small,
.uk-heading-xlarge,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family:var(--test-font);
    font-weight: 700;
}
address,
dl,
fieldset,
figure,
ol,
p,
pre,
ul {
    margin: 0 0 25px;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin-top: 25px;
}
.section-title 
{
    margin-bottom: 60px;
}
.section-title .uk-text-meta 
{
    color: #2365a9;
    font-size:var(--font-para);
    font-weight: 500;
}
.section-title .uk-h2 
{
    display: block;
    position: relative;
    margin-top: 10px;
    margin-bottom: 0px;
    color: #222222;
    font-size: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
}
.section-title::after 
{
    display: inline-block;
    width: 64px;
    height: 8px;
    background-image: url(../img/decor/decor-title-2.svg);
    content: '';
}
.page-wrapper 
{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}
.page-wrapper .page-main 
{
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.social {
    display: block;
    position: relative;
}
.social-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}
.social-list__item {
    display: block;
    position: relative;
}
.social-list__item + .social-list__item {
    margin-left: 20px;
}
.social-list__link {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    display: block;
    position: relative;
    color: var(--test-white);
    /*font-size: 16px;*/
    transition: 0.5s;
}
.social-list__link:hover,
.social-list__link:focus,
.social-list__link:active {
    color: #ffffff;
}
.uk-container {
    max-width: 1140px;
}
.uk-container-large {
    max-width: 1270px;
}
.uk-container-xlarge {
    max-width: 1500px;
}
.uk-overlay-primary {
    background-color: rgba(0, 0, 0, 0.8);
}
.uk-nav-parent-icon > .uk-parent > a:after {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' data-svg='chevron-down'%3E%3Cpolyline fill='none' stroke='%23fff' stroke-width='1.03' points='16 7 10 13 4 7'%3E%3C/polyline%3E%3C/svg%3E");
}
.uk-nav-parent-icon > .uk-parent.uk-open > a:after {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' data-svg='chevron-up'%3E%3Cpolyline fill='none' stroke='%23fff' stroke-width='1.03' points='4 13 10 7 16 13'%3E%3C/polyline%3E%3C/svg%3E");
}
.uk-button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 155px;
    background: -webkit-linear-gradient(left,#63a706,#ffb412);
    color: #ffffff;
    font-size: 18px;
    /* font-weight: 700; */
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.5s;
    line-height: normal;
    padding: 0px 26px;
}
.uk-button span
 {
    padding:10px 10px 10px 0;
    border-right: 1px solid #ffffff2e;
 }
 .uk-button i
 {
    display: inline-block;
    padding: 3px 0 0 10px;
 }
.uk-button img,
.uk-button svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    display: block;
    flex: 0 0 24px;
    width: 24px;
    height: 15px;
    margin-left: 14px;
}
.uk-button:hover,
.uk-button:focus,
.uk-button:active {
    background-color: #f6c019;
    color: #ffffff;
}
.uk-button-default {
    border: 1px solid #dddddd;
    background-color: transparent;
    color: #222222;
}
.uk-button-default svg {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    color: var(--test-primary);
    transition: 0.5s;
}
.uk-button-default:hover,
.uk-button-default:focus,
.uk-button-default:active {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    border-color: #222222;
    background-color: #222222;
    color: #ffffff;
    transition: 0.5s;
}
.uk-button-default:hover svg,
.uk-button-default:focus svg,
.uk-button-default:active svg {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    color: #ffffff;
    transition: 0.5s;
}
.uk-button-secondary {
    background-color: #222222;
}
.uk-button-danger {
    border-radius: 2px;
    background-color: #fff;
    color: #000;
}
.uk-button-large {
    line-height: 62px;
}
.uk-input,
.uk-select,
.uk-textarea {
    color: #222222;
    font-size:var(--font-para);
    font-weight: 600;
}
.uk-input::-webkit-input-placeholder,
.uk-select::-webkit-input-placeholder,
.uk-textarea::-webkit-input-placeholder {
    color: #222222;
    font-size: var(--font-para);
    font-weight: 600;
}
.uk-input::-moz-placeholder,
.uk-select::-moz-placeholder,
.uk-textarea::-moz-placeholder {
    color: #222222;
    font-size: var(--font-para);
    font-weight: 600;
}
.uk-input:-ms-input-placeholder,
.uk-select:-ms-input-placeholder,
.uk-textarea:-ms-input-placeholder {
    color: #222222;
    font-size: var(--font-para);
    font-weight: 600;
}
.uk-input::-ms-input-placeholder,
.uk-select::-ms-input-placeholder,
.uk-textarea::-ms-input-placeholder {
    color: #222222;
    font-size: var(--font-para);
    font-weight: 600;
}
.uk-input::placeholder,
.uk-select::placeholder,
.uk-textarea::placeholder {
    color: #222222;
    font-size: var(--font-para);
    font-weight: 600;
}
.uk-textarea {
    height: 130px;
}
.uk-form-large:not(textarea):not([multiple]):not([size]) {
    height: 62px;
}
.uk-select:not([multiple]):not([size]) {
    background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A);
    background-position: 98% 50%;
    background-repeat: no-repeat;
}
.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
    border-color: #cccccc;
    outline: none;
    background-color: #fff;
    color: #222222;
}
.title:after {
    display: block;
    position: relative;
    width: 30px;
    height: 8px;
    margin-top: 11px;
    background-image: url(../img/decor/decor-title.svg);
    content: '';
}
.uk-lightbox {
    background-color: rgba(0, 0, 0, 0.8);
}
.page-head {
    display: block;
    position: relative;
}
.page-head:after {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: block;
    z-index: 2;
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 100%;
    max-width: 500px;
    height: 25px;
    transform: translateX(-50%);
    background-image: url(../img/decor/decor-lines.svg);
    content: '';
}
.page-head__bg {
    display: block;
    position: relative;
    padding: 20px 0 20px;
    background-position: center;
    background-size: cover;
}
.page-head__bg::before {
    display: block;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    content: '';
}
.page-head__content {
    display: block;
    z-index: 2;
    position: relative;
}
.page-head__title {
    margin: 40px 0 15px;
    color: #ffffff;
    font-size: var(--font-heading);
    font-weight: 500;
    line-height: 1.09;
    text-align: center;
    text-align: center;
}
.page-head__breadcrumb {
    text-align: center;
}
.page-head__breadcrumb .uk-breadcrumb > * > * {
    display: inline-block;
    position: relative;
    padding: 0 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}
.page-head__breadcrumb .uk-breadcrumb > * > *::before {
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--test-primary);
    content: '';
}
.page-head__breadcrumb .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column):before {
    display: none;
}
.page-head__breadcrumb .uk-breadcrumb > :last-child > a:not([href]),
.page-head__breadcrumb .uk-breadcrumb > :last-child > span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
.page-head__breadcrumb .uk-breadcrumb > :last-child > a:not([href])::before,
.page-head__breadcrumb .uk-breadcrumb > :last-child > span::before {
    display: none;
}
.page-head__form {
    display: block;
    position: relative;
    margin-top: 80px;
    padding-top: 80px;
}
.page-head__form:before {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 13px;
    transform: translateX(-50%);
    background-image: url(../img/decor/decor-lines-grey.png);
    content: '';
}
.list-checked {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.list-checked li {
  /* -webkit-box-pack: start; */
  -ms-flex-pack: start;
  /* -webkit-box-align: center; */
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  padding-left: 30px;
  /* display: flex; */
  position: relative;
  /* align-items: center; */
  /* justify-content: flex-start; */
}
.list-checked li + li {
    margin-top: 5px;
}
.list-checked li::before {
    display: block;
    width: 17px;
    height: 17px;
    /* margin-right: 14px; */
    background-image: url(../img/icons/ico-check.png);
    content: '';
    position: absolute;
    left: 0px;
    top: 5px;
}
.tags-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.tags-list li {
    margin-right: 5px;
    margin-bottom: 5px;
}
.tags-list li a {
    -webkit-box-sizing: border-box;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    box-sizing: border-box;
    display: inline-block;
    height: 40px;
    padding: 0 20px;
    border: 2px solid #dddddd;
    background-color: #ffffff;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    line-height: 2.86;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
}
.tags-list li a:hover,
.tags-list li a:focus,
.tags-list li a:active {
    background-color: var(--test-green);
    color: #ffffff;
    text-decoration: none;
}
.share-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}
.share-list li {
    display: block;
    position: relative;
}
.share-list li + li {
    margin-left: 8px;
}
.share-list li a {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    color: #666;
    font-size: var(--font-para);
    transition: 0.5s;
}
.share-list li a:hover,
.share-list li a:focus,
.share-list li a:active {
    color: #ffffff;
}
.block-form {
    -webkit-box-shadow: 0 5px 24px 6px rgba(0, 0, 0, 0.06);
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 5px 24px 6px rgba(0, 0, 0, 0.06);
}
.block-form .section-content p {
    margin-bottom: 40px;
    color: #555555;
    font-size: var(--font-para);
    font-style: italic;
    letter-spacing: normal;
    line-height: 1.63;
}
.block-form .section-title {
    margin-top: 0;
    margin-bottom: 15px;
}
.block-form .section-title .uk-h2 {
    margin: 0;
    color: #222222;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}
.page-header {
    display: block;
    position: relative;
    border-bottom: 4px solid var(--test-primary);
}
.page-header::before,
.page-header-bottom.uk-active:before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/bg/header-bg.jpg);
    opacity: 0.2;
}



.page-header-top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 18px 80px;
    padding: 18px 4.17vw;*/
    padding: 0px 15px;
    /* background-color:var(--test-green); */
    color: #ffffff;
    /*font-size: 16px;*/
    font-weight: 400;
    border-bottom: 1px solid #ddd;
}
.page-header-top__left {
    display: block;
    position: relative;
}
.page-header-top__right {
   -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: var(--test-green);
    padding: 5px 15px;
    position: relative;
    top: 0px;
}
.page-header-top__right:before
{
    content: '';
    position: absolute;
    top: 0;
    left: -17px;
    width: 5px;
    height: 100%;
    border-left: 12px double #ff9127;
    /* background: #ff9127;
    /* border: 18px solid transparent;
    border-top-color: var(--test-green);
    border-right-color: var(--test-green); */
}
.page-header-top__right:after
{
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    background: var(--test-green);
    width: 50%;
    height: 100%;
}
.page-header-top__right > * + * {
    margin-left: 2.08vw;
    padding-left: 2.08vw;
    border-left: 1px solid rgba(var(--test-white-rgb) , 0.2);
    z-index: 100;
}
.page-header-bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dddddd;
    background-color: #ffffff;
    padding:8px 0;
}
.page-header-bottom.uk-active {
    -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
}
.page-header-bottom__left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page-header-bottom__left .logo {
    padding: 0 5.21vw 0 4.17vw;
}
.page-header-bottom__left .support {
    padding: 20.5px 2.08vw;
    border-right: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
}
.page-header-bottom__right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    justify-content: flex-end;
    max-width: 50%;
}
.page-header-bottom__right .uk-navbar {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    flex: 1;
    justify-content: flex-end;
}
.page-header-bottom__right .uk-navbar-nav {
    margin-right: 60px;
    margin-right: 3.13vw;
}
.page-header-bottom__right .uk-navbar-item,
.page-header-bottom__right .uk-navbar-nav > li > a,
.page-header-bottom__right .uk-navbar-toggle {
    min-height: 100px;
}
.page-header-bottom__right .uk-navbar-nav > li > a {
    /*padding: 0 15px;*/
    padding: 0 0.98vw;
    font-weight: 700;
    letter-spacing: 0em;
    line-height: 1.26;
    text-transform: uppercase;
    /*font-size: 13px;*/
    color: #222222;
    text-transform: uppercase;
    white-space: nowrap;
}

.page-header-bottom__right .uk-navbar-nav>li:hover>a, .page-header-bottom__right .uk-navbar-nav>li>a.uk-open, .page-header-bottom__right .uk-navbar-nav>li>a:focus
{
    color: #66b000;
}


.page-header-bottom__right .uk-navbar-nav > li > a svg,
.page-header-bottom__right .uk-navbar-nav > li > a i {
    margin-left: 11px;
    color: #666666;
}
.page-header-bottom__right .uk-navbar-nav > li.uk-active a {
    color: var(--test-primary);
}
.page-header-bottom__right [class*=uk-navbar-dropdown-bottom] {
    margin-top: 3px;
    border-top: 2px solid #66b000;
}
.page-header-bottom__right .uk-navbar-toggle {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    width: 100px;
    border-left: 1px solid #dddddd;
}
.page-header-bottom__right .uk-navbar-toggle svg {
    width: 24px;
    height: 24px;
    color: #222222;
}
.page-header-bottom__right .uk-search-navbar .uk-search-input {
    font-size: 24px;
}
.page-header-bottom__right .cart-btn {
    border: 0;
}
.page-header-bottom__right .cart-btn__icon img {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    /* border: 2px solid #66b000; */
}
.update svg,
.update .far {
    margin-right: 10px;
    /*color: var(--test-primary);*/
}
.update a {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    /* color: white; */
    color: #000;
    font-size: 12px;
    font-weight: 600;
    /* text-decoration: underline; */
    transition: 0.3s;
    padding: 0 8px;
    border-right: 1px solid rgba(0,0,0, 0.2);
    line-height: 16px;
    text-align: right;
}
.update a:last-child
{
    border-right: 0;
    text-align: left;
} 
.update a:hover,
.update a:focus,
.update a:active {
    color: var(--test-primary);
    text-decoration: none;
}
.time-work {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: center;
    color: white;
    font-size: var(--font-para);
    font-weight: 400;
}
.time-work svg,
.time-work .far {
    margin-right: 10px;
    /*color: var(--test-primary);*/
}
.login-link a {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    color: white;
    color: #ffffff;
    /*font-size: 16px;*/
    font-weight: 400;
    transition: 0.3s;
}
.login-link a:hover,
.login-link a:focus,
.login-link a:active {
    color: #fff;
    text-decoration: none;
}
.login-link svg,
.login-link .far {
    margin-right: 10px;
    /*color: var(--test-primary);*/
}
.logo {
    display: block;
    position: relative;
}
.logo__link {
    display: flex;
    position: relative;
    align-items: center;
    text-decoration: none;
}
.logo__link img
{
    width: 90px;
    height: 90px;
    max-height: 90px;
}
.stacker
{
    color: var(--test-green);
    font-size: 26px;
    font-weight: bold;
    margin-left: 14px;
}
.stacker span
{
    font-size: var(--font-para);
    display: block;
    color: var(--test-black);
}
.support__link {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    transition: 0.3s;
}
.support__link:hover,
.support__link:focus,
.support__link:active {
    text-decoration: none;
}
.support__link:hover .support__phone,
.support__link:focus .support__phone,
.support__link:active .support__phone {
    text-decoration: none;
}
.support__icon .svg-inline--fa,
.support__icon .fas {
    margin-right: 20px;
    color: var(--test-primary);
    font-size: 30px;
}
.support__icon
{
    margin-right: 10px;
}
.support__icon img
{
    width: 60px;
}
.support__label {
    color: #222;
    font-size: var(--font-para);
    font-weight: 500;
}
.support__phone {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
}
.page-footer {
    display: block;
    position: relative;
    background-color: #111111;
}
.page-footer::before {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 1450px;
    height: 20px;
    transform: translateX(-50%);
    /*background-image: url(../img/decor/decor-lines.svg);*/
    content: '';
}
.page-footer .page-footer-top {
    padding-top: 60px;
    /* padding-bottom: 60px; */
}

.page-footer .page-footer-middle {
    display: block;
    position: relative;
    padding-top: 80px;
    padding-bottom: 50px;
    /* border-top: 1px solid #303030; */
    border-bottom: 1px solid #303030;
    color: #888888;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
}
.page-footer .page-footer-middle .social-list {
    margin-top: 45px;
}
.page-footer .page-footer-middle .social-list .social-list__item + .social-list__item {
    margin-left: 9px;
}
.page-footer .page-footer-middle .social-list .social-list__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}
.page-footer .page-footer-middle .social-list .social-list__link:hover,
.page-footer .page-footer-middle .social-list .social-list__link:focus,
.page-footer .page-footer-middle .social-list .social-list__link:active {
    background-color: var(--test-primary);
    color: #111111;
}
.page-footer .page-footer-middle .title {
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
}
.page-footer .page-footer-middle .uk-nav li:before {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    margin-bottom: -1.9em;
    transition: 0.3s;
}
.page-footer .page-footer-middle .uk-nav li:hover:before,
.page-footer .page-footer-middle .uk-nav li:focus:before,
.page-footer .page-footer-middle .uk-nav li:active:before {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    color: var(--test-primary);
    transition: 0.3s;
}
.page-footer .page-footer-middle .uk-nav li:hover a,
.page-footer .page-footer-middle .uk-nav li:focus a,
.page-footer .page-footer-middle .uk-nav li:active a {
    color: #ffffff;
}
.page-footer .page-footer-middle .uk-nav li a {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    padding: 0;
    color: #888888;
    font-size: var(--font-para);
    font-style: normal;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 2.22;
    transition: 0.3s;
}
.page-footer .page-footer-bottom {
    padding: 40px 0;
    color: #ffffff;
    font-size: var(--font-para);
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}
.page-footer .page-footer-bottom a {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    display: inline-block;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: var(--font-para);
    font-weight: 400;
    line-height: 1.5;
    transition: 0.5s;
    text-decoration: none;
}
.page-footer .page-footer-bottom a:hover,
.page-footer .page-footer-bottom a:focus,
.page-footer .page-footer-bottom a:active {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    color: var(--test-primary);
    text-decoration: none;
    transition: 0.5s;
}
.page-footer .page-footer-bottom a + a {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.page-footer .page-footer-bottom a.logo-footer
{
    width: 130px;
}
.contacts-block 
{
    display: block;
    position: relative;
}
.contacts-block .sidebar 
{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    padding: 40px 20px;
}
.contacts-block .block-form 
{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
}
.contacts-block .contacts-list .contacts-list-item 
{
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.contacts-block .contacts-list .contacts-list-item + .contacts-list-item 
{
    margin-top: 20px;
    padding-top: 20px;
    border-color: #ffffff;
}
.contacts-block .contacts-list .contacts-list-item__icon 
{
    color: #e39a0e;
    font-size: 24px;
    line-height: 26px;
    position: relative;
}
.contacts-block .contacts-list .contacts-list-item__icon::before
{
    content: '';
    position: absolute;
    left: -20px;
    top: -10px;
    width: 55px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 1px 155px 155px 1px;
    box-shadow: 9px 1px 10px rgb(0 0 0 / 9%);
}
.contacts-block .contacts-list .contacts-list-item__icon i
{
    position: relative;
}
.contacts-block .contacts-list .contacts-list-item__icon .cls-1 
{
    stroke: #ffffff;
}
.contacts-block .contacts-list .contacts-list-item__desc 
{
    padding-left: 20px;
}
.contacts-block .contacts-list .contacts-list-item__label 
{
    color: #ffffff;
}
.contacts-block .contacts-list .contacts-list-item__content a:hover,
.contacts-block .contacts-list .contacts-list-item__content a:focus,
.contacts-block .contacts-list .contacts-list-item__content a:active 
{
    color: #222222;
}
.contacts-map 
{
    display: block;
    position: relative;
    margin-top: 30px;
}
.contacts-map iframe 
{
    width: 100%;
    height: 300px;
}

.contacts-list 
{
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
}
/* .contacts-list::before
{
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    border-radius: 1px 155px 155px 1px;
    background-color: #fff;
    left: 0;
    top: 0;
} */





.contacts-list-item 
{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.contacts-list-item + .contacts-list-item 
{
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #303030;
}
.contacts-list-item__icon 
{
    /* -webkit-box-flex: 0;
    -ms-flex: 0 0 var(--font-heading);
    flex: 0 0 var(--font-heading);
    width: var(--font-heading);
    height: var(--font-heading); */
    color: #ffffff;
    margin-right: 10px;
}
.contacts-list-item__desc 
{
    /*padding-left: 23px;*/
    color: #ffffff;
    font-size: 18px;
    line-height: 1.44;
}
.contacts-list-item__label 
{
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.contacts-list-item__content {
    font-weight: 500;
    line-height: 22px;
    color: #fff;
    font-size: var(--font-para);
}
.contacts-list-item__content a {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    color: #ffffff;
    transition: 0.3s;
}
.contacts-list-item__content a:hover,
.contacts-list-item__content a:focus,
.contacts-list-item__content a:active {
    color: var(--test-primary);
    text-decoration: none;
}

.totop-link {
    -webkit-transition: 0.3s;
-o-transition: 0.3s;
display: none;
z-index: 100;
position: fixed;
right: 40px;
bottom: 40px;
color: var(--test-primary);
font-size: 14px;
font-weight: 300;
line-height: 1.86;
text-transform: uppercase;
transition: 0.3s;
text-align:center;
width:40px;
height:40px;
line-height:40px;
border-radius:50%;
border:2px solid var(--test-primary);
}
.totop-link:hover,
.totop-link:focus,
.totop-link:active {
    color: var(--test-primary);
    text-decoration: none;
}
.totop-link img,
.totop-link svg {
    max-width: 75px;
    margin-bottom: 5px;
}
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a:after {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' data-svg='chevron-down'%3E%3Cpolyline fill='none' stroke='%23fff' stroke-width='1.03' points='16 7 10 13 4 7'%3E%3C/polyline%3E%3C/svg%3E");
}
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent.uk-open > a:after {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' data-svg='chevron-up'%3E%3Cpolyline fill='none' stroke='%23fff' stroke-width='1.03' points='4 13 10 7 16 13'%3E%3C/polyline%3E%3C/svg%3E");
}
.uk-offcanvas-bar .support__desc {
    display: block;
}
.uk-offcanvas-bar .support__label,
.uk-offcanvas-bar .support__phone {
    color: #ffffff;
}
.uk-offcanvas-bar .social-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.checkbox-custome {
    --background: #fff;
    --border: #000000;
    --border-hover: #bbc1e1;
    --border-active: #1e2235;
    --tick: #fff;
    position: relative;
    margin: 0;
}
.checkbox-custome label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}
.checkbox-custome input[type=checkbox]:focus,
.checkbox-custome input[type=file]:focus,
.checkbox-custome input[type=radio]:focus {
    outline: none;
}
.checkbox-custome input,
.checkbox-custome svg {
    display: block;
    width: 21px;
    height: 21px;
    outline: none;
}
.checkbox-custome input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-transition: box-shadow 0.3s;
    -webkit-transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    -webkit-box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
    position: relative;
    margin: 0 10px 0 0;
    padding: 0;
    border: none;
    border-radius: 4px;
    outline: none;
    background: var(--background);
    box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
    cursor: pointer;
    transition: -webkit-box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.checkbox-custome input:hover {
    --s: 1px;
    --b: var(--border-hover);
}
.checkbox-custome input:checked {
    --b: var(--border-active);
}
.checkbox-custome svg {
    fill: none;
    stroke-width: 1px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--test-primary);
    -webkit-transform: scale(var(--scale, 1)) translateZ(0);
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 21px;
    transform: scale(var(--scale, 1)) translateZ(0);
    pointer-events: none;
}
.checkbox-custome span {
    display: inline-block;
    color: black;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    vertical-align: middle;
}
.checkbox-custome.path input:checked {
    --s: 2px;
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.checkbox-custome.path input:checked + svg {
    --a: 16.1 86.12;
    --o: 102.22;
}
.checkbox-custome.path svg {
    stroke-dasharray: var(--a, 86.12);
    stroke-dashoffset: var(--o, 86.12);
    -webkit-transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
    -o-transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
    transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
}
/* Rating */
.rating {
    margin: 0 0 1em 0;
    padding: 0;
    border: none;
}
.rating__caption {
    margin-bottom: 0.5em;
    padding: 0;
}
.rating__group {
    position: relative;
    width: 10em;
    height: 2em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 19'%3E%3Cpath fill='%239b9b9b' d='M10 0l2.36 7.28L20 7.25l-6.19 4.47L16.19 19 10 14.48 3.83 19l2.36-7.28L0 7.25l7.66.03z'/%3E%3C/svg%3E%0A");
    background-repeat: repeat-x;
    background-size: 2em 1.9em;
}
.rating__input {
    clip: rect(0 0 0 0);
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.rating__input:focus ~ .rating__focus {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    outline: 0.2em solid #4a90e2;
    outline-offset: 0.2em;
}
.rating__star {
    position: absolute;
    top: 0;
    left: 0;
    height: 2em;
    margin: 0;
    background-repeat: repeat-x;
    background-size: 2em 1.9em;
}
.rating__star:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 19'%3E%3Cpath fill='%237ed321' d='M10 0l2.36 7.28L20 7.25l-6.19 4.47L16.19 19 10 14.48 3.83 19l2.36-7.28L0 7.25l7.66.03z'/%3E%3C/svg%3E%0A");
}
.rating__input:checked + .rating__star {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 19'%3E%3Cpath fill='%237ed321' d='M10 0l2.36 7.28L20 7.25l-6.19 4.47L16.19 19 10 14.48 3.83 19l2.36-7.28L0 7.25l7.66.03z'/%3E%3C/svg%3E%0A");
}
.rating__star:hover ~ .rating__star {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 19'%3E%3Cpath fill='%239b9b9b' d='M10 0l2.36 7.28L20 7.25l-6.19 4.47L16.19 19 10 14.48 3.83 19l2.36-7.28L0 7.25l7.66.03z'/%3E%3C/svg%3E%0A");
}
.rating__star:nth-of-type(1) {
    z-index: 5;
    width: 2em;
}
.rating__star:nth-of-type(2) {
    z-index: 4;
    width: 4em;
}
.rating__star:nth-of-type(3) {
    z-index: 3;
    width: 6em;
}
.rating__star:nth-of-type(4) {
    z-index: 2;
    width: 8em;
}
.rating__star:nth-of-type(5) {
    z-index: 1;
    width: 10em;
}
.category-item {
    display: block;
    position: relative;
    max-width: 360px;
    margin: 0 auto 20px;
}
.category-item__link {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    display: block;
    position: relative;
    text-decoration: none;
    transition: 0.5s;
}
.category-item__link:hover,
.category-item__link:focus,
.category-item__link:active {
    text-decoration: none;
}
.category-item__link:hover .category-item__title,
.category-item__link:focus .category-item__title,
.category-item__link:active .category-item__title {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    background-color: var(--test-primary);
    color: #ffffff;
    transition: 0.5s;
}
.category-item__link:hover .category-item__title::before,
.category-item__link:focus .category-item__title::before,
.category-item__link:active .category-item__title::before {
    opacity: 1;
}
.category-item__media {
    display: block;
    position: relative;
}
.category-item__media .uk-icon {
    color: #ffffff;
}
.category-item__title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background-color: #f6f6f6;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    transition: 0.5s;
}
.category-item__title::before {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: block;
    position: absolute;
    top: -25px;
    left: 50%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-right: 36px solid transparent;
    border-bottom: 25px solid var(--test-primary);
    border-left: 36px solid transparent;
    content: '';
    opacity: 0;
}
.find-box__title {
    margin-bottom: 45px;
    text-align: center;
}
.find-box__title span {
    display: inline-block;
    position: relative;
    color: #ffffff;
    font-size: var(--font-heading);
    font-weight: bold;
    line-height: 1;
}
.find-box__title span:before,
.find-box__title span:after {
    display: block;
    position: absolute;
    top: 50%;
    width: 30px;
    height: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
}
.find-box__title span::before {
    right: calc(100% + 10px);
    background-image: url(../img/decor/decor-title-left.svg);
}
.find-box__title span::after {
    left: calc(100% + 10px);
    background-image: url(../img/decor/decor-title-right.svg);
}

.section-category {
    display: block;
    position: relative;
    padding-bottom: 120px;
}
.category-card {
    display: block;
    position: relative;
    height: 100%;
    margin: 40px 0;
}
.category-card__round {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
    position: absolute;
    top: -32px;
    left: 50%;
    width: 187px;
    height: 187px;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: #efefef;
}
.category-card__box {
    -webkit-box-shadow: 0 0 56px 19px rgba(0, 0, 0, 0.06);
    -webkit-box-sizing: border-box;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    box-sizing: border-box;
    display: block;
    z-index: 2;
    position: relative;
    height: 100%;
    padding: 0 20px 30px;
    background-color: #ffffff;
    box-shadow: 0 0 56px 19px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: 0.5s;
}
.category-card__box:hover .category-card__title,
.category-card__box:hover .category-card__intro,
.category-card__box:focus .category-card__title,
.category-card__box:focus .category-card__intro,
.category-card__box:active .category-card__title,
.category-card__box:active .category-card__intro {
    color: #ffffff;
}
.category-card__box:hover .category-card__btn .uk-button-default,
.category-card__box:focus .category-card__btn .uk-button-default,
.category-card__box:active .category-card__btn .uk-button-default {
    border-color: #ffffff;
    color: #ffffff;
}
.category-card__icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: -22px;
    align-items: center;
    justify-content: center;
    width: 167px;
    height: 167px;
    margin: 0 auto 0px;
    border-radius: 50%;
    /* background-color: var(--test-primary); */
    background-color: #6b8563;
    color: #ffffff;
}
.category-card__icon img
{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid #72b200;
}
.category-card__title  {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.category-card__title h4
{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #222222;
}
.category-card__title h6
{
    font-size: 14px;
    background: -webkit-linear-gradient(left,var(--test-green),#ffd200);
    color: #000;
    border-radius: 155px;
    display: inline-block;
    padding: 5px 15px;
    margin: 0;
    text-align: center;
    margin-bottom: 18px;
}
.category-card__intro {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    margin-bottom: 42px;
    color: #222222;
    font-size: var(--font-para);
    font-weight: 400;
    line-height: 1.63;
    transition: 0.5s;
}
.category-card__btn .uk-button-default {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
body.page-categories-2 .page-footer:before 
{
    display: none;
}

.section-stats 
{
    display: block;
    position: relative;
    padding: 110px 0 100px;
    background-attachment: fixed;
    background-image: url(../img/bg/bg_stats.jpg);
    background-position: left center;
    background-size: cover;
}
.section-stats::before 
{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    content: '';
}
.section-stats > * 
{
    display: block;
    z-index: 2;
    position: relative;
}
.stats-item 
{
    display: block;
    position: relative;
    max-width: 270px;
    margin: 0 auto;
}
.stats-item__header 
{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 15px;
}
.stats-item__numb 
{
    margin-right: 25px;
    color: var(--test-primary);
    font-size: 74px;
    font-weight: 700;
    line-height: 1;
}
.stats-item__icon 
{
    width: 85px;
    height: 85px;
    color: #ffffff;
}
.stats-item__title 
{
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
}
.stats-item__desc 
{
    color: #888888;
    font-size: var(--font-para);
    font-weight: 400;
    line-height: 1.63;
}
.section-about 
{
    display: block;
    position: relative;
    padding-top: 125px;
    padding-bottom: 120px;
    background-color: #111111;
    background-image: url(../img/decor/decor-about-left.png), url(../img/decor/decor-about-right.png);
    background-position: top 70px left -38%, bottom right -3%;
    background-repeat: no-repeat, no-repeat;
    background-size: 59.3vw, 18.3vw;
    color: #888888;
    font-weight: 400;
    line-height: 26px;
}
.section-about .section-title 
{
    margin-bottom: var(--font-heading);
}
.section-about .section-title .uk-h2 
{
    color: #ffffff;
}
.about-list 
{
    margin: 20px 0 0 0;
    padding: 0;
    list-style-type: none;
}
.about-list li 
{
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    /*color: #888888;
    font-size: 18px;*/
    font-weight: 400;
    line-height: 1.44;
}
.about-list li + li 
{
    margin-top: 15px;
}
.about-list li strong 
{
    width: 30%;
    color: #2365a9;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.36;
}
.about-list li span 
{
    width: 70%;
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid #333333;
}
.section-steps 
{
    display: block;
    position: relative;
    padding-top: 110px;
    padding-bottom: 100px;
}
.section-steps .section-title 
{
    margin-bottom: 20px;
}
.section-steps .section-title .uk-h2 
{
    margin-bottom: 8px;
}
.steps-list {
    position: relative;
    outline: 0;
}
.steps-list .uk-slider-items li:first-child .steps-item::before 
{
    left: 105px;
    width: calc(100% - 105px);
}
.steps-list .uk-slider-items li:first-child .steps-item::after 
{
    display: block;
    position: absolute;
    top: 168px;
    left: 95px;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #222222;
    content: '';
}
.steps-list .uk-slider-items li:last-child .steps-item::before 
{
    right: 85px;
    width: calc(100% - 88px);
}
.steps-list .uk-slider-items li:last-child .steps-item::after 
{
    display: block;
    position: absolute;
    top: 168px;
    right: 78px;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #222222;
    content: '';
}
.steps-item 
{
    display: block;
    position: relative;
    padding-bottom: 10px;
    cursor: pointer;
}
.steps-item::before 
{
    display: block;
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: url(../img/bg/decor-steps-line.png);
    content: '';
}
.steps-item__box 
{
    position: relative;
    max-width: 195px;
    margin: 0 auto;
    text-align: center;
}
.steps-item__icon 
{
    display: inline-block;
    position: relative;
    margin-bottom: 55px;
}
.steps-item__icon img
{
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    border: 3px solid #f5ffe7;
    box-shadow: 0px 5px 8px rgb(0 0 0 / 27%);
}
.steps-item__icon:after 
{
    display: block;
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 15px;
    height: 15px;
    margin-left: -7px;
    border-radius: 8px;
    background-color: #ffffff;
    content: '';
    border: 2px solid #000;
}
.steps-item__title 
{
    display: inline-block;
    position: relative;
    padding: 3px 15px;
    line-height: normal;
}
.steps-item__title b 
{
    display: inline-block;
    z-index: 1;
    position: absolute;
    right: calc(100% - 20px);
    bottom: -30px;
    color: #e2e3e0;
    font-size: 130px;
    font-weight: 700;
}
.steps-item__title span 
{
    display: inline-block;
    z-index: 2;
    position: relative;
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
}
.section-cta 
{
    display: block;
    position: relative;
    background-color: var(--test-green);
    background-image: url(../img/leaf-bg.png);
}
.category-tab
{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    border-bottom: 0;
}
.category-tab>*
{
    width: 25%;
    flex: none;
    position: relative;
    touch-action: pan-y;
    box-sizing: border-box;
}
.category-tab.nav-tabs .nav-link
{
    border: 0;
    padding: 0;
}
.category-tab.nav-tabs .nav-link:hover
{
    border: 0;
}
.category-tab.nav-tabs .nav-item.show .nav-link, .category-tab.nav-tabs .nav-link.active
{
    background-color: transparent;
}
.slider-menu .tab-content
{
    padding:20px
}
.category-tab.nav-tabs .nav-link.active .steps-item__icon:after
{
    background: var(--test-green);
    border-color: var(--test-green);
}
.category-tab.nav-tabs .nav-link.active .steps-item__icon img
{
    border-color:var(--test-green);
}
.category-tab.nav-tabs .nav-link.active .steps-item__title
{
    background: var(--test-green);
}
.category-tab.nav-tabs .nav-link.active .steps-item__title span
{
    color: #fff;
}
.section-cta .uk-button:hover,
.section-cta .uk-button:focus,
.section-cta .uk-button:active {
    background-color: #222;
    color: #ffffff;
}
.section-cta__box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content:space-around;
}
.section-cta__img {
    margin-right: 25px;
    margin-right: 1.3vw;
    text-align: right;
    display: flex;
    flex-direction: column;
}
.section-cta__img img
{
    margin-bottom: 10px;
}
.section-cta__title {
    color: #222222;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}
.section-cta__title span
{
    display: block;
    font-size: var(--font-heading);
    margin-bottom: 10px;
}
.section-cta__support {
    margin-right: 60px;
    margin-right: 3.13vw;
    margin-left: 60px;
    margin-left: 3.13vw;
    padding-left: 60px;
    padding-left: 3.13vw;
    border-left: 1px solid #222222;
}
.section-cta__support img
{
    width: 150px;
    mix-blend-mode: color-burn;
}
.section-cta__support .support__icon > * {
    color: #000000;
    font-size: 50px;
}
.section-cta__support .support__label {
    font-size: 24px;
}
.section-cta__support .support__phone {
    font-size: 36px;
}
.section-why-choose-us {
    display: block;
    position: relative;
    padding: 120px 0;
}
.section-why-choose-us .section-title {
    margin-bottom: var(--font-heading);
}
.section-why-choose-us .section-title .uk-h2 {
    margin-bottom: 15px;
}
.section-why-choose-us .section-content {
    color: #555555;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
}
.section-why-choose-us .section-content ul {
    margin-top: 40px;
    color: #555555;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
}

.article-full__bottom,
.article-intro__bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
    padding-bottom: var(--font-heading);
}
.article-full__bottom:after,
.article-intro__bottom:after {
    display: block;
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%;
    height: 13px;
    background-image: url(../img/decor-lines-grey.png);
    content: '';
}
.article-full__bottom .article-full__share,
.article-intro__bottom .article-full__share {
    margin-top: 10px;
}

.article-intro + .article-intro {
    margin-top: 60px;
}
.section-article-related {
    position: relative;
    margin-top: 70px;
    padding-bottom: 80px;
}
.section-article-related:after {
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 13px;
    background-image: url(../img/decor/decor-lines-grey.png);
    content: '';
}
.section-article-related .section-title {
    margin-bottom: var(--font-heading);
}
.section-article-related .section-title .uk-h2 {
    margin-bottom: 0;
    color: #222222;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}
.section-article-reviews {
    display: block;
    position: relative;
    margin-top: 70px;
}
.section-article-reviews .section-title {
    margin-bottom: 40px;
}
.section-article-reviews .section-title .uk-h2 {
    margin-bottom: 0;
    color: #222222;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}
.sidebar {
    display: block;
    position: relative;
    padding: 52px 40px;
    background-color: var(--test-primary);
}
.widjet {
    display: block;
    position: relative;
}
.widjet + .widjet {
    margin-top: 53px;
}
.widjet__title {
    display: block;
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}
.widjet__title::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 8px;
    margin-top: -4px;
    background-image: url(../img/decor/decor-title-left.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
}
.widjet-search .uk-search-default {
    display: block;
    position: relative;
    width: 100%;
}
.widjet-search .uk-search-input {
    display: block;
    width: 100%;
    background-color: #ffffff;
}
.widjet-search .uk-search-input:hover,
.widjet-search .uk-search-input:focus,
.widjet-search .uk-search-input:active {
    background-color: #ffffff;
}
.widjet-search .uk-search-input::-webkit-input-placeholder {
    color: #838383;
    font-size: var(--font-para);
    font-weight: 400;
}
.widjet-search .uk-search-input::-moz-placeholder {
    color: #838383;
    font-size: var(--font-para);
    font-weight: 400;
}
.widjet-search .uk-search-input:-ms-input-placeholder {
    color: #838383;
    font-size: var(--font-para);
    font-weight: 400;
}
.widjet-search .uk-search-input::-ms-input-placeholder {
    color: #838383;
    font-size: var(--font-para);
    font-weight: 400;
}
.widjet-search .uk-search-input::placeholder {
    color: #838383;
    font-size: var(--font-para);
    font-weight: 400;
}
.widjet-search .uk-search-icon {
    width: 62px;
}
.widjet-search .uk-search-icon::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 24px;
    margin-top: -12px;
    background-color: #dddddd;
    content: '';
}
.widjet-category .widjet__title {
    margin-bottom: 17px;
}
.list-category {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.list-category li a {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    transition: 0.5s;
}
.list-category li a::before {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    display: inline-block;
    margin-right: 13px;
    background: none;
    color: #ffffff;
    font-family: 'Font Awesome 5 Free';
    font-size: 17px;
    content: '\f058';
    transition: 0.5s;
}
.list-category li a:hover,
.list-category li a:focus,
.list-category li a:active {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    color: #ffffff;
    text-decoration: underline;
    transition: 0.5s;
}
.list-category li a:hover::before,
.list-category li a:focus::before,
.list-category li a:active::before {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    color: #7c5e04;
    transition: 0.5s;
}
.list-articles {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.list-articles-item {
    display: block;
    position: relative;
}
.list-articles-item + .list-articles-item {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ffffff;
}
.list-articles-item__link {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.list-articles-item__link:hover,
.list-articles-item__link:focus,
.list-articles-item__link:active {
    text-decoration: none;
}
.list-articles-item__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75px;
    flex: 0 0 75px;
    width: 75px;
    height: 75px;
    margin-right: 20px;
}
.list-articles-item__info {
    display: block;
}
.list-articles-item__title {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}
.list-articles-item__date {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

.range-box {
    display: block;
    position: relative;
}
.range-box .irs--round {
    top: -25px;
    height: 20px;
}
.range-box .irs--round .irs-line {
    background-color: #ffffff;
}
.range-box .irs--round .irs-bar {
    background-color: #7c5e04;
}
.range-box .irs--round .irs-handle {
    -webkit-box-shadow: none;
    top: 15px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 0;
    background-color: transparent;
    background-image: url(../img/icons/ico-range-slider.svg);
    background-size: cover;
    box-shadow: none;
}
.range-box__desc {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
    color: #ffffff;
    font-size: var(--font-para);
    font-style: normal;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
}
.range-box__desc input {
    display: inline-block;
    width: 40px;
    min-width: auto;
    margin-top: 2px;
    border: none;
    outline: none;
    background: none;
    color: #ffffff;
    font-size: var(--font-para);
    font-style: normal;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
    text-align: center;
    pointer-events: none;
}
.js-filter-content {
    display: block;
}

@media (min-width: 767px) {
  
    .section-cta__title {
        font-size: calc(20px + 1 * (100vw / 1920));
    }
    .section-cta__support .support__label {
        font-size: calc(18px + 6 * (100vw / 1920));
    }
    .section-cta__support .support__phone {
        font-size: calc(24px + 12 * (100vw / 1920));
    }
    .review-item__name {
        font-size: calc(14px + 4 * (100vw / 1920));
    }
    .review-item__position {
        font-size: calc(12px + 2 * (100vw / 1920));
    }
   
    .section-article-related .section-title .uk-h2 {
        font-size: calc(24px + 6 * (100vw / 1920));
    }
    .section-article-reviews .section-title .uk-h2 {
        font-size: calc(24px + 6 * (100vw / 1920));
    }
    .widjet__title {
        font-size: calc(18px + 6 * (100vw / 1920));
    }
    .list-category li a {
        font-size: calc(14px + 4 * (100vw / 1920));
    }
    .list-articles-item__title {
        font-size: calc(14px + 6 * (100vw / 1920));
    }
    
}
@media (min-width: 960px) {
    .uk-section-large {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}
@media only screen and (max-width: 1440px) {
   
    .page-header-bottom__left .logo {
        padding: 0 2.08vw 0 15px;
    }
    .page-header-bottom__left .support {
        padding-top: 11px;
        padding-bottom: 12px;
    }
    .page-header-bottom__right .uk-navbar-nav {
        margin-right: 0px;
    }
    .page-header-bottom__right .uk-navbar-item,
    .page-header-bottom__right .uk-navbar-nav > li > a,
    .page-header-bottom__right .uk-navbar-toggle {
        min-height: 80px;
    }
    .page-header-bottom__right .uk-navbar-toggle {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
        flex: 0 0 100px;
        width: 100px;
    }
}
@media only screen and (max-width: 1439px) {
    .section-cta__support {
        margin-right: 20px;
        margin-left: 20px;
        padding-left: 20px;
    }
}
@media only screen and (max-width: 1220px) {
    .page-footer .page-footer-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
    }
   
}
@media only screen and (max-width: 1200px) {
    .block-form {
        padding: 30px;
    }
    .page-header-top {
        display: block;
    }
    .page-header-top__left {
        display: none;
    }
    .page-header-top__right {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .page-header-top__right > * + * {
        margin: 0;
        padding: 0;
        border: 0;
    }
    .page-header-bottom__right {
        max-width: none;
    }
    .totop-link {
        display: none !important;
    }
    .section-article-related {
        margin-top: 30px;
        padding-bottom: 40px;
    }
    .section-article-reviews {
        margin-top: 30px;
    }
    .sidebar {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 959px) {
    .page-head__form {
        margin-top: 60px;
        padding-top: 60px;
    }
    .page-header-bottom__left .support {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        padding: 0;
    }
    .page-header-bottom__left .support__icon .svg-inline--fa,
    .page-header-bottom__left .support__icon .fas {
        margin-right: 0;
        font-size: 30px;
    }
    .page-header-bottom__left .support__desc {
        display: none;
    }
    .page-header-bottom__right .uk-navbar-item,
    .page-header-bottom__right .uk-navbar-nav > li > a,
    .page-header-bottom__right .uk-navbar-toggle {
        min-height: 60px;
    }
    .page-header-bottom__right .uk-navbar-toggle {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
        flex: 0 0 60px;
        width: 60px;
        border-left: 0;
    }
    .logo__img {
        max-height: 40px;
    }
    .section-category {
        padding-bottom: 60px;
    }
    .section-stats {
        padding: 60px 0;
    }
    .stats-item__icon {
        width: 60px;
        height: 60px;
    }
    .section-about {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-steps {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .steps-item__title b {
        right: calc(100% - 45px);
    }
    .section-cta {
        padding: 40px 0;
    }
    .section-cta__box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .section-cta__support {
        margin: 20px 0;
        padding: 0;
        border-left: 0;
    }
    .section-why-choose-us {
        padding: 60px 0;
    }
   
    .section-reviews {
        padding: 60px 0;
    }
    .js-filter-content {
        display: none;
    }
}
@media (max-width: 767px) {
    html,
    body {
        font-size: calc(14px + 6.8 * ((100vw - 320px) / 1920));
    }
    .section-title .uk-text-meta {
        font-size: calc(14px + 6.8 * ((100vw - 320px) / 1920));
    }
    .section-title .uk-h2 {
        font-size: calc(30px + 17 * ((100vw - 320px) / 1920));
    }
    .uk-button {
        font-size: calc(14px + 6.8 * ((100vw - 320px) / 1920));
    }
    .uk-pagination > * > * {
        font-size: calc(14px + 6.8 * ((100vw - 320px) / 1920));
    }
    .page-head__title {
        font-size: calc(32px + 54.4 * ((100vw - 320px) / 1920));
    }
    .page-header-top {
        font-size: calc(13px + 5.1 * ((100vw - 320px) / 1920));
    }
    .page-header-bottom__right .uk-navbar-nav > li > a {
        font-size: calc(12px + 10.2 * ((100vw - 320px) / 1920));
    }
    .page-header-bottom__right .uk-search-navbar .uk-search-input {
        font-size: calc(16px + 13.6 * ((100vw - 320px) / 1920));
    }
    .update a {
        font-size: calc(13px + 5.1 * ((100vw - 320px) / 1920));
    }
    .time-work {
        font-size: calc(13px + 5.1 * ((100vw - 320px) / 1920));
    }
    .login-link a {
        font-size: calc(13px + 5.1 * ((100vw - 320px) / 1920));
    }
    .support__phone {
        font-size: calc(20px + 13.6 * ((100vw - 320px) / 1920));
    }
    .checkbox-custome span {
        font-size: calc(14px + 6.8 * ((100vw - 320px) / 1920));
    }
    .category-item__title {
        font-size: calc(16px + 10.2 * ((100vw - 320px) / 1920));
    }
    
    .find-box__title span {
        font-size: calc(18px + 37.4 * ((100vw - 320px) / 1920));
    }
    .category-card__title {
        font-size: calc(18px + 10.2 * ((100vw - 320px) / 1920));
    }
    .category-card__intro {
        font-size: calc(14px + 3.4 * ((100vw - 320px) / 1920));
    }
    .stats-item__numb {
        font-size: calc(36px + 64.6 * ((100vw - 320px) / 1920));
    }
    .stats-item__title {
        font-size: calc(18px + 6.8 * ((100vw - 320px) / 1920));
    }
    .stats-item__desc {
        font-size: calc(14px + 3.4 * ((100vw - 320px) / 1920));
    }
    .about-list li {
        font-size: calc(12px + 10.2 * ((100vw - 320px) / 1920));
    }
    .about-list li strong {
        font-size: calc(14px + 13.6 * ((100vw - 320px) / 1920));
    }
    .steps-item__title b {
        font-size: calc(110px + 34 * ((100vw - 320px) / 1920));
    }
    .steps-item__title span {
        font-size: calc(18px + 6.8 * ((100vw - 320px) / 1920));
    }
    .section-cta__title {
        font-size: calc(20px + 34 * ((100vw - 320px) / 1920));
    }
    .section-cta__support .support__label {
        font-size: calc(18px + 10.2 * ((100vw - 320px) / 1920));
    }
    .section-cta__support .support__phone {
        font-size: calc(24px + 20.4 * ((100vw - 320px) / 1920));
    }
    .review-item__name {
        font-size: calc(14px + 6.8 * ((100vw - 320px) / 1920));
    }
    .review-item__position {
        font-size: calc(12px + 3.4 * ((100vw - 320px) / 1920));
    }
    .section-article-related .section-title .uk-h2 {
        font-size: calc(24px + 10.2 * ((100vw - 320px) / 1920));
    }
    .section-article-reviews .section-title .uk-h2 {
        font-size: calc(24px + 10.2 * ((100vw - 320px) / 1920));
    }
    .widjet__title {
        font-size: calc(18px + 10.2 * ((100vw - 320px) / 1920));
    }
    .list-category li a {
        font-size: calc(14px + 6.8 * ((100vw - 320px) / 1920));
    }
    .list-articles-item__title {
        font-size: calc(14px + 10.2 * ((100vw - 320px) / 1920));
    }
}
@media only screen and (max-width: 767px) 
{
    .section-category {
        padding-bottom: 40px;
    }
    .section-stats {
        padding: 40px 0;
    }
    .section-about .section-title .uk-h2 br {
        display: none;
    }
    .section-equipment {
        margin-bottom: 30px;
    }
    .section-reviews {
        padding: 40px 0;
    }
}
@media only screen and (max-width: 639px) {
    .uk-pagination > * > * {
        width: 40px;
        height: 40px;
    }
    .page-head__bg {
        padding: 80px 0;
    }
    .page-head__form {
        margin-top: 30px;
        padding-top: 30px;
    }
    .block-form {
        padding: 15px;
    }
    .block-form .uk-button 
    {
        width: 100%;
    }
    .page-header-top__right .social 
    {
        display: none;
    }
    .page-header-bottom__right .search-btn 
    {
        display: none !important;
    }
    .page-footer .page-footer-top 
    {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .page-footer .page-footer-middle 
    {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .find-box__title {
        margin-bottom: 25px;
    }
    .section-about {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .about-list li + li {
        margin-top: 15px;
    }
    .about-list li span {
        margin-left: 12px;
        padding-left: 12px;
    }
    .section-steps {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .steps-item__title b {
        right: calc(100% - 125px);
    }
    .section-why-choose-us {
        padding: 15px 0 30px;
    }
    .section-why-choose-us .section-title {
        margin-bottom: 15px;
    }
    .section-why-choose-us .section-content ul {
        margin-top: 20px;
    }
    .blocks-icon > div {
        margin-top: 20px !important;
    }
    .blocks-icon > div:nth-child(even) {
        margin: 0;
    }
    .block-icon {
        max-width: 260px;
        margin: 0 auto;
    }
    .article-intro + .article-intro {
        margin-top: 30px;
    }
    
}
@media only screen and (max-width: 424px) {
    .page-header-bottom__left .support {
        display: none;
    }
}
@media only screen and (max-width: 374px) {
    .block-icon {
        max-width: 100%;
    }
}
.equipment-detail {
    display: block;
    position: relative;
}
.equipment-detail .section-title {
    margin-bottom: var(--font-heading);
}
.equipment-detail .section-title .uk-h2 {
    margin-bottom: 10px;
    font-size: 30px;
}
@media (max-width: 767px) {
    .equipment-detail .section-title .uk-h2 {
        font-size: calc(20px + 17 * ((100vw - 320px) / 1920));
    }
}
@media (min-width: 767px) {
    .equipment-detail .section-title .uk-h2 {
        font-size: calc(20px + 10 * (100vw / 1920));
    }
}
.equipment-detail__gallery {
    margin-bottom: 60px;
}
@media only screen and (max-width: 639px) {
    .equipment-detail__gallery {
        margin-bottom: 25px;
    }
}
.equipment-detail__title {
    margin-bottom: 10px;
    color: #222;
    font-size: 36px;
    font-weight: 700;
}
.equipment-detail__title span
{
    color:#2365a9;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .equipment-detail__title {
        font-size: calc(22px + 23.8 * ((100vw - 320px) / 1920));
    }
}
@media (min-width: 767px) {
    .equipment-detail__title {
        font-size: calc(22px + 14 * (100vw / 1920));
    }
}
.equipment-order__value {
    color: var(--test-orange);
    font-size: 18px;
    font-weight: 500;
}
.equipment-order__value .uk-icon {
    margin-right: 10px;
}
.js-data {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z'%3E%3C/path%3E%3Crect width='1' height='3' x='6' y='2'%3E%3C/rect%3E%3Crect width='1' height='3' x='13' y='2'%3E%3C/rect%3E%3C/svg%3E");
    background-position: right 10px center;
    background-repeat: no-repeat;
}
.datepicker--cell.-current- {
    background-color: var(--test-primary);
    color: #ffffff;
}
.first-box
{
    width: 31.31%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
}
.padding_gap
{
    padding:20% 15% 20% 15%;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    background:#FAF7F0;
    transform: translate(0px, -1px);
    animation-name: fadeIn;
    width: 100%;
}
.padding_gap h3
{
    font-size:2.059em;
}
.middle-box
{
    width: 37.28%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gap-field
{
    width: 100%;
    align-content: flex-start;
    flex-wrap: wrap;
    margin:0px -80px 0px -80px;
}
.shrink_img
{
    display: block;
    position: relative;
}
.shrink_img img
{
     max-width: 545px;
}
.button_white
{
    font-weight: 500;
    font-style: normal;
    line-height: 21px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--test-white);
    border:2px solid var(--test-white);
    padding:11px 24px;
    line-height: 20px;
    display: inline-block;
}
.button_white:hover
{
    text-decoration: none;
    color:#fff;
}
.last-box
{
    width: 31.337%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.register_sheet
{
    padding: 23% 14% 23% 14%;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    background: #F2C200;
    width: 100%;
    position: relative;
}
.register_sheet h3
{
    font-size:2.059em;
}
.slider-full
{
    background-color: #eee;
    background-position: center;
    background-size: cover;
    position: relative;
}
.slider-full .slider-img .owl-nav
{
    position: absolute;
    top: 40%;
    z-index: 100;
    left: 0;
    width: 100%;
}
.slider-full .slider-img .owl-nav .owl-prev,
.slider-full .slider-img .owl-nav .owl-next
{
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    font-size: 36px;
    line-height: 50px;
}
.slider-full .slider-img .owl-nav .owl-prev
{
    left: 0;
}
.slider-full .slider-img .owl-nav .owl-next
{
    right: 0;
}
.carousel-category
{
    padding: 0;
    margin: 0;
}
.carousel-category li
{
    display: block;
    background: #e8edf3;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
}
.carousel-category.owl-carousel .owl-item li img
{
    width: 80px;
    background: #fff;
    padding: 5px;
    border-radius: 100px;
    margin: auto;
}
.kisan-mitra-mem{
    position: absolute;
    bottom: 0;
}
.top-full{
    position: relative;
    z-index: 11;
    padding: 20px;
 }
 .leaf-cocoon {
    position: absolute;
    bottom: 0;
    right: -90px;
}
 .leaf-cocoon img {
    width: 300px;
}
.mt-n-100{margin-top: -200px;}
.co-coon img{width: 70px;}
.carousel-category.owl-theme .owl-nav {
    position: absolute;
    right: 0;
    top: -100px;
}
.slider-full .item
{
    position: relative;
}
.slider-full .item::before
{
    display: block;
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(0 0 0 / 46%); */
    content: '';
}
.imp_link
{
    padding: 0;
}
.imp_link li
{
    display: block;
    background: #f5f6ff;
    padding: 4px;
    border-radius: 5px;
    border-left: 4px solid var(--test-primary);
    box-shadow: 4px 4px 0px rgb(203 191 191 / 22%);
    margin: 0px 0 10px;
}
.column-count-2
{
    column-count: 2;
}
.category-list
{
    padding: 15px 15px 15px 15px;
    margin-bottom: 10px;
    position: relative;
}
.category-list .inner-box
{
    display: flex;
    background-color: #fff;
    align-items: center;
    /* border:1px solid #cfd8e3; */
}
.category-list .item-featured
{
    cursor: pointer;
    overflow: hidden;
}
.category-list .item-featured a {
    display: block;
    position: relative;
    /* margin-right: 120px; */
}
.category-list .item-featured a .img-container:after
{
    /* content: ""; */
    background: rgba(0, 0, 0, 0.1);
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 50%);
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 50%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#ffffff",GradientType=0);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 300ms linear;
    -khtml-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.category-list .item-featured a .img-container img
{
    border-radius:1px 155px 155px 1px
}
.category-list .item-content {
    position: relative;
    /* margin-top: -132px; */
    margin-left: auto;
    max-width: 360px;
    padding: 38px 30px 34px;
    background-color: #ffffff;
    /* -webkit-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.15);
    -khtml-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.15); */
}
.category-list .item-content .item-title {
    color: #3b7b2b;
    font-size: 20px;
    letter-spacing: -0.05em;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 0;
}
.category-list .item-content .item-title a
{
    color: #222;
}
.category-list .item-content .pxl-button-wrapper {
    position: absolute;
    bottom: 0px;
    left: -50px;
    -webkit-transform: translateY(-25px);
    -khtml-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
    transform: translateY(-25px);
}
.category-list .item-content .btn-readmore-plus {
    width: 50px;
    height: 50px;
    line-height: 53px;
    background-color:var(--test-orange);
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.category-list .item-content .btn-readmore-plus i {
    font-size: 22px;
}
.category-list .item-content .item-excerpt {
    margin-top: 14px;
    color: #555;
    display: -webkit-box;
    /* max-width: 200px; */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.description-box
{
    background: url(../img/home-zig-zag-bg.png);
    background-position: top;
    background-size: cover;
    position: relative;
    background-size: auto;
}
.readmore
{
    margin-top: 10px;
    display: inline-block;
    color: var(--test-green);
    font-weight: bold;
    display: flex;
    align-items: center;
}
.readmore svg
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    display: block;
    flex: 0 0 20px;
    width: 20px;
    height: 15px;
    margin-left: 14px;
}
.readmore:hover
{
    color:var(--test-orange);
}
.readmore i
{
    margin-left: 10px;
}
.login_inner .section-title-wrapper {
    background-color: #f1f1f100;
    /* margin: 0 56px 0 44px; */
    margin: 0;
}
.register-but
{
    background-color: #ff8500;
    border: none;
    width: 49%;
    color: #fff;
    /* line-height: 0; */
    padding: 8px 15px;
    display: inline-block;
    /* border-radius: 6px; */
    text-align: center;
    line-height: normal;
}
section.login_layout {
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #ffffff 50%, #fff 100%);
    padding:20px 0px 20px 0px;
}
.login_login input.form-control:focus {
    background-color: #e6e6e66e;
    border-color:var(--test-green);
}
.login_inner .section-title {
    padding: 0;
    padding-left: 0px;
    line-height: 34px;
    color: #2b2b2b;
}

.img_login img {
    width: 120px;
    position: absolute;
    right: -58px;
    top: 40px;
    z-index: 1;
}
.img_login {
    text-align: center;
}
.forget-but
{
    font-size: 14px;
    color: #29334c;
}
.image-fix
{
    background: url(../images/banner/login-background.png);
    position: relative;
    background-position: center;
    background-size: cover;
    min-height: 200px
}
.register-button {
    display: inline-block;
    padding: 7px 40px 12px 20px;
    background: var(--test-primary);
    color: #000;
    border-radius: 7px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 26px;
    position: relative;
    text-transform: uppercase;
}
.register-button::before {
    content: '\f054';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    left: 15px;
    top: 40px;
    /* border: 2px solid #000; */
    z-index: 10;
    font-family: FontAwesome;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    color: var(--test-primary);
    box-shadow: -5px 2px 10px rgba(0,0,0,0.2);
}
.register-button span {
    display: block;
    background: var(--test-green);
    color: #fff;
    text-align: center;
    position: absolute;
    /* left: 0; */
    padding: 2px 34px;
    /* border-radius: 55px 1px 55px 55px; */
    right: 0;
    bottom: -32px;
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
    font-size: 28px;
}
.side-left-heading p {
    /* color: #040404; */
    /* padding: 20px; */
    margin: 0;
}

.side-left-heading p a {
    color: var(--test-orange);
}
.side-left-heading h4 {
    font-size:var(--font-heading);
    color: var(--test-green);
    margin-bottom: 30px;
}
.side-left-heading h4 span {
    display: block;
    font-size: 20px;
    color: #000;
}
.resham-wood {
    width: 20%;
    position: absolute;
    right: 0px;
    top: -100px;
    transform: scaleX(-1);
    z-index: 100;
}
.app-icon
{
    width: 140px;
    margin-top: 20px;
}

/* ***************ratna Main page ************************ */

.slider-menu
{
    margin: 0;
    position: relative;
    width: 100%;
    display: flex;
}
.slider-menu div.qodef-shortcode
{
    display: inline-block;
    padding: 0;
}
.slider-space
{
    background:linear-gradient(#aeff3a17, #0000);
}
.slider-space h3
{
    font-size: 28px;
    text-align: center;
    margin-top: 80px;
    color: #162e09;
}
.slider-space h3 span
{
    display: block;
    color:#ff6344;
    font-size: 50px;
}
.slider-range
{
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.resham-tree {
    width: 100%;
    position: relative;
    left: -15px;
    top: -30px;
    transform: scaleX(-1);
    opacity: 0.9;
}
.about-sheet p
{
    margin-bottom: 10px;
    text-align: justify;
}
.resham-category
{
    background: url(../img/project-bg-home.jpg);
    background-position: top;
    background-size: cover;
    position: relative;
    background-size: auto;
}
.category-list-page
{
   display: block;
    padding: 0 0 20px;
    background: #fff;
    border-radius: 15px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 3px 3px 10px rgb(0 0 0 / 19%);
    text-align: center;
}
span.icon-photo
{
    background-color: #fff;
    border-radius: 15px;
}
.category-list-page img
{
    /* width: 180px;
    height: 200px; */
     /* border: 2px solid #1f9833;  */
    /* padding: 30px 10px;
    border-radius: 20px; */
    margin: auto;
    display: block;
    margin-bottom: 20px;
    width: 100%;
}
.category-list-page strong
{
    font-size: 22px;
    color: var(--test-green);
    text-align: center;
    margin-top: -30px;
    font-weight: bold;
    display: block;
}
.category-list-page p
{
    font-size: 16px;
    color: #333;
    text-align: center;
    margin: 0 0 10px 0;
    font-weight: bold;
}
.category-list-page p small
{
    display: block;
    color: #000;
}
.butterfly {
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 100px;
}
.side-resham {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
}
.category-list-page .article-intro__info
{
    padding: 0 20px;
    border: 0;
    margin: 20px 0 0;
}
.category-list-page .article-intro__comments,
.category-list-page .article-intro__share
{
    margin-bottom: 0;
    font-size: 13px;
    font-weight: bold;
    margin-right: 8px;
    padding-right: 8px;
}
.category-list-page .article-intro__info .svg-inline--fa
{
    display: block;
    margin: auto;
    font-size: 24px;
}
.category-list-page .article-intro__info > *:last-child
{
    border-right: 0;
}
.section-equipment {
    position: relative;
}

.section-equipment::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background-attachment: fixed;
    background-image: url(../img/bg-yojanayen.jpg);
    background-position: left center;
    background-size: cover;
    content: '';
}
.section-equipment::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background-color: rgba(0, 0, 0, 0.8);
    content: '';
}
.uk-container>:last-child {
    margin-bottom: 0;
}
.equipment-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.z-index
{
    z-index: 10 !important;
}





/* ******************************shreni detail******************************** */
.shreni-eligibility
{
    background-color: #fff;
}
.video-icon
{
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: -webkit-linear-gradient(left,var(--test-green),#ffd200);
    line-height: 60px;
    top: 45%;
    right: -38px;
    color: #fff;
    font-size: 26px;
    text-align: center;
    box-shadow: 0px 0px 0px 3px #fff, 10px 10px 10px rgba(0,0,0,0.5);
    z-index: 100;
}
.video-play
{
    padding-right: 0;
}
.about-img
{
    height: 340px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
/* ************************************application form******************************************** */
.agree-reg-elibility-btn{
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
}
.Reg-elibility-modal-area
{
    background-color: var(--test-cream) !important;
}



.Reg-elibility-modal-area:before{
    content: '';
    position: absolute;
    background-image:url(../img/bg-eligibilty-poup.png);
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 1;
}
.Reg-elibility-modal-area:after
{
    content: '';
    position: absolute;
    background-image: url(../img/bg-eligibilty-poup.png);
    transform: rotate(180deg);
    bottom: -6px;
    left: -17px;
    width: 81px;
    height: 73px;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 1;
    background-size: contain;
}
.field-label{
    position: absolute;
    top: -10px;
    z-index: 1;
    background: #ffffff;
    left: 10px;
    border-top-left-radius: 6px;
    padding: 0px 10px;
    font-size: 14px;
    font-weight: 400;
}
@media only screen and (min-width:320px) and (max-width:1199px)
{
    .field-label{
    position: relative;
    padding: 0;
    top: auto;
    left: auto;
}
}
/* ******************registration************************************ */
.login_inner .login_login input.form-control {
    border-radius: 6px;
    background-color: #fff;
    color: #000;
    border: 1px solid #bbbbbb;
}
.login_inner .login_login input.form-control:focus
{
    background-color: #e6e6e66e;
    border-color: #217604;
    box-shadow: none;
    outline: 0;
}
.form_section {
    position: relative;
    padding: 17px 30px 45px 70px;
    z-index: 100;
}
button.custom-btn:hover {
    background-color: #ff8500;
    border: 1px solid #ff8500;
}
.form_section label {
    color: #494949;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
}
.forcgeot_pass a {
    color: #000;
}
.login_inner .section-title-wrapper {
    background-color: #f1f1f100;
    margin: 0;
}
.login_btn .custom-btn {
    background-color: #217604;
    border:1px solid #217604;
    width: 49%;
    color: #fff;
    display: inline-block;
    margin-right: 2px;
    padding: 8px 15px;
    line-height: normal;
    height: auto;
}
.register-but
{
    background-color: #ff8500;
    border: none;
    width: 49%;
    color: #fff;
    padding: 8px 15px;
    display: inline-block;
    text-align: center;
    line-height: normal;
}
section.login_layout {
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #ffffff 50%, #fff 100%);
}
.login_login input.form-control:focus {
    background-color: #e6e6e66e;
    border-color:#217604;
}
.login_inner .section-title {
    padding: 0;
    padding-left: 0px;
    line-height: 34px;
    color: #2b2b2b;
}
.login_inner .section-title:after
{
    content: none;
}
.img_login img {
    width: 120px;
    position: absolute;
    right: -58px;
    top: 40px;
}
.img_login {
    text-align: center;
}
.forget-but
{
    font-size: 14px;
}
.image-fix
{
    background: url(../img/bg/login-background.png);
    position: relative;
    background-position: center;
    background-size: cover;
    min-height: 200px
}
.register-background
{
    background: url(../img/bg/registration-background.png);
    position: relative;
    background-position: center;
    background-size: cover;
}
.register_heading
{
    position: relative;
    margin-bottom: 30px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    font-size: 16px;
    width: 80%;
    background: rgb(255, 133, 0);
    padding: 7px 15px 10px;
}
.register_heading::before
{
    content: '';
    position: absolute;
    right: -28px;
    top: 0;
    background-color: rgb(255 133 0);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    width: 28px;
    height: 33px;
    z-index: 1;
}
/** registration ***/
section.register {
    padding: 20px 0px 20px 0px;
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #ffffff 50%, #fff 100%);
}

.register_form .regist_inner {
    background-color: unset;
    padding: 50px 30px 45px 70px;
    border-bottom: unset;
    border: unset;
    margin-top: 0;
    z-index: 100;
    position: relative;
}
.register_form .regist_inner.forget
{
    padding: 50px 30px 45px 30px;
}
.register_form input.form-control:focus {
    background-color: #e6e6e66e;
    border-color: #217604;
}
.regist_inner .form-label {
    color: #494949;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
}

.btn_custom a {
    /* width: 100%; */
    height: 40px;
    color: rgb(255, 255, 255);
    padding: 10px 16px;
    font-weight: 500;
    background-color: rgb(33 118 4);
    cursor: pointer;
    transition: all 0.3s ease 0s;
    position: relative;
    display: inline-block;
    outline: none;
    text-align: center;
    border: 2px solid rgb(33 118 4);
    line-height: 0;
    border-radius: 0px;
    text-decoration: none !important;
}
.otp-validate .btn_custom a:hover,
.otp-validate .btn_custom a:active,
.otp-validate .btn_custom a:focus 
{
    background-color: #ff8500;
    border-color: #ff8500;
    color: #fff;
    box-shadow: none;
    outline: 0;
}
.regist_inner input.form-control 
{
    border-radius: 6px;
    background-color: #fff;
    color: #000;
    border: 1px solid #bbbbbb;
}
.register .register_form .section-title 
{
    line-height: 34px;
    background-color: #ffffff00;
    /* margin: 0 57px; */
    color: #2b2b2b;
    padding-bottom: 0;
    padding-left: 0;
}
.register .register_form .section-title::after
{
    content: none;
}
.register_form .section-title-wrapper 
{
    margin-bottom: 28px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button 
{
    -webkit-appearance: none;
    margin: 0;
}
.otp-validate 
{
    text-align: center;
}
.otp-validate h4 
{
    font-size: 16px;
}
.otp-validate h4 span 
{
    color: var(--test-green);
}
.otp-validate p 
{
    text-align: center;
    margin:15px 0;
}
.otp-validate p span 
{
    color: var(--test-orange);
    display: block;
    font-weight: bold;
}
.otp-validate a:hover 
{
    color: #ff8500;
}
.otp-validate .input-group .form-control 
{
    /*margin-right: 4px;*/
    border: 1px solid #bbbbbb;
    background-color: transparent;
    border-radius: 4px;
    text-align: center;
}
.otp-validate .input-group .form-control:focus 
{
    border: 1px solid #217604;
}  
.otp-technic a
{
    color:#000;
    line-height: normal;
}
.bg_light_green.bord-dark {
    position: relative;
    background: #66b47b;
    border-radius: 1px 30px 30px 1px;
    overflow: hidden;
    box-shadow: 0px 0px 0px 9px #e3effd, 10px 10px 20px #00000033, 0px 0px 0px 10px #d0e0f3;
}
.bord-dark::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 80px 1px 1px 80px;
    z-index: 100;
    background: #fffbfb;
}
.bg-color_grey {
    background-color: #eef0f0;
    border-right: 1px dashed #d8d8d8;
}

.bg_light_green {
    background-color: #f5f7f7;
}
/* .bg-pista
{
    background-color: var(--test-pista);
} */




.mobile-pre .input-group-text {
    background-color: #ffffff;
    border-color: #bbbbbb;
    color: #000;
}
.uk-button-validate {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 155px;
    background: -webkit-linear-gradient(left,#63a706,#ffb412);
    color: #ffffff;
    font-size: 18px;
    /* font-weight: 700; */
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.5s;
    line-height: normal;
    padding: 10px 26px;
    border: 0;
}
.otp-validate .input-group:not(.has-validation) .uk-button-validate:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-radius: 1px 155px 155px 1px;
}

.uk-button-validate:hover,
.uk-button-validate:focus,
.uk-button-validate:active,
.uk-button-validate:active:focus {
    background: -webkit-linear-gradient(left,#ffb412,#63a706);
    border: 0;
}

/* resend timer */


.timer {
    margin-top: 0px;
}
.timer > svg {
    width: 30px;
    height: 30px;
}
.timer > svg > circle {
    fill: none;
    stroke-opacity: 0.3;
    stroke: #ff8500;
    stroke-width: 2;
    transform-origin: center center;
    transform: rotate(-90deg);
}
.timer > svg > circle + circle {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    stroke-linecap: round;
    stroke-opacity: 1;
}
.timer.animatable > svg > circle + circle {
    transition: stroke-dashoffset 0.3s ease;
}
.timer > svg > text {
    font-size: 14px;
}

/* ****************** Form Css ************************************ */
.uk-button-md {
    line-height: 54px;
    padding: 0px 20px;
}
/*************
Registration upload Start
*************/
.profile-pic {
    width: 200px;
    max-height: 250px;
    display: inline-block;
}
.file-upload {
    display: none;
}
.circle {
    overflow: hidden;
    width: 150px;
    height: 160px;
    border: 2px dashed #ddd;
    position: absolute;
    top: 6px;
    right: 0;
    border-radius: 4px;
}
.circle img {
    max-width: 100%;
    height: 100%;
}
.p-image {
    position: absolute;
    top: 0;
    width: 100%;
    right: 0;
    color: #666666;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.p-image:hover {
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.upload-button {
    font-size: 1.2em;
    width: 100%;
    height: 100%;
    padding: 50px;
    line-height: 110px;
}
.upload-button i {
    transform: translate(50%, 100%);
}
.upload-button:hover {
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    color: #999;
}
.upload_file {
    /* width: 100px; */
    height: 180px;
    /* float: right; */
    /* margin: auto; */
    position: relative;
    /* margin-bottom: 20px; */
}
/***/
.sign-pic {
    width: 154px;
    max-height: 70px;
    display: inline-block;
}
.sign-upload {
    display: none;
}
.sign-circle {
    /*border-radius: 100% !important;*/
    overflow: hidden;
    width: 154px;
    height: 70px;
    border: 2px dashed #ddd;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 4px;
}
.sign-circle img {
    max-width: 100%;
    height: auto;
}
.s-image {
    position: absolute;
    top: 0;
    width: 200px;
    right: 0;
    height: 70px;
    /* right: 0; */
    color: #666666;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.s-image:hover {
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.sign-upload-button {
    font-size: 1.2em;
    width: 100%;
    height: 100%;
    /*padding: 80px;*/
    /*line-height: 110px;*/
}
.sign-upload-button i {
    transform: translate(50%, 100%);
}
.sign-upload-button:hover {
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    color: #999;
}
.sign_file {
    width: 200px;
    height: 70px;
    float: right;
    /* margin: auto; */
    position: relative;
}
.text-right {
    text-align: right;
}
/***/
.text-mid-dark{
    color: #3d7804;
    font-size: 16px;
    font-weight: 500;
}
.text-green {color: var(--test-green);}
.text-orange {color:#e39a0e;}
.h-200px  {
    height: 250px;
}
.h-200  {
    height: 300px;
}
.w-250px{width: 250px;}
.img-cover{    object-fit: cover;
    object-position: top;}
.bb-1{border-bottom: 1px solid #fff3;}
/*************
Login Page Nd Registration page css
*************/
 /*General Styling*/
 .rtu{max-width: 466px; overflow-y: hidden; padding-right: 10px;}
 .rtu:hover{overflow-y: auto;}
 .rtu::-webkit-scrollbar {
         width: 4px;
         background-color: var(--scrollbar);
     }
     .et_pb_text ol{
     max-width:500px;/*remove if full width*/
     text-align:justify;
     }
     .et_pb_text ol
    {
        position: relative;
        padding-left: 30px;
        margin-bottom: 20px;
        list-style: none !important;
    }
    .et_pb_text ol li {
    position: relative;
    margin-top: 0em;
    margin-bottom: 20px;
    color: #fff;
    }
    .et_pb_text ol li p
    {
        color:#fff
    }
     /*number styling - note that you will need to physically add in a span class*/
    .et_pb_text ol li .number_divider {
        position: absolute;
        font-weight: 800;
        font-size: 1.2em;
        left: -60px;
        top: -5px;
    }
     /*line styling*/
     /*dot styling*/
    .et_pb_text ol li:after {
        content: "";
        /* background: #217604; */
        position: absolute;
        /* width: 15px; */
        /* height: 15px; */
        /* border-radius: 100%; */
        top: 2px;
        left: -20px;
        border: 6px solid transparent;
        border-left-color: #fff;
    }
     /*removes line from last number*/
    .et_pb_text ol li:last-child:before 
    {
        content: "";
        background: #ffffff;
    }
    /* *************captcha**************** */
    .captcha_wrap .security-image {
        display: flex;
        /* height: 40px; */
        border: 1px solid #217604;
        border-radius: 7px;
        justify-content: space-between;
        overflow: hidden;
    }
    .cap_enter_box {
        width: 100%;
    }
    .captcha_box {
        width: 50%;
    }
    .captcha_box img {
        width: 100%;
        object-fit: contain;
        object-position: center center;
        height: 40px;
        object-fit: cover;
        /* object-position: left; */
    }
    .ref_box {
        align-self: center;
        line-height: 32px;
        text-align: center;
        /* float: right; */
    }
    .ref_box a {
        padding: 7px 15px;
        background: #217604;
        border-radius: 1px 5px 5px 1px;
        margin: 0 0 0 10px;
        color: #fff;
        width: 50px;
        display: inline-block;
        height: 40px;
    }
    /*captcha css end*/

    /* *********************preview page*********************** */
    .table-preview tbody tr td
    {
        padding: 10px 15px 5px;
    }
    .table-preview tbody tr td:first-child,
    .table-preview tbody tr td:nth-child(odd)
    {
        font-weight: bold;
    }
    .table-preview tbody tr td a
    {
       color: var(--test-green);
       font-weight: 500;
       display: inline-block;
    }
    .table-preview tbody tr td a i
    {
       margin-right: 5px;
       background: var(--test-green);
       padding: 4px 7px;
       border-radius: 4px;
       line-height: normal;
       color: #fff;
       height: 24px;
       width: 32px;
       text-align: center;
       display: inline-block;
    }
    .head-preview img
    {
        width: 80px;
        margin:auto;
    }
    .head-preview h6:after
    {
        content: none;
    }
    .page-head__content .uk-container>:last-child
    {
        margin-bottom: 40px;
    }
    .preview-heading h6
    {
        position: relative;
        z-index: 1;
        margin: 0 0 0 10px;
        -webkit-transform: skew(-30deg);
        -moz-transform: skew(-30deg);
        -o-transform: skew(-30deg);
        background: #edb509;
        padding: 9px 25px 9px 5px;
        width: auto;
        display: inline-block;
    }
    .preview-heading h6::before
    {
        content: '';
        position: absolute;
        width: 20%;
        height: 100%;
        background: #edb509;
        left: -10px;
        top: 0;
        transform: skew(30deg);
    }
    .preview-heading h6 span
    {
        -webkit-transform: skew(30deg);
        -moz-transform: skew(30deg);
        -o-transform: skew(30deg);
        display: inline-block;
    }
    @media only screen and (max-width: 991px) {
        .category-list-page p 
        {
            font-size: 14px;
        }
        .category-list-page strong
        {
            margin-top: -20px;
        }
        .register_form .regist_inner
        {
            padding: 50px 30px 45px 30px;
        }
        .minister-detail li.list-articles-item
        {
            width: 100%;
        }
    }
    @media only screen and (max-width: 767px) {

        .mt-n-100
        {
            margin-top: -90px;
        }
        .video-play
        {
            padding-right: calc(var(--bs-gutter-x)/ 2);
        }
        .video-icon
        {
            right: 0;
        }
        .about-img
        {
            margin-bottom: 10px;
        }
        .category-list-page
        {
            margin-bottom: 20px;
        }
        .category-list-page strong
        {
            margin-top: -50px;
        }
        .category-list-page p 
        {
            font-size: 16px;
        }
        .img-cover
        {
            margin-bottom: 20px;
        }
        .img_login
        {
            display: none;
        }
        .register_form .regist_inner.forget
        {
            padding: 50px 0px 45px 0px;
        }
        .otp-validate h4 {
            font-size: 14px;
        }
    }
    @media only screen and (max-width: 767px) 
    {
        .stacker
        {
            font-size: 23px;
            margin-left: 7px;
            line-height: normal;
        }
        .stacker span
        {
            font-size: 12px;
        }
        .logo__link img
        {
            width: 70px;
            height: 70px;
        }
        section.register
        {
            padding: 20px;
        }
    }
    /* *****************************successfully********************************** */
    .reg_sucess_wrapper {
        position: relative;
        z-index: 1;
        
    }
    .reg_sucess_wrapper::before
    {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background:url(../img/bg/colorful-watercolor.jpg);
        background-size: cover;
        opacity: 0.4;
    }
    .reg_sucessfull_block {
        background: #ffffff;
        margin: 40px auto;
        max-width: 60%;
        box-shadow:0px 0px 0px 9px #e3effd, 10px 10px 20px #00000033, 0px 0px 0px 10px #d0e0f3;
    }
    .reg_sucess_wrapper h3
    {
        color: var(--test-orange);
        font-size: 24px;
    }
    .reg_sucess_wrapper p
    {
        margin: 0;
        color: #000;
    }
    .reg_sucessfull_block:before {
        content: '';
        background-image: url(../img/400w/Asset4.png);
        position: absolute;
        bottom: -10px;
        left: -75px;
        width: 190px;
        height: 110px;
        z-index: 1;
        background-size: cover;
    }
    .reg_sucessfull_block:after {
        content: '';
        background-image: url(../img/400w/Asset6.png);
        position: absolute;
        bottom: -10px;
        right: -115px;
        width: 200px;
        height: 120px;
        z-index: 1;
        background-size: cover;
        transform: scaleX(-1);
    }
    .reg_sucessfull_block .app_id {
        position: absolute;
        top: 7px;
        right: 7px;
        font-size: 14px;
    }
    .reg_sucessfull_block .app_id .badge
    {
        color: #66b000;
        font-size: 18px;
    }
    .reg_sucessfull_block img 
    {
        width: 100px;
        display: block;
        margin: 30px auto 30px;
    } 

    /* ***********************minister detail
    ************************************** */

    .minister-content
    {
        margin-top: -60px;
        z-index: 10;
        position: relative;
    }
    .minister-detail
    {
        box-shadow: 0 0px 5px 14px rgb(0 0 0 / 4%);
        /* box-shadow: -10px 10px 5px 3px rgb(0 0 0 / 4%); */
    }
    .minister-detail .list-articles-item__info
    {
        padding: 16px 10px;
    }
    .minister-detail .list-articles-item__title
    {
        font-size: 16px;
    }
    .minister-detail .list-articles-item__date
    {
        font-size: 13px;
    }
    .minister-detail li.list-articles-item
    {
        width: 50%;
        position: relative;
    }
    /* .minister-detail li.list-articles-item:after
    {
        display: block;
        position: absolute;
        top: -5px;
        left: 0;
        width: 13px;
        height: 100%;
        background-image: url(../img/decor-lines-grey.png);
        content: '';
    } */
    .minister-detail li .list-articles-item__img 
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 125px;
        flex: 0 0 125px;
        width: 125px;
        height: auto;
        margin-right: 10px;
        position: relative;
        z-index: 1;
    }
    .minister-detail li .list-articles-item__img::before
    {
        content: '';
        position: absolute;
        width: 60%;
        height: 80%;
        background-color: var(--test-orange);
        border-radius: 10px;
        left: -6px;
        top: -6px;
        z-index: -1;
    }

    @media only screen and (max-width: 991px) {
       
        .minister-detail li.list-articles-item
        {
            width: 100%;
            text-align: center;
        }
        .minister-detail li .list-articles-item__img
        {
            margin: auto;
        }
        .minister-content
        {
            margin-top: 20px;
        }
        .slider-full .slider-img .owl-nav .owl-prev, .slider-full .slider-img .owl-nav .owl-next
        {
            width: 30px;
            height: 30px;
            line-height: 20px;
        }
    }
    .uk-transition-fade, [class*=uk-transition-scale], [class*=uk-transition-slide] {
        transition: .3s ease-out;
        transition-property: opacity,transform,filter;
        opacity: 0;
    }

    .uk-transition-active.uk-active .uk-transition-fade, 
    .category-item__link:focus .uk-transition-fade, 
    .category-item__link:hover .uk-transition-fade 
    {
        opacity: 1;
    }
    .gallery-media .uk-width-1-1
    {
        height: 200px;
        width: 100%;
        object-fit: cover;
        object-position: top;
    }


/* ==========================Winner box start======================= */

.winner-box {
    position: relative;
    /* overflow: hidden; */
    padding-top: 70px;
    background: transparent;
    padding: 0;
}

.content-white {
    background-color: #fff;
    padding: 50px 0 10px;
    /* border-radius: 1px 1px 80px 80px; */
}

.prize-tag {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right: -20px;
    top: -20px;
}

.winner-box::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 75px;
    background-color: #ff554d;
    border-radius: 1px 1px 150px 150px;
    left: 0;
    top: 0px;
}

.winner-box::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 50px;
    background-color: #ff554d;
    border-radius: 1px 1px 100px 100px;
    left: 100px;
    top: 0;
}

.winner-icon {
    width: 110px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 10px;
    background-color: #fff0;
    border: 2px solid #ff554d;
    margin: auto;
    position: relative;
    z-index: 1;
}

    .winner-icon img {
        width: 100%;
        height: 100%;
        background-color: #fff;
        border-radius: 50%;
    }
    /* .behind-gap
    {
        position: absolute;
        width: 10px;
        height: 116%;
        background-color: #ffffff;
        bottom: -9px;
        right: 58px;
        transform: rotate(33deg);
        z-index: -1;
    } */
    .winner-icon::before {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 2px solid #ff554d;
        background-color: #fff;
        top: 10px;
        right: 10px;
    }

    .winner-icon::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 4px solid #ffffff;
        background-color: #ff554d;
        bottom: 10px;
        left: 10px;
    }

.winner-content {
    margin-top: 10px;
}

    .winner-content h4 {
        margin-bottom: 0;
        text-align: center;
        color: #000;
        font-size: 16px;
        margin-top: 10px;
    }

        .winner-content h4 span {
            font-weight: normal;
            display: block;
            font-size: 14px;
            padding: 0 20px;
            margin-top: 10px;
        }

    .winner-content p {
        margin: 0 0 10px;
        color: #000;
        text-align: center;
        font-size: 14px;
        font-weight: bold
    }

        .winner-content p span {
            color: #ff554d;
            font-weight: normal;
        }

.winner-info {
    margin: 0;
    padding: 0;
    text-align: center;
}

    .winner-info li {
        display: block;
        padding: 0px 30px;
        font-size: 13px;
        color: #ff554d;
        font-style: italic;
        border-bottom: 1px solid #ffffff61;
        font-weight: bold;
    }

        .winner-info li span {
            display: block;
            font-weight: 500;
            color: #000;
            font-style: normal;
        }

.prize-division {
    position: absolute;
    color: #fff;
    top: 13px;
    z-index: 10;
    font-weight: bold;
    left: 30px;
}

.winner-banner h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.winner-banner h5 {
    font-size: 18px;
    color: #ff6046;
}

    .winner-banner h5 span {
        display: block;
        color: #000;
        margin-top: 5px;
    }

.price-money {
    position: relative;
    background-color: #07285d;
    padding: 20px 20px 0;
    text-align: center;
    border-radius: 1px 1px 20% 20%;
}

    .price-money h4 {
        font-size: 16px;
        color: #fff;
        position: relative;
        z-index: 10;
    }

        .price-money h4 span {
            display: block;
            font-size: 24px;
            margin-top: 8px;
        }

    .price-money::before {
        content: '';
        position: absolute;
        width: 54%;
        height: 50px;
        border-radius: 10px;
        left: 1px;
        bottom: -17px;
        background-color: #07285d;
        transform: rotate(14deg);
    }

    .price-money::after {
        content: '';
        position: absolute;
        width: 54%;
        height: 50px;
        border-radius: 10px;
        right: 1px;
        bottom: -17px;
        background-color: #07285d;
        transform: rotate(-14deg);
    }
/* .winner-box.second-winner
    {
        background-color: tra;
    } */
.winner-box.second-winner .price-money::before,
.winner-box.second-winner .price-money::after,
.winner-box.second-winner .price-money {
    background-color: #c70c0c;
}

.winner-box.second-winner::before,
.winner-box.second-winner::after,
.winner-box.second-winner .winner-icon::after {
    background-color: #4dc8ff
}

.winner-box.second-winner .winner-icon,
.winner-box.second-winner .winner-icon::before {
    border-color: #4dc8ff;
}

.bg-purple {
    background-color: #fddfdf;
}



/* ==========================Winner box End======================= */

