body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
font-family: 'Lato', sans-serif;
}
*{
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6 p{
    margin: 0;
    padding: 0;
}
ul, li{
    list-style: none;
}
a{
    text-decoration: none!important;
}
a:hover{
    text-decoration: none;
}
/*main css trat here*/
.page_logo a img{
    height: 50px;
}
.header_area_inn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.button_right a {
    background: linear-gradient(90deg, #FE0002, #000);
    width: 150px;
    display: block;
    height: 48px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
}
.button_right a:hover {
    text-decoration: none;
    color: #fff;
}

/*banenr css start*/
@media (min-width: 992px) {
  .slider, .slide {
    height: 80vh;
  }
}

.slide {
  position: relative;
  transition: 1s;
}
.slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.slide .slide__img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  transition: all 1s ease;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}
.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide .slide__content--headings {
  color: #FFF;
}
.slide .slide__content--headings h2 {
  font-size: 3.1rem;
    margin: 10px 0;
    font-family: 'Lato', sans-serif;
}
.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.slide .slide__content--headings .top-title {
      font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 12px;
    font-weight: 400;
}
}
.slide .slide__content--headings .title {
  font-size: 3.5rem;
}
.slide .slide__content--headings .button-custom {
  text-decoration: none;
    color: #333;
    padding: 5px 15px;
        font-size: 20px;
    margin-top: 15px;
}

.slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
  transition: 1s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
  opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}
.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}
.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
  opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}
.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
  transition: 1s;
}

.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}
.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.slick-nav i:before, .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.slick-nav i:before {
  transform: rotate(-40deg);
}
.slick-nav i:after {
  transform: rotate(40deg);
}
.slick-nav:before, .slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
          animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
          animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
          animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
          animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@-webkit-keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@-webkit-keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@-webkit-keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

/*banner css ned*/

/*about section css start here*/
/*.about_info {
    padding: 15% 0;
}*/
.about_main {
          padding: 55px 0px 35px;
}
/*.about_info h6 {
        font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fb0102;
}*/
.about_info h2 {
        font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fb0102;
}
.about_info h5 {
    font-size: 32px;
    font-weight: 700;
/*    padding-bottom: 15px;*/
 padding-bottom: 5px;
    padding-top: 4px;
}

.about_info p {
    font-size: 14px;
    color: #7a7777;
}
.aboutleftimg1 {
    width: 90%;
    position: relative;
    height: 360px;
    border-radius: 6px;
        box-shadow: -3px -1px 17px 4px #fa000229;
}
.aboutleftimg2 {
    width: 60%;
    position: absolute;
    border-radius: 6px;
    box-shadow: -3px -1px 5px 0px #0d0d0d;
    left: 200px;
    height: 280px;
    top: 150px;
}
.downlaodapp_btn {
    background: linear-gradient(90deg, #FE0002, #000);
    width: 190px;
    display: block;
    height: 48px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
}
.downlaodapp_btn:hover{
    color: #fff;
}
/*about section css end here*/

/*download app section css*/
.downalod_appwrap {
   position: relative;
    background: #ce00000d;
    padding: 30px 0;
}

img.downlaodapp_rightimg {
    width: 750px;
    position: absolute;
    top: 0;
    right: 0;
}





.downalod_appwrap {
    position: relative;
    background: #ce00000d;
    padding: 30px 0;
}

.download_secinfo h2 {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fb0102;
}
.download_secinfo h5 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 15px;
    padding-top: 4px;
    width: 90%;
}
.download_secinfo p {
    color: #7a7777;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    width: 81%;
    color: #7a7777;
    margin-bottom: 4px;
}
.download_secinfo p:first-child {
    font-size: 15px;
    color: #7a7777;
    padding-bottom: 15px;
}
.downalodappprtn_btn span {
    background: #000;
    padding: 10px 25px;
    border-radius: 6px 0 0 6px;
    color: #fff;
    text-align: center;
    /* height: 25px; */
}

.downalodappprtn_btn svg {
    background: #fe0001;
    height: 44px;
    padding: 11px;
    width: 33px;
    border-radius: 0px 6px 6px 0;
    fill: #fff;
}


.downalodappprtn_btn {
    display: flex;
    /* justify-content: center; */
    flex-direction: row;
    margin-top: 10px;
}
/*download app section css*/

/*service section*/
.page_spcr{
    padding: 50px 0;
}
.service_info h2 {
        font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fb0102;
}
.service_info h4 {
            font-size: 32px;
    font-weight: 700;
    padding-bottom: 53px;
    padding-top: 4px;
}
.service_info {
    text-align: center;
}
.service_box img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
}

.service_box {
    border: 4px solid #fdf2f2;
    background: #fdf2f2;
    box-shadow: -1px -1px 20px #fe00012e;
    border-radius: 6px;
 transition: all .6s ease-out;
 height: 510px;
 border-bottom: 4px solid #fe0001;
}
.servicebx_inrinfo {
      padding: 20px;
/*    border-bottom: 4px solid #fe0001;*/
text-align: center;
}

.servicebx_inrinfo h2 {
       font-size: 18px;
    color: #000;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.servicebx_inrinfo p {
    font-size: 14px;
    line-height: 20px;
    color: #7a7777;
}
.service_box:hover{
border-bottom: 4px solid #fe0001;
    border-radius: 18px;
    transition: all .4s ease-in-out;
      
    
}
.service_box:hover{
   box-shadow: -1px -1px 20px #fcacac;
/*         transition: all .4s ease-out;*/
}

/*service section*/

/*downloa app second*/
section.download_scndwrp {
    position: relative;
    padding: 50px 0;
    background: #fdf2f2;
    height: 200px;
}

img.download_pstnimg1 {
    position: absolute;
    height: 420px;
    left: 0;
    transform: rotate(45deg);
    top: 75px;
}

img.download_pstnimg2 {
    position: absolute;
    height: 420px;
    right: 0;
     transform: rotate(45deg);
    bottom: 75px;
}
section.download_scndwrp {
    height: 400px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}.downloadapp_dninfo {
    padding: 0% 0;
}
.downloadapp_dninfo h2 {
    font-size: 34px;
    color: #000;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.downloadapp_dninfo p {
    font-size: 16px;
    padding-top: 15px;
    color: #fff;
}
.dwnloadbutton_right a {
    background: linear-gradient(90deg, #FE0002, #000);
    width: 300px;
    display: block;
    height: 48px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
}.dwnloadbutton_right {
    width: 100%;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*downlaod app second*/

/*footer css*/
img.footer_logo {
    height: 60px;
    margin: auto;
    display: table;
}

footer.page_footer {
    padding: 50px 0 0;
}

.footer_top {
    padding-top: 35px;
    display: flex;
    flex-direction: row;
    justify-content: center;
        padding-bottom: 35px;
}

.footer_leftinfo {
    width: 370px;
    padding: 0 35px;
    border-right: 1px solid #d4d4d4;
    text-align: center;
}

.footer_leftinfo:last-child {
    border: none;
}

.footer_leftinfo h2 {
    font-size: 22px;
    color: #f90002;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer_leftinfo p a{
    font-size: 15px;
    font-size: 14px;
    line-height: 20px;
    color: #7a7777;
}

ul.social_wrap li {
    border: 1px solid #f60001;
    border-radius: 50px;
    margin: 0px 20px;
    height: 35px;
    width: 35px;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.social_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*bottom footer css*/
.footer_bottom {
    background: #000;
   
}

p.copy_wr8 {
    text-align: center;
    margin-bottom: 5px;
}p.prent a {
    color: #fb0102;
        
}
p.prent a:hover {
    text-decoration: none;
}
p.prent {
   text-align: center;
   margin-bottom: 0;
}

.footer_btminr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    color: #fff;
}
.footer_top p {
    margin-bottom: 0;
}
.plicy_wrap li a{
     font-size: 15px;
    font-size: 14px;
    line-height: 20px;
    color: #7a7777;
}
ul.social_wrap li a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_wrap {
    margin: 50px 0;
}
/*footer css*/

/*terms & condition page css start here*/
.terms_info p strong {
    color: #000;
}
.terms_info p a {
    color: #000;
}
section.termscon_pagewrap {
    background: #fdf2f2;
    padding: 50px 0;
}
.terms_info h2 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
}
.terms_info p {
    font-size: 16px;
    color: #7a7777;
}
.terms_info h6 {
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
    font-size: 17px;
}
.terms_info ul li {
    list-style: disc;
    margin-left: 45px;
}
/*terms & condition page css end here*/



/*responsive css start here*/
@media only screen and (max-width: 800px) {
    .about_info {
    margin-top: 70px;
}
  .page_logo a img {
    height: 35px;
}
.button_right a {
    width: 132px;
    height: 38px;
}
.slide .slide__content--headings h2 {
    font-size: 16px;
margin: 0;
}
.slide .slide__content--headings .top-title {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 0;
}
.slide .slide__content--headings .button-custom {
    padding: 4px 8px;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 500;
}
.page_spcr {
    padding: 30px 0;
}
.aboutleftimg1 {
    width: 80%;
    position: relative;
    height: 280px;
    
}
.aboutleftimg2 {
    width: 70%;
 
    left: 105px;
    height: 250px;
    top: 70px;
}
/*.about_info {
    padding: 18% 0 0px;
}*/
.about_info h5 {
    padding-bottom: 0;
    font-size: 25px;
}
img.downlaodapp_rightimg {
    width: 100%;
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 0;
}
.download_secinfo h5 {
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 10px;
    padding-top: 4px;
    width: 100%;
}
.download_secinfo {
    text-align: center;
}
.download_secinfo p {
        width: 100%;
    font-size: 14px;
    line-height: 21px;
}
.downalod_appwrap {
    padding: 30px 0 0;
}
.downalodappprtn_btn {
    justify-content: center;
    flex-direction: row;
    margin-bottom: 35px;
}
.service_info h4 {
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 30px;
    padding-top: 4px;
}
.service_info h2 {
    margin-bottom: 0;
}
.service_info h2 {
    margin-bottom: 0;
}
.footer_top {
    flex-direction: column;
    justify-content: center;
    padding-bottom: 35px;
        padding-top: 15px;
}
/*section.download_scndwrp {
    height: 400px;
    width: 100%;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
}*/
section.download_scndwrp {
    height: 580px;
    width: 100%;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.downloadapp_dninfo {
    padding: 0 0;
    text-align: center;
}
.dwnloadbutton_right {
    height: 50px;
}
.downloadapp_dninfo p {
    font-size: 15px;
    padding-top: 5px;
    color: #fff;
}
img.footer_logo {
    height: 50px;
}
ul.plicy_wrap {
    margin-bottom: 0;
}
.footer_leftinfo h2 {
    margin-top: 15px;
    font-size: 20px;
}
/*.footer_leftinfo h2:first-child{
  margin-top: 0;
}*/
footer.page_footer {
    padding: 30px 0 0;
}
.downloadapp_dninfo h2 {
    font-size: 26px;
    letter-spacing: 5px;
}
.service_box {
    margin-bottom: 30px;
    height: 400px;
}
/*.service_box:last-child {
    margin-bottom: 0;
}*/
.service_wrap {
   margin: 30px 0 0;
}
.footer_leftinfo {
    width: 100%;
    padding: 0 35px;
    border-right: none;
    text-align: center;
}
.footer_btminr {
    padding: 10px 0;
}
p.prent {
    font-size: 14px;
}
p.copy_wr8 {
    margin-bottom: 0;
    font-size: 14px;
}
.terms_info p {
    font-size: 15px;
    line-height: 19px;
}

.terms_info h2 {
    text-transform: uppercase;
    font-size: 21px;
}
section.termscon_pagewrap {
    padding: 30px 0;
}
.terms_info ul li {
    list-style: disc;
    margin-left: 22px;
}
/*.slide .slide__content--headings {
    color: #FFF;
    margin-left: 15PX;
}*/
.slick-nav {
    width: 34px;
    height: 34px;
    position: absolute;
    cursor: pointer;
    top: calc(50% - -28%);
}
}

@media only screen and (max-width: 767px) {
.aboutleftimg2 {
    width: 75%;
    left: 220px;
    height: 300px;
    top: 120px;
}
.aboutleftimg1 {
    width: 92%;
    position: relative;
    height: 350px;
}

}
@media only screen and (max-width: 414px) {
.aboutleftimg1 {
    width: 80%;
    position: relative;
    height: 280px;
    
}
.aboutleftimg2 {
    width: 70%;
 
    left: 110px;
    height: 250px;
    top: 70px;
}
}

@media only screen and (max-width: 360px) {
.aboutleftimg2 {
    width: 63%;
    left: 110px;
    height: 220px;
    top: 100px;
}
section.download_scndwrp {
    height: 650px;
   
}
}