:root {
    --primary: #fb2f29;
    --secondary: #FFB500;
    --neutral: #F4F5F9;
}

body {
    font-family: 'Rubik', sans-serif;
}

a {
    color: var(--primary);
    font-weight: 700;
    transition: 0.3s ease all;
}

a:hover {
    color: var(--primary);
    text-decoration: none;
    opacity: .8;
}

.navbar-custom-light a {
    color: var(--secondary);
}

.navbar-brand img{
  height: 91px;
  width: 79px;
}

.btn {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 2px;
    transition: 0.3s ease all;
}

.btn:hover {
    opacity: 1;
}

.btn-custom-light {
    background-color: #fff;
    color: var(--primary);
}

.btn-custom-light:hover {
    color: var(--secondary);
}

.btn-custom-primary {
    background: linear-gradient(45deg, #000000 0%, #000000 100%);
    color: #fff;
    border-color: transparent;
    transition: 0.3s ease all;
}

.btn-custom-primary:hover {
    background: linear-gradient(-45deg, #f52f29 0%, #fb2f29 100%);
    color: var(--neutral);
    border-color: transparent;
}

.btn-custom-primary-line {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-custom-primary-line:hover {
    color: var(--secondary);
}

  .btn-custom-primary-new-site {
    position: fixed; 
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    font-size: 20px;
    text-align: center;
    background-color:#fb2f29;  
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none; 
    cursor: pointer;
    width:30%;
    box-shadow: 0 12px 16px 12px rgba(0,0,0,0.24), 0 17px 50px 17px rgba(0,0,0,0.19);
  }

@media only screen and (max-width: 768px) {
    .btn-custom-primary-new-site {
        width: 95%;
    }
}

  .btn-custom-primary-new-site:hover {
    background-color: #ff4646;
  }
  

.btn-custom-secondary-line {
    background-color: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn-custom-secondary-line:hover {
    background-color: var(--secondary);
    color: #fff;
}

.carousel-hero .header-description {
    display: flex;
    align-items: flex-start;
    height: 100vh;
    z-index: 10;
    color: #fff;
    text-align: left;
    width: 40%;
    flex-direction: column;
    justify-content: center;
    min-height: 640px;
    padding-bottom: 144px;
}

.header-description__inner {}

.carousel-hero .header-description h1 {
    font-weight: 500;
    font-size: 20px;
    line-height: 33px;
    color: #fff;
    margin: 0 auto;
    margin-bottom: 24px;
}

.carousel-hero .header-description h1 span {
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.6;
    font-size: 36px;
}

.carousel-indicators {
    bottom: 270px;
}


.arrow-left-custom:before {
    content: url(../img/icon__arrow-left.svg);
    position: absolute;
    left: 40%;
    bottom: -45px;
    z-index: 1000;
}

.arrow-right-custom:before {
    content: url(../img/icon__arrow-right.svg);
    position: absolute;
    right: 40%;
    bottom: -45px;
    z-index: 1000;
}

.arrow-left-custom-wh:before {
    content: url(../img/icon__arrow-left__white.svg);
    position: absolute;
    top: 50%;
    left: -32px;
    z-index: 1000;
}

.arrow-right-custom-wh:before {
    content: url(../img/icon__arrow-right__white.svg);
    position: absolute;
    top: 50%;
    right: -32px;
    z-index: 1000;
}

.three-carousel__block {
    margin: 0 12px;
}

.three-carousel__block img {
    margin-bottom: 16px;
}

.three-carousel__block h4 {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #2d2d2d;
    text-transform: uppercase;
}

.responsive-three .slick-dots li button:before {
    font-size: 10px;
    color: black;
    opacity: .1;
}

.responsive-three .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary);
}

.responsive-three .slick-dots {
    bottom: -40px;
}

@media (max-width:479px) {
    .arrow-left-custom:before {
        left: 30%;
    }
    .arrow-right-custom:before {
        right: 30%;
    }
}


@media (max-width:1440px) {
    .carousel-hero .header-description {
        width: 60%;
    }
}

@media (max-width:1280px) {
    .carousel-hero .header-description {
        width: 100%;
        text-align: center;
    }
    .carousel-hero .header-description .btn {
        margin: 0 auto;
    }
}

@media (max-width:768px) {
    .responsive .carousel-indicators {
        bottom: 370px;
    }
    .arrow-left-custom-wh:before {
        left: 0;
    }
    .arrow-right-custom-wh:before {
        right: 0;
    }
    .carousel-indicators {
        bottom: 320px;
    }
}

@media (max-width:480px) {
    .carousel-hero .header-description {
        min-height: 770px;
        padding-bottom: 240px;
    }
}

.navbar-brand__wrap {
    display: flex;
}

.navbar-brand__wrap p {
    margin-top: 12px;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
}

.navbar-brand__wrap p span {
    color: var(--neutral);
}

.navbar-custom {
    padding-top: 24px;
}

.navbar-custom__wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto
}

.navbar-lang {
    align-items: center;
    margin-bottom: 24px;
}

.navbar-custom .navbar-lang .nav-link {
    color: #fff;
    font-size: 11px;
    margin: 0 8px;
    transition: 0.3s ease all;
    border-radius: 50%;
    width: 29px;
    height: 29px;
    line-height: 1.3;
    text-align: center;
    padding-right: .4rem;
    padding-left: .4rem;
}

.navbar-lang .nav-link.active {
    color: #81A6E5;
    background-color: #fff;
}

.navbar-lang .btn {
    margin-left: 12px;
}

.navbar-nav-main {
    align-items: center;
}

.navbar-nav-main .nav-link {
    font-size: 11px;
    letter-spacing: 0.04em;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    line-height: 1.5;
    white-space: nowrap;
    padding-right: 4px;
    
}

.dropdown-toggle::after {
    content: url(../img/icon__arrow-down.svg);
    border: 0;
    margin-left: 0;
    margin-right: 8px;
    vertical-align: 0.1rem;
}

.navbar-custom .navbar-nav.navbar-nav-main .dropdown .nav-link {
    padding-right: 4px;
}

.navbar-nav-main .dropdown-menu {
    background-clip: inherit;
    border: 0;
    box-shadow: 0 26px 18px -10px rgb(0 0 0 / 10%);
}

.custom-toggler .navbar-toggler-icon {
    background-image: url(../img/icon-nav.svg);
}

.navbar-custom li {
    /*    display: flex;*/
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    align-items: center;
}

#mainNav {
    background-color: transparent;
    transition: 0.4s ease-in-out all;
}

#mainNav.navbar-shrink {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: linear-gradient(-125deg, rgba(251, 47, 41, 0.99) 0%, #000);
}

#mainNav.navbar-shrink .navbar-lang {
    margin-bottom: 8px;
}

#mainNav.navbar-shrink .navbar-brand img {
    width: 79px;
}

.navbar-custom .navbar-nav.navbar-nav-main .nav-link {
    display: inline-block;
}

.product-block__carousel {
    padding: 0 12px;
    text-align: center;
}

.product-block__carousel h5 {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #fff;
}

.product-block__carousel img {
    margin-bottom: 12px;
}


/*

.product-block__carousel img::before {
    content: url(../img/brand-lines.svg);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.4s ease all;
}
*/

.brand-lines {
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.4s ease all;
}

.product-carousel {
    background: linear-gradient(rgba(251, 47, 41, 0.41) 0%, #fb2f29 45.13%, #fb2f29 100%);
    padding: 24px 0 16px 0;
    position: absolute;
    width: 100%;
    bottom: 0;
}


}
.product-block__carousel {
    transition: 0.4s ease all;
}
.product-block__carousel img {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 12px;
}
.product-block__carousel:hover {
    opacity: .8;
}
.product-block__carousel:hover:before {
    left: 120px;
    bottom: -25px;
}
.carousel-control-next {
    right: -112px;
}
.carousel-control-prev {
    left: -112px;
}
@media (max-width:480px) {
    .product-block__carousel {
        display: block;
        text-align: center;
    }

    .product-block__carousel img {
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .product-block__carousel:before {
        left: 28px;
        bottom: -133px;
    }

    .product-block__carousel:hover:before {
        left: 25px;
        bottom: -130px;
    }
}
section h3,
.page-ext h1 {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 32px;
}
section h3:after,
.page-ext h1:after {
    content: url(../img/brand-lines__title.svg);
    position: relative;
    margin-left: 12px;
}
.page-ext h1 {
    margin-bottom: 48px;
}
.section-light {
    padding: 80px 0;
}
.section-neutral__inner {
    background-color: var(--neutral);
    padding: 64px;
}
.features {
    display: flex;
}
.features__block {
    text-align: center;
    margin-bottom: 24px;
    margin-right: 12px;
    margin-left: 12px;
    max-width: 200px;
}
.features__block img {
    margin-bottom: 16px;
}
.features__block h5 {
    font-weight: bold;
    font-size: 17px;
    letter-spacing: 0.05em;
    line-height: 21px;
    color: var(--primary);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 45px;
}
.features__block p {
    font-size: 14px;
}
@media (max-width:992px) {
    header h1 {
        max-width: 100%;
    }

    .header-description {
        text-align: center;
    }

    #mainNav {
        padding-top: 1rem;
        padding-bottom: 1rem;
        background: linear-gradient( -125deg, rgb(251 47 41 / 99%) 0%, rgb(251 47 41 / 99%));
    }

    #mainNav.navbar-shrink .navbar-lang,
    #mainNav .navbar-lang {
        margin-bottom: 16px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    #mainNav.navbar-shrink .navbar-lang li,
    #mainNav .navbar-lang li {
        margin-bottom: 8px;
    }

    .navbar-nav-main {
        margin-bottom: 16px;
    }

    #mainNav.navbar-shrink .navbar-brand img,
    #mainNav .navbar-brand img {
        width: 80px;
        height: 91px;
    }

    #mainNav.navbar-shrink {
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

    .navbar-custom__wrap {
        flex-direction: column-reverse;
        align-items: center;
    }

    .navbar-nav-main .nav-item {
        padding: 12px;
        text-align: center;
    }

    .features {
        flex-direction: column;
    }

    .features__block {
        text-align: left;
        margin-bottom: 24px;
        margin-right: 0;
        margin-left: 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }

    .features__block img {
        margin: 0 auto;
        max-width: 200px;
        margin-bottom: 16px;
    }

    .features__block h5 {
        font-size: 15px;
        height: auto;
    }

    .features__block p {
        text-align: center;
    }
}

@media (max-width:479px) {
    #mainNav.navbar-shrink .navbar-brand img,
    #mainNav .navbar-brand img {
    width: 15vw;
    height: auto;
    max-width: 100%; 
    }
}
    
@media (min-width:768px) and (max-width:992px) {
    .features__block h5 {
        align-items: flex-start;
        text-align: left;
        justify-content: flex-start;
    }

    .features__block {
        flex-direction: row;
    }

    .features__block img {
        margin: 0;
        margin-right: 12px;
    }

    .features__block p {
        text-align: left;
    }
}
.project-block img {
    margin-bottom: 24px;
}
.img-shadow {
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.16);
}
.project-block h4 {
    font-family: Rubik;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #2d2d2d;
    text-transform: uppercase;
}
.project-block p {
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #202020;
}
.section-primary .section-inner {
    background-color: var(--primary);
    margin: -2px 0;
    color: #fff;
    padding: 64px 0;
}
.section-primary h3 {
    color: #fff;
}
a.news-title {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 24px;
}
.section-primary.news .section-inner {
    padding-bottom: 32px;
}
.news-block {
    margin-bottom: 40px;
}
.news-block img {
    margin-bottom: 24px;
}
.news-block h2 {
    font-size: 20px;
}
.date {
    margin-bottom: 8px;
}
footer {
    padding: 40px 0;
}
footer p {
    margin-bottom: 4px;
}
a.dev {
    font-weight: normal;
    color: #212529;
}
a.dev span {
    font-weight: bold;
}
a.dev:hover {
    color: var(--primary);
}
.page-ext footer,
.page-news-ext footer,
.about footer {
    border-top: 1px solid rgb(9 58 154 / 20%);
}
.page-ext header {
    height: 150px;
    min-height: 150px;
}
@media (max-width:990px) {
    .page-ext header {
        height: 111px;
        min-height: 111px;
    }
}
.page-ext #mainNav {
    background: linear-gradient(-125deg, rgba(251, 47, 41, 0.99) 0%, #000);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 24px;
    margin-bottom: 72px;
}
.card-custom h2 {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #2d2d2d;
    text-transform: uppercase;
    transition: 0.3s ease all;
}
.card-custom:hover h2 {
    color: var(--primary);
}
.card-custom {
    margin-bottom: 38px;
}
.card-custom img {
    margin-bottom: 16px;
}
.header-ext {
    text-align: center;
    display: flex;
    align-items: center;
    height: 60vh;
    justify-content: center;
    padding-top: 80px;
}
.header-ext-descr h1 {
    color: #fff;
    font-weight: 500;
    font-size: 28px;
    line-height: 32px;
}
.header-ext-descr p.subtitle {
    color: #fff;
    font-weight: 300;
    font-size: 28px;
    line-height: 32px;
}
.page-prod-ext header {
    margin-bottom: 56px;
}
.page-prod-ext h3 {
    margin-top: 40px;
}
.gallery-block {
    margin-bottom: 32px;
}
.section-primary.cta .section-inner {
    padding: 24px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
}
.cta-disr {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}
@media (max-width:990px) {
    .cta-disr {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-disr h4 {
        margin-bottom: 24px;
    }

    .cta-inner {
        align-items: flex-start;
    }
}
.page-ext .news-block {
    display: flex;
    padding-bottom: 32px;
    border-bottom: 1px solid rgb(255 181 0 / 20%);
}
.page-ext .news-block .news-block__discr {
    margin-left: 32px;
}
.page-ext .news-block .news-block__discr a {
    color: var(--primary);
    margin-bottom: 12px;
}
.page-ext .news-block .news-block__discr h2 {
    font-size: 22px;
}
.section-light .news-block a {
    color: var(--primary);
}
.content img {
    max-width: 100%;
    height: auto;
    box-shadow: 0px 12px 24px rgb(0 0 0 / 16%);
}
.content ul {
    list-style: none;
}
.content ul li {
    list-style-image: url(../img/list.svg);
    padding-left: 8px;
    margin-bottom: 8px;
}
.content ul li:before {
    content: '';
}
.content h2 {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 32px;
}
.content h2:after,
.content h3:after {
    content: url(../img/brand-lines__title.svg);
    position: relative;
    margin-left: 12px;
}
.content h3 {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 32px;
}
.content h4 {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.content h5 {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.content ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding: 0;
}
.content ol li {
    counter-increment: my-awesome-counter;
    display: flex;
    padding-left: 16px;
}
.content ol li::before {
    content: counter(my-awesome-counter) ". ";
    color: var(--primary);
    font-weight: bold;
    padding-right: 20px;
}
.contact h2 {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 24px;
}
.contact h4 {
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.contact-block {
    display: flex;
    align-items: flex-start;
}
.contact-block img {
    margin-right: 16px;
}
.contact-card {
    padding: 24px;
    background-color: #fff;
    box-shadow: 0px 4px 27px rgba(0, 26, 77, 0.12);
    margin-bottom: 32px;
}
.contact-card h4 {
    font-weight: 500;
    font-size: 15px;
    color: #2D2D2D;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.contact-card p {
    font-weight: 300;
    font-size: 14px;
    color: #2D2D2D;
}
.representative-block {
    margin-bottom: 32px;
}
.representative h4 {
    font-weight: bold;
    font-size: 18px;
    color: #fb2f29;
    margin-bottom: 24px;
}
.representative-block__inner {
    background: #fff;
    box-shadow: 0px 4px 27px rgba(0, 26, 77, 0.12);
    padding: 24px;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.representative-block__inner p {
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 8px;
}
.representative-block__inner p.position {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}
.representative-block__inner h5 {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
@media (max-width:990px) {
    .page-ext .news-block {
        flex-direction: column;
    }

    .page-ext .news-block .news-block__discr {
        margin-left: 0;
    }
}
@media (max-width:768px) {
    .representative-block__inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .product-block__carousel {
        padding: 0 24px;
    }
}
.single-item .arrow-left-custom:before {
    left: 12px;
    top: 30%;
    bottom: auto;
    z-index: 100;
    background-color: rgb(255 255 255 / 60%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 7px 11px;
    transition: 0.3s ease all;
}
.single-item .arrow-right-custom:before {
    right: 12px;
    top: 29%;
    bottom: auto;
    background-color: rgb(255 255 255 / 60%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 8px 12px;
    transition: 0.3s ease all;
}
.single-item .arrow-right-custom:hover:before,
.single-item .arrow-left-custom:hover:before {
    background-color: rgb(255 255 255 / 100%);
}
span.arrow {
    cursor: pointer;
}

@media (min-width: 992px){
    .section-light .news-block a {
        flex-shrink: 0;
        width: 60%;
    }
}
@media (min-width: 1200px) {
    .navbar-nav .dropdown:focus .dropdown-menu,
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        min-width: 300px;
        white-space: break-spaces;
    }
}
.navbar-custom li {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.navbar-custom .navbar-nav .nav-link {
    display: inline-block;
}
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--base);
}
.no-shadow {
    box-shadow: none!important;
}
.page-link {
    color: var(--primary);
}
.page-link:hover {
    color: var(--secondary);
    background-color: #ffffff;
}
.table-price thead {
    background-color: #F3F5FB;
    color: #fb2f29;
    font-size: 14px;
}
.table-price thead th {
    vertical-align: middle;
    text-align: center;
}
.price h2 {
    font-weight: bold;
    font-size: 14px;
    line-height: 33px;
    text-align: center;
    color: #fb2f29;
}
.price h2:after {
    content: "";
}
.table-price tbody td {
    vertical-align: middle;
}
.project-page h4 {
    color: var(--primary);
    font-size: 16px;
    margin-top: 32px;
    margin-bottom: 18px;
}
.project-page h5 {
    font-size: 16px;
    text-transform: inherit;
    margin-top: 24px;
    margin-bottom: 16px;
}

.breadcrumbs{
    margin: 24px 0;
    font-size: 14px;
}

.breadcrumbs ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    border-radius: .25rem;
    justify-content: center;
}

.breadcrumb-item+.breadcrumb-item::before{
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: "/";
}
.breadcrumbs ul li {
    list-style-image: none;
}
.main-phone {
    color: white;
    margin-bottom: 8px;
    font-size: 22px;
}
.main-phone.footer-phone {
    color: black;
}