/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap');

/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
     box-sizing: border-box;
}

html {
     scroll-behavior: smooth;
}

::-webkit-scrollbar {
     width: 6px;
}

::-webkit-scrollbar-track {
     background: #533bc6;
    
}

/* Handle */
::-webkit-scrollbar-thumb {
     background: red;
     border-radius: 32px;
}

body {
     /* color: #666666; */
     font-family: 'Lato', sans-serif;
     /* line-height: 1.80857;
     font-weight: normal; */
     margin: 0px;
     position: relative;
     overflow-x: hidden;
}

.balloon {
     position: absolute;
     z-index: -100;
}

a {}

/* a {
     color: #1f1f1f;
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
     /* letter-spacing: 0;
     font-weight: normal;
     position: relative;
     padding: 0 0 10px 0;
     font-weight: normal;
     line-height: normal;
     color: #111111; */
     margin: 0;
     display: inline;
}

h1 {
     font-size: 60px;
     font-weight: 800;
}

h2 {
     font-size: 45px;
     font-weight: 600;
     color: #000;
}

h3 {
     font-size: 40px;
     font-weight: 600;
}

h4 {
     font-size: 16px
}

h5 {
     font-size: 24px
}

h6 {
     font-size: 13px
}

h1.money {
     color: white;
     background-color: #FFA800;
}

/* *,
*::after,
*::before {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
} */


p {
     font-weight: 500;
     font-size: 19px;
     line-height: 28px;
     color: rgba(0, 0, 0, 0.60);
}

a {
     color: #222222;
     text-decoration: none;
     outline: none !important;
}

#contact p {
     color: white;
}

ul.reward li {
     font-weight: 400;
     font-size: 22px;
}

header {
     display: flex;
     gap: 16px;
     align-items: center;
     margin-bottom: 38px;
     padding-top: 16px;
     padding-bottom: 16px;
     padding-left: 10%;
     padding-right: 10%;
}

:focus {
     outline: 0;
}

.grid-container {
     display: flex;
     gap: 4px;
     padding-left: 10%;
     padding-right: 10%;
}

.child-container-60 {
     flex-basis: 60%;
}

.child-container-40 {
     flex-basis: 40%;
}

.child-container-50 {
     flex-basis: 50%;
}

.child-container-60,
.child-container-40 {
     /* display: flex;
     flex-direction: column;
     align-items: stretch; */
}

.center {
     display: flex;
     justify-content: center;
     align-items: center;
}

.center-vertical {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
}

.child-container-element {
     min-width: 50%;
     max-width: 60%;
}


@media (max-width: 768px) {
     .grid-container {
          flex-direction: column;
     }

     .child-container-60,
     .child-container-50,
     .child-container-40 {
          width: 100%;
     }

     h1 {}

     h2 {}

     h3 {}

     h4 {}

     h5 {}

     h6 {}

     .center {
          flex-wrap: wrap;
     }

     .oversize-bl {
          display: none;
     }
     header {
          gap: 8px;
          padding-left: 5%;
          padding-right: 5%;
     }
}



.section-title {
     font-weight: 400; 
     text-align: center;
     padding-top: 100px;

}

.download-section {
     display: flex;
     gap: 4px;
     flex-wrap: wrap;
}

#welcome p,
h1 {
     max-width: 650px;
}

#features p {
     max-width: 420px;
}

.contact-detail {
     display: flex;
     gap: 8px;
}

.primary-btn {
     background-color: #8BC900;
     color: #1A1A1A;
     border-radius: 5px;
     display: flex;
     width: 324px;
     height: 59px;
     padding: 12px 0px;
     justify-content: center;
     align-items: center;
     gap: 10px;
     border-color: #8BC900;
     cursor: pointer;
}

hr {
     /* border-top: 3px solid #bbb;
     height: 1px;
     background-color: #000; */
     margin: 0;
}

.email-form {
     display: flex;
     flex-direction: column;
     max-width: 400px;
     gap: 16px;
}

.email-form input {
     border-radius: 4px;
     height: 30px;
     border: none;
}
.email-form textarea {
     border-radius: 4px;
     border: none;
}

.submit-btn {
     background-color: #F8DF00;
     border-radius: 6px;
     height: 60px;
     cursor: pointer;
}

.paragraph {
     white-space: break-spaces;
}

/* footer */
footer {
     background-color: #1A1A1A;
     height: 120px;
     padding-left: 10%;
     padding-right: 10%;
}

footer a {
     color: white;
     text-decoration: none;
}

/** end footer **/