*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html, body{
    height: 100%;
    font-family: 'Inter', sans-serif;
}

.container{
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

header{
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}   
.logo{
    width: 220px;
}
.logo img{
    width: 100%;
} 
main{
    width: 100%;
}



section{
    padding: 80px 0;
    width: 100%;
}
img-fluid{
    max-width: 100%;
}

.banner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #f6f6f6;
    text-align: center;
    height: calc(100vh - 75px);
}
.banner img{
    width: 200px;
}

h1{
    font-size: 60px;
    margin-bottom: 3rem;
}

a{
    padding: 1rem 2rem;
    background-image: linear-gradient(90deg,#c724b1,#c724b1 40%,#753bbd);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
.footer__logo{
    width: 120px;
    margin-right: 10px;
}
.footer__logo img{
    width: 100%
}
.footer__menu p{
    font-weight: 300;
    margin: 0;
    padding: 0;
    font-size: 1rem;
}
.download-section{
    padding: 2rem 0;
}
.download-section-item{
    width: 100%;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e6ec;
    padding: 2rem;
}
.download-section-item-header{
    display: flex;
            flex-direction: column;
            justify-content: space-between;
}
.download-section-item-header-title{
    width: 100%;
}
.download-section-item-header-title img{
    float:left;
    margin-right: 1rem;
}
.download-section-item-header-title h2{
    font-size: 1.125rem;
    margin: 1rem 0 0 0;
}
.download-section-item-header-title p{
    width: 100%;
    float: left;
    padding: 0;
    margin: 1.5rem 0 0 0;
    font-size: 1rem;
}
.download-section-item-header-btn{
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 2rem;
}
.download-section-item-header-btn .installation  {  
    border: 1px solid #0F141E;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 50px;
    
    padding: 10px 15px;
    display: inline-block;
    width: 180px;
    height:50px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 2rem;
}
.download-section-item-header-btn .play-store{
    background: #fff;
                    border-radius: 50px;
                    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
                    padding: 10px 15px;
                    display: inline-block;
                    width: 180px;
                    height:50px;
                    text-align: center;
}
.download-section-item-header-btn .play-store img{
    max-width: 100%;

}
.devider{
    width: 100%;
            height:1px;
            background-color:#D8D8D8;
            margin: 2rem 0;
}
.devider .item{
    margin-bottom: 2rem;
}


.devider h3{
    font-size:1.375rem;
    margin-bottom: 0;
}
.devider p{
    font-size:1rem;
    margin-bottom: 1rem;
}
.devider a{
    border: 1px solid;
    padding: 10px 15px;
    border-radius: 50px;
}

.pckl-faq .accordion{
    width: 100%;
    float: left;
}
.pckl-faq .accordion-item{
    border-radius: 16px;
    margin-bottom: 30px;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
.pckl-faq .accordion-header{
    background: none;
    padding: 5px 10px;
    margin-bottom: 0 !important;
}
.pckl-faq .accordion-button{
    text-align: left;
                    width: 100%;
                    font-size: 16px;
                    
                    line-height: 20px;
                    text-decoration: none;
                    color: #0F141E;
                    background: none;
                    padding: 15px;
                    border: none; 
                    box-shadow: 10px  #0F141E;
}
.pckl-faq .accordion-collapse{
    border: none;
    padding: 5px 15px;
}
.pckl-faq .accordion-body{
    padding: 10px 25px 10px 25px;
                font-size: 14px;
                font-weight: 300;
                border: none;
}

.pckl-faq ul{
    margin-left: 20px; 
}
.pckl-faq ul li{
    list-style: disc;
    padding-bottom: 15px;
}
.accordion-button:not(.collapsed){
    background-color: white !important;
    color: #0F141E !important;
    box-shadow: none;
    border-color: #fff !important;
}
.accordion-item:not(:first-of-type){
    border-top: 2px solid  rgba(0, 0, 0, 0.125) !important;
}
.accordion-button:focus{
    box-shadow: none !important;
    border-color: #fff !important;
}