@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Material Symbols Outlined', 'Material Symbols Sharp';
}

body {
    background-color: #E3F2FD;
}


.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    width: 100%;
    margin-right: auto;
}

/* ------------- */
.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.block {
    display: block;
}

img {
    display: block;
    height: 100%;
    object-fit: cover;
}

.space-between {
    justify-content: space-between;
}

/* -----Header----- */
header {
    background-color: #1565C0;
    color: #fff;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 99;
}

.header-links-block {
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 50px;
}

header nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
}

header .logo {
    width: 100px;
    height: 100px;
    margin: 0 0 -9px;
}

header nav li::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width .3s;
}

header nav li:hover::after, header nav li.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-wrap: wrap;
    width: 35px;
    gap: 12px;
}

.menu-toggle .bar {
    width: 100%;
    display: block;
    height: 2px;
    background: #fff;
}

/* ------- Banner --------- */
.home-banner-heading {
    font-size: 110px;
    font-weight: 700;
    line-height: 129px;
    letter-spacing: 0em;
    margin: 0 0 10px;
}

.home-banner-heading.inner {
    font-size: 60px;
    line-height: 70px;
}

.banner-section {
    padding: 120px 0 113px;
    background-image: url(../images/home_banner.png);
    background-position: top center;
    background-size: cover;
    color: #fff;
    background-repeat: no-repeat;
    position: relative;
}

.banner-section.home {
    min-height: 530px;
}

/*.banner-section:after {
    position: absolute;
    content: "";
    background: #1565c06e;
    width: 100%;
    height: 100%;
    top: 0;
}*/
.banner-section.home .banner-inner {
    position: relative;
    z-index: 9;
}

.docs-tab-section ol, .docs-tab-section ul {
    margin-bottom: 20px;
}

.docs-tab-section ol li, .docs-tab-section ul li {
    margin-bottom: 5px;
}

.banner-subheading {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    padding-left: 6px;
}

/* -------------- */
.featured-section {
    padding: 93px 0 100px;
    overflow: hidden;
    overflow: -moz-hidden-unscrollable;
    position: relative;
}

.feat-box-wrap {
    border-radius: 14px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    max-width: calc(33.33% - 20px);
    transition: all .3s ease-in-out;
    min-height: 250px;
}

.feat-box-wrap:hover {
    box-shadow: 0 0px 3px 1px #00000036;
}

.feat-box {
    padding: 33px 21px 33px 30px;
}

.feat-dot-img {
    position: absolute;
    left: -71px;
    top: -141px;
    right: auto;
    bottom: auto;
    width: 432px;
    height: 401px;
    z-index: -1;
}

.recod-shade-img {
    max-width: 223px;
    max-height: 223px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.feat-list-block {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feat-list-block li {
    margin: 0 0 10px;
    background-position: left top 3px;
    padding: 0 0 0 21px;
    background-size: 13px 13px;
    background-repeat: no-repeat;
    background-image: url(../images/check.png);
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
}

.feat-heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    color: #1565C0;
    margin: 0 0 18px;
}

.boxes-block {
    gap: 30px;
}

/* .recod-shade-img {
    animation: rotateAnimationCircle 12s linear infinite;
    transform: translate(-50%,-50%) rotate(0deg);
    opacity: 1;
} */
.home-footer {
    background-color: #1565C0;
    overflow: hidden;
    position: relative;
}

.home-footer-inner {
    max-width: 635px;
    padding: 96px 0 81px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 19px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    position: relative;
    z-index: 9999999;
}

.home-footer-inner a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.apple-playstore {
    margin-top: 67px;
    gap: 35px;
}

.apple-playstore img {
    max-width: 190px;
    height: auto !important;
    object-fit: unset !important;
}

.footer-mic {
    width: 366px;
    position: absolute;
    top: 35px;
    bottom: 0;
    left: 26px;
    height: 366px;
    mix-blend-mode: color-burn;
}

.footer-shade {
    left: 100%;
    animation: rotateAnimationCircle2 12s linear infinite;
    transform: rotate(0deg);
}

.footer-shader-wrap {
    position: absolute;
    top: 50%;
    right: 2px;
    height: 100%;
}

/* ------------ */
footer {
    background: #1565c0;
    color: #fff;
}

.footer-copyright {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0em;
    padding: 14px 0;
    text-transform: capitalize;
    text-align: center;
}

footer.blue-footer {
    background-color: #1565C0;
    color: #fff;
}

.blue-footer .footer-copyright {
    padding: 21px 0;
    font-size: 18px;
    text-transform: lowercase;
    line-height: 21px;
}

/* -------------- */
.docs-tab-section .tab-data {
    width: 100%;
    max-width: 66%;
    padding: 14px 0 0 31px;
}

.docs-tab-section .tabs-wrap {
    width: 100%;
    max-width: 34%;
    padding: 0 31px 0 0;
}

.docs-tab-section .tabs {
    padding: 10px 27px;
    border-radius: 14px;
    background-color: #fff;
}

.docs-tab-section {
    overflow: hidden;
    padding: 142px 0 156px;
    position: relative;
}

.docs-tab-section .tab-let-img {
    top: 176px;
    position: absolute;
    width: 371px;
    z-index: -1;
    left: 0;
    height: 401px;
}

.tab-heading {
    color: #1565C0;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    margin: 0 0 12px;
}

.docs-tab-section .tabs .tab {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    letter-spacing: 0em;
    color: #000;
    margin: 0 0 14px;
    padding-left: 23px;
    background-position: left top 2px;
    background-size: 14px 14px;
    background-repeat: no-repeat;
    background-image: url(../images/right_arrow.png);
}

.docs-tab-section .tabs .tab.active, .docs-tab-section .tabs .tab:hover {
    font-size: 15px;
    font-weight: 700;
    color: #1565C0;
}

.tab-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 20px;
    letter-spacing: 0em;
}

.tab-content strong {
    font-size: 16px;
    display: block;
    font-weight: 700;
    line-height: 24px;
    margin: 0 0 25px;
    letter-spacing: 0em;
}

@keyframes rotateAnimationCircle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotate(90deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
    75% {
        transform: translate(-50%, -50%) rotate(270deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateAnimationCircle2 {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    25% {
        transform: translateY(-50%) rotate(90deg);
    }
    50% {
        transform: translateY(-50%) rotate(180deg);
    }
    75% {
        transform: translateY(-50%) rotate(270deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.apple-play-section {
    padding: 140px 0 140px;
    position: relative;
    overflow: hidden;
}

.soc-left-img {
    position: absolute;
    left: 0;
    width: 361px;
    height: 269px;
    z-index: -1;
    bottom: 0;
}

.apple-play-section .cont {
    max-width: 675px;
    margin: 0 auto;
    text-align: left;
}

.apple-play-section .cont .soc-para {
    text-align: left;
}

.apple-play-section .apple-playstore {
    margin-top: 48px;
    justify-content: start;
}

.soc-para {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: center;
}

.soc-para a {
    color: #1565C0;
    font-weight: 700;
    text-decoration: none;
}

.soc-para {
    margin-bottom: 20px;
}

@media only screen and (max-width: 1280px) {
    .docs-tab-section {
        padding: 62px 0 86px;
    }

    .blue-footer .footer-copyright {
        padding: 20px 0;
        font-size: 16px;
    }

    /*.apple-play-section {
        padding: 85px 0 86px;
    }*/
}


@media (max-width: 1199px) {
    .home-footer-inner {
        margin-left: auto;
        margin-right: 0;
    }
}

@media only screen and (max-width: 991px) {
    .header-links-block {
        gap: 30px;
    }

    header nav li a {
        font-size: 16px;
    }

    .banner-section.home {
        min-height: 330px;
    }

    .home-banner-heading {
        font-size: 54px;
        line-height: 58px;
    }

    .banner-subheading {
        font-size: 20px;
        line-height: 30px;
    }

    .banner-section {
        padding: 80px 0 63px;
    }

    .home-banner-heading.inner {
        font-size: 46px;
        line-height: 56px;
    }

    .feat-box-wrap {
        max-width: calc(33.33% - 14px);
    }

    .boxes-block {
        gap: 20px;
    }

    .feat-heading {
        font-size: 18px;
        line-height: 26px;
    }

    .featured-section {
        padding: 70px 0;
    }

    .apple-playstore {
        margin-top: 37px;
        gap: 25px;
    }

    .home-footer-inner {
        font-size: 18px;
    }

    .docs-tab-section .tabs-wrap {
        padding: 0 10px 0 0;
    }

    .docs-tab-section .tab-data {
        padding: 0 0 0 10px;
    }

    .tab-content p {
        font-size: 16px;
    }

    .home-banner-heading.inner {
        font-size: 50px;
        line-height: 66px;
    }

    .apple-play-section .apple-playstore {
        margin-top: 30px;
    }

    .footer-mic {
        width: 196px;
        top: 165px;
        left: 26px;
        height: 186px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-subheading {
        padding-left: 3px;
    }

    .home-footer-inner {
        margin-left: auto;
        margin-right: auto;
    }

    .home-banner-heading {
        font-size: 52px;
        line-height: 60px;
        margin-bottom: 0px;
    }

    .apple-playstore img {
        max-width: 140px;
    }

    .banner-subheading {
        font-size: 16px;
        line-height: 28px;
    }

    .feat-box-wrap {
        max-width: 100%;
        width: 100%;
    }

    .footer-mic {
        display: none;
    }

    .footer-mic {
        width: 186px;
        height: 186px;
        top: 113px;
    }

    .featured-section {
        padding: 58px 0;
    }

    .banner-section.home {
        min-height: 250px;
    }

    .banner-section {
        padding: 52px 0;
    }

    .home-footer-inner {
        line-height: 24px;
        font-size: 16px;
        padding: 52px 0px;
    }

    .apple-playstore {
        margin-top: 27px;
        gap: 20px;
    }

    .footer-copyright {
        padding: 20px 0;
    }

    .menu-toggle {
        display: flex;
    }

    header nav .header-links-block {
        gap: 15px;
        flex-direction: column;
    }

    header nav {
        display: none;
        position: absolute;
        top: 100%;
        background: #1565C0;
        width: 100%;
        left: 0;
        padding: 40px;
        border-top: 1px solid #ddd;
    }

    .docs-tab-section .tabs-wrap {
        padding: 0 0px 40px 0;
        max-width: 100%;
    }

    .docs-tab-section .tab-data {
        padding: 0;
        max-width: 100%;
    }

    .docs-tab-section {
        padding: 52px 0 56px;
    }

    .tab-heading {
        font-size: 17px;
    }

    .home-banner-heading.inner {
        font-size: 42px;
        line-height: 46px;
    }

    .banner-section {
        min-height: 180px;
    }

    .apple-play-section {
        padding: 54px 0 56px;
    }

    .soc-para {
        font-size: 16px;
        line-height: 24px;
    }

    .blue-footer .footer-copyright {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .home-banner-heading.inner {
        font-size: 36px;
        line-height: 42px;
    }

    .menu-toggle {
        gap: 9px;
        width: 30px;
    }

    header .logo img {
        width: 100%;
    }

    header .logo {
        width: 80px;
        height: 80px;
    }

    .home-banner-heading {
        font-size: 42px;
        line-height: 52px;
    }

    header nav {
        padding: 30px;
    }
}

.status {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 20px;
    letter-spacing: 0em;
}

.status p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.status ol {
    margin-bottom: 5px;
    list-style-type: decimal;
}

.status li {
    margin-bottom: 5px;
    display: list-item;
    text-align: -webkit-match-parent;
}

h4 {
    padding-top: 20px;
    padding-bottom: 20px;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v170/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOej.woff2) format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Material Symbols Sharp';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialsymbolssharp/v166/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReYU3rHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLojCL.woff2) format('woff2');
}

.material-symbols-sharp {
    font-family: 'Material Symbols Sharp';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}