:root{
    --heading: 'Times New Roman', serif;
    --primary-color: #f8a723;
    --neutra-color: #1e458d;
}

/* ::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: var(--primary-color);
}
::-webkit-scrollbar-track {
    background-color: #e8e8e8;
} */

::selection {
    background-color: var(--primary-color);
    color: #fff;
}



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

a,button,ul,ol,li,p,h1,h2,h3,h4,h5,h6{
    padding: 0;
    margin: 0;
}
a {
    color: #000;
    text-decoration: underline;
}

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

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

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #f8a723 #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #f8a723;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }

/* ===================== 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;
}
.round-btn:hover{
    color: #fff;
    background-color: var(--primary-color);
}
/* ===================== End Globle Items ===================== */


/* ======================== Header Area ======================== */
header{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--neutra-color);
    transition: .5s ease;
    z-index: 997;
}
header.active {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header .logo img{
    width: 160px;
}
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: #fff;
    padding: 25px 5px;
    margin: 0 3px;
    cursor: pointer;
}
header .header .navs > ul > li:hover > a{
    color: #fff;
}
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: var(--primary-color);
}
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: 600;
    letter-spacing: .005em;
    color: var(--neutra-color);
    padding: 5px 0;
    transition: .1s;
}
header .header .navs .sub-menu > ul > li > a:hover{
    color: var(--primary-color);
}
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;
    height: auto;
    width: 750px;
    left: -100px;
    position: absolute;
    z-index: 999;
    overflow-y: auto;
}
header .header .navs .sub-menu .custom-menu ul h5{
    font-size: 18px;
    margin-bottom: 10px;
    font-family: Poppins;
}
header .header .navs .sub-menu .custom-menu ul  li{
    font-size: 13px;
    line-height: 30px;
    font-family: Poppins;
}
header .header .navs .sub-menu .custom-menu ul  li a{
    color: #000;
    text-decoration: none;
}
header .header .navs .sub-menu .custom-menu ul  li a i{
    color: #ddd;
    padding-right: 4px;
}
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: relative;
}
header .header .btns-box .contact-btn:hover .btn-icon{
    background-color: var(--primary-color);
    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;
}
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: 150px;
    }
    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: 180px;
}
.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;
}
.side-menu .navs ul {
    list-style: none;
    padding: 0;
}
.side-menu-area .navs .sub-menu ul.custom-menu1 h5 {
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 1pc;
    font-size: 18px;
}
.side-menu-area .navs .sub-menu ul.custom-menu1 li{
    font-size: 14px;
    line-height: 30px;
}
.side-menu-area .navs .sub-menu ul.custom-menu1 li a{
     color: #4e4b4b;
     text-decoration: none;
}
/* ======================== 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: 600px;
    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: #000;
    padding: 0 15px;
    animation-name: glow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes  glow {
    from {
        text-shadow: 0px 0px 5px #fff, 0px 0px 5px black;
    }

    to {
        text-shadow: 0px 0px 20px #fff, 0px 0px 20px black;
    }
}
.request-form .header .close-btn button{
    border: none;
    outline: none;
    background-color: #000;
    padding: 0;
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 27px;
    margin-right: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.request-form .form{
    padding: 30px 20px;
}
.request-form .form .input-field{
    margin-bottom: 15px;
}
.request-form .form .input-field input,
.request-form .form .input-field textarea{
    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-color: var(--primary-color);
    color: #000;
    transition: .5s;
}
.request-form .form .input-btn input[type="submit"]:hover{
    background-color: #000;
    color: var(--primary-color);
}
.request-form-box .request-form .img img {
    width: 100%;
    margin: 30px 20px;
}
/* ======================== End Request-Form Area ======================== */

#hero-section {
    background:linear-gradient(0deg, rgb(0 0 0), rgb(0 0 0 / 30%)), url(../img/hero-banner.jpg);
    background-position: center;
    background-size: cover;
}

/* #hero-section .back-overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
} */
#hero-section .back-txt{
    /*height: 500px;*/
    position: relative;
    padding-top: 10pc;
}
#hero-section .back-txt h1{
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
    font-family: 'Poppins';
}
#hero-section .back-txt p{
    color: white;
    font-size: 18px;
    margin-bottom: 2pc;
    font-family: 'Poppins';
}
#hero-section .back-txt .btn1{
    background-color: #fff;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 25px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    display: inline-block;
}
#hero-section .back-txt .btn1 a{
    text-decoration: none;
    color: black;
}

#hero-section .hero-form{
    background: white;
    padding: 20px 20px;
    position: relative;
    margin: 2pc 0;
}
.hero-form h2{
    font-size: 24px;
    text-align: center;
    margin-bottom: 1pc;
    font-family: 'Poppins';
    font-weight: 700;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
/*.form-item{
  position: relative;
  margin-bottom: 15px
}
.form-item input{
  display: block;
  width: 100%;
  height: 40px;
  background: transparent;
  border: solid 1px #ccc;
  transition: all .3s ease;
  padding: 0 15px
}
.form-item input:focus{
  border-color: blue
}
.form-item label{
  position: absolute;
  cursor: text;
  z-index: 2;
  top: 13px;
  left: 10px;
  font-size: 10px;
  font-weight: bold;
  background: #fff;
  padding: 0 10px;
  color: #999;
  transition: all .3s ease
}
.form-item input:focus + label,
.form-item input:valid + label{
  font-size: 10px;
  top: -5px;
}
.form-item input:focus + label{
  color: #113f67;
}*/

.form-item input{
    font-size: 12px;
    color: #555;
    outline: none;
    border: 1px solid #bbb;
    padding: 10px 20px;
    border-radius: 20px;
    margin-bottom: 1pc;
    box-shadow: rgb(0 0 0 / 6%) 0px 3px 8px;
    font-family: Poppins;
    font-weight: 800;
}
#hero-section .hero-form .custom-label label{
    font-size: 20px;
    margin-bottom: 1pc;
    font-weight: 600;
    font-family: 'Poppins';
}
#hero-section .hero-form .form-group {
    margin-bottom: 10px;
}
#hero-section .hero-form .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

#hero-section .hero-form .form-group label {
  position: relative;
  cursor: pointer;
  font-family: 'Poppins';
}

#hero-section .hero-form .form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #0079bf;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

#hero-section .hero-form .form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #0079bf;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
#hero-section .hero-form textarea{
    margin-top: 0px;
    height: 100px!important;
}
#hero-section .hero-form .btn1 {
    background-color: #fff;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 25px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    display: inline-block;
    margin-top: 2pc;
}
#hero-section .hero-form .btn1  a{
    text-decoration: none;
    color: black;
}

#hero-section .hero-form .input-field {
    padding-bottom: 15px;
}
#hero-section .hero-form .input-field > span {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}
#hero-section .hero-form .input-field input,
#hero-section .hero-form .input-field textarea {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    background-color: #eee;
    border: 1px solid var(--neutra-color);
    padding: 5px 15px;
    height: 40px;
}
#hero-section .hero-form input.country_code_select {
    padding-left: 60px !important;
}
#hero-section .hero-form select{
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    background-color: #eee;
    border: 1px solid var(--neutra-color);
    padding: 5px 15px;
    height: 40px;
    margin-bottom: 15px;
}
#hero-section .hero-form .input-field input[type="submit"] {
    background: var(--primary-color);
    color: #000;
    border-radius: 5px;
    padding: 10px;
    margin-top: 15px;
    transition: 0.3s ease;
    font-weight: 600;
    height: unset;
}

/****** CODE ******/

.file-upload {
    display: block;
    text-align: center;
    font-family: 'Poppins';
    font-size: 12px;
    padding-bottom: 6px;
  }
  .file-upload .file-select {
    display: block;
    border: 2px solid #ddd;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    text-align: left;
    background: #ffffff;
    overflow: hidden;
    position: relative;
  }
  .file-upload .file-select .file-select-button {
    background: #ddd;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    color: #000;
  }
  .file-upload .file-select .file-select-name {
    line-height: 40px;
    display: inline;
    padding: 0 10px;
    color: #000;
    font-weight: 600;
  }
  .file-upload .file-select:hover {
    border-color: #34495e;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
  }
  .file-upload .file-select:hover .file-select-button {
    background: #34495e;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
  }
  .file-upload.active .file-select {
    border-color: #1e458d;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
  }
  .file-upload.active .file-select .file-select-button {
    background: #1e458d;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
  }
  .file-upload .file-select input[type="file"] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
  }
  .file-upload .file-select.file-select-disabled {
    opacity: 0.65;
  }
  .file-upload .file-select.file-select-disabled:hover {
    cursor: default;
    display: block;
    border: 2px solid #f8a723;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: left;
    background: #ffffff;
    overflow: hidden;
    position: relative;
  }
  .file-upload .file-select.file-select-disabled:hover .file-select-button {
    background: #f8a723;
    color: #666666;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
  }
  .file-upload .file-select.file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
  }


.range-slider {
  margin: 10px 0 0 0%;
}

.range-slider {
  width: 100%;
}

.range-slider__range {
  -webkit-appearance: none;
  width: calc(100% - (73px));
  height: 10px;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}
.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
.range-slider__range::-webkit-slider-thumb:hover {
  background: var(--primary-color);
}
.range-slider__range:active::-webkit-slider-thumb {
  background: var(--primary-color);
}
.range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  -moz-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
  background: var(--primary-color);
}
.range-slider__range:active::-moz-range-thumb {
  background: var(--primary-color);
}
.range-slider__range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--neutra-color);
}

.range-slider__value {
  display: inline-block;
  position: relative;
  width: 60px;
  color: #000;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: var(--primary-color);
  padding: 5px 10px;
  margin-left: 8px;
  font-weight: 600;
}
.range-slider__value:after {
  position: absolute;
  top: 8px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid var(--primary-color);
  border-bottom: 7px solid transparent;
  content: "";
}

::-moz-range-track {
  background: var(--primary-color);
  border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
}
#about .head h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 30px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#about h2:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}
#about .head p {
    margin: 0 5% 50px 5%;
    font-size: 14px;
    color: #686868;
    text-align: center;
}
#about .txt p{
    text-align: justify;
    color: #000;
    padding: 10px 0;
    font-size: 14px;
    line-height: 30px;
}
#about .img img{
    width: 100%;
    margin: 20px auto;
}
#about-box{
    padding: 20px 0 40px;
}
#about-box .about-box-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0px 0px 60px 0px rgb(71 74 182 / 12%);
    padding: 40px 40px 40px 0px;
    margin: 20px;
    border-radius: 20px;
    height: 100%;
}
#about-box .about-box-flex .mini-box{

}
#about-box .about-box-flex .mini-box img{
    margin-left: -40px;
    box-shadow: rgb(255 255 255 / 10%) 0px 1px 1px 0px inset, rgb(50 50 93 / 25%) 0px 50px 100px -20px, rgb(0 0 0 / 30%) 0px 30px 60px -30px;
    border-radius: 20px;
    width: 500px;
}
/* #about-box .about-box-flex .mini-box img.custom{
    width: 600px;
} */
#about-box .about-box-flex .box-txt{
    padding-left: 20px;
}
#about-box .about-box-flex .box-txt h4{
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 600;
    text-align: left;
}
#about-box .about-box-flex .box-txt p{
    font-size: 14px;
    padding: 10px 0;
    text-align: justify;
}
#point-strip{
    background-color: var(--primary-color);
    padding: 30px 0;
    box-shadow: inset rgb(0 0 0 / 24%) 0px 3px 8px;
}
#point-strip .point-box-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    background-color: #ddd;
    height: 100px;
    padding: 18px;
    border-radius: 10px;
}
#point-strip .point-box-flex .point-icon i{
    font-size: 34px;
    color: #000;
}
#point-strip .point-box-flex .point-txt{
    padding-left: 20px;
}
#point-strip .point-box-flex .point-txt p{
    color: #000;
    font-size: 14px;
    font-weight: 600;
}
#services{
    padding: 20px 0;
}
#services h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 75%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#services h2:after{
    /*content: "";
    margin: 10px 0px;
    display: block;
    width: 120px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(25deg, #2660ae, #2d81f38c);*/
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}
#services p{
    margin: 0 10% 40px;
    font-size: 14px;
    color: #686868;
    text-align: center;
}
#services .box{
    /*background-color: red;*/
    padding-bottom: 20px;
}
#services .icons{
    border: 2px solid #1e458d;
    margin: 0 auto 15px;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    padding: 4px;
    box-shadow: rgb(50 50 93 / 25%) 0px 50px 100px -20px, rgb(0 0 0 / 30%) 0px 30px 60px -30px;
}
#services .icons .icon{
    /* background: #DFAE08;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 30px 20px; */
}
#services .icons .icon img{
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
#services  h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
    text-align: center;
}
#services .box p {
    font-size: 14px;
    color: #686868;
    margin: 0;
}
#features{
    background-color: #000;
}
#features .head h2{
    text-align: center;
    font-family: 'Poppins';
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(255 255 255 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#features .head h2:after{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}
#features .head p{
    margin: 0 24% 24px;
    font-size: 14px;
    color: #686868;
    text-align: center;
}
#features .feat-box{
    padding: 20px;
}
#features .feat-box .feat-flex {
    display: flex;
    color: var(--primary-color);
    justify-content: space-between;
    align-items: center;
}
#features .feat-box .feat-flex h3{
    font-size: 24px;
    color: #000;
    font-family: 'Poppins';
    font-weight: 600;
    text-shadow: 0px 4px 3px rgb(248 146 52 / 40%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#features .feat-box .feat-flex i{
    font-size: 36px;
    background: #f8a723;
    padding: 20px 18px;
    color: #000;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    box-shadow: inset rgb(0 0 0) 0px 0px 6px 4px;
}
#features .feat-box .feat-des p{
    text-align: justify;
    color: #000;
    padding: 30px 0;
}
#features .feat-box{
    background: var(--primary-color);
    height: 100%;
}

#info{
    background-color: #ddd;
    padding: 40px 0;
}
#info .info-txt{
    text-align: center;
}
#info .info-txt h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#info .info-txt h2:after{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}
#info .info-txt span{
    font-family: 'Poppins';
    font-size: 18px;
    font-style: italic;
    background-color: var(--primary-color);

}
#info .info-txt p{
    margin: 0;
    font-size: 16px;
    color: #000;
    text-align: center;
    padding: 30px 0;
}
#info .info-btn{
    display: table;
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary-color);
    background-color: var(--neutra-color);
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 18px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    cursor: pointer;
    transition: .3s;
    margin-left: auto;
    margin-right: auto;
}
#info .info-btn a{
    text-decoration: none;
    color: #fff;
}
/*/ start count stats /*/

#counter-stats{
    background-image: url(../img/bg/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    background-attachment: fixed;
}
.stats {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

#counter-stats .stats .icon{
    padding-bottom: 20px;
}
#counter-stats .stats .icon i{
    background: #f8a723;
    border-radius: 50%;
    font-size: 40px;
    width: 75px;
    height: 75px;
    line-height: 75px;
}
#counter-stats .stats .counting{
    color: #fff;
}
#counter-stats .stats #plus:after{
    content: '+';
}
#counter-stats .stats #slash:after{
    content: '/5';
}
#counter-stats .stats  h5{
    color: #fff;
}
#counter-stats .stats img{
    width: 100px;
}
.stats .fa {
  color: #f8a723;
  font-size: 60px;
}

#oder-form{
    padding: 20px 0;
}
#oder-form .img img{
    width: 100%;
}
#oder-form .form-box {
    background: var(--primary-color);
    padding: 20px;
    box-shadow: 0 0 15px rgb(30 69 141 / 58%);
    border-radius: 10px;
}
#oder-form .form-box .form-border {
    border: 2px solid #fff;
    border-radius: 7px;
}
#oder-form .form-box .form-border .head h2 {
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 24px;
    font-weight: 800;
    margin: 10px 0 20px;
    position: relative;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#oder-form .form-box .form-border .head h2:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin-top: 10px;
}
#oder-form .form-box .form-border .input-box {
    padding: 0 50px;
}
#oder-form .form-box .form-border .input-field {
    padding-bottom: 20px;
}
#oder-form .form-box .form-border .input-field input {
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    background-color: #fff;
    border-radius: 5px;
    padding: 14px 15px;
    height: 40px;
}
#oder-form .form-box .form-border .input-box .input-field input[type="submit"] {
    background-color: #000;
    color: #fff;
    font-size: 18px;
    height: 40px;
    line-height: 12px;
}
#oder-form .form-box .form-border .input-box a {
    text-decoration: none;
}
#oder-form .form-box .form-border .input-box .ftr-bottom {
    padding: 10px 0;
}
#oder-form .form-box .form-border .input-box .ftr-bottom span{
    color: #2248e2;
    font-weight: 600;
}
#oder-form .form-box .form-border .input-box .ftr-bottom p {
    text-decoration: none;
    color: #000;
    font-family: 'Poppins';
    font-size: 16px;
}

.testimonials .head h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 20%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.testimonials h2:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

#customers-testimonials .item {
    height: 100%;
}
#customers-testimonials .item .shadow-effect {
    height: 275px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    border-radius: 8px;
    padding: 25px;
 }
 /* #customers-testimonials .item .shadow-effect .des {
     height: 100%;
 } */
 #customers-testimonials .item .shadow-effect .des p{
    font-size: 14px;
    text-align: justify;
    font-family: 'Poppins';
    font-weight: 300;
    line-height: 26px;
 }

 #customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
 #customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
     background:#f8a723;
     transform: translate3d(0px, -50%, 0px) scale(0.7);
     border-radius: 50%;
     box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
 }
#customers-testimonials.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
     background: #1e458d;
     display: inline-block;
     height: 20px;
     margin: 0 2px 5px;
     transform: translate3d(0px, -50%, 0px) scale(0.3);
     transform-origin: 50% 50% 0;
     transition: all 250ms ease-out 0s;
     width: 20px;
 }

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

#customers-testimonials .owl-dots {
text-align: center;
padding-top: 30px;
}
#customers-testimonials .owl-nav button {
position: absolute;
top: 50%;
transform: translateY(-70%);
background: var(--neutra-color);
}
#customers-testimonials span {
font-size: 70px;
position: relative;
top: -5px;
}
#customers-testimonials .owl-nav button:focus {
outline: none;
}
#customers-testimonials .shadow-effect ul{
margin: 0;
padding-top: 10px;
}
#customers-testimonials .shadow-effect ul li{
list-style: none;
display: inline-block;
padding-right: 10px;
color: var(--primary-color);
}




/*  Best Services   */

.testimonials .head h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 20%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.testimonials h2:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

#best-services .item {
    height: 100%;
}
#best-services .item .shadow-effect {
    height: 275px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    border-radius: 8px;
    padding: 25px;
 }
 /* #customers-testimonials .item .shadow-effect .des {
     height: 100%;
 } */
 #best-services .item .shadow-effect .des p{
    font-size: 14px;
    text-align: justify;
    font-family: 'Poppins';
    font-weight: 300;
    line-height: 26px;
 }

#best-services.owl-carousel .owl-dots .owl-dot.active span,
#best-services.owl-carousel .owl-dots .owl-dot:hover span {
     background:#f8a723;
     transform: translate3d(0px, -50%, 0px) scale(0.7);
     border-radius: 50%;
     box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
 }
#best-services.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
#best-services.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
#best-services.owl-carousel .owl-dots .owl-dot span {
     background: #1e458d;
     display: inline-block;
     height: 20px;
     margin: 0 2px 5px;
     transform: translate3d(0px, -50%, 0px) scale(0.3);
     transform-origin: 50% 50% 0;
     transition: all 250ms ease-out 0s;
     width: 20px;
 }

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

#best-services .owl-dots {
text-align: center;
padding-top: 30px;
}
#best-services .owl-nav button {
position: absolute;
top: 50%;
transform: translateY(-70%);
background: var(--neutra-color);
}
#best-services span {
font-size: 70px;
position: relative;
top: -5px;
}
#best-services .owl-nav button:focus {
outline: none;
}
#best-services .shadow-effect ul{
margin: 0;
padding-top: 10px;
}
#best-services .shadow-effect ul li{
list-style: none;
display: inline-block;
padding-right: 10px;
color: var(--primary-color);
}

/*  Best City   */

.testimonials .head h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 20%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.testimonials h2:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

#best-city .item {
    height: 100%;
}
#best-city .item .shadow-effect {
    height: 275px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    border-radius: 8px;
    padding: 25px;
 }
 /* #customers-testimonials .item .shadow-effect .des {
     height: 100%;
 } */
 #best-city .item .shadow-effect .des p{
    font-size: 14px;
    text-align: justify;
    font-family: 'Poppins';
    font-weight: 300;
    line-height: 26px;
 }

#best-city.owl-carousel .owl-dots .owl-dot.active span,
#best-city.owl-carousel .owl-dots .owl-dot:hover span {
     background:#f8a723;
     transform: translate3d(0px, -50%, 0px) scale(0.7);
     border-radius: 50%;
     box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
 }
#best-city.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
#best-city.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
#best-city.owl-carousel .owl-dots .owl-dot span {
     background: #1e458d;
     display: inline-block;
     height: 20px;
     margin: 0 2px 5px;
     transform: translate3d(0px, -50%, 0px) scale(0.3);
     transform-origin: 50% 50% 0;
     transition: all 250ms ease-out 0s;
     width: 20px;
 }

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

#best-city .owl-dots {
text-align: center;
padding-top: 30px;
}
#best-city .owl-nav button {
position: absolute;
top: 50%;
transform: translateY(-70%);
background: var(--neutra-color);
}
#best-city span {
font-size: 70px;
position: relative;
top: -5px;
}
#best-city .owl-nav button:focus {
outline: none;
}
#best-city .shadow-effect ul{
margin: 0;
padding-top: 10px;
}
#best-city .shadow-effect ul li{
list-style: none;
display: inline-block;
padding-right: 10px;
color: var(--primary-color);
}


#logo{
    padding: 20px 0;
}
#logo .head h2 {
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 0px 0 10px;
    position: relative;
    width: 25%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#logo h2:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}
#logo p {
    margin: 0 10% 40px;
    font-size: 14px;
    color: #686868;
    text-align: center;
}
#logo .owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
#logo .owl-nav button.owl-prev {
  left: 0;
}
#logo .owl-nav button.owl-next {
  right: 0;
}

#logo .owl-dots {
  text-align: center;
  padding-top: 15px;
}
#logo .owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
#logo .owl-dots button.owl-dot.active {
  background-color: #000;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}
#logo .owl-dots button.owl-dot:focus {
  outline: none;
}
#logo .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    background: var(--neutra-color);
}
#logo span {
    font-size: 70px;
    position: relative;
    top: -5px;
}
#logo .owl-nav button:focus {
    outline: none;
}
#logo img{
    width: 150px;
    margin: 0 auto;
    background: #ddd;
    border-radius: 10px;
    padding: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    max-width: unset;
}

#help-services{
    padding: 20px 0;
}
#help-services .head{
    padding-bottom: 20px;
}
#help-services .head h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#help-services h2:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}
#help-services .box {
    background-color:var(--primary-color);
    overflow:hidden;
    transition: .3s ease;
    box-shadow: 10px 10px 30px rgb(115 128 157 / 50%);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}
#help-services .box img {
    color: var(--neutra-color);
    transition: inherit;
    transition-delay: 0s;
    width: 100px;
    padding: 10px;
    background: #fff;
    border-radius: 50px;
    margin-bottom: 21px;
    box-shadow: rgb(0 0 0 / 2%) 0px 19px 38px, rgb(0 0 0 / 22%) 0px 15px 12px;
}
#help-services h4 {
    color: #000;
    transition: inherit;
    transition-delay: .05s;
    font-weight: 600;
    font-family: 'Poppins';
}
#help-services p {
    color: #000;
    transition: inherit;
    transition-delay: .1s;
    font-family: 'Poppins';
    padding: 10px 0;
}
#help-services .readmore {
    color:#fff;
    overflow: hidden;
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-right: 2rem;
}
#help-services .readmore:before {
    animation: ts-link-arrow-effect-animation-out;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
    background-color: #1e458d;
    bottom: 0;
    height: .125rem;
    margin: auto;
    left: 0;
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    transform: scaleX(.2);
    transform-origin: left center;
    z-index: 0;
}
    /*Shubham span- change to - small*/

#help-services .readmore small {
    position: relative;
    transform: translateX(-200%);
    display: inline-block;
    transition: .6s cubic-bezier(.6, .01, 0, 1);
}
#help-services .box:hover .readmore small {
    transform: translateX(0%);
    color: #000
}
#help-services .box:hover .readmore:before {
    animation: ts-link-arrow-effect-animation-in;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
}
#help-services .box:hover i,
#help-services .box:hover h4,
#help-services .box:hover p {
    transform: translateY(-0.625rem);
}
@keyframes ts-link-arrow-effect-animation-out {
    0% {
        transform-origin: right center;
        transform: scaleX(.2);
    }

    70% {
        transform-origin: right center;
    }

    71% {
        transform-origin: left center;
        transform: scaleX(1);
    }

    100% {
        transform-origin: left center;
        transform: scaleX(.2);
    }
}
@keyframes ts-link-arrow-effect-animation-in {
    0% {
        transform-origin: left center;
        transform: scaleX(.2);
    }

    70% {
        transform-origin: left center;
        transform: scaleX(1);
    }

    71% {
        transform-origin: right center;
    }

    100% {
        transform-origin: right center;
        transform: scaleX(.2);
    }
}

#footer{
    background-color: var(--primary-color);;
}
#footer svg {
    fill: #fff;
}
#footer .footer-top {
    padding: 50px 0 0px 0;
    background: var(--primary-color);;
}
#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}
#footer .footer-top a img {
    display: block;
    width: 200px;
    margin-bottom: 20px;
}
#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 0;
    padding-top: 10px;
    font-family: 'Poppins';
}
#footer .footer-top .footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    position: relative;
    padding-bottom: 12px;
}
#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}
#footer .footer-top .footer-links ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}
#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #000;
    font-size: 14px;
    line-height: 1;
}
.footer-links a {
    color: #212529;
    padding: 0 10px;
    text-decoration: none;
    font-size: 14px;
}
#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #000;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: .3s;
}
#footer .footer-btm{
    background-color: var(--neutra-color);
    text-align: center;
    color: #fff;
    padding: 10px 0;
}
#footer .footer-btm p{
    font-family: 'Poppins';
    font-size: 10px;
    font-weight: 300;
    text-align: center;
    line-height: 24px;
}
#footer .footer-btm p b{
    font-weight: bold;
}
#footer .counter-name{
    padding: 0px 0;
}
#footer .counter-name .globel-links{
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 10px 0;
    margin-bottom: 10px;
}
#footer .counter-name h4{
    color: #000;
    font-family: 'Poppins';
    font-size: 22px;
    padding-bottom: 10px;
}
#footer .counter-name .globel-links ul li{
    list-style: none;
    display: inline-block;
    padding: 0 3px;
    width: auto;
    text-align: left;
    margin: 4px 0 0;
}
#footer .counter-name .globel-links ul li a{
    font-size: 14px;
    color: #000;
    font-weight: 400;
    padding: 0 5px 5px 0;
    line-height: 14px;
    display: inline-block;
}
#wave {
    position: relative;
    width: 100%;
    height: 50vh;
    background:var(--primary-color);
    overflow: hidden;
    z-index: 99;
}
#wave  .wave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(https://i.postimg.cc/YqcvK11W/wave.png);
    background-size: 1000px 100px;
}
#wave  .wave.wave1{
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;

}
#wave  .wave.wave2{
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;

}
#wave  .wave.wave3{
    animation: animate3 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: 2s;
    bottom: 15px;

}
#wave  .wave.wave4{
    animation: animate2 5s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 10px;

}
@keyframes animate{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 1000px;
    }
}
@keyframes animate2{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: -1000px;
    }
}

#wave .head h1{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 42px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

#main .services-form{
    max-width: 480px;
    margin-left: auto;
    border-radius: 10px;
    box-shadow: 00 0 15px rgb(30 69 141 / 58%);
    background-color: #fff;
    padding: 40px 45px;
}
#main .services-form .title h2{
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
#main .services-form .input-field {
    padding-bottom: 20px;
}

#main .services-form .input-field input, #main .services-form .input-field select, #main .services-form .input-field textarea {
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    background-color: #eee;
    border-radius: 5px;
    padding: 14px 15px;
}
input.country_code_select {
    padding-left: 60px !important;
}
#main .services-form  .input-field input[type="submit"] {
    background-color: var(--primary-color);
    color: #000;
    font-size: 18px;
}
#main .benefit ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
    padding-bottom: 20px;
}
#main .benefit{
    background: var(--primary-color);
    margin: 20px auto;
    border-radius: 10px;
    padding: 20px 0;
}
#main .benefit ul li{
    width: 50%;
    list-style: none;
}
#main .benefit ul li a{
    padding: 15px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.19);
    margin: 1px;
    height: calc(100% - 2px);
    display: block;
}
#main .benefit ul li a span{
    width: 50px;
    display: block;
    margin: 0 auto;
}
#main .benefit li a h4 {
    font-size: 16px;
    line-height: normal;
    margin: 10px auto;
    color: #000;
}
#main .benefit ul li a span svg{
    fill: #000;
}
#main .benefit .head{
    padding: 20px 0;
}
#main .benefit .head h2{
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 10px;
}
#main .benefit .head p{
    color: #000;
    text-align: center;
    margin-bottom: 0;
}
#main .benefit .benefit-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: 0 auto;
}
#main .benefit .benefit-btn a{
    text-decoration: none;
    color: #fff;
}
#main .content-txt .block1 .head h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#main .content-txt .block1 .head h2:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}
#main .content-txt .block1 h6{
    font-weight: 600;
}
#main .content-txt .block1 p{
    text-align: justify;
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Poppins';
}

#main .content-txt .block2{
    background-color: #ddd;
    padding: 10px 10px;
}
#main .content-txt .block2 .head h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 10px 0 20px;
    position: relative;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#main .content-txt .block2 .head h2:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}
#main .content-txt .block2 p {
    text-align: justify;
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Poppins';
}

#main .content-txt .form-box{
    background: var(--primary-color);
    padding: 20px;
    box-shadow: 0 0 15px rgb(30 69 141 / 58%);
    border-radius: 10px;
}
#main .content-txt .form-box .form-border{
    border: 2px solid #fff;
    border-radius: 7px;
}
#main .content-txt .form-box .form-border .head h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 10px 0 20px;
    position: relative;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#main .content-txt .form-box .form-border .head h2:after{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin-top: 10px;
}
#main .content-txt .form-box .form-border .input-field{
    padding-bottom: 20px;
}
#main .content-txt .form-box .form-border .input-field input{
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    background-color: #fff;
    border-radius: 5px;
    padding: 14px 15px;
}
#main .content-txt .form-box .form-border .input-box{
    padding: 0 50px;
}
#main .content-txt .form-box .form-border .input-box  .input-field input[type="submit"] {
    background-color: #000;
    color: #fff;
    font-size: 18px;
}
#main .content-txt .form-box .form-border .input-box a{
    text-decoration: none;
}
#main .content-txt .form-box .form-border .input-box .ftr-bottom{
    padding: 10px 0;
}
#main .content-txt .form-box .form-border .input-box .ftr-bottom p{
    text-decoration: none;
    color: #000;
    font-family: 'Poppins';
    font-size: 16px;
}
.service-24 {
      padding: 20px 0;
      background-color: #eee;
    }
    .service-24 .head h2{
        text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 10px 0 20px;
    position: relative;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
    }
    .service-24 .head h2:after{
        content: '';
        display: block;
        width: 70%;
        height: 3px;
        background-color: var(--primary-color);
        margin: 10px auto;
    }
    .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, #1e458d, #1e458d);
      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: #000;
      /*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);
    }

    .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;
    }

    #points{
        padding: 0px 0 0px;
    }
    #points  .head h2{
        text-align: center;
        font-family: 'Poppins';
        color: var(--neutra-color);
        font-size: 32px;
        font-weight: 800;
        margin: 50px 0 20px;
        position: relative;
        width: 90%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
    }

    #points  .head h2:after{
        content: '';
        display: block;
        width: 70%;
        height: 3px;
        background-color: var(--primary-color);
        margin: 10px auto;
    }

    #points .key-points{
        padding: 20px 0;
    }
    #points .key-points ul li{
        padding: 5px 0 8px 35px;
        position: relative;
        line-height: 28px;
        font-size: 14px;
        color: black;
        list-style: none;
    }
    #points .key-points ul li::before{
        position: absolute;
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        left: 0;
        top: 9px;
        background: var(--primary-color);
        height: 25px;
        width: 25px;
        border-radius: 50%;
        text-align: center;
        align-items: center;
        color: #000;
        box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    }
    #points .key-points li:before, .ul-check li:before {
        content: "\f00c";
    }
    #info-txt{
        padding: 30px 0;
    }

    #info-txt .txt .head h2{
        text-align: center;
        font-family: 'Poppins';
        color: var(--neutra-color);
        font-size: 32px;
        font-weight: 800;
        margin: 10px 0 20px;
        position: relative;
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
    }
    #info-txt .txt .head h2:after{
        content: '';
        display: block;
        width: 70%;
        height: 3px;
        background-color: var(--primary-color);
        margin: 10px auto;
    }
    #info-txt .txt .des p{
        font-size: 14px;
        font-family: 'Poppins';
        padding: 10px 0;
        text-align: justify;
    }
    #info-txt .info-point ul {
        margin: 0;
        padding: 0;
    }
    #info-txt .info-point ul li{
        padding: 10px 0;
    }
    #info-txt .info-point ul li strong{
        font-size: 18px;
        font-family: 'Poppins';
    }
    #info-txt .info-point ul li p{
        font-size: 14px;
    padding: 10px 0;
    text-align: justify;
    }

.module {
    padding:20px;
    background-color: white;
    border-radius: 3px;
    margin-bottom: 3rem;
    box-shadow: 0 0 15px rgb(30 69 141 / 58%);
}
.module__heading--a {
    background-color: var(--neutra-color);
}
.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:before {
  position: relative;
  display: inline-block;
  z-index: 100;
  width: 30px;
  height: 30px;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  border: 3px solid #f8a723;
  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;
}
#main .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;
}
#main .module .module-btn a{
    text-decoration: none;
    color: #fff;
}








#faqs{
    padding: 20px 0;
}


#faqs .head h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 10px 0 40px;
    position: relative;
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

#faqs .head h2:after{
    content: '';
    display: block;
    width: 30%;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto;
}

.accordion-box{
            font-family: var(--poppins);
        }
        .accordion-box .accordion{
            margin-bottom: 15px;
        }
        .accordion-box .accordion .accordion-title{
            border-radius: 5px;
            box-shadow: 0 0 15px #ccc;
            padding: 10px 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: var(--primary-color);
        }
        .accordion-box .accordion .accordion-title h4{
            font-size: 16px;
            font-weight: 600;
        }
        .accordion-box .accordion .accordion-title span.icon::after{
            content: '\f067';
            font-family: "Font Awesome 5 Pro";
        }
        .accordion-box .accordion .accordion-title span.minus::after{
            content: '\f068';
            font-family: "Font Awesome 5 Pro";
        }
        .accordion-box .accordion .accordion-slide{
            display: none;
            font-size: 15px;
            font-weight: 600;
            padding: 15px 15px;
            padding-right: 0;
            background: #ddd;
            margin: 10px 0;
            box-shadow: rgb(0 0 0 / 5%) 0px 3px 8px;
        }
        .accordion-box .accordion .accordion-slide p{
            font-weight: 400;
            color: #000;
        }


#about-us {
    background-image: url(../img/bg/img_home-books.jpg);
    padding-top: 50px;
    padding-bottom: 90px;
    background-position: 0 100%;
    background-size: 536px 496px;
    background-repeat: no-repeat;
    background-color: #f8f8f8;
}
#about-us .about-left h2{
    text-align: center;
    font-weight: 600;
    font-size: 38px;
    text-transform: capitalize;
}
#about-us .about-left p{
    font-size: 16px;
    text-align: center;
    padding: 10px 0;
    font-family: 'Poppins';
}
#about-us .about-right{
    margin: 10px auto;
}
#about-us .about-right .about-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
#about-us .about-right .about-flex .img {
    width: 70px;
    height: 70px;
    background-color: #fff;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 34px 34px;
    -webkit-box-shadow: 0 15px 40px rgb(16 8 3 / 8%);
    box-shadow: 0 15px 40px rgb(16 8 3 / 8%);
    border-radius: 50%;
    margin-right: 24px;
}
#about-us .about-right .about-flex .img img{
    width: 30px;
    margin: 20px;

}
#about-us .about-right .about-flex .about-flex-head h4{
    font-family: 'Poppins';
    font-size: 20px;
    font-weight: 600;
}
#about-us .about-right  .about-des p{
    padding: 10px 10px;
    font-size: 14px;
    font-family: 'Poppins';
    text-align: justify;
}
#about-us1 .about-left img{
    width: 100%;
    margin: 10px auto;
}
#about-us1 .about1-dec {
    padding: 40px 0;
}
#about-us1 .about1-dec h2{
    font-size: 32px;
    font-family: 'Poppins';
    font-weight: 600;
}
#about-us1 .about1-dec p{
    font-size: 14px;
    line-height: 28px;
    text-align: justify;
    padding: 20px 0;
}
#about3{
    background-image: url(../img/bg/img_home-laptop-and-hands.jpg);
    padding-top: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
#about3 .about-txt h2{
    font-size: 36px;
    font-family: 'Poppins';
    font-weight: 600;
    padding-bottom: 20px;
}
#about3 .about-txt .block1{
    padding: 20px 0;
    width: 50%
}
#about3 .about-txt .block1 h4{
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
}
#about3 .about-txt .block1 h4 span{
    font-size: 40px;
    font-weight: 900;
    padding-right: 10px;
    color: #f8a723;
}
#about3 .about-txt .block1 p{
    padding: 10px 0;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
}
#about-info{
    padding: 40px 0;
}
#about-info .back{
    background-image: url(../img/bg/img_cta-nostem.jpg);
    background-position: center;
    background-size: cover;
}
#about-info .txt{
    padding: 40px 0;
}
#about-info .txt h2{
    font-size: 28px;
    text-align: center;
    color: #fff;
    font-weight: 800;
}
#about-info .txt p{
    text-align: center;
    color: #fff;
    padding: 20px 0;
}
#about-info .txt .about-btn{
    text-decoration: none;
    color: var(--neutra-color);
    background-color: var(--primary-color);
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 18px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    cursor: pointer;
    transition: .3s;
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
    text-align: center;
}
#about-info .txt .about-btn a{
    text-decoration: none;
    color: #000;
    text-transform: capitalize;
}

.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;
}
.post .card-body h5{
    color: #000;
    text-decoration: none;
    line-height: 30px;
}
.blog-card1 a {
    text-decoration: none;
}

/*--------------------------------------------------------------
# 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: var(--neutra-color);
}

.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 var(--primary-color);
  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: var(--neutra-color);
  border-color: var(--neutra-color);
  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: var(--neutra-color);
  border: 1px solid var(--neutra-color);
}

.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: var(--primary-color) !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 var(--primary-color);
    padding: 16px!important;
}

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

.comments-content-wrap span a:hover {
  color: var(--neutra-color);
}


.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: 100%;
  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: var(--neutra-color);
}

.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: var(--neutra-color);
  border: 1px solid var(--neutra-color);
  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: var(--neutra-color);
}

.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: var(--primary-color);
    border: 1px solid var(--primary-color);
    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;
}
}


#main-content {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #4c4e61;
}
#main-content #header-1 {
  font-size: 28px;
  font-weight: 200;
}
#main-content #header-2 {
  font-size: 28px;
  font-weight: 600;
  padding: 15px 0 20px;
}
#main-content #body {
  text-align: center;
  font-size: 14px;
  line-height: 1.4rem;
  color: rgba(76, 78, 97, 0.5);
  width: 30rem;
  padding-bottom: 40px;
}
#main-content #card-body {
  display: flex;
  align-items: center;
}
#main-content #card-body #card-1 {
  border-top: 3px solid #45d3d3;
}
#main-content #card-body #card-1:hover {
  background: linear-gradient(to bottom, rgba(69, 211, 211, 0.5), transparent);
  transform: scale(1.05);
  box-shadow: 0px 15px 15px 16px rgba(0, 0, 0, 0.1);
}
#main-content #card-body #card-2 {
  border-top: 3px solid #ea5353;
}
#main-content #card-body #card-2:hover {
  background: linear-gradient(to bottom, rgba(234, 83, 83, 0.4) 5%, transparent 90%);
  transform: scale(1.05);
  box-shadow: 0px 15px 15px 16px rgba(0, 0, 0, 0.1);
}
#main-content #card-body #card-3 {
  border-top: 3px solid #fcaf4a;
}
#main-content #card-body #card-3:hover {
  background: linear-gradient(to bottom, rgba(252, 175, 74, 0.5), transparent 85%);
  transform: scale(1.05);
  box-shadow: 0px 15px 15px 16px rgba(0, 0, 0, 0.1);
}
#main-content #card-body #card-4 {
  border-top: 3px solid #549ef2;
}
#main-content #card-body #card-4:hover {
  background: linear-gradient(to bottom, rgba(84, 158, 242, 0.5), transparent);
  transform: scale(1.05);
  box-shadow: 0px 15px 15px 16px rgba(0, 0, 0, 0.1);
}
#main-content #card-body .card {
  background: white;
  margin: 1rem 0.8rem;
  padding: 1.8rem;
  width: 350px;
  border-radius: 4px;
  box-shadow: 0px 9px 20px 1px rgba(0, 0, 0, 0.1);
  transition: 0.5s all;
}
#main-content #card-body .card .card-title {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-align: center;
}
#main-content #card-body .card .card-body {
  font-size: 12px;
    line-height: 22px;
    color: #000;
    text-align: justify;
}
#main-content #card-body .card #card-cont {
  display: flex;
  justify-content: flex-end;
}
#main-content #card-body .card #card-cont .card-img {
  padding-top: 20px;
  width: 25%;
}

/* Start Services-Page */
.services-page .content-box{
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgb(30 69 141);
    padding: 20px 25px;
}
.services-page .content-box h4{
    font-weight: bold;
    color: var(--primary-color);
    padding-bottom: 10px;
}
.services-page .content-box h4 a{
    text-decoration: none;
}
.services-page .content-box li a{
    color: #000;
    font-size: 14px;
    text-decoration: none;
}
.services-page .content-box li{
    line-height: 30px;
}
.services-page .content-box li a::before{
    content: "\f0a9";
    font-family: "Font Awesome 5 Pro";
    color: var(--primary-color);
    margin-right: 5px;
    display: inline-block;
}
.services-page .content-box li a:hover::before{
    transform: scale(1.2,1.2);
}
.h-100 {
    height: 100%;
    padding: 15px 0;
}


.contact-info{
    padding:2pc 2pc;
}
.contact-info h4{
    font-size: 26px;
    font-weight: 800;
    font-family: 'Poppins';
    margin-bottom: 20px;
}
.contact-info li{
    list-style: none;
    padding: 10px 0;
    font-size: 15px;
}
.contact-info li a{
    color: #666;
    text-decoration: none;
}
.contact-info li a i{
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #fff;
    display: inline-block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    -webkit-box-shadow: 0 1px 4px 0 rgb(0 0 0 / 24%);
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 24%);
    margin-right: 30px;
}
#contact-us{
    margin: 2pc 0;
}
.contactForm{
    box-shadow: 7px 5px 30px 0px rgb(72 73 121 / 15%);
}
.contactForm h4{
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    font-family: 'Poppins';
    padding: 20px 0;
}
.contactForm {
    width: calc(100% - 20px);
    max-width: 700px;
    margin: 0 auto;
    padding: 1pc;
}

.contactForm input{
    margin-bottom: 20px;
    height: 40px;
    border: 1px solid #000;
}
textarea.form-control {
    min-height: calc(1.5em + (0.75rem + 2px));
    border: 1px solid #000;
}
.contactForm .contact-btn {
    padding: 10px 30px;
    border: 0;
    background: #113f67;
    cursor: pointer;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 5px 10px 0 rgb(0 0 0 / 10%);
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 20px;
    margin-bottom: 0;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}

  .contactForm button:hover {
      box-shadow: 0px 10px 30px 0 rgba(0, 0, 0, 0.2);
  }

  #review .testimonial {
    margin: 0 20px 40px;
}

#review .testimonial .testimonial-content {
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #fff;
    position: relative;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}

#review .testimonial .testimonial-content:before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    border-top: 15px solid #718076;
    border-left: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

#review .testimonial .testimonial-content:after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    border-top: 15px solid #718076;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

#review .testimonial-content .testimonial-icon {
    width: 50px;
    height: 45px;
    background: #f8a723;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}

#review .testimonial-content .testimonial-icon:before {
    content: "";
    border-bottom: 16px solid #f8a723;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}

#review .testimonial .description {
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
    text-align: justify;
}
#review .testimonial ul{
    padding: 10px 0 0;
    margin: 0;
}
#review .testimonial ul li{
    list-style: none;
    display: inline-block;
    padding-right: 6px;
    color: var(--primary-color);
}

#review .testimonial .title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

#review .testimonial .post {
    display: block;
    font-size: 14px;
    color: #0CCA4A;
    padding-top: 0;
}
#review .testimonial .testimonial-icon i{
    color: #000;
}

#offer{
    padding: 40px 0;
}
.mainOffer {
    box-shadow: 0 0 20px -7px #666;
    border-radius: 20px;
    margin: 30px 0 0px;
    overflow: hidden;
    background: var(--primary-color);
    min-height: 330px;
    position: relative;
    padding: 20px 20px 20px 100px;
}
.mainOffer .ofrTitle {
    color: #fff;
    background: var(--dgrn);
    position: absolute;
    left: -128px;
    transform: rotate(-90deg);
    width: 330px;
    text-align: center;
    height: 80px;
    top: 125px;
    padding: 14px 0 0;
    font-size: 32px;
    border-bottom: dashed 2px #fff;
}
.mainOffer .offerTxt {
    text-align: left;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 73px;
    text-transform: uppercase;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
.mainOffer .ofrPgCta {
    text-align: right;
    margin: 8px 0 0;
    padding: 0;
    display: inline-block;
    width: 100%;
}
.mainOffer .ofrPgCta span {
    background: var(--neutra-color);
    color: #fff;
    padding: 3px 20px;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
}
#offer .head h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#offer .head h2:after{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}
#offer .offer .offer-img {
    position: relative;
}
#offer .offer .offer-img img {
    width: 100%;
}
#offer .offer .offer-img p {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 18px;
    color: #fff;
    text-align: center;
}
#offer .offer .offer-code {
    color:var(--neutra-color);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}
#offer .offer .order-btn a {
    background-color: var(--primary-color);
    color: #000;
    font-size: 14px;
    padding: 8px 12px;
    text-decoration: none;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    font-family: 'Poppins';
    font-weight: 600;
}
#offer .img img{
    width: 100%;
}

#offer-per{
    padding: 30px 0;
}
#offer-per .offer-txt{
    margin: 0px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 50vh;
}
#offer-per .offer-txt span{
    letter-spacing: 3px;
    font-size: 14px;
    color: #717282;
}
#offer-per .offer-txt h4{
    font-size: 24px;
    font-family: 'Poppins';
    padding: 20px 0;
}
#offer-per .offer-txt a{
    background-color: var(--primary-color);
    color: #000;
    font-size: 14px;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    max-width: 100px;
    text-align: center;
    font-family: 'Poppins';
    font-weight: 600;
}

#order-form{
    background: #fff;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    padding: 20px;
}
#order-form .input-field{
    padding-bottom: 20px;
}
#order-form .input-field input{
    display: block;
    width: 100%;
    background: #e6e6e6;
    line-height: 1.5;
    color: #000;
    outline: none;
    border: none;
    height: 40px;
    border-radius: 50px;
    padding-left: 20px;
    font-size: 14px;
    font-family: "Poppins";
}
#order-form  select{
    display: block;
    width: 100%;
    background-color: #e6e6e6;
    line-height: 1.5;
    color: #666666;
    outline: none;
    border: none;
    height: 40px;
    border-radius: 50px;
    padding-left: 20px;
    font-size: 14px;
    font-family: "Poppins";
}
#order-form textarea{
    border: none!important;
    outline: none;
    box-shadow: none;
    width: 100%;
    background-color: #eee;
    border: 1px solid var(--neutra-color);
    padding: 5px 15px;
    height: 100px!important;
    border-radius: 25px;
}
#order-now{
    padding: 40px 0;
}
#order-now h2{
    font-size: 40px;
    text-align: center;
    font-family: 'Poppins';
    font-weight: 600;
  padding: 10px 0 20px 0;
  text-shadow: 0px 4px 3px rgb(0 0 0 / 40%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#order-form  .input-field input[type="submit"] {
    background: var(--primary-color);
    color: #000;
    border-radius: 5px;
    padding: 10px;
    margin-top: 15px;
    transition: 0.3s ease;
    font-weight: 600;
    height: unset;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}
#order-book{
    padding: 40px 0;
}
#order-book .order-box{
    box-shadow: 0px 1px 8px rgb(31 44 91 / 15%);
    border-radius: 20px;
    box-sizing: border-box;
    min-height: 170px;
    text-align: center;
    background-color: white;
    padding: 24px 16px;
    margin-left: 6px;
    margin-right: 6px;
}
#order-book .order-box i{
    background: var(--primary-color);
    padding: 10px;
    border-radius: 50%;
    color: #000;
    width: 40px;
    height: 40px;
    line-height: 24px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}
#order-book .order-box h4{
    font-size: 24px;
    padding: 20px 0;
    font-weight: 600;
    font-family: 'Poppins';
}
#order-book .order-box .order-btm{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#order-book .order-box .order-btm .order-txt p{
    font-size: 18px;
    font-weight: 700;
    color: #1e458d;
}
#order-book .order-box .order-btm .order-btn {
    background: var(--primary-color);
    color: #000;
    border-radius: 5px;
    padding: 4px 10px;
    transition: 0.3s ease;
    font-weight: 600;
    height: unset;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}
#order-book .order-box .order-btm .order-btn a{
    text-decoration: none;
    color: #000;
}

#assign-box .box{
    font-size: 24px;
    text-align: center;
    font-family: Poppins;
    padding: 10px 0;
    line-height: 30px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}
#assign-box .box p{
    font-size: 14px;
    text-align: center;
    padding: 10px 20px;
    font-family: 'Poppins';
}
#assign-box .box h3{
    font-size: 24px;
    padding: 10px 10px;
    font-family: 'Poppins';
    text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
    font-weight: 600;
    line-height: 34px;
}
#assign-box .box a{
    font-size: 18px;
    color: #1e458d;
    font-weight: 700;
    font-family: 'Poppins';
    cursor: pointer;
}
#assign-points .head h2 {
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 28px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#assign-points .head h2:after{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}
#assign-points .head p{
    margin: 0 0 0px;
    font-size: 14px;
    color: #686868;
    text-align: center;
}
#assign-points .box ul li{
    line-height: 30px;
    padding: 20px 0;
}
#assign-points .box ul li span{
    font-weight: 600;
    font-size: 20px;
    padding-right: 10px;
}
/* End Services-Page */

.moretext{
    display: none;
  }
.moretext1 {
    display: none;
  }
  .moretext2 {
    display: none;
  }
  .moretext3 {
    display: none;
  }



  .float{
	position:fixed;
	width:59px;
	height:59px;
	bottom:31px;
	left:35px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}
.float:hover{
    color: #fff;
}
.my-float{
	margin-top:16px;
}
.my-float:hover{
    color: #fff;
}

#privacy-policy .txt h2{
    text-align: center;
    font-family: 'Poppins';
    color: var(--neutra-color);
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 20px;
    position: relative;
    width: 75%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 10%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}
#privacy-policy .txt h2:after{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}
#privacy-policy .txt p{
    font-size: 16px;
    padding: 10px 0;
    line-height: 30px;
}
#privacy-policy .txt ul li{
    font-size: 14px;
    list-style: circle;
    font-family: Poppins;
    line-height: 24px;
    padding: 10px 0;
}
.review-form{
    background-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 0 5px #f8933c, 0 0 8px #fbcc3f;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 30px 20px 30px 20px;
    border-radius: 20px;
    margin: 10px 0;
}
.review-form .input-field {
    padding-bottom: 15px;
}
.review-form .input-field > span {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}
.review-form .input-field input, .review-form .input-field textarea {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    background-color: #eee;
    border: 1px solid var(--neutra-color);
    padding: 5px 15px;
    height: 40px;
    box-shadow: rgb(0 0 0 / 8%) 0px 3px 8px;
}
.review-form  textarea {
    margin-top: 0px;
    height: 100px!important;
}
.star-rating {
    direction: rtl;
    display: inline-block;
    cursor: default;
  }
  .star-rating input[type=radio] {
    display: none;
  }
  .star-rating label {
    color: #bbb;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .star-rating label:hover,
  .star-rating label:hover ~ label,
  .star-rating input[type=radio]:checked ~ label {
    color: #f2b600;
  }
#review-form img{
    width: 100%;
}
#review-form .review-form .input-field input[type="submit"] {
    background: var(--primary-color);
    color: #000;
    border-radius: 5px;
    padding: 10px;
    margin-top: 15px;
    transition: 0.3s ease;
    font-weight: 600;
    height: unset;
}
.ribbon {
    font-size: 16px;
    width: 100%;
    position: relative;
    background-image: linear-gradient(131deg, #f8a723, #f8a723, #f8a723, #f8a723);
    color: black;
    text-align: center;
    padding: 0px 0em;
    line-height: 40px;
    height: 40px;
    margin: 0em 0 2em -38px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 25%);
    font-weight: bold;
}
.ribbon:before, .ribbon:after {
    content: "";
    position: absolute;
    display: block;
    bottom: -1em;
    border: 0;
    z-index: -1;
}
.ribbon .ribbon-content:before {
    left: 0;
    border-width: 1em 0 0 1em;
}
.ribbon .ribbon-content:after {
    right: -32px;
    border-width: 40px 2em 0 0;
    border-top-color: #f8a723;
    bottom: 0px!important;
}
.ribbon .ribbon-content:before, .ribbon .ribbon-content:after {
    content: "";
    position: absolute;
    display: block;
    border-style: solid;
    border-color: #f8a723 transparent transparent transparent;
    bottom: -1em;
}
#not-found{
    background-color: #fca82e;
}
#not-found .img img{
    width: 100%;
}

.screen {
    animation: slide 4s linear infinite;
  }
  .star {
    animation: bounce 4s linear infinite;
  }
  .shaddow {
    transform-origin: center center;
    animation: bounceShaddow 4s linear infinite;
  }

@keyframes slide {
  from {
    transform: translatex(-10%);
  }
  to {
    transform: translatex(100%);
  }
}
@keyframes bounce {
  0%,
  40%,
  50%,
  60%,
  100% {
    transform: translatey(0%);
  }
  45%,
  55% {
    transform: translatey(-10%);
  }
}
@keyframes bounceShaddow {
  0%,
  40%,
  50%,
  60%,
  100% {
    opacity: 100%;
    transform: scale(1, 1);
  }
  45%,
  55% {
    opacity: 70%;
    transform: scale(0.8, 0.7) translatey(10%);
  }
}
#thanks .btn{
    display: block;
}
#thanks .btn a{
    border-radius: 5px;
    padding: 10px 20px;
    text-transform: uppercase;
    color: #000;
    margin: 0 40px;
    cursor: pointer;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px #666;
    text-decoration: none;
    background: var(--primary-color);

}
#thanks .btn a:hover {
    box-shadow: 0 0 0 5px #ffa04e, 0 0 0 10px #ffbc81, 0 0 0 15px #ffd7b4;
  }

.page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 999999999;
    background-color: white;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.page-loader:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: block;
    width: 200px;
    height: 200px;
    background-image: url("/assets/img/loader.gif");
    background-position: center center;
    background-size: cover;
    transition: opacity .3s ease;
    /* animation: page_loader_effect 1s linear infinite; */
}

.page-loader.loaded {
    width: 0;
    left: 0;
    -moz-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    -o-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
}

.page-loader.loaded:before {
    opacity: 0;
}
.container .row .col-md-5 .socail
{
    padding-right: 15px;
}
.container .row .col-md-5 .socaill
{
    margin-left: 50px;
}

.pagination{
    display: block;
    text-align: center;
    margin-bottom: 50px;
}
.pagination ul{
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination ul li.disabled{
    pointer-events: none;
    user-select: none;
    opacity: .5;
}
.pagination ul li,
.pagination ul li a{
    text-decoration: none;
    display: inline-block;
    border-radius: 3px;
    background-color: #fff;
    color: #f8a723;
    cursor: pointer;
    transition: .3s ease;
}
.pagination ul li{
    padding: 0;
}
.pagination ul li.disabled,
.pagination ul li.active,
.pagination ul li a{
    padding: 8px 18px;
}
.pagination ul li.active,
.pagination ul li.active a{
    cursor: default;
}
.pagination ul li.active,
.pagination ul li:hover,
.pagination ul li.active a,
.pagination ul li:hover a{
    background-color: #f8a723;
    color: #fff;
}

#order-book .order-box-1{
    box-sizing: border-box;
    text-align: center;
}
#order-book .order-box-1 img{
    width: 35%;
    box-shadow: 0px 1px 8px rgb(31 44 91 / 15%);
    padding: 20px 15px;
    border-radius: 20px;
}
#order-book h4
{
    padding-top: 18px;
    padding-bottom: 30px;
    text-align: center;
    font-size: 20px;
}
@media only screen and (max-width:700px)
{
    #order-book .order-box-1 img
    {
        width: 55%;
    }
    #order-book h4
    {
        font-size: 16px;
    }
	
 /*   #about-box .about-box-flex .mini-box img.custom{
        width: 100px;
    } */
	
    #customers-testimonials .item .shadow-effect {
        height: auto;
        padding: 10px;
    }
	
	#about-box .about-box-flex{ padding: 0px 0px 0px 0px; }
	#help-services .head h2{ width: 100%; }
	#services h2 { width: 100%; }
	#features .head h2  { width: 100%; }
	#info .info-txt h2 { width: 100%; }
	#oder-form .form-box .form-border .input-box {
		padding: 0 15px;
	}
	
	
	
	
}
.act { color:red !important; font-weight:bold !important;}.servdtl ul{ list-style: disc !important; margin-left:45px !important; }.servdtl ol{ list-style: disc !important; margin-left:45px !important; }.iti__country-list{ width:193.5px!important;}

#about td { width:50%; padding:15px; text-align:justify; }

#about td img{ width: 100%;}

@media all and (max-width:500px){
    table{
        width:100%;
    }

    td{
        display:block;
        width:100% !important;
    }

    tr{
        display:block;
        margin-bottom:30px;
    }
	
#hero-section .back-txt{
    padding-top: 10px;
}	
	
	
}