@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    
}

.container {
    max-width: 1230px;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --text-color: #242424;
}

p {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: var(--black);
}
section{
    overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/*----------------------------------------------------- main page css start  -----------------------------------------------------*/
header{
    position: absolute;
    top: 20px;
    width: 100%;
    left: 0;
    z-index: 1;
}
 header .navbar-nav {
    gap: 5px;
}
 header .navbar-nav  .nav-item{}
 header .navbar-nav  .nav-item .nav-link{
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    padding: 6px 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: 0.5s;
 }
 header .navbar-nav  .nav-item.active .nav-link{
    border: 2px solid var(--white);
    border-radius: 10px;
 }
 header .navbar-nav .nav-item .nav-link:hover{
    border: 2px solid var(--white);
}
.BannerSection{
    background: url(../images/banner.png) no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 3rem 0 2rem;
    display: flex;
    align-items: center;
    min-height: 1240px;
    justify-content: center;
    position: relative;
}

.banner-txt{}
.banner-txt h1{
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}
.banner-txt p{
    font-size: 21px;
    color: white;
    font-weight: 300;
    line-height: normal;
}

.AboutSection{
    padding: 130px 0;
}
.about-txt{}
.about-txt h2{
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}
.about-txt p{
    color: var(--text-color);
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
}


.ServicesSection{
    padding: 130px 0;

}
.parent-head{
}
.parent-head h2{
    font-size: 45px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;

}
.parent-head p{
    font-size: 18px;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 15px;
}


.cardServices {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    /* background: linear-gradient(#ffffff 50%, rgb(29,208,53) 50%) ; */
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
    text-align: center;
    position: relative;
    border-radius: 10px;
  }
  .cardServices .cardServChild{
    position: absolute;
    background-image: -moz-linear-gradient( 45deg, rgb(29,208,53) 0%, rgb(8,72,168) 100%);
    background-image: -webkit-linear-gradient( 45deg, rgb(29,208,53) 0%, rgb(8,72,168) 100%);
    background-image: -ms-linear-gradient( 45deg, rgb(29,208,53) 0%, rgb(8,72,168) 100%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    left: 0;
    width: 100%;
    height: 5%;
    bottom: 0;
    transition: 0.5s;
    border-radius: 0 0 10px 10px;
  }
  .cardServices:hover .cardServChild{
    height: 100%;
    
      }
  .cardServices  h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f194c;
    margin: 1em 0;
    z-index: 1;
    position: relative;
    transition: 0.5s;
  }
  .cardServices p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    z-index: 1;
    position: relative;
    transition: 0.5s;
  }
  .cardServices .icon-wrapper {
    background-image: -moz-linear-gradient( 45deg, rgb(29,208,53) 0%, rgb(8,72,168) 100%);
    background-image: -webkit-linear-gradient( 45deg, rgb(29,208,53) 0%, rgb(8,72,168) 100%);
    background-image: -ms-linear-gradient( 45deg, rgb(29,208,53) 0%, rgb(8,72,168) 100%);
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
  }
  .cardServices:hover {
    background-position: 0 100%;
  }
  .cardServices:hover .icon-wrapper {
    background-color: #ffffff;
    color: #2c7bfe;
  }
  .cardServices:hover h3 {
    color: #ffffff;
  }
  .cardServices:hover p {
    color: #f0f0f0;
  }
  .cardServices .icon-wrapper img{
    filter: invert(1);
  }


  .DealerSection{
    padding: 100px 0;
    background: url(../images/dealer/deals-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
}

.Inndealers{
    display: flex;
    align-items: start;
    flex-direction: row-reverse;
    gap: 15px;
    text-align: end;
}
.Inndealers figure{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--white);
    background: transparent;
    flex: 0 0 60px;
}
.Inndealers figure img{}
.Inndealers h4{
    font-size: 35px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}
.Inndealers p{
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
}
.DealersRight{
    text-align: left;
    flex-direction: row;
}

.ShowcaseSections{
    padding: 100px 0;
}
.screenshots-area .sec-title {
    margin-bottom: 15px;
}
.screenshot-wrap .slick-list {
	padding-bottom: 90px !important;
	padding-top: 80px !important;
}
.single-screenshot.slick-slide {
	z-index: 1;
}
.single-screenshot.slick-active {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	z-index: 2;
	transition: all 0.3s ease-in 0s;
}
.single-screenshot.slick-center {
	position: relative;
	-webkit-transform: scale(1.25);
	-ms-transform: scale(1.25);
	transform: scale(1.25);
	z-index: 3;
	transition: all 0.3s ease-in 0s;
}
.single-screenshot img {
	width: 100%;
}
.single-screenshot {
    margin: 20px;
}


.inner-packages {
    padding: 60px 30px;
    border: 2px solid #6c62ff;
    border-radius: 15px;
    background: white;
    transition: 0.5s;
}

.inner-packages span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #101522;
    padding-bottom: 10px;
}

.inner-packages span h4 {
    font-size: 30px;
    color: #101522;
    font-weight: 800;
    max-width: 50%;
    text-transform: uppercase;
}
#PackageModal h3.title{
    text-transform: uppercase;
}
.inner-packages span strong {
    font-size: 60px;
    color: #6c62ff;
    font-weight: 800;
}

.inner-packages p {
    font-size: 18px;
    color: #101522;
    font-weight: 500;
    padding-top: 15px;
}

.inner-packages ul {
    padding: 10px 0 20px;
}

.inner-packages ul li {
    color: #101522;
    font-size: 18px;
    margin-bottom: 10px;
}

.inner-packages ul li i {
    margin-right: 10px;
    color: #6c62ff;
    transition: 0.5s;
}

.inner-packages ul li i.fa-check-circle:before {
    content: "\f058";
    background: black;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-packages .mfs-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.inner-packages .mfs-btn-wrapper a {
    width: 100%;
    text-align: center;
    min-width: auto;
}

.inner-packages:hover {
    background: #6c62ff;
}

.inner-packages:hover ul li i {
    color: black;
}

.inner-packages:hover ul li i.fa-check-circle:before {
    background: white;
}

.inner-packages:hover .mfs-btn-wrapper .mfs-primary-btn.dark {
    background: black;
    color: white;
}

/* width */
.inner-packages ul::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.inner-packages ul::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
.inner-packages ul::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
}

.inner-packages ul {
    height: 300px;
    overflow: scroll;
    overflow-x: hidden;
}
.inner-packages .mfs-btn-wrapper .mfs-primary-btn.dark {
    border: 2px solid #6c62ff;
}
.inner-packages .mfs-primary-btn {
    font-size: 18px;
    padding: 14px 10px;
    font-weight: 600;
    color: var(--text-color);
    border-radius: 30px;
}

.inner-packages {
    padding: 30px 15px;
}

.inner-packages span strong {
    font-size: 40px;
}

.inner-packages span h4 {
    margin-bottom: 0px;
    font-size: 24px;
}

.inner-packages p {
    font-size: 16px;
}

.inner-packages ul li {
    font-size: 16px;
    padding-left: 1px;
}
.mfs-primary-btn.outline {
    border: 2px solid black;
}
.inner-packages:hover h4,
.inner-packages:hover p,
.inner-packages:hover ul li,
.inner-packages:hover span strong {
    color: var(--white);
}
.PackagesSections{
    padding: 100px 0;

}

.testimonialsSections{
    padding: 60px 0 130px;
}

.InnerReviews{
    text-align: center;
    padding: 10px 20px 50px;
    background: #f7f7f7;
    transition: 0.5s;
}
.InnerReviews figure{
    margin-top: -50px;
}
.InnerReviews figure img{
    margin: auto;
}
.InnerReviews i{
    font-size: 70px;
    color: #014aaf;
    transition: 0.5s;
}
.InnerReviews p{
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;

}
.InnerReviews h4{
    color: var(--text-color);
    font-size: 24px;
    font-weight: 700;

}


.ReviewSlider .slick-list{
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}
.revItems {
    margin: 20px;
}
.revItems.slick-slide.slick-current.slick-active.slick-center .InnerReviews i{
    color: #1dd035;
}
.ContactSection{
    background: url(../images/contact-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.Contact-lefts {}
.Contact-lefts  h2{
    color: var(--white);
    margin-bottom: 30px;
}
.Contact-lefts  .form-group{}
.Contact-lefts  input{
    height: 45px;
    background-color: transparent;
    border: 2px solid var(--white);
    border-radius: 30px;
    color: var(--white);
    padding-left: 20px;
}
.Contact-lefts  input::placeholder{
    color: var(--white);
    font-size: 16px;
}
.Contact-lefts  textarea{
    background-color: transparent;
    border: 2px solid var(--white);
    border-radius: 10px;
    color: var(--white);
    padding-left: 20px;
    padding-top: 10px;
}
.Contact-lefts  textarea::placeholder{
    color: var(--white);
    font-size: 16px;
}
.Contact-lefts  .Themebtn{
    background: transparent;
    border-radius: 30px;
    border: 2px solid var(--white);
    transition: 0.5s;
    color: var(--white);
    padding: 10px 30px;
}
.Contact-lefts  .Themebtn:hover{
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.Contact-lefts input:focus,
.Contact-lefts textarea:focus {
    background: transparent;
    color: white;
    outline: none;
    box-shadow: none;
    border-color: black;
}
.ContactRights {}
.ContactRights h6{
    font-size: 26px;
    font-weight: 700;
    color: white;
}
.ContactRights small{
    color: white;
    font-size: 16px;
}
.ContactRights ul{}
.ContactRights ul li{
        font-size: 1.125rem;
        width: 100%;
        /* padding-left: 4.5625rem; */
        position: relative;
        margin-top: 1.75rem;
}
.ContactRights ul li i {
    color: #ffffff;
}
.ContactRights ul li a{
    padding-left: 12px;
    color: white;
}

footer{
    background: var(--black);
    padding: 60px 0 10px;
}

.FootersLogs{}
.FootersLogs a{
    display: block;
    font-size: 25px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 12px;
}
.FootersLogs p{
    font-size: 16px;
    color: white;
    font-weight: 300;
}

footer ul li {
    margin-bottom: 10px;
    padding-left: 0;
}
footer ul li a{
    color: var(--white);
    font-size: 16px;
    transition: 0.5s;
}
footer h4{
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}
footer ul li a:hover{
    color: #1dd035;
}

footer .socialIo{
    display: flex;
    align-items: center;
    gap: 10px;
}
footer .socialIo li{
	padding: 0 10px;
}
footer .socialIo li a{
    font-size: 24px;
}
footer .get-info-list {}
footer .get-info-list  li{
    margin-bottom: 15px;
    display: block;
}
footer .get-info-list  li a{
}
footer .get-info-list  li i{
    color: var(--white);
    padding-right: 11px;
}
.copyRight {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--white);
}
.copyRight p{
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 300;
}
.navbar-brand {
    color: var(--white);
    transition: 0.5s;

}
.navbar-brand:hover{
    color: #1dd035;
}
label.error {
    color: red;
    margin-left: 20px;
}

.revItems.slick-slide.slick-current.slick-active.slick-center .InnerReviews {
    transform: scale(1.1);
}



.sidenav {
    display: none;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    background-color: #000;
    padding-top: 60px;
    transition: .5s
}

header .spanBar {
    color: #fff;
    background-image: -webkit-linear-gradient(45deg, rgb(29, 208, 53) 0%, rgb(8, 72, 168) 100%);
    box-shadow: 0 30px 50px 0 rgb(161 116 217 / 25%);
    padding: 10px;
    border-radius: 50%;
    display: none
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    color: #fff;
    display: block;
    transition: .3s
}


.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    font-weight: 300
}
.sidenav,  .sticky {
    left: 0;
}
.sidenav {
    overflow-x: hidden;
}
body.activeBodyHead::before {
    content: '';
    position: absolute;
    background: #0000006e;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
/*----------------------------------------------------- main page css end -----------------------------------------------------*/
/*----------------------------------------- thankyou page css  start ------------------------------*/

.thankyou-banner h1 {
    font-size:  46px;
    font-weight: 600;
    margin-bottom: 22px;
    line-height: 58px;
    margin-top: 30px;
    }
    .thankyou-banner h1 span {
    display:  block;
    font-family:  georgia;
    font-style:  italic;
    }
    .thankyou-banner {
    text-align: center;
    background: url(../images/home-banner.jpg);
    display: -webkit-flex;
    display: inline-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    font-size: 22px;
    color: #182234;
    line-height: 26px;
    background-size: cover;
    padding: 50px 20px;
    border-top: 5px solid #0d47a1;
    background-position: right;
    }
    a.live-chat-thank.chat {
    background-image: -webkit-linear-gradient(45deg, rgb(29, 208, 53) 0%, #0848a8 100%);
    display: inline-block;
    border-radius: 50px;
    padding: 14px 70px;
    color: #fff;
    text-transform:  uppercase;
    letter-spacing: 1px;
    margin: 40px 0;
    }
    .thankyou-banner .back-home {
        font-size: 16px;
        color: #182234;
        margin-top: 40px;
        font-weight: 600;
    }
    .thankyou-banner .back-home img{
        margin-right: 10px;
    }
   @media (max-width:767px){
    .thankyou-banner h1 {
        font-size: 30px;
        margin-bottom: 10px;
        line-height: initial;
    }
    
    .thankyou-banner p {
        font-size: 17px;
    }
    
    a.live-chat-thank.chat {
        margin-top: 10px;
        font-size: 16px;
        padding: 10px 30px;
        margin-bottom: 25px;
    }
    
    .back-home img {
        max-width: 200px;
    }
    
    .logo-thankyou img {
        max-width: 90%;
    }
   }
   a.live-chat-thank.chat:hover {
    background: black;
    text-decoration: none;
    border: 2px solid #000;
}

a {
    transition: 0.5s;
}

a.live-chat-thank.chat {
    border: 2px solid #0848a8;
}
/*----------------------------------------- thankyou page css  end ---------------------------------*/
/*----------------------------------------- Book a Demo Form page css  start ---------------------------------*/
form.BookDemoForms input
,form.BookDemoForms select {
height: 45px;
background-color: transparent ;
border: 2px solid var(--white);
border-radius: 30px;
color: var(--white);
padding-left: 20px;
}

.BookDemoSection {background: black;padding: 100px 0;height: 100vh;display: flex;align-items: center;}

.BookDemoSection .parent-head h2 {
color: white;
}
form.BookDemoForms label {
color: white;
font-size: 16px;
font-weight: 600;
margin-left: 11px;
}
.parent-head.text-center {
    margin-bottom: 50px;
}
form.BookDemoForms input:focus
,form.BookDemoForms select:focus{
    background-color: transparent;
    border-color: red;
    box-shadow: none;
}


.BookDemoForms  .Themebtn{
    background: transparent;
    border-radius: 30px;
    border: 2px solid var(--white);
    transition: 0.5s;
    color: var(--white);
    padding: 10px 40px;
    width: 100%;
}
.BookDemoForms  .Themebtn:hover{
    background: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
}
.BookDemoForms .row{
    justify-content: space-between;
}


header .navbar-brand img {
    width: 240px;
}
.FootersLogs a img {
    width: 240px;
}
/*----------------------------------------- Book a Demo Form page css  end ---------------------------------*/


