/* ------------------------------------------------
  Project:   Brandx – Creative Digital Agency WordPress Theme
  Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. General
  2. Transition
  3. Pre Loader
  4. Scroll to Top
  5. Header
  6. Footer
  7. Page Title

 
/* ------------------------
    General
------------------------*/
a, a:focus { text-decoration: none !important; }
a, a:visited { text-decoration: none; color: var(--themeht-white-color);}
a:focus, a:hover { color: var(--themeht-primary-color); text-decoration: none !important; }
a, button, input { outline: medium none !important; }
*::-moz-selection { background: var(--themeht-text-color); color: var(--themeht-white-color); text-shadow: none; }
::-moz-selection { background: var(--themeht-text-color); color: var(--themeht-white-color); text-shadow: none; }
::selection { background: var(--themeht-text-color); color: var(--themeht-white-color); text-shadow: none; }


/* ------------------------
    Transition
------------------------*/
a,
.btn,
button,
img,
span,
input,
a.text-btn-wrap,
.btn-icon-wrap,
.themeht-btn:before,
.themeht-btn i,
#ht-main-nav,
.main-nav > ul > li > a:before,
.main-nav .sub-menu li a:before,
.social-icons li:hover a,
.themeht-btn,
.service-item,
.service-image,
.service-image1, .service-image2,
.service-item.style-3 .service-title h4:before,
.service-linear,
.featured-item,
.featured-icon,
.portfolio-item,
.price-table,
.service-menu li a:before,
.team-social-icon,
.team-member .team-desc,
.team-images img,
.step-icon-bg,
.social-icons.footer-social li a i,
.swiper-button-next, .swiper-button-prev,
.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after,
.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:before,
.site-main .comment-navigation .nav-links a i,
.site-main .posts-navigation .nav-links a i,
.site-main .post-navigation .nav-links a i{
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

/* ------------------------
    Box Shadow
------------------------*/
.box-shadow,
#header-wrap.fixed-header,
.scroll-top,
.service-item.style-1,
.service-item.style-1 .service-icon,
.main-timeline .timeline-icon,
.post-card.post-classic,
.comment-respond,
.portfolio-meta-info,
.price-table{
    -webkit-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
    -moz-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
    box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
}


/* ------------------------
    Pre Loader
------------------------*/
#ht-preloader {background: var(--themeht-body-bg-color); bottom: 0; height: 100%; left: 0; overflow: hidden !important; position: fixed; right: 0; text-align: center; top: 0; width: 100%; z-index: 99999;}
.clear-loader { z-index: 999; box-sizing: border-box; display: inline-block; left: 50%; transform: translateX(-50%) translateY(-50%); position: absolute; text-align: center; top: 50%; display: flex; justify-content: center; align-items: center; }

.loader-wrap-heading .load-text {
  color: var(--themeht-white-color);
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 15px;
  text-transform: uppercase;
  z-index: 20;
  font-family: var(--themeht-typography-body-font-family);}

.load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate; }

.load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

.load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }

.load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }
  
.load-text span:nth-child(8) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s; }

.load-text span:nth-child(9) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s; }
  
 .load-text span:nth-child(10) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s; } 
  
 


/* ------------------------
    Scroll to Top
------------------------*/
.scroll-top { position: fixed; right: 50px; bottom: 50px; cursor: pointer; display: block; z-index: 10000; opacity: 0; visibility: hidden; transform: translateY(15px); -webkit-transition: all 200ms linear; transition: all 200ms linear; background: var(--themeht-primary-color); }
.scroll-top.scroll-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.scroll-top {
     height: 40px;
     width: 40px;
     display: block;
     outline: 1px solid var(--themeht-primary-color);
     cursor: pointer;
     transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
}
 .scroll-top svg line {
     stroke-width: 2;
     stroke: var(--themeht-text-color);
     fill: none;
     stroke-dasharray: 20;
     -webkit-transition: all 0.4s ease;
     transition: all 0.4s ease;
}
 .scroll-top:hover svg line.top {
     -webkit-transform: translateX(-40px);
     transform: translateX(-40px);
}
 .scroll-top:hover svg line.bottom {
     -webkit-transform: translateX(40px);
     transform: translateX(40px);
}
 .scroll-top:hover svg line.left {
     -webkit-transform: translateY(40px);
     transform: translateY(40px);
}
 .scroll-top:hover svg line.right {
     -webkit-transform: translateY(-40px);
     transform: translateY(-40px);
}
 .scroll-top .left-bar {
     position: absolute;
     z-index: 1;
     background-color: transparent;
     top: 19px;
     left: 5px;
     width: 18px;
     display: block;
     transform: rotate(-45deg);
}
 .scroll-top .left-bar:after {
     content: "";
     background-color: var(--themeht-text-color);
     width: 18px;
     height: 2px;
     display: block;
     border-radius: 1px;
     transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
     transform-origin: right center;
     z-index: -1;
}
 .scroll-top .right-bar {
     position: absolute;
     z-index: 1;
     background-color: transparent;
     top: 19px;
     left: 17px;
     width: 18px;
     display: block;
     transform: rotate(45deg);
     border-radius: 2px;
}
 .scroll-top .right-bar:after {
     content: "";
     background-color: var(--themeht-text-color);
     width: 18px;
     height: 2px;
     display: block;
     border-radius: 1px;
     transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
     transform-origin: left center;
     z-index: -1;
}
 .scroll-top:hover {
     transition: all 0.1s;
}
 .scroll-top:hover .left-bar:after {
     transform: rotate(-10deg);
}
 .scroll-top:hover .right-bar:after {
     transform: rotate(10deg);
}
 

/* ------------------------
  Header
------------------------*/

/*--Header top--*/
.topbar-link a, .topbar-link{color: var(--themeht-white-color); font-weight: 600;}
.topbar-link i{margin-right: 5px; color: var(--themeht-primary-color); font-size: 20px; vertical-align: middle;}
.topbar-link a:hover{color: var(--themeht-primary-color)}
.header .social-icons li { margin: 0; }
.header .social-icons li a { color: var(--themeht-white-color); font-size: 14px; width: 50px; height: 50px; line-height: 50px; background: inherit; border: none; border-left: 1px solid rgba(255, 255, 255, 0.1); }
.header .social-icons li a:hover { color: var(--themeht-primary-color); background: inherit; border-color: rgba(255, 255, 255, 0.1); }
.header-number { display: flex; align-items: center; }
.header-number span { display: block; font-size: 12px; line-height: 1em; font-weight: 400; color: var(--themeht-body-color); margin-bottom: 2px; }
.header-number i { font-size: 40px; color: var(--themeht-text-color); display: inline-block; line-height: 1; margin-right: 10px; }
.header-number a { color: var(--themeht-white-color); font-weight: 700; }
.header-number a:hover { color: var(--themeht-primary-color); text-decoration: underline !important; }
.header-number i { line-height: 48px; height: 48px; width: 48px; text-align: center; border-radius: 50%; font-size: 22px; color: var(--themeht-text-color); background-color: var(--themeht-white-color); position: relative; margin-right: 15px; }
.header-number i:after { position: absolute; top: -7px; right: -7px; bottom: -7px; left: -7px; background-color: var(--themeht-primary-color); opacity: 0.1; border-radius: 50%; content: ""; }


.header{ position: relative;
    border-bottom: 1px solid var(--themeht-border-light-color);
    padding: 20px 50px;
    z-index: 9999; background: var(--themeht-body-bg-color);}
.admin-bar .header { top: 30px; }


/*--navigation--*/
.navbar-brand.logo { flex-shrink: 0; margin-right: 70px;}
.logo img { max-height: var(--logo-desktop-height); }
.logo-box { position: relative; min-width: 380px; min-height: 130px; 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; padding: 20px 20px; padding-right: 70px; margin-right: -30px; z-index: 9; }
.logo-box:before { position: absolute; right: 0; top: 0; height: 100%; width: 100%; background-color: var(--themeht-white-color); -webkit-transform: skew(-25deg); transform: skew(-25deg); -webkit-transform-origin: right top; transform-origin: right top; content: ""; z-index: -1; filter: drop-shadow(0px 10px 25px rgba(165, 165, 165, 0.3)); }


.ht-navigation { flex-wrap: nowrap; justify-content: flex-start; position: relative; display: flex; align-items: center; }
.navigation-top { margin-right: auto; }
@media (min-width:1200px) {
    .main-nav .menu { flex-direction: row; display: flex; margin: 0; padding: 0;  justify-content: center;}
}

.header input[type="search"] { height: 40px; padding: 16px 40px 16px 10px; }
.header .search-form button[type="submit"] { line-height: 40px; }

.main-nav li { position: relative; list-style-type: none; }
.main-nav > ul > li { margin: 0 20px;}
.main-nav > ul > li > a { font-weight: 600; color: var(--themeht-white-color); font-size: 14px; line-height: 1; position: relative; text-transform: uppercase; }
.main-nav > ul > li > .sub-menu-toggle { display: none; }
.main-nav ul.sub-menu { opacity: 0; visibility: hidden; position: absolute; top: 110%; left: 0; z-index: 99999; background: var(--themeht-white-color); border-radius: 5px; padding: 0; margin: 0; -webkit-transition: all 0.5s ease-in-out 0s; -moz-transition: all 0.5s ease-in-out 0s; -ms-transition: all 0.5s ease-in-out 0s; -o-transition: all 0.5s ease-in-out 0s; transition: all 0.5s ease-in-out 0s; box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06); }
@media (min-width:1200px) {
    .main-nav ul li:hover > ul.sub-menu { top: 100%; opacity: 1; visibility: visible; }
    .main-nav ul.sub-menu li:hover ul.sub-menu { top: 0; }
    .main-nav .sub-menu li a:after {
    content: "";
    display: inline-block;
    height: 0;
    width: 4px;
    vertical-align: middle;
    margin-right: 0;
    opacity: 0;
    visibility: hidden;
    background: var(--themeht-primary-color);
    -webkit-transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
    -o-transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
    -moz-transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
    transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.main-nav .sub-menu li a:hover:after, .main-nav ul li .sub-menu li.current-menu-item > a:after {
    top: 0;
    left: 0;
    height: -webkit-calc(100%);
    height: -moz-calc(100%);
    height: calc(100%);
    opacity: 1;
    visibility: visible;
}
}
.main-nav ul.sub-menu li ul { left: 100% !important; top: 0; }
.main-nav .sub-menu li a {font-weight: 600; text-transform: uppercase; font-size: 13px; padding: 8px 25px 8px 22px; color: var(--themeht-text-color); display: block; }
.sub-menu-toggle { display: block; position: absolute; right: 0; top: 8px; cursor: pointer; color: var(--themeht-text-color); font-size: 14px; line-height: 14px; }
.main-nav .sub-menu li .sub-menu-toggle{color: var(--themeht-text-color); top: 5px;}
@media (min-width:992px) {
    .main-nav > ul > li > a:hover, .main-nav > ul > li.current-menu-item > a, .main-nav > ul > li.current-menu-parent > a { color: var(--themeht-primary-color);}
    .main-nav ul.sub-menu { min-width: 16em !important; max-width: 20em !important; }
    .main-nav .sub-menu li a:hover, .main-nav ul li .sub-menu li.current-menu-item > a { padding-left: 30px; color: var(--themeht-text-color); }
    .main-nav .sub-menu li:hover .sub-menu-toggle, .main-nav ul li .sub-menu li.current-menu-item .sub-menu-toggle { color: var(--themeht-text-color); }
}
.ht-mobile-menu-bg { display: none; }
.nav-menu-toggle { box-shadow: none; border: none; background: var(--themeht-secondary-color); padding: 5px; font-size: 40px; line-height: 1; display: none; color: var(--themeht-primary-color);}
.closepanel { display: none; }
.closepanel i{ display: inline-block; font-size: 40px; color: var(--themeht-primary-color); line-height: 1;}
@media (max-width:1200px) {
    .sub-menu-toggle { right: 0; color: var(--themeht-white-color);}
    .main-nav .menu { padding-left: 0; padding-top: 80px; }
    .admin-bar .main-nav .menu { padding-top: 120px; }
    .closepanel { position: absolute; right: 30px; top: 30px; }
    .admin-bar .closepanel { top: 60px; }
    .nav-menu-toggle, .ht-mobile-menu-bg, .closepanel { display: block; }
    .main-nav > ul > li > .sub-menu-toggle { display: block; }
    .main-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .main-nav > ul > li > a { padding: 20px 0; display: inline-block; border: none; color: var(--themeht-white-color);}
    .sub-menu-toggle {top: 20px;}
    .main-nav ul.sub-menu { position: static; display: none !important; box-shadow: none; border-radius: 0; padding: 0; border: none; }
    .main-nav .sub-menu li { border-bottom: none; }
    .main-nav .sub-menu li a { padding: 15px 0; }
    .main-nav ul.sub-menu.show { display: block !important; width: 100%; margin-left: 0; padding: 1em 2em; visibility: visible; opacity: 1; }
    .main-nav ul.sub-menu ul.sub-menu.show { padding-left: 1rem; }
    .main-nav .sub-menu .sub-menu-toggle { right: 0; top: 7px; font-size: 14px; }
    .main-nav { background-color: var(--themeht-bg-dark-color); position: fixed; top: 0; right: -400px; z-index: 1000; width: 300px; height: 100%; padding: 0; display: block; transition: all 900ms ease; -moz-transition: all 900ms ease; -webkit-transition: all 900ms ease; -ms-transition: all 900ms ease; -o-transition: all 900ms ease; -webkit-transform: translateX(400px); -ms-transform: translateX(400px); transform: translateX(400px); opacity: 0; }
    .main-nav.menu-active { right: 0px; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); visibility: visible; opacity: 1; overflow-y: scroll; -webkit-transition-delay: 600ms; -moz-transition-delay: 600ms; -ms-transition-delay: 600ms; -o-transition-delay: 600ms; transition-delay: 600ms; opacity: 1; }
    .ht-mobile-menu-bg { display: block; }
    .ht-mobile-menu-bg { position: fixed; right: 0; top: 0; width: 0%; height: 100%; z-index: 99; opacity: 0.8; background: var(--themeht-primary-color); -webkit-transform: translateX(101%); -ms-transform: translateX(101%); transform: translateX(101%); transition: all 900ms ease; -moz-transition: all 900ms ease; -webkit-transition: all 900ms ease; -ms-transition: all 900ms ease; -o-transition: all 900ms ease; -webkit-transition-delay: 300ms; -moz-transition-delay: 300ms; -ms-transition-delay: 300ms; -o-transition-delay: 300ms; transition-delay: 300ms; }
    .menu-active .ht-mobile-menu-bg { width: 100%; visibility: visible; transition: all 900ms ease; -moz-transition: all 900ms ease; -webkit-transition: all 900ms ease; -ms-transition: all 900ms ease; -o-transition: all 900ms ease; -webkit-transform: translateX(0%); -ms-transform: translateX(0%); transform: translateX(0%); }
}


.search-icon a { font-size: 18px; color: var(--themeht-white-color); line-height: 1; }
.search-input { position: fixed; left: 0; width: 100%; z-index: 999; text-align: center; background: var(--themeht-white-color); border-bottom: 1px solid var(--themeht-primary-color); z-index: 9999; top: 0; display: none; padding: 80px 0; }
.search-inner { padding: 15px 0; position: relative; }
.search-input .search-form label { width: 100%; padding-right: 0;}
.search-input .search-field { width: 100%; }
.search-input .search-form button[type="submit"] { font-size: 20px; right: 0; position: absolute; }
.right-nav { position: relative; margin-left: 30px; }
.close-search { position: absolute; bottom: -40px; right: 0; cursor: pointer; font-size: 30px; color: var(--themeht-body-color); }
.close-search:hover { color: var(--themeht-primary-color); }


/* ------------------------
    Footer
------------------------*/
.footer { background-color: var(--themeht-bg-dark-color); overflow: hidden; position: relative; z-index: 9; clear: both; padding-top: 50px;}
.footer-bg { background-repeat: no-repeat; background-position: left -100px center; background-size: cover; }
.footer .widget-title { margin-bottom: 30px; }
.footer-widget { margin-bottom: 0; }
.footer-widget.widget ul { margin-left: 0; padding-left: 0; margin-bottom: 0; }
.footer-widget.widget ul li { list-style-type: none; margin-bottom: 15px; }
.primary-footer { position: relative; z-index: 99; padding: 150px 0 100px; }
.secondary-footer { padding: 30px 0; position: relative; color: var(--themeht-white-color); border-top: 1px solid rgba(255, 255, 255, 0.12); }
.copyright-text a { text-decoration: underline !important; color: var(--themeht-primary-color); }
.footer h5.widget-title { padding-bottom: 18px; position: relative; padding-left: 0; font-size: 26px; line-height: 36px; font-weight: 500; color: var(--themeht-white-color); }
.footer .widget h5.widget-title:after { background: var(--themeht-bg-dark-color); }


.media-icon.list-inline li { display: inline-block; }
.media-icon li { color: var(--themeht-white-color); margin-bottom: 20px; padding-bottom: 20px; font-size: 25px; line-height: 33px; letter-spacing: -.48px;
    text-transform: uppercase; font-weight: 500; position: relative; }
.media-icon li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.media-icon li h6 { color: var(--themeht-body-color); font-size: 14px;
    font-weight: 700;
    line-height: 20px; }
.media-icon li a { color: var(--themeht-white-color); }
.media-icon li a:hover { color: var(--themeht-primary-color); }


.footer-widget .menu li { margin-bottom: 15px; text-transform: capitalize; }
.footer-widget .menu li:last-child { margin-bottom: 0; }
.footer-widget .menu li a { color: var(--themeht-white-color); position: relative; padding-left: 0 !important; font-size: 16px !important; font-weight: 400; }
.footer-widget .menu li a:hover { color: var(--themeht-primary-color); }
.footer-widget .menu li a:before { display: none; }
.footer-widget.widget .social-icons.footer-social { display: inline-block; }
.footer-widget.widget .social-icons.footer-social li { margin: 0 0 20px 0; }
.footer-widget.widget .social-icons.footer-social li:last-child { margin: 0; }
.social-icons.footer-social li a { height: auto; width: auto; line-height: 1; font-size: 20px; color: var(--themeht-primary-color); background-color: inherit; border: none;  display: flex;
    align-items: center; border-radius: 0;}
.social-icons.footer-social li a:hover { background-color: inherit; color: var(--themeht-primary-color); }
.social-icons.footer-social li a:hover span { color: var(--themeht-primary-color); }


.social-icons.footer-social li a i{font-size: 0; line-height: 1; margin-right: 15px;}
.social-icons.footer-social li a:hover i{font-size: 30px;}
.social-icons.footer-social li a span{font-size: 60px; line-height: 64px; text-transform: uppercase; color: var(--themeht-body-color);}

.footer h2{font-size: 80px;
        line-height: 90px; margin-bottom: 50px;}
        
.footer .marquee-wrap.style2{background: var(--themeht-primary-color);}
.footer .marquee-wrap.style2 .marquee-text i { color: var(--themeht-text-color);}

/* ------------------------
    Page Title
------------------------*/
.page-title {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 45px 0 0;
    z-index: 1;
}
.breadcrumb { display: inline-flex; align-items: center; margin: 0; text-transform: capitalize; margin-top: 10px; }
.breadcrumb-item { display: inline-block; font-weight: 600; word-break: break-all; }
.breadcrumb-item, .breadcrumb-item a { display: flex; align-items: center; font-size: 14px; line-height: 14px; font-weight: 600; letter-spacing: 1px; color: var(--themeht-white-color); margin: 5px 0px; }
.breadcrumb-item.active { color: var(--themeht-white-color); }
.breadcrumb-item a:hover { color: var(--themeht-primary-color); }
.breadcrumb-item + .breadcrumb-item:before { color: var(--themeht-white-color); }
.breadcrumb i { border-radius: 5px; color: var(--themeht-text-color); background-color: var(--themeht-primary-color); height: 26px; width: 26px; line-height: 1; display: flex; margin-right: 10px !important; align-items: center; justify-content: center; }
.page-title h1 { font-size: 50px; line-height: 60px; word-break: break-word; margin-bottom: 0; color: var(--themeht-white-color) }
.page-title-bg {
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    width: 49%;
    height: 100%;
    right: 15px;
    border-radius: 10px;
}

.theme-breadcrumb-box{background: linear-gradient(190deg, #1D1D1F 0%, rgb(0, 0, 0) 35%, rgb(0, 0, 0) 65%, rgb(29, 29, 29) 100%);
    padding: 100px 50px;
    border-radius: 10px;}
