* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    background: #FEFBFB;
    font-family: Roboto, Arial, sans-serif;
    line-height: 1.6;
    font-size: 0.838rem;
}

nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    z-index: 1000;
    align-items: center;
    padding: 20px 4%;
    background: #FFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}

ul li {
    display: inline-block;
    padding: 15px 15px;
    font-size: 14px;
}

ul li a {
    color: #000;
}

ul li a:hover {
    color: #F60;
    transition: ease 0.52s;
}

nav button {
    cursor: pointer;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    color: #FFF;
    background: #F60;
    transition: all .5s ease;
}

.menu-icon {
    display: none;
    width: 45px;
    background: #F60;
    padding: 10px 10px;
    border-radius: 50px;
}

@media screen and (max-width:820px) {
    .navbar {
        position: absolute;
        top: 0;
        left: -100%;
        background: #333;
        height: 120vh;
        width: 230px;
        align-items: center;
        margin: 80px 0%;
        padding: 45px 30px;
        display: flex;
        flex-direction: column;
        transition: ease 1.1s all;
    }

    .navbar a {
        display: block;
        color: #FFF;
        margin: 0.5rem 0;
    }

    .open {
        left: 0;
    }

    nav img {
        width: 130px;
    }

    .menu-icon {
        display: block;
    }
}

.container-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    padding: 140px 4%;
}

.container-box .Typewritter {
    font-size: 3rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 30px;
}

.container-box p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 50px;
}

.container-box .Google-img {
    display: flex;
    margin-top: 20px;
}

.container-box .Google-img img {
    width: 180px;
}

.container-box .Google-img img:first-child {
    margin-right: 20px;
}

.container-box .mock {
    width: 100%;
}

@media screen and (max-width:900px) {
    .container-box .Typewritter {
        font-size: 1.8rem;
        line-height: 40px;
    }
}

@media screen and (max-width:800px) {
    .container-box .Google-img {
        display: flex;
        flex-direction: column;
        row-gap: 15px;
    }

    .container-box .Typewritter {
        font-size: 1.8rem;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .container-box .Google-img img {
        width: 120px;
    }
}

@media screen and (max-width:700px) {
    .container-box {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}

@media screen and (max-width:385px) {
    .container-box p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
}

.blog-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    column-gap: 100px;
    padding: 20px 4%;
}

.blog-cards {
    background: #FFF;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    padding: 15px 15px;
    width: 100%;
    border-radius: 8px;
    border: 0.4px solid #000;
    cursor: pointer;
}

.blog-cards:hover {
    transform: rotate(-5deg);
    transition: .5s ease;
}

.blog-cards img {
    margin-bottom: 5px;
    letter-spacing: 2.5px;
    font-weight: 400;
}

.blog-cards h2 {
    margin-bottom: 6px;
    letter-spacing: 2.5px;
    font-weight: 400;
}

.blog-cards p {
    margin-bottom: 30px;
    margin-top: 15px;
    letter-spacing: 1.3px;
    font-weight: 400;
    font-size: 12px;
}

@media screen and (max-width:830px) {
    .blog-container {
        flex-direction: column;
        gap: 30px;
        padding: 0px 5%;
    }
}

.next-container {
    display: flex;
    justify-content: space-between;
    column-gap: 100px;
    align-items: center;
    background: #F60;
    width: 100%;
    margin-top: 140px;
    padding: 20px 4%;
    background-image: url(./cover.feb65b14.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
}


.header img {
    width: 100%;
}

.google-img {
    margin-top: 20px;
}

.google-img img {
    width: 180px;
}

.next-container .header-content {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    width: 80%;
    display: inline-block;
    font-weight: 300;
    line-height: 55px;
}

.google-img {
    text-align: center;
    width: 80%;
}

.google-img img:first-child {
    margin-bottom: 20px;
}

@media screen and (max-width:1075px) {
    .next-container .header-content {
        font-weight: 200;
        line-height: 30px;
        width: 100%;
        font-size: 22px;
    }

    .google-img {
        width: 120px;
        width: 100%;
    }

    .google-img img {
        width: 120px;
    }
}

@media screen and (max-width:820px) {
    .next-container {
        height: 60vh;
    }

    .next-container .header-content {
        font-size: 18px;
        line-height: 25px;
    }
}

@media screen and (max-width:700px) {
    .next-container {
        height: 50vh;
    }

    .next-container .header-content {
        font-size: 16px;
    }
}

@media screen and (max-width:620px) {
    .next-container {
        height: 35vh;
    }

    .next-container .header-content {
        font-size: 14px;
        margin-top: 40px;
    }
}

@media screen and (max-width:500px) {
    .next-container {
        column-gap: 20px;
        margin-top: 50px;
    }

    .next-container .header img {
        width: 100%;
    }
}

.section-header {
    text-align: center;
    color: #000;
    margin-top: 30px;
    font-size: 25px;
    letter-spacing: 3px;
    font-weight: 400;
}

.trusted-partner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1.5rem auto;
}

.trusted-partner img {
    width: 110px;
    margin: 20px 10px;
}

.trusted-div {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.trusted-partner-button {
    width: 15.5rem;
    height: 3rem;
    cursor: pointer;
    margin-bottom: 30px;
    font-size: .8rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    outline: none;
    color: #FFF;
    background: #F60;
    transition: all .5s ease;
}

.trusted-partner-button:hover {
    transition: all .3s ease 0s;
}

@media screen and (max-width:820px) {
    .trusted-partner {
        margin: 1.5rem 1.5rem;
    }

    .trusted-partner img {
        width: 70px;
    }

    .trusted-partner-button {
        width: 13rem;
        height: 2rem;
    }
}

.user-content {
    font-size: 25px;
    text-align: center;
}

.article-content {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.article-img {
    margin-top: 25px;
}

.user-comment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 40px;
    column-gap: 5px;
    padding: 20px 4%;
}

.user-cards {
    background: #FFF;
    height: 345px;
    box-shadow: 0 9.86224px 28.7649px rgba(8, 96, 208, .12);
    border-radius: 3.10926px;
    padding: 30px;
    margin: 10px;
    width: 100%;
    color: #5C5C5C;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    border: 0.221853px solid #000;
}

.user-cards:hover {
    transition: all 1s ease;
    transform: translate(10px, -10px);
}

.user-cards .Quote {
    float: left;
}

.user-cards p {
    margin-top: 40px;
}

.user-cards-content {
    display: flex;
    align-items: center;
    margin-top: 20vh;
}

.user-cards-content img {
    margin-right: 15px;
    height: 40px;
    border-radius: 50%;
}


@media screen and (max-width:820px) {
    .user-comment {
        flex-direction: column;
        column-gap: 5px;
        padding: 30px 5%;
    }

    .user-content {
        color: #000;
    }

    .user-content span {
        color: #F60;
    }
}

.send-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: #F60;
    padding: 25px 4%;
    border-radius: 10px;
    margin: 30px 50px;
    color: #FFF;
}

.message {
    display: flex;
    flex-direction: column;
}

.email {
    display: flex;
}

form {
    position: relative;
    width: 400px;
}

.email input:first-child {
    border: none;
    outline: none;
    background: black;
    color: #FFF;
    padding: 10px 40px 10px 40px;
    border-radius: 4px;
    font-weight: 400;
    width: 100%;
}

.email input:last-child {
    color: #F60;
    border: none;
    outline: none;
    position: absolute;
    background: #FFF;
    cursor: pointer;
    height: 30px;
    width: 50px;
    right: 3px;
    top: 3px;
}

::placeholder {
    font-size: 14px;
    color: #FFF;
    margin-right: 35px;

}

@media screen and (max-width:1044px) {
    .send-message {
        margin: 20px 0px;
        border-radius: 0px;
        row-gap: 20px;
    }

}

@media screen and (max-width:870px) {
    form {
        width: 300px;
    }
}

@media screen and (max-width:320px) {
    .email input:first-child {
        width: 270px;
    }

    .email input:last-child {
        right: 35px;
        top: 4px;
    }
}

.log-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #F60;
    column-gap: 100px;
    padding: 20px 4%;
}

.log-content {
    color: #FFF;
}

.log-content .choose {
    font-size: 12px;
    margin-bottom: 5px;
}

.log-content h1 {
    margin-bottom: 30px;
    width: 50%;
    font-size: 30px;
    font-weight: 400;
}

hr {
    width: 95%;
    margin-bottom: 15px;
}

.log-img img {
    width: 100%;
    float: right;
    height: 20%;
}

.log-content button {
    border-radius: 4px;
    background: #000;
    color: #FFF;
    border: none;
    outline: none;
    cursor: pointer;
    width: 165px;
    margin-top: 14px;
    font-size: .8rem;
    width: 8rem;
    height: 2.6rem;
}

.log-content .features-content {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 300;
    width: 95%;
}

@media screen and (max-width:1065px) {
    .log-content .logistics {
        font-size: 22px;
        width: 95%;
    }

    .log-content .features-content {
        font-size: 12px;
        width: 95%;
    }

    .log-img img {
        width: 100%;
    }
}

@media screen and (max-width:575px) {
    .log-container {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 50px;
        margin-top: 80px;
    }
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 4%;
    width: 100%;
    background: #F9F9F9;
}

.left-footer {
    flex-basis: 30%;
}

.right-footer {
    flex-basis: 30%;
}

.center-footer li {
    line-height: 25px;
}

.left-footer img {
    margin-bottom: 13px;
}

.footer-img {
    width: 25px;
    margin: 20px 3px;
}

.center-footer a {
    color: #000;
}

.center-footer h3 {
    margin-bottom: 13px;
}

.right-footer h3 {
    margin-bottom: 13px;
}

.left-footer p {
    line-height: 23px;
}

.right-footer p {
    line-height: 23px;
}

@media screen and (max-width:767px) {
    .footer {
        display: flex;
        flex-direction: column;
        row-gap: 23px;
    }

    .nav-footer {
        display: flex;
        flex-direction: column;
        padding: 3px 0px;
    }

    .left-footer .logo {
        width: 80px;
    }

    .footer-img {
        width: 20px;
    }

    .center-footer h3 {
        margin-bottom: 13px;
        text-align: left;
    }

    .right-footer h3 {
        margin-top: 13px;
    }
}

.end-container {
    display: flex;
    justify-content: space-between;
    color: #FFF;
    background: #F60;
    padding: 20px 4%;
    margin-top: 20px;
}

.end-container a {
    color: #FFF;
}

@media screen and (max-width:768px) {
    .end-container {
        display: block;
        text-align: center;
    }
}

.work-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #FEFBFB;
    row-gap: 20px;
    background-repeat: no-repeat;
    margin: 0px 40px;
    background-size: cover;
    height: 100vh;
    border-radius: 50px;
    background-position: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(./new-banner.eb1c7605.png), #d3d3d3 50%/cover no-repeat;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    text-align: center;
    font-weight: 300;
    padding: 25px 4%;
}

.work-container h2 {
    line-height: 63px;
    font-size: 50px;
    width: 30%;
}

.work-container h3 {
    font-size: 28px;
}

.work-container p {
    color: #F60;
    cursor: pointer;
    font-size: 16px;
    background: url(./btn-bg.3d66d20e.png);
    padding: 7px 7px;
    border-radius: 7px;
}

@media screen and (max-width:968px) {
    .work-container {
        margin: 0px 25px;
    }

    .work-container h2 {
        line-height: 45px;
        font-size: 30px;
    }

    .work-container h3 {
        font-size: 22px;
    }
}

@media screen and (max-width:768px) {
    .work-container {
        margin: 0px 0px;
        border-radius: 0px;
    }

    .work-container h2 {
        width: 100%;
        font-size: 23px;
    }

    .work-container h3 {
        font-size: 16px;
    }
}

@media screen and (max-width:575px) {
    .work-container {
        height: 50vh;
        row-gap: 0px;
    }

    .work-container h2 {
        width: 100%;
        margin-top: 120px;
    }

    .work-container h3 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.work {
    text-align: center;
    margin-top: 40px;
}

.work h2 {
    color: #F60;
    font-size: 2rem;
}

.colspan {
    display: flex;
    text-align: center;
    justify-content: center;
    column-gap: 43px;
    width: 100%;
    margin-top: 20px;
    padding: 20px 4%;
}

.colspan p {
    font-size: 17px;
}

.colspan p:first-child {
    color: #F60;
    background: rgba(255, 102, 0, .1);
    padding: 5px 20px;
    border-radius: 10px;
}

@media screen and (max-width:844px) {
    .work h2 {
        font-size: 1.7rem;
    }
}

@media screen and (max-width:768px) {
    .work h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:422px) {
    .colspan p {
        font-size: 13px;
    }
}

@media screen and (max-width:355px) {
    .colspan p {
        font-size: 11px;
    }
}

.first-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    align-items: center;
    padding: 20px 4%;
    column-gap: 50px;
}

.first-container button {
    color: #F60;
    background: rgba(255, 102, 0, .1);
    padding: 10px 20px;
    margin-bottom: 15px;
    border: none;
    outline: none;
    border-radius: 10px;
}

.first-container h3 {
    font-size: 35px;
    color: #5C5C5C;
    margin-bottom: 10px;
}

.first-container h3 span {
    color: #F60;
}

.first-container h4 {
    font-size: 20px;
    font-weight: 300;
}

.first-container img {
    float: right;
}

@media screen and (max-width:1000px) {
    .first-container h3 {
        font-size: 30px;
    }

    .first-container h4 {
        font-size: 15px;
    }

    .first-container img {
        width: 100%;
    }
}

@media screen and (max-width:704px) {
    .first-container h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .first-container h4 {
        font-size: 13px;
    }
}

@media screen and (max-width:500px) {
    .first-container {
        display: grid;
        text-align: center;
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .first-container img {
        width: 70%;
        float: none;
    }
}

@media screen and (max-width:400px) {
    .first-container img {
        width: 95%;
    }
}

.second-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    align-items: center;
    padding: 20px 4%;
    column-gap: 50px;
}

.second-container button {
    color: #F60;
    background: rgba(255, 102, 0, .1);
    padding: 10px 20px;
    margin-bottom: 15px;
    border: none;
    outline: none;
    border-radius: 10px;
}

.second-container h3 {
    font-size: 35px;
    color: #5C5C5C;
    margin-bottom: 10px;
}

.second-container h3 span {
    color: #F60;
}

.second-container h4 {
    font-size: 20px;
    font-weight: 300;
}

@media screen and (max-width:1000px) {
    .second-container h3 {
        font-size: 30px;
    }

    .second-container h4 {
        font-size: 15px;
    }

    .second-container img {
        width: 100%;
    }
}

@media screen and (max-width:704px) {
    .second-container h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .second-container h4 {
        font-size: 13px;
    }
}

@media screen and (max-width:500px) {
    .second-container {
        display: flex;
        text-align: center;
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    .second-container img {
        width: 70%;
    }
}

@media screen and (max-width:400px) {
    .second-container img {
        width: 95%;
    }
}

.third-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    align-items: center;
    padding: 20px 4%;
    column-gap: 50px;
}

.third-container button {
    color: #F60;
    background: rgba(255, 102, 0, .1);
    padding: 10px 20px;
    margin-bottom: 15px;
    border: none;
    outline: none;
    border-radius: 10px;
}

.third-container h3 {
    font-size: 35px;
    color: #5C5C5C;
    line-height: 47px;
    margin-bottom: 15px;
}

.third-container h3 span {
    color: #F60;
}

.third-container h4 {
    font-size: 20px;
    font-weight: 300;
}

.third-container img {
    float: right;
}

@media screen and (max-width:1000px) {
    .third-container h3 {
        font-size: 30px;
    }

    .first-container h4 {
        font-size: 15px;
    }

    .third-container img {
        width: 100%;
    }
}

@media screen and (max-width:704px) {
    .third-container h3 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 8px;
    }

    .third-container h4 {
        font-size: 13px;
    }
}

@media screen and (max-width:500px) {
    .third-container {
        display: grid;
        text-align: center;
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .third-container img {
        width: 70%;
        float: none;
    }
}

@media screen and (max-width:400px) {
    .third-container img {
        width: 85%;
    }
}

.app-container {
    background: #F60;
    padding: 20px 4%;
    border-radius: 20px;
    text-align: center;
    color: #FFF;
    background-image: url(./cover.feb65b14.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.app-container h1 {
    font-size: 45px;
    margin-bottom: 10px;
}

.app-container p {
    font-size: 20px;
    margin-bottom: 20px;
}

.-part {
    display: flex;
    justify-content: center;
    margin: 1.5rem auto;
}

.part img {
    width: 190px;
    margin: 20px 10px;
}

@media screen and (max-width:750px) {
    .app-container h1 {
        font-size: 25px;
    }

    .part img {
        width: 150px;
        margin: 20px 10px;
    }
}

@media screen and (max-width:409px) {
    .app-container h1 {
        font-size: 18px;
    }

    .app-container p {
        font-size: 17px;
    }
}

.blog-border {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 140px 4%;
    width: 100%;
    background: #ffd7dc;
    align-items: center;
}

.blog-border h1 {
    font-size: 40px;
    font-weight: bolder;
    color: #1D3444;
    margin-bottom: 15px;
    line-height: 60px;
    width: 61%;
}

.blog-border p {
    font-size: 15px;
    color: #000;
    width: 70%;
}

.blog-border .know-img {
    float: right;
    width: 80%;
}

.person-image {
    width: 30px;
    margin-bottom: 10px;
}

.dion {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

@media screen and (max-width:1052px) {
    .blog-border {
        column-gap: 35px;
    }

    .blog-border h1 {
        font-size: 33px;
        width: 100%;
        line-height: 50px;
    }

    .blog-border .know-img {
        width: 100%;
    }

    .blog-border p {
        font-size: 13px;
        width: 100%;
    }
}

@media screen and (max-width:820px) {
    .blog-border h1 {
        font-size: 25px;
        line-height: 35px;
    }
}

@media screen and (max-width:700px) {
    .blog-border {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}

@media screen and (max-width:400px) {
    .blog-border h1 {
        font-size: 20px;
        line-height: 27px;
    }
}

.son {
    padding: 20px 4%;
    color: #1D3444;
    font-size: 17px;
}

.parent {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    row-gap: 30px;
    column-gap: 30px;
    align-items: center;
}

.parent-child {
    display: flex;
    flex-direction: column;
}

.parent img {
    width: 100%;
}

.parent a {
    color: #F60;
    font-size: 17px;
    display: inline-block;
    margin-top: 8px;
}

.child-parent {
    background: #F9F9F9;
    padding: 1.3rem;
    border-radius: 0.65rem;
}

.child-parent h2 {
    font-size: 25px;
    font-weight: 300;
}
.child-parent .time{
    width: 70%;
}
@media  screen and (max-width:1000px) {
    .child-parent h2 {
        font-size: 22px;
    }
}

@media  screen and (max-width:967px) {
    .parent {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media  screen and (max-width:575px) {
    .child-parent h2{
        font-size: 18px;
    }
}

@media  screen and (max-width:500px) {
    .parent {
        display: grid;
        grid-template-columns: 1fr;
    }

    .child-parent h2{
        font-size: 22px;
    }
}


.career-border {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 140px 4%;
    width: 100%;
    background: #ffd7dc;
    align-items: center;
}

.career-border h1 {
    font-size: 40px;
    font-weight: bolder;
    color: #1D3444;
    margin-bottom: 15px;
    line-height: 60px;
    width: 61%;
}

.career-border p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #000;
    width: 70%;
}
.career-border a{
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    color: #FFF;
    background: #F60;
    transition: all .5s ease;
}

.career-border .know-img {
    float: right;
    width: 80%;
}

@media screen and (max-width:1052px) {
    .career-border {
        column-gap: 35px;
    }

    .career-border h1 {
        font-size: 33px;
        width: 100%;
        line-height: 50px;
    }

    .career-border .know-img {
        width: 100%;
    }

    .career-border p {
        font-size: 13px;
        width: 100%;
    }
}

@media screen and (max-width:820px) {
    .career-border h1 {
        font-size: 25px;
        line-height: 35px;
    }
}

@media screen and (max-width:700px) {
    .career-border {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}

@media screen and (max-width:400px) {
    .career-border h1 {
        font-size: 20px;
        line-height: 27px;
    }
}
.hero-homepage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    padding: 20px 4%;
    column-gap: 25px;
    row-gap: 25px;
    align-items: center;
}
.hero-box{
    background: rgba(255,102,0,.3);
    border-radius: 20px;
    padding: 2rem;
}
.hero-box a{
    color: #F60;
    font-size: 14px;
}

.hero-box h2{
    color: #1D3444;
    margin-top: 15px;
    margin-bottom: 3px;
}

.hero-box p{
    color: #5C5C5C;
    font-size: 15px;
    margin-bottom: 7px;
}
@media screen and (max-width:902px) {
    .hero-homepage {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width:592px) {
    .hero-homepage {
        display: grid;
        grid-template-columns: 1fr;
    }
    .so h1{
        font-size: 28px;
        line-height: 32px;
    }
}
.so {
    padding: 20px 4%;
    color: #1D3444;
    font-size: 17px;
}
.brood{
    padding: 200px 4%;
}
.brood h1{
    text-align: center;
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 13px;
}
.brood img{
    position: absolute;
    top: 20px;
    width: 30px;
    right: 10px;
} 
.form{
    width: 688850px;
}
.blue{
    display: flex;
    justify-content: center;
    margin-top: 13px;
}
@media screen and (max-width:605px){
    .brood h1{
        font-size: 23px;
    }
}
@media screen and (max-width:397px){
    .brood h1{
        font-size: 17px;
    }
}
.search-bar{
    outline: none;
    border-radius: 35px;
    box-shadow: inset 1px 2px 5px rgba(0, 0, 0,0.05);
    height: 70px;
    border-radius: 35px;
    border: 1.5px solid #f60;
    transition: all .25s ease-in-out;
    background: transparent;
    color: #615f5f;
    padding: 10px 40px 10px 40px;
    width: 100%;
    font-size: 1rem;
  }
  .search-bar::placeholder{
    font-size: 16px;
    color: #615f5f;
  }
  .spy{
    padding: 20px 4%;
  }
  .spy h1{
    font-size: 45px;
    color: #5C5C5C;
    line-height: 48px;
    width: 50%;
  }
  .spy h1 span{
    color: #F60;
  }
  .spy img{
    width: 40px;
    margin-top: 13px;
  }
  @media screen and (max-width:756px){
    .spy h1{
        font-size: 28px;
        line-height: 33px;
        width: 100%;
    }
}
  .support-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 250px 4%;
    width: 100%;
    column-gap: 50px;
  }
  .support-container h1{
    color: #1D3444;
    width: 100%;
    font-size: 33px;
  }
  .support-container span{
    font-size: 20px;
  }
  .support-container p{
    font-size: 15px;
    margin-top: 13px;
  }
  .support-container h3{
    font-size: 15px;
    margin-top: 5px;
    font-weight: 400;
  }
  @media screen and (max-width:967px) {
    .support-container{
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 35px;
        padding: 140px 4%;
      }
  }

  @media screen and (max-width:510px) {
    .support-container h1{
        font-size: 20px;
      }
  }
  .first-form{
    background: rgba(210,218,237,.17);
    border-radius: 4px;
    width: 600px;
    padding: 4px 4px 4px 10px;
    border: none;
    outline: none;
    height: 50px;
    margin-top: 12px;
    margin-bottom: 10px;
  }
  ::placeholder{
    color: #5C5C5C;
  }
  .first-form:focus{
    border: 3px solid #1067CC;
    transition: ease 0.5s;
  }

  .sign-form{
    background: rgba(210,218,237,.17);
    border-radius: 4px;
    width: 600px;
    padding: 4px 4px 4px 10px;
    border: none;
    outline: none;
    height: 150px;
    resize: none;
    margin-bottom: 10px;
  }
  .sign-form:focus{
    border: 3px solid #1067CC;
    transition: ease 0.5s;
  }
  .router-button{
    cursor: pointer;
    padding: 12px 24px;
    background: #F60;
    color: #FFF;
    border-radius: 4px;
    border: none;
}
@media screen and (max-width:650px) {
    .sign-form,.first-form{
    width: 100%;
      }
      .sign-form{
        height: 110fpx;
      }
  }