:root {
    --gradient_one: #1741CC;
    --gradient_two: #55ABEC;
    --font_poppins: 'Poppins', sans-serif;
    --font_dmSans: 'DM Sans', sans-serif;
    --font_raleway: 'Raleway', sans-serif;
}

* {
    padding: 0;
    margin: 0;
    font-family: var(--font_poppins);
}

body {
    overflow: hidden;
}

.text_gradient {
    background: linear-gradient(90deg, var(--gradient_one), var(--gradient_two));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.flex_space_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    background-color: #EBEBEB;
}

/********************************/
/*           LOADER             */
/********************************/
.loading {
    background-color: white;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loadingspinner {
    --square: 26px;
    --offset: 30px;
    --duration: 2.4s;
    --delay: 0.2s;
    --timing-function: ease-in-out;
    --in-duration: 0.4s;
    --in-delay: 0.1s;
    --in-timing-function: ease-out;
    width: calc(3 * var(--offset) + var(--square));
    height: calc(2 * var(--offset) + var(--square));
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 30px;
    position: relative;
}

.loadingspinner div {
    display: inline-block;
    background: linear-gradient(180deg, var(--gradient_one), var(--gradient_two));
    border: none;
    border-radius: 2px;
    width: var(--square);
    height: var(--square);
    position: absolute;
    padding: 0px;
    margin: 0px;
    font-size: 6pt;
    color: black;
}

.loadingspinner #square1 {
    left: calc(0 * var(--offset));
    top: calc(0 * var(--offset));
    animation: square1 var(--duration) var(--delay) var(--timing-function) infinite,
        squarefadein var(--in-duration) calc(1 * var(--in-delay)) var(--in-timing-function) both;
}

.loadingspinner #square2 {
    left: calc(0 * var(--offset));
    top: calc(1 * var(--offset));
    animation: square2 var(--duration) var(--delay) var(--timing-function) infinite,
        squarefadein var(--in-duration) calc(1 * var(--in-delay)) var(--in-timing-function) both;
}

.loadingspinner #square3 {
    left: calc(1 * var(--offset));
    top: calc(1 * var(--offset));
    animation: square3 var(--duration) var(--delay) var(--timing-function) infinite,
        squarefadein var(--in-duration) calc(2 * var(--in-delay)) var(--in-timing-function) both;
}

.loadingspinner #square4 {
    left: calc(2 * var(--offset));
    top: calc(1 * var(--offset));
    animation: square4 var(--duration) var(--delay) var(--timing-function) infinite,
        squarefadein var(--in-duration) calc(3 * var(--in-delay)) var(--in-timing-function) both;
}

.loadingspinner #square5 {
    left: calc(3 * var(--offset));
    top: calc(1 * var(--offset));
    animation: square5 var(--duration) var(--delay) var(--timing-function) infinite,
        squarefadein var(--in-duration) calc(4 * var(--in-delay)) var(--in-timing-function) both;
}

@keyframes square1 {
    0% {
        left: calc(0 * var(--offset));
        top: calc(0 * var(--offset));
    }

    8.333% {
        left: calc(0 * var(--offset));
        top: calc(1 * var(--offset));
    }

    100% {
        left: calc(0 * var(--offset));
        top: calc(1 * var(--offset));
    }
}

@keyframes square2 {
    0% {
        left: calc(0 * var(--offset));
        top: calc(1 * var(--offset));
    }

    8.333% {
        left: calc(0 * var(--offset));
        top: calc(2 * var(--offset));
    }

    16.67% {
        left: calc(1 * var(--offset));
        top: calc(2 * var(--offset));
    }

    25.00% {
        left: calc(1 * var(--offset));
        top: calc(1 * var(--offset));
    }

    83.33% {
        left: calc(1 * var(--offset));
        top: calc(1 * var(--offset));
    }

    91.67% {
        left: calc(1 * var(--offset));
        top: calc(0 * var(--offset));
    }

    100% {
        left: calc(0 * var(--offset));
        top: calc(0 * var(--offset));
    }
}

@keyframes square3 {

    0%,
    100% {
        left: calc(1 * var(--offset));
        top: calc(1 * var(--offset));
    }

    16.67% {
        left: calc(1 * var(--offset));
        top: calc(1 * var(--offset));
    }

    25.00% {
        left: calc(1 * var(--offset));
        top: calc(0 * var(--offset));
    }

    33.33% {
        left: calc(2 * var(--offset));
        top: calc(0 * var(--offset));
    }

    41.67% {
        left: calc(2 * var(--offset));
        top: calc(1 * var(--offset));
    }

    66.67% {
        left: calc(2 * var(--offset));
        top: calc(1 * var(--offset));
    }

    75.00% {
        left: calc(2 * var(--offset));
        top: calc(2 * var(--offset));
    }

    83.33% {
        left: calc(1 * var(--offset));
        top: calc(2 * var(--offset));
    }

    91.67% {
        left: calc(1 * var(--offset));
        top: calc(1 * var(--offset));
    }
}

@keyframes square4 {
    0% {
        left: calc(2 * var(--offset));
        top: calc(1 * var(--offset));
    }

    33.33% {
        left: calc(2 * var(--offset));
        top: calc(1 * var(--offset));
    }

    41.67% {
        left: calc(2 * var(--offset));
        top: calc(2 * var(--offset));
    }

    50.00% {
        left: calc(3 * var(--offset));
        top: calc(2 * var(--offset));
    }

    58.33% {
        left: calc(3 * var(--offset));
        top: calc(1 * var(--offset));
    }

    100% {
        left: calc(3 * var(--offset));
        top: calc(1 * var(--offset));
    }
}

@keyframes square5 {
    0% {
        left: calc(3 * var(--offset));
        top: calc(1 * var(--offset));
    }

    50.00% {
        left: calc(3 * var(--offset));
        top: calc(1 * var(--offset));
    }

    58.33% {
        left: calc(3 * var(--offset));
        top: calc(0 * var(--offset));
    }

    66.67% {
        left: calc(2 * var(--offset));
        top: calc(0 * var(--offset));
    }

    75.00% {
        left: calc(2 * var(--offset));
        top: calc(1 * var(--offset));
    }

    100% {
        left: calc(2 * var(--offset));
        top: calc(1 * var(--offset));
    }
}

@keyframes squarefadein {
    0% {
        transform: scale(0.75);
        opacity: 0.0;
    }

    100% {
        transform: scale(1.0);
        opacity: 1.0;
    }
}






/********************************/
/*       PARALLAX EFFECT        */
/********************************/

.animate-on-scroll {
    opacity: 0;
    transform: translateY(100px);
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeSlideUp 0.6s ease-out forwards;
    animation-delay: var(--anim-delay, 0s);
}

.animate-on-scroll-2 {
    opacity: 0;
    transform: translateY(40px);
}




/**********************************/
/*         NAVBAR STYLING         */
/**********************************/
nav {
    width: 100%;
    height: 76px;
    background: linear-gradient(87deg, rgba(250, 247, 251, 0.7), rgba(254, 248, 255, 0.7));
    backdrop-filter: blur(151px);
    position: sticky;
    top: -0.5px;
    left: 0;
    z-index: 1000;
}

#navbar {
    width: 90%;
    margin: auto;
    height: 100%;
}

#logo h1 {
    font-family: var(--font_dmSans);
    font-size: 35px;
}

#links ul {
    gap: 30px;
}

#links ul li {
    list-style: none;
}

#links ul li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: rgba(37, 43, 51, 1);
}

#navbar_button {
    width: 160px;
    height: 48px;
    border-radius: 15px;
    color: white;
    background: linear-gradient(90deg, var(--gradient_one), var(--gradient_two));
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    box-shadow: 0px 102px 28px rgba(85, 171, 236, 0.01),
        0px 65px 26px rgba(85, 171, 236, 0.04),
        0px 37px 22px rgba(85, 171, 236, 0.14),
        0px 16px 16px rgba(85, 171, 236, 0.23),
        0px 4px 9px rgba(85, 171, 236, 0.27);
}





/**********************************/
/*          HERO SECTION          */
/**********************************/
#hero_section {
    background:
        linear-gradient(180deg, transparent 89%, #EBEBEB 100%),
        url('../assets/images/hero_bg.webp') center/cover;
    height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position-y: bottom;
    display: flex;
    position: relative;
}

#hero_section>img {
    width: 600px;
    height: 557px;
    right: 3%;
    top: 10%;
    position: absolute;
}

#hero_content {
    margin-top: 140px;
    width: 95%;
    margin-left: auto;
}

#hero_content h1 {
    font-family: var(--font_raleway);
    font-weight: 800;
    font-size: 67px;
    line-height: 96px;
    color: rgba(49, 49, 52, 1);
}

#hero_content p {
    font-family: var(--font_dmSans);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(37, 43, 51, 1);
    max-width: 400px;
}

#hero_buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

#hero_buttons button {
    width: 200px;
    height: 48px;
    border-radius: 15px;
    font-family: var(--font_dmSans);
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    border: none;
    outline: none;
}

#hero_buttons button:nth-child(1) {
    background: linear-gradient(90deg, #1741CC, #55ABEC);
    box-shadow: 0px 102px 28px rgba(85, 171, 236, 0.01),
        0px 65px 26px rgba(85, 171, 236, 0.04),
        0px 37px 22px rgba(85, 171, 236, 0.14),
        0px 16px 16px rgba(85, 171, 236, 0.23),
        0px 4px 9px rgba(85, 171, 236, 0.27);
    color: white;
}

#hero_buttons button:nth-child(2) {
    color: #1D1E1F;
    background-color: white;
    border: none;
    box-shadow: inset 0 0 0 1px #55ABEC;
    box-sizing: border-box;
}


/**********************************/
/*        CHOOSE US SECTION       */
/**********************************/
#choose_us {
    margin-top: 70px;
    flex-direction: column;
}

.header_span {
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 3px;
    color: rgba(23, 65, 204, 1);
    position: relative;
}

.line_below {
    position: absolute;
    width: 130px;
    border: 1px solid rgba(85, 171, 236, 1);
    bottom: 0;
    left: -3px;
}

.heading {
    font-size: 48px;
    line-height: 58px;
    margin-top: 28px;
}

#services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    gap: 3%;
    margin-top: 80px;
}

.service {
    background-color: rgba(250, 246, 246, 1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 20px 11px 15px 11px;
    width: 250px;
    height: 235px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 15px;
}

.service img {
    width: 90px;
    height: 90px;
    transform: scale(2);
}

.service h5 {
    font-weight: 600;
    font-size: 22px;
    margin-top: 10px;
}

.service h5 span {
    background: linear-gradient(90deg, var(--gradient_one) 61%, var(--gradient_two) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.service p {
    font-weight: 400;
    font-size: 16px;
    margin-top: auto;
}


/**********************************/
/*          DOWNLOAD APP          */
/**********************************/
#download_app {
    background: url('../assets/images/bg_image.png');
    margin-top: 100px;
    background-size: 101%;
    aspect-ratio: 1440 / 920;
    background-repeat: no-repeat;
    position: relative;
}

#options {
    position: absolute;
    bottom: 41%;
    left: 10%;
}

#options h1 {
    font-family: var(--font_dmSans);
    font-weight: 600;
    font-size: 38px;
    line-height: 48px;
    color: white;
}

#options>p {
    font-family: var(--font_dmSans);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: white;
    margin: 10px 0px;
}

#download_buttons {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

#download_buttons div {
    width: 200px;
    height: 60px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #252B33;
}

.google_play img {
    width: 35px;
    height: 39px;
}

#download_buttons div p {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
}

#download_buttons div span {
    font-size: 24px;
    letter-spacing: -1.3px;
}

.app_store i {
    font-size: 50px;
    color: #252B33;
}

#images_section img:nth-child(1) {
    width: 330px;
    height: auto;
    position: absolute;
    right: 15%;
    bottom: -8%;
    z-index: 0;

}

#images_section img:nth-child(2) {
    width: 262px;
    height: 220px;
    position: absolute;
    right: 2%;
    bottom: 11%;
}

/**********************************/
/*            REVIEWS             */
/**********************************/
#reviews {
    width: 90%;
    margin: auto;
}

#reviews>img {
    width: 580px;
    height: 336px;
}

#reviews_left .line_below {
    bottom: -6px;
    border-color: #316DD9 !important;
}

#reviews_left .heading {
    margin-top: 20px;
}

#reviews_left>p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    max-width: 665px;
    margin-top: 40px;
}

#client_info {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

#client_info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(48, 107, 217, 1);
    object-fit: cover;
    display: block;
}

.info h5 {
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    color: rgba(42, 97, 214, 1);
}

.info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(130, 130, 130, 1);
    text-transform: capitalize;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#arrows {
    margin-top: 24px;
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: start;
}

#arrows i {
    background: linear-gradient(180deg, #1741CC, #55ABEC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    font-size: 26px;
}

#arrows div {
    display: flex;
    align-items: center;
    justify-content: center;
}

#arrows .active {
    background-color: white;
    width: 60px;
    height: 35px;
    border-radius: 30px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
}

/**********************************/
/*           CONTACT US           */
/**********************************/
#contact_us {
    background: linear-gradient(180deg, rgba(235, 235, 235, 1) 0%, rgba(235, 235, 235, 0) 70%),
        linear-gradient(180deg, rgba(235, 235, 235, 0) 96%, rgba(235, 235, 235, 1) 100%),
        url('../assets/images/contact_us_bottom.png'),
        url('../assets/images/contact_form.webp');
    aspect-ratio: 1440 / 980;
    background-size: auto,
        auto,
        100% auto,
        143%;
    transform: scaleX(-1);

    background-position-x: center, center, center, left;
    background-position-y: bottom, bottom, bottom, bottom;
    background-repeat: no-repeat,
        no-repeat,
        repeat-x,
        no-repeat;
    margin-top: 50px;
    position: relative;
}

#form {
    width: 650px;
    height: 500px;
    background-color: white;
    border-radius: 40px;
    padding: 40px;
    left: 5%;
    transform: scaleX(-1);
    position: absolute;
    top: 30%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

input,
textarea {
    border-radius: 10px;
    border: 1px solid rgba(204, 204, 204, 1);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    color: rgba(130, 130, 130, 1);
    padding: 12px 20px;
}

textarea {
    height: 100px;
}

#form h2 {
    line-height: auto;
    margin-top: 0;
    margin-bottom: 20px;
}

#form button {
    width: 157px;
    height: 48px;
    border-radius: 15px;
    font-family: var(--font_dmSans);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: white;
    align-self: center;
    margin-top: auto;
    background: linear-gradient(90deg, var(--gradient_one), var(--gradient_two));
    border: none;
    outline: none;
    box-shadow: 0px 102px 28px rgba(85, 171, 236, 0.01),
        0px 65px 26px rgba(85, 171, 236, 0.04),
        0px 37px 22px rgba(85, 171, 236, 0.14),
        0px 16px 16px rgba(85, 171, 236, 0.23),
        0px 4px 9px rgba(85, 171, 236, 0.27);
}








/**********************************/
/*         RESPONSIVENESS         */
/**********************************/
@media (max-width: 1280px) {
    #hero_content h1 {
        font-size: 60px;
    }

    #hero_section>img {
        width: 550px;
        height: 510px;
        top: 15%;
    }

    .service {
        width: 200px;
        height: 180px;
    }

    .service h5 {
        font-size: 20px;
    }

    .service p {
        font-size: 14px;
    }

    #download_app {
        margin-top: 80px;
    }

    #options h1 {
        font-size: 34px;
    }

    #options p {
        font-size: 14px;
    }

    #download_buttons div {
        width: 175px;
        height: 55px;
    }

    #download_buttons div p {
        font-size: 12px !important;
    }

    #download_buttons div span {
        font-size: 20px;
    }

    #reviews>img {
        width: 460px;
        height: 300px;
    }

    #reviews_left>p {
        font-size: 14px;
        max-width: 595px;
        margin-top: 25px;
    }

    #client_info img {
        width: 65px;
        height: 65px;
    }

    .info h5 {
        font-size: 20px;
    }

    .info p {
        font-size: 14px;
    }

    #form {
        top: 25%;
        width: 600px;
    }

    footer {
        padding-top: 150px !important;
    }
}

@media (max-width: 1024px) {
    #links ul {
        gap: 20px;
    }

    #links ul li a {
        font-size: 14px;
    }

    #hero_section {
        height: 580px;
    }

    #hero_content {
        margin-top: 120px;
    }

    #hero_content h1 {
        font-size: 52px;
        line-height: 76px;
    }

    #hero_content p {
        font-size: 15px;
        max-width: 363px;
    }

    #hero_buttons button {
        font-size: 15px;
        font-weight: 500;
        width: 175px;
    }

    #hero_section>img {
        width: 420px;
        height: 393px;
    }

    .header_span {
        font-size: 13px;
    }

    .line_below {
        width: 100px;
    }

    .heading {
        font-size: 42px;
    }

    #services {
        margin-top: 50px;
    }

    .service {
        height: 170px;
        width: 160px;
    }

    .service img {
        width: 70px;
        height: 70px;
    }

    .service h5 {
        font-size: 18px;
        font-weight: 500;
        line-height: 20px;
    }

    .service p {
        font-size: 12px;
    }

    #options h1 {
        font-size: 28px;
        line-height: 26px;
    }

    #options p {
        font-size: 12px;
    }

    #download_buttons {
        margin-top: 13px;
        gap: 20px;
    }

    #download_buttons div {
        width: 149px;
        height: 46px;
    }

    #download_buttons div p {
        font-size: 10px !important;
    }

    #download_buttons div span {
        font-size: 17px;
    }

    .google_play img {
        width: 30px;
        height: 30px;
    }

    .app_store i {
        font-size: 39px;
    }

    #reviews>img {
        width: 360px;
        height: 243px;
        transform: scale(1.1);
    }

    #reviews_left>p {
        font-size: 13px;
        line-height: 24px;
        margin-top: 15px;
        max-width: 490px;
    }

    #client_info {
        margin-top: 15px;
    }

    #arrows {
        gap: 25px;
    }

    #arrows i {
        font-size: 22px;
    }

    #form {
        top: 20%;
        width: 500px;
        height: 400px;
    }

    #form h2 {
        font-size: 38px;
        margin-bottom: 0px;
        line-height: 35px;
    }

    input,
    textarea {
        padding: 8px 15px;
    }

    textarea {
        height: max-content;
    }

    footer {
        padding-top: 100px !important;
    }
}

@media (max-width: 860px) {
    #navbar {
        width: 95%;
    }

    #navbar_button {
        font-weight: 500;
        font-size: 15px;
        width: 120px;
        height: 41px;
    }

    #hero_section {
        height: 500px;
    }

    #hero_content {
        margin-top: 100px;
        width: 97.5%;
    }

    #hero_content h1 {
        font-size: 45px;
        line-height: 60px;
    }

    #hero_section>img {
        width: 322px;
        height: 325px;
    }

    #choose_us {
        width: 95%;
        margin: auto;
    }

    #services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 30px;
        width: 100%;
    }

    .service {
        width: -webkit-fill-available;
        height: 150px;
    }

    #options {
        left: 5%;
        bottom: 38%;
    }

    #options h1 {
        font-size: 24px;
        line-height: 20px;
    }

    #download_buttons {
        gap: 10px;
    }

    #download_buttons div {
        width: 135px;
        height: 40px;
        border-radius: 7px;
    }

    #download_buttons div p {
        font-size: 10px !important;
        line-height: 15px;
    }


    .google_play img {
        width: 25px;
        height: 25px;
    }

    .app_store i {
        font-size: 33px;
    }

    #reviews {
        width: 90%;
    }

    #reviews>img {
        width: 314px;
        height: 216px;
    }

    #client_info>img {
        width: 50px;
        height: 50px;
    }

    .info h5 {
        font-size: 18px;
        font-weight: 500;
        line-height: 20px;
    }

    .info p {
        font-size: 13px;
    }

    #arrows {
        margin-top: 15px;
    }

    #form {
        top: 20%;
        right: 0%;
        left: 0%;
        width: 80%;
        margin: auto;
        height: auto;
    }

    #form h2 {
        font-size: 38px;
        margin-bottom: 0px;
        line-height: 35px;
    }

    input,
    textarea {
        padding: 8px 15px;
    }

    textarea {
        height: max-content;
    }

    footer {
        padding-top: 100px !important;
    }
}

@media (max-width: 768px) {
    nav {
        height: 60px;
    }

    #logo h1 {
        font-size: 24px;
    }

    #links {
        display: none;
    }

    #navbar_button {
        font-weight: 400;
        font-size: 13px;
        width: 100px;
        height: 35px;
        border-radius: 10px;
    }

    #hero_section {
        height: 400px;
    }

    #hero_content {
        margin-top: 70px;
    }

    #hero_content h1 {
        font-size: 40px;
        line-height: 50px;
    }

    #hero_content p {
        font-size: 13px;
        max-width: 314px;
    }

    #hero_buttons button {
        font-size: 14px;
        font-weight: 400;
        width: 140px;
        height: 42px;
    }

    #hero_section>img {
        width: 275px;
        height: 254px;
    }

    .header_span {
        font-size: 11px;
    }

    .heading {
        font-size: 34px;
        margin-top: 15px;
    }

    .service {
        height: 130px;
        padding: 10px;
    }

    .service img {
        width: 50px;
        height: 50px;
    }

    #download_app {
        margin-top: 60px;
    }

    #reviews>img {
        display: none;
    }

    #reviews_left {
        width: 100%;
    }

    #reviews_left>p {
        max-width: 100%;
    }

    #form {
        padding: 20px;
        border-radius: 25px;
    }

    #form h2 {
        font-size: 30px;
    }

    input,
    textarea {
        font-size: 14px;
    }
}

@media (max-width: 648px) {
    .loadingspinner {
        --square: 15px;
        --offset: 20px;
    }

    #navbar {
        width: 90%;
    }

    #hero_section {
        height: 350px;
    }

    #hero_section>img {
        display: none;
    }

    #hero_content {
        width: 90%;
        margin: auto;
    }

    #hero_content p {
        max-width: 100%;
        margin: 10px 0px;
    }

    .header_span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .line_below {
        bottom: 4px;
        width: 80px;
    }

    .heading {
        font-size: 30px;
        margin-top: 0px;
    }

    #services {
        gap: 15px;
        margin-top: 30px;
    }

    #options {
        max-width: 280px;
    }

    #options h1 {
        font-size: 20px;
    }

    #options p {
        font-weight: 300;
        font-size: 11px;
        line-height: 15px;
    }

    #download_buttons div {
        width: 110px;
        height: 32px;
        gap: 6px;
    }

    #download_buttons div p {
        font-size: 8px !important;
    }

    #download_buttons div span {
        font-size: 14px !important;
    }

    .google_play img {
        width: 20px;
        height: 20px;
    }

    .app_store i {
        font-size: 26px;
    }

    #reviews_left h2 {
        line-height: 30px;
        text-align: left !important;
    }

    #arrows i {
        font-size: 18px;
    }

    #arrows .active {
        width: 49px;
        height: 27px;
    }

    #form {
        top: 10%;
    }

    footer {
        padding-top: 150px !important;
    }
}

@media (max-width: 480px) {
    #navbar_button {
        font-weight: 400;
        font-size: 11px;
        width: 80px;
        height: 30px;
        border-radius: 8px;
    }

    #hero_section {
        height: 300px;
    }

    #hero_content h1 {
        font-size: 36px;
    }

    #hero_content p {
        line-height: 20px;
    }

    #hero_buttons {
        margin-top: 15px;
        gap: 10px;
    }

    #hero_buttons button {
        font-size: 12px;
        width: 119px;
        height: 36px;
        border-radius: 10px;
    }

    .header_span {
        font-size: 9px;
    }

    .heading {
        max-width: 90%;
        text-align: center;
        font-size: 26px;
        line-height: 25px;
        margin: 20px 0px;
    }

    #services {
        grid-template-columns: repeat(1, 1fr);
    }

    .service {
        height: 110px;
    }

    .service h5 {
        font-size: 16px;
        line-height: 15px;
    }

    .service p {
        font-size: 11px;
    }

    #download_app {
        background: url('../assets/images/download_section.webp');
        background-size: 200%;
        background-position-x: center;
        background-position-y: -67px;
        aspect-ratio: 1192 / 920;
        background-repeat: no-repeat;
        position: relative;
    }

    #options {
        max-width: 90%;
    }

    #download_buttons div {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }

    #download_buttons div p {
        display: none;
    }

    .google_play img {
        width: 15px;
        height: 15px;
    }

    .app_store i {
        font-size: 20px;
    }

    #reviews_left .heading {
        line-height: 10px;
    }

    #reviews_left>p {
        font-size: 12px;
    }

    #client_info>img {
        width: 40px;
        height: 40px;
    }

    #arrows {
        gap: 15px;
    }

    .info h5 {
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
    }

    .info p {
        font-size: 12px;
        line-height: 12px;
    }

    #form h2 {
        text-align: start;
        font-size: 18px;
        line-height: 20px;
        width: 100%;
    }

    input,
    textarea {
        font-size: 12px;
        padding: 5px 10px;
    }

    #form button {
        width: 130px;
        height: 40px;
        border-radius: 10px;
    }

    footer {
        padding-top: 200px !important;
    }
}
