/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header / .header-con
4. Banner / .banner-con
5. Partners / .partner-logo-con
6. Services / .service-con
7. Pricing / .pricing-con
8. offer / .offer-con
9. Portfolio / .gallery-sec
10. Choose / .choose-con
11. Faq / .faq-con
12. Help  / .help-con
13. Testimonials / .testimonials-con
14. Contact / .contact-info-con
14. Blog / .blog-con
14. Footer / .footer-con
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
# [Color codes]

# --primary--color: #000;
# --secondary--color: #eef5fe;
# --text-color: #8b97ad;
# --accent-color:#0acf83;
# --sky-blue-color: #1abcfe;
# --white-color: #fff;
/*------------------------------------------------------------------
[Typography]
Body copy:     'Inter', sans-serif;
-------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz@9..40&family=Inter:wght@300;400;500;700&family=Plus+Jakarta+Sans:wght@700;800&family=Roboto:wght@700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
a,
button
input{
	outline: none;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
body{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}
:root{
    --primary--color: #000;
    --secondary--color: #eef5fe;
    --text-color: #8b97ad;
    --accent-color:#0acf83;
    --sky-blue-color: #1abcfe;
    --white-color: #fff;
}
/* HEADER CSS */
.header-con .navbar-light .navbar-nav .nav-link{
    font-size: 16px;
    line-height: 16px;
    color: var(--white-color);
}
.header-con .navbar-light .navbar-nav .nav-link:hover{
    color: var(--accent-color);
}
.header-con .navbar-nav{
    gap: 54px;
}
.header-btn .search-bar {
    width: 48px;
    height: 48px;
    display: flex;
    border-radius: 10px;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    color: var(--white-color);
    border: 1px solid var(--white-color);
}
.header-btn .search-bar:hover{
    background: var(--white-color);
}
.header-btn .search-bar:hover i{
    color: var(--sky-blue-color);
}
.header-btn {
    gap: 10px;
    display: flex;
    margin-left: 30px;
    align-items: center;
}
.header-btn .support-btn{
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    color: var(--white-color);
    padding: 14px 35px 18px 36px;
    background: var(--sky-blue-color);
}
.header-btn .support-btn:hover{
    background: transparent;
    color: var(--sky-blue-color);
    box-shadow: inset 0 0 0px 1px #1abcfe;
}
.header-con {
    top: 11px;
    z-index: 2;
    position: absolute;
    padding-bottom: 10px;    
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}
/* HEADER CSS */
/* BANNER SECTION */
.banner-con{
    position: relative;
    padding: 247px 0 198px;
    background: url(../images/banner-img.jpg) no-repeat center;
    background-size: cover;
}
.banner-title *{
    color: var(--white-color);
}
.banner-title h1{
    margin-bottom: 38px;
    text-shadow: 5px 5px rgb(0 0 0 / 10%);
}
.banner-title span{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 125px;
}
.scroll-down {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    padding-top: 16px;
    border-radius: 50%;
    outline-offset: 8px;
    outline: 3px solid #000;
    box-shadow: 5px 5px 100px rgb(0 0 0 / 50%);
    background: linear-gradient(to right, rgba(10,207,131,1) 0%,rgba(26,188,254,1) 100%);
}
.scroll-down small{
    display: block;
    font-size: 16px;
    line-height: 16px;
}
.banner-title figure{
    left: 50%;
    bottom:-330px;
    position: absolute;
    transform: translateX(-50%);
}
/* BANNER SECTION */
/* PARTNER LOGO SECTION */
.partner-logo-box{
    padding: 251px 0 90px;
    border-bottom: 1px solid #f8f8f9;
}
.partner-logo-box ul {
    width: 83.3%;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}
.partner-logo-box ul li figure img{
    filter: grayscale(1);
    transition: all 0.5s ease-in-out;
}
.partner-logo-box ul li figure img:hover{
    transform: translateY(-5px);
    filter: none;
}
/* PARTNER LOGO SECTION */
/* SERVICE SECTION */
.service-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 31.532% 31.532% 31.532%;
}
.service-box-item {
    padding: 45px 40px 46px;
    border-radius: 50px 10px;
    border: 1px solid #c9efff;
    background: var(--white-color);
}
.service-box-item figure{
    margin-bottom: 33px;
}
.service-box-item h3{
    margin-bottom: 18px;
}
#service-slider .service-box-item figure img{
    width: auto;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}
.contact-info-item figure img{
    transition: all 0.4s ease-in-out;
}
#service-slider .service-box-item:hover figure img,
.contact-info-item:hover figure img,
.footer-social-icon ul li a i:hover{
    transform: translateY(-8px);
}
.owl-nav{
    display: none;
}
#service-slider .owl-stage-outer{
    margin-bottom: 48px;
}
.owl-theme .owl-dots .owl-dot span{
    margin: 0;
    width: 10px;
    height: 6px;
    background: rgb(26 188 254 / 30%);
}
.owl-theme .owl-dots .owl-dot.active span{
    width: 25px;
    background: var(--sky-blue-color);
}
.owl-theme .owl-dots{
    gap: 5px;
    display: flex;
    justify-content: center;
}
.owl-theme .owl-dots button:focus{
    outline: none;
}
/* SERVICE SECTION */
/* PRICING SECTION */
.pricing-con{
    margin-top: -401px;
    padding-top: 336px ;
    background: var(--secondary--color);
    clip-path: polygon(50% 0%, 100% 32%, 100% 100%, 0 100%, 0% 32%);
}
.gallery-sec .generic-title p {
    font-size: 18px;
    color: #8b97ad;
    line-height: 22px;
    margin-bottom: 73px;
}
.masonry-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    pointer-events: none;
}
.masonry .masonry-item{
    border-radius: 10px;
    margin-bottom: 30px;
}
.masonry .masonry-item:last-child{
    margin-bottom: 0;
}
.masonry-con {
    gap: 30px;
    display: grid;
    grid-template-columns: 31.8% 31.8% 31.8%;
}
.masonry-item{
    overflow: hidden;
    position: relative;
}
.masonry-item img{
    transition: .4s ease-in-out;
}
.masonry-item:hover img{
    transform: scale(1.1);
}
.panel .panel-body {
    position: relative;
    padding: 0 !important;
    overflow: hidden;
    height: auto;
}
/*Image size and transition*/
.panel .panel-body a img {
    display: block;
    margin: 0;
    width: 100%;
    height: 150px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

/*Transform scale effect when you hover over*/
.panel .panel-body a.zoom:hover img {
    transform: scale(1.3);
    -ms-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -moz-transform: scale(1.3);
}
#lightbox button.close:hover {
    background: var(--primary--color);
}
div#lightbox img {
    border-radius: 10px;
}

/*Zoom Button*/
#lightbox .modal-content {
    display: inline-block;
    text-align: center;
    background: none;
    border: none;
}
.modal-header{
    border: none;
}
button.close:focus{
    outline: none;
    border: none;
}
button.close {
    border: 0;
    position: fixed;
    right: -5px;
    top: -14px;
    color: #fff;
    background: var( --accent-color);
    opacity: 1;
    padding:6px 12px 14px !important;
    border-radius: 50%;
    height: 40px;
    font-weight: 400;
    width: 40px;
    z-index: 2;
}
button.close span i{
    font-size: 20px;
    font-weight: 400;
}
button.close:hover{
    background: var(--accent);
    color: var(--secondary--color);
    opacity: 1;
}
.modal-dialog {
    max-width: fit-content;
    top: 20%;
    width: 55%;
}
.modal-content{
    height: 100vh;
    overflow: inherit;
}
.map-sec iframe{
    width: 100%;
}
.model-list li i {
    color: var(--button-color);
    margin-right: 10px;
}
.modal-body {
    padding: 0;
}
.gallery-sec .generic-title h2{
    padding: 0 50px;
    margin-bottom: 20px;
}
.modal-body .admin-con{
    margin: 0;
}
.modal-open .modal{
    padding: 0;
}
.modal-body .contact-form {
    padding: 20px 30px 30px 37px;
}
.modal-body > ul li {
    margin-bottom: 5px;
}
.project-tab .nav{
    gap: 60px;
    margin-bottom: 47px;
    justify-content: center;
}
.project-tab .nav-item .nav-link {
    padding: 10px 0;
    font-size: 18px;
    line-height: 18px;
    position: relative;
    color: var(--primary--color);
}
.project-tab .nav-item .nav-link:hover{
    color: var(--sky-blue-color);
}
.project-tab .nav-item .nav-link.active:after,
.project-tab .nav-item .nav-link.active::before{
    top: 0;
    left: 0;
    content: "";
    width: 50px;
    height: 2px;
    position: absolute;
    background: var(--sky-blue-color);
}
.project-tab .nav-item .nav-link.active::before{
    bottom: 0;
    right: 0;
    top: auto;
    left: auto;
}
.project-tab .nav-pills .nav-link.active,.project-tab .nav-pills .nav-link.hover{
    color: var(--sky-blue-color);
    background: transparent;
}
.project-tab {
    z-index: 1;
    position: relative;
}
.pricing-box{
    gap: 30px;
    display: grid;
    align-items: center;
    grid-template-columns: 48.65% 50%;
}
.pricing-value-title,.pricing-value-title small {
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
    color: var(--primary--color);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.pricing-box ul li label{
    margin: 0;
    border-radius: 10px;
    display: block !important;
    background: var(--white-color);
    padding: 25px 30px 24px 74px;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
}
[type="radio"]:checked + label{
    box-shadow: 20px 20px 40px rgb(170 195 225 / 40%);
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 31px;
    top: 30px;
    width: 25px;
    height: 25px;
    border: 1px solid #e3e3e3;
    border-radius: 100%;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 11px;
    height: 11px;
    background: #0acf83;
    position: absolute;
    top: 36px;
    left: 38px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:before{
    border-color: var(--accent-color);
}
.pricing-value-title {
    float: left;
    margin-bottom: 10px;
}
.package-price{
    float: right;
}
.package-detail {
    clear: both;
    color: #758ba9;
}
.pricing-value-title small {
    display: block;
    color: var(--accent-color);
}
.package-price {
    float: right;
    font-size: 24px;
    font-weight: 800;
    line-height: 24px;
    color: var(--primary--color);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.pricing-con .generic-title h2 {
    margin-bottom: 55px;
}
.pricing-value-item ul li{
    margin-bottom: 20px;
}
.pricing-value-item ul li:last-child{
    margin-bottom: 0;
}
#fade1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .80;
    z-index: 1001;
    display: none;
    position: fixed;
    filter: alpha(opacity=80);
    /* background-color: black; */
}
#fade2 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .80;
    z-index: 1001;
    display: none;
    position: fixed;
    filter: alpha(opacity=80);
    background-color: black;
}

#light iframe {
    width: 100%;
    height: 600px;
    border: 0;
}
#light2,
#light {
    top: 78%;
    left: 50%;
    display: none;
    z-index: 1002;
    background: #fff;
    padding: 40px;
    position: absolute;
    margin-top: -180px;
    transform: translate(-50%, -50%);
}
#light {
    width: 100%;
}
#light2 {
    width: 58%;
}
#light2 iframe {
    width: 100%;
    height: 500px;
}
.index3-poster {
    position: absolute;
    left: 10%;
}
.index3-video-wrap {
    left: 50%;
    top: 42%;
    height: 56px;
    width: 53px;
}
#boxclose {
    top: -12px;
    width: 30px;
    right: -10px;
    float: right;
    height: 30px;
    display: flex;
    z-index: 1002;
    cursor: pointer;
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    position: absolute;
    border-radius: 50%;
    justify-content: center;
    color: var(--white-color);
    background: var(--accent-color);
}
#boxclose:hover{
    background: var(--primary--color);
}
.boxclose:before {
    content: "×";
}
#fade1:hover~#boxclose {
    display: none;
}
.test:hover~.test2 {
    display: none;
}
.index1-poster {
    border-radius: 10px;
}
.pricing-con .container{
    position: relative;
}
.video-wrap {
    top: 50%;
    left: 50%;
    display: flex;
    z-index: 1;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}
/* PRICING SECTION */
/* HELP SECTION  */
.help-con{
    background: url(../images/help-bg-img.jpg) no-repeat center;
    background-size: cover;
}
.help-title *{
    color: var(--white-color);
}
.help-title h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
}
.help-title span {
    font-size: 18px;
    margin-bottom: 25px;
}
.help-title {
    position: relative;
    padding: 94px 0 99px;
}
.help-title::after {
    z-index: 1;
    content: "";
    right: -66px;
    width: 507px;
    height: 296px;
    bottom: -197px;
    position: absolute;
    background: url(../images/black-drone.png) no-repeat;
}

/* HELP SECTION  */
/* FAQ SECTION */
.faq-con{
    padding-top: 200px;
}
.faq-box {
    display: grid;
    grid-template-columns: 48.7% 51.3%;
}
.faq-box-title h2 {
    margin-bottom:19px;
    line-height: 60px;
}
.faq-box-title span{
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 56px;
}
.faq-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 20px 20px 40px rgb(26 188 254 / 10%);
    border: 1px solid #1abcfe;
    margin-bottom: 20px;
    padding: 22px 30px 23px;
}
.faq-item h3{
    margin-bottom: 16px;
    color: var(--sky-blue-color);
}
.faq-item p{
    margin-bottom: 0;
}
.faq-item-con .faq-item:last-child{
    margin-bottom: 0;
}
.faq-box-title{
    padding-top: 50px;
}
.faq-box-img figure img{
    top: 0px;
    left: -60px;
    position: relative;
}
/* FAQ SECTION */
/* CHOOSE SECTION */
.choose-con {
    margin-top: -366px;
    position: relative;
    padding: 503px 0 140px;
    background: var(--secondary--color);
    clip-path: polygon(50% 0%, 100% 55%, 100% 100%, 0 100%, 0% 55%);
}
.faq-con{
    position: relative;
}
.faq-con:after,.footer-con:after{
    top: -80px;
    left: 50%;
    content: "";
    width: 1241px;
    height: 280px;
    position: absolute;
    transform: translateX(-50%);
    background: url(../images/front-drone.png) no-repeat;
}
.choose-con .generic-title h2{
    margin-bottom: 20px ;
}
.choose-con .generic-title p {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 53px;
}
.choose-con .generic-title {
    width: 83%;
}
.scroll-down-txt{
    width: 100%;
    float: left;
    z-index: 999;
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.scroll-down-txt a i{
    display: block;
}
.scroll-down-txt a{
    color: var(--white-color);
    text-decoration: none;
}
.choose-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 48.66% 48.66%;
}
.choose-box-item {
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    padding: 27px 39px 40px;
    transition: all 0.4s ease-in-out;
    background: var(--white-color);
    box-shadow: 20px 20px 40px rgb(170 195 225 / 40%);
}
.choose-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 48.66% 48.66%;
}
.choose-box-item h3{
    line-height: 26px;
    margin-bottom: 20px;
}
.choose-box-item p{
    margin-bottom: 0;
    margin-top: auto;
}
.choose-box-item:hover *{
    color: var(--white-color);
}
.choose-box-item:hover{
    background: linear-gradient(to right,  rgba(10,207,131,1) 0%,rgba(26,188,254,1) 100%); 
}
/* CHOOSE SECTION */
/* TESTIMONIALS SECTION */
.testimonials-con {
    padding-bottom: 90px;
    background: url(../images/testimonials-bg-img.png) no-repeat center;
    background-size: cover;
}
#client-slider .owl-item img {
    width: auto;
}
.client-slider-box {
    border-radius: 10px;
    position: relative;
    background: var(--white-color);
    padding: 40px 40px 37px 40px;
    border: 1px solid #c9efff;
}
.quote-icon {
    top: 20px;
    right: 20px;
    position: absolute;
}
.client-slider-info {
    position: relative;
}
#client-slider .client-slider-info figure img {
    width: 70px;
    height: 70px;
    position: absolute;
    border-radius: 50%;
    outline-offset: 5px;
    outline: 1px solid var(--sky-blue-color);
}
.client-title {
    padding-top: 5px;
    margin-left: 95px;
    margin-bottom: 48px;
}
.client-title h3{
    margin-bottom: 2px;
}
.client-slider-box p{
    font-size: 18px;
    line-height: 30px;
}
#client-slider .owl-stage-outer {
    margin-bottom: 50px;
}
.client-slider .owl-stage-outer{
    overflow: inherit;
    overflow-x: clip !important;
}

/* TESTIMONIALS SECTION */
/* CONTACT INFO SECTION */
.contact-info-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.contact-info-item {
    padding: 40px 42px 35px;
    border-radius: 50px 0 50px 0;
    background: var(--white-color);
    border: 1px solid transparent;
    box-shadow: 20px 20px 40px rgb(170 195 225 / 40%);
}
.contact-info-item figure{
    margin-bottom: 32px;
}
.contact-info-item h3{
    margin-bottom: 20px;
}
.contact-info-item ul li a{
    font-size: 18px;
    line-height: 18px;
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
}
.contact-info-item ul li a:hover{
    color: var(--sky-blue-color);
}
.contact-info-item:hover{
    border-color: var(--sky-blue-color);
    box-shadow: 20px 20px 40px rgb(26 188 254 / 10%);
}
/* CONTACT INFO SECTION */
/* BLOG SECTION */
.blog-con{
    position: relative;
    padding-bottom: 240px;
    background: var(--secondary--color);
    clip-path:polygon(100% 0, 100% 67%, 51% 100%, 0% 65%, 0 0);
}
.blog-con .generic-title h2 {
    margin-bottom: 21px;
}
.blog-con .generic-title p{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 80px;
    padding: 0 74px;
}
.blog-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.blog-box-item{
    position: relative;
}
.blog-label {
    top: 10px;
    right: 10px;
    position: absolute;
    background: #000;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    padding: 5px 9px 5px 10px;
    line-height: 14px;
}
.blog-box-item figure img{
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}
.blog-box-item:hover figure img{
    transform: translateY(-8px);
}
.blog-box-item{
    border-radius: 10px 10px 0 0;
}
.blog-box-content {
    z-index: 1;
    width: 91.53%;
    margin-top: -40px;
    position: relative;
    padding: 29px 30px 24px;
    background: var(--white-color);
    box-shadow: 5px 5px 30px rgb(204 204 204 / 20%);
}
.date{
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.blog-box-content h3 {
    margin-bottom: 0;
    font-weight: 800;
    line-height: 26px;
    position: relative;
    padding-left: 21px;
}
.blog-box-content h3 a{
    text-decoration: none;
    display: inline-block;
    color: var(--primary--color);
}
.blog-box-content h3 a:hover{
    color: var(--sky-blue-color);
}
.blog-box-content h3::after{
    left: 0;
    top: 8px;
    width: 2px;
    content: "";
    height: 41px;
    position: absolute;
    background: var(--sky-blue-color);
}
/* BLOG SECTION */
/* FOOTER SECTION */
.footer-social-icon ul {
    gap: 10px;
    display: flex;
    justify-content: center;
}
.footer-social-icon ul li a {
    display: inline-block;
    text-decoration: none;
}
.footer-social-icon ul li a i {
    width: 46px;
    height: 46px;
    display: flex;
    font-size: 16px;
    line-height: 16px;
    border-radius: 10px;
    align-items: center;
    color: #8b97ad;
    justify-content: center;
    border: 1px solid #8b97ad;
    transition: all 0.4s ease-in-out;
}
.footer-social-icon ul li a i:hover{
    color: var(--white-color);
    border-color: var(--sky-blue-color);
    background: var(--sky-blue-color);
}
.footer-box p {
    font-size: 18px;
    padding: 0 170px;
    line-height: 30px;
    margin-bottom: 31px;
}
.footer-logo a{
    display: inline-block;
}
.footer-logo a figure {
    margin-bottom: 32px;
}
.footer-con {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
}
.copyright-box ul {
    gap: 20px;
    display: flex;
    justify-content: center;
}
.copyright-con {
    padding: 29px 0;
    background: var(--secondary--color);
}
.copyright-box ul li {
    font-size: 14px;
    line-height: 14px;
}
.copyright-box ul li a {
    text-decoration: none;
    color: var(--text-color);
}
.copyright-box ul li a:hover{
    color: var(--sky-blue-color);
}
.copyright-box ul li:nth-child(2){
    padding: 0 20px;
    border-left: 1px solid var(--text-color);
    border-right: 1px solid var(--text-color);
}
.footer-con:after{
    top: -173px;
}
/* FOOTER SECTION */
.offer-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding:47px 80px;
    margin-top: -80px;
    position: relative;
    background: linear-gradient(to right, rgba(10, 207, 131, 1) 0%, rgba(26, 188, 254, 1) 100%);
}
.offer-title *{
    color: var(--secondary--color);
}
.offer-title h3 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 26px;
}
.offer-title span {
    font-size: 18px;
    line-height: 18px;
}
.offer-box .generic-btn a {
    padding: 20px 43px;
    background: var(--primary--color);
}
.offer-box .generic-btn a:hover{
    background: var(--accent-color);
}
span.error {
    font-size: 14px;
    color: red;
}
/* LOADER SECTION */
.loader-mask {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    background-color: #fff;
}
.loader {
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    position: absolute;
    text-indent: -9999em;
    display: inline-block;
    margin: -25px 0 0 -25px;
    color:var(--primary--color);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.loader-mask {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    position: fixed;
    background-color: #fff;
}
.lead{
  font-size:13px;
}
.loader div {
    top: 0;
    left: 0;
    opacity: .5;
    float: none;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    display: inline-block;
    background-color:var(--accent-color);
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}
.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* LOADER SECTION */
/* BACK TO TOP BUTTON */
#back-to-top-btn:focus{
    outline: none;
}
#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    font-size: 18px;
    border: none;
    background-color: var(--accent-color);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}
#back-to-top-btn::after {    
    font-size: 18px;
    font-weight: 600;
    content: "\f062";
    line-height: 50px;
    color: var(--white-color);
    font-family: "Font Awesome 5 free";
}
@-webkit-keyframes spineer {
    from {
     box-shadow: 0 0 0 0 rgba(10, 207, 131, .99)
    }
     to {
      box-shadow: 0 0 0 30px rgba(10, 207, 131, .01)
     }
    }    
    @keyframes spineer {
    from {
     box-shadow: 0 0 0 0 rgba(10, 207, 131, .99)
    }
    to {
     box-shadow: 0 0 0 30px rgba(10, 207, 131, .01)
    }
}
/* BACK TO TOP BUTTON */

