@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Satisfy&display=swap');
*,
*:after,
*:before{
  -webkit-box-sizing:border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:active,
:hover,
:focus{
 outline: 0;
 outline-offset: 0;
}
a{
  text-decoration: none;
  color: #fff;
}
a:hover{
  color: var(--primary-color);
}

ul,
ol{
    margin: 0;
    padding: 0;
}
/**** veriable define****/
:root{
  --primary-color:#1a0dab;
  --secondry-color:#000;
  --bg-color:#fff;
  --text-white:#fff;
}
/**** custom scrollbar****/
::-webkit-scrollbar{
  width: 0.625rem;
}
::-webkit-scrollbar-track{
  background-color: var(--bg-color);
}
::-webkit-scrollbar-thumb{
  background-color: var(--primary-color);
  border-radius: 15px;
}
html{
  scroll-behavior: smooth;
}
body{
  /*font-family: 'Belleza', sans-serif;*/
    /*font-family: 'Satisfy', cursive;*/
  font-family: 'Roboto'sans-serif;
  /*text-transform: capitalize;*/
      counter-reset:thsnbox4;

}
.skstatic--sec-title,
.mini-title{
   color: ##000;
}

.header{
   width: 100%;
   margin: 0;
   padding: 0;
}
.header .top-header{
  width: 100%;
  margin: 0;
  padding: 15px 0px;
  background-color: #000;
  justify-content: space-between;
  display: flex;
}

.header .top-header .left-content ul{
  display: inline-block;
  position: relative;
}
.header .top-header .left-content ul li {
    display: inline-block;
    margin-right: 15px;
}
.top-header .left-content li a{
    font-size: 18px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    line-height: 1;
}
.header .top-header .right-content{
  width: 100%;
  text-align: end; 
}
.header .top-header .right-content ul{
  display: inline-block;
  position: relative;
}
.header .top-header .right-content ul li {
    display: inline-block;
    /*margin-right: 15px;*/
}
.header .top-header .right-content ul span{
  color: #fff;
  padding: 0px 5px 0px 5px;
}
.top-header .right-content li a{
    font-size: 18px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    line-height: 1;
}
.navbar-toggler{
    line-height:inherit;
}
.navbar-toggler-icon{
    font-size: 23px;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.fixed-top {
    top: -40px;
    transform: translateY(40px);
    transition: transform .3s;
}
.header-shadow {
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 10%);
    background-color: #fff;
    z-index: 999;
}
.navbar-expand-lg .navbar-nav .nav-link{
    font-weight: 700;
    font-size: 17px;
    color: #1f2428;
    line-height: 1;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 10px;
    margin-right: 10px;
}
#main_nav ul li{
    list-style: none;
}
#main_nav .others-options ul li .default-btn {
    font-size: 16px;
    color: #fff;
    line-height: 1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-align: center;
    background-color: #1a0dab;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 20px 45px;
    border-radius: 4px;
}
#main_nav .others-options ul li .default-btn {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 15px;
}
#main_nav .others-options ul li .default-btn span {
    padding-left: 28px;
    padding-right: 0;
}

.default-btn span {
    position: relative;
    padding-right: 25px;
}
#main_nav .others-options ul li .default-btn span i {
    font-size: 20px;
    right: auto;
    left: 0;
    top: 2px;
}

.default-btn span i {
    position: absolute;
    top: 4px;
    right: 0;
}
/*banner-area start*/
.banner-area {
    background-color: #fff;
    position: relative;
    height: 500px;
    overflow: hidden;
    background-image: url(../image/banner-bg-1.jpg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}
.banner-area .d-table {
    width: 100%;
    height: 100%;
    /*background: rgb(0,0,0,0.1);*/
    /*background: rgb(165,53,146,0.1);*/
}
.banner-area .d-table-cell {
    vertical-align: middle;
}
.banner-area .banner-content h1{
    position: relative;
    font-size: 6vw;
    color: transparent;
    -webkit-text-stroke: 0.3vw #1a0dab;
    text-transform: uppercase;
}
.banner-area .banner-content h1::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fc4c02;
    -webkit-text-stroke: 0vw #1a0dab;
    border-right: 2px solid #1a0dab;
    overflow: hidden;
    animation: animate 6s linear infinite;

}
@keyframes animate{
    0%,10%,100%{
        width: 0;
    }
    70%,90%{
        width: 50%;
    }
}
/*banner-area end*/

/*step sec start*/
.step-sec{
  width: 100%;
  margin: 0;
  padding: 50px 0px 50px 0px;
}
.step-sec .header-sec{
    text-align: center;
    padding-bottom: 50px;
}
.step-sec .header-sec .skstatic--sec-title{
    font-weight: 500;
    font-size: 1.5em;
    /*color: #666;*/
}
.step-sec .header-sec .skstatic--sec-subtitle {
    color: #666;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.8rem;
    padding: 0 18rem;
}
.step-sec .step-figure{
    margin-bottom: 25px;
}
.step-sec .step-info{
    text-align: center;
    padding: 0 1rem; 
    position: relative;
}
.step-sec .step-info .step-title{
    font-size: 1.5em;
}
.step-sec .step-info .step-desc {
    color: #666;
    margin: 1rem 0 0;
    font-weight: 400;
    line-height: 1.3;
}
.one .step-info:before {
    content: "1";
}
.two .step-info:before {
    content: "2";
}
.three .step-info:before {
    content: "3";
}
.step-info:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 8.5em;
    line-height: 1;
    color: #ef6c00;
    opacity: .1;
}
/*step sec end*/

/*services sec start*/
.services{
  width: 100%;
  margin: 0;
  padding: 50px 0px 50px 0px;
  background-color: #f3f9fb;
  position: relative;
}
/*.services .side-img1 {*/
/*    position: absolute;*/
/*    left: 20px;*/
/*    top: 30px;*/
/*    -webkit-animation: floating 5s -1s infinite;*/
/*    animation: floating 5s -1s infinite;*/
/*}*/
/*.services .side-img2 {*/
/*    position: absolute;*/
/*    right: 74px;*/
/*    bottom: -110px;*/
/*    -webkit-animation: floating 5s -1s infinite;*/
/*    animation: floating 5s -1s infinite;*/
    /*z-index: -1;*/

/*}*/
/*@-webkit-keyframes floating {*/
/*  0%, 100% {*/
/*    transform: translateY(-5%);*/
/*  }*/
/*  50% {*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

/*@keyframes floating {*/
/*  0%, 100% {*/
/*    transform: translateY(-5%);*/
/*  }*/
/*  50% {*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/
.services .header-sec{
    text-align: center;
    padding-bottom: 50px;
}
.services .header-sec .skstatic--sec-title{
    font-weight: 500;
    font-size: 1.5em;
    /*color: #666;*/
}
.services .header-sec .skstatic--sec-subtitle {
    color: #666;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.8rem;
    padding: 0 18rem;
}
.services .service-box img{
    margin: 0 auto;
    display: block;
}
.services .service-box {
    padding: 22px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 10px 10px -10px rgb(16 45 71 / 5%);
    transition: all ease 300ms;
    cursor: pointer;
    height: 100%;
    z-index: 1;
    box-shadow: 8px 8px 19px 4px #212c3308;
}
.services .service-box .mini-title{
    color: #2a2a2a;
    font-size: 1.3rem;
    line-height: 1.9rem;
    margin: 20px 0px;
    text-align: center;
}
.services .service-box p {
    font-size: 16px;
    margin-bottom: 0px;
    text-align: center;
}
.services .service-box p a{
    color: #2a2a2a;
}
/*services sec end*/

/*services pro sec end*/
.services-pro{
  width: 100%;
  margin: 0;
  padding: 50px 0px 50px 0px;
  /*background-color: #f3f9fb;*/
}

.services-pro .header-sec{
    text-align: center;
    padding-bottom: 50px;
}
.services-pro .header-sec .skstatic--sec-title{
    font-weight: 500;
    font-size: 1.5em;
    /*color: #666;*/
}
.services-pro .service-box {
    padding: 22px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 10px 10px -10px rgb(16 45 71 / 5%);
    transition: all ease 300ms;
    cursor: pointer;
    min-height: 320px;
    z-index: 1;
    box-shadow: 8px 8px 19px 4px #212c3308;
    text-align: center;
}
.services-pro .service-box img{
    width: 64px;
}
.services-pro .service-box .mini-title{
    color: #2a2a2a;
    font-size: 1.3rem;
    line-height: 1.9rem;
    margin: 20px 0px;
    text-align: center;
}
.services-pro .service-box p {
    font-size: 16px;
    margin-bottom: 0px;
}
/*services pro sec end*/

/*safe sec start */
.safe{
  width: 100%;
  margin: 0;
  padding: 50px 0px 50px 0px;
  background-color: #f3f9fb;
  position: relative;
}
.safe .side-img1 {
    position: absolute;
    left: 20px;
    top: 30px;
    -webkit-animation: floating 5s -1s infinite;
    animation: floating 5s -1s infinite;
}
.safe .side-img2 {
    position: absolute;
    right: 74px;
    bottom: -110px;
    -webkit-animation: floating 5s -1s infinite;
    animation: floating 5s -1s infinite;
    /*z-index: -1;*/

}
/*.side-img3 {*/
/*    position: absolute;*/
/*    right: 0px;*/
/*    bottom: 0px;*/
/*    -webkit-animation: floating 5s -1s infinite;*/
/*    animation: floating 5s -1s infinite;*/
/*}*/
/*@-webkit-keyframes floating {*/
/*  0%, 100% {*/
/*    transform: translateY(-5%);*/
/*  }*/
/*  50% {*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

/*@keyframes floating {*/
/*  0%, 100% {*/
/*    transform: translateY(-5%);*/
/*  }*/
/*  50% {*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/
.safe .header-sec{
    text-align: center;
    padding-bottom: 50px;
}
.safe .header-sec .skstatic--sec-title{
    font-weight: 500;
    font-size: 2.1em;
    /*color: #666;*/
}
.safe .header-sec .skstatic--sec-subtitle {
    color: #666;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.8rem;
    padding: 0 18rem;
}
.safe .listing {
    display: flex;
    align-items: center;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #c7c7c757;
    box-shadow: 8px 8px 19px 4px #212c3308;
    padding: 7px 12px;
    margin-bottom: 12px;
}
/*.safe .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}*/
.safe .media .img{
    width: 46px;
    display: flex;
    justify-content: center;
}
.safe .listing .img {
    height: 45px;
    width: 60px;
    margin-right: 5px;
    text-align: center;
}
.safe .listing h3 {
    color: #4a4948;
    font-size: 1rem;
    margin: 0px;
}
/*safe sec end*/

/*quotaion sec start*/
.quotaion{
  width: 100%;
  margin: 0;
  padding: 50px 0px 50px 0px;
  background-color: #f3f9fb;
  position: relative;
}
.quotaion .header-sec{
    text-align: center;
    padding-bottom: 50px;
}
.quotaion .header-sec .skstatic--sec-title{
    font-weight: 500;
    font-size: 1.5em;
    /*color: #666;*/
}
.quotaion .header-sec .skstatic--sec-subtitle {
    color: #666;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.8rem;
    padding: 0 18rem;
}
.quotaion .quotation-block {
    /*position: absolute;*/
    box-shadow: 0px 0px 30px 0px rgb(18 27 81 / 10%);
}
.quotaion .quotation-block{
    width: 1100px;
    padding: 80px 115px;
    background-color: #FFF;
}
.quotaion .quotation-block label {
    margin-bottom: 1rem;
}
.quotaion .quotation-block .quotation-form .form-group {
    margin-bottom: 1rem;
}
.quotaion .quotation-block .quotation-form .form-control {
    padding-left: 8px;
}

.quotaion .quotation-block .quotation-form .form-control {
    border-radius: 4px;
    box-shadow: inset 0 0 10px 0 rgb(0 0 0 / 5%);
    font-size: 16px;
    color: #777;
    height: 50px;
}
.request-button .btn-primary {
    margin-top: 40px;
    padding: 10px 60px;
    width: 100%;
    background-color: #1a0dab;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: none;
    border-color:none!important;
}
.request-button .btn-primary:hover{
    outline: none;
}

/*.quotaion .quotation-block .quotation-form {
    padding: 80px 115px;
    background-color: #FFF;
}*/
/*quotaion sec end*/

/*exclusive sec end*/
.exclusive{
  width: 100%;
  margin: 0;
  padding: 50px 0px 50px 0px;
  /*background-color: #f3f9fb;*/
}

.exclusive .header-sec{
    text-align: center;
    padding-bottom: 50px;
}
.exclusive .header-sec .skstatic--sec-title{
    font-weight: 500;
    font-size: 1.5em;
    /*color: #666;*/
}
.exclusive .single-fact {
    padding: 22px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 10px 10px -10px rgb(16 45 71 / 5%);
    transition: all ease 300ms;
    cursor: pointer;
    /*min-height: 320px;*/
    z-index: 1;
    box-shadow: 8px 8px 19px 4px #212c3308;
    text-align: center;
}
.exclusive .single-fact .fact-icon i {
    font-size: 50px;
    /*line-height: 1;*/
    color: #1a0dab;
    margin-bottom: 25px;
}
.exclusive .single-fact .fact-content h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
    color: #1a0dab;
}
.exclusive .single-fact .fact-content h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
/*exclusive sec end*/

/*help sec start*/
.help{
  width: 100%;
  margin: 0;
  padding: 50px 0px 50px 0px;
  /*background-color: #f3f9fb;*/
}

.help .header-sec{
    text-align: center;
    padding-bottom: 50px;
}
.help .header-sec .skstatic--sec-title{
    font-weight: 500;
    font-size: 1.5em;
    /*color: #666;*/
}
.help .widget-wrap .service-box{
    padding: 40px 30px;
    background: #fff;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 8%);
    position: relative;
    text-align: center;
}
.help .widget-wrap{
    background-image: url(../../assets/image/service01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 15px 0px 15px;
    background-color: #000;
    position: relative;
}
.help .widget-wrap:before {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    display: block;
    z-index: 1;
}
.help .widget-wrap .service-box:before{
    font-weight: 700;
    font-style: normal; 
    counter-increment: thsnbox4;
    content: counter(thsnbox4,decimal-leading-zero);
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    font-size: 85px;
    right: 0;
    line-height: 0;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px #a53592;
    -webkit-transition: all 0.9s ease 0s;
    -o-transition: all 0.9s ease 0s;
    transition: all 0.9s ease 0s;
}
.help .widget-wrap .service-box:after {
    position: absolute;
    content: "";
    right: 0;
    left: 0;
    bottom: -6px;
    margin: 0 auto;
    text-align: center;
    border-bottom: 6px solid #a53592;
    width: 315px;
    z-index: 1;
    -webkit-transition: all 0.9s ease 0s;
    -o-transition: all 0.9s ease 0s;
    transition: all 0.9s ease 0s;
}
.help .widget-wrap .service-box .thsn-box-contents {
    padding: 90px 15px 20px;
}
.help .service-box .thsn-box-contents h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
}
.help .widget-wrap .service-box .thsn-icon {
    position: relative;
}
.help .widget-wrap .service-box .thsn-icon:after {
    position: absolute;
    content: '';
    height: 100px;
    width: 100%;
    background-color: #f9f9f9;;
    left: 0;
    right: 0;
    display: block;
    bottom: 0;
    z-index: 0;
}
.help .widget-wrap .service-box .thsn-icon img {
    z-index: 1;
    position: relative;
    -webkit-transition: all 0.9s ease 0s;
    -o-transition: all 0.9s ease 0s;
    transition: all 0.9s ease 0s;
}
/*city sec start*/
.city-sec{
  width: 100%;
  margin: 0;
  padding: 50px 0px 50px 0px;
  background-color: #f3f9fb;
}
.city-sec .header-sec{
    text-align: center;
    padding-bottom: 50px;
}
.city-sec .header-sec .skstatic--sec-title{
    font-weight: 500;
    font-size: 1.4em;
    /*color: #666;*/
}
/*city-sec end*/
.faq{
  width: 100%;
  margin: 0;
  padding: 50px 0px 50px 0px;
  /*background-color: #f3f9fb;*/
}
.faq .header-sec{
    text-align: center;
    padding-bottom: 50px;
}
.faq .header-sec .skstatic--sec-title{
    font-weight: 500;
    font-size: 1.5em;
}
.faq .f-img{
    min-height: 620px;
    background: #f7f9f4;
}
.faq .f-img img{
   width: 100%;
}
.faq .f-acr{
   width: 100%;
   margin: 0;
   padding: 0;
}
.faq .f-acr .accordion-button{
   font-weight: 600;
}
.faq .f-acr .accordion-button:hover{
   color: #1a0dab;
}
.faq .f-acr .accordion-button:not(.collapsed){
   color: #1a0dab;
   background-color: transparent;
   box-shadow: none;
}
.faq .f-acr .accordion-button:focus{
   box-shadow: none;
}
.faq .f-acr .accordion-item:first-of-type,
.faq .f-acr .accordion-item:last-of-type{
   border-radius: 0px;
}
.site-footer {
    /*background: #292929;*/
    padding: 50px 0px;
    width: 100%;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 10%);
    background-color: #fff;
}
.site-footer .social-media-follow-links{
    padding: 0px;
    text-align: center;
}
.site-footer .social-media-follow-links li {
    display: inline-block;
    font-size: 20px;
    margin: 10px 2%;
    list-style: none;
}
.site-footer .social-media-follow-links li a{
    color:#1f2428;
}
.site-footer .use-links{
    text-align: center;
}
.site-footer .use-links .footer-link li {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
}
.site-footer .use-links .footer-link li a{
    display: block;
    padding: 5px 20px;
    color:#1f2428;
}
.site-footer .tag {
    text-align: center;
}
.site-footer .tag p{
    margin: 0;
    padding: 0;
    color:#1f2428;
}