
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: #872929;
}
::-webkit-scrollbar-track {
    background-color: #e8e8e8;
}

::selection {
    background-color: #872929;
    color: #fff;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
}

p {
    font-size: 14px;
    font-family: 'Poppins';
}

a,button,ul,ol,li,p,h1,h2,h3,h4,h5,h6{
    padding: 0;
    margin: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button{
    appearance: none;
}
input[type="number"]{
    -moz-appearance: textfield;
}

.h-100 {
  height: 100%;
  padding: 15px 0;
}
.card{
  height: 100%;
}

/* ===================== Globle Items ===================== */
.btn-1{
    display: inline-block;
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary-color);
    background-color: #fff;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 18px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: .3s;
}
.btn-1:hover{
    color: #fff;
    background-color: var(--primary-color);
}
.round-btn{
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary-color);
    background-color: #fff;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: .3s;
    box-shadow: inset 0.3rem 0.3rem 0.5rem rgb(195 193 198 / 90%), inset -0.2rem 0.4rem 0.4rem #f0f2f5;
}
.round-btn:hover{
    color: black;
    background-color: #dddddd;
}
.round-btn i{
    color: #000;
}
.btn-primary {
    color: #fff;
    border-color: #000;
    background: linear-gradient(to right, #872929, #e63136);
}
/* ===================== End Globle Items ===================== */


/* ======================== Header Area ======================== */
header{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #eee;
    transition: .5s ease;
    z-index: 997;
}
header.active {
    /*background-color: #fff;*/
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: linear-gradient(to right, #872929, #e63136);
}
header .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header .logo img{
    width: 150px;
    padding: 10px;
}
header .header .logo img.logo-img-1{
    display: block;
}
header .header .logo img.logo-img-2{
    display: none;
}
header.active .header .logo img.logo-img-1{
    display: none;
}
header.active .header .logo img.logo-img-2{
    display: block;
}
header .header .navs > ul > li{
    position: relative;
    display: inline-block;
}
header .header .navs > ul > li > a{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    color: #000;
    padding: 25px 5px;
    margin: 0 3px;
    cursor: pointer;
}
header .header .navs > ul > li:hover > a{
    color: #000;
}
header .header .navs > ul > li > a.down-arrow::after{
    content: '\f107';
    font-family: "Font Awesome 5 Pro";
    line-height: 1.0;
    display: inline-block;
    margin-left: 5px;
    transition: .3s;
}
header .header .navs > ul > li:hover > a.down-arrow::after{
    transform: rotate(180deg);
}
header.active .header .navs > ul > li > a,
header.active .header .navs > ul > li > a:hover{
    color: #fff;
}
header .header .navs .sub-menu{
    position: absolute;
    top: 100%;
    width: 280px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}
header .header .navs > ul > li:hover > .sub-menu{
    pointer-events: all;
    opacity: 1;
}
header .header .navs .sub-menu > ul{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 8px;
    padding: 18px 15px;
}
header .header .navs .sub-menu > ul > li{
    display: block;
}
header .header .navs .sub-menu > ul > li > a{
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .005em;
    color: var(--neutra-color);
    padding: 5px 0;
    transition: .1s;
    text-transform: capitalize;
}
header .header .navs .sub-menu > ul > li > a:hover{
    color: var(--primary-color);
}
header .header .btns-box{
    display: flex;
    align-items: center;
}
header .header .btns-box .request-btn{
    padding: 0 15px 0 20px;
}
header .header .btns-box .contact-btn{
    position: unset;
}
header .header .btns-box .contact-btn:hover .btn-icon{
    background-color: #dddddd;
    color: #fff;
}
header .header .btns-box .contact-btn .contact-box{
    position: absolute;
    right: 0;
    padding-top: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}
header .header .btns-box .contact-btn:hover .contact-box{
    pointer-events: all;
    opacity: 1;
    margin-right: 10px;
}
header .header .btns-box .contact-btn .contact-info{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 8px;
    overflow: hidden;
}
header .header .btns-box .contact-btn .contact-info .contact-heading{
    font-size: 18px;
    font-weight: 600;
    color: #555;
    padding: 6px 15px;
}
header .header .btns-box .contact-btn .contact-info .info{
    padding: 10px 15px;
    background-color: rgba(204, 204, 204, 0.3);
}
header .header .btns-box .contact-btn .contact-info .info p{
    font-size: 14px;
    font-weight: 600;
    color: #555;
    padding-bottom: 8px;
}
header .header .btns-box .contact-btn .contact-info .info a img,
header .header .btns-box .contact-btn .contact-info .info a i{
    width: 25px;
    font-size: 20px;
    margin-right: 8px;
}
header .header .btns-box .contact-btn .contact-info .info a{
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
header .header .btns-box .contact-btn .contact-info .info a:hover{
    opacity: .7;
}


@media screen and (max-width: 1199px) {
    header{
        padding: 20px 0;
    }
    header .header .navs{
        display: none;
    }
    header .header .btns-box .contact-btn{
        display: none;
    }
    header .header .btns-box{
        margin-left: auto;
    }
}

@media screen and (max-width: 575px) {
    header{
        padding: 15px 0;
    }
    header .header .logo img{
        width: 110px;
    }
    header .header .btns-box{
        display: block;
        margin-right: 15px;
    }
    header .header .round-btn{
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    header .header .btns-box .request-btn .btn-1{
        display: none;
    }
}
/* ======================== End Header Area ======================== */


/* ======================== Side-Menu Area ======================== */
.side-menu-area::-webkit-scrollbar{
    display: none;
}
.side-menu-area{
    scrollbar-width: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}
.side-menu-area.active{
    pointer-events: all;
}
.side-menu-area .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: .5s ease;
}
.side-menu-area.active .overlay{
    opacity: 1;
}
.side-menu-area .side-menu-box{
    scrollbar-width: none;
    width: 280px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* border-top-right-radius: 50px; */
    /* border-bottom-right-radius: 50px; */
    background-color: #fff;
    overflow: auto;
    transform: translateX(-150%);
    transition: .8s;
}
.side-menu-area.active .side-menu-box{
    transform: translateX(0%);
}
.side-menu-area .side-menu-box::-webkit-scrollbar{
    display: none;
}
.side-menu-area .side-menu-box .side-menu{
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.side-menu .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #eee;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    padding: 12px 0 6px;
}
.side-menu .header .logo img{
    width: 120px;
    padding: 1pc;
}
.side-menu .header .close-btn button{
    border: none;
    outline: none;
    background-color: transparent;
    padding: 10px 20px;
}
.side-menu .navs{
    padding: 25px 25px;
}
.side-menu .navs ul{
    list-style: none;
}
.side-menu .navs > ul > li:not(:last-child){
    border-bottom: 1px solid #eee;
}
.side-menu .navs > ul > li > a{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* font-weight: 600; */
    color: var(--neutra-color);
    padding: 8px 0;
    cursor: pointer;
}
/* .side-menu .navs > ul > li > a.active, */
.side-menu .navs > ul > li > a:hover{
    color: var(--primary-color);
}
.side-menu .navs > ul > li > a.down-arrow::after{
    content: '\f107';
    font-family: "Font Awesome 5 Pro";
    line-height: 1.0;
    display: inline-block;
    margin-left: 5px;
    transition: .3s;
}
.side-menu .navs > ul > li > a.active.down-arrow::after{
    transform: rotate(180deg);
}
.side-menu .navs > ul > li > .sub-menu{
    display: none;
    padding-left: 10px;
    padding-bottom: 10px;
}
.side-menu .navs .sub-menu > ul > li a{
    text-decoration: none;
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--neutra-color);
    padding: 4px 0;
}
.side-menu .navs .sub-menu > ul > li a:hover{
    color: var(--primary-color);
}
.side-menu .request-btn{
    text-align: center;
    margin-left: -15px;
    margin-bottom: 40px;
    margin-top: auto;
}
/* ======================== End Side-Menu Area ======================== */


/* ======================== Request-Form Area ======================== */
.request-form-popup::-webkit-scrollbar{
    display: none;
}
.request-form-popup{
    scrollbar-width: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    padding: 0 12px;
    display: flex;
    overflow: hidden;
    pointer-events: none;
}
.request-form-popup.active{
    pointer-events: all;
}
.request-form-popup .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: .5s ease;
}
.request-form-popup.active .overlay{
    opacity: 1;
}
.request-form-popup .request-form-box{
    scrollbar-width: none;
    width: 100%;
    max-width: 380px;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    overflow: auto;
    padding: 25px 0;
    margin: auto;
    opacity: 0;
    transform: translateY(-50%);
    transition: .5s;
}
.request-form-popup.active .request-form-box{
    opacity: 1;
    transform: translateY(0%);
}
.request-form-popup .request-form-box::-webkit-scrollbar{
    display: none;
}
.request-form-popup .request-form-box .request-form{
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: auto;
}
.request-form .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.request-form .header .title{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0 15px;
}
.request-form .header .close-btn button{
    border: none;
    outline: none;
    background-color: transparent;
    padding: 10px 20px;
}
.request-form .form{
    padding: 0px;
}
.request-form .form .input-field{
    margin-bottom: 15px;
}
.request-form .form .input-field input,
.request-form .form .input-field textarea, .request-form .form .input-field select{
    border: none;
    outline: none;
    width: 100%;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    padding: 10px 18px;
}
.request-form .form .input-btn input[type="submit"]{
    font-weight: 600;
    background: linear-gradient(to right, #872929, #e63136);
    color: #fff;
    transition: .5s;
}
.request-form .form .input-btn input[type="submit"]:hover{
    background-color: #fff;
    color: var(--primary-color);
}
/* ======================== End Request-Form Area ======================== */

#top-header {
    padding: 10px 0;
    background-color: #ddd;
}
#top-header .searchInputWrapper {
  position: relative;
}

#top-header .searchInput {
  width: 100%;
  height: 40px;
  padding: 0 1rem;
  border-radius: 2rem;
  border: none;
  transition: transform 0.1s ease-in-out;
  box-shadow: inset 0.3rem 0.3rem 0.5rem rgb(195 193 198 / 90%), inset -0.2rem -0.2rem 0.4rem #f0f2f5;
}

#top-header::placeholder {
  color: #a1a1a1;
}

/* hide the placeholder text on focus */
#top-header :focus::placeholder {
  text-indent: -999px
}

#top-header .searchInput:focus {
  outline: none;
}

#top-header .searchInputIcon {
  position: absolute;
  right: 0.8rem;
  top: 14px;
  color: #a1a1a1;
  transition: all 0.1s ease-in-out;
}
.slider-img {
  position: relative;
  font-family: Arial;
}

.text-block {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: black;
  color: white;
  padding: 10px 20px;
}
.text-block h4{
  font-size: 18px;
    font-family: "Poppins";
    font-weight: 600;
    margin-bottom: 10px;
}
.text-block p{
  font-size: 14px;
  font-family: "Poppins";
}


.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 300px;
}
#slider-btm{
    background: #ddd;
    padding: 50px 0;
}
#slider-btm button{
    /*background-color: transparent;
    color: black;
    border: 1px solid #000;
    box-shadow: inset 0.3rem 0.3rem 0.5rem rgb(195 193 198 / 90%), inset -0.2rem 0.4rem 0.4rem #f0f2f5;
    margin: 20px;*/
    color: #fff;
    border: 1px solid #000;
    box-shadow: inset 0.3rem 0.3rem 0.5rem rgb(146 42 43), inset -0.2rem 0.4rem 0.4rem #df3035;
    margin: 20px;
    background: linear-gradient(to right, #872929, #e63136);
    padding: 8px 30px;
}
#slider-btm h3{
    font-size: 20px;
    font-weight: 600;
}
#slider-btm p{
    font-weight: 500;
    font-size: 14px;
    padding-top: 10px;
}
#video-slider h2{
    font-size: 50px;
    font-weight: bold;
    font-family: 'Poppins';
    text-align: center;
}
#video-slider p{
    font-family: 'Poppins';
    font-size: 14px;
    text-align: justify;
    color: #777;
    line-height: 26px;
}
#video-slider .video-txt{
    padding: 20px 0;
}
#video-slider .seperator{
    color: #ccc;
    width: 100%;
    margin: 30px auto;
    overflow: hidden;
    text-align: center;
    line-height: 1.2em;
}
#video-slider .seperator::before{
    border-bottom: 1px solid #eee;
    content: "";
    display: inline-block;
    height: .65em;
    margin: 0 -4px 0 -100%;
    vertical-align: top;
    width: 50%;
}
#video-slider .seperator::after, #video-slider .separator::after {
    margin: 0 -100% 0 0;
}
#video-slider .seperator::after{
    border-bottom: 1px solid #eee;
    content: "";
    display: inline-block;
    height: .65em;
    vertical-align: top;
    width: 50%;
}
#video-slider .card{
    width: 100%;
}
#video-slider .card p{
    font-size: 14px;
    font-family: 'Poppins';
    color: #000;
    padding: 10px 0;
}

#video-slider{
    padding: 50px 0;
}


.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #000;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
#video-slider .owl-nav button {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}
.owl-nav span {
    font-size: 70px;
    position: relative;
    top: -5px;
}
.owl-nav button:focus {
    outline: none;
}
#video-slider .video-img{
    margin: 50px 0;
}
#video-slider .video-img img{
    width: 100%;
    height: 100%;
}
#mobile-apps{
    background-color: #fff;
}
#mobile-apps h2{
    font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins';
    margin-bottom: 2pc;
}
#mobile-apps p{
    font-family: 'Poppins';
    font-size: 16px;
    text-align: justify;
    color: #777;
}
#mobile-apps button{
    color: #fff;
    border: 1px solid #000;
    box-shadow: inset 0.3rem 0.3rem 0.5rem rgb(146 42 43), inset -0.2rem 0.4rem 0.4rem #df3035;
    margin: 20px;
    background: linear-gradient(to right, #872929, #e63136);
    padding: 8px 30px;
}
#mobile-apps .mobile-txt{
    padding: 10px 0;
}
#about{
    padding: 40px 0;
}
#about .about-txt{
    padding: 10px 0;
}
#about .about-txt h2{
    font-size: 26px;
    font-weight: 600;
    font-family: 'Poppins';
    margin-bottom: 1pc;
    text-align: center;
}
#about .about-txt p{
    font-family: 'Poppins';
    font-size: 14px;
    text-align: justify;
    color: #777;
    padding: 10px 0;
    line-height: 24px;
}
#about .about-img img{
    width: 100%;
    padding-bottom: 4pc;
}
#about .about-txt ul{
    margin: 8px auto;
    padding: 0 20px;
}
#about .about-txt ul li{
    list-style: disc;
    line-height: 24px;
    font-size: 14px;
    font-family: 'Poppins';
    padding: 6px 0;
}



section#counter-stats {
    display: flex;
    justify-content: center;
    margin-top: 0px;
    background-color: #ddd;
    padding: 30px 0px;
}

.stats {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  font-family: 'Poppins';
}

.stats .fa {
  color: #872929;
  font-size: 60px;
}

#counter-stats .stats #plus:after {
  content: '+';
}

/*/ end count stats /*/

#comon-hero .img{
    padding: 10px 0;
}
#comon-hero .img img{
    width: 100%;
}
.breadcrumbs {
    padding: 20px;
    margin: 10px 0;
    background-color: #f0f0f0;
    box-shadow: 0 5px 5px rgb(170 170 170 / 50%) inset, 0 -5px 5px rgb(228 226 226 / 50%) inset;
}
.breadcrumbs li {
    display: inline-block;
    padding-right: 10px;
}
.breadcrumbs li a {
    display: inline-block;
    text-decoration: none;
    font-family: 'Poppins';
    font-size: 14px;
    color: #aaa;
}
.breadcrumbs li a:not(.active)::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-size: 12px;
    margin-left: 10px;
}
.product_rate {
    margin-top: 10px;
    font-family:'Poppins';
}
.product_rate>span:nth-child(1){
    color: #fff;
    background-color: #2aa644;
    padding: 2px 5px;
    font-size: 14px;
    font-family: 'Poppins';
}
.product_rate>span:nth-child(2) {
    padding-left: 7px;
    font-size: 16px;
    font-family: 'Poppins';
}
.tabs {
  display: flex;
}

.tab {
  font-size: 16px;
  padding: 15px 30px;
  cursor: pointer;
  border: 1px solid #eee;
}

.tab.active {
  background-color: rgb(240 240 240);
}

.content {
  width: 100%;
  max-width: 500px;
  margin-top: 25px;
}

.content-item {
  display: none;
  padding: 0px;
  border: 0px solid #ccc;
}

.content-item.active {
  display: block;
  justify-content: left;
}
#comon-hero .product_description table tbody th{
    padding-right: 30px;
}
#tabs-info{
    padding: 20px 0;
}
#tabs-info .content .content-item table tbody, td, tfoot, th, thead, tr{
    padding: 10px;
}
#tabs-info .content .content-item b{
    color: #b12704;
    font-size: 18px!important;
    font-weight: 600;
}
#tabs-info .content .content-item .descript{
    border-top: 1px solid #ddd;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
#tabs-info .content .content-item .descript p{
    font-size: 14px;
    text-align: justify;
    line-height: 26px;
    font-family: 'Poppins';
}
#tabs-info .content .content-item  .points{
    border-bottom: 1px solid #ddd;
}
#tabs-info .content .content-item  .points h5{
    font-size: 16px;
    color: #1f1f1f;
    font-weight: 700;
    font-family:'Poppins';
    padding: 20px 0;
}
#tabs-info .content .content-item  .points ul{
    text-align: justify;
    font-size: 1rem;
    color: #777;
    font-family:'Poppins';
    margin: 0;
    padding-left: 1rem!important;

}
#tabs-info .content .content-item  .points ul li{
    list-style: none;
    position: relative;
    margin-bottom: 10px
}
#tabs-info .content .content-item  .points ul li::before{
    font-family: 'Font Awesome 5 Pro';
    content: "\f00c";
    display: inline-block;
    color: #2250fc;
    margin-left: -20px;
    position: absolute;
    font-size: 12px;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
}
#tabs-info .content .content-item .offers h5{
    font-size: 16px;
    color: #1f1f1f;
    font-weight: 700;
    font-family: 'Poppins';
    padding: 20px 0;
}
#tabs-info .content .content-item  .accounting .table tbody tr td{
    font-size: 14px;
}
#tabs-info .content .content-item  .accounting .table tbody tr td span a{
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}
#service-detail-page h2{
    font-size: 28px;
    font-weight: 600;
    font-family: 'Poppins';
    margin: 2pc 0;
    text-align: center;
}
#service-detail-page .service_card_body p{
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins';
    margin: 2pc 0;
    text-align: justify;
}
#service-detail-page .service_card_body ul li{
    padding: 5px 0;
    text-align: justify;
}
#service-detail-page .service_card_body ul li a{
    font-size: 14px;
    font-family: 'Poppins';
    text-decoration: none;
}
#service-detail-page .services p.common_content{
    text-align: justify;
    font-size: 14px;
    line-height: 28px;
    padding-bottom: 20px;
}

.pricing-card module-btn a {
    border: none;
    background-color: transparent;
    padding: 15px 25px;
    cursor: pointer;
    color: white;
    background: linear-gradient(to right, #872929, #e63136);
    display: inline-block;
    border-radius: 7px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: "work sans",sans-serif;
    font-size: 15px;
    box-shadow: inset 0.3rem 0.3rem 0.5rem rgb(146 42 43), inset -0.2rem 0.4rem 0.4rem #df3035;
}

.pricing-card .points{
  margin: 10px auto;
  padding: 0px 20px 0px 30px;
  max-width: 500px;
  border-left: solid 2px #ccc;
}
.pricing-card .points p{
  background-color: white;
  border-left: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  padding: 10px;
  line-height: 1.6;
  position: relative;
  max-width: 500px;
}
.pricing-card .points p::before{
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: solid 2px #ccc;
  border-radius: 50%;
  background-color: #932a2a;
  top: 10px;
  left: -38px;
}
.pricing-card .points p::after{
  font-family: "Font Awesome 5 Pro";
  content: "\f101";
  position: absolute;
  top: 4px;
  left: -70px;
  font-size: 18px;
  color: darkblue;
}

.module {
  padding:20px;
  background-color: white;
  border-radius: 3px;
  margin-bottom: 3rem;
  box-shadow: 0 0 15px rgb(30 69 141 / 58%);
  margin-top: 50px;
}
.module__heading--a {
  background-color: #932a2a;
}
.module__heading {
  margin-top: -1.5rem;
  margin-right: 0;
  margin-bottom: 1.5rem;
  margin-left: 0;
  padding: 0.75rem;
  font-size: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  color: white;
}
/* Pattern stuff */
.custom-bullet {
margin-left: 0;
list-style: none;
counter-reset: counter;
}
.custom-bullet > li:before {
counter-increment: counter;
content: counter(counter);
}

.custom-bullet--a {
position: relative;
}
.custom-bullet--a > li{
  font-size: 14px;
}
.custom-bullet--a > li:before {
position: relative;
display: inline-block;
z-index: 100;
width: 30px;
height: 30px;
margin-right: 0.75rem;
margin-bottom: 0.75rem;
border: 3px solid #942a2b;
line-height: 24px;
text-align: center;
color: #000;
background-color: white;
border-radius: 100em;
counter-increment: counter;
content: counter(counter);
font-weight: 800;
}
.custom-bullet--a > li:after {
position: absolute;
top: 0;
bottom: 0;
z-index: 90;
left: 0.75rem;
margin-left: 1.5px;
border-left: 3px solid #1e458d;
content: "";
}
.custom-bullet--a > li:last-child:before {
margin-bottom: 0;
}
.module ol li a{
  color: #000;
  text-decoration: none;
}
.module .module-btn{
  display: table;
  border-radius: 0;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  text-decoration: none;
  background-color: var(--neutra-color);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 18px;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  cursor: pointer;
  transition: .3s;
  margin: 10px auto 0;
}
.module .module-btn a{
  text-decoration: none;
  color: #000;
}


#service-detail-page .consul-form{
    background-color: #f7f8fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 10px #00000029;
    border: 4px solid #e43135;
}
#service-detail-page .consul-form h5 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    padding-bottom: 15px;
}
#service-detail-page .consul-form .input-field {
    padding-bottom: 15px;
}
#service-detail-page .consul-form .input-field > span {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}
#service-detail-page .consul-form .input-field input,
#service-detail-page .consul-form .input-field textarea {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    background-color: #eee;
    padding: 5px 15px;
    height: 40px;
    font-size: 14px;
}
#service-detail-page .consul-form input.country_code_select {
    padding-left: 60px !important;
}
#service-detail-page .consul-form .input-field input[type="submit"] {
    background: linear-gradient(to right, #872929, #e63136);
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    margin-top: 15px;
    transition: 0.3s ease;
}
#documents{
    padding: 20px 0;
}
#documents .doc-txt h2{
    font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins';
    padding-bottom: 10px;
    text-align: center;
}
#documents .doc-txt li{
    padding: 8px 0 8px 35px;
    position: relative;
    line-height: 28px;
    font-size: 16px;
    color: black;
    list-style: none;
}
#documents .doc-txt li:before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    left: 0;
    top: 9px;
    background: linear-gradient(to right, #872929, #e63136);
    height: 25px;
    width: 25px;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    color: #fff;
}
#documents .doc-txt li:before, .ul-check li:before {
    content: "\f00c";
}
#documents p{
    padding: 10px 0;
    text-align: center;
    font-size: 18px;
}
#services-card{
    background-color: #f7f9fb;
    padding: 40px 0;
}
#services-card h2{
    font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins';
    text-align: center;
    padding-bottom: 20px;
}
#services-card p{
    padding-bottom: 10px;
    text-align: center;
}
/* #services-card .card{
    height: 600px;
} */
#services-card .card .card-body p{
    text-align: justify;
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 24px;
    font-weight: 400;
    padding: 10px 0;
}
/* =================================== Name Availability =================================== */

.name-availability{
  background-image: linear-gradient(rgba(0,0,0,0.80),rgba(0,0,0,0.80)), url(../img/features-bg.jpg);
  text-align: center;
  font-family: 'Poppins';
  padding: 60px;
}

.name-availability h2{
  color: #fff;
}
.name-availability p{
  font-size: 20px;
  color: #fff;
}
.name-availability .form{
  margin: 0 auto;
  margin-top: 40px;
}
.name-availability .form form input{
  width: calc(33% - 15px);
  border: none;
  outline: none;
  padding: 5px 10px;
  border-radius: 3px;
  margin: 0 5px;
}
.name-availability .form form input[type="number"]::-webkit-inner-spin-button,
.name-availability .form form input[type="number"]::-webkit-outer-spin-button{
  appearance: none;
}
.name-availability .form form input[type="submit"]{
  width: calc(100% - 20px);
  padding: 10px;
  margin: 0;
  margin-top: 20px;
  background: linear-gradient(to right, #872929, #e63136);
  color: #fff;
}
@media screen and (max-width: 768px){
  .name-availability .form form input{
      width: calc(100% - 20px);
      margin-top: 15px !important;
  }
  .name-availability{
      padding: 60px 20px;
  }
  .name-availability .form {
      width: 100%;
  }
}


#call-to-action{
    padding: 46px 0 0;
    background: #ddd;
}
#call-to-action h4{
    font-size: 19px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 15px;
    font-family: 'Poppins';
}
#call-to-action button{
    border: none;
    background-color: transparent;
    padding: 10px 50px;
    cursor: pointer;
    color: white;
    background: linear-gradient(to right, #872929, #e63136);
    display: inline-block;
    border-radius: 2px;
    margin-bottom: 50px;
    font-family: 'Poppins';
    font-size: 15px;
    box-shadow: inset 0.3rem 0.3rem 0.5rem rgb(146 42 43), inset -0.2rem 0.4rem 0.4rem #df3035;
    text-transform: capitalize;
}

.service-24 {
      padding: 40px 0;
      background-color: #eee;
    }
    .service-24  h2{
        font-size: 30px;
        font-weight: 600;
        color: #000;
        font-family: 'Poppins';
        text-align: center;
        padding-bottom: 30px;
    }
    .service-24 h6 {
      color: #3e4555;
        padding: 20px 0;
        font-size: 16px;
        text-align: justify;
        line-height: 24px;
        font-weight: 300;
    }

    .service-24 .card.card-shadow {
      -webkit-box-shadow:  10px 10px 30px rgba(115, 128, 157, 0.5);
      box-shadow: 10px 10px 30px rgba(115, 128, 157, 0.5)
    }

    .service-24 a {
      text-decoration: none;
      padding: 10px 30px;
    }

    .service-24 .card-hover:hover {
     background: linear-gradient(to right, #872929, #e63136);
      height: 100%;
    }

    .service-24 .card-hover:hover .bg-success-grediant {
      color: #ffffff;
      text-fill-color: #ffffff;
      -webkit-text-fill-color: #ffffff;
    }

    .service-24 .card-hover:hover .ser-title {
      color: #ffffff;
    }

    .service-24 .bg-success-grediant {
      background: #2cdd9b;
      background: linear-gradient(to right, #912a2a 0%, #e03135 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-fill-color: transparent;
      font-size: 22px;
      font-weight: 600;
     font-family: 'Poppins';
    }

    .service-24 .wrap-service-24 .card {
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out;
      -webkit-transition: 0.3s ease-out;
      height: 100%;
    }

    .service-24 .wrap-service-24 .card:hover {
      -ms-transform: translateY(-10px);
      transform: translateY(-10px);
      -webkit-transform: translateY(-10px);
      height: 100%;
    }

    .service-24 .btn-outline-success {
      color: #2cdd9b !important;
      background-color: transparent;
      border-color: #2cdd9b;
    }

    .service-24 .btn-outline-success:hover {
      background: #2cdd9b;
      border-color: #2cdd9b;
      color: #ffffff !important;
    }

    .service-24 .btn-md {
      padding: 15px 45px;
      font-size: 16px;
    }

    header .header .navs .sub-menu .custom-menu {
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    border-radius: 8px;
    padding: 18px 15px;
    width: 800px;
    right: -200px;
    position: absolute;
    z-index: 999;
    overflow-y: auto;
}
header .header .navs .sub-menu .custom-menu h5{
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}
header .header .navs .sub-menu .custom-menu li {
    list-style: none;
    font-size: 14px;
    line-height: 30px;
}
header .header .navs .sub-menu .custom-menu li a{
    text-decoration: none;
    color: #000;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background:#dddddd;
  }
  #footer .footer-contact img{
      width: 150px;
      padding-bottom: 10px;
  }
  #footer p span{
    font-weight: 600;
    display: block;
    padding-top: 10px;
  }
  #footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #37517e;
  }
  #footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'Poppins';
    color: #5e5e5e;
  }
  #footer .footer-top h4 {
    font-size: 18px;
    font-weight: bold;
    color: #37517e;
    position: relative;
    padding-bottom: 20px;
  }
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #47b2e4;
    font-size: 18px;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
  }
  #footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #47b2e4;
  }
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background:#872929;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  #footer .footer-top .social-links a:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
  }
  #footer .footer-bottom {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
  }
  #footer .copyright {
    text-align: center;
    color: #000;
  }
  #footer ul li:before {
    margin-left: -20px;
    position: absolute;
    font-size: 12px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;
    font-family: 'Font Awesome 5 Pro';
    content: "\f054";
}


/*About*/

#hero-slider .item {
  height: 100vh;
  position: relative;
}
#hero-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero-slider .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}
#hero-slider .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}
#hero-slider .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
#hero-slider .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}
#hero-slider .item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}
#hero-slider .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
#hero-slider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
#hero-slider .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
#hero-slider .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
#hero-slider .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
#hero-slider .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
#hero-slider .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
#hero-slider .owl-nav .owl-prev:focus {
  outline: 0;
}
#hero-slider .owl-nav .owl-prev:hover {
  background: #000 !important;
}
#hero-slider .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
#hero-slider .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
#hero-slider .owl-nav .owl-next:focus {
  outline: 0;
}
#hero-slider .owl-nav .owl-next:hover {
  background: #000 !important;
}
#hero-slider:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
#hero-slider:hover .owl-next {
  right: 0px;
  opacity: 1;
}
#hero-slider .slider-btn{
    color: #fff;
    border: 1px solid #000;
    box-shadow: inset 0.3rem 0.3rem 0.5rem rgb(146 42 43), inset -0.2rem 0.4rem 0.4rem #df3035;
    margin: 20px;
    background: linear-gradient(to right, #872929, #e63136);
    padding: 8px 30px;
    display: inline-block;
    cursor: pointer;
    z-index: 1;
}
#hero-slider .slider-btn a{
    text-decoration: none;
    color: #fff;
}

#about-us .about-txt h2{
    font-size: 40px;
    font-weight: 600;
    font-family: 'Poppins';
    padding: 20px 0;
}
#about-us{
    padding: 40px 0;
}
#about-us .about-txt p{
    font-size: 16px;
    padding: 10px 0;
    line-height: 28px;
}
#about-investor .invest-txt p{
    font-size: 18px;
    padding: 10px 0;
    line-height: 32px;
    text-align: justify;
}
#about-investor .about-img img{
    width: 100%;
    margin: 30px auto;
}

#team{
    padding: 40px 0;
}
#team .top{
    padding: 40px 0;
}
#team h2{
    text-align: center;
    padding: 20px 0;
}
#team p{
    font-size: 16px;
    padding: 10px 0;
    line-height: 32px;
    text-align: center;
}
#team .team-img img{
    width: 100%;
    margin: 30px auto;
}

#team .team-txt p{
    font-size: 16px;
    padding: 10px 0;
    line-height: 32px;
    text-align: justify;
}

#video {
    background-image: url("../img/video.gif");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 500px;
}

#video .video-txt{
    margin: 150px auto;
}
#video .video-txt h2{
    color: #fff;
    font-size: 50px;
    font-weight: 600;
}

#video .video-txt p{
    font-size: 20px;
    color: #fff;
    padding: 20px 0;
}

#logo .partner-logo img{
    width: 200px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
#ads-slider{
    padding: 40px 0;
}
#ads-slider h2{
    text-align: center;
    font-size: 30px;
    padding: 20px 0;
    font-weight: 600;
}
#mission .mission-head {
    padding: 40px 0;
}
#mission .mission-head h2{
 text-align: center;
    font-size: 30px;
    padding: 10px 0;
    font-weight: 600;
}
#mission .mission-head p{
    text-align: center;
}
#mission .mission-txt p{
    font-size: 16px;
    padding: 10px 0;
    line-height: 32px;
    text-align: justify;
}
#mission .mission-img img{
    width: 100%;
}
#mission{
    padding: 20px 0;
}

#process .img img{
    width: 400px;
    padding-top: 50px;
}

#process .process-txt h2{
    font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins';
    padding-bottom: 20px;
    text-align: center;
}
#process .process-txt p{
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 20px;
    text-align: center;
}
#process .process-timeline {
    list-style-type: none;
    position: relative;
}
.timeline:before {
    content: '';
    position: absolute;
    left: 16px;
    height: 100%;
    z-index: 2;
    top: 0;
    bottom: 0;
    border-left: 3px dashed #E3E6F0;
}
.timeline .timeline-item {
    margin: 2rem 2rem 0rem 5rem;
    list-style: none
}
.timeline .timeline-item .timeline-icon {
    background: linear-gradient(to right, #872929, #e63136);
    position: absolute;
    border-radius: 50%;
    left: 0;
    width: 34px;
    height: 34px;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 5px;
    font-size: 18px;
}
.process-timeline h3:not(:last-child), .h3:not(:last-child) {
    margin-bottom: 12px;
}
#process{
    padding: 40px 0;
}
#partner-points{
    padding: 40px 0;
}
#partner-points .points h2{
    font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins';
    text-align: center;
}
#partner-points .points p{
    text-align: center;
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 20px;
}
#partner-points .points ul{
    padding: 30px 0;
}
#partner-points .points ul li{
  font-size: 16px;
  line-height: 34px;
  list-style: disc;
}
#partner-points .img img{
    width: 100%;
}
#table .table-head{
    padding: 20px 0;
}
#table .table-head h2{
    font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins';
    text-align: center;
    padding-bottom: 10px;
}
#table .table-head p{
    text-align: center;
}
#faq{
    padding: 40px 0;
}
#faq .faq-head{
    /*background-color: red;*/
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 300px;
}
#faq .faq-head h2{
   font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins';
    text-align: center;
    padding-bottom: 20px;
}
#faq p{
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #e1313524;
}
.accordion-button:focus{
    box-shadow: none;
}

#contact{
    background-image: url("../img/contact.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#contact h2{
    font-size: 80px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#contact-info{
    padding: 40px 0;
}
#contact-info .contact-box{
    /*background-color: red;*/
    box-shadow: 10px 10px 30px rgb(115 128 157 / 50%);
    margin-bottom: 30px;
    height: 230px;
}
#contact-info .contact-box h3{
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    padding: 20px 0;
}
#contact-info .contact-box ul{
    padding: 10px 0;
    margin: 0;
}
#contact-info .contact-box ul li{
    list-style: none;
    text-decoration: none;
    text-align: center;
    line-height: 30px;
}
#contact-info .contact-box ul li a{
    color: #000;
    text-decoration: none;
}
#contact-info .contact-box p{
    text-align: center;
}
#contact-info .form{
    box-shadow: 10px 10px 30px rgb(115 128 157 / 50%);
}
#contact-info .form h3{
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    padding: 20px 0;
}
#contact-info .form .form-row{
    padding: 20px 50px;
}
#contact-info .form input{
    margin-bottom: 10px;
    border-radius: 10px;
}
#contact-info .form .form-row .input-btn-box input{
    flex: none;
    border: none;
    outline: none;
    font-family: 'Poppins';
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    background-color: #15105b;
    padding: 2px 20px;
    border-radius: 3px;
    margin: 10px auto;
    margin-left: auto;
    margin-right: auto;
    display: table;
}
#map iframe{
    width: 100%;
    height: 500px;
}
#terms-head{
  background-image: url("../img/terms.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#terms-head h2{
  font-size: 80px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#terms{
    padding: 20px 0;
}

#terms .txt h3{
   font-size: 28px;
    font-family: 'Poppins';
    padding: 10px 0;
}
#terms .txt p{
    font-size: 14px;
    padding: 20px 0;
    font-family: 'Poppins';
}

#policy-head{
  background-image: url("../img/policy.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#policy-head h2{
  font-size: 80px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#policy{
    padding: 20px 0;
}
#policy .txt p{
    font-size: 14px;
    padding: 20px 0;
    font-family: 'Poppins';
}

#policy .txt h3 {
    font-size: 28px;
    font-family: 'Poppins';
    padding: 10px 0;
}

#policy .txt ul{
    margin: 0;
    padding: 10px 0;
}

#policy .txt ul li{
    font-size: 16px;
    line-height: 34px;
}
#policy .txt ol{
    margin: 0;
    padding: 0;
}
#policy .txt ol li{
    font-size: 16px;
    line-height: 34px;
}
#policy .txt h6 {
    font-size: 22px;
    font-family: 'Poppins';
    padding: 10px 0;
}

#refund-head {
  background-image: url("../img/refund.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#refund-head  h2{
  font-size: 80px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#refund-policy{
    padding: 20px 0;
}
#refund-policy .txt p{
    font-size: 14px;
    padding: 20px 0;
    font-family: 'Poppins';
}

#refund-policy .txt h3 {
    font-size: 28px;
    font-family: 'Poppins';
    padding: 10px 0;
}

#refund-policy .txt ul{
    margin: 0;
    padding: 10px 0;
}

#policy .txt ul li{
    font-size: 16px;
    line-height: 34px;
}

#disc-head {
  background-image: url("../img/disclaimer.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#disc-head  h2{
  font-size: 80px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#disc-policy{
    padding: 20px 0;
}

#disc-policy .txt h3{
    font-size: 28px;
     font-family: 'Poppins';
     padding: 10px 0;
 }
 #disc-policy .txt p{
     font-size: 14px;
     padding: 20px 0;
     font-family: 'Poppins';
 }


 .page-header {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .page-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .post {
    padding-top: 3.846rem;
  }
  .post-featured-img {
    height: 100%;
    width: 100%;
    min-height: 15rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .post-preview-meta-img {
    height: 2.25rem;
    width: 2.25rem;
  }

  .card-review img {
    width: 2.5rem;
    height: 2.5rem;
  }

.post .card p {
    text-align: justify;
    padding: 10px 0;
}


/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/

.area-padding {
    padding: 70px 0px 80px;
}

.post-information h2 {
  color: #363636;
  font-size: 22px;
  text-transform: uppercase;
}

.post-information {
  padding: 20px 0;
}

.post-information .entry-meta span a {
  color: #444;
  display: inline-block;
  padding: 10px 0;
}

.entry-meta span a:hover {
  color: #3EC1D5;
}

.post-information .entry-meta {
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}

.post-information .entry-meta span i {
  padding: 0 10px;
}

.entry-content > p {
  color: #444;
}

.entry-meta > span {
  color: #444;
}

.entry-content blockquote {
  background: #fff none repeat scroll 0 0;
  border-left: 5px solid #376ace;
  font-size: 17.5px;
  font-style: italic;
  margin: 0 0 20px 40px;
  padding: 22px 20px;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  background-color: #3EC1D5;
  border-color: #3EC1D5;
  color: #fff;
  cursor: default;
  z-index: 3;
}

.social-sharing {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #ccc;
  display: block;
  margin: 30px 0;
}

.social-sharing > h3 {
  display: inline-block;
  font-size: 18px;
  margin: 0;
  padding: 20px 10px;
}

.sharing-icon {
  display: inline-block;
  float: right;
  padding: 13px 10px;
}

.sharing-icon a {
  border: 1px solid #444;
  color: #444;
  display: block;
  float: left;
  font-size: 18px;
  height: 34px;
  line-height: 30px;
  margin-left: 10px;
  text-align: center;
  width: 34px;
}

.sharing-icon a:hover {
  color: #3EC1D5;
  border: 1px solid #3EC1D5;
}

.single-blog .author-avatar {
  float: left;
  margin-right: 10px;
}

.single-blog .author-description h2 {
  font-size: 18px;
  margin: 0;
  padding: 0 0 5px;
}

.author-info {
  background: #fff none repeat scroll 0 0;
  float: left;
  margin: 30px 0;
  padding: 15px;
  width: 100%;
}

.single-post-comments {
  margin-bottom: 60px;
  max-width: 650px;
}

.comments-heading h3, h3.comment-reply-title {
  border-bottom: 1px solid #e8e8e9;
  color: #444;
  font-size: 18px;
  margin: 0 0 20px;
  padding: 0 0 5px;
  text-transform: uppercase;
}

.comments-list ul li {
  margin-bottom: 25px;
}

.comments-list-img {
  float: left;
  margin-right: 15px;
}

.comments-content-wrap {
  color: #42414f;
  font-size: 12px;
  line-height: 1;
  margin: 0 0 15px 80px;
  padding: 10px;
  position: relative;
}

.author-avatar {
  display: inline-block;
  float: left;
  width: 10%;
}

.author-description h2 {
  color: #777;
  font-size: 20px;
  text-transform: uppercase;
}

.author-description h2 a {
  color: #000;
}

.comments-content-wrap span b {
  margin-right: 5px;
}

span.post-time {
  margin-right: 5px;
}

.comments-content-wrap p {
  color: #909295;
  line-height: 18px;
  margin-bottom: 5px;
  margin-top: 15px;
}

li.threaded-comments {
  margin-left: 50px;
}

.comment-respond {
  margin-top: 60px;
}

span.email-notes {
  color: #42414f;
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}

.comment-respond p {
  color: #444;
  margin-bottom: 5px;
}

.comment-respond input[type=text], .comment-respond input[type=email] {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  height: 32px;
  margin-bottom: 15px;
  padding: 0 0 0 10px;
  width: 100%;
}

.comment-respond textarea#message-box {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  max-width: 100%;
  padding: 10px;
  height: 130px;
  width: 100%;
}

.comment-respond input[type="submit"] {
 background-color: #376ACE !important;
    margin: 10px;
    border-radius: 10px;
    color: white!important;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    width: 30%;
    text-align: center;
    border: 1px solid #376ace;
    padding: 16px!important;
}

.comments-content-wrap span a {
  color: #000;
}

.comments-content-wrap span a:hover {
  color: #3EC1D5;
}


.single-blog .blog-pagination {
  border-top: 1px solid #e5e5e5;
  margin: 0;
  padding-top: 30px;
}


/*--------------------------------------------------------------
# Blog page
--------------------------------------------------------------*/
.page-area {
  position: relative;
}

.blog-page .banner-box {
  margin-bottom: 40px;
}

.search-option input {
  border: medium none;
  padding: 6px 15px;
  width: 80%;
}

.search-option {
  border: 1px solid #ccc;
  height: 42px;
  margin-bottom: 30px;
}

.search-option button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  font-size: 20px;
  padding: 8px 23px;
}

.search-option button:hover {
  color: #3ec1d5;
}

.left-blog h4 {
  border-bottom: 1px solid #ddd;
  color: #444;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
  padding: 15px 10px;
  text-transform: uppercase;

}

.left-blog {
  background: #f9f9f9 none repeat scroll 0 0;
  margin-bottom: 30px;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.left-blog li {
  border-bottom: 1px solid #ddd;
  display: block;
}

.left-blog ul li a {
  color: #444;
  display: block;
  font-size: 14px;
  padding: 10px;
  text-transform: capitalize;
}

.recent-single-post {
  border-bottom: 1px solid #ddd;
  display: block;
  overflow: hidden;
  padding: 15px 10px;
}

.ready-btn {
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  margin-top: 30px;
  padding: 12px 40px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
  z-index: 222;
}

.ready-btn:hover {
  color: #fff;
  background: #3EC1D5;
  border: 1px solid #3EC1D5;
  text-decoration: none;
}

.post-img {
  display: inline-block;
  float: left;
  padding: 0 5px;
  width: 35%;
}

.pst-content {
  display: inline-block;
  float: left;
  width: 65%;
}

.pst-content p a:hover, .left-blog ul li a:hover {
  color: #3EC1D5;
}

.blog-page .single-blog {
  margin-bottom: 40px;
}

.pst-content p a {
  color: #444;
  font-size: 15px;
}

.header-bottom h1, .header-bottom h2 {
  color: #fff;
}

.blog-tags {
  padding: 1px 0;
}

.left-blog li:last-child {
  border-bottom: 0;
}

.popular-tag.left-blog ul li a:hover {
  color: #fff;
}

.popular-tag.left-side-tags.left-blog ul {
  padding: 0 10px;
}

.blog-1 .banner-box {
  margin-bottom: 30px;
}

.left-tags .left-side-tags ul li {
  border-bottom: 0;
}

.left-tags .left-side-tags ul li a {
  padding: 3px 10px;
  width: auto;
}

.left-side-tags h4 {
  margin-bottom: 15px;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.layer2 h1{
  text-align: center;
    margin-bottom: 4pc;
    font-weight: 600;
    color: #1D293f;
}
input:focus {
    outline-offset: 0px;
}
:focus {
    outline: -webkit-focus-ring-color auto 0px;
}
.popular-tag ul li a {
    border: 1px solid #444;
    border-radius: 30px;
    color: #444;
    font-size: 13px;
    display: block;
    font-weight: 600;
    margin: 5px 3px;
    position: relative;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.4s ease 0s;
    width: 70px;
}
.left-tags .left-side-tags ul li {
    border-bottom: 0;
}
.popular-tag ul li a:hover, .footer-icons ul li a:hover {
    background: #376ACE;
    border: 1px solid #376ACE;
    color: #fff;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}
.left-tags .left-side-tags ul li a {
    padding: 3px 10px;
    width: auto;
}

.popular-tag ul li {
    display: inline-block;
}

@media (max-width: 767px){

  .search-option input {
    width: 74%!important;
}
.comment-respond input[type="submit"]{
  width: unset!important;
}

#service-detail-page .consul-form{
    display: none;
}
.service-24 h6 ,
#services-card .card .card-body p{
    font-size: 14px;
}
.custom-bullet--a {
    position: relative;
}
.custom-bullet--a > li {
    font-size: 14px;
    position: relative;
    padding: 10px 0px;
    padding-left: 40px;
}
.custom-bullet--a > li:before {
    position: absolute;
    left: 0;
    top: 0;
}
.module ol li a {
    position: relative;
    top: -6px;
}
#about-investor .invest-txt p{
    font-size: 16px;
}
.text-block{
    position: absolute;
left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 80%;

}
.module{
    display: none;
}
}



  #header{
    padding-right: 0 !important;
  }
body.modal-open{
    padding-right: 0 !important;
  }
  .modal {
    overflow-y:auto!important;
  }
  .modal-open {
    overflow: auto!important;
   }


   .float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
  }

  .my-float{
    margin-top:16px;
  }



@media screen and (min-width: 767px) {
    [data-sticky-main-ele]{
        position: relative;
    }
    [data-sticky-main-ele] [data-sticky-content-ele]{
        position: sticky;
        top: 85px;
        z-index: 1;
        height: 100%;
    }

}








































