@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* -----------Css-variable------ */

:root {
    --main-bg: #F3F5FF;
    --dark-black: #181a22;
    --gray: #afafaf;
    --black: #000000;
    --bg-white: #ffffff;
    --text-white: #fff;
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Nunito', sans-serif;
    color: var(--black);
    background-color: var(--main-bg);
}

.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--black);
    transition: .4s all;
}

a:hover {
    text-decoration: none;
    color: var(--primery);
}

ul,
li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus {
    outline: none;
    box-shadow: none;
}

h3 {
    font-size: 20px;
    color: var(--black);
    font-weight: 700;
}

.white_text p,
.white_text span,
.white_text h3 {
    color: var(--text-white);
}

@media screen and (min-width:1200px) {
    .container {
        max-width: 1170px;
    }
}

.section_title {
    text-align: center;
}

/* section heading h2 */
.section_title h2 {
    font-size: 55px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -2px;
}

.section_title.white_text h2,
.section_title.white_text p {
    color: var(--bg-white);
}

.title_badge {
    color: var(--primery);
    display: inline-block;
    padding: 2px 20px;
    border-radius: 100px;
    background-color: var(--bg-white);
    margin-bottom: 10px;
}

.f3 {
    color: #FF7F63!important
}

.f2 {
    color: #9171EF!important
}

.f1 {
    color: #02B5AF!important
}

.row_am {
    padding: 50px 0;
}


/* --------Object-Moving-Animation-Css-Start----- */
.moving_animation {
    animation: moving_object 6s infinite linear;
}


@keyframes moving_object {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

/* -----------Header-Css-Start------------------- */
/* header wraper */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 99999;
    transition: .4s all;
    backdrop-filter: blur(5px);
    background-color: var(--main-bg);
    border-bottom: 1px solid #cfcbc4;
}

/* navigation bar */
.navbar {
    padding: 0;
}

.navbar-logo-text {
    font-size: 32px;
    font-weight: 800;
    color: #7962DD;
    

}
.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 12px;
    font-weight: 600;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--primery);
}

.navbar-brand img {
    width: 80px;
}

/* navigation bar dropdown */

/* 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 {
    -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(--dark-black);
    display: block;
}

.toggle-bar::before,
.toggle-bar::after {
    content: "";
    display: block;
    background: var(--dark-black);
    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;
}

/* hero slider wraper */
.banner_section {
    margin-top: 70px;
    position: relative;
}

.banner_section .container {
    position: relative;
}

.banner_section .row {
    align-items: center;
}

/* hero slider text */
.banner_section .banner_text {
    margin-top: -50px;
}

/* hero slider heading h1 */
.banner_section .banner_text h1 {
    font-size: 50px;
    color: var(--dark-black);
    letter-spacing: -1.5px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner_section .banner_text h1 span {
    color: var(--primery);
}


.banner_section .app_btn {
    display: flex;
    align-items: center;
}


.banner_section .app_btn li a {
    display: block;
    padding: 15px 35px;
    background-color: var(--black);
    border: none;
    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;
    height: 36px;
}

.banner_section .banner_slider {
    display: flex;
    position: relative;
}

.banner_section .banner_slider .left_icon {
    position: absolute;
    left: 70px;
    bottom: 150px;
    z-index: 9999;
}

.banner_section .banner_slider .right_icon {
    position: absolute;
    right: 80px;
    top: -10px;
}

/* hero slider mobile frame */
.banner_section .banner_slider .slider_frame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 280px;
}
/*slides */
.banner_section .banner_slider #frmae_slider {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 6px;
    
    width: 280px;
    overflow: hidden;
    border-radius: 40px;
}

.banner_section .banner_slider #frmae_slider::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    background-color: #fff;
    width: 100%;
    height: 90.5%;
    border-radius: 23px;
}

.banner_section .banner_slider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%) rotate(-8deg);
    width: 380px;
    height: 380px;
    background-color: var(--primery);
    z-index: -5;
    border-radius: 30px;
}

.task_app_section {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.task_app_section .task_block {
    max-width: 1370px;
    margin: 0 auto;
    padding: 60px 150px;
    position: sticky;
    z-index: 99;
    border-radius: 30px;
    overflow: hidden;
}
.feature1 {
    
  background-image: url('../images/green-pattern.png'); 
  background-repeat: repeat; 
  background-size: auto; 
  background-position: top left; 
}

.feature2 {
    
    background-image: url('../images/purple-pattern.png'); 
    background-repeat: repeat; 
    background-size: auto;
    background-position: top left; 
  }

  .feature3 {
    
    background-image: url('../images/orange-pattern.png'); 
    background-repeat: repeat; 
    background-size: auto; 
    background-position: top left; 
  }

.task_app_section .task_block .row {
    align-items: center;
}

/* Task App section wraper */
.task_app_section .task_img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Task App section images*/
.task_app_section .task_img img {
    max-width: 100%;
    border-radius: 20px;
}

.frame_feature_img {
    width: 270px;
}


.task_app_section .task_img .screen_img {
    width: 232px; 
    margin-left: -115px;
    margin-top: 50px;
}

.task_app_section .task_text .section_title {
    text-align: left;
}

.task_app_section .task_text .section_title h2 {
    margin-bottom: 15px;
    font-size: 35px;
}

footer {
    background-color: var(--dark-black);
    padding: 100px 0;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 50px;
}

.logo-footer {
    width: 160px;
    height: auto;
}


footer .contact_info {
    display: flex;
    margin-top: 10px;
}

footer .contact_info li a {
    color: var(--text-white);
}

footer .download_side {
    text-align: right;
}

footer .download_side .app_btn {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 40px;
}

footer .download_side .app_btn li a {
    display: block;
    padding: 15px 35px;
    background-color: var(--black);
    border: none;
    position: relative;
    border-radius: 12px;
    transition: .4s all;
}

footer .download_side .app_btn li:last-child {
    margin-left: 25px;
}

footer .download_side .app_btn li a img {
    transition: .4s all;
    height: 36px;
}

.footer_bottom {
    max-width: 1370px;
    margin: 0 auto;
    background-color: #111218;
    border-radius: 20px;
    margin-top: 40px;
}

.footer_bottom .ft_inner {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.footer_bottom .ft_inner p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
}

.footer_bottom .ft_inner .links {
    display: flex;
    justify-content: center;
}

.footer_bottom .ft_inner .links li a {
    color: var(--gray);
    transition: .4s all;
}

.footer_bottom .ft_inner .links li a:hover {
    color: var(--text-white);
}

.footer_bottom .ft_inner .links li:not(:last-child)::after {
    content: "|";
    margin: 0 10px;
    color: var(--gray);
}
