/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    font-weight: normal;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.form-control {
    letter-spacing: 1px;
    font-size: 13px;
    padding: 15px 15px;
    border-radius: 2px;
    border: 1px solid #ced4da;
    color: #000;
    background-color: #f5f5f5;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.form-control:focus {
    background-color: #f5f5f5;
    box-shadow: none;
    border-color: #acb2b7;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d2d2d2;
    opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #d2d2d2;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #d2d2d2;
}

.form-control-icon {
    position: relative;
}

.form-control-icon i {
    position: absolute;
    top: 14px;
    right: 15px;
    font-size: 24px;
    color: #a5a5a5;
}

label {
    font-weight: normal;
    margin: 0 0 5px 0;
}

.Y-Center-outer {
    display: table;
    height: 100%;
}

.Y-Center-inner {
    display: table-cell;
    vertical-align: middle;
}

.Y-Center {
    position: absolute;
    top: 50%;

    -webkit-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.XY-Center {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;

    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.space {padding: 80px 0;}
.space-low {padding: 50px 0;}

.page-info {
    padding-bottom: 5px;
    border-bottom: 1px solid #f1f1f1;
}

.page-info h1 {
    font-size: 14px;
    line-height: 18px;
    margin: 12px 0 0 0;
}

.breadcrumb {
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    padding: 12px 0 3px;
    float: right;
}

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a {
    color: #7b7b7b;
}

.breadcrumb .breadcrumb-item a:hover {
    color: #c6d200;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f101";
    padding-right: 12px;
    padding-left: 12px;
    font-family: FontAwesome;
    font-size: 12px;
    color: #6c757d;
}

/* btn
================================================== */
.btn {
    border-radius: 2px;
    padding: 10px 40px;
    text-transform: uppercase;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn i {
    margin-right: 5px;
}

.btn-primary {
    background-color: #191919;
    border-color: #191919;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #191919;
    border-color: #191919;
    color: #c6d200;
}

.btn-primary:focus,
.btn-primary:active {
    background-color: #191919 !important;
    border-color: #191919 !important;
    box-shadow: none !important;
}

.btn-outline-primary {
    color: #333;
    border: 1px solid #63FE3C;
    font-size: 14px;
}

.btn-outline-primary:hover {
    background-color: #fff;
    border: 1px solid #63FE3C;
    color: #333;
}

.btn-outline-primary:focus {
    box-shadow: 6px 6px 0 rgb(233, 255, 228);
}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {font-family: 'PT Sans', sans-serif; font-weight: bold; color: #000;}

h1 {font-size: 26px; line-height: 32px;}
h2 {font-size: 22px; line-height: 28px;}
h3 {font-size: 18px; line-height: 28px;}
h4 {font-size: 18px; line-height: 28px;}
h5 {font-size: 16px; line-height: 24px;}
h6 {font-size: 14px; line-height: 20px;}

strong {font-weight: 700;}

a {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #191919;
    outline: 0;
    text-decoration: none;
}

p {
    color: #000;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 24px;
}

.heading {
    color: #191919;
    font-size: 28px;
    line-height: 32px;
    font-weight: normal;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
    padding: 6px 0;
    margin: 0 auto 30px;
    display: table;
    border-top: 2px solid #191919;
    border-bottom: 2px solid #191919;
}

.heading span {
    font-weight: bold;
}

.map {
    display: none;
}

.map iframe {
    width: 100%;
    border: 0;
}

/* header */
header {
    background-color: #191919;
}

header .header-top {
    border-bottom: 1px solid #6e6e6e;
    text-align: right;
}

header .header-top ul {
    text-align: right;
    display: inline-block;
}

header .header-top ul.lang {
    margin-left: 50px;
}

header .header-top ul.lang li {
    padding: 3px 10px;
}

header .header-top ul.lang li:last-of-type {
    border: 0;
}

header .header-top ul li {
    display: inline-block;
    padding: 3px 22px;
    margin: 20px 0;
}

header .header-top ul li a {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    font-size: 12px;
}

header .header-top ul li:last-child {
    border-left: 1px solid #6e6e6e;
    padding-right: 0;
}

header .header-top ul li a i {
    font-size: 14px;
    margin-right: 4px;
    color: #c6d200;
}

header .header-top ul li a:hover {
    color: #fff;
}

header .header-menu {
    padding: 15px 0;
}

header .header-menu .logo img {
    height: 80px;
}

header .header-menu nav ul {
    text-align: right;
}

header .header-menu nav ul li {
    display: inline-block;
    margin: 37px 13px 0px;
}

header .header-menu nav ul li.active a {
    color: #c6d200;
}

header .header-menu nav ul li a {
    display: block;
    color: #c5c5c5;
    letter-spacing: 1px;
}

header .header-menu nav ul li:last-of-type {
    margin-right: 0;
}

header .header-menu nav ul li a:hover {
    color: #fff;
}

header .header-menu nav ul li a.btn-search i {
    position: relative;
    top: 2px;
    font-size: 16px;
}

.home-services {
    background: url('../imgs/services-bgr.png') bottom center no-repeat;
    background-size: cover;
}

.home-services.services {
    background: none;
}

.home-services.services .btn {
    margin: 20px auto 50px;
}

.home-services h1 {
    font-size: 22px;
    line-height: 30px;
    padding: 0 150px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 30px 0;
    text-align: center;
}

.home-services h3 {
    position: relative;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
    border-bottom: 2px solid #191919;
    margin: 25px auto 0;
    padding: 0 0 10px;
    display: table;
    width: 85%;
    letter-spacing: .7px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.home-services h3:hover {
    border-color: #c6d200;    
}

.home-services h3:hover:before {
    border-color: #c6d200;
}

.home-services h3:before {
    content: "";
    width: 20px;
    height: 10px;
    background-color: #fff;
    border-left: 2px solid #191919;
    border-right: 2px solid #191919;
    display: block;
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px;
    z-index: 3;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.home-services h3.clr:before {
    background-color: #f7f7f7;
}

.home-services .btn {
    margin: 20px auto 0;
    display: table;
}

.home-why {
    position: relative;
    background-color: #f7f7f7;
}

.home-why ul.nav {    
    display: inherit;
}

.home-why ul.tab-nav {
    margin: 20px 0 40px 0;
    text-align: center;
}

.home-why ul.tab-nav li {
    display: inline-block;
    padding: 0 20px;
}

.home-why ul.tab-nav li a.active {
    border-bottom: 2px solid #191919;
    color: #929292;
}

.home-why ul.tab-nav li a:hover,
.home-why ul.tab-nav li a.active {
    color: #191919;
}

.home-why ul.tab-nav li a {
    letter-spacing: .7px;
    color: #929292;
    padding: 10px 0;
    display: block;
    border-bottom: 2px solid transparent;
}

.home-why .why-content {
    padding: 50px;
    height: 500px;
}

/*.home-why .why-content p:last-of-type {
    margin: 0;
}*/

.home-why .why-content ul li {
    margin: 0 0 10px 0;
    display: block;
}

.home-why .why-content ul li i {
    font-size: 18px;
    vertical-align: top;
    margin-right: 5px;
}


.home-activity {
    position: relative;
    background: url('../imgs/activity-02.jpg') top center no-repeat;
    padding-bottom: 520px;
    background-size: cover;
}

.home-activity .heading {
    color: #fff;
    border-color: #fff;
    margin-bottom: 65px;
}

.home-activity .activity-item {
    margin: 0 0 30px 0;
}

.home-activity .activity-item .item-icon {
    display: table-cell;
    width: 80px;
}

.home-activity .activity-item .item-icon img {
    width: 50px;
    vertical-align: top;
}

.home-activity .activity-item .item-desc {
    display: table-cell;
}

.home-activity .activity-item .item-desc h3 {
    color: #c6d200;
}

.home-activity .activity-item .item-desc p {
    color: #fff;
}


.home-faq {
    /*background-color: #262626;*/
    background: url('../imgs/faq-bgr.jpg') top center no-repeat;
    background-size: cover;
    /*background-attachment: fixed;*/
    position: relative;
}

.home-faq:after {
    content: "";
    background-color: rgba(14, 14, 14, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-faq .container {
    position: relative;
    z-index: 5;
}

.home-faq .card,
.home-faq .card .card-header {
    background-color: transparent;
    border: 0;
    padding: 0;
}

.home-faq .card .card-header button {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(97, 97, 97, 0.28);
    background-color: transparent;
    color: #9a9a9a;
    outline: none;
    text-align: left;
    padding: 10px 0;
    cursor: pointer;
    letter-spacing: .7px;
}

.home-faq .card .card-body {
    padding: 15px 0;
    color: #9a9a9a;
}

.home-faq .card .card-body {
    color: #cecece;
}

.home-faq .card .card-body a {
    color: #cecece;
}

.home-faq .card .card-body a:hover {
    text-decoration: underline;
}

.home-faq .faq-icon {
    font-size: 70px;
    line-height: 100px;
    text-align: center;
    color: #9a9a9a;
    margin: 0 0 40px 0;
}

.home-faq .faq-icon .large {
    font-size: 90px;
}

.home-faq .contact-info {
    padding: 0 100px;
}

.home-faq .contact-info .item-info {
    margin: 0 0 5px 0;
}

.home-faq .contact-info .item-icon {
    color: #c6d200;
    font-size: 36px;
    display: table-cell;
    padding-right: 30px;
    margin-bottom: 20px;
    vertical-align: top;
}

.home-faq .contact-info .item-desc {
    display: table-cell;
    vertical-align: middle;
    color: #cecece;
    letter-spacing: .7px;
}

.home-faq .contact-info .item-desc a {
    color: #cecece;
}

.home-faq .contact-info .item-desc a:hover {
    color: #fff;
}

.gallery h2 {
    margin: 0 0 15px 0;
}

.home-gallery {    
    background: url('../imgs/gallery-bgr.png') top center no-repeat;
    background-size: 100%;
}

.home-gallery .gallery-desc {
    text-align: center;
}

.home-gallery .btn {
    margin: 20px auto 0;
    display: table;
}

.home-gallery .pictures-count {
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    text-align: center;
    color: #c6d200;
}

.home-gallery .pictures-count span {
    display: block;
    font-size: 14px;
    line-height: 14px;
    font-weight: normal;
    color: #000;
}

.contacts .info-box {
    margin: 0 0 27px 0;
}

.contacts .info-box i {
    font-size: 36px;
}

.contacts .info-box h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
}

.contacts .info-box .info {
    margin: 0;
    line-height: 20px;
}

.contacts .info-box .info a {
    color: #000;
}

.contacts .contact-info {
    margin: 50px 0 0 0;
    padding: 0 40px 0 0;
}

.contacts .contact-form .btn {
    width: 100%;
}

.contacts .contact-form {
    margin: 50px 0 0 0;
}

.contacts iframe {
    width: 100%;
    height: 360px;
    display: block;
    border: 1px solid #ced4da;
    background-color: #f5f5f5;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.contacts .worktime .worktime-desc li span {
    font-style: italic;
}

.contacts .worktime .worktime-desc li {
    margin: 0 0 3px 0;
}


.blog {
    margin-top: -15px;
}

.blog .blog-item {
    margin: 15px 0 50px 0;
}

.blog .blog-item:hover .blog-title a {
    color: #c6d200;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    margin: 0 0 15px 0;
}

.blog .blog-item .blog-img .blog-meta:before {
    content: '';
    width: 0;
    height: 0;
    border-right: 85px solid transparent;
    border-bottom: 80px solid #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.blog .blog-item .blog-img .blog-meta .blog-date {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 26px;
    line-height: 26px;
    font-weight: bold;
    z-index: 3;
    color: #c6d200;
}

.blog .blog-item .blog-img .blog-meta .blog-date span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    color: #000;
}

.blog .blog-item .blog-title {
    font-weight: bold;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.blog .blog-item .blog-title a {
    color: #000;
}

.blog .blog-item .blog-title a:hover {
    color: #c6d200;
}

.blog .blog-item .blog-desc {
    color: #7b7b7b;
}

.blog-heading {
    font-size: 26px;
    line-height: 32px;
}

.blog-view .blog-img {
    position: relative;
    margin: 0 0 15px 0;
}

.blog-view .blog-social {
    margin: 0 0 7px 0;
    text-align: right;
}

.blog-view .blog-img .blog-meta:before {
    content: '';
    width: 0;
    height: 0;
    border-right: 85px solid transparent;
    border-bottom: 80px solid #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.blog-view .blog-meta .blog-date {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 26px;
    line-height: 26px;
    font-weight: bold;
    z-index: 3;
    color: #c6d200;
}

.blog-view .blog-img .blog-meta .blog-date span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    color: #000;
}

.blog-view .blog-category {
    margin: 0 0 8px 0;
}

.blog-view .blog-category a {
    color: #c6d200;
}

.blog-view .blog-category a:hover {
    color: #000;
}

aside {
    padding: 0 0 0 50px;
}

aside .widget {
    padding: 35px 0;
}

aside .widget:first-of-type {
    padding-top: 15px;
}

aside .widget-search {
    border-bottom: 1px solid #bbbbbb;
}

aside .widget-search form {
    background-color: #f5f5f5;
    position: relative;
    border-radius: 30px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

aside .widget-search form input[type=search] {
    background-color: transparent;
    border: 0;
    padding: 11px 50px 11px 20px;
    width: 100%;
}

aside .widget-search form button {
    top: 5px;
    right: 15px;
    position: absolute;
    background-color: transparent;
    border: 0;
    font-size: 24px;
    cursor: pointer;
    outline: none;
}

aside .widget-categories {
    padding-bottom: 0;
}

aside .widget-categories h3 {
    margin: 0 0 10px 0;
    line-height: 18px;
}

aside .widget-categories ul li {
    margin-bottom: 3px;
}

aside .widget-categories ul li a {
    color: #000;
}

aside .widget-categories ul li a:hover {
    color: #c6d200;
}

aside .widget-categories ul li a span {
    color: #adadad;
    font-style: italic;
}

aside .widget-publications h3 {
    margin: 0 0 10px 0;
}

aside .widget-publications ul li {
    margin: 0 0 20px 0;
}

aside .widget-publications ul li .pub-img {
    margin-right: 15px;
    float: left;
}

aside .widget-publications ul li .pub-img img {
    width: 80px;
}

aside .widget-publications ul li .pub-date {
    font-size: 12px;
    color: #adadad;
    margin: 0 0 5px 0;
}

aside .widget-publications ul li .pub-text a {
    font-size: 13px;
    line-height: 16px;
    display: block;
    color: #000;
}

aside .widget-publications ul li .pub-text a:hover {
    color: #c6d200;
}

.service .main-heading {
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 2px;
}

.service .service-img {
    margin: 0 0 30px 0;
}

.correctness {
    background-color: #f7f7f7;
}

.service h3 a,
.service p a {
    color: #c6d200;
}

.service h3 a:hover,
.service p a:hover {
    text-decoration: underline;
}

.service .sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    text-align: center;
}

.service .text-block {
    padding: 100px 0;
}

.service h2,
.service h3,
.service h4,
.service h5,
.service h6 {
    margin-bottom: 10px;
}

.service .call {
    background-color: #F7F7F7;
}

.service .call p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 26px;
    margin: 7px 0;
}

.service .call i {
    font-size: 50px;
    float: left;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 40px;
    border-right: 1px solid #d4d4d4;
    margin-right: 45px;
}

.service ul {
    margin: 0 0 20px 0;
}

.service ul li {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 24px;
}

.store {
    display: block;
    background-size: cover;
    height: 500px;
}

.store .store-text {
    width: 60%;
    margin: 0 auto;
    padding: 30px;
    background-color: #333;
    position: relative;
    top: 110px;
}

.store .store-text h3 {
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 2px;
    color: #fff;
    margin: 0 0 20px 0;
}

.store .store-text p {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    text-align: center;
    color: #fff;
}

.home-cover {
    position: absolute;
    top: 0;
    width: 30%;
    height: 100%;
    background-position: top center;
    background-size: cover;
}

.cover {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-position: top center;
    background-size: cover;
}

.cover-left {
    left: 0;
}

.cover-right {
    right: 0;
}

.cover-text-left {
    padding-right: 80px;
}

.cover-text-right {
    padding-left: 80px;
}


footer {
    background-color: #070707;
}

footer .copyright {
    color: #9a9a9a;
    padding: 15px 0;
    text-align: center;
}

footer .copyright a {
    color: #cecece;
}

footer .copyright a:hover {
    text-decoration: underline;
}

.page {
    min-height: 860px;
}

.dropdown-menu {
    border-radius: 2px;
    margin-top: 15px;
    padding: 15px 0;
}

.dropdown-menu .dropdown-item {
    color: #000 !important;
}

.dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: #c6d200 !important;
}

footer .footer-nav ul {
    text-align: center;
    margin: 25px auto 5px;
    display: table;
    width: 100%;
}

footer .footer-nav ul li {
    display: inline-block;
    margin: 0 15px;
}

footer .footer-nav ul li a {
    display: block;
    text-transform: uppercase;
    color: #c5c5c5;
    letter-spacing: 1px;
}

footer .footer-nav ul li a:hover {
    color: #fff;
}

footer .cookie-consent.show {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

footer .cookie-consent {
    padding: 10px 0;
    border-radius: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1021;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    background: #212327;
    transition: all .5s ease-out;
    color: #fff;
}

footer .cookie-consent .btn {
    padding: 3px 15px;
    font-size: 12px;
}

footer .cookie-consent a {
    margin: 0 15px;
    color: #fff;
    text-decoration: underline;
}

footer .cookie-consent a:hover {
    color: #c6d200;
}

.page-link {
    color: #000;
}

.page-link:hover {
    color: #c6d200;
    background-color: transparent;
}

.search {
    background-color: #191919;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1021;
    display: none;
}

.search.open {
    display: block;
}

.search .search-container {
    width: 100%;
    position: relative;
}

.search form input[type=search] {
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #5d5d5d;
    font-size: 24px;
    line-height: 30px;
    padding: 15px 0;
    color: #fff;
    font-weight: normal;
}

.search form button {
    position: absolute;
    top: 0;
    right: -20px;
    background-color: transparent;
    border: 0;
    outline: none;
    color: #5d5d5d;
    font-size: 70px;
    line-height: 30px;
    cursor: pointer;
    
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.search form button:hover {
    color: #fff;
}

.search .search-logo img {
    margin: 0 auto 50px;
    display: block;
    height: 80px;
}