/* CSS Document
Project Name: Bizkit
Version:  1.0
Author Name: irs_soft (https://themeforest.net/user/irs_soft)
*/
/*

01. General CSS
      -> Common CSS
      -> Form CSS
      -> Background Over Layer CSS
      -> Section Title CSS
      -> Theme btn CSS
      -> Preloader CSS
      -> Scroll To Top CSS
      -> Pagination CSS
02. Header CSS
03. Slider CSS
04. Feature CSS
05. About CSS
06. Separator CSS 
07. Service CSS
      -> Service Inner CSS
08. Consultation CSS
09. Portfolio CSS
      -> Portfolio Two CSS
10. Team CSS
      -> Team Details
11. Testimonial CSS
12. Blog CSS
      -> Image hover CSS
      -> Blog Two Start
      -> Blog Full Width CSS
      -> Blog Left sidebar CSS
      -> Blog Sidebar CSS
      -> Blog Single CSS
13. Main Banner CSS
14. Page Name CSS 
15. Client CSS
16. FAQ CSS
17. Error Page CSS
18. Contact Info CSS
19. Contact CSS 
20. Footer CSS

*/


/* ==========================================================
   STREF MODERN DESIGN SYSTEM â€” Plain colors, no gradients
   Palette derived from brand logo
   Navy #0A2342 / Orange #E8770F / Blue #0F4C75 / Light #F5F7FA
   ========================================================== */
:root{
  --navy:#0A2342;
  --navy-2:#12315C;
  --navy-3:#071A33;
  --orange:#E8770F;
  --orange-hover:#D66A0A;
  --orange-deep:#FF6B00;
  --blue:#0F4C75;
  --bg-light:#F5F7FA;
  --border:#E5EAF0;
  --text:#1E293B;
  --muted:#64748B;
  --white:#ffffff;
  --radius:14px;
  --radius-sm:10px;
  --shadow:0 8px 28px rgba(10,35,66,0.08);
  --shadow-lg:0 16px 40px rgba(10,35,66,0.12);
  --font-display:'Sora','Instrument Sans',sans-serif;
  --font-body:'Inter',sans-serif;
}

/*-------------------------------------------------
 >>>>>>>>>> 01. General CSS <<<<<<<<<<
 ---------------------------------------------------*/
 h1,h2,h3,h4{font-family:var(--font-display);}
 body {
  font-family: var(--font-body);
  background: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing:antialiased;
}

/* Custom Container */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Common CSS */
 h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #222222;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 0;
  text-transform: capitalize;
}
h1 {
  font-size: 40px;
  line-height: 60px;
}
h2 {
  font-size: 36px;
  line-height: 54px;
}
h3 {
  font-size: 28px;
  line-height: 42px;
}
h4 {
  font-size: 24px;
  line-height: 36px;
}
h5 {
  font-size: 20px;
  line-height: 30px;
}
h6 {
  font-size: 16px;
  line-height: 24px;
}
p {
     margin: 0;
     padding: 0;
}
}
 a {
     margin: 0;
     padding: 0;
     text-decoration: none;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}
 a:focus, a:hover {
     text-decoration: none;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}
 ul {
     margin: 0;
     padding: 0;
}
 ul li {
     list-style-type: none;
     margin: 0;
     padding: 0;
}
 img {
     max-width: 100%;
     height: auto;
}
/* Form CSS */
 .form-control {
     height: 45px;
     margin-bottom: 30px;
     box-shadow: none;
     border: 1px solid #e4e4e4;
     -webkit-box-shadow: none;
     -moz-box-shadow: none;
     border-radius: 0px;
     -moz-border-radius: 0px;
     -webkit-border-radius: 0px;
}
 .form-control:focus {
     border-color: #999999;
     box-shadow: none;
     -webkit-box-shadow: none;
     -moz-box-shadow: none;
}
 ::-moz-selection {
    /* Code for Firefox */
     color: #ffffff;
   background: #dc6f0f;}
 ::selection {
     color: #ffffff;
   background: #dc6f0f;}
 ::-webkit-input-placeholder {
     color: #676767 !important;
}
 ::-moz-placeholder {
     color: #676767 !important;
}
 ::-o-placeholder {
     color: #676767 !important;
}
 :-ms-input-placeholder {
     color: #676767 !important;
}
 input:-moz-placeholder {
     color: #676767 !important;
}
.notification-bar form .form-control::-webkit-input-placeholder {
     color: #ffffff !important;
}
.notification-bar form .form-control::-moz-placeholder {
     color: #ffffff !important;
}
.notification-bar form .form-control::-o-placeholder {
     color: #ffffff !important;
}
.notification-bar form .form-control:-ms-input-placeholder {
     color: #ffffff !important;
}
.notification-bar form .form-control input:-moz-placeholder {
     color: #ffffff !important;
}
/* Background Over Layer CSS */
 .over-layer-black {
     position: relative;
}
 .over-layer-black:before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     background-color: rgba(34, 34, 34, 0.8);
}
 .over-layer-white {
     position: relative;
}
 .over-layer-white:before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     background-color: rgba(255, 255, 255, 0.8);
}
/* Section Title CSS */
 .title-col {
    text-align: center;
    margin-bottom: 50px;
}
.title-col h6 {
     color: #dc6f0f;
     margin-top: -5px;
}
.title-col h2 span {
    font-weight: 200;
}
.title-col h2 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: -10px;
  margin-bottom: 10px;
}
.title-bdr {
  width: 60px;
  height: 1px;
background: #dc6f0f;  margin: 0 auto;
}



/* Theme btn CSS */
 .theme-btn {
     display: inline-block;
     position: relative;
     border: none;
     border-radius: 50px;
     padding: 8px 22px 12px 25px;
     background: transparent;
     font-size: 16px;
     color: #333333;
     font-weight: 600;
     text-transform: uppercase;
     height: 50px;
     z-index: 0;
     word-spacing: 2px;
}
 .theme-btn:hover {
    background: transparent;
    color: #ffffff;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
 }
 .theme-btn i {
    font-size: 24px;
    position: relative;
    bottom: -5px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
 }
.theme-btn:hover i {
  margin-left: 5px;
  color: #ffffff;
  -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
 .theme-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 50px;
    height: 50px;
  background: #dc6f0f;    border-radius: 50px;
    opacity: 0.5;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
 }
  .theme-btn:hover:before {
    width: 100%;
    opacity: 1;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }
.btn-primary.focus, .btn-primary:focus {
  box-shadow: none;
}


/* Preloader â€” modern plain */
 #preloader {
     position: fixed;
     inset: 0;
     z-index: 99999999;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     gap: 14px;
     background: #ffffff;
 }
 #preloader::before{
     content:"";
     width:42px;height:42px;
     border:3px solid var(--border);
     border-top-color: var(--orange);
     border-radius:50%;
     animation: strefSpin 0.85s linear infinite;
 }
 #preloader::after{
     content:"Loadingâ€¦";
     font-family: var(--font-body);
     font-size:11px;letter-spacing:.6px;text-transform:uppercase;
     font-weight:700;color: var(--muted);
 }
 @keyframes strefSpin{to{transform:rotate(360deg)}}
 #preloader.preloader-hide{opacity:0;pointer-events:none;transition:opacity .28s ease}
/* Scroll To Top CSS Start */
 #dyscrollup-btn {
     z-index: 999999;
     position: fixed;
     bottom: 10px;
     right: 10px;
     cursor: pointer;
     display: none;
     color: #ffffff;
     text-align: center;
}
 #dyscrollup-btn:before {
     content: "\f0a6";
     font-family: FontAwesome;
     position: absolute;
     left: 0;
     bottom: 10px;
     color: #dc6f0f;
     font-size: 45px;
}
/* Pagination CSS */
 .my-pagination {
     text-align: center;
     display: block;
}
 .my-pagination {
     margin-top: 20px;
     margin-bottom: 30px;
}
 .my-pagination .page-link {
     color: #dc6f0f;
}
 .my-pagination .page-link:hover {
  background: #dc6f0f;    border-color: #dc6f0f;
    color: #ffffff;
 }
 .my-pagination .page-item.active .page-link {
   background: #dc6f0f;     border-color: #dc6f0f;
}
/* Default Section Padding CSS */
 .default-section {
     padding: 100px 0 70px;
}
.default-col {
  margin-bottom: 30px;
}



/*------------------------------------------------ 
    >>>>>>>>>> 02. Header CSS <<<<<<<<<< 
--------------------------------------------------*/
.header-area {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 999999;
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-area .container-fluid {
    padding: 0 150px;
}



/* Header Topbar CSS */
.header-topbar-area {
  padding: 10px 0 0;
background: #dc6f0f;}
.header-topbar-col {
  margin-bottom: 10px;
}
.header-topbar-col ul {
  padding: 0;
  margin: 0;
}
.header-topbar-col ul li {
  color: #ffffff;
  display: inline-block;
  margin-right: 20px;
}
.header-topbar-col ul li i {
  color: #ffffff;
  margin-right: 5px;
}
.topbar-social {
  text-align: right;
}
.topbar-social ul {
  padding: 0;
  margin: 0;
}
.topbar-social ul li {
  margin-right: 0;
  margin-left: 10px;
}
.topbar-social ul li a i:hover {
  color: #333333;
}


/* Header Nav CSS Start */
.header-navbar {
   
}
.header-logo {
    padding-top: 35px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-logo img {
    width: 160px;
    height: auto;
}
.logo-white {
  display: block;
}
.logo-black {
  display: none;
}
.header-area.fixed-header .logo-white {
  display: none;
}
.header-area.fixed-header .logo-black {
  display: block;
}
.stellarnav ul {
    text-align: right;
}
.stellarnav>ul>li>a {
    color: #ffffff !important;
    text-transform: capitalize;
    padding: 40px 30px;
    position: relative;
    font-weight: 400;
}
.stellarnav>ul>li:last-child a {
  padding-right: 0;
}
.stellarnav.light {
  background: transparent;
}
.stellarnav>ul>li>a:hover {
  color: #dc6f0f !important;
}
.stellarnav>ul>li.active>a {
    border-bottom-color: #dc6f0f !important;
}
.stellarnav ul ul {
    border-radius: 0;
    border: 1px solid rgba(0,0,0,.15);
    border-top: 2px solid #dc6f0f;
}
.stellarnav ul li ul li a {
    padding: 12px 15px 15px;
    border-bottom: 1px solid rgba(0,0,0,.15);
    text-transform: capitalize;
}
.stellarnav ul li ul li a:hover {
    padding-left: 20px;
    color: #dc6f0f;
    background: #f6f6f6;
}
.stellarnav ul li ul li:last-child a {
    border-bottom: none;
}
.stellarnav.light a, .stellarnav.light li a {
    color: #333333;
}

/* NavBar Fixed CSS */
.fixed-header {
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.fixed-header .header-logo {
  padding-top: 15px;
  padding-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.fixed-header .stellarnav>ul>li>a {
    padding: 25px 30px;
    color: #333333 !important;
}
.fixed-header .stellarnav>ul>li:last-child a {
  padding-right: 0;
}
.fixed-header .stellarnav>ul>li>a:before {
    top: 22px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.current-menu-item {
  border-bottom: 2px solid #dc6f0f;
}



/* Nav Search CSS */
.nav-search-col {

}
.nav-search-col ul {
  padding: 0;
  margin: 0;
  margin-top: 40px;
  text-align: right;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.nav-search-col ul li {
  display: inline-block;
  margin: 0 5px;
  border-right: 1px solid #dc6f0f;
}
.nav-search-col ul li:first-child {
  margin-left: 0;
}
.nav-search-col ul li:last-child {
  border: none;
}
.nav-search-col ul li a i {
  font-size: 20px;
  color: #dc6f0f;
}
.nav-search-col ul li:first-child a i {
  padding-right: 15px;
}
.fixed-header .nav-search-col ul {
  margin-top: 25px;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.nav-search-col .modal {
    background: #dc6f0f;
    z-index: 999999;
}
.modal-backdrop {
  z-index: 0;
}
.nav-search-col .modal .modal-content {
  border-radius: 0;

}
.nav-search-col .modal .modal-content .form-control {
  
}
.nav-search-col .modal .modal-title {
  font-size: 18px;
  font-weight: 500;
}
.nav-search-col .modal .input-group-text {
  padding: 10px 15px;
}

/* Notification Bar CSS */
.notification-bar {
  position: fixed;
  right: -400px;
  top: 0;
  z-index: 999999;
  width: 400px;
  height: 100vh;
background: #dc6f0f;  padding: 35px 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.notification-bar.highlight {
  opacity: 1;
  visibility: visible;
  right: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.notification-close {
  
}
.notification-close a i {
  font-size: 50px;
  color: #222222;
}
.notification-close a i:hover {
  color: #ffffff;
}
.notification-bar h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.notification-bar h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: 0;
  width: 50px;
  height: 1px;
  background: #222222;
}
.notification-bar p {
  margin-bottom: 5px;
  color: #ffffff;
}
.notification-bar p i {
  margin-right: 5px;
}
.notification-bar form .form-control {
  background: transparent;
  border-color: #ffffff;
  margin-bottom: 10px;
  color: #ffffff;
  border-radius: 5px;
}
.notification-bar form .btn {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 6px 25px;
  height: 45px;
  border-radius: 50px;
}
.notification-bar ul {
  padding: 0;
  margin: 0;
  text-align: left;
}
.notification-bar ul li {
  display: inline-block;
  margin: 0 5px;
  border: none;
}
.notification-bar ul li:first-child a i {
  padding: 0;
}
.notification-bar ul li a i {
  color: #ffffff;
  font-size: 18px;
}
.notification-bar ul li a i:hover {
  color: #333333;
}


/* Header Two CSS */
.header-two-area {
  position: relative;
}
.header-two-area .stellarnav>ul>li>a {
  color: #333333 !important;
  padding: 30px 30px;
}
.header-two-area .stellarnav>ul>li>a:hover {
  color: #dc6f0f !important;
}
.header-two-area .header-logo {
  padding-top: 18px;
}
.header-two-area .nav-search-col ul {
  margin-top: 28px;
}
.scroll-to-fixed {
    position: fixed;
    top:0; 
    left:0;
    width: 100%; 
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
}


/*------------------------------------------------ 
    >>>>>>>>>> 03. Slider CSS <<<<<<<<<< 
--------------------------------------------------*/
.main-slider-section {

}
.pogoSlider {
    height: 100vh;
}
.pogoSlider-dir-btn {
  z-index: 1;
  width: 30px;
  height: 30px;
}
.pogoSlider--dirBottomRight .pogoSlider-dir-btn--next, 
.pogoSlider--dirCenterHorizontal .pogoSlider-dir-btn--next, 
.pogoSlider--dirTopRight .pogoSlider-dir-btn--next {
    right: 20px;
}
.pogoSlider--dirBottomLeft .pogoSlider-dir-btn--prev, 
.pogoSlider--dirCenterHorizontal .pogoSlider-dir-btn--prev, 
.pogoSlider--dirTopLeft .pogoSlider-dir-btn--prev {
    left: 20px;
}
.pogoSlider-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pogoSlider-slide:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.4);
}
.silder-elements {
    text-align: center;
    position: relative;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999;
    padding: 0;
}
.slider-para {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-size: 15px !important;
    margin-bottom: 35px !important;
}
.slider-main-title {
    font-size: 60px !important;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.1;
    background: rgba(0,0,0,0.2);
    display: inline-block;
    padding: 5px 25px 12px;
}
.slider-main-title span {
    color: #dc6f0f;
}
.silder-elements .theme-btn {
    margin: 0 5px;
    color: #ffffff;
}
.pogoSlider--navBottom .pogoSlider-nav {
    display: none;
}

/* Slider Two Start */
.main-slider-two-section {

}
.main-slider-two-section .pogoSlider {
  height: 80vh;
}



/*------------------------------------------------ 
    >>>>>>>>>> 04. Feature CSS <<<<<<<<<< 
--------------------------------------------------*/
.feature-area {
  
}
.feature-col {
  text-align: center;
  padding: 50px 30px;
  position: relative;
  border-radius: 0;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.feature-col:hover {
  -ms-transform: scale(1.1); 
  -webkit-transform: scale(1.1); 
  transform: scale(1.1);
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.bgc-1 {
  background: #9575cd;
}
.bgc-2 {
background: #dc6f0f;}
.bgc-3 {
  background: #64b5f6;
}
.feature-col i {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.15);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.feature-col h4 {
  color: #ffffff;
}
.feature-col p {
  color: #f1f1f1;
}


/*------------------------------------------------ 
    >>>>>>>>>> 05. About CSS <<<<<<<<<< 
--------------------------------------------------*/
.about-area {
  padding-bottom: 0;
  padding-top: 0;
}
.about-area .title-col {
  text-align: left;
  margin-bottom: 30px;
}
.about-area .title-col .title-bdr {
  margin: inherit;
}
.my-signature {
  -ms-transform: rotate(-15deg); 
  -webkit-transform: rotate(-15deg); 
  transform: rotate(-15deg);
  margin-bottom: 50px;
}
.counter-box {
  margin-bottom: 30px;
}
.counter {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.counter:before {
    content: "+";
    position: absolute;
    left: 100%;
}
.counter-box p {
  text-transform: capitalize;
}

/* About CSS */
.about-two-area {
  padding: 100px 0 70px;
}
.about-box {
background: #dc6f0f;  padding: 50px 30px;
  position: relative;
  text-align: center;
}
.about-box img {
  position: relative;
  opacity: 0.3;
}
.about-box-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  text-align: center;
  padding: 50px 50px;
}
.about-box-content h2 {
  color: #ffffff;
  font-size: 80px;
  text-transform: uppercase;
}
.my-var-bdr {
  width: 1px;
  height: 50px;
  background: #ffffff;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
.about-box-content h3 {
  margin-bottom: 50px;
}
.about-box-content .theme-btn:before {
    background: #ffffff;
}
.about-box-content .theme-btn:hover {
  color: #333333;
}
.about-box-content .theme-btn:hover i {
  color: #333333;
}
.pt100 {
  padding-top: 100px;
}


/*------------------------------------------------ 
    >>>>>>>>>> 06. Separator CSS <<<<<<<<<< 
--------------------------------------------------*/
.separator-area {
  padding: 100px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.separator-area .title-col {
  text-align: left;
  margin-bottom: 30px;
}
.separator-area .title-col .title-bdr {
  margin: inherit
}
.separator-col a img {
  margin-top: 30px;
}
#html5-watermark {
    display: none !important;
}



/*------------------------------------------------ 
    >>>>>>>>>> 07. Service CSS <<<<<<<<<< 
--------------------------------------------------*/
.service-area {
  padding: 100px 0;
}
.service-col {
  text-align: center;
  padding: 80px 30px;
  background: #F6F6F6;
  margin: 1px 1px;
  position: relative;
  overflow: hidden;
}
.service-col img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  opacity: 0.6;
}
.service-col i {
  font-size: 50px;
  color: #dc6f0f;
  position: relative;
  z-index: 1;
}
.service-col h4 {
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #dc6f0f;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.service-col:hover .overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.text {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 20px 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
.readmore-icon {
  color: #ffffff;
  font-size: 30px !important;
  position: absolute !important;
  right: 50px;
  bottom: 5px;
  z-index: 0;
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.service-col:hover .readmore-icon {
  opacity: 1;
  right: 10px;
  z-index: 2;
  color: #ffffff;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.overlay-icon {
  position: absolute !important;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 2 !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 100px !important;
  color: #ffffff !important;
  opacity: 0.15;
  text-align: center;
}

/* Service Two CSS */
.service-two-area {
  padding: 100px 0 53px;
  overflow: hidden;
}
.service-particles-area {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-two-row {
    margin-top: -100px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.service-two-col {
  
}
.service-item {
  text-align: center;
  padding: 50px 30px;
  background: #F6F6F6;
}
.service-item i {
    font-size: 50px;
    color: #dc6f0f;
    position: relative;
    z-index: 1;
}
.service-item h4 {
  margin-top: 10px;
}
.service-item h4 a {
  color: #222222;
}
.service-two-area .owl-theme .owl-nav [class*=owl-] {
  background: transparent;
  color: #dc6f0f;
  padding: 0;
  font-size: 50px;
  margin: 0 20px;
  margin-top: 0;
}
.service-two-area .owl-carousel .owl-nav .owl-prev {
  position: relative;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.service-two-area .owl-carousel .owl-nav .owl-prev:before {
  content: "";
  position: absolute;
  right: -10px;
  top: 9px;
  z-index: -1;
  width: 30px;
  height: 30px;
background: #dc6f0f;  border-radius: 50px;
  opacity: 0.5;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.service-two-area .owl-carousel .owl-nav .owl-prev:hover {
  color: #ffffff;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.service-two-area .owl-carousel .owl-nav .owl-prev:hover:before {
  width: 70px;
  opacity: 1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.service-two-area .owl-carousel .owl-nav .owl-next {
  position: relative;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.service-two-area .owl-carousel .owl-nav .owl-next:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 9px;
  z-index: -1;
  width: 30px;
  height: 30px;
background: #dc6f0f;  border-radius: 50px;
  opacity: 0.5;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.service-two-area .owl-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.service-two-area .owl-carousel .owl-nav .owl-next:hover:before {
  width: 70px;
  opacity: 1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.service-item-box {
  text-align: center;
  margin-bottom: 50px;
}
.service-item-box img {
  width: 100%;
  height: auto;
}
.service-two-content {
  padding: 30px 20px 40px;
  border: 1px solid #F6F6F6;
  position: relative;
}
.service-two-content p {
  
}
.service-two-content .case-btn {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 30px;
  z-index: 0;
  text-align: center;
  display: inline-block;
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.service-item-box:hover .case-btn {
  right: 0;
  opacity: 1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.all-cases-btn {
  margin-top: 30px;
  margin-bottom: 50px;
}





/* Service Inner CSS */
.service-inner-area {
  padding: 100px 0 70px;
}
.service-inner-area .service-item {
  text-align: center;
  padding: 50px 30px;
  background: #F6F6F6;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.service-inner-area .service-item:hover {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
  -moz-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
  box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

/* Service Details CSS */
.service-details-area {
  padding: 100px 0 80px;
}
.service-details-img {
  margin-bottom: 20px;
}
.middle-img-row {
  margin-top: 30px;
}
.middle-img {
  margin-bottom: 30px;
}
.middle-img img {
  width: 100%;
}
.highlight-text {
  background: #f6f6f6;
  padding: 20px 30px;
  margin-bottom: 30px;
}
.highlight-text p {
  font-style: italic;
  font-weight: bold;
}
.service-details-col ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.service-details-col ul li:before {
  content: "\f178";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.service-details-col h4 {
  margin-bottom: 20px;
}
.service-link {
  margin-top: 30px;
}
.service-link a {
  color: #333333;
  text-transform: uppercase;
}
.service-link a:hover {
  color: #dc6f0f;
}
.service-link a i {
  font-size: 50px;
  margin-left: 10px;
  position: relative;
  top: 15px;
}
.service-link a i.arrow_carrot-left_alt2 {
  margin-right: 10px;
  margin-left: 0;
}
.my-title {
  margin-bottom: 30px;
  border-bottom: 1px solid #dcdcdc;
}
.my-category-box {
  background: #f6f6f6;
  padding: 30px 20px;
  margin-bottom: 30px;
}
.my-category-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.my-category-box ul li:hover {
  padding-left: 30px;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.my-category-box ul li:before {
  content: "\f178";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.my-category-box ul li:hover:before {
  color: #dc6f0f;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.my-category-box ul li a {
  color: #333333;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.my-category-box ul li.active:before {
  color: #dc6f0f;
}
.my-category-box ul li.active a {
  color: #dc6f0f;
}
.my-category-box ul li a:hover {
  color: #dc6f0f;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.my-contact-box {
  background: #f6f6f6;
  padding: 30px 20px;
  margin-bottom: 30px;
}
.my-contact-box ul li {
  margin-bottom: 10px;
}
.my-contact-box ul li i {
  width: 25px;
}
.my-download-box {
  background: #f6f6f6;
  padding: 30px 20px;
}
.my-download-box ul li {
  margin-bottom: 10px;
}
.my-download-box ul li a {
  color: #333333;
  padding: 15px 25px;
  border: 1px solid #dcdcdc;
  display: block;
  text-align: center;
  border-radius: 50px;
}
.my-download-box ul li a:hover {
  background: #dc6f0f;
  color: #ffffff;
}
.my-download-box ul li i {
  margin-right: 10px;
}




/*------------------------------------------------ 
    >>>>>>>>>> 08. Consultation CSS <<<<<<<<<< 
--------------------------------------------------*/
.consultation-area {
  padding: 100px 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.consultation-col {
  padding: 50px 50px;
  background: #FFFFFF;
  position: relative;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
  -moz-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
  box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
}
.consultation-col .title-col {
  text-align: left;
}
.consultation-col .title-col .title-bdr {
  margin: inherit
}




/*------------------------------------------------ 
    >>>>>>>>>> 09. Portfolio CSS <<<<<<<<<< 
--------------------------------------------------*/
.portfolio-area {

}
.portfolio-area .gallery-filters ul {
  padding: 0;
  margin: 0;
  text-align: center;
  margin-bottom: 80px;
}

.portfolio-area .gallery-filters ul li {
  display: inline-block;
  margin: 0 20px;
}

.portfolio-area .gallery-filters ul li a {
  color: #484848;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 30px;
}

.portfolio-area .gallery-filters ul li a:hover {
  color: #ffffff;
  background: #dc6f0f;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.8);
  -moz-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.8);
  box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.portfolio-area .gallery-filters ul li a.active {
  color: #ffffff;
  background: #dc6f0f;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.8);
  -moz-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.8);
  box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.portfolio-area .masonry-gallery .grid {
  width: 33.33%;
  float: left;
  padding: 0 15px;
  padding-bottom: 30px;
}

.portfolio-area .grid img {
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(60%);
  -moz-filter: grayscale(60%);
  -o-filter: grayscale(60%);
  -ms-filter: grayscale(60%);
  filter: grayscale(60%);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio-layer {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 167, 51, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.portfolio-item:hover .portfolio-layer {
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.portfolio-layer i {
  position: absolute;
  right: 0;
  left: 0;
  top: 20%;
  text-align: center;
  font-size: 48px;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.portfolio-item:hover .portfolio-layer i {
  opacity: 1;
  top: 50%;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#html5-watermark {
  display: none !important;
}

/* Portfolio Two CSS */
.portfolio-two-area {
  padding: 100px 0;
}
.portfolio-two-area .my-pagination {
  margin-top: 50px;
}
.portfolio-two-col {
  position: relative;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
/*.portfolio-two-col:hover {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
    -moz-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
    box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}*/
.portfolio-two-col img {
  width: 100%;
}
.portfolio-two-content {
    padding: 0 60px;
    background: rgba(255, 249, 241, 0.9);
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-two-col:hover .portfolio-two-content {
   height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.content-center {
  position: absolute;
  top: 10%;
  left: 0;
  z-index: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  padding: 0 50px;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-two-col:hover .content-center {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.portfolio-two-content p {
  margin-bottom: 30px;
}
.portfolio-title {
  padding: 40px 20px ;
  background: #f6f6f6;
  border-right: 1px solid #e8e8e8;
}
.portfolio-title h4 {
  margin-bottom: 0;
  color: #222222;
}
.portfolio-title h4 a {
  color: #222222;
}



/*------------------------------------------------ 
    >>>>>>>>>> 10. Team CSS <<<<<<<<<< 
--------------------------------------------------*/
.team-area {
  background: #f6f6f6;
}
.team-col {
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.team-col:hover {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
  -moz-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
  box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.team-name {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
}
.team-name h4 {
  margin-bottom: 0;
  margin-top: -10px;
  margin-bottom: 10px;
}
.team-name h4 a {
  color: #222222;
}
.vr-bdr {
  width: 1px;
  height: 20px;
background: #dc6f0f;  margin: 0 auto;
  margin-bottom: 20px;
}
.all-btn {
  text-align: center;
  margin-bottom: 30px;
}


/* Team Two CSS */
.team-two-area {

}
.team-two-area .team-name {
  background: #F6F6F6;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.team-two-area .team-col:hover .team-name {
  background: #ffffff;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}



/* Attorney Details CSS */
.team-details-area {
    padding: 100px 0 70px;
}
.team-details-col {
    margin-bottom: 30px;
}
.team-details-col img {
    width: 100%;
    height: auto;
}
.team-details-text {
    padding: 67px 30px;
    background: #f6f6f6;
    margin-bottom: 30px;
}
.team-details-text h4 {
    margin-bottom: 0;
}
.team-details-text span {
    font-style: italic;
    color: #999999;
}
.my-reatings {
    margin-bottom: 30px;
}
.my-reatings i {
    color: #FFC41B;
}
.my-info {

}
.my-info ul li {
    color: #333333;
    margin-bottom: 5px;
}
.my-info ul li a {
    color: #333333;
}
.my-info ul li i {
    width: 20px;
    margin-right: 10px;
}
.details-social {
    margin-top: 30px;
}
.details-social ul li {
    display: inline-block;
    margin-right: 5px;
}
.details-social ul li a i {
    width: 45px;
    height: 45px; 
    color: #ffffff;
    text-align: center;
    line-height: 45px;
    background: #dc6f0f;
    /*opacity: 0.6;*/
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.details-social ul li a i:hover {
    color: #dc6f0f;
    background: #ffffff;
    opacity: 1;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.team-details-col h4 {

}
.team-details-col h4 span {
    color: #dc6f0f;
}
.team-area-inner {
    background: #F6F6F6;
    padding: 100px 0 100px;
}
.team-area-inner .team-col {
    margin-bottom: 0;
}
.team-area-inner .owl-theme .owl-nav [class*=owl-] {
    background: #dc6f0f;
    padding: 5px 18px;
    margin-bottom: 0;
    margin-top: 30px;
    border-radius: 0;
}
.team-area-inner .owl-theme .owl-nav [class*=owl-]:hover {
    background: #dc6f0f;
}
 .team-area-inner .owl-carousel .owl-nav .owl-prev {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
 }
.team-area-inner .owl-carousel .owl-nav .owl-next {
    -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
 }




/*------------------------------------------------ 
    >>>>>>>>>> 11. Testimonial CSS <<<<<<<<<< 
--------------------------------------------------*/
.testimonial-area {
  padding: 100px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.testimonial-area .testimonial-col {
  text-align: center;
}
.testimonial-area .testimonial-col .testimonial-item p {
  font-weight: normal;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-area .testimonial-col .testimonial-item h6 {
  font-size: 16px;
  font-weight: normal;
  color: #555555;
  margin-bottom: 0;
  margin-bottom: 10px;
}
.testimonial-area .testimonial-col .carousel-indicators {
  margin: 0;
  padding: 0;
  position: relative;
  margin-bottom: 40px;
}
.testimonial-area .testimonial-col .carousel-indicators li {
  background: transparent;
  display: inline-grid;
  width: 80px;
  height: auto;
  margin: 0 10px;
  margin-top: 0;
  border-top: none;
}
.testimonial-area .testimonial-col .carousel-indicators li img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 1px solid #dc6f0f;
}
.testimonial-area .testimonial-col .carousel-control-next, .testimonial-area .testimonial-col .carousel-control-prev {
  display: none;
}

.testimonial-area .carousel-indicators li.active {
  width: 100px !important;
  position: relative;
}

.testimonial-area .carousel-indicators li.active:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  z-index: 0;
  margin-left: -15px;
  width: 30px;
  height: 20px;
background: #dc6f0f;  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}



/*------------------------------------------------ 
    >>>>>>>>>> 12. Blog CSS <<<<<<<<<< 
--------------------------------------------------*/
.blog-area {
  background: #f6f6f6;
}
.blog-col {
  background: #ffffff;
  overflow: hidden;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-col:hover {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
  -moz-box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
  box-shadow: 0px 0px 30px 0px rgba(255, 167, 51, 0.3);
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-img img {
  width: 100%;
  height: auto;
}
.blog-col-content {
  padding: 30px 20px;
  border-left: 5px solid #dc6f0f;
}
.blog-col-content h4 {
  margin-bottom: 10px;
}
.blog-col-content h4 a {
  color: #222222;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-col-content h4 a:hover {
  color: #dc6f0f;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-col-content ul {
  margin: 0;
  padding: 0;
}
.blog-col-content ul li {
  display: inline-block;
  margin-right: 20px;
}
.blog-col-content ul li i {
  margin-right: 8px;
  color: #999999;
}
.blog-col-content ul li a {
  color: #333333;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-col-content ul li a:hover {
  color: #dc6f0f;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-col-content .theme-btn {
  margin-top: 20px;
}
/* Image hover CSS */
.blog-col figure {
    position: relative;
    overflow: hidden;
    margin: 0;
}
.blog-col figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 167, 51, 0) 0%, rgba(255, 167, 51, 0.2) 100%);
    background: linear-gradient(to right, rgba(255, 167, 51, 0) 0%, rgba(255, 167, 51, 0.2) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.blog-col:hover figure:before {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
.blog-col figure img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.blog-col:hover figure img {
    -ms-transform: scale(1.05); 
    -webkit-transform: scale(1.05); 
    transform: scale(1.05);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.blog-col p {
  margin-top: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}





/* Blog Two Start */
.blog-two-area {

}
.blog-two-area .owl-theme .owl-nav [class*=owl-] {
  background: transparent;
  color: #dc6f0f;
  padding: 0;
  font-size: 50px;
  margin: 0 20px;
  margin-top: 30px;
}
.blog-two-area .owl-carousel .owl-nav .owl-prev {
  position: relative;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-two-area .owl-carousel .owl-nav .owl-prev:before {
  content: "";
  position: absolute;
  right: -10px;
  top: 9px;
  z-index: 0;
  width: 30px;
  height: 30px;
background: #dc6f0f;  border-radius: 50px;
  opacity: 0.5;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-two-area .owl-carousel .owl-nav .owl-prev:hover {
  color: #ffffff;
  z-index: 2;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-two-area .owl-carousel .owl-nav .owl-prev:hover:before {
  width: 70px;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-two-area .owl-carousel .owl-nav .owl-next {
  position: relative;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-two-area .owl-carousel .owl-nav .owl-next:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 9px;
  z-index: 0;
  width: 30px;
  height: 30px;
background: #dc6f0f;  border-radius: 50px;
  opacity: 0.5;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-two-area .owl-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  z-index: 2;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-two-area .owl-carousel .owl-nav .owl-next:hover:before {
  width: 70px;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.blog-three-area {

}
.blog-three-area .owl-carousel .owl-nav .owl-next:before {
  display: none;
}
.blog-three-area .owl-carousel .owl-nav .owl-prev:before {
  display: none;
}


/* Blog Full Width CSS */
.blog-full-wd-area {
  background: #ffffff;
}
.blog-full-wd-area .blog-col {
  margin-bottom: 50px;
  background: #f6f6f6;
}
.blog-full-wd-area .blog-col:hover {
  background: #ffffff;
}



/* Blog Left sidebar CSS */
.blog-img-slider {
  position: relative;
  margin-bottom: -10px;
}
.blog-area .owl-theme .owl-nav [class*=owl-] {
    padding: 5px 10px;
    border-radius: 0;
    color: #ffffff;
    font-size: 20px;
  background: #dc6f0f;}
.blog-area .owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.blog-area .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* Blog Sidebar CSS */
.sidebar-col {
    margin-bottom: 30px;
}
.sidebar-col .sidebar-search-box {
    margin-bottom: 50px;
}
.sidebar-search-box .input-group-text {
    padding-left: 20px;
    padding-right: 20px;
  background: #dc6f0f;    border: none;
    color: #ffffff;
    font-size: 25px;
}
.sidebar-search-box .form-control {
    border: none;
    background: transparent;
    border-bottom: 1px solid #dc6f0f;
}
.sidebar-title {
    margin-bottom: 30px;
    margin-top: -5px;
    position: relative;
}
.sidebar-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  z-index: 0;
  width: 60px;
  height: 1px;
background: #dc6f0f;
}
.sidebar-title h4 {
    margin-bottom: 0;
}
.categories-box {
    margin-bottom: 50px;
}
.categories-box ul li {
    display: block;
}
.categories-box ul li a {
    color: #333333;
    text-transform: capitalize;
    padding: 10px 0;
    border-bottom: 1px solid #dddddd;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.categories-box ul li a:hover {
    padding: 10px 15px;
    color: #ffffff;
  background: #dc6f0f;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.categories-box ul li a span {
    float: right;
}
.recent-post-box {
    margin-bottom: 50px;
}
.recent-post-box ul li {
    position: relative;
    padding-left: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
}
.recent-post-box ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    height: 80px;
}
.recent-post-box ul li img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 80px;
    height: 80px;
}
.recent-post-box ul li h5 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
}
.recent-post-box ul li h5 a {
    color: #222222;
    padding-bottom: 50px;
}
.recent-post-box ul li span a {
    color: #969696;
}
.popular-tags {

}
.popular-tags ul li {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 2px;
    height: 35px;
}
.popular-tags ul li a {
    color: #ffffff;
  background: #dc6f0f;    padding: 8px 12px;
    text-transform: uppercase;
}



/* Blog Single CSS */
.blog-single-area {

}
.blog-single-top {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dddddd;
}
.blog-single-top img {
    margin-bottom: 30px;
}
.blog-single-top ul li {
    display: inline-block;
    margin-right: 20px;
}
.blog-single-top ul li i {
    margin-right: 5px;
    color: #969696;
}
.blog-single-top ul li a {
    text-transform: capitalize;
    color: #555555;
}
.blog-single-col p {
    margin-bottom: 30px;
}
.millde-img {
    margin-bottom: 30px;
}
.millde-text {
    margin-bottom: 30px;
}
.millde-text p {
    margin-top: 0;
    font-weight: bold;
    font-style: italic;
    padding: 20px 20px;
    background: #f6f6f6;
    /*color: #f6f6f6;*/
}
.middle-slider {
    position: relative;
    margin-bottom: 30px;
}
.share-links {
    margin-bottom: 50px;
    padding: 30px 20px;
    background: #f6f6f6;
  }
.share-links h4 {
    font-size: 18px;
    margin-bottom: 0;
    padding-bottom: 10px;
    position: relative;
}
.share-links h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 0;
    width: 30px;
    height: 1px;
    background: #dc6f0f;
}
.share-links h4 i {
    margin-left: 5px;
    color: #dc6f0f;
}
.share-links ul {
    margin: 0;
    padding: 0;
    text-align: right;
}
.share-links ul li {
    display: inline-block;
    margin-right: 5px;
}
.share-links ul li i {
    color: #ffffff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #dc6f0f;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.share-links ul li i:hover {
    background: #dc6f0f;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.comments-col {
    margin-bottom: 50px;
    border-bottom: 1px solid #dddddd;
}
.comments-col h4 {
    font-size: 20px;
    margin-bottom: 50px;
}
.comment-box {
    position: relative;
    padding-left: 120px;
    margin-bottom: 50px;
    min-height: 100px;
}
.comment-box img {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 85%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 85%);
}
.comment-box h6 {
    margin-bottom: 0;
}
.comment-box h6 span {
  float: right;
}
.comment-box h6 span a i {
  color: #dc6f0f;
}
.comment-box p {
    margin-top: 10px;
}
.left-space {
    margin-left: 120px;
}
.comment-wright-col {
    margin-bottom: 30px;
}
.comment-wright-col h4 {
    font-size: 24px;
    margin-bottom: 50px;
}
.comment-wright-col .theme-btn {
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.comment-wright-col .theme-btn:hover {
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}




/*------------------------------------------------ 
    >>>>>>>>>> 13. Main Banner CSS <<<<<<<<<< 
--------------------------------------------------*/
.main-banner-area {
  padding: 250px 0;
  background-size: cover;
  background-position: 50% 0%;
  background-repeat: no-repeat;
}
.main-banner-col {

}
.main-banner-col h1 {
  font-size: 80px;
  line-height: 100px;
  margin-bottom: 30px;
}
.main-banner-col h1 span {
  color: #dc6f0f;
}
.main-banner-col h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}


/*------------------------------------------------ 
    >>>>>>>>>> 14. Page Name CSS <<<<<<<<<< 
--------------------------------------------------*/
.page-name-area {
  padding: 120px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-name-col {
  text-align: center;
  padding: 50px 20px;
  background: rgba(177, 151, 107, 0.1);
}
.page-name-col h2 {
  /*color: #dc6f0f;*/
  font-size: 40px;
}
.page-name-col p {
  color: #dc6f0f;
}
.page-name-col p a {
  color: #dc6f0f;
  text-transform: capitalize;
}
.page-name-col p a:hover {
  color: #dc6f0f;
}




/*------------------------------------------------ 
    >>>>>>>>>> 15. Client CSS <<<<<<<<<< 
--------------------------------------------------*/
.client-area {
  padding: 50px 0 20px;
}
.client-two-area {
  border-top: 1px solid #e8e8e8;
}




/*------------------------------------------------ 
    >>>>>>>>>> 16. FAQ CSS <<<<<<<<<< 
--------------------------------------------------*/
.faq-area {
    padding: 100px 0 70px;
}
.faq-btn-col {
    margin-bottom: 30px;
}
.faq-btn-col .nav-pills .nav-link {
    border-radius: 0;
    background: #F6F6F6;
    color: #333333;
    padding: 10px 10px;
    text-align: center;
}
.faq-btn-col .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background: #dc6f0f;    padding: 25px 10px;
    font-weight: bold;
    font-size: 18px;
}
.faq-col {

}
.question-box {
    background: #f6f6f6;
    padding: 20px 20px;
    margin-bottom: 30px;
}
.question-box h5 {
    font-size: 18px;
}




/*------------------------------------------------ 
    >>>>>>>>>> 17. Error Page CSS <<<<<<<<<< 
--------------------------------------------------*/
.error-area {
    padding: 100px 0 160px;
}
.error-col {
    text-align: center;
}
#clip{ 
    font-size: 200px;
    line-height: 1.2;
    background: url(../images/bg/4.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
}
.error-col h2 {
    font-size: 30px;
    margin-bottom: 40px;
}



/*------------------------------------------------ 
    >>>>>>>>>> 18. Contact Info CSS <<<<<<<<<< 
--------------------------------------------------*/
.contact-info-area {
    padding: 100px 0 70px;
}
.contact-item {
    margin-bottom: 30px;
    text-align: center;
    background: #F6F6F6;
    padding: 80px 20px;
    position: relative;
}
.contact-icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 0;
  opacity: 0.03;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.contact-icon i {
  font-size: 200px;
}
.info-content {
  position: relative;
  z-index: 2;
}


/*------------------------------------------------ 
    >>>>>>>>>> 19. Contact CSS <<<<<<<<<< 
--------------------------------------------------*/
.contact-area {
    padding: 100px 0 70px;
    background: #f6f6f6;
}
.contact-col {
    margin-bottom: 30px;
}
.contact-col h4 {
    margin-bottom: 20px;
    margin-top: -10px;
}
.contact-col #map {
    width: 100%;
    height: 365px;
}
.contact-col .theme-btn:before {
  width: 100%;
}




/*------------------------------------------------ 
    >>>>>>>>>> 20. Footer CSS <<<<<<<<<< 
--------------------------------------------------*/
.footer-area {
  background: #202020;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-area.default-section {
  padding-bottom: 0;
}
.footer-area .widget {
  margin-bottom: 30px;
}
.footer-area .widget-title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.footer-about p {
  color: #cacaca;
}
.footer-about img {
  margin-bottom: 30px;
}
.footer-info {
  margin-top: 30px;
}
.footer-info h6 {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}
.footer-info p {
  color: #cacaca;
  margin-bottom: 5px;
}
.footer-info i {
  margin-right: 0;
  width: 25px;
}
.footer-links {

}
.footer-links ul {
  margin: 0;
  padding: 0;
}
.footer-links ul li {
  color: #cacaca;
  margin-bottom: 15px;
}
.footer-links ul li:hover {
  color: #dc6f0f;
}
.footer-links ul li a {
  margin-left: 5px;
  color: #cacaca;
}
.footer-links ul li a:hover {
  color: #dc6f0f;
}
.my-post {

}
.post {
  position: relative;
  padding-left: 95px;
  margin-bottom: 12px;
  min-height: 80px;
}
.post img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 80px;
  height: 80px;
}
.post a {
  color: #cacaca;
  position: relative;
  top: -5px;
}
.post a:hover {
  color: #dc6f0f;
}
.post p {
  color: #8e8e8e;
  margin-top: 5px;
  position: relative;
  top: -5px;
}
.my-gallery {

}
.my-gallery ul {
  padding: 0;
  margin: 0;
}
.my-gallery ul li {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 4px;
}
.copyright {
  padding: 30px 0 20px;
  border-top: 1px solid #303030;
  margin-top: 60px;
}
.copyright-col {
  margin-bottom: 10px;
  text-align: center;
}
.copyright-col p {
  font-size: 11px;
  color: #6f6f6f;
}
.copyright-col p a {
  color: #dc6f0f;
}
.copyright-col ul {
  margin: 0;
  padding: 0;
  text-align: left;
}
.copyright-col ul li {
  display: inline-block;
  margin-left: 10px;
}


.error1{
  color:white;
  background-color:red;
  text-align: center; 
  padding:5px;
  font-size: 20px;
  }
.success1{
  color:white;
  background-color:green;
  text-align: center; 
  padding:5px;
  font-size: 20px;
  }


   /* ===================================
3. Responsive media
==================================== */

.video-container, .map-container, .embed-container {
  position: relative;
  margin: 0 0 15px 0;
  padding-bottom: 51%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  border: none;
}

.embed-container iframe, .embed-container object, .embed-container embed, .video-container iframe, .map-container iframe, .map-container object, .map-container embed, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

iframe {
  border: none;
}

img.img-polaroid {
  margin: 0 0 20px 0;
}

.img-box {
  max-width: 100%;
}

/* ==========================================================
   STREF MODERN OVERRIDES â€” Plain flat colors only
   ========================================================== */

/* --- Header Modern --- */
.stref-header{position:relative;z-index:999;}
.stref-topbar{background:var(--navy);color:#fff;font-size:13px;line-height:1;}
.stref-topbar-inner{display:flex;justify-content:space-between;align-items:center;padding:10px 0;gap:16px;flex-wrap:wrap;}
.stref-topbar-left{display:flex;gap:18px;align-items:center;flex-wrap:wrap;}
.stref-topbar-left .topbar-item{color:#E2E8F0;display:flex;gap:6px;align-items:center;letter-spacing:.1px;}
.stref-topbar-left .topbar-item i{color:var(--orange);font-size:13px;}
.stref-topbar-right{display:flex;gap:10px;align-items:center;}
.stref-topbar-right .topbar-label{color:#94A3B8;font-size:12px;letter-spacing:.4px;text-transform:uppercase;margin-right:4px;}
.stref-topbar-right a{width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(255,255,255,0.08);color:#fff;font-size:13px;transition:.2s;}
.stref-topbar-right a:hover{background:var(--orange);color:#fff;transform:translateY(-1px);}
.hide-sm{display:inline-flex;} .hide-md{display:inline-flex;}

/* Navbar */
.stref-navbar{background:#fff;border-bottom:1px solid var(--border);position:relative;}
.stref-navbar.stuck,.stref-navbar.scroll-to-fixed-fixed{background:#fff;box-shadow:0 4px 20px rgba(10,35,66,0.06);}
.stref-navbar-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:72px;}
.stref-logo{display:flex;align-items:center;gap:10px;text-decoration:none;flex-shrink:0;}
.stref-logo img{height:42px;width:auto;}
.stref-logo .logo-text{display:flex;flex-direction:column;line-height:1;}
.stref-logo .logo-text strong{font-size:18px;font-weight:800;letter-spacing:.4px;color:var(--navy);text-transform:uppercase;}
.stref-logo .logo-text em{font-style:normal;font-size:11px;letter-spacing:.6px;text-transform:uppercase;color:var(--muted);font-weight:600;margin-top:1px;}
.stref-navbar .stellarnav{flex:1;display:flex;justify-content:center;}
.stref-navbar .stellarnav>ul>li>a{color:var(--text)!important;padding:22px 11px!important;font-size:13.5px!important;font-weight:500!important;letter-spacing:.15px;position:relative;white-space:nowrap;}
.stref-navbar .stellarnav>ul>li>a:after{content:"";position:absolute;left:11px;right:11px;bottom:13px;height:2px;background:var(--orange);transform:scaleX(0);transform-origin:left;transition:.22s;}
.stref-navbar .stellarnav>ul>li>a:hover{color:var(--orange)!important;}
.stref-navbar .stellarnav>ul>li>a:hover:after{transform:scaleX(1);}
.stref-navbar .stellarnav ul ul{border:1px solid var(--border)!important;border-top:3px solid var(--orange)!important;box-shadow:var(--shadow);min-width:210px;}
.stref-navbar .stellarnav ul li ul li a{color:var(--text)!important;font-size:13.5px!important;padding:11px 16px!important;}
.stref-navbar .stellarnav ul li ul li a:hover{color:var(--orange)!important;background:var(--bg-light)!important;padding-left:20px!important;}

.stref-nav-actions{display:flex;align-items:center;gap:10px;flex-shrink:0;}
.btn-nav-primary{background:var(--orange);color:#fff!important;padding:10px 18px;border-radius:8px;font-size:13.5px;font-weight:600;letter-spacing:.2px;border:1px solid var(--orange);display:inline-flex;align-items:center;transition:.2s;text-decoration:none;white-space:nowrap;}
.btn-nav-primary:hover{background:var(--orange-hover);border-color:var(--orange-hover);color:#fff!important;transform:translateY(-1px);}
.btn-nav-outline{border:1.5px solid var(--border);color:var(--navy)!important;padding:9px 14px;border-radius:8px;font-size:13px;font-weight:600;background:#fff;transition:.2s;text-decoration:none;}
.btn-nav-outline:hover{border-color:var(--navy);color:var(--navy)!important;background:var(--bg-light);}
.btn-quick-support{width:40px;height:40px;border-radius:8px;border:1px solid var(--border);background:#fff;color:var(--navy);display:inline-flex;align-items:center;justify-content:center;font-size:20px;transition:.2s;}
.btn-quick-support:hover{background:var(--navy);color:#fff;border-color:var(--navy);}

/* Notification panel modern */
.notification-bar{background:var(--navy)!important;padding:28px 24px!important;width:360px!important;right:-380px!important;box-shadow:-8px 0 30px rgba(0,0,0,.18);}
.notification-bar.highlight{right:0!important;}
.notification-bar h4{color:#fff!important;font-size:13px!important;letter-spacing:.5px;text-transform:uppercase;font-weight:700!important;}
.notification-bar h4:before{background:var(--orange)!important;}
.notification-bar p{color:#CBD5E1!important;font-size:14px;}
.notification-bar .form-control{background:rgba(255,255,255,.08)!important;border:1px solid rgba(255,255,255,.18)!important;color:#fff!important;border-radius:8px!important;}
.notification-bar .btn{background:var(--orange)!important;border:none!important;border-radius:8px!important;font-weight:600!important;width:100%;}
.notification-bar ul li a i{color:#CBD5E1!important;}
.notification-bar ul li a i:hover{color:var(--orange)!important;}

/* Hide old header styles */
.header-area,.header-two-area,.header-topbar-area,.main-nav{display:none!important;}
/* Keep stellarnav light background transparent */
.stellarnav.light{background:transparent!important;}

/* --- Hero ULTRA unique â€” deep, aesthetic, plain flat --- */
.stref-hero-wrap{background:var(--navy);position:relative;overflow:hidden;border-bottom:none;isolation:isolate;}
/* layered plain shapes â€” no gradients */
.stref-hero-wrap::before{content:"";position:absolute;top:-140px;right:-120px;width:620px;height:620px;background:var(--orange);opacity:1;border-radius:50%;pointer-events:none;z-index:0;}
.stref-hero-wrap::after{content:"";position:absolute;left:-90px;bottom:-110px;width:460px;height:460px;border:1px solid rgba(255,255,255,0.13);border-radius:50%;pointer-events:none;z-index:0;}
.hero-watermark{position:absolute;left:50%;top:52%;transform:translate(-50%,-50%) rotate(-6deg);font-family:var(--font-display);font-size:220px;font-weight:800;letter-spacing:-8px;color:#fff;opacity:0.04;pointer-events:none;white-space:nowrap;z-index:0;}
.dot-field{background-image: radial-gradient(rgba(255,255,255,0.10) 1.2px, transparent 1.2px);background-size:22px 22px;background-position:0 0; }
.stref-hero-wrap .pogoSlider{height:auto!important;min-height:620px;padding-bottom:0!important;background:transparent!important;}
.stref-hero-wrap .pogoSlider-slide{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;background:transparent!important;display:flex!important;align-items:center!important;}
.stref-hero-wrap .pogoSlider-slide:before{display:none!important;}
.stref-hero-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:56px;align-items:center;min-height:620px;padding:72px 0 56px;position:relative;z-index:1;}
.stref-hero-content{padding-right:8px;position:relative;z-index:1;}
/* kicker / badge */
.hero-kicker,.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.09);border:1px solid rgba(255,255,255,0.16);color:#fff;font-family:var(--font-body);font-size:11px;font-weight:700;letter-spacing:.7px;text-transform:uppercase;padding:7px 12px;border-radius:100px;margin-bottom:18px;backdrop-filter:blur(8px);}
.hero-kicker::before,.hero-badge::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 6px rgba(232,119,15,0.18);flex-shrink:0;}
.hero-title{font-family:var(--font-display)!important;font-size:48px!important;line-height:1.02!important;font-weight:800!important;letter-spacing:-1.4px!important;color:#fff!important;margin-bottom:16px!important;}
.hero-title em,.hero-title span{font-style:normal;color:var(--orange)!important;}
.hero-desc{color:#CBD5E1!important;font-family:var(--font-body);font-size:16.5px!important;line-height:1.7!important;font-weight:400!important;max-width:520px;margin-bottom:26px!important;}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:28px;}
.hero-cta .hero-primary,.hero-primary{background:var(--orange)!important;border:1px solid var(--orange)!important;color:#fff!important;border-radius:100px!important;padding:14px 24px!important;font-family:var(--font-display);font-size:14px!important;font-weight:700!important;letter-spacing:.2px;display:inline-flex;align-items:center;gap:8px;box-shadow:0 10px 24px rgba(232,119,15,0.30);text-decoration:none;transition:.22s;}
.hero-cta .hero-primary:hover{background:var(--orange-hover)!important;transform:translateY(-2px);box-shadow:0 14px 30px rgba(232,119,15,0.34);}
.hero-cta .hero-secondary,.hero-secondary{background:rgba(255,255,255,0.08)!important;border:1px solid rgba(255,255,255,0.18)!important;color:#fff!important;border-radius:100px!important;padding:14px 24px!important;font-family:var(--font-display);font-size:14px!important;font-weight:600!important;display:inline-flex;align-items:center;gap:8px;backdrop-filter:blur(8px);text-decoration:none;transition:.22s;}
.hero-cta .hero-secondary:hover{background:#fff!important;color:var(--navy)!important;transform:translateY(-2px);}
.hero-stats,.hero-proof{display:flex;align-items:center;gap:0;background:#fff;border:none;border-radius:16px;padding:16px 18px;max-width:480px;box-shadow:0 16px 32px rgba(0,0,0,0.18);overflow:hidden;}
.hero-stats .stat,.proof-item{flex:1;text-align:center;padding:0 10px;position:relative;}
.hero-stats .stat + .stat::before,.proof-item + .proof-item::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:1px;height:42px;background:var(--border);}
.hero-stats .stat strong,.proof-item strong{display:block;font-family:var(--font-display);font-size:17px;font-weight:800;color:var(--navy);line-height:1;letter-spacing:-.4px;}
.hero-stats .stat span,.proof-item span{display:block;font-family:var(--font-body);font-size:10.5px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;color:var(--muted);margin-top:4px;}
.stref-hero-visual{position:relative;display:flex;align-items:center;justify-content:center;padding:10px;z-index:1;}
.hero-frame{display:none;}
.hero-card{position:relative;width:100%;max-width:480px;background:#fff;border:none;border-radius:24px;overflow:hidden;box-shadow:0 24px 48px rgba(0,0,0,0.28);transform:rotate(0.6deg);}
.hero-card::before{content:"";position:absolute;inset:10px 10px auto auto;width:88px;height:88px;background:var(--orange);opacity:0.12;border-radius:50%;pointer-events:none;z-index:1;}
.hero-card img{width:100%;height:400px;object-fit:cover;display:block;}
.ribbon{position:absolute;top:14px;right:14px;z-index:2;background:var(--orange);color:#fff;font-family:var(--font-display);font-size:11px;font-weight:800;letter-spacing:.6px;text-transform:uppercase;padding:7px 11px;border-radius:100px;box-shadow:0 6px 14px rgba(0,0,0,0.16);}
.hero-card-caption{position:absolute;left:14px;bottom:14px;right:14px;z-index:2;background:rgba(255,255,255,0.96);border:1px solid var(--border);border-radius:14px;padding:12px 14px;display:flex;flex-direction:column;gap:2px;box-shadow:0 12px 24px rgba(10,35,66,0.14);}
.hero-card-caption strong{font-family:var(--font-display);font-size:13px;font-weight:800;color:var(--navy);line-height:1.1;letter-spacing:-.2px;}
.hero-card-caption span{font-family:var(--font-body);font-size:11px;font-weight:600;letter-spacing:.3px;text-transform:uppercase;color:var(--muted);}
.hero-img-card{position:relative;width:100%;max-width:480px;background:#fff;border:none;border-radius:24px;overflow:hidden;box-shadow:0 24px 48px rgba(0,0,0,0.28);}
.hero-img-card img{width:100%;height:400px;object-fit:cover;display:block;}
.hero-float-card{position:absolute;left:14px;bottom:14px;background:#fff;border:1px solid var(--border);border-radius:14px;padding:12px 14px;display:flex;align-items:center;gap:12px;box-shadow:0 12px 24px rgba(10,35,66,0.18);min-width:200px;}
.hero-float-card i{width:42px;height:42px;border-radius:10px;background:var(--navy);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;}
/* Slider controls for deep bg */
.stref-hero-wrap .pogoSlider-dir-btn{width:46px!important;height:46px!important;border-radius:50%!important;border:1px solid rgba(255,255,255,0.18)!important;background:rgba(255,255,255,0.08)!important;color:#fff!important;backdrop-filter:blur(8px);box-shadow:none!important;transform:none!important;}
.stref-hero-wrap .pogoSlider-dir-btn:hover{background:#fff!important;border-color:#fff!important;color:var(--navy)!important;}
.stref-hero-wrap .pogoSlider-progressBar{background:rgba(255,255,255,0.12)!important;height:3px!important;top:auto!important;bottom:0!important;}
.stref-hero-wrap .pogoSlider-progressBar-duration{background:var(--orange)!important;}
/* Keep old slider elements hidden unless used elsewhere */
.silder-elements{max-width:780px;margin:0 auto;padding:0 20px;}

/* Countdown bar modern */
.countdown-bar{background:var(--bg-light);border:1px solid var(--border);border-radius:12px;padding:18px 20px;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin:-28px auto 36px;position:relative;z-index:2;max-width:980px;box-shadow:var(--shadow);}
.countdown-bar a{color:var(--navy);font-weight:600;font-size:14px;text-decoration:none;}
.countdown-bar .btn-success.theme-btn{background:var(--navy)!important;border:1px solid var(--navy)!important;color:#fff!important;border-radius:8px!important;}
.countdown-bar .btn-success.theme-btn:hover{background:var(--navy-2)!important;}

/* --- About Modern --- */
.about-two-area{padding:80px 0 60px!important;}
.title-col h6{color:var(--orange)!important;font-size:12px!important;letter-spacing:1.2px!important;text-transform:uppercase!important;font-weight:700!important;margin-bottom:8px!important;}
.title-col h2{font-size:30px!important;line-height:1.2!important;font-weight:800!important;letter-spacing:-.4px!important;color:var(--navy)!important;text-transform:none!important;}
.title-bdr{background:var(--orange)!important;height:3px!important;width:48px!important;border-radius:2px;}
.about-box{background:var(--navy)!important;border-radius:16px!important;padding:36px 28px!important;overflow:hidden;position:relative;box-shadow:var(--shadow);}
.about-box:after{content:"";position:absolute;right:-40px;top:-40px;width:140px;height:140px;border:1px solid rgba(255,255,255,0.08);border-radius:50%;}
.about-box img{opacity:.10!important;}
.about-box-content h2{font-size:56px!important;font-weight:800!important;letter-spacing:1px!important;}
.my-var-bdr{background:rgba(255,255,255,.35)!important;height:40px!important;width:1px!important;}
.about-box-content h3{color:#E2E8F0!important;font-size:18px!important;font-weight:600!important;line-height:1.4!important;}
.about-box-content .theme-btn{background:#fff!important;color:var(--navy)!important;border-radius:8px!important;}
.about-box-content .theme-btn:before{display:none!important;}
.about-box-content .theme-btn:hover{background:var(--orange)!important;color:#fff!important;}
.counter-box{text-align:left;background:#fff;border:1px solid var(--border);border-radius:12px;padding:18px 16px;}
.counter{color:var(--navy)!important;font-size:28px!important;font-weight:800!important;line-height:1!important;}
.counter:before{color:var(--orange);}
.counter-box p{color:var(--muted)!important;font-size:12px!important;font-weight:600!important;letter-spacing:.5px!important;text-transform:uppercase!important;margin-top:6px!important;}

/* Separator */
.separator-area{padding:80px 0!important;background-color:var(--navy)!important;position:relative;}
.separator-area:before{content:"";position:absolute;inset:0;background:rgba(10,35,66,0.72);}
.separator-area .container{position:relative;z-index:1;}
.separator-area .title-col h2{color:#fff!important;}
.separator-area .title-col h2 small{color:var(--orange)!important;font-size:13px;letter-spacing:.6px;text-transform:uppercase;font-weight:700;}
.separator-area p{color:#CBD5E1!important;}
.separator-col a img{filter:brightness(0) invert(1);}

/* Service */
.service-two-area{padding:70px 0 40px!important;background:var(--bg-light);}
.service-particles-area{display:none!important;}
.service-two-row{margin-top:0!important;}
.service-item-box{background:#fff;border:1px solid var(--border);border-radius:14px;overflow:hidden;transition:.22s;box-shadow:0 2px 10px rgba(10,35,66,0.04);}
.service-item-box:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--orange);}
.service-item-box img{height:200px;object-fit:cover;transition:.3s;}
.service-item-box:hover img{transform:scale(1.03);}
.service-two-content{padding:20px 18px 26px!important;border:none!important;}
.service-two-content h4{font-size:16px!important;font-weight:700!important;color:var(--navy)!important;line-height:1.3!important;margin-bottom:8px!important;}
.service-two-content p{color:var(--muted)!important;font-size:14px!important;line-height:1.6!important;}
.service-two-content .case-btn{position:static!important;opacity:1!important;margin-top:14px;text-align:left!important;}
.service-two-content .case-btn .theme-btn{background:var(--navy)!important;color:#fff!important;border-radius:8px!important;padding:9px 16px!important;height:auto!important;font-size:13px!important;text-transform:none!important;}
.service-two-content .case-btn .theme-btn:before{display:none!important;}
.service-two-content .case-btn .theme-btn:hover{background:var(--orange)!important;}
.service-two-area .owl-theme .owl-nav [class*=owl-]{background:#fff!important;border:1px solid var(--border)!important;color:var(--navy)!important;width:44px;height:44px;border-radius:50%!important;display:inline-flex;align-items:center;justify-content:center;font-size:22px!important;box-shadow:var(--shadow);}
.service-two-area .owl-theme .owl-nav [class*=owl-]:hover{background:var(--orange)!important;border-color:var(--orange)!important;color:#fff!important;}
.service-two-area .owl-carousel .owl-nav .owl-prev:before,.service-two-area .owl-carousel .owl-nav .owl-next:before{display:none!important;}

/* Client area */
.client-area{background:#fff;border-top:1px solid var(--border);padding:28px 0 18px!important;}
.client-slider .item img{filter:grayscale(1);opacity:.7;transition:.2s;max-height:42px;object-fit:contain;}
.client-slider .item:hover img{filter:none;opacity:1;}

/* Buttons global plain */
.theme-btn{border-radius:10px!important;background:var(--orange)!important;color:#fff!important;border:1px solid var(--orange)!important;transition:.2s!important;}
.theme-btn:before{display:none!important;}
.theme-btn:hover{background:var(--orange-hover)!important;border-color:var(--orange-hover)!important;color:#fff!important;transform:translateY(-1px);}
.theme-btn:active{transform:translateY(0);}

/* --- Footer Modern --- */
.stref-footer{background:var(--navy);color:#CBD5E1;padding:56px 0 0;margin-top:40px;}
.stref-footer .footer-logo{height:40px;width:auto;margin-bottom:16px;filter:brightness(0) invert(1);}
.footer-brand .footer-desc{color:#94A3B8;font-size:14px;line-height:1.7;margin-bottom:16px;}
.footer-brand .footer-desc.small{font-size:13px;}
.footer-contact p{color:#CBD5E1;font-size:14px;margin-bottom:8px;display:flex;gap:8px;align-items:center;}
.footer-contact p i{color:var(--orange);width:18px;}
.footer-social{display:flex;gap:8px;margin-top:14px;}
.footer-social a{width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,0.08);display:inline-flex;align-items:center;justify-content:center;color:#fff;transition:.2s;}
.footer-social a:hover{background:var(--orange);color:#fff;}
.footer-title{color:#fff!important;font-size:14px!important;font-weight:700!important;letter-spacing:.4px!important;text-transform:uppercase!important;margin-bottom:16px!important;position:relative;padding-bottom:10px;}
.footer-title:after{content:"";position:absolute;left:0;bottom:0;width:28px;height:2px;background:var(--orange);border-radius:2px;}
.footer-links li{margin-bottom:10px!important;color:#94A3B8!important;}
.footer-links li a{color:#CBD5E1!important;margin-left:0!important;font-size:14px;transition:.15s;text-decoration:none;}
.footer-links li a:hover{color:#fff!important;padding-left:4px;}
.footer-subscribe .input-wrap{display:flex;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.14);border-radius:10px;overflow:hidden;}
.footer-subscribe input{flex:1;background:transparent;border:none;color:#fff;padding:12px 14px;font-size:14px;outline:none;}
.footer-subscribe input::placeholder{color:#94A3B8;}
.footer-subscribe button{background:var(--orange);border:none;color:#fff;width:44px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:.2s;}
.footer-subscribe button:hover{background:var(--orange-hover);}
.footer-cta{margin-top:16px;}
.btn-footer-cta{display:inline-flex;background:var(--orange);color:#fff!important;padding:10px 16px;border-radius:8px;font-size:13px;font-weight:600;text-decoration:none;transition:.2s;border:1px solid var(--orange);}
.btn-footer-cta:hover{background:var(--orange-hover);}
.footer-hours{font-size:13px;color:#94A3B8;margin-top:10px;display:flex;gap:6px;align-items:center;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);margin-top:36px;padding:18px 0;background:rgba(0,0,0,0.12);}
.footer-bottom-inner{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap;}
.footer-bottom p{color:#94A3B8;font-size:13px;margin:0;}
.footer-bottom p.powered a{color:var(--orange);text-decoration:none;font-weight:600;}
.footer-bottom p.powered a:hover{color:#fff;}

/* --- Modal Modern â€” no overflow scroller --- */
html{scrollbar-width:thin;scrollbar-color:var(--border) transparent;}
body.modal-open{overflow:hidden!important;padding-right:0!important;}
body.modal-open .stref-header{padding-right:0!important;}
#modalnewsletter{overflow:hidden!important;padding-right:0!important;}
#modalnewsletter .modal-dialog{max-width:520px!important;width:92%!important;margin:24px auto!important;max-height:calc(100vh - 48px)!important;display:flex!important;align-items:center!important;}
#modalnewsletter .modal-content{background:#fff!important;border:none!important;border-radius:16px!important;overflow:hidden!important;box-shadow:0 24px 60px rgba(10,35,66,0.22)!important;max-height:calc(100vh - 48px)!important;display:flex!important;flex-direction:column!important;}
#modalnewsletter .modal-header{border:none!important;padding:12px 12px 0!important;justify-content:flex-end!important;flex-shrink:0!important;}
#modalnewsletter .modal-header .close{width:32px;height:32px;border-radius:50%;background:var(--bg-light)!important;border:1px solid var(--border);opacity:1!important;display:inline-flex;align-items:center;justify-content:center;color:var(--navy)!important;font-size:15px;transition:.2s;margin:0!important;float:none!important;}
#modalnewsletter .modal-header .close:hover{background:var(--navy)!important;color:#fff!important;border-color:var(--navy)!important;transform:rotate(90deg);}
#modalnewsletter .modal-body{padding:4px 16px 16px!important;overflow:hidden!important;flex:1 1 auto!important;display:flex!important;flex-direction:column!important;align-items:center!important;}
#modalnewsletter .modal-body img{border-radius:12px!important;border:1px solid var(--border);box-shadow:var(--shadow);max-height:62vh!important;width:100%!important;object-fit:contain!important;display:block!important;}
.stref-modal-badge{display:inline-flex;align-items:center;gap:6px;background:var(--bg-light);border:1px solid var(--border);color:var(--navy);font-size:11px;font-weight:700;letter-spacing:.6px;text-transform:uppercase;padding:6px 10px;border-radius:100px;margin-bottom:10px;flex-shrink:0;}
.stref-modal-badge i{color:var(--orange);}
.modal-backdrop.show{opacity:.55!important;background:var(--navy)!important;}
/* kill bootstrap's scrollbar measurement overflow */
.modal{overflow:hidden!important;}
.modal-open .modal{overflow:hidden!important;}

/* Remove old gradients & shadows */
.blog-col figure::before{display:none!important;}
.blog-col:hover figure img{transform:none!important;}

/* General improvements */
.default-section{padding:70px 0 40px!important;}
a:focus{outline:2px solid var(--orange);outline-offset:2px;}
.form-control:focus{border-color:var(--orange)!important;box-shadow:0 0 0 3px rgba(232,119,15,0.15)!important;}

/* Scroll top */
#dyscrollup-btn:before{color:var(--orange)!important;}


.video-container, .map-container, .embed-container {
  position: relative;
  margin: 0 0 15px 0;
  padding-bottom: 51%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  border: none;
}

.embed-container iframe, .embed-container object, .embed-container embed, .video-container iframe, .map-container iframe, .map-container object, .map-container embed, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

iframe {
  border: none;
}

img.img-polaroid {
  margin: 0 0 20px 0;
}

.img-box {
  max-width: 100%;
}





/* --- Mobile nav toggle — premium pill + unique whole design accents --- */
.stellarnav .menu-toggle{border:1px solid var(--border)!important;background:#fff!important;border-radius:100px!important;padding:10px 14px!important;display:inline-flex!important;align-items:center!important;gap:10px!important;box-shadow:0 4px 14px rgba(10,35,66,0.06)!important;}
.stellarnav .menu-toggle::before{content:"Menu";font-family:var(--font-body);font-size:12px;font-weight:700;letter-spacing:.6px;text-transform:uppercase;color:var(--navy);}
.stellarnav .menu-toggle span.bars{display:inline-flex!important;flex-direction:column;gap:4px;margin:0!important;}
.stellarnav .menu-toggle span.bars span{width:18px!important;height:2px!important;background:var(--navy)!important;border-radius:2px!important;display:block!important;}
.stellarnav.mobile ul{border-radius:16px!important;overflow:hidden!important;padding:8px!important;}
.stellarnav.mobile ul li a{border-radius:10px!important;margin:2px 4px!important;font-weight:600!important;}
.stellarnav.mobile ul li a:hover{background:var(--bg-light)!important;}
.stellarnav.mobile ul ul{border-radius:12px!important;box-shadow:none!important;border:1px solid var(--border)!important;margin:4px 8px 8px!important;}
.about-two-area,.service-two-area{position:relative;}
.about-two-area::before{content:"";position:absolute;top:24px;left:24px;width:40px;height:40px;border:1px solid var(--border);border-radius:10px;opacity:0.6;pointer-events:none;}
.service-two-area::before{content:"";position:absolute;right:32px;top:32px;width:56px;height:56px;background:var(--orange);opacity:0.07;border-radius:50%;pointer-events:none;}
