@charset "utf-8";

/*======================================
 [ -Main Stylesheet-
  Theme: Zonar
  Version: 1.0
  Last change: 09/09/2020 ]
++ Fonts ++
++ General Style ++
++ Loader ++
++ Cursor ++
++ Typography ++
++ Main ++
++ Header ++
++ Share ++
++ Button ++
++ Navigation ++
++ Hero ++
++ Section ++
++ Portfolio ++
++ Contacts ++
++ Blog ++
++ error ++
++ Responsive ++
/*-------------Fonts---------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&family=Oswald:wght@500;700&family=Roboto:wght@500&display=swap');

/*-------------General Style---------------------------------------*/

html {
    overflow-x: hidden !important;
    overflow-y: scroll;
    height: 100%;
}

body {}

@-o-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}


/* ---------Page preload--------------------------------------*/

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    -webkit-transform: translate3d(0, 0, 0);
}

.loader-anim,
.loader-anim2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: #313131;
}

.loader-anim2 {
    z-index: 1
}

.loading-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 150px;
    height: 90px;
    margin: -45px 0 0 -75px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.loading-text {
    font-size: 48px;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    display: block;
    line-height: 50px;
    position: relative;
    z-index: 2;
}

.loading-text strong {
    display: block;
}

.loader_count {
    position: absolute;
    right: -40px;
    top: -150px;
    font-size: 198px;
    z-index: 1;
}

.page-load {
    position: fixed;
    top: 80px;
    left: 80px;
    right: 0;
    bottom: 0;
    z-index: 119;
    -webkit-transform: translate3d(0, 0, 0);
    display: none;
}

.pl-row {
    float: left;
    width: 100%;
    overflow: hidden;
    height: 25%;
    position: relative;
    z-index: 1;
}

.pl-row span {
    position: absolute;
    left: 0;
    right: 100%;
    top: 0;
    bottom: 0;
}

.pl-row span.pl-row-anim {
    z-index: 2;
    background: #292929;
}

.pl-row span.pl-row-anim2 {
    z-index: 1;
}

.pl-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border-radius: 100%;
    background: #292929;
    box-shadow: 0px 0px 0px 12px rgba(255, 255, 255, 0.05);
    transition: all 500ms cubic-bezier(.19, 1, .22, 1) 0ms;
    transform: scale(0);
}

.pl-spinner.act-loader {
    transform: scale(1.0);
}

.pl-spinner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: rotate 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
    box-sizing: border-box;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* ------Cursor------------------------------------------------------------ */

.element {
    position: fixed;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 10000;
}

.element-item {
    position: fixed;
    transform: translate(-50%, -50%) scale(1.0);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.element-item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    background: #fff;
    border-radius: 100%;
    z-index: -1;
    transform: scale(1.0);
    transition: all 1000ms cubic-bezier(.19, 1, .22, 1) 0ms;
}

.element-item.white_blur {
    border-color: rgba(51, 51, 51, 0.5);
}

.element-item.elem_hover:before {
    opacity: 0.2;
    transform: scale(6.5);
}

.element-item.elem_hover {
    border-color: transparent;
}

.element-item:after {
    font-family: "FontAwesome";
    content: "";
    position: absolute;
    font-size: 7px;
    left: 50%;
    color: #fff;
    top: 50%;
    width: 14px;
    height: 14px;
    font-weight: 100;
    line-height: 14px;
    margin: -7px 0 0 -7px;
    opacity: 0;
    transition: all 1000ms cubic-bezier(.19, 1, .22, 1) 0ms;
    transform: scale(0);
}

.element-item.slider_hover:before,
.element-item.close-icon:before {
    transform: scale(8.8);
}

.element-item.slider_hover {
    border-color: transparent;
    width: 60px;
    height: 60px;
}

.element-item.slider_hover:after {
    transform: scale(1.0);
    opacity: 1;
    content: "Swipe";
    font-family: 'Mukta Vaani', sans-serif;
    text-transform: uppercase;
    font-size: 10px !important;
    letter-spacing: 2px;
    text-indent: -10px
}

.element-item.slider_linknext:after {
    content: "Next";
    text-indent: -8px
}

.element-item.close-icon:after {
    transform: scale(1.5);
    opacity: 1;
    content: "\f00d";
    color: #fff;
    line-height: 16px;
}


/*--------------Typography--------------------------------------*/

p {
    font-size: 12px;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 500;
    color: #5e646a;
    font-family: 'Roboto', sans-serif;
}

blockquote {
    float: left;
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 15px solid #eee;
    position: relative;
}

blockquote:before {
    font-family: "FontAwesome";
    content: "\f10e";
    position: absolute;
    color: #ccc;
    bottom: 3px;
    font-size: 43px;
    right: 6px;
    opacity: 0.4
}

blockquote p {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    color: #666;
}

.bold-title {
    margin: 15px 0;
    font-size: 24px;
    text-align: left;
    font-weight: 600;
}


/*--------------General--------------------------------------*/

#main {
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 1;
}

.fl-wrap {
    width: 100%;
    position: relative;
}

.full-height {
    width: 100%;
    height: 100%;
}

.hero-conatiner {
    height: 100vh;
    max-height: calc(100vh - 121px - 163px);
    min-height: 750px;
    margin: 0 80px;
    max-width: calc(100% - 160px);
}

.hidden-item,
.hov_zoom {
    overflow: hidden;
}

#wrapper {}

.respimg,
.single-slider img {
    width: 100%;
    height: auto;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    background-repeat: repeat;
    background-origin: content-box;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    z-index: 3;
}


/* ------header------------------------------------------------------------ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    z-index: 20;
    height: 80px;
    background: #313131;
    -webkit-transform: translate3d(0, 0, 0)
}

.logo-holder {
    position: absolute;
    top: 20px;
    left: 26px;
}

.logo-holder img {
    width: auto;
    height: 34px;
}

.header-contacts {
    float: right;
    position: relative;
    height: 80px;
    line-height: 80px;
    right: 100px;
}

.contacts-btn {
    display: none;
}

.header-contacts:after {
    content: '';
    position: absolute;
    top: 50%;
    left: -130px;
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.main-header:before {
    content: '';
    position: absolute;
    width: 125px;
    right: 0;
    height: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.05);
}

.header-contacts ul {
    float: right;
}

.header-contacts li,
.contacts-btn {
    list-style: none;
    float: left;
    margin-right: 40px;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.51);
    letter-spacing: 4px;
}

.header-contacts li:before {
    content: '';
    position: absolute;
    left: -30px;
    width: 15px;
    top: 50%;
    height: 2px;
    margin-top: -2px;
}

.header-contacts li a {
    transition: all 200ms ease-out;
}

.header-contacts li a:hover,
.contacts-btn:hover {
    color: #fff;
}

.left-header {
    background: #313131;
    position: fixed;
    top: 80px;
    left: 0;
    bottom: 150px;
    z-index: 22;
    width: 80px;
    -webkit-transform: translate3d(0, 0, 0)
}

.left-header:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 1px;
    height: 70px;
    top: 0;
    background: rgba(255, 255, 255, 0.2);
}

.left-header:after {
    content: '';
    position: absolute;
    bottom: 144px;
    width: 60px;
    height: 8px;
    left: 50%;
    margin-left: -30px;
}

.lh_dec {
    position: absolute;
    top: 70px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 50%;
}

.left-header_social {
    position: absolute;
    bottom: 190px;
    left: 50%;
    margin-left: -22px;
    width: 40px;
}

.left-header_social li {
    width: 40px;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    display: inline-table;
    background: #313131;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    position: relative;
}

.left-header_social li:before {
    content: '';
    position: absolute;
    right: 0;
    width: 0;
    height: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
    transition: all 200ms ease-out;
}

.left-header_social li:hover:before {
    width: 100%;
}

.left-header_social li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.left-header_social li a {
    position: relative;
    z-index: 2;
    color: #767676;
    transition: all 200ms ease-out;
}

.left-header_social li:hover a {
    color: #fff;
}

.share-btn {
    position: fixed;
    bottom: 0;
    width: 80px;
    height: 150px;
    z-index: 31;
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0)
}

.share-btn:before {
    content: '';
    position: absolute;
    top: -120px;
    width: 1px;
    height: 90px;
    left: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.share-btn:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #393939;
    transition: all 200ms ease-out;
}

.share-btn:hover:after,
.share-btn.uncl-share:after {
    top: 50%;
}

.share-btn span {
    color: #fff;
    position: relative;
    top: 106px;
    left: 18px;
    float: left;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 10px;
    z-index: 2;
}

.share-btn span i {
    position: absolute;
    transition: all 0.2s ease-in-out;
    left: 7px;
    width: 30px;
    padding-left: 2px;
    height: 30px;
    top: -86px;
    color: #fff;
    line-height: 28px;
}

.share-btn.uncl-share span i:before {
    content: '\f00d';
}

.nav-button {
    float: right;
    width: 28px;
    height: 50px;
    margin-right: 50px;
    cursor: pointer;
    position: relative;
    top: 22px;
}

.nav-button span {
    width: 100%;
    float: left;
    margin-bottom: 6px;
    height: 2px;
    background: #fff;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all 0.3s ease-in;
    transform: rotate(0deg);
    top: 0;
    left: 0;
}

.nav-button:hover span:before {
    width: 100%;
}

.nav-button .ncs,
.nav-button .nbs {
    width: 60%;
    transition: all 0.2s ease-in;
}

.nav-button .ncs {
    float: right;
}

.nav-button.cmenu .nbs {
    transform: rotate(-45deg);
    top: -3px;
    left: 1px;
    transition-delay: 0.1s;
}

.nav-button.cmenu .ncs {
    transform: rotate(-45deg);
    top: 4px;
    left: -2px;
    transition-delay: 0.1s;
}

.nav-button.cmenu .nos {
    transform: rotate(45deg);
}

.nav-button:hover .menu-button-text {
    color: #fff;
}

.menu-button-text {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 6px;
    color: rgba(255, 255, 255, 0.41);
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-button.cmenu .menu-button-text {
    margin-top: 16px;
}

.page-subtitle {
    position: absolute;
    top: 20px;
    right: 80px;
    text-align: right;
    z-index: 10;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 10px;
    color: #fff;
    letter-spacing: 4px;
}

.page-subtitle span {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    display: block;
}

.page-subtitle:before {
    content: '';
    position: absolute;
    left: -80px;
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    top: 50%;
}


/*------ btn ------------------------------------------------*/

.btn_slide {
    padding: 15px 38px;
    position: relative;
    color: #1E5FB4;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    border: 2px solid #1E5FB4;
    border-radius: 40px;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    z-index: 1;
    width: fit-content;
}

.btn_slide span {
    position: relative;
    z-index: 3;
    left: 0;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.1s
}

.btn_slide:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    z-index: 1;
    background: #1E5FB4;
    transition: all 0.3s ease-in-out;
}

.btn_slide:after {
    font-family: "FontAwesome";
    content: "\f105";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    z-index: 2;
    color: #fff;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.2s;
    font-size: 16px;
    line-height: 1;
}

.btn_slide:hover:before {
    width: 100%;
}

.btn_slide:hover:after {
    left: 26px;
}

.btn_slide:hover span {
    left: 13px;
    color: #fff;
}

.fl-btn {
    margin-top: 15px;
    display: block;
}

.mb_hhw {
    margin-bottom: clamp(30px, 1rem + 7vh, 100px);
}


/* ------share------------------------------------------------------------ */

.share-wrapper {
    position: fixed;
    bottom: 0;
    left: 80px;
    height: 150px;
    width: 0;
    background: #222;
    z-index: 100;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.share-container {
    overflow: hidden;
}

.share-icon,
.share-icon:after,
.close-share-btn i {
    transition: all 100ms linear;
}

.share-icon:hover {
    background: #3C3C3C;
}

.share-icon {
    width: 75px;
    height: 75px;
    line-height: 75px;
    float: left;
    position: relative;
    font-size: 16px;
    color: #fff;
    opacity: 0;
}

.share-icon:before {
    font-family: Font Awesome\ 5 Brands;
}

.share-icon-digg:before {
    content: "\f1a6";
}

.share-icon-email:before {
    content: "\f003";
}

.share-icon-flickr:before {
    content: "\f16e";
}

.share-icon-foursquare:before {
    content: "\f180";
}

.share-icon-rss:before {
    content: "\f09e";
}

.share-icon-facebook:before {
    content: "\f39e";
}

.share-icon-twitter:before {
    content: "\f099";
}

.share-icon-tumblr:before {
    content: "\f173";
}

.share-icon-linkedin:before {
    content: "\f0e1";
}

.share-icon-vimeo:before {
    content: "\f27d";
}

.share-icon-instagram:before {
    content: "\f16d";
}

.share-icon-pinterest:before {
    content: "\f231";
}

.share-icon-in1:before {
    content: "\f08c";
}

.share-icon-stumbleupon:before {
    content: "\f1a4";
}

.close-share-btn {
    position: absolute;
    right: -75px;
    bottom: 0;
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 10px;
    background: #3C3C3C;
    z-index: 10;
    cursor: pointer;
}


/*------Navigation ------------------------------------------------*/

.nav-holder {
    position: fixed;
    top: 80px;
    width: 500px;
    right: -500px;
    z-index: 319;
    -webkit-transform: translate3d(0, 0, 0);
}

.nh_vis {
    right: 30%;
}

.nav-holder-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.nav-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -70px;
    z-index: 20;
    background: #313131;
    padding: 0 10px 0 50px;
    height: 70px;
    line-height: 70px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 318;
    width: 100%;
    background: rgba(37, 36, 37, 0.7);
    display: none;
    -webkit-transform: translate3d(0, 0, 0);
}

.nav-container {
    padding: 60px 50px 100px;
    z-index: 20;
}

nav.nav-inner {
    float: left;
    overflow: hidden;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
}

.sliding-menu ul {
    margin: 0;
    float: left;
    width: 100%;
    overflow: hidden;
}

.sliding-menu li {
    margin: 0;
    position: relative;
    float: left;
    width: 100%;
}

.sliding-menu a {
    float: left;
    padding: 0 0 0 20px;
    height: 40px;
    line-height: 40px;
    position: relative;
    font-weight: 500;
    font-size: 12px;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    width: 100%;
}

.sliding-menu a:hover {
    color: rgba(255, 255, 255, 0.41);
}

.sliding-menu li a:after {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    z-index: 1;
    transition: all 300ms linear;
    height: 100%;
    background: rgba(255, 255, 255, 0.071);
}

.sliding-menu a.act-link:after {
    width: 50%;
}

.sliding-menu a i {
    float: left;
    width: 35px;
    color: #74829C;
    position: relative;
    top: 3px;
}

.sliding-menu a.back:before {
    font-family: "FontAwesome";
    content: '\f177';
}

.sliding-menu a.back:hover:before {
    color: #fff;
}

.submen-dec:before {
    font-family: "FontAwesome";
    content: '\f105';
    position: absolute;
    right: 6px;
    width: 10px;
    height: 10px;
    top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.371);
    z-index: 20;
}

.nav-holder-wrap_line {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 125px;
    top: 100%;
    background: rgba(255, 255, 255, 0.02);
    z-index: 2;
}

.nav-holder-wrap_dec {
    position: absolute;
    top: 0;
    left: 100%;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #222;
}

.nhw-col.menuhol-dec-vis:before {
    transform: scale(2.5);
}


/*--------------hero--------------------------------------*/

.swiper-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.slider-wrap,
.portfolio-wrap,
.hero-slider-img .swiper-slide,
.hero-slider-wrap .swiper-slide {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider-wrap_halftwo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 25%;
    background: #fff;
    z-index: 1;
}

.fs-gallery-wrap {
    z-index: 3;
}

.hero-conatiner {
    background: #fff;
}

.hc_dec {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 0px 52px rgba(255, 255, 255, 0.05);
    left: 30%;
    margin-left: -305px;
    top: 50%;
    margin-top: -245px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.02)
}

.hc_dec:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100px;
    left: -120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.hc_dec:after {
    content: '';
    position: absolute;
    left: -120px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 50%;
    margin-top: -4px;
    transition: all 0.5s ease-in-out;
    transform: scale(1.0);
}

.hc_dec.start_anim:after {
    left: -4px;
    transform: scale(2.5);
}

.half-hero-wrap {
    position: absolute;
    top: 10%;
    left: 70px;
}

.hhw_title {
    color: #292929;
    font-family: Montserrat;
    font-size: clamp(24px, 1rem + 1.9vw, 65px);
    font-style: normal;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1.95px;
    text-align: left;
    text-transform: uppercase;
}

.hhw_header {
    color: #1E5FB4;
    font-family: Montserrat;
    font-size: clamp(16px, 1rem + 1.4vw, 45px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.hc_dec_color {
    position: fixed;
    right: 0;
    height: 80px;
    width: 30%;
    top: 0;
    z-index: 20;
}

.hc_dec_color:after {
    content: '';
    position: absolute;
    right: 0;
    width: 80px;
    height: 150px;
    bottom: -150px;
    z-index: 1;
}

.hc_dec_color:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 170px;
    right: 40px;
    bottom: -255px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.hero-slider_control-wrap {
    position: absolute;
    left: 30%;
    bottom: 18px;
    z-index: 20;
}

.hero-slider_control-wrap:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -60px;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.hsc {
    float: left;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #3C3C3C;
    border-radius: 100%;
    color: #fff;
    font-size: 14px;
    margin-right: 4px;
    cursor: pointer;
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}

.hsc:hover {
    transform: scale(0.9);
    background: #3C3C3C;
}

.hsc_pp {
    position: absolute;
    right: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    top: 50%;
    margin-top: -25px;
    font-size: 13px;
    background: #fff;
    z-index: 20;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

.hsc_pp:after {
    content: '';
    position: absolute;
    left: -11px;
    top: -11px;
    right: -11px;
    bottom: -11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transform: scale(1.0);
}

.hsc_pp i,
.hsc_pp2 i {
    transition: all 0.2s ease-in-out;
}

.hsc_pp2 {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 10px;
    width: 95px;
    height: 76px;
    line-height: 76px;
    background: #242424;
    cursor: pointer;
}

.hsc_pp.auto_actslider i:before,
.hsc_pp2.auto_actslider2 i:before {
    content: "\f04c";
}

.hsc_pp:hover:after {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
}

.hero-slider-wrap_pagination {
    position: absolute;
    bottom: 50px;
    right: -80px;
    width: 80px;
    z-index: 100;
}

.hero-slider-wrap_pagination:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    top: -50px;
    background: #1E5FB4;
}

.hero-slider-wrap_pagination .swiper-pagination-bullet,
.fcwc-wrap .swiper-pagination-bullet {
    width: 100%;
    background: none;
    position: relative;
    height: 6px;
    opacity: 1;
    margin: 10px 0;
}

.fcwc-wrap .swiper-pagination-bullet {
    margin-bottom: 20px;
}

.hero-slider-wrap_pagination .swiper-pagination-bullet:last-child {
    margin-bottom: 0;
}

.hero-slider-wrap_pagination .swiper-pagination-bullet:before,
.tc-pagination .swiper-pagination-bullet:before,
.fcwc-wrap .swiper-pagination-bullet:before,
.fs-slider-wrap_pagination-wrap .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 6px;
    border-radius: 100%;
    background: #fff;
    margin-left: -3px;
}

.hero-slider-wrap_pagination .swiper-pagination-bullet:after,
.tc-pagination .swiper-pagination-bullet:after,
.fcwc-wrap .swiper-pagination-bullet:after,
.fs-slider-wrap_pagination-wrap .swiper-pagination-bullet:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100%;
    transition: all 200ms linear;
    transform: scale(0.0);
}

.hero-slider-wrap_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.tc-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.fcwc-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.fs-slider-wrap_pagination-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    transform: scale(1.6);
}

.hs_counter {
    position: absolute;
    top: 50px;
    left: 90px;
    z-index: 1;
    font-family: 'Oswald', sans-serif;
}

.hs_counter .total {
    float: left;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    top: 12px;
    right: -20px;
    width: 30px;
}

.hs_counter .total:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    left: -5px;
    top: 8px;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
}

.hs_counter .current {
    font-size: 54px;
    float: left;
    width: 50px;
    position: relative;
}

.clone-counter {
    position: absolute;
    left: 70px;
    bottom: 20px;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    -webkit-text-stroke-color: #292929;
    -webkit-text-stroke-width: 1px;
    color: rgba(255, 255, 255, 0.01);
    font-size: clamp(40px, 1rem + 7vw, 100px);
    font-weight: bold;
    line-height: 1;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/bg-counter.png) no-repeat center center/100% 100%;
}

.slider-progress-bar {
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 20;
}

.slider-progress-bar:before,
.progress-indicator:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    z-index: 2;
    background: #fff;
}

.slider-progress-bar:after,
.progress-indicator:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100px;
    right: -14px;
    top: -64px;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    z-index: 1;
}

.progress-indicator {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
}

.progress-indicator svg {
    position: relative;
    top: -5px;
    height: 50px;
    transform: rotate(-90deg);
    width: 50px;
}

.progress-bar__background {
    fill: none;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1.0;
}

.progress-bar__progress {
    fill: none;
    stroke: #fff;
    stroke: #fff;
    stroke-dasharray: 100 100;
    stroke-dashoffset: 100;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.circ {
    transform: scale(1.0) rotate(-90deg);
    transition: transform .3s ease;
    z-index: 3;
    position: relative;
}

.circ circle {
    stroke-dasharray: 440px;
}

.circ1 {
    stroke-dashoffset: 440px;
}

.slider-progress-bar.act-slider .circ1 {
    stroke-dashoffset: 220px;
    transition: linear 2s stroke-dashoffset;
}

.hero-scroll-down-notifer {
    position: fixed;
    z-index: 10;
    right: 30px;
    margin-bottom: -15px;
    bottom: 50%;
}

.hero-scroll-down-notifer i {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
}

.scroll-down-wrap {
    float: left;
    position: relative;
}

.scroll-down-wrap span {
    float: left;
    margin-left: 20px;
    position: relative;
    top: 6px;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    z-index: 10;
}

.mousey {
    float: left;
    width: 20px;
    height: 30px;
    border-radius: 6px;
    padding: 0 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.scroller {
    position: relative;
    left: 50%;
    top: 6px;
    margin-left: -2px;
    width: 4px;
    height: 4px;
    background: #292929;
    border-radius: 4px;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}

.start-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 30px 90px;
    color: #fff;
    z-index: 50;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    background: #343434;
    font-weight: 800;
    border-left: 6px solid;
}

.start-btn.st2 {
    right: auto;
    left: 0;
    border: none;
}

.start-btn:before {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    top: 0;
    bottom: 0;
    z-index: 1;
    transition: all 200ms linear;
}

.start-btn:after {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    bottom: 20px;
    z-index: 1;
}

.start-btn span {
    position: relative;
    z-index: 2;
}

.start-btn i {
    transition: all 200ms linear;
    position: relative;
    left: 20px;
}

.start-btn:hover i {
    left: 30px;
    color: #fff;
}

.start-btn:hover:before {
    right: 0;
}

.hero-corner-dec {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 4;
    position: absolute;
    left: 200px;
    bottom: 36px;
    right: 53px;
    top: calc(50% + 60px);
}

.hero-corner-dec2 {
    width: 150px;
    position: absolute;
    right: 0;
    top: 0;
    height: 150px;
    z-index: 4;
    background: #292929;
}

.hero-corner-dec2:before,
.hero-section-dec:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-decor-numb {
    position: absolute;
    z-index: 20;
    right: 140px;
    top: 66px;
    padding-left: 80px;
    cursor: pointer;
    overflow: hidden;
}

.hero-decor-numb.hdn2 {
    right: 0;
    top: 50%;
}

.hero-decor-numb:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 1px;
}

.hero-decor-numb.hdn2:after {
    content: '';
    position: absolute;
    right: 0;
    left: 50%;
    top: -20px;
    bottom: -20px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: all 200ms linear;
}

.hero-decor-numb.hdn2:hover:after {
    left: 60px;
}

.hero-decor-numb-tooltip {
    position: absolute;
    right: 80px;
    top: -40px;
    opacity: 0;
    visibility: hidden;
}

.hero-decor-numb span {
    float: left;
    margin-right: 40px;
    position: relative;
    top: 0;
}

.hero-decor-numb span,
.hero-decor-numb-tooltip {
    transition: all 200ms linear;
    color: #fff;
    letter-spacing: 10px;
    font-size: 10px;
    text-transform: uppercase;
    z-index: 2;
}

.hero-decor-numb:hover span {
    top: 50px;
    opacity: 0;
    visibility: hidden;
}

.hero-decor-numb:hover .hero-decor-numb-tooltip {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.hero_promo-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    background: #292929;
    z-index: 20;
}

.hero_promo-wrap:before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    left: -5px;
    top: -5px;
    z-index: 1;
}

.hero_promo-title {
    float: left;
    width: 350px;
    color: #fff;
    padding: 45px 30px 45px 50px;
    text-align: left;
    position: relative;
    z-index: 3;
    background: #292929;
}

.hero_promo-title:before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50px;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero_promo-title:after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50px;
    width: 50px;
    height: 1px;
    z-index: 2;
}

.hero_promo-title h4 {
    font-size: 17px;
    font-weight: 600;
    padding: 10px 0;
}

.hero_promo-title p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 15px;
}

.hero_promo-button {
    position: absolute;
    width: 250px;
    right: 0;
    top: 0;
    overflow: hidden;
    height: 100%;
}

.hero_promo-button a {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    left: 50%;
    top: 50%;
    margin: -25px 0 0 -25px;
    box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    background: #000;
    color: #fff;
    z-index: 20;
    font-size: 10px;
    transition: all 0.3s ease-in-out;
}

.hero_promo-button a:hover {
    box-shadow: 0px 0px 0px 17px rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hdyn_gal {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -30px;
    padding: 0 30px;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
    z-index: 21;
    background: #292929;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    color: #fff;
}

.hdyn_gal:before {
    content: '';
    position: absolute;
    right: 0;
    left: 100%;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: #323232;
    transition: all 0.3s ease-in-out;
}

.hdyn_gal i {
    padding-right: 20px;
    transition: all 0.3s ease-in-out;
    left: 0;
}

.hdyn_gal i,
.hdyn_gal span {
    position: relative;
    z-index: 2;
}

.hdyn_gal:hover:before {
    left: 0;
}

.hdyn_gal:hover i {
    left: -10px;
}

.hero-carousel-wrap {
    padding: 6px;
}

.hero-carousel .swiper-slide .bg {
    width: 130%;
    left: -15%;
    transform: translateZ(0);
}

.grid-carousel-title {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    padding: 0 50px;
    z-index: 3;
    opacity: 0.6;
    margin-top: 40px;
    transition: all 0.3s linear;
    transition-delay: 1.0s;
}

.hero-carousel .swiper-slide-active .grid-carousel-title {
    margin-top: 0;
    opacity: 1;
}

.grid-carousel-title h3 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    position: relative;
    font-family: 'Oswald', sans-serif;
    text-align: left;
}

.grid-carousel-title h3 a {
    color: #fff;
}

.grid-carousel-title h4 {
    font-weight: 600;
    padding-top: 10px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    text-align: left;
    padding-bottom: 20px;
}

.grid-carousel-title h3:before {
    content: '';
    position: absolute;
    left: 0;
    width: 60px;
    height: 2px;
    top: -15px;
}

.hero-carousel .swiper-slide,
.fs-slider .swiper-slide {
    overflow: hidden;
}

.hero-carousel .swiper-slide .overlay,
.carousle-item-number,
.carousle-item-dec,
.grid-carousel-title .btn {
    transition: all 0.3s linear;
    transition-delay: 1.0s;
    transform: translateZ(0);
}

.grid-carousel-title .btn {
    opacity: 0;
    top: 20px;
}

.hero-carousel .swiper-slide-active .overlay {
    opacity: 0.6;
}

.carousle-item-number {
    position: absolute;
    top: 40px;
    right: -40px;
    z-index: 19;
    font-size: 14px;
    color: #fff;
    text-align: center;
    opacity: 1;
    margin-bottom: -50px;
}

.hero-carousel .swiper-slide-active .carousle-item-number {
    opacity: 1;
    right: 40px;
}

.carousle-item-dec {
    position: absolute;
    left: 40px;
    top: 48px;
    width: 0;
    height: 0;
    border-left: 1px solid;
    border-top: 1px solid;
    border-color: rgba(255, 255, 255, 0.4);
    z-index: 20;
}

.hero-carousel .swiper-slide-active .carousle-item-dec {
    width: 180px;
    height: 100px;
}

.hero-carousel .swiper-slide-active .grid-carousel-title .btn {
    opacity: 1;
    top: 0;
}

.hsc_counter-wrap {
    position: absolute;
    bottom: 150px;
    right: -55px;
    z-index: 20;
    color: #fff;
    padding: 20px 0;
    width: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 11px;
}

.hsc_counter-wrap div {
    float: left;
    width: 100%;
    text-align: center;
    position: relative;
}

.hsc_counter-wrap div span {
    position: relative;
    display: block;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .bg {
        background-attachment: scroll !important;
        -webkit-background-size: cover;
        background-position: center;
    }
}

@media screen and (max-width: 1024px) {
    .hero-conatiner {
        margin: 0 0 0 80px;
        max-width: calc(100% - 80px);
    }
    .hero-conatiner {
        min-height: 550px;
        height: 550px;
    }
    .clone-counter {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}

@media screen and (max-width:767px) {
    .clone-counter,
    .half-hero-wrap {
        left: 20px;
    }
    .btn_slide {
        padding: 10px 20px;
        font-size: 13px;
        text-align: center;
    }
}

@media screen and (max-width:575px) {
    .hero-conatiner {
        margin-left: 0;
        max-width: 100%;
    }
}