@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* defolt */

body{
    /*font-family: 'Gilroy', Arial, sans-serif;*/
    font-family: "Oswald", sans-serif;
}
a{
     text-decoration:none;
}
p{
    font-size: 18px;
}
.row, .col-lg-6{
    position:relative;
    z-index:35;
}
.pageCircleBackground {
    height: 220px;
    width: 220px;
    position: fixed;
    background: #cb0606;
    top: 50%;
    left: 10px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 2;
        opacity: 0.4;
}
.pageCircleBackground2 {
    height: 220px;
    width: 220px;
    position: fixed;
    background: #cb0606;
    top: 10%;
    right: 10px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 2;
    opacity: 0.6;
}
.pageCircleBackground3 {
    height: 220px;
    width: 220px;
    position: fixed;
    background: #d13c0dcf;
    bottom: -110px;
    right: 30%;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 2;
}

.wordColor{
    color:#cb0606;
}

.sectionH2{
    margin: 0;
    font-size: 45px;
    font-weight: 600;
    color: #222;
    text-align: left;
    padding-bottom: 40px;
    color:#fff;
    position:relative;
    z-index:20;
}
.sectionH2P{
        color: #a7a7a7;
    font-size: 20px;
    margin-top: -30px;
}

section{
    padding-top: 120px;
    padding-bottom: 120px;
    position:relative;
    z-index:20;
    overflow:hidden;
}

.defoltBtn{
    background: #cb0606;
    padding: 15px 30px;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    transition:0.4s;
    border: 2px solid #cb0606;
    text-align:center;
}
.defoltBtn:hover{
    background: transparent;
    border: 2px solid #cb0606;
}
.defoltBtnOther{
background: #222;
    border-color: #cb06064f;
}
.defoltBtnOther:hover{
    
}

/* header */

header{
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    transition:0.4s;
    display:flex;
}
.headerButtonAction{
        padding: 5px 15px;
    margin-left: 60px;
}
.headerScroll .headerLogo{
    display: flex;
    
}

.headerLogo{
    display: none;
    align-items: center;
}
.headerLogo img{
    width: 100%;
    max-width: 180px;

}
.headerNav{
        display: flex;
    align-items: center;
}
.headerNav ul{
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0;
}
.headerNav li{
        margin: 0 15px;
}
.headerNav li a{
        font-size: 16px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}
.headerScroll{
    background:#17181d;
}
.headerMain{
        display: flex;
    justify-content: end;
}
.headerScroll .headerMain{
    justify-content: space-between;
}


/* home banner */

.homeBanner{
    min-height: 100vh;
    background: #000;
    padding: 120px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    align-items: start;
    z-index:30;
    
}
.homeBanner:after{
    content: "";
    background: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0.7;
}
.homeVideo {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}
.homeBBackEl1{
        position: absolute;
    top: 50%;
    right: -50px;
    width: 600px;
    height: 600px;
    border: 4px solid #3b3b3b;
    border-radius: 50%;
    transform: translateY(-50%);
}
.homeBBackEl2{
    position: absolute;
    top: 50%;
    right: -50px;
    width: 500px;
    height: 500px;
    border: 4px solid #3b3b3b;
    border-radius: 50%;
    transform: translateY(-50%);
}
.homeBContent{
    width: 100%;
    /*max-width: 600px;*/
    position: relative;
    z-index: 100;
    text-align:center;
}
.homeBCH1{
    color: #fff;
    font-size: 72px;
    margin-bottom: 20px;
    font-weight:600;
}
.homeBLinks{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px 30px;
    justify-content: center;
    max-width: 500px;
    margin: auto;
}
.homeBCOther{
    /*display: flex;*/
    color: #c3c3c3;
    font-size: 28px;
    margin-bottom: 30px;
}
.homeBVerc {
    top:0;
    color: #cfcfcf;
    writing-mode: vertical-rl;
    font-size: 16px;
    font-weight: 500;
    height: 100%;
    margin-top: -70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    animation: homeBannerScroll 3s infinite normal ease-in-out;
    user-select: none;
    z-index: 40;
}
@keyframes homeBannerScroll{
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(50px);
    }
}


/* section stages */

.homeAdv{
    /*background:#000;*/
}

.homeServBlocks {
    display: grid;
    grid-gap: 20px 60px;
    grid-template-columns: repeat(2, auto);
    position: relative;
    background: #0e0e0e;
    padding: 60px;
    border-radius: 50px;
    z-index:10;
}
.homeServBlock {
    display: flex;
    align-items: self-start;
    position: relative;
    padding-left: 60px;
    padding-right: 20px;
}
.homeSBIcon {
    background: #cb0606;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.4s;
    border: 2px solid #cb0606;
}
.homeSBIcon svg {
    transform: rotate(45deg);
}
.homeSBIcon svg path {
    transition: 0.4s;
}
.homeServBlock:hover .homeSBIcon {
    background: transparent;
    
}
.homeSBContent h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}
.homeSBContent p {
    color: #a7a7a7;
    font-size: 16px;
    line-height: 24px;
}

/* section stages */

.homeStages{
    /*background:#000;*/
}
.homeSAll{
position: relative;
    z-index: 30;
    display: grid;
    grid-gap: 60px 0;
}
.homeSBlock{
    grid-gap: 20px 60px;
    display: flex;
}

.homeSBLeft{
    width: 60%;
    background: #0e0e0e;
    border-radius: 15px;
    padding: 50px 30px;
    position: relative;
}
.homeSBLeft:after{
    content: "";
    background: url(/img-bb/linesBackground.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    bottom: 0;
    left: 0;
    opacity: 0.3;
    transform: rotate(180deg);
    z-index: 1;
}
.homeSBLeft h4{
        color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
    position:relative;
    z-index: 2;
}
.homeSBLeft p{
    color: #a7a7a7;
    position:relative;
    z-index: 2;
}
.homeSBRight{
    width: 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.homeSBRight img{
filter: invert(0.8);
    transform: scaleX(-1) rotate(50deg);
    height: 100%;
}

.homeSBCount{
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #cb0606;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 2;
}
.homeSBlockReverse{
    flex-direction: row-reverse;
}

.homeSBlockReverse .homeSBRight img{
    transform: scaleX(1) rotate(50deg);
}
.homeSBRightLastImg{
    filter: none !important;
    transform: scaleX(-1) !important;
    width: 240px;
    height: auto !important;

}
.homeSBRightLastImgReverse{
    transform: scaleX(1)!important;
}


/*.arrowTest{
    content: "";
    background: url(/img-bb/arrowBack.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    position: absolute;
    width: 400px;
    height: 350px;
    display: block;
    top: 50px;
    right: -100px;
    opacity: 0.1;
    z-index: 10;
    filter: invert(1);
}
.arrowTest2{
    content: "";
    background: url(/img-bb/arrowBack.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    position: absolute;
    width: 400px;
    height: 350px;
    display: block;
    bottom: 50px;
    left: -100px;
    opacity: 0.1;
    z-index: 10;
    filter: invert(1);
    transform: rotate(-180deg);
}*/

/* faq */

.faq-area .inner-descripe {
    margin-bottom: 30px;
}
.faq-area .inner-descripe h2{
    color:#fff;
}
.faq-area .inner-descripe p {
    color: #a7a7a7;
    line-height: 26px;
}
.single-my-account {
    border: 1px solid #c3c3c3;
    margin-bottom: 10px;
    border-radius: 15px;
    background: transparent;
}
.faq-area .single-my-account h3.panel-title {
    border-bottom: 0;
    text-transform: math-auto;
}
.single-my-account h3.panel-title {
    background-color: #ebebeb;
    border-bottom: 1px solid #ebebeb;
    color: #212121;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    position: relative;
    text-transform: uppercase;
    line-height: 2;
}
.faq-area h3.panel-title {
    background-color: transparent !important;
    border-bottom: 0 !important;
}
.faq-area .single-my-account h3.panel-title a[aria-expanded=true] {
    color: #cb0606;
}
.faq-area .single-my-account h3.panel-title a {
    font-size: 18px;
    color: #212121;
    display: block;
    padding: 16px 45px;
    position: relative;
    color: #000;
    padding-right: 65px;
    line-height:22px;
}
.faq-area .single-my-account h3.panel-title a {
    color: #fff;
}
.faq-area .single-my-account h3.panel-title a[aria-expanded=true] + span {
    color: #cb0606;
}
.faq-area .single-my-account h3.panel-title span {
    color: #fff;
    font-size: 18px;
    left: 20px;
    position: absolute;
    font-size: 16px;
    top: 16px;
}
.faq-area .single-my-account h3.panel-title a[aria-expanded=true]:before {
    transform: rotate(180deg);
    background-color: #cb0606;
}
.faq-area .single-my-account h3.panel-title a:before {
    content: "";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 16px;
}
.faq-area .single-my-account h3.panel-title a:before {
    background-color: #303234;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 20V4m-7 9l7 7l7-7'/%3E%3C/svg%3E");
    content: "" !important;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.6s;
}
.faq-area .single-my-account .panel-body {
    padding: 20px;
    line-height: 26px;
    color:#a7a7a7;
}
.faq-area .single-my-account .panel-body {
    padding: 20px 45px !important;
    font-size: 16px;
    line-height: 20px !important;
}
.faqRightImg {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* first form */

.firstForm{
    background: #0e0e0e;
    border-radius: 50px;
    padding: 60px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 49%);
}

.firstFTop{
    
}
.firstVideo{
    width:100%;
}


.firstFormOther{
    display:grid;
}
.firstFOTOP{
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-gap: 20px 30px;
    margin-bottom: 40px;
}
.firstFOTOP .firstFOTextSVG div{
    display: flex;
    align-items: center;
    grid-gap: 5px;
    margin-bottom: 5px;
    font-size: 16px;
    color: #a7a7a7;
}
.firstFOTOP .firstFOTextSVG span{
        font-size: 22px;
    padding-left: 38px;
}
.firstFOText{
    color: #fff;
    font-size: 20px;
}
.firstFOTextSVG svg{
    font-size: 26px;
    margin-right: 10px;
    opacity: 0.8;
}
.firstFOS{
        display: flex;
    grid-gap: 15px 20px;
    margin-bottom: 30px;
        align-items: center;
}
.firstFOSSoc{
        display: flex;
    grid-gap: 15px;
}
.firstFOSTitle{
        color: #a7a7a7;
    font-size: 18px;
}
.firstFOSSoc a{
    color: #fff;
    font-size: 34px;
}
.defoltBtnFirst{
    width: 100%;
}


.contactForm{
    background: #0e0e0e;
    padding: 60px;
    border-radius: 50px;
}
.site-footer__upper:after{
    background: url(/img-bb/formBack.webp) center no-repeat;
    background-size:cover!important;
}
.contactFormH4{
    color: #a7a7a7;
    margin-bottom: 40px;
    font-weight:300;
}

.firstFormLeft{
    width: 100%;
    padding: 0 90px;
}

.firstFLImg, .firstFLImgLast{
    position:relative;
}
.firstFLImg img{
    position:relative;
        width: calc(100% - 100px);
    border-radius: 50px;
}
.firstFLImg:after{
    content: "";
    background: url(/img-bb/stageArrow.png);
    position: absolute;
    width: 127px;
    height: 118px;
    display: block;
    top: 50px;
    right: -20px;
    filter: invert(0.5);
    z-index: 10;
    transform: scaleX(-1) rotate(80deg);
    background-repeat: no-repeat;
}
.firstFLImgLast img{
    position:relative;
        width: calc(100% - 100px);
    margin-left: auto;
    display: block;
    margin-top: -30px;
    border-radius: 50px;
}
.firstFLImgLast:after{
    content: "";
    background: url(/img-bb/stageArrow.png);
    position: absolute;
    width: 127px;
    height: 118px;
    display: block;
    bottom: 50px;
    left: -20px;
    filter: invert(0.5);
    z-index: 10;
    transform: scaleX(-1) rotate(-98deg);
    background-repeat: no-repeat;
}

.formContactLine{
        position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(20, 23, 41, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(64, 64, 69, 0) 100%);
    opacity: 0.3;
}
.footerTop{
        background: #17181d;
        padding: 45px 0;
        position:relative;
}
.footerBtn{
    margin-right: 15px!important;
    width: 250px!important;
    padding: 20px 20px!important;
}
.footerTLine{
    position: relative;
    width: 100%;
        display: flex;
    align-items: center;
}
.footerTLine svg{
        transform: rotate(-90deg);
    font-size: 40px;
}
.footerTLine:after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border: 1px dashed #fff;
    left: 15px;
}
.footerH4{
    color: #fff !important;
    margin-bottom: 30px !important;
    font-size: 24px;
}
.footerLogo{
    width: 100%;
    max-width: 200px;
    display: block;
}
.footerLogoDis{
        display: flex;
    align-items: center;
}
.footer-input-sub{
    width:100%;
}
.footer-h-span{

    margin-bottom: 60px;
}
.footer-input {
    width: 100%;
    height: 40px;
    color:#fff;
    padding: 0;
    font-size: 16px;
    float: left;
    border: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #8b8c9c;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background: transparent;
}
.footer-input::placeholder{
    color: #fff;
}
.footer-input-textarea{
    min-height: 90px;
}
.footer-input:focus-visible{
    border-bottom: 1px solid #f7c324;
    outline: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.rem {
    display: none !important;
}
.formBox submit{
    width: 100%;
    text-align: center;
}


/* brands */

.brands{
    
    display: grid;
}
.brandsCarouselContainer{
        display: grid;
}
.brandsCarousel {
       /* margin: 60px 0;*/
}
.brandsCarousel .owl-dots{
    display:none;
}
.brandsCarousel .owl-nav{
    justify-content: start;
    display: flex!important;
}
.brandsCarousel .owl-nav button{
    font-size: 69px!important;
    transition: all .4s ease ;
        display: flex !important;
    align-items: center;
}
.brandsCarousel .owl-next span{
        position: relative;
    top: 3px;
}
.brandsCarousel .owl-prev.disabled:hover{
    background: none;
    color: #222;
    opacity: 0.8;
}
.brandsCarousel .owl-next.disabled:hover{
    background: none;
    color: #222;
    opacity: 0.8;
}
.brandsCarousel .owl-next{
    opacity: 1;
    color: #fff !important;
    margin-left: 20px !important;
}
.brandsCarousel .owl-prev{
    opacity: 1;
        color: #fff !important;
}
.brandsCarousel .owl-next:hover{
        background: none!important;
    color: #fff!important;
    opacity: 0.5!important;
    font-size: 69px!important;
}
.brandsCarousel .owl-prev:hover{
        background: none!important;
    color: #fff!important;
    opacity: 0.5!important;
    font-size: 69px!important;
}
.owl-carousel .owl-stage{
    margin-top:60px;
}
/*.brandsCarousel .owl-item{
        background: #222;
    height: 350px;
    position:relative;
    z-index:60;
}*/

.brandsCarousel .brandsCarouselContent{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}





/**/

.autoBlock{
    
}
.autoBImg{
    
}
.autoBImg img{
    border-radius: 20px 20px 0 0;
}
.autoBContent{
        background: #0e0e0e;
    border-radius: 0 0 20px 20px;
    padding: 15px 20px;
}
.autoBCPrice{
    display: flex;
    grid-gap: 20px;
    align-items: center;
    justify-content: center;
}
.autoBImg img{
    height: 400px;
    object-fit: contain;
}
.autoBImg {
    position: relative;
    background: #0e0e0e;
    border-radius: 20px 20px 0 0;
}
.autoBContent p{
color: #fff;
    text-align: center;
    margin-top: 10px;
}
.autoBCPDes{
    color: #a7a7a7;
    font-size: 20px;
}
.autoBCPNew{
        color: #fff;
    font-weight: 600;
    font-size: 26px;
}
.autoBCMoreImg{
color: #fff;
    border: 1px solid #999999;
    padding: 6px 20px;
    display: block;
    width: max-content;
    margin: auto;
    font-size: 18px;
    border-radius: 10px;
    margin-top: 20px;
    align-items: center;
    display: flex;
    grid-gap: 10px;
        opacity: 0.8;
    transition:0.4s;
}
.autoBCMoreImg:hover{
    background:#2b2b2b;
}
.autoBCMoreImg svg{
        font-size: 24px;
}
/* end brands */

/* footer */

.site-footer {
    position: relative;
    overflow: hidden;
}
.footerTop {
    background: #17181d;
    padding: 45px 0;
    position: relative;
}
.formContactLine {
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(20, 23, 41, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(64, 64, 69, 0) 100%);
    opacity: 0.3;
}
.footerLogoDis {
    display: flex;
    align-items: center;
}

.footerH4 {
    color: #fff !important;
    margin-bottom: 30px !important;
    font-size: 24px;
}
.titlePoint {
    color: #f7c324;
}
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.footerTLine {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.footerTLine svg {
    transform: rotate(-90deg);
    font-size: 40px;
}
.footerTLine:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border: 1px dashed #fff;
    left: 15px;
}
.site-footer__lower {
    background: #17181d;
}
.site-footer__lower .inner-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 45px 0;
}
.footer-c-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.site-footer__copytext {
    margin: 0;
    color: #8B8C9C;
    font-size: 14px;
}
.site-footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.site-footer__social a:first-child {
    padding-left: 0;
}
.site-footer__social a {
    border-right: 1px solid #ffffff6e;
    padding: 0 20px;
}
.site-footer__social a {
    color: #8B8C9C;
    font-size: 18px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.site-footer .defoltBtn{
    width: 220px;
    padding: 15px 10px;
}

/* footer end */


/* preloader */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #17181d;
    z-index: 1000;
    display: flex; /*flex*/
    flex-wrap: wrap;
    align-content: normal;
    justify-content: center;
    padding: 120px;
}
.preloaderH {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    font-family: sans-serif;
    color: #fff;
    font-size: 150px;
    font-family: 'Gilroy-B', Arial, sans-serif;
    z-index: 1;
    animation: preloaderHMain 1s 1 1s normal linear;
    height: max-content;
    margin: auto;
    
}
.preloaderH span{
    opacity: 1;
}
.preloaderH span:nth-child(1) {
    animation: preloaderHL 1s 1 0.1s normal linear;
}
.preloaderH span:nth-child(2) {
    animation: preloaderHL 1s 1 0.2s normal linear;
    margin-right: 40px;
}
.preloaderH span:nth-child(3) {
    animation: preloaderHL 1s 1 0.3s normal linear;
}
.preloaderH span:nth-child(4) {
    animation: preloaderHL 1s 1 0.4s normal linear;
}
.preloaderH span:nth-child(5) {
    animation: preloaderHL 1s 1 0.5s normal linear;
}
.preloaderH span:nth-child(6) {
    animation: preloaderHL 1s 1 0.6s normal linear;
}
.preloaderH span:nth-child(7) {
    animation: preloaderHL 1s 1 0.7s normal linear;
}
.preloaderH span:nth-child(8) {
    animation: preloaderHL 1s 1 0.8s normal linear;
}
.preloaderH span:nth-child(9) {
    animation: preloaderHL 1s 1 0.9s normal linear;
}
.preloaderH span:nth-child(10) {
    animation: preloaderHL 1s 1 1s normal linear;
}


@keyframes preloaderHL{
    0%{
        opacity:0.2;
    }
    100%{
        opacity:1;
    }
}
@keyframes preloaderHMain{
    0%{
        text-shadow: 0px 0px 0px #ffffff;
    }
    50%{
        text-shadow: 0px 0px 20px #ffffff;
    }
    100%{
        text-shadow: 0px 0px 0px #ffffff;
    }
}


.afterLines{
    background: url(/img-bb/carsss.webp);
    /* background: url(/img-bb/333.jpg); */
    /* background: url(/img-bb/33.jpg); */
    /* background: url(/img-bb/WrapperBack.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* filter: invert(1); */
    opacity: 0.06;
}
.pageWrapper{
    background:#000;
}


.fixedLinkButtonDowm{
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #cb0606;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 50%;
    transition:0.4s;
    animation: fixedLinkButtonDowm 2s infinite normal linear;
}
.fixedLinkButtonDowm span{
    position: absolute;
    left: 0;
    top: -50px;
    width: max-content;
    background: #fff;
    padding: 4px 12px;
    color: #000;
    font-size: 18px;
    z-index: 102;
    border-radius: 10px;
}
.fixedLinkButtonDowm span:after{
    content: "";
    background: #fff;
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    transform: rotate(45deg);
    bottom: -7px;
    z-index: -1;
    left: 21px;
}
.fixedLinkButtonDowm:hover{
    bottom:30px;
    box-shadow: 0px 0px 20px 10px #6a0a0a!important;
}
.fixedLinkButtonDowm svg{
    font-size: 28px;
}

@keyframes fixedLinkButtonDowm{
    0%{
        box-shadow:0 0 0 #6a0a0a;
    }
    100%{
        box-shadow: 0px 0px 20px 10px #6a0a0a;
    }
}


/**/
.preloader{
    display:none;
}
.homeContentMain{
   
}
.homeCarouselMain{
width: 350px;
    float: left;
    margin-right: 120px;
}
.homeCarouselMain .owl-stage{
    margin:0!important;
}
.homeBanner{
    align-items:center;
}
.homeBCH1{
    margin-top:30px;
}
.homeCRight{
    width: 100%;
    padding-right: 120px;
}

.homeCRight .homeLOGOGOMain{
text-align: left;
    margin-bottom: 0;
    opacity: 0.7;
}
.homeCRight .homeLOGOGOMain .homeLOGOGO{
        width: 150px;
}
.homeCRight .homeBLinks{
        margin: 0;
    justify-content: start;
}

/**/

.homeCarouselMain {
    position:relative;
}
.homeCarouselMain:after{
    content:"";
    display: inline-block;
  width: 50px;
  height: 50px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m20.007 14.567l-.648-.393a3 3 0 0 1-1.257-1.41L15.68 7.153a1.6 1.6 0 0 0-.352-.51c-.64-.614-1.747-.354-2.285.351c-.992 1.303.341 2.536.06 3.621L5.358 6.262c-1.8-.972-3.357 1.61-1.566 2.802l4.583 2.55c-.883 1.152-3.12 6.742-.253 8.447c.164.097.344.162.526.218l.349.108c.9.28 2.602.634 3.769.532c1.214-.105 1.975.542 2.913 1.082M9.362 4.965c.397.395 2.123.281 2.76.202m-2.76-.202c-.397-.396-.408-2.328-.329-2.963m.329 2.963c1.021-1.769 5.08-4.59 9.109-1.769C20.418 4.56 20.692 5.418 21 5.994' color='%23000'/%3E%3C/svg%3E");
background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    position: absolute;
    color: #fff;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
}
.homeCarouselMain .owl-dots{
    display:none;
}
.homeCarouselMain .owl-nav{
    justify-content: start;
    display: none!important;
}
.homeCarouselMain .owl-nav button{
    font-size: 69px!important;
    transition: all .4s ease ;
        display: flex !important;
    align-items: center;
}
.homeCarouselMain .owl-next span{
        position: relative;
    top: 3px;
}
.homeCarouselMain .owl-prev.disabled:hover{
    background: none;
    color: #222;
    opacity: 0.8;
}
.homeCarouselMain .owl-next.disabled:hover{
    background: none;
    color: #222;
    opacity: 0.8;
}
.homeCarouselMain .owl-next{
    opacity: 1;
    color: #fff !important;
    margin-left: 20px !important;
}
.homeCarouselMain .owl-prev{
    opacity: 1;
        color: #fff !important;
}
.homeCarouselMain .owl-next:hover{
        background: none!important;
    color: #fff!important;
    opacity: 0.5!important;
    font-size: 69px!important;
}
.homeCarouselMain .owl-prev:hover{
        background: none!important;
    color: #fff!important;
    opacity: 0.5!important;
    font-size: 69px!important;
}
.owl-carousel .owl-stage{
    margin-top:60px;
}

.homeCarouselMain .brandsCarouselContent{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.homeCarouselMain .autoBlock{
    width:100%;
}


.brandsCarousel .owl-nav{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 0;
}
.brandsCarousel .owl-prev{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.brandsCarousel .owl-next{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.autoBImg{
    position:relative;
}
.homeSliderFirstAutoTop{
        position: absolute;
    top: 0;
    left: 0;
    background: #cb0606;
    padding: 6px 12px;
    color: #fff;
    font-size: 16px;
    border-radius: 15px 0 15px 0;
}

/**/

/*Map Social Section*/
/*---------------------------------------------------*/
.archx-map-section {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1490196078);
}

.archx-map-wrap {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.archx-map-info {
    box-shadow: 0 0 25px #00000094;
    top: 46%;
    left: 60px;
    position: absolute;
    background-color: #fff;
    padding: 50px 40px 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-bottom: 5px solid #cb0606;
    width: 100%;
    max-width: 320px;
}

.archx-map-info-item {
  margin-bottom: 30px;
}
.archx-map-contact-info h2{
        margin-bottom: 20px;
}
/*.archx-map-info-item .info-title {
  margin-bottom: 10px;
}*/
.archx-map-info-item .info-title span {
  font-size: 24px;
  margin-right: 15px;
  color: #cb0606;
}
.archx-map-info-item .info-title h3 {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.archx-map-info-item .info-text {
  color: #000000;
  max-width: 250px;
}
.archx-map-info-item .info-text li i {
  margin-right: 15px;
  color: #cb0606;
}

.archx-social-content .archx-social-item {
  width: 16.667%;
}
.archx-social-content .archx-social-item a {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #D9D9D9;
}
.archx-social-content .archx-social-item a:hover i {
  color: #cb0606;
}
.archx-social-content .archx-social-item i {
  color: #000000;
  margin-right: 8px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}

.archx-map-info-item .info-text p{
    color:#222;
    margin:0;
}

/* //////////////////// media */
@media (max-width: 1199px) {
    .preloaderH {
        font-size: 90px;
    }
    .homeBCH1{
        font-size:48px;
    }
    .homeBCOther{
        font-size:22px;
    }
    .homeServBlocks {
        padding: 30px;
        grid-gap: 20px 30px;
    }
    .contactForm{
        padding: 30px;
    }
}
@media (max-width: 1024px) {
    
    .owl-carousel .owl-stage{
        margin-left:0;
    }
    .brandsCarousel .brandsCarouselOther{
        display:none;
    }
}
.homeLOGOGOMain{
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}
.homeLOGOGO{
    width:250px;
}
@media (max-width: 991px) {
    
    .homeCRight{
        padding: 0;
    }
    .homeCarouselMain {
            margin-right: 30px;
    width: 300px;
    }
    
        .faq-area .single-my-account h3.panel-title a:before {
        right: 5px !important;
                top: 50% !important;
        transform: translateY(-50%) !important;
    }
        .faq-area .single-my-account .panel-body {
        padding: 10px !important;
        padding-left: 25px !important;
    }
    .firstFormLeft{
                padding: 0 30px;
        width: 100%;
        max-width: 400px;
        margin: auto;
        margin-bottom: 60px;
    }
    .sectionH2{
            font-size: 32px;
    }
    .sectionH2P{
            font-size: 18px;
    }
    .footerLogo {
        display: none;
    }
    .headerNav ul{
        display:none;
    }
    .homeLOGOGO{
        width:150px;
    }
    .homeLOGOGOMain{
        margin-bottom: 30px;
    }
    .faqRightImg{
       margin-top: 60px; 
    }
}

@media (max-width: 767px) {
    
    .homeCarouselMain{
        float: initial;
        width: 300px;
        margin: auto;
        margin-top: 60px;
    }
    .homeBVerc{
        align-items: baseline;
        padding-right: 70px;
    }
    .homeCarouselMain:after{
                bottom: initial;
        top: 50%;
        right: -80px;
        left: initial;
    }
    .homeCRight{
        
    }
    
    .homeSBLeft{
            padding: 30px 20px;
    }
    .homeSBLeft p{
        font-size:17px;
    }
    .homeSBLeft h4{
        font-size:24px;
    }
    .faq-area .single-my-account h3.panel-title a {
        padding: 12px 38px;
        font-size: 14px;
    }
    .homeSBlock{
        display:grid;
    }
    .homeSBLeft{
        width:100%;
    }
    .homeSBRight{
                width: 100%;
        margin-top: 20px;
    }
    section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .homeServBlocks, .homeTBlocks {
        grid-template-columns: repeat(1, auto);
    }
    .homeSBIcon svg {
        transform: rotate(135deg);
    }
        .homeServBlock {
        padding-left: 0;
        display: grid;
        align-content: baseline;
    }
    .homeSBIcon {
        position: relative;
        margin-bottom: 10px;
    }
}
@media (max-width: 575px) {
    .archx-map-info{
        top: 50%;
        left: 10px;
    }
    .archx-map-info{
        display:none;
    }
    .preloaderH span:nth-child(2){
        margin-right:20px;
    }
        .preloaderH {
        font-size: 50px;
    }
    .homeBContent{
        margin-top:70px;
    }
    .faq-area .single-my-account h3.panel-title a {
        font-size: 13px;
    }
    .site-footer__lower .inner-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .homeServBlocks, .contactForm{
        padding: 20px !important;
    }
    .footer-c-left p {
        margin: 20px 0;
    }
    .homeLOGOGO{
        width:130px;
    }
    .homeLOGOGOMain{
        margin-bottom: 20px;
    }
    .homeBCH1{
        font-size:36px;
    }
    .homeBCOther{
        font-size:18px;
    }
    
}
@media (max-width: 480px) {
    .firstFOTOP{
        grid-template-columns: repeat(1, auto);
    }
    .headerLogo img{
            max-width: 140px;
    }
    .headerButtonAction{
        margin-left:10px;
    }
}



