/*-----------------------------------------------------------------------------------

[Table of contents]

1. Font
2. Css Variable for colors
3. Common CSS
4. Preloader CSS
5. Header - Main Navigation ( section )
6. Hero Slider ( section )
7. Trusted Logo Slider ( section )
8. Features ( section )
9. About us ( section )
10. Modern UI ( section )
11. How it works ( section )
12. Testimonials ( section )
13. Pricing ( section )
14. Faq ( section )
15. Interface ( section )
16. Download app ( section )
17. Latest story ( section )
18. Newsletter ( section )
19. Footer ( section )
20. Animation CSS ( section )


-----------------------------------------------------------------------------------*/

/* --------Font--------------- */
/* poppins-300 - latin */


/* -----------Css-variable------ */


/* ------Common-Css------------- */
.site-main {
    padding: 0;
    margin: 0;
  }
html{scroll-behavior:smooth}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Urbanist'!important;
    line-height:30px;
     color: #4B4747;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
h1, h2, h3, h4, h5, h6{ font-family:'Urbanist'!important;}
.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--body-text-purple);
}

a:hover {
    text-decoration: none;
    color: var(--body-text-purple);
}

ul,
li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

@media screen and (min-width:1500px) {
    .container {
        max-width:1410px;
    }
}

.section_title {
    text-align: center;
}

/* section heading h2 */
.section_title h2 {
    color: #4B4747;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}


.row_am {
    padding:110px 0;
}

/* purple button */
.puprple_btn {
    background-color: var(--purple);
    color: var(--text-white);
    border-radius: 50px;
    padding: 10px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
}

.puprple_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-white);
    border-radius: 50px;
    transition: .6s all;
    z-index: -1;
}

.puprple_btn:hover::before {
    width: 100%;
}

.puprple_btn:hover {
    color: var(--purple);
}

/* white button */
.white_btn {
    padding: 10px 45px;
    border: 1px solid var(--purple);
    color: var(--purple);
    border-radius: 50px;
    background-color: var(--bg-white);
    font-weight: 700;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
}

.white_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-purple);
    border-radius: 50px;
    transition: .6s all;
    z-index: -1;
}

.white_btn:hover::before {
    width: 110%;
}

.white_btn:hover {
    color: var(--text-white);
}

.highlited_block .white_btn:hover {
    border-color: var(--bg-white);
}

/* slider controls */
.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.owl-carousel .owl-dots button {
    display: block;
    width: 15px;
    height: 15px;
    background-color:rgba(217, 217, 217, 0.5);
    border-radius: 15px;
    margin: 0 5px;
}

.owl-carousel .owl-dots button.active {
    background-color: #FFFFFF;
}

/* -------------Preloader-Css-Start-------------- */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--bg-purple);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--body-text-purple);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--dark-purple);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}




/* -----------Header-Css-Start------------------- */
/* header wraper */
header {
    position: absolute;
    width: 100%;
    z-index: 99999;
    transition: .4s all;
}

header.fix_style {
    position: fixed;
    top: 0;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px 0;
    transition: none;
    opacity: 0;
    pointer-events: none;
}

header.fixed {
   pointer-events: all;
   opacity: 1;
   transition: .4s all;
}

header.fixed .navbar {
    padding: 0;
}

/* navigation bar */
.navbar-nav{flex-direction: row;}
.navbar {
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;margin: 0 auto;
}
.navbar-expand-lg .navbar-collapse{display: flex !important;justify-content: center;}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 5px 20px;
    color:#4B4747;
font-size: 20px;
font-style: normal;
font-weight: 600;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #E85B5B;
}

.nav-link.active-highlight.tour-details-section-active{  color: #E85B5B;}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    color: var(--purple);
    background-color: var(--bg-white);
    font-size: 16px;
    padding: 9px 40px;
    border-radius: 25px;
    margin-left: 20px;
    position: relative;
    border: 1px solid var(--bg-purple);
}


.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before, 
.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    z-index: -1;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
    animation: pulse-blue-medium-sm 3.5s infinite
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after  {
    animation: pulse-blue-small-sm 3.5s infinite
}

/* .navbar-brand img {
    width: 150px;
} */

/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px 10px 0 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover {
    background-color: var(--bg-white);
    box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
    position: relative;
    right: 15px;
    color: var(--text-white);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
    position: absolute;
    top: 100%;
    background-color: var(--bg-white);
    border-radius: 0 10px 10px 10px;
    min-width: 210px;
    max-width: 230px;
    margin-top: -10px;
    transition: .4s all;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
    margin-left: 0;
    padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
    font-size: 15px;
    position: relative;
    transition: .4s all;
    line-height: 35px;
    font-weight: 500;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border: 2px solid var(--purple);
    border-radius: 10px;
    margin-right: 5px;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
    padding-left: 15px;
    color: var(--purple);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover>a,
.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn {
    color: var(--purple);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
    opacity: 1;
    pointer-events: all;
    margin-top: -1px;
}
.xis-dia-main-navigation li.btn-gta{ margin: 0 0 0 200px;}
.xis-dia-main-navigation li.btn-gta a.nav-link {
    border-radius: 4px;
background: #E85B5B;
color: #FFF;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;padding: 16px 20px;
}
.xis-dia-main-navigation li.btn-gta a.nav-link:hover{background: #fff;color: #E85B5B;}

/* navigation toggle menu */
.toggle-wrap {
    padding: 10px;
    position: relative;
    cursor: pointer;
    
    /*disable selection*/
    -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
  }

  .toggle-bar,
  .toggle-bar::before,
  .toggle-bar::after,
  .toggle-wrap.active .toggle-bar,
  .toggle-wrap.active .toggle-bar::before,
  .toggle-wrap.active .toggle-bar::after {
      -webkit-transition: all .2s ease-in-out;
      -moz-transition: all .2s ease-in-out;
      -o-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out;
  }

  .toggle-bar {
      width: 25px;
      margin: 10px 0;
      position: relative;
      border-top: 4px solid var(--bg-white);
      display: block;
  }

  .toggle-bar::before,
  .toggle-bar::after {
      content: "";
      display: block;
      background: var(--bg-white);
      height: 4px;
      width: 30px;
      position: absolute;
      top: -12px;
      right: 0px;
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -ms-transform-origin: 13%;
      -webkit-transform-origin: 13%;
      transform-origin: 13%;
  }

  .toggle-bar::after {
    top: 4px;
  }

  .toggle-wrap.active .toggle-bar {
    border-top: 6px solid transparent;
  }

  .toggle-wrap.active .toggle-bar::before {
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
  }

  .toggle-wrap.active .toggle-bar::after {
      -ms-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
  }


/* ---------Hero-banner-Css-Start------------------ */
/* hero banner wraper */
.banner_section {
    padding-top: 190px;
    position: relative;
    background: #FAEDCD;
}

.banner_section .container {
    position: relative;z-index: 99;
}

/* wave backgound after banner */
.banner_section::after {
    content: "";
    display: block;
    background-image: url(../images/headerbg.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height:  100%;
    background-position: center center;
  position: absolute; top:0;z-index: 0;
}

.banner_section .row {
    align-items: center;
}

/* hero banner text */
.banner_section .banner_text {
 margin:0 0 0; 
}

/* hero banner heading h1 */
.banner_section .banner_text h1 {
    font-size: 50px;
    color:#4B4747;
    letter-spacing:0px;
    font-weight: 700;
}
.banner_section .banner_text p {
    color:#4B4747; margin:20px 0; 
    line-height: 28px;

}
.banner-btn-group{display: flex;flex-direction: row;}
.banner-btn-group a.btn-primary{
    color: #FFF;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
border-radius: 4px;
background: #E85B5B;padding: 16px 20px;margin: 0 20px 0 0;
}
.banner-btn-group a.btn-primary:hover{background: #FFF;color: #E85B5B;}
.banner-btn-group a.btn-secondary{
    border-radius: 4px;
    background: #FFF;
    padding:10px 20px;
    color: #E85B5B;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.banner-btn-group a.btn-secondary svg{margin: 0 10px 0 0;}
.banner-btn-group a.btn-secondary:hover svg path{fill: #fff;}

.banner-btn-group a.btn-secondary:hover{background: #E85B5B;color: #fff; cursor: pointer;}
/* hero banner button */
.banner_section .app_btn {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

/* hero banner list */
.banner_section .app_btn li a {
    display: block;
    padding: 12px 30px;
    background-color: var(--bg-white);
    border: 2px solid var(--purple);
    position: relative;
    border-radius: 12px;
    transition: .4s all;
}

.banner_section .app_btn li:last-child {
    margin-left: 25px;
}

.banner_section .app_btn li a img {
    transition: .4s all;
}

.banner_section .app_btn li a .white_img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.banner_section .app_btn li a:hover {
    background-color: var(--purple);
    border: 2px solid var(--bg-white);
}

.banner_section .app_btn li a:hover .blue_img {
    opacity: 0;
}

.banner_section .app_btn li a:hover .white_img {
    opacity: 1;
}

/* hero banner users */
.banner_section .used_app {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.banner_section .used_app ul {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.banner_section .used_app ul li:not(:first-child) {
    margin-left: -15px;
}

.banner_section .used_app p {
    font-size: 15px;
    line-height: 19px;
    margin-bottom: 0;
    color: var(--text-white);
}

/* hero banner images */
.banner_section .banner_image {
    display: flex;
    position: relative;
    width: 100%;
    margin-top: 60px;
}

.banner_section .banner_image img{
    /* max-width: 100%;*/
} 


.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
}


/* hero banner shape animation */
.banner_section .banner_shape1, .banner_shape2, .banner_shape3 { 
    position: absolute; }

.banner_section .banner_shape1 {
    top: 200px;
    left: -15%;
    animation: mymove 10s infinite;
}

.banner_section .banner_shape2 {
    top: 100px;
    right: -10%;
    animation: mymove 5s infinite;
}

.banner_section .banner_shape3 {
    top: 400px;
    right: -20%;
    animation: mymove 3s infinite;
}


@keyframes mymove {
  50% {transform: rotate(180deg);}
}




/* ----------Feature-Detail-Section-start------ */
.features_section .section_title{max-width: 930px; margin: 0 auto 50px;}
/* features section wraper */
.features_section .feature_detail {
    border-radius: 0px;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 120px;
    padding-top: 60px;
    padding-bottom: 20px;
}

/* features section image */
.features_section .feature_detail .feature_img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -75px;display: inline-flex;
}

.features_section .feature_detail .feature_img img {
    max-width: 100%;
}

/* features section box */
.feature_img_mob{display: none;}
.features_section .feature_detail .feature_box {
    max-width:330px;
}

.features_section .feature_detail .feature_box .data_block {
    margin-bottom: 100px;
}

.features_section .feature_detail .feature_box .data_block h4 {
    color: #4B4747;
text-align: right;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: normal;margin: 0 0 10px;
}
.features_section .feature_detail .right_data.feature_box .data_block h4{text-align: left;}
.features_section .feature_detail .feature_box .data_block p{color: #4B4747;margin: 0;}

.features_section .feature_detail .left_data {
    text-align: right;
    padding: 0px;
}

.features_section .feature_detail .right_data {
    text-align: left;
    padding:0px;
}

.features_section .feature_detail .left_data .data_block .iconbox {
    margin: 0 0 10px;
}

.features_section .feature_detail .right_data .data_block .iconbox {
    margin: 0 0 10px;
}




/* -----------------About-App-Section-Css-Start------------------ */

/* about us section wraper */
.about_section{background: #E85B5B;padding:50px 0 0 0;}
.about-text{color: #FFF;
font-size: 28px;
font-style: normal;
font-weight: 700;
line-height: 37px;
max-width: 570px;
margin:0 0 0 100px;
}
.about-text img{margin:0 0 20px;}
.about-content{margin:0 0;}
.about_section img{max-width: 100%;}

/* -------------How_It_Works-Section-Css-Start------------------ */

/* how it works wraper */
.how_it_works {background: #FBFAF9;}

.how_it_works .how_it_inner {
    padding: 0;
}
.how_it_works .section_title{max-width: 1000px;margin: 0 auto 50px;}
/* how it works list */
.how_it_works .step_block ul {
    max-width: 1080px;
    margin: 40px auto 0;
    padding: 10px;
}

.how_it_works .step_block ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
}

.how_it_works .step_block ul li::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% + 100px);
    background-color: var(--light-bg);
}

.how_it_works .step_block ul li:first-child::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background-color: var(--light-bg);
    border-radius: 15px;
}

.how_it_works .step_block ul li:first-child::before {
    top: 0;
}

.how_it_works .step_block ul li:last-child::before {
    height: 50%;
    top: 0;
}
.how_it_works .step_block .step_img{background:#E9EDC9;border-radius: 8px;padding: 34px 32px 0;}
.how_it_works .step_block .step_text{margin: 30px 0 0 0;}
.how_it_works .step_block .step_img img{max-width: 100%;}
.how_it_works .step_block ul li .step_text,
.how_it_works .step_block ul li .step_img {
    width: 360px;
    text-align: right;
}

/* how it works image */
.how_it_works .step_block ul li .step_img img {
    max-width: 100%;
}
.how_it_works .step_block ul li .step_img img{border-radius: 5px;}

/* how it works heading h4 */
.how_it_works .step_block .step_text h4 {
    color: #4B4747;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.how_it_works .step_block .step_text p {
color: #4B4747;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 23px;
margin: 0;
}

.how_it_works .step_block ul li .step_text .app_icon {
    margin-bottom: 10px;
}

.how_it_works .step_block ul li .step_text .app_icon a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: var(--light-bg);
    color: var(--text-white);
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    transition: .4s all;
}

.how_it_works .step_block ul li .step_text .app_icon a:hover {
    background-color: var(--purple);
}

.how_it_works .step_block ul li .step_text span {
    font-weight: 600;
}

.how_it_works .step_block ul li .step_text span a {
    color: var(--purple);
    text-decoration: underline;
}

.how_it_works .step_block ul li:nth-child(2) {
    flex-direction: row-reverse;
}

.how_it_works .step_block ul li:nth-child(2) .step_text,
.how_it_works .step_block ul li:nth-child(2) .step_img {
    text-align: left;
}

/* how it works numbers */
.how_it_works .step_block ul li .step_number {
    background-image: url(../images/icon_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* how it works numbers heading h3 */
.how_it_works .step_block ul li .step_number h3 {
    font-size: 30px;
    font-weight: 600;
}

/* how it works video  */
.how_it_works .yt_video {
    max-width: 1170px;
    margin: 0 auto;
    margin-top: -200px;
    position: relative;
    overflow: hidden;
}


.how_it_works .yt_video .thumbnil {
    position: relative;
}

.how_it_works .yt_video .thumbnil img {
    max-width: 100%;
}

.how_it_works .yt_video .thumbnil a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    font-weight: 600;
    z-index: 999;
    cursor: pointer;
}

.how_it_works .yt_video .thumbnil a span {
    display: block;
    font-weight: 700;
    font-size: 30px;
}

.how_it_works .yt_video .thumbnil a .play_btn {
    background-color: rgba(255, 255, 255, 0.1);
    width: 96px;
    height: 96px;
    border-radius: 100px;
    text-align: center;
    margin: 0 auto;
    line-height: 96px;
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.how_it_works .yt_video .thumbnil a .play_btn img {
    width: 50px;
    position: relative;
    z-index: 999;
}

/* how it works video model   */
.modal {
    z-index: 999999;
}

.modal-backdrop.show {
    z-index: 99999;
    opacity: .7;
}

.youtube-video .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    padding: 0 15px;
    height: 100%;
    max-width: 1240px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* 
#video-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
} */

iframe#youtubevideo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.youtube-video .modal-footer {
    border: none;
    text-align: center;
    display: block;
    padding: 0;
}

.youtube-video .modal-content {
    background: none !important;
    border: none;
}

#close-video {
    color: #fff;
    font-size: 39px!important;
    text-align: right;
    background: transparent;
    border: 0;
}

/* video banner shape animation */
.thumbnil .banner_shape1, .banner_shape2, .banner_shape3 { 
    position: absolute; }

.thumbnil .banner_shape1 {
    top: 100px;
    left: 10%;
    animation: mymove 10s infinite;
}

.thumbnil .banner_shape2 {
    bottom: 50px;
    left: 20%;
    animation: mymove 5s infinite;
}

.thumbnil .banner_shape3 {
    top: 40px;
    right: 8%;
    animation: mymove 3s infinite;
}


@keyframes mymove {
  50% {transform: rotate(180deg);}
}


/* ------------Testimonial-Slider-Css-Start------------- */
/* testimonials wraper  */

.testimonial_section{background: #FBFAF9;}
.review-sec-top{display: flex;flex-direction: column;margin: 0 0 50px;}
.google-p{color: #4B4747;
text-align: left;
font-size: 30px;
font-style: normal;
font-weight: 400;
line-height: normal;}
.google-p img{margin: 0 5px 0 0;}
.review-sec-top .review-no{display: flex;flex-direction: row;margin:10px 0 0;}
.review-sec-top .reting-no{color: #4B4747;
text-align: center;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal;}
.review-sec-top .review-text{color: #4B4747;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;}
.review-sec-top .rating{margin: 0 20px;display: flex;
    flex-direction: row;
    align-items: center;}
.review-sec-top .rating span {
    color: #FC9400;
    font-size: 24px;margin: 0 2px;
}
.review-sec-top .rating span:nth-child(4), .review-sec-top .rating span:nth-child(5){ color: #EEEEEE;}
.btn-wr-sec{margin: 20px 0 0 0;display: flex;}
.btn-wr{border-radius: 4px;
    background: #E85B5B;padding: 16px 20px;color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;width: 170px;
}
.btn-wr:hover{color: #E85B5B;
    background: #fff;}
#testimonial_slider {
    margin: 0 auto;
}
#testimonial_slider .testimonial_slide_box {
    padding: 10px;
    margin: 0 auto;
    display: flex;
/* width: 330px; */
padding: 20px;
flex-direction: column;
align-items: flex-start;
background: #fff;
}
#testimonial_slider .testimonial_slide_box .testimonial_img  {
    display: flex; flex-direction: row;align-items: center;}
    #testimonial_slider .testimonial_slide_box .testimonial_img figure{margin: 0;}
#testimonial_slider .testimonial_slide_box .testimonial_img .client-des{margin: 0 0 0 10px;text-align: left;}
#testimonial_slider .testimonial_slide_box .testimonial_img .client-des h4{color: #4B4747;
    text-align: left;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;margin: 0 0 10px;}
#testimonial_slider .testimonial_slide_box .testimonial_img .client-des p{color: #4B4747;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;margin: 0;}
/* testimonials rating  */
#testimonial_slider .rating{margin: 20px 0;}
#testimonial_slider .rating span {
    color: #FC9400;
    font-size: 24px;
}
#testimonial_slider .rating span:nth-child(4), #testimonial_slider .rating span:nth-child(5){ color: #EEEEEE;}
#testimonial_slider .testimonial_slide_box .review {
 margin: 0;
 color: #4B4747;
font-size: 26px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
#testimonial_slider .testimonial_slide_box .gp-img{margin: 20px 0 0 0;}

/* testimonials image  */
#testimonial_slider .testimonial_slide_box .testimonial_img img {
    margin: 0 auto;
}

/* testimonials heading h3 */
#testimonial_slider .testimonial_slide_box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 10px;
}

#testimonial_slider .testimonial_slide_box .designation {
    font-size: 15px;
}

/* testimonials total review */
#testimonial_slider .total_review {
    text-align: center;
    margin-top: 60px;
}

#testimonial_slider .total_review .rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* testimonials paragraph */
#testimonial_slider .total_review .rating p {
    margin-bottom: 0;
    font-weight: 600;
    margin-left: 5px;
    color: var(--dark-purple);
}

/* testimonials heading */
#testimonial_slider .total_review h3 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--dark-purple);
}

#testimonial_slider .total_review a {
    color: var(--purple);
    font-weight: 700;
}

#testimonial_slider .avtar_faces {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
}

#testimonial_slider .avtar_faces img {
    max-width: 100%;
}

#testimonial_slider1{background: #E85B5B;}
#testimonial_slider1 .item{padding:40px;}
#testimonial_slider1 .item .testimonial_slide_box{padding:20px;}
#testimonial_slider1 .testimonial_slide_box .testimonial_img {
    display: flex;
    flex-direction: row;
    align-items: center;margin: 20px 0 0 0;width: 100%;
  }

  #testimonial_slider1 .testimonial_slide_box {
    padding: 10px;
    margin: 0 auto;
    display: flex;
/* width: 330px; */
padding: 20px;
flex-direction: column;
align-items: flex-start;
background: #fff;
}
#testimonial_slider1 .testimonial_slide_box .testimonial_img  {
    display: flex; flex-direction: row;align-items: center;}
    #testimonial_slider1 .testimonial_slide_box .testimonial_img figure{margin: 0;}
#testimonial_slider1 .testimonial_slide_box .testimonial_img .client-des{margin: 0 0 0 10px;text-align: left;}
#testimonial_slider1 .testimonial_slide_box .testimonial_img .client-des h4{color: #4B4747;
    text-align: left;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;margin: 0 0 10px;}
#testimonial_slider1 .testimonial_slide_box .testimonial_img .client-des p{color: #4B4747;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;margin: 0;}
    #testimonial_slider1.owl-carousel .owl-dots{margin: 12px 0 0 0;
        position: relative;
        top: -23px;}
    #testimonial_slider1.owl-carousel .owl-dots button {
        display: block;
        width: 40px;
        height:6px;}


/* -------------FAQ-Section-Css-Start----------------- */

/* faq wraper */
.faq_section {background:#FED1BA;}
.faq_section .faq_panel {
    margin:0px;
    text-align: left;
}

/* faq box */
.faq_section .faq_panel .card {
    border:0;
    border-bottom: 1px solid #FFE4D7;
    margin:0 0 20px;
    border-radius:0px;
    box-shadow:none;
    padding:0 0 20px 0;
    background-color:transparent;
}

.faq_section .faq_panel .card:last-child {
    margin-bottom: 0;
}

.faq_section .faq_panel .card-header {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.faq_section .faq_panel .card-header .btn {
    padding: 0;
    color: #4B4747;
font-size: 26px;
font-style: normal;
font-weight: 700;
line-height: normal;
display: flex;
flex-direction: row;background: transparent;
}

.faq_section .faq_panel .card-header .btn.active {
    color: #4B4747;
}

.faq_panel .accordion button,
.faq_panel .accordion button:hover,
.faq_panel .accordion button:focus {
    text-decoration: none;
}

.faq_section .faq_panel .card-header .icon-faq {
    width:24px; height: 24px;display: inline-flex;position: relative;margin: 0 10px 0 0;
}

.faq_section .faq_panel .card-header .icon-faq.icon-plus::before{background: url(../images/plus.svg) no-repeat 0 0;
    content: "";
    position: absolute;
    left: 0;
    top:3px;
    width:24px;
    height:24px;
    border-radius: 0;
    transition: .6s all;
    z-index:0;}
.faq_section .faq_panel .card-header .icon-faq.icon-minus::before{background: url(../images/minus.svg) no-repeat 0 0;content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width:24px;
    height:24px;
    border-radius: 0;
    transition: .6s all;
    z-index:0;}
    .faq_section .faq_panel .card-header .btn span{display: inline-flex;text-align: left;}
/* faq heading h2 */
.faq_section .faq_panel .card-header h2 {
   margin: 0 0 10px;
}

/* faq paragraph */
.faq_section .faq_panel .card-body {
    padding:0 36px;
}
.faq-link{display: flex;margin: 50px 0 0 0;}
.more{margin: 50px 0 0 0;}
.faq-link a, .faq-link button, .more{
    color: #E85B5B !important;
    background: transparent;
    text-decoration: underline;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    background-color: transparent !important;
    padding: 0;
    border-bottom: 0 !important;
    padding-top: 39px;
    text-decoration: none;
    }
    .faq-link a:hover, .faq-link button:hover{color: #4B4747 !important;}
    .faq-link a svg{margin: 0 0 0 10px;}
    .faq-link a:hover svg path{stroke:#E85B5B;}
    .faq-link button span{background: url(../images/black-arrow.png) no-repeat 0 0;width: 17px;height:17px;display: inline-block;
        margin: 5px 0 0 10px;vertical-align: top;}
    .faq-link button:hover span{background: url(../images/red-arrow.png) no-repeat 0 0;}

    .faq_section .wpb_af_area > li {background-color: transparent;border-bottom: 1px solid #FFE4D7;margin-left: 23px!important;margin-top: 20px !important;
    padding-bottom: 20px;}
    .faq_section .wpb_af_area li > a, .faq_section .wpb_af_area li > a:focus, .faq_section .wpb_af_area li > a:visited {
        color: #4B4747;
        font-size: 26px;
      }
      .faq_section .wpb_af_flat_theme .wpb_af_area li > a > span.wpb-submenu-indicator {
        float: none;
        margin: 10px 13px 22px -31px;
        color: #e85b5b;
        }
      .faq_section .wpb_af_flat_theme .wpb_af_area li.wpb-submenu-indicator-minus > a > span.wpb-submenu-indicator {
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
      }
      .faq_section .wpb_af_area > li > ul p {
            line-height: 25px;
        }
      .more{color:red; cursor:pointer;}
/* -----------Download_App_Section-Start------------------ */

/* download app wraper */
.free_app_section {
    position: relative;
}
.free_app_section .container .free_app_inner {
    border-radius:0px;
    padding:0px;
    position: relative;
}
.free_app_section .container .free_app_inner .row {
    align-items: center;
}
.free_app_section .container .free_app_inner .free_text .section_title {
    text-align: left;
}
/* download app heading h2 */
.free_app_section .container .free_app_inner .free_text .section_title p {
    color: #4B4747;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    margin: 0;
}
.free_app_section .container .free_app_inner .free_text .app_btn {
    display: flex;
    align-items: center;margin:30px 0 0 0;
}
.free_app_section .container .free_app_inner .free_text .app_btn li{margin: 0 30px 0 0;}
.free_app_section .container .free_app_inner .free_text .app_btn li a {
    display: block;
    padding:0px;
    border:0px;
    position: relative;
    border-radius: 15px;
    transition: .4s all;
}
.free_app_section .container .free_app_inner .free_text .app_btn li a:hover {
    -webkit-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5);
-moz-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5);
box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5);
}
.free_app_section .container .free_app_inner .free_text .app_btn li:last-child {
    margin-right: 0;
}
.free_app_section .container .free_app_inner .free_img {
    display: flex;
    align-items: center;
}
.free_app_section .container .free_app_inner .free_img img{max-width: 72%;}
/* ---------------Latest_Story-Css-Start------------- */


/* ------Footer-Css-Start-------------- */
/* footer wraper */
footer {
    position: relative;
}

footer .top_footer {
    background:#fff;
    border-top: 1px solid #EBEBEB;

    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

footer .top_footer .container{
    position: relative;
}


/* footer logo */
footer .top_footer .logo {
    margin-bottom:0px;
}

footer .top_footer .logo img {
    width: 200px; 
}



/* footer social media icon */
footer .top_footer .social-media {
    display: flex;flex-direction: row;margin: 20px 0 0 0;
}

/* footer link list */
footer .top_footer .social-media a {
    display: inline-flex;margin:0 10px 0 0;
}
footer .top_footer .social-media a:last-child {
   margin:0;
}

footer .top_footer .social-media a:hover {}
footer .top_footer .social-media a:hover svg path{fill: #4B4747;}


/* footer heading and text colors variable */

footer p{color: #4B4747;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;margin:0;}



footer .links{display: flex;flex-direction: row;justify-content: center;}
footer .links ul{display: flex;flex-direction: column;margin:0 50px;}
footer .links ul li{display: inline-block; margin:0 0 30px 0;}
footer .links ul li:last-child{margin: 0;}
footer .links ul li a {
    color: #4B4747;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;font-family:'Urbanist'!important;
}
footer .links ul li a:hover{color: #E85B5B;}

@keyframes mymove {
  50% {transform: rotate(180deg);}
}



.modal-header .button.close {background: #E85B5B;}
.othet-link{text-align: center;margin:50px 0 0 0;}
.othet-link a{color: #4B4747;font-family:'Urbanist'!important;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;}
    .othet-link a:hover{color: #E85B5B;}
    .othet-link span{color: #4B4747;margin: 0 10px;}

    #text{
        display:none;
        }


        .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button){border:0;outline: 0;background: transparent;text-decoration:none;}
        .xis-dia-main-navigation .nav-link:focus-visible{border: 0;outline: 0;}
        .site-logo {
            margin: 0;
          }