:root {
    --radius: 7px;
}

.btn.btn-primary {
    background-color: rgba(22, 91, 229, 1);
    border-color: rgba(22, 91, 229, 1);
}

header {
    padding: 1rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 999;
    background-color: rgba(236, 239, 246, 1);
}

.header-color {
    background-color: #ffffff;
}

/* Hero */
#landing-hero {
    background-color: rgba(236, 239, 246, 1);
    padding: 7.5rem 0;
}

#landing-hero .iti {
    height: 50px;
}

.outer-circle {
    position: absolute;
    width: 2000px;
    height: 2000px;
    top: -950px;
    left: -850px;
    background-color: inherit;
    border-radius: 50%;
    border: 200px solid #F6FBFF;
    z-index: 0;
}

#landing-hero .hero-title {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 45px;
    font-weight: 600;
    line-height: 60px;
    width: 75%;
}

#landing-hero .hero-description {
    width: 75%;
}

#landing-hero .uss-info {
    color: #677899;
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
}

#landing-hero ul {
    padding-left: 0;
}

#landing-hero ul li {
    margin-bottom: 1em;
    list-style-type: none;
    padding: 0.25em 0 0 2.5em;
    position: relative;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #000000;
    margin-left: -10px;
}

#landing-hero ul li:before {
    content: " ";
    display: block;
    border: solid 0.8em rgba(22, 91, 229, 1);
    border-radius: 0.8em;
    height: 0;
    width: 0;
    position: absolute;
    left: 0.5em;
    top: 40%;
    margin-top: -0.5em;
}

#landing-hero ul li:after {
    content: " ";
    display: block;
    width: 0.4em;
    height: 0.7em;
    border: solid #fff;
    border-width: 0 0.1em 0.1em 0;
    position: absolute;
    left: 1.1em;
    top: 46%;
    margin-top: -0.2em;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#landing-hero .uss-price-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 55px;
    color: #466dab;
    text-underline-position: under;
}

#landing-hero .uss-price {
    background: #466dab;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
    padding: 10px;
    margin: 20px;
}

#landing-hero .card {
    border: none;
    background-color: inherit;
    border-radius: var(--radius);
}

#landing-hero .card .card-body {
    padding: 3rem 2rem;
}

#landing-hero .card .card-body .try-free-title {
    font-size: 24px;
    line-height: 40px;
    color: #000000;
}

#landing-hero .card .card-body .form-control {
    line-height: 36px;
    border: 1px solid #e2e2e2;
    border-radius: var(--radius);
    color: #6d757e;
}

#landing-hero .card .card-body .pass {
    padding-right: 25px;
}

#landing-hero .card .card-body .form-control:focus {
    box-shadow: 0 0 0 0.15rem rgba(0, 133, 255, 0.25);
}

#landing-hero .card .card-body .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.25);
}

#landing-hero .card .card-body .input-group .input-group-text {
    border-color: transparent;
    border-radius: var(--radius) 0 0 var(--radius);
}

#landing-hero .card .card-body .input-group .input-group-text span {
    font-weight: 600;
}

#landing-hero .card .card-body .input-group .form-control {
    border-radius: 0 10px 10px 0;
}

#landing-hero .card .card-body .form-check label {
    font-size: 14px;
}

#landing-hero .card .card-body .form-check label a {
    color: rgba(22, 91, 229, 1);
    text-decoration: none;
}

#landing-hero .card .card-body .form-check .form-check-input:checked {
    background-color: rgba(22, 91, 229, 1);
    border-color: rgba(22, 91, 229, 1);
}

#landing-hero .card .card-body .form-check .form-check-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(0, 133, 255, 0.25);
}


/* Details */
#details {
    margin: -100px auto -75px auto;
    padding: 3.5rem 0;
    box-shadow: 0px 14px 20px 0px #90A6BC1A;
    background-color: #ffffff;
    position: relative;
    z-index: 999;
    border-radius: 18px;
}

#details a {
    color: #fff;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    padding: 10px 15px;
}

#details > .item {
    display: flex;
    align-items: center;
    margin-bottom: 125px;
    padding: 0 20px;
}

#details > .item:last-child {
    margin-bottom: 0;
}

#details > .item > .image {
    width: 50%;
    text-align: center;
}

#details > .item > .image > img {
    width: 510px;
    height: 400px;
    border-radius: var(--radius);
}

#details > .item > .desc {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
}

#details > .item:nth-child(even) > .image {
    order: 2;
}

#details h4 {
    font-size: 34px;
    font-weight: 600;
    line-height: 50px;
    color: #000000;
}

#details h3 strong {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #000000;
}

#details .desc .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #677899;
    width: 75%;
}

/* Features */
#landing-features {
    background-color: rgba(22, 91, 229, 1);
    padding: 175px 105px 75px 105px;
}

.features-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 30px;
}

#landing-features .item {
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ECEFF6 33.5%, rgba(236, 239, 246, 0) 100%);
}

#landing-features .item h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 50px;
    color: #FFFFFF;
}

#landing-features .item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #FFFFFFB2;
}

#landing-features h2 {
    font-size: 34px;
    font-weight: 600;
    line-height: 50px;
    color: #ffffff;
    margin-right: 40px;
    padding-right: 100px;
}

#landing-features .icon-box {
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: var(--radius);
    text-align: center;
    padding: 16px;
    width: calc((100% - 130px) / 6);
    height: 115px;
}

#landing-features .icon-box h6 {
    font-weight: 600;
}

#properties {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: center;
}

#properties .icon-box img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

#landing-features .icon-box p {
    margin-bottom: 0;
    padding: 0 1.5rem;
}

#landing-features .icon-box:hover {
    background: #ffffff;
    border: 1px solid #466dab;
    box-shadow: 0px 0px 0px 3px rgba(0, 133, 255, 0.25);
    border-radius: var(--radius);
}

#landing-features .icon-box:hover h6 {
    color: #466dab;
}

#landing-features .icon-box:hover svg path {
    fill: #466dab;
}

/* App */
#app {
    background: rgba(236, 239, 246, 1);
}

#app .container {
    position: relative;
    z-index: 1;
}

#app h3 {
    font-size: 34px;
    font-weight: 500;
    line-height: 45px;
    color: #000000;
}

#app p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #677899;
    margin: 30px 0;
}

#app svg {
    border-radius: var(--radius);
}

/* Faq */
#faq-container {
    padding: 5rem 0;
}

#faq-container .faq-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 45px;
    color: #000000;
}

#faq-container .faq-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #677899;
    width: 50%;
    margin-bottom: 50px;
}

#faq-container #faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 60px;
    grid-row-gap: 50px;
    margin-top: 30px;
}

#faq-container #faq .item div {
    margin-left: 10px;
}

#faq-container #faq .item h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #000000;
}

#faq-container #faq .item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #677899;
}

@media (max-width: 1199px) {
    #landing-hero {
        padding: 6.5rem 0;
    }

    #landing-hero .hero-title {
        margin-bottom: 1rem;
        font-size: 40px;
        line-height: 55px;
        width: 100%;
    }

    #landing-hero .hero-description {
        width: 100%;
    }

    #landing-hero .uss-info {
        font-size: 16px;
        line-height: 30px;
    }

    #landing-hero .uss-price-text {
        display: block;
    }

    #landing-hero .uss-price {
        margin: 0;
    }

    #details > .item {
        margin-bottom: 100px;
    }

    #details > .item > .image > img {
        width: 460px;
        height: 350px;
    }

    #details h4 {
        font-size: 32px;
        line-height: 45px;
    }

    #details .desc .description {
        font-size: 15px;
        line-height: 25px;
    }

    #landing-features {
        padding: 176px 85px 75px 85px;
    }

    .features-items {
        grid-column-gap: 25px;
        grid-row-gap: 20px;
    }

    #landing-features h2 {
        margin-right: 0;
        padding-right: 50px;
    }

    #landing-features .item h4 {
        font-size: 22px;
        line-height: 30px;
    }

    #landing-features .item p {
        font-size: 13px;
        line-height: 22px;
    }

    #landing-features .icon-box h6 {
        font-size: 0.8rem;
    }

    #app h3 {
        font-size: 33px;
        line-height: 40px;
    }

    #app p {
        font-size: 15px;
        line-height: 25px;
        margin: 15px 0;
    }

    #faq-container {
        padding: 4rem 0;
    }

    #faq-container .faq-title {
        font-size: 32px;
        line-height: 40px;
    }

    #faq-container .faq-description {
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 30px;
    }

    #faq-container #faq {
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        margin-top: 25px;
    }

    #faq-container #faq .item h2 {
        font-size: 19px;
        line-height: 22px;
    }

    #faq-container #faq .item p {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 991px) {

    #landing-hero .uss-info p {
        text-align: center !important;
    }

    #landing-hero .uss-info {
        padding-bottom: 20px;
    }

    #landing-hero .card .card-body {
        padding: 1rem 2rem;
    }

    #details {
        margin: -75px auto -75px auto;
    }

    #details > .item {
        margin-bottom: 60px;
        gap: 20px;
    }

    #details > .item > .image > img {
        width: 410px;
        height: 300px;
    }

    #details h4 {
        font-size: 30px;
        line-height: 40px;
    }

    #details .desc .description {
        font-size: 13px;
        line-height: 20px;
    }

    #landing-features {
        padding: 150px 50px 40px 50px;
        flex-direction: column;
        align-items: center;
    }

    #landing-features h2 {
        padding-right: 0;
        padding-bottom: 30px;
    }

    #about .about-img {
        order: 1;
        text-align: center;
    }

    #about .about-text {
        text-align: center;
        padding-bottom: 15px;
    }

    #about .about-text p {
        width: 100%;
    }

    #app {
        padding: 30px;
    }

    #faq-container {
        padding: 4rem 0;
    }

    #faq-container .faq-description {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
        width: 100%;
    }

    #faq-container #faq {
        grid-column-gap: 35px;
        grid-row-gap: 30px;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    #landing-hero .uss-info {
        padding-bottom: 0;
    }

    #details {
        padding: 2.5rem 1rem;
    }

    #details > .item {
        margin-bottom: 50px;
        gap: 20px;
    }

    #details > .item > .image > img {
        width: 360px;
        height: 250px;
    }

    #details h4 {
        font-size: 27px;
        line-height: 35px;
        white-space: normal;
    }

    #details .desc .description {
        font-size: 13px;
        line-height: 20px;
        width: 100%;
    }

    #details > .item > .image,
    #details > .item > .desc {
        width: 100%;
    }

    #landing-features {
        padding: 125px 20px 25px 20px;
    }

    .features-items {
        grid-template-columns: repeat(2, 1fr);
    }

    #faq-container {
        padding: 3rem 0;
    }

    #faq-container .faq-description {
        margin-bottom: 10px;
    }

    #faq-container #faq {
        grid-row-gap: 20px;
        margin-top: 20px;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 575px) {
    #landing-hero {
        padding-bottom: 0;
        padding-top: 8.5rem;
    }

    #landing-hero .hero-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 0;
        text-align: center !important;
        margin-top: 20px;
    }

    #landing-hero ul li {
        font-size: 14px;
        line-height: 17px;
    }

    #landing-hero .uss-price-text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    #landing-hero .card .card-body .try-free-title {
        font-size: 18px;
        line-height: 22px;
    }

    #landing-hero .card .card-body {
        padding: 1rem 1rem;
    }

    #details {
        margin: 0;
        border-radius: 0;
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        flex-direction: row;
        padding: 1rem 1rem;
    }

    #details > .item {
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
    }

    #details > .item > .image,
    #details > .item > .desc {
        text-align: start;
        order: 2;
    }

    #details > .item > .image > img {
        width: 380px;
        height: 270px;
    }

    #details > .item > .image {
        text-align: center;
        width: 100vh;
    }

    #details > .item:last-child > .image {
        width: 65vh;
    }

    #details .desc .description {
        white-space: break-spaces;
    }

    #about {
        padding: 1rem 0;
    }

    #about .about-img {
        text-align: start;
    }

    #about .about-text {
        text-align: start;
        padding-bottom: 15px;
    }

    #about .about-btn {
        display: none;
    }

    #about h4 {
        font-size: 18px;
        line-height: 40px;
    }

    #landing-features {
        padding: 2rem 1rem;
        align-items: start;
        overflow: hidden;
        width: 100%;
    }

    #landing-features h2{
        font-size: 20px;
        line-height: 50px;
    }

    #landing-features .item h4 {
        font-size: 20px;
        line-height: 50px;

    }

    #landing-features .item p {
        font-size: 14px;
        line-height: 24px;
    }

    #landing-features .container {
        padding: 1rem;
        flex-direction: column;
    }

    #landing-features .features-items {
        grid-template-columns: unset;
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 30px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        display: grid;
        grid-gap: 1rem;
        grid-auto-flow: column;
        grid-auto-columns: calc(100% - 40px - 6rem);
    }

    #app h3 {
        font-size: 18px;
        line-height: 24px;
    }

    #app .app-download-now {
        text-decoration: underline;
    }

    #faq-container {
        padding: 2rem 0.5rem;
    }

    #faq-container #faq {
        padding-top: 0;
    }

    #faq-container .faq-title {
        font-size: 20px;
        line-height: 30px;
        text-align: center;

    }

    #faq-container .faq-description {
        display: none;
    }

    #faq-container #faq .item h2 {
        font-size: 18px;
        line-height: 26px;
    }

    #faq-container #faq .item p {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
    }
}

@media (max-width: 425px) {
    #details > .item > .image > img {
        width: 325px;
        height: 215px;
    }

    #details > .item:last-child > .image {
        width: 50vh;
    }

    #landing-features .features-items {
        grid-auto-columns: calc(100% - 40px);
    }
}

@media (max-width: 375px) {
    #details > .item > .image > img {
        width: 260px;
        height: 155px;
    }


    #landing-features .features-items {
        grid-auto-columns: 100%;
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 340px) {
    #app .app-donwload {
        flex-wrap: wrap;
        padding-top: 25px;
    }
}

@media (min-width: 992px) {
    .uss-info {
        margin-top: -120px;
    }
}
