﻿

/***
====================================================================
  Reset
====================================================================
 ***/
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}


/***
====================================================================
  Global Settings
====================================================================
 ***/


body {
  font-size:15px;
  color:#848484;
  line-height:26px;
  font-weight:400;
  background:#ffffff;
  font-family: 'Quicksand', sans-serif;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

@media (min-width:1200px) {
  .container {
    max-width: 1170px;
    padding: 0px 15px;
  }
}

.auto-container {
  position:static;
  max-width:100vw;
  padding:0px 15px;
  margin:0 auto;
}

.small-container {
  max-width:680px;
  margin:0 auto;
}

.boxed_wrapper{
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}

a {
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  color: #FA5754;
}

a:hover {
  text-decoration:none;
  outline:none;
}

input,button,select,textarea {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 15px;
}

ul,li {
  list-style:none;
  padding:0px;
  margin:0px;
}

input{
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p{
  position: relative;
  font-family: 'Quicksand', sans-serif;
  color: #484848;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: #061a3a;
  margin: 0px;
  transition: all 500ms ease;
}

.centred{
  text-align: center;
}

.pull-left{
  float: left;
}

.pull-right{
  float: right;
}

figure{
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

/** button **/
.theme-btn-one{
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 15px;
  line-height: 20px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  color: #fff !important;
  text-align: center;
  padding: 10px 30px;
  border-radius: 30px;
  box-shadow: 0px 10px 10px 0px rgba(248,92,112,0.4);
  z-index: 1;
  transition: all 500ms ease;
  background-color: #FA5754;
}

.theme-btn-reset {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    
    /* Gray Flavor Default State (Outline) */
    color: #6c757d !important; /* Dark gray text */
    background-color: transparent; /* Transparent background */
    border: 2px solid #ced4da; /* Light gray border for subtle look */
    
    text-align: center;
    padding: 10px 30px;
    border-radius: 30px;
    box-shadow: none; /* Reset buttons typically avoid heavy shadows */
    z-index: 1;
    transition: all 500ms ease;
}

.theme-btn-reset:hover {
    /* Gray Flavor Hover State (Solid Fill) */
    color: #fff !important; /* White text on hover */
    background-color: #6c757d; /* Solid dark gray background */
    border-color: #6c757d; /* Dark gray border */
    box-shadow: 0px 5px 10px 0px rgba(108, 117, 125, 0.25); /* Subtle gray shadow */
}

.theme-btn-one i{
  font-size: 14px;
  margin-right: 8px;
  font-weight: 400;
}

.theme-btn-one:hover{
  background: #0d1927;
  box-shadow: 0px 10px 30px 0px rgba(13,25,39,0.3);
}

.theme-btn-one:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background: #0d1927;
  border-radius: 30px;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.theme-btn-one:hover:before{
  width: 100%
}

.sec-pad{
  padding: 10px 0px 36px 0px;
}

.mr-0{
  margin: 0px !important;
}

/* Ensure the scroll-top button is always visible and on top */
.scroll-top {
    /* Critical: Fixes the button relative to the viewport */
    position: fixed; 
    
    /* Placement */
    right: 30px; 
    /* FIX: Adjusted bottom value. This lifts the icon 50px higher (80px - 30px) 
       to clear a typical footer while maintaining 30px spacing above it. */
    bottom: 60px; 
    
    /* Critical: Ensures it is above all other content */
    z-index: 9999; 
    
    /* Default styling (rest of the properties remain the same) */
    display: none; 
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-color, #fa5754);
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

/* Ensure the button shows up when the active class is applied via JavaScript */
.scroll-top.open {
    display: block;
}

.scroll-top span{
  color: #fff;
}

.sec-title{
  position: relative;
  display: block;
  margin-bottom: 30px;
}


.sec-title span{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-weight: 900;
}

.sec-title p{
  font-size: 15px;
  line-height: 26px;
  margin: 0px;
}

.sec-title.light h2{
  color: #fff;
}

.sec-title.centred{
  text-align: center !important;
}

/** banner-section **/
.banner-section{
  position: relative;
  padding: 30px 0px 84px 0px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 15px;
}

.banner-section:before{
  position: absolute;
  content: '';
  background: #0c162c;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.3;
}

.banner-section.style-two:before{
  opacity: 0.6;
}

.nice-select:after{
  position: absolute;
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  top: 5px;
  right: 30px;
  color: #848484;
  font-weight: 500;
  margin: 0px;
  border: none !important;
  transform: rotate(0deg) !important;
}

.nice-select{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background: transparent;
  font-size: 15px;
  color: #848484;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 15px;
}

.banner-section .content-box h1{
  position: relative;
  display: block;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
}

/** category-section **/
.category-section{
  position: relative;
}

.category-section .inner-content{
  position: relative;
  margin: 0px -15px;
}

.category-section .more-btn{
  position: relative;
  margin-top: 20px;
}

.category-section .more-btn .theme-btn-one{
  padding: 17px 48px;
}

.border-bottom{
  border-bottom: 1px solid #edeff2 !important;
}




.place-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.place-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.place-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: rgba(13,25,39,0.6);
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 500ms ease;
  opacity: 0;
}

.place-block-one .inner-box:hover .image-box:before{
  opacity: 1;
}

.place-block-one .inner-box .image-box img{
  transition: all 1500ms ease;
  width: 100%;
}

.place-block-one .inner-box:hover .image-box img{
  transform: scale(1.1);
}

.place-block-one .inner-box .lower-content{
  position: relative;
  margin: 0px 30px;
}

.place-block-one .inner-box .lower-content .inner{
  position: relative;
  background: #fff;
  padding: 26px 30px 30px 30px;
  margin-top: -60px;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0px 10px 50px 0px rgba(0,0,0,0.1);
}

.place-block-one .inner-box .lower-content .inner h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 8px;
}

.place-block-one .inner-box .lower-content .inner h3 a{
  display: inline-block;
  color: #061a3a;
}

.place-block-one .inner-box .lower-content .inner h3 a:hover{

}

.place-block-one .inner-box .lower-content .inner span{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  color: #061a3a;
  background: #f5f6fa;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 25px;
  border: 1px solid #edeff2;
  text-align: center;
  padding: 0.5px 15px;
}

.owl-carousel .place-block-one .inner-box{
  margin-bottom: 0px;
}

.nice-select .list{
  min-width: 200px;
}


/** download-section **/

.download-section{
  position: relative;
  padding: 40px 0px;
}

.download-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.download-section .image-box{
  position: relative;
  display: inline-block;
}

.download-section .image-box .image-2{
  position: absolute;
  top: 0px;
  right: 0px;
}

.download-section .content_block_1 .content-box span.upper-text{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 3px 15px;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 19px;
}

.download-section .content_block_1 .content-box h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 55px;
  font-weight: 900;
  margin-bottom: 35px;
}

.download-section .content_block_1 .content-box .download-btn a{
  position: relative;
  display: inline-block;
  background-color: #fff;
  padding: 12px 39px 14px 80px;
  border-radius: 35px;
  box-shadow: 0px 20px 30px 0px #e4e2e0;
}

.download-section .content_block_1 .content-box .download-btn a:hover{
  background-color: #061a3a;
}

.download-section .content_block_1 .content-box .download-btn a.app-store{
  margin-right: 7px;
}

.download-section .content_block_1 .content-box .download-btn a i{
  position: absolute;
  left: 30px;
  top: 15px;
  font-size: 40px;
  color: #061a3a;
  transition: all 500ms ease;
}

.download-section .content_block_1 .content-box .download-btn a:hover i{
  color: #fff;
}

.download-section .content_block_1 .content-box .download-btn a span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #93959e;
  font-weight: 500;
  transition: all 500ms ease;
}

.download-section .content_block_1 .content-box .download-btn a:hover span{
  color: rgba(255,255,255,0.7);
}

.download-section .content_block_1 .content-box .download-btn a h4{
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  transition: all 500ms ease;
}

.download-section .content_block_1 .content-box .download-btn a:hover h4{
  color: #fff;
}

/** main-footer **/
.main-footer{
  position: relative;
}

.main-footer .footer-top{
  position: relative;
  width: 100%;
  padding: 50px 0px 50px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.main-footer .footer-top:before{
  position: absolute;
  content: '';
  background: #061a3a;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  opacity: 0.9;
}

.footer-top .logo-widget{
  position: relative;
}

.footer-top .logo-widget .footer-logo{
  position: relative;
  max-width: 176px;
  width: 100%;
  margin-bottom: 15px;
}

.footer-top .logo-widget .footer-logo img{
  width: 100%;
}

.footer-top .logo-widget .text{
  margin-bottom: 33px;
}

.footer-top .logo-widget .text p{
  color: #aeb1b8;
}

.footer-top .logo-widget .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.footer-top .logo-widget .social-links li:last-child{
  margin: 0px !important;
}

.footer-top .logo-widget .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  background-color: #253650;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}

.footer-top .logo-widget .social-links li a:hover{

}

.ml-70{
  margin-left: 70px;
}

.footer-top .footer-widget .widget-title{
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.footer-top .footer-widget .widget-title h3{
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  font-weight: 800;
}

.footer-top .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 0px; /* modified */
}

.footer-top .links-widget .links-list li a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #aeb1b8;
}

.footer-top .links-widget .links-list li a:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 1px;
  left: 0px;
  bottom: 4px;
  opacity: 0;
  transition: all 500ms ease;
}

.footer-top .links-widget .links-list li a:hover:before{
  width: 100%;
  opacity: 1;
}

.footer-top .post-widget .post-inner .post{
  position: relative;
  display: block;
  padding: 3px 0px 6px 115px;
  min-height: 90px;
  margin-bottom: 30px;
}

.footer-top .post-widget .post-inner .post:last-child{
  margin-bottom: 0px;
}

.footer-top .post-widget{
  position: relative;
  margin-left: -30px;
  margin-right: 10px;
}

.footer-top .post-widget .post-inner .post .post-thumb{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 90px;
  height: 90px;
  border-radius: 5px;
  overflow: hidden;
}

.footer-top .post-widget .post-inner .post .post-thumb img{
  width: 100%;
  border-radius: 5px;
}

.footer-top .post-widget .post-inner .post .post-thumb:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scale(0,0);
  opacity: 0.8;
  transition: all 500ms ease;
}

.footer-top .post-widget .post-inner .post:hover .post-thumb:before{
  transform: scale(1,1);
}

.footer-top .post-widget .post-inner .post .post-thumb a{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  font-size: 0px;
  color: #fff;
  z-index: 1;
}

.footer-top .post-widget .post-inner .post h5{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 24px;
  color: #aeb1b8;
  font-weight: 600;
  margin-bottom: 7px;
}

.footer-top .post-widget .post-inner .post h5 a{
  display: inline-block;
  color: #aeb1b8;
}

.footer-top .post-widget .post-inner .post p{
  color: #aeb1b8;
  margin: 0px;
}

.footer-top .post-widget .widget-title{
  margin-bottom: 55px;
}

.footer-top .contact-widget .info-list li{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 26px;
  color: #aeb1b8;
  padding-left: 30px;
  margin-bottom: 20px;
}

.footer-top .contact-widget .info-list li i{
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 20px;
}

.footer-top .contact-widget .info-list li:last-child{
  margin-bottom: 0px;
}

.footer-top .contact-widget .info-list li a{
  display: inline-block;
  color: #aeb1b8;
}


.footer-bottom{
  position: relative;
  background: #0e213f;
  padding: 27px 0px;
}

.footer-bottom .copyright p{
  font-size: 15px;
  line-height: 26px;
  color: #aeb1b8;
}

.footer-bottom .copyright p a{
  display: inline-block;
  color: #aeb1b8;
}

.footer-bottom .footer-nav li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  color: #aeb1b8;
  margin-right: 25px;
}

.footer-bottom .footer-nav li:last-child{
  margin: 0px !important;
}

.footer-bottom .footer-nav li a{
  display: inline-block;
  color: #aeb1b8;
}

.footer-bottom .footer-nav li:before{
  position: absolute;
  content: '';
  background-color: #aeb1b8;
  width: 1px;
  height: 15px;
  top: 6px;
  right: -15px;
}

.footer-bottom .footer-nav li:last-child:before{
  display: none;
}


/***

====================================================================
                        Home-Page-Two
====================================================================

***/
/** banner-style-two **/

.banner-section.style-two{
  padding: 225px 0px 0px 0px;
}

.banner-section.style-two .form-inner{
  position: relative;
  display: inline-block;
  width: 100%;
  background: #fff;
  padding: 40px 50px;
  box-shadow: 0px 10px 50px 0px rgba(0,0,0,0.1);
  margin-bottom: -100px;
  border-radius: 10px;
  z-index: 1;
}

.banner-section.style-two .content-box .text{
  margin-bottom: 135px;
}

.banner-section.style-two .content-box .text p{
  margin: 0px;
}

.banner-section.style-two .radio-select-box label{
  background: #f2f2f5;
  border-radius: 25px;
  color: #848484;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  padding: 3px 15px 3px 30px;
}

.banner-section.style-two .radio-select-box input[type="radio"] + label span{
  border: 2px solid #848484;
  left: 15px;
  top: 8px;
}

.banner-section.style-two .radio-select-box input[type="radio"]:checked + label{
  color: #fff;
}

.banner-section.style-two .radio-select-box input[type="radio"]:checked + label span{
  border: 2px solid #fff;
  background-color: #fff;
}

.banner-section.style-two .radio-select-box label span:before{
  background-color: #fff;
}

.banner-section.style-two .content-box .input-inner{
  border: 1px solid #e6ebeb;
  border-radius: 35px;
  margin: 0px;
}

.banner-section.style-two .radio-select-box{
  margin-bottom: 25px;
}

.banner-section.style-two .radio-select-box li{
  margin-right: 6px;
}

.category-section.alternat-2{
  padding-top: 215px;
}

.category-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.owl-carousel .category-block-one{
  float: none;
  width: 100% !important;
}

.category-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.category-section .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  transition: all 500ms ease;
}

.category-section .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
}

.category-section .owl-dots{
  margin-top: 17px;
}

.feature-block-one .inner-box .lower-content h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
}

.feature-block-one .inner-box .lower-content h4 a{
  display: inline-block;
  color: #061a3a;
}

.header-top{
  position: relative;
  width: 100%;
  background: #0d1927;
  padding: 12px 0px;
}

.header-top .top-inner{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.header-top .top-inner .info-list li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-right: 35px;
  padding-left: 22px;
}

.header-top .top-inner .info-list li:last-child{
  margin: 0px !important;
}

.header-top .top-inner .info-list li a{
  display: inline-block;
  color: rgba(255,255,255,0.6);
}

.banner-section.style-four:before{
  opacity: 0.7;
}

.header-top .top-inner .info-list li i{
  position: absolute;
  left: 0px;
  top: 6px;
}

.header-top .top-inner .info-list li:before{
  position: absolute;
  content: '';
  background: rgba(255,255,255,0.2);
  width: 1px;
  height: 16px;
  top: 4px;
  right: -20px;
}

.header-top .top-inner .info-list li:last-child:before{
  display: none;
}

.header-top .top-inner .right-column .social-links li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  margin-right: 25px;
}

.header-top .top-inner .right-column .social-links li a{
  display: inline-block;
  color: rgba(255,255,255,0.6);
}

.header-top .top-inner .right-column .social-links li:last-child{
  margin: 0px !important;
}

.header-top .top-inner .right-column .social-links{
  position: relative;
  float: left;
  padding-right: 30px;
  margin-right: 30px;
}

.header-top .top-inner .right-column .social-links:before{
  position: absolute;
  content: '';
  background: rgba(255,255,255,0.2);
  width: 1px;
  height: 16px;
  top: 4px;
  right: 0px;
}

.header-top .top-inner .right-column .sign-in{
  position: relative;
  float: left;
}

.header-top .top-inner .right-column .sign-in a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.header-top .top-inner .right-column .sign-in a i{
  margin-right: 10px;
}

.banner-section .form-inner .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
}

.banner-section.style-four .content-box .input-inner{
  border: none;
  box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.08);
}

.banner-section.style-four .form-inner{
  box-shadow: none;
}

.banner-section .content-box .feature-list li{
  position: relative;
  display: inline-block;
  width: 140px;
  background: #fff;
  padding: 29px 15px 24px 15px;
  text-align: center;
  border-radius: 10px;
  margin: 0px 6px;
}

.banner-section .content-box .feature-list li i{
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 50px;
  color: #93959e;
  margin-bottom: 11px;
}

.banner-section .content-box .feature-list li h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

.pt-215{
  padding-top: 215px;
}


.banner-section .contact-map{
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: -8px;
}

.banner-section .contact-map iframe{
  height: 620px;
}

.pb-0{
  padding-bottom: 0px;
}


.border-top{
  border-top: 1px solid #edeff2 !important;
}


/***
====================================================================
                        Category-Page
====================================================================
***/


/** page-title **/

.page-title{
  position: relative;
  padding-top: 47px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title:before{
  position: absolute;
  content: '';
  background: #0c162c;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.5;
}

.page-title .content-box{
  position: relative;
  margin-bottom: 50px;
}

.page-title .content-box .title{
  position: relative;
  display: block;
  margin-bottom: 3px;
}

.page-title .content-box .title h1{
  font-size: 40px;
  line-height: 48px;
  color: #fff;
  font-weight: 900;
}

.page-title .content-box .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  padding-right: 12px;
  margin-right: 1px;
}

.page-title .content-box .bread-crumb li:last-child{
  padding: 0px !important;
  margin: 0px !important;
}

.page-title .content-box .bread-crumb li a{
  display: inline-block;
  color: #fff;
}

.page-title .content-box .bread-crumb li:before{
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  top: 1px;
  right: 0px;
}

.page-title .content-box .bread-crumb li:last-child:before{
  display: none;
}

.page-title.style-two{
  padding: 84px 0px 88px 0px;
}

.bg-color-2{
  background: #fff7f8;
}

.browse-add .list-item .feature-block-one .inner-box{
  padding: 33px 200px 28px 230px
}

.browse-add .list-item .feature-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: #e5e7ec;
  width: 1px;
  height: 100%;
  top: 0px;
  right: 200px;
}

.browse-add .list-item .feature-block-one .inner-box .lower-content .lower-box .react-box{
  right: 30px;
}

.browse-add .list-item .feature-block-one .inner-box .btn-box{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  display: flex;
}

.browse-add .list-item .feature-block-one .inner-box .btn-box .theme-btn-one{
  padding: 13px 44.5px;
}


.browse-add-details{
  position: relative;
  padding: 75px 0px 15px 0px;
}

.contact-map iframe{
  width: 100%;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/***
====================================================================
                        Contact-Page
====================================================================
***/


/** contact-section **/

.contact-section{
  position: relative;
  padding: 50px 0px;
}

.contact-section .contact-info-inner .sec-title h2{
  margin: 0px;
}

.contact-section .contact-info-inner .sec-title{
  margin-bottom: 32px;
}

.contact-section .contact-info-inner .single-box h3{
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-section .contact-info-inner .single-box .list li{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 28px;
  color: #808080;
  margin-bottom: 0px;
}

.contact-section .contact-info-inner .single-box .list li a{
  color: #808080;
}

.contact-section .contact-info-inner .single-box{
  margin-bottom: 36px;
}

.contact-section .contact-info-inner .single-box:last-child{
  margin-bottom: 0px;
}

.contact-section .contact-info-inner .single-box .social-links li{
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.contact-section .contact-info-inner .single-box .social-links li:last-child{
  margin: 0px !important;
}

.contact-section .contact-info-inner .single-box .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 17px;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
}

.contact-section .form-inner{
  position: relative;
  display: block;
  background: #fff;
  padding: 43px 50px 45px 50px;
  box-shadow: 0px 20px 60px 0px rgba(0,0,0,0.1);
}

.contact-section .form-inner h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 38px;
  font-weight: 800;
  margin-bottom: 24px;
}

.default-form .form-group{
  position: relative;
  margin-bottom: 14px;
}

.default-form .form-group:last-child{
  margin-bottom: 0px;
}

.default-form .form-group label{
  position: relative;
  display: block;
  font-size: 15px;
  color: #808288;
  margin-bottom: 7px;
}

.default-form .form-group input[type='text'],
.default-form .form-group input[type='email'],
.default-form .form-group input[type='search'],
.default-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #e6e8e8;
  padding: 10px 10px;
  font-size: 15px;
  color: #808288;
  border-radius: 15px;
  transition: all 500ms ease;
}

.default-form .form-group textarea{
  resize: none;
  height: 150px;
}

.default-form .form-group .theme-btn-one{
  padding: 13px 46px;
}

.google-map-section{
  position: relative;
  width: 100%;
}

.google-map-section .contact-map{
  position: relative;
  width: 100%;
  margin-bottom: -8px;
}

.google-map-section .contact-map iframe{
  width: 100%;
  height: 600px;
}


/** error-section **/

.error-section{
  position: relative;
  padding: 100px 0px 120px 0px;
}

.error-section .inner-box .theme-btn-one i{
  margin-right: 10px;
}

.error-section .inner-box .error-image{
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
}

.error-section .inner-box h1{
  font-size: 200px;
  line-height: 200px;
  font-weight: 900;
  margin-bottom: 10px;
}

.error-section .inner-box h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 60px;
}

.error-message {
  color:red;
  margin-left:16px;
  margin-top:-20px;
}
#profile-info .btn-link {
  color: #FA5754;
}
#profile-info .card-header {
  padding: 0px;
  cursor: pointer;
}
.spacing {
    padding-bottom: 2%;
}
.top10 {
  padding-top: 10px;
}
.bottom10 {
  padding-top: 10px;
}
.btn-profile {
  padding: 5px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  min-width: 80px;
  text-transform: uppercase;
}
.save-button {
  background-color: #FA5754;
  color: #fff;
}
.reset-button {
  background-color: #a19d9d;
  color: #fff;
}
.read-only {
  background-color: lightgray;
  border: 0;
}
.content-section .row {
  margin-bottom: 10px;
}

.login-section .inner-container .inner-box h2 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  font-weight: 800;
  margin-bottom: 5px;
}
.login-section {
  position: relative;
  padding: 35px 0px;
}

.login-section .inner-container {
  position: relative;
  max-width: 625px;
  width: 100%;
  margin: 0 auto;
}

.login-section .inner-container .inner-box {
  position: relative;
  display: block;
  background: #fff;
  padding: 33px 40px 35px 40px;
  box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.login-section .inner-container .inner-box form .form-group {
  position: relative;
  margin-bottom: 14px;
}

.login-section .inner-container .inner-box form .form-group:last-child {
  margin-bottom: 0px;
}

.login-section .inner-container .inner-box form .form-group label {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 26px;
  color: #808080;
  margin-bottom: 7px;
  margin-left: 10px;
}

.login-section .inner-container .inner-box form .form-group input[type="text"],
.login-section .inner-container .inner-box form .form-group input[type="email"],
.login-section
  .inner-container
  .inner-box
  form
  .form-group
  input[type="password"] {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #e6e8e8;
  border-radius: 15px;
  font-size: 15px;
  color: #808080;
  padding: 10px 10px;
  transition: all 500ms ease;
}

.login-section .inner-container .inner-box form .form-group .text {
  position: relative;
  text-align: right;
  padding-bottom: 9px;
  display: block;
}

.login-section .inner-container .inner-box form .form-group .text a {
  font-size: 15px;
  color: #FA5754;
}
.login-section .inner-container .inner-box form .form-group .text a:hover {
  text-decoration: underline;
}

.login-section .inner-container .inner-box form .form-group button {
  display: block;
  width: 100%;
}

.login-section .inner-container .inner-box .other-content .text {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.login-section .inner-container .inner-box .other-content .text:before {
  position: absolute;
  content: "";
  background: #e5e7ec;
  width: 100%;
  height: 1px;
  left: 0px;
  top: 19px;
}

.login-section .inner-container .inner-box .other-content .text span {
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 32px;
  color: #8a8a8a;
  font-weight: 400;
  width: 65px;
  background: #fff;
  text-align: center;
}

.login-section .inner-container .inner-box .other-content .social-links li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.toggle-password {
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
}


.login-section
  .inner-container
  .inner-box
  .other-content
  .social-links
  li:last-child {
  margin-bottom: 0px;
}

.login-section .inner-container .inner-box .other-content .social-links li a {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  color: #808288;
  font-weight: 500;
  text-align: center;
  padding: 11px 30px;
  border: 1px solid #e6e8e8;
  border-radius: 30px;
}

.login-section .inner-container .inner-box .other-content .social-links li a i {
  margin-right: 10px;
  transition: all 500ms ease;
}

.login-section
  .inner-container
  .inner-box
  .other-content
  .social-links
  li
  a:hover {
  color: #fff;
}

.login-section
  .inner-container
  .inner-box
  .other-content
  .social-links
  li
  a:hover
  i {
  color: #fff !important;
}

.login-section .inner-container .inner-box .other-content .social-links {
  position: relative;
  margin-bottom: 23px;
}

.login-section .inner-container .inner-box .othre-text p {
  font-weight: 500;
}

.login-section .inner-container .inner-box .othre-text p a:hover {
  text-decoration: underline;
}
.sub-heading {
  margin-bottom: 15px;
}
.submit-button {
  width: 100%;
}
.static-page-body {
  padding: 15px;
  color: #000000 !important;
}
.static-page-body h2 {
  color: #FA5754;
}
.static-page-body li {
  list-style: disc;
  margin-left: 20px;
}
.header-lower {
    position: sticky;
}

.logo-box {
    margin-left: 2vw;
}


/* Example CSS */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d1927; /* or any background color */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader {
    /* Add CSS for your spinner animation here */
    /* E.g., a simple border spinner */
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Hide the preloader once content loads */
.loaded #preloader {
    transition: opacity 0.5s ease-out;
    opacity: 0;
    visibility: hidden;
}

 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       R e s p o n s i v e   Q u e r i e s   A d d i n g   f o r   O c c a s o r   -   F I X E D   v 2 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 
 
 @ m e d i a   o n l y   s c r e e n   a n d   ( m a x - w i d t h :   7 6 7 p x )   { 
 
         / *   F o o t e r   E x p l o r e / C o n t a c t   W i d g e t s   A l i g n m e n t   * / 
 
         . m l - 7 0   { 
 
                 m a r g i n - l e f t :   0 p x   ! i m p o r t a n t ; 
 
         } 
 
         
 
         . f o o t e r - t o p   . f o o t e r - w i d g e t   { 
 
                 p a d d i n g - l e f t :   0   ! i m p o r t a n t ; 
 
                 m a r g i n - l e f t :   0   ! i m p o r t a n t ; 
 
                 t e x t - a l i g n :   l e f t   ! i m p o r t a n t ;   / *   L e f t   a l i g n   a s   r e q u e s t e d   ( n o t   m i d d l e )   * / 
 
         } 
 
 
 
         / *   F o o t e r   B o t t o m   S e c t i o n   -   T e r m s   &   P r i v a c y   * / 
 
         . f o o t e r - b o t t o m   . f o o t e r - i n n e r   { 
 
                 d i s p l a y :   f l e x ; 
 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
 
                 a l i g n - i t e m s :   c e n t e r ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
                 g a p :   1 5 p x ; 
 
                 p a d d i n g - b o t t o m :   2 0 p x ; 
 
         } 
 
 
 
         / *   R e s e t   f l o a t s   * / 
 
         . f o o t e r - b o t t o m   . p u l l - l e f t ,   
 
         . f o o t e r - b o t t o m   . p u l l - r i g h t   { 
 
                 f l o a t :   n o n e   ! i m p o r t a n t ; 
 
                 w i d t h :   1 0 0 % ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
                 d i s p l a y :   b l o c k ; 
 
         } 
 
         
 
         / *   F o o t e r   N a v   L i n k s   ( T e r m s ,   P r i v a c y )   * / 
 
         . f o o t e r - b o t t o m   . f o o t e r - n a v   { 
 
                 f l o a t :   n o n e   ! i m p o r t a n t ; 
 
                 d i s p l a y :   f l e x ; 
 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
 
                 g a p :   1 5 p x ;   
 
                 a l i g n - i t e m s :   c e n t e r ; 
 
                 w i d t h :   1 0 0 % ; 
 
                 m a r g i n :   0 ; 
 
                 p a d d i n g :   0 ; 
 
         } 
 
         
 
         . f o o t e r - b o t t o m   . f o o t e r - n a v   l i   { 
 
                 d i s p l a y :   b l o c k ; 
 
                 m a r g i n :   0   ! i m p o r t a n t ; 
 
                 f l o a t :   n o n e   ! i m p o r t a n t ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
         } 
 
 } 
 
 

/* ================================
   Responsive Tables - Occasor
   ================================ */
.scrollTable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .scrollTable > table,
    .orders-table {
        min-width: 600px;
    }

    .auto-container {
        padding: 0px 10px;
    }

    .banner-section .content-box h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .sec-title h2 {
        font-size: 1.5rem;
    }

    .vendor-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .banner-section .content-box h1 {
        font-size: 1.4rem;
    }

    .form-inner {
        padding: 0 10px;
    }
}
